less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

22574 wiersze
540 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935,
  47. bottom: 0.01
  48. },
  49. info: {
  50. description: {
  51. mode: "append",
  52. text: "\n\nHe is not currently looking at you."
  53. }
  54. }
  55. },
  56. full: {
  57. height: math.unit(1.34, "meter"),
  58. weight: math.unit(225, "kg"),
  59. name: "Full",
  60. image: {
  61. source: "./media/characters/fen/full.svg"
  62. },
  63. info: {
  64. description: {
  65. mode: "append",
  66. text: "\n\nMunch."
  67. }
  68. }
  69. },
  70. kneeling: {
  71. height: math.unit(5.4, "feet"),
  72. weight: math.unit(124.738, "kg"),
  73. name: "Kneeling",
  74. image: {
  75. source: "./media/characters/fen/kneeling.svg",
  76. extra: 563 / 507
  77. }
  78. },
  79. },
  80. [
  81. {
  82. name: "Normal",
  83. height: math.unit(2.2428, "meter")
  84. },
  85. {
  86. name: "Big",
  87. height: math.unit(12, "feet")
  88. },
  89. {
  90. name: "Minimacro",
  91. height: math.unit(40, "feet"),
  92. default: true,
  93. info: {
  94. description: {
  95. mode: "append",
  96. text: "\n\nTOO DAMN BIG"
  97. }
  98. }
  99. },
  100. {
  101. name: "Macro",
  102. height: math.unit(100, "feet"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(300, "feet")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(2, "miles")
  117. }
  118. ]
  119. ))
  120. characterMakers.push(() => makeCharacter(
  121. { name: "Sofia Fluttertail" },
  122. {
  123. front: {
  124. height: math.unit(183, "cm"),
  125. weight: math.unit(80, "kg"),
  126. name: "Front",
  127. image: {
  128. source: "./media/characters/sofia-fluttertail/front.svg",
  129. bottom: 0.01,
  130. extra: 2154 / 2081
  131. }
  132. },
  133. frontAlt: {
  134. height: math.unit(183, "cm"),
  135. weight: math.unit(80, "kg"),
  136. name: "Front (alt)",
  137. image: {
  138. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  139. }
  140. },
  141. back: {
  142. height: math.unit(183, "cm"),
  143. weight: math.unit(80, "kg"),
  144. name: "Back",
  145. image: {
  146. source: "./media/characters/sofia-fluttertail/back.svg"
  147. }
  148. },
  149. kneeling: {
  150. height: math.unit(125, "cm"),
  151. weight: math.unit(80, "kg"),
  152. name: "Kneeling",
  153. image: {
  154. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  155. extra: 1033/977,
  156. bottom: 23.7/1057
  157. }
  158. },
  159. maw: {
  160. height: math.unit(183 / 5, "cm"),
  161. name: "Maw",
  162. image: {
  163. source: "./media/characters/sofia-fluttertail/maw.svg"
  164. }
  165. },
  166. mawcloseup: {
  167. height: math.unit(183 / 5 * 0.41, "cm"),
  168. name: "Maw (Closeup)",
  169. image: {
  170. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  171. }
  172. },
  173. },
  174. [
  175. {
  176. name: "Normal",
  177. height: math.unit(1.83, "meter")
  178. },
  179. {
  180. name: "Size Thief",
  181. height: math.unit(18, "feet")
  182. },
  183. {
  184. name: "50 Foot Collie",
  185. height: math.unit(50, "feet")
  186. },
  187. {
  188. name: "Macro",
  189. height: math.unit(96, "feet"),
  190. default: true
  191. },
  192. {
  193. name: "Megamerger",
  194. height: math.unit(650, "feet")
  195. },
  196. ]
  197. ))
  198. characterMakers.push(() => makeCharacter(
  199. { name: "March" },
  200. {
  201. front: {
  202. height: math.unit(7, "feet"),
  203. weight: math.unit(100, "kg"),
  204. name: "Front",
  205. image: {
  206. source: "./media/characters/march/front.svg",
  207. extra: 1,
  208. bottom: 0.015
  209. }
  210. },
  211. foot: {
  212. height: math.unit(0.9, "feet"),
  213. name: "Foot",
  214. image: {
  215. source: "./media/characters/march/foot.svg"
  216. }
  217. },
  218. },
  219. [
  220. {
  221. name: "Normal",
  222. height: math.unit(7.9, "feet")
  223. },
  224. {
  225. name: "Macro",
  226. height: math.unit(220, "meters")
  227. },
  228. {
  229. name: "Megamacro",
  230. height: math.unit(2.98, "km"),
  231. default: true
  232. },
  233. {
  234. name: "Gigamacro",
  235. height: math.unit(15963, "km")
  236. },
  237. {
  238. name: "Teramacro",
  239. height: math.unit(2980000000, "km")
  240. },
  241. {
  242. name: "Examacro",
  243. height: math.unit(250, "parsecs")
  244. },
  245. ]
  246. ))
  247. characterMakers.push(() => makeCharacter(
  248. { name: "Noir" },
  249. {
  250. front: {
  251. height: math.unit(6, "feet"),
  252. weight: math.unit(60, "kg"),
  253. name: "Front",
  254. image: {
  255. source: "./media/characters/noir/front.svg",
  256. extra: 1,
  257. bottom: 0.032
  258. }
  259. },
  260. },
  261. [
  262. {
  263. name: "Normal",
  264. height: math.unit(6.6, "feet")
  265. },
  266. {
  267. name: "Macro",
  268. height: math.unit(500, "feet")
  269. },
  270. {
  271. name: "Megamacro",
  272. height: math.unit(2.5, "km"),
  273. default: true
  274. },
  275. {
  276. name: "Gigamacro",
  277. height: math.unit(22500, "km")
  278. },
  279. {
  280. name: "Teramacro",
  281. height: math.unit(2500000000, "km")
  282. },
  283. {
  284. name: "Examacro",
  285. height: math.unit(200, "parsecs")
  286. },
  287. ]
  288. ))
  289. characterMakers.push(() => makeCharacter(
  290. { name: "Okuri" },
  291. {
  292. front: {
  293. height: math.unit(7, "feet"),
  294. weight: math.unit(100, "kg"),
  295. name: "Front",
  296. image: {
  297. source: "./media/characters/okuri/front.svg",
  298. extra: 1,
  299. bottom: 0.037
  300. }
  301. },
  302. back: {
  303. height: math.unit(7, "feet"),
  304. weight: math.unit(100, "kg"),
  305. name: "Back",
  306. image: {
  307. source: "./media/characters/okuri/back.svg",
  308. extra: 1,
  309. bottom: 0.007
  310. }
  311. },
  312. },
  313. [
  314. {
  315. name: "Megamacro",
  316. height: math.unit(100, "miles"),
  317. default: true
  318. },
  319. ]
  320. ))
  321. characterMakers.push(() => makeCharacter(
  322. { name: "Manny" },
  323. {
  324. front: {
  325. height: math.unit(7, "feet"),
  326. weight: math.unit(100, "kg"),
  327. name: "Front",
  328. image: {
  329. source: "./media/characters/manny/front.svg",
  330. extra: 1,
  331. bottom: 0.06
  332. }
  333. },
  334. back: {
  335. height: math.unit(7, "feet"),
  336. weight: math.unit(100, "kg"),
  337. name: "Back",
  338. image: {
  339. source: "./media/characters/manny/back.svg",
  340. extra: 1,
  341. bottom: 0.014
  342. }
  343. },
  344. },
  345. [
  346. {
  347. name: "Normal",
  348. height: math.unit(7, "feet"),
  349. },
  350. {
  351. name: "Macro",
  352. height: math.unit(78, "feet"),
  353. default: true
  354. },
  355. {
  356. name: "Macro+",
  357. height: math.unit(300, "meters")
  358. },
  359. {
  360. name: "Macro++",
  361. height: math.unit(2400, "meters")
  362. },
  363. {
  364. name: "Megamacro",
  365. height: math.unit(5167, "meters")
  366. },
  367. {
  368. name: "Gigamacro",
  369. height: math.unit(41769, "miles")
  370. },
  371. ]
  372. ))
  373. characterMakers.push(() => makeCharacter(
  374. { name: "Adake" },
  375. {
  376. front: {
  377. height: math.unit(7, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Front",
  380. image: {
  381. source: "./media/characters/adake/front-1.svg"
  382. }
  383. },
  384. frontAlt: {
  385. height: math.unit(7, "feet"),
  386. weight: math.unit(100, "kg"),
  387. name: "Front (Alt)",
  388. image: {
  389. source: "./media/characters/adake/front-2.svg",
  390. extra: 1,
  391. bottom: 0.01
  392. }
  393. },
  394. back: {
  395. height: math.unit(7, "feet"),
  396. weight: math.unit(100, "kg"),
  397. name: "Back",
  398. image: {
  399. source: "./media/characters/adake/back.svg",
  400. }
  401. },
  402. kneel: {
  403. height: math.unit(5.385, "feet"),
  404. weight: math.unit(100, "kg"),
  405. name: "Kneeling",
  406. image: {
  407. source: "./media/characters/adake/kneel.svg",
  408. bottom: 0.052
  409. }
  410. },
  411. },
  412. [
  413. {
  414. name: "Normal",
  415. height: math.unit(7, "feet"),
  416. },
  417. {
  418. name: "Macro",
  419. height: math.unit(78, "feet"),
  420. default: true
  421. },
  422. {
  423. name: "Macro+",
  424. height: math.unit(300, "meters")
  425. },
  426. {
  427. name: "Macro++",
  428. height: math.unit(2400, "meters")
  429. },
  430. {
  431. name: "Megamacro",
  432. height: math.unit(5167, "meters")
  433. },
  434. {
  435. name: "Gigamacro",
  436. height: math.unit(41769, "miles")
  437. },
  438. ]
  439. ))
  440. characterMakers.push(() => makeCharacter(
  441. { name: "Elijah" },
  442. {
  443. front: {
  444. height: math.unit(1.65, "meters"),
  445. weight: math.unit(50, "kg"),
  446. name: "Front",
  447. image: {
  448. source: "./media/characters/elijah/front.svg",
  449. extra: 858/830,
  450. bottom: 95.5/953.8559
  451. }
  452. },
  453. back: {
  454. height: math.unit(1.65, "meters"),
  455. weight: math.unit(50, "kg"),
  456. name: "Back",
  457. image: {
  458. source: "./media/characters/elijah/back.svg",
  459. extra: 895/850,
  460. bottom: 5.3/897.956
  461. }
  462. },
  463. frontNsfw: {
  464. height: math.unit(1.65, "meters"),
  465. weight: math.unit(50, "kg"),
  466. name: "Front (NSFW)",
  467. image: {
  468. source: "./media/characters/elijah/front-nsfw.svg",
  469. extra: 858/830,
  470. bottom: 95.5/953.8559
  471. }
  472. },
  473. backNsfw: {
  474. height: math.unit(1.65, "meters"),
  475. weight: math.unit(50, "kg"),
  476. name: "Back (NSFW)",
  477. image: {
  478. source: "./media/characters/elijah/back-nsfw.svg",
  479. extra: 895/850,
  480. bottom: 5.3/897.956
  481. }
  482. },
  483. dick: {
  484. height: math.unit(1, "feet"),
  485. name: "Dick",
  486. image: {
  487. source: "./media/characters/elijah/dick.svg"
  488. }
  489. },
  490. beakOpen: {
  491. height: math.unit(1.25, "feet"),
  492. name: "Beak (Open)",
  493. image: {
  494. source: "./media/characters/elijah/beak-open.svg"
  495. }
  496. },
  497. beakShut: {
  498. height: math.unit(1.25, "feet"),
  499. name: "Beak (Shut)",
  500. image: {
  501. source: "./media/characters/elijah/beak-shut.svg"
  502. }
  503. },
  504. footFlexing: {
  505. height: math.unit(1.61, "feet"),
  506. name: "Foot (Flexing)",
  507. image: {
  508. source: "./media/characters/elijah/foot-flexing.svg"
  509. }
  510. },
  511. footStepping: {
  512. height: math.unit(1.44, "feet"),
  513. name: "Foot (Stepping)",
  514. image: {
  515. source: "./media/characters/elijah/foot-stepping.svg"
  516. }
  517. },
  518. plantigradeLeg: {
  519. height: math.unit(2.34, "feet"),
  520. name: "Plantigrade Leg",
  521. image: {
  522. source: "./media/characters/elijah/plantigrade-leg.svg"
  523. }
  524. },
  525. plantigradeFootLeft: {
  526. height: math.unit(0.9, "feet"),
  527. name: "Plantigrade Foot (Left)",
  528. image: {
  529. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  530. }
  531. },
  532. plantigradeFootRight: {
  533. height: math.unit(0.9, "feet"),
  534. name: "Plantigrade Foot (Right)",
  535. image: {
  536. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  537. }
  538. },
  539. },
  540. [
  541. {
  542. name: "Normal",
  543. height: math.unit(1.65, "meters")
  544. },
  545. {
  546. name: "Macro",
  547. height: math.unit(55, "meters"),
  548. default: true
  549. },
  550. {
  551. name: "Macro+",
  552. height: math.unit(105, "meters")
  553. },
  554. ]
  555. ))
  556. characterMakers.push(() => makeCharacter(
  557. { name: "Rai" },
  558. {
  559. front: {
  560. height: math.unit(11, "feet"),
  561. weight: math.unit(80, "kg"),
  562. name: "Front",
  563. image: {
  564. source: "./media/characters/rai/front.svg",
  565. extra: 1,
  566. bottom: 0.03
  567. }
  568. },
  569. side: {
  570. height: math.unit(11, "feet"),
  571. weight: math.unit(80, "kg"),
  572. name: "Side",
  573. image: {
  574. source: "./media/characters/rai/side.svg"
  575. }
  576. },
  577. back: {
  578. height: math.unit(11, "feet"),
  579. weight: math.unit(80, "lb"),
  580. name: "Back",
  581. image: {
  582. source: "./media/characters/rai/back.svg",
  583. extra: 1,
  584. bottom: 0.01
  585. }
  586. },
  587. feral: {
  588. height: math.unit(11, "feet"),
  589. weight: math.unit(800, "lb"),
  590. name: "Feral",
  591. image: {
  592. source: "./media/characters/rai/feral.svg",
  593. extra: 1050 / 659,
  594. bottom: 0.07
  595. }
  596. },
  597. dragon: {
  598. height: math.unit(23, "feet"),
  599. weight: math.unit(50000, "lb"),
  600. name: "Dragon",
  601. image: {
  602. source: "./media/characters/rai/dragon.svg",
  603. extra: 2498/2030,
  604. bottom: 85.2/2584
  605. }
  606. },
  607. maw: {
  608. height: math.unit(6 / 3.81416, "feet"),
  609. name: "Maw",
  610. image: {
  611. source: "./media/characters/rai/maw.svg"
  612. }
  613. },
  614. },
  615. [
  616. {
  617. name: "Normal",
  618. height: math.unit(11, "feet")
  619. },
  620. {
  621. name: "Macro",
  622. height: math.unit(302, "feet"),
  623. default: true
  624. },
  625. ]
  626. ))
  627. characterMakers.push(() => makeCharacter(
  628. { name: "Jazzy" },
  629. {
  630. front: {
  631. height: math.unit(7, "feet"),
  632. weight: math.unit(80, "kg"),
  633. name: "Front",
  634. image: {
  635. source: "./media/characters/jazzy/front.svg",
  636. extra: 1,
  637. bottom: 0.01
  638. }
  639. },
  640. back: {
  641. height: math.unit(7, "feet"),
  642. weight: math.unit(80, "kg"),
  643. name: "Back",
  644. image: {
  645. source: "./media/characters/jazzy/back.svg",
  646. extra: 1,
  647. bottom: 0.01
  648. }
  649. },
  650. },
  651. [
  652. {
  653. name: "Macro",
  654. height: math.unit(216, "feet"),
  655. default: true
  656. },
  657. ]
  658. ))
  659. characterMakers.push(() => makeCharacter(
  660. { name: "Flamm" },
  661. {
  662. front: {
  663. height: math.unit(7, "feet"),
  664. weight: math.unit(80, "kg"),
  665. name: "Front",
  666. image: {
  667. source: "./media/characters/flamm/front.svg",
  668. extra: 1794 / 1677,
  669. bottom: 31.7 / 1828.5
  670. }
  671. },
  672. },
  673. [
  674. {
  675. name: "Normal",
  676. height: math.unit(9.5, "feet")
  677. },
  678. {
  679. name: "Macro",
  680. height: math.unit(200, "feet"),
  681. default: true
  682. },
  683. ]
  684. ))
  685. characterMakers.push(() => makeCharacter(
  686. { name: "Zephiro" },
  687. {
  688. front: {
  689. height: math.unit(7, "feet"),
  690. weight: math.unit(80, "kg"),
  691. name: "Front",
  692. image: {
  693. source: "./media/characters/zephiro/front.svg",
  694. extra: 2309 / 2162,
  695. bottom: 0.069
  696. }
  697. },
  698. side: {
  699. height: math.unit(7, "feet"),
  700. weight: math.unit(80, "kg"),
  701. name: "Side",
  702. image: {
  703. source: "./media/characters/zephiro/side.svg",
  704. extra: 2403 / 2279,
  705. bottom: 0.015
  706. }
  707. },
  708. back: {
  709. height: math.unit(7, "feet"),
  710. weight: math.unit(80, "kg"),
  711. name: "Back",
  712. image: {
  713. source: "./media/characters/zephiro/back.svg",
  714. extra: 2373 / 2244,
  715. bottom: 0.013
  716. }
  717. },
  718. },
  719. [
  720. {
  721. name: "Micro",
  722. height: math.unit(3, "inches")
  723. },
  724. {
  725. name: "Normal",
  726. height: math.unit(5 + 3 / 12, "feet"),
  727. default: true
  728. },
  729. {
  730. name: "Macro",
  731. height: math.unit(118, "feet")
  732. },
  733. ]
  734. ))
  735. characterMakers.push(() => makeCharacter(
  736. { name: "Fory" },
  737. {
  738. front: {
  739. height: math.unit(5, "feet"),
  740. weight: math.unit(90, "kg"),
  741. name: "Front",
  742. image: {
  743. source: "./media/characters/fory/front.svg",
  744. extra: 2862 / 2674,
  745. bottom: 180 / 3043.8
  746. }
  747. },
  748. back: {
  749. height: math.unit(5, "feet"),
  750. weight: math.unit(90, "kg"),
  751. name: "Back",
  752. image: {
  753. source: "./media/characters/fory/back.svg",
  754. extra: 2962 / 2791,
  755. bottom: 106 / 3071.8
  756. }
  757. },
  758. foot: {
  759. height: math.unit(2.14, "feet"),
  760. name: "Foot",
  761. image: {
  762. source: "./media/characters/fory/foot.svg"
  763. }
  764. },
  765. },
  766. [
  767. {
  768. name: "Normal",
  769. height: math.unit(5, "feet")
  770. },
  771. {
  772. name: "Macro",
  773. height: math.unit(50, "feet"),
  774. default: true
  775. },
  776. {
  777. name: "Megamacro",
  778. height: math.unit(10, "miles")
  779. },
  780. {
  781. name: "Gigamacro",
  782. height: math.unit(5, "earths")
  783. },
  784. ]
  785. ))
  786. characterMakers.push(() => makeCharacter(
  787. { name: "Kurrikage" },
  788. {
  789. front: {
  790. height: math.unit(7, "feet"),
  791. weight: math.unit(90, "kg"),
  792. name: "Front",
  793. image: {
  794. source: "./media/characters/kurrikage/front.svg",
  795. extra: 1,
  796. bottom: 0.035
  797. }
  798. },
  799. back: {
  800. height: math.unit(7, "feet"),
  801. weight: math.unit(90, "lb"),
  802. name: "Back",
  803. image: {
  804. source: "./media/characters/kurrikage/back.svg"
  805. }
  806. },
  807. paw: {
  808. height: math.unit(1.5, "feet"),
  809. name: "Paw",
  810. image: {
  811. source: "./media/characters/kurrikage/paw.svg"
  812. }
  813. },
  814. staff: {
  815. height: math.unit(6.7, "feet"),
  816. name: "Staff",
  817. image: {
  818. source: "./media/characters/kurrikage/staff.svg"
  819. }
  820. },
  821. peek: {
  822. height: math.unit(1.05, "feet"),
  823. name: "Peeking",
  824. image: {
  825. source: "./media/characters/kurrikage/peek.svg",
  826. bottom: 0.08
  827. }
  828. },
  829. },
  830. [
  831. {
  832. name: "Normal",
  833. height: math.unit(12, "feet"),
  834. default: true
  835. },
  836. {
  837. name: "Big",
  838. height: math.unit(20, "feet")
  839. },
  840. {
  841. name: "Macro",
  842. height: math.unit(500, "feet")
  843. },
  844. {
  845. name: "Megamacro",
  846. height: math.unit(20, "miles")
  847. },
  848. ]
  849. ))
  850. characterMakers.push(() => makeCharacter(
  851. { name: "Shingo" },
  852. {
  853. front: {
  854. height: math.unit(6, "feet"),
  855. weight: math.unit(75, "kg"),
  856. name: "Front",
  857. image: {
  858. source: "./media/characters/shingo/front.svg",
  859. extra: 3511 / 3338,
  860. bottom: 0.005
  861. }
  862. },
  863. },
  864. [
  865. {
  866. name: "Micro",
  867. height: math.unit(4, "inches")
  868. },
  869. {
  870. name: "Normal",
  871. height: math.unit(6, "feet"),
  872. default: true
  873. },
  874. {
  875. name: "Macro",
  876. height: math.unit(108, "feet")
  877. }
  878. ]
  879. ))
  880. characterMakers.push(() => makeCharacter(
  881. { name: "Aigey" },
  882. {
  883. side: {
  884. height: math.unit(6, "feet"),
  885. weight: math.unit(75, "kg"),
  886. name: "Side",
  887. image: {
  888. source: "./media/characters/aigey/side.svg"
  889. }
  890. },
  891. },
  892. [
  893. {
  894. name: "Macro",
  895. height: math.unit(200, "feet"),
  896. default: true
  897. },
  898. {
  899. name: "Megamacro",
  900. height: math.unit(100, "miles")
  901. },
  902. ]
  903. )
  904. )
  905. characterMakers.push(() => makeCharacter(
  906. { name: "Natasha" },
  907. {
  908. front: {
  909. height: math.unit(5 + 5 / 12, "feet"),
  910. weight: math.unit(75, "kg"),
  911. name: "Front",
  912. image: {
  913. source: "./media/characters/natasha/front.svg",
  914. extra: 859/824,
  915. bottom: 23/879.6
  916. }
  917. },
  918. frontNsfw: {
  919. height: math.unit(5 + 5 / 12, "feet"),
  920. weight: math.unit(75, "kg"),
  921. name: "Front (NSFW)",
  922. image: {
  923. source: "./media/characters/natasha/front-nsfw.svg",
  924. extra: 859/824,
  925. bottom: 23/879.6
  926. }
  927. },
  928. frontErect: {
  929. height: math.unit(5 + 5 / 12, "feet"),
  930. weight: math.unit(75, "kg"),
  931. name: "Front (Erect)",
  932. image: {
  933. source: "./media/characters/natasha/front-erect.svg",
  934. extra: 859/824,
  935. bottom: 23/879.6
  936. }
  937. },
  938. back: {
  939. height: math.unit(5 + 5 / 12, "feet"),
  940. weight: math.unit(75, "kg"),
  941. name: "Back",
  942. image: {
  943. source: "./media/characters/natasha/back.svg",
  944. extra: 887.9/852.6,
  945. bottom: 9.7/896.4
  946. }
  947. },
  948. backAlt: {
  949. height: math.unit(5 + 5 / 12, "feet"),
  950. weight: math.unit(75, "kg"),
  951. name: "Back (Alt)",
  952. image: {
  953. source: "./media/characters/natasha/back-alt.svg",
  954. extra: 1236.7/1192,
  955. bottom: 22.3/1258.2
  956. }
  957. },
  958. dick: {
  959. height: math.unit(1.772, "feet"),
  960. name: "Dick",
  961. image: {
  962. source: "./media/characters/natasha/dick.svg"
  963. }
  964. },
  965. },
  966. [
  967. {
  968. name: "Normal",
  969. height: math.unit(5 + 5 / 12, "feet")
  970. },
  971. {
  972. name: "Large",
  973. height: math.unit(12, "feet")
  974. },
  975. {
  976. name: "Macro",
  977. height: math.unit(100, "feet"),
  978. default: true
  979. },
  980. {
  981. name: "Macro+",
  982. height: math.unit(260, "feet")
  983. },
  984. {
  985. name: "Macro++",
  986. height: math.unit(1, "mile")
  987. },
  988. ]
  989. ))
  990. characterMakers.push(() => makeCharacter(
  991. { name: "Malik" },
  992. {
  993. front: {
  994. height: math.unit(6, "feet"),
  995. weight: math.unit(75, "kg"),
  996. name: "Front",
  997. image: {
  998. source: "./media/characters/malik/front.svg"
  999. }
  1000. },
  1001. side: {
  1002. height: math.unit(6, "feet"),
  1003. weight: math.unit(75, "kg"),
  1004. name: "Side",
  1005. image: {
  1006. source: "./media/characters/malik/side.svg",
  1007. extra: 1.1539
  1008. }
  1009. },
  1010. back: {
  1011. height: math.unit(6, "feet"),
  1012. weight: math.unit(75, "kg"),
  1013. name: "Back",
  1014. image: {
  1015. source: "./media/characters/malik/back.svg"
  1016. }
  1017. },
  1018. },
  1019. [
  1020. {
  1021. name: "Macro",
  1022. height: math.unit(156, "feet"),
  1023. default: true
  1024. },
  1025. {
  1026. name: "Macro+",
  1027. height: math.unit(1188, "feet")
  1028. },
  1029. ]
  1030. ))
  1031. characterMakers.push(() => makeCharacter(
  1032. { name: "Sefer" },
  1033. {
  1034. front: {
  1035. height: math.unit(6, "feet"),
  1036. weight: math.unit(75, "kg"),
  1037. name: "Front",
  1038. image: {
  1039. source: "./media/characters/sefer/front.svg"
  1040. }
  1041. },
  1042. back: {
  1043. height: math.unit(6, "feet"),
  1044. weight: math.unit(75, "kg"),
  1045. name: "Back",
  1046. image: {
  1047. source: "./media/characters/sefer/back.svg"
  1048. }
  1049. },
  1050. },
  1051. [
  1052. {
  1053. name: "Normal",
  1054. height: math.unit(6, "feet"),
  1055. default: true
  1056. },
  1057. ]
  1058. ))
  1059. characterMakers.push(() => makeCharacter(
  1060. { name: "North" },
  1061. {
  1062. body: {
  1063. height: math.unit(2.2428, "meter"),
  1064. weight: math.unit(124.738, "kg"),
  1065. name: "Body",
  1066. image: {
  1067. extra: 1225 / 1050,
  1068. source: "./media/characters/north/front.svg"
  1069. }
  1070. }
  1071. },
  1072. [
  1073. {
  1074. name: "Micro",
  1075. height: math.unit(4, "inches")
  1076. },
  1077. {
  1078. name: "Macro",
  1079. height: math.unit(63, "meters")
  1080. },
  1081. {
  1082. name: "Megamacro",
  1083. height: math.unit(101, "miles"),
  1084. default: true
  1085. }
  1086. ]
  1087. ))
  1088. characterMakers.push(() => makeCharacter(
  1089. { name: "Talan" },
  1090. {
  1091. angled: {
  1092. height: math.unit(4, "meter"),
  1093. weight: math.unit(150, "kg"),
  1094. name: "Angled",
  1095. image: {
  1096. source: "./media/characters/talan/angled-sfw.svg",
  1097. bottom: 29 / 3734
  1098. }
  1099. },
  1100. angledNsfw: {
  1101. height: math.unit(4, "meter"),
  1102. weight: math.unit(150, "kg"),
  1103. name: "Angled (NSFW)",
  1104. image: {
  1105. source: "./media/characters/talan/angled-nsfw.svg",
  1106. bottom: 29 / 3734
  1107. }
  1108. },
  1109. frontNsfw: {
  1110. height: math.unit(4, "meter"),
  1111. weight: math.unit(150, "kg"),
  1112. name: "Front (NSFW)",
  1113. image: {
  1114. source: "./media/characters/talan/front-nsfw.svg",
  1115. bottom: 29 / 3734
  1116. }
  1117. },
  1118. sideNsfw: {
  1119. height: math.unit(4, "meter"),
  1120. weight: math.unit(150, "kg"),
  1121. name: "Side (NSFW)",
  1122. image: {
  1123. source: "./media/characters/talan/side-nsfw.svg",
  1124. bottom: 29 / 3734
  1125. }
  1126. },
  1127. back: {
  1128. height: math.unit(4, "meter"),
  1129. weight: math.unit(150, "kg"),
  1130. name: "Back",
  1131. image: {
  1132. source: "./media/characters/talan/back.svg"
  1133. }
  1134. },
  1135. dickBottom: {
  1136. height: math.unit(0.621, "meter"),
  1137. name: "Dick (Bottom)",
  1138. image: {
  1139. source: "./media/characters/talan/dick-bottom.svg"
  1140. }
  1141. },
  1142. dickTop: {
  1143. height: math.unit(0.621, "meter"),
  1144. name: "Dick (Top)",
  1145. image: {
  1146. source: "./media/characters/talan/dick-top.svg"
  1147. }
  1148. },
  1149. dickSide: {
  1150. height: math.unit(0.305, "meter"),
  1151. name: "Dick (Side)",
  1152. image: {
  1153. source: "./media/characters/talan/dick-side.svg"
  1154. }
  1155. },
  1156. dickFront: {
  1157. height: math.unit(0.305, "meter"),
  1158. name: "Dick (Front)",
  1159. image: {
  1160. source: "./media/characters/talan/dick-front.svg"
  1161. }
  1162. },
  1163. },
  1164. [
  1165. {
  1166. name: "Normal",
  1167. height: math.unit(4, "meters")
  1168. },
  1169. {
  1170. name: "Macro",
  1171. height: math.unit(100, "meters")
  1172. },
  1173. {
  1174. name: "Megamacro",
  1175. height: math.unit(2, "miles"),
  1176. default: true
  1177. },
  1178. {
  1179. name: "Gigamacro",
  1180. height: math.unit(5000, "miles")
  1181. },
  1182. {
  1183. name: "Teramacro",
  1184. height: math.unit(100, "parsecs")
  1185. }
  1186. ]
  1187. ))
  1188. characterMakers.push(() => makeCharacter(
  1189. { name: "Gael'Rathus" },
  1190. {
  1191. front: {
  1192. height: math.unit(2, "meter"),
  1193. weight: math.unit(90, "kg"),
  1194. name: "Front",
  1195. image: {
  1196. source: "./media/characters/gael'rathus/front.svg"
  1197. }
  1198. },
  1199. frontAlt: {
  1200. height: math.unit(2, "meter"),
  1201. weight: math.unit(90, "kg"),
  1202. name: "Front (alt)",
  1203. image: {
  1204. source: "./media/characters/gael'rathus/front-alt.svg"
  1205. }
  1206. },
  1207. frontAlt2: {
  1208. height: math.unit(2, "meter"),
  1209. weight: math.unit(90, "kg"),
  1210. name: "Front (alt 2)",
  1211. image: {
  1212. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1213. }
  1214. }
  1215. },
  1216. [
  1217. {
  1218. name: "Normal",
  1219. height: math.unit(9, "feet"),
  1220. default: true
  1221. },
  1222. {
  1223. name: "Large",
  1224. height: math.unit(25, "feet")
  1225. },
  1226. {
  1227. name: "Macro",
  1228. height: math.unit(0.25, "miles")
  1229. },
  1230. {
  1231. name: "Megamacro",
  1232. height: math.unit(10, "miles")
  1233. }
  1234. ]
  1235. ))
  1236. characterMakers.push(() => makeCharacter(
  1237. { name: "Sosha" },
  1238. {
  1239. side: {
  1240. height: math.unit(2, "meter"),
  1241. weight: math.unit(140, "kg"),
  1242. name: "Side",
  1243. image: {
  1244. source: "./media/characters/sosha/side.svg",
  1245. bottom: 0.042
  1246. }
  1247. },
  1248. },
  1249. [
  1250. {
  1251. name: "Normal",
  1252. height: math.unit(12, "feet"),
  1253. default: true
  1254. }
  1255. ]
  1256. ))
  1257. characterMakers.push(() => makeCharacter(
  1258. { name: "RuNNoLa" },
  1259. {
  1260. side: {
  1261. height: math.unit(5 + 5 / 12, "feet"),
  1262. weight: math.unit(170, "kg"),
  1263. name: "Side",
  1264. image: {
  1265. source: "./media/characters/runnola/side.svg",
  1266. extra: 741 / 448,
  1267. bottom: 0.05
  1268. }
  1269. },
  1270. },
  1271. [
  1272. {
  1273. name: "Small",
  1274. height: math.unit(3, "feet")
  1275. },
  1276. {
  1277. name: "Normal",
  1278. height: math.unit(5 + 5 / 12, "feet"),
  1279. default: true
  1280. },
  1281. {
  1282. name: "Big",
  1283. height: math.unit(10, "feet")
  1284. },
  1285. ]
  1286. ))
  1287. characterMakers.push(() => makeCharacter(
  1288. { name: "Kurribird" },
  1289. {
  1290. front: {
  1291. height: math.unit(2, "meter"),
  1292. weight: math.unit(50, "kg"),
  1293. name: "Front",
  1294. image: {
  1295. source: "./media/characters/kurribird/front.svg",
  1296. bottom: 0.015
  1297. }
  1298. },
  1299. frontAlt: {
  1300. height: math.unit(1.5, "meter"),
  1301. weight: math.unit(50, "kg"),
  1302. name: "Front (Alt)",
  1303. image: {
  1304. source: "./media/characters/kurribird/front-alt.svg",
  1305. extra: 1.45
  1306. }
  1307. },
  1308. },
  1309. [
  1310. {
  1311. name: "Normal",
  1312. height: math.unit(7, "feet")
  1313. },
  1314. {
  1315. name: "Big",
  1316. height: math.unit(12, "feet"),
  1317. default: true
  1318. },
  1319. {
  1320. name: "Macro",
  1321. height: math.unit(1500, "feet")
  1322. },
  1323. {
  1324. name: "Megamacro",
  1325. height: math.unit(2, "miles")
  1326. }
  1327. ]
  1328. ))
  1329. characterMakers.push(() => makeCharacter(
  1330. { name: "Elbial" },
  1331. {
  1332. front: {
  1333. height: math.unit(2, "meter"),
  1334. weight: math.unit(80, "kg"),
  1335. name: "Front",
  1336. image: {
  1337. source: "./media/characters/elbial/front.svg",
  1338. extra: 1643 / 1556,
  1339. bottom: 60.2 / 1696
  1340. }
  1341. },
  1342. side: {
  1343. height: math.unit(2, "meter"),
  1344. weight: math.unit(80, "kg"),
  1345. name: "Side",
  1346. image: {
  1347. source: "./media/characters/elbial/side.svg",
  1348. extra: 1630 / 1565,
  1349. bottom: 71.5 / 1697
  1350. }
  1351. },
  1352. back: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(80, "kg"),
  1355. name: "Back",
  1356. image: {
  1357. source: "./media/characters/elbial/back.svg",
  1358. extra: 1668 / 1595,
  1359. bottom: 5.6 / 1672
  1360. }
  1361. },
  1362. frontDressed: {
  1363. height: math.unit(2, "meter"),
  1364. weight: math.unit(80, "kg"),
  1365. name: "Front (Dressed)",
  1366. image: {
  1367. source: "./media/characters/elbial/front-dressed.svg",
  1368. extra: 1653 / 1584,
  1369. bottom: 57 / 1708
  1370. }
  1371. },
  1372. genitals: {
  1373. height: math.unit(2 / 3.367, "meter"),
  1374. name: "Genitals",
  1375. image: {
  1376. source: "./media/characters/elbial/genitals.svg"
  1377. }
  1378. },
  1379. },
  1380. [
  1381. {
  1382. name: "Large",
  1383. height: math.unit(100, "feet")
  1384. },
  1385. {
  1386. name: "Macro",
  1387. height: math.unit(500, "feet"),
  1388. default: true
  1389. },
  1390. {
  1391. name: "Megamacro",
  1392. height: math.unit(10, "miles")
  1393. },
  1394. {
  1395. name: "Gigamacro",
  1396. height: math.unit(25000, "miles")
  1397. },
  1398. {
  1399. name: "Full-Size",
  1400. height: math.unit(8000000, "gigaparsecs")
  1401. }
  1402. ]
  1403. ))
  1404. characterMakers.push(() => makeCharacter(
  1405. { name: "Noah" },
  1406. {
  1407. front: {
  1408. height: math.unit(2, "meter"),
  1409. weight: math.unit(60, "kg"),
  1410. name: "Front",
  1411. image: {
  1412. source: "./media/characters/noah/front.svg"
  1413. }
  1414. },
  1415. talons: {
  1416. height: math.unit(0.315, "meter"),
  1417. name: "Talons",
  1418. image: {
  1419. source: "./media/characters/noah/talons.svg"
  1420. }
  1421. }
  1422. },
  1423. [
  1424. {
  1425. name: "Large",
  1426. height: math.unit(50, "feet")
  1427. },
  1428. {
  1429. name: "Macro",
  1430. height: math.unit(750, "feet"),
  1431. default: true
  1432. },
  1433. {
  1434. name: "Megamacro",
  1435. height: math.unit(50, "miles")
  1436. },
  1437. {
  1438. name: "Gigamacro",
  1439. height: math.unit(100000, "miles")
  1440. },
  1441. {
  1442. name: "Full-Size",
  1443. height: math.unit(3000000000, "miles")
  1444. }
  1445. ]
  1446. ))
  1447. characterMakers.push(() => makeCharacter(
  1448. { name: "Natalya" },
  1449. {
  1450. front: {
  1451. height: math.unit(2, "meter"),
  1452. weight: math.unit(80, "kg"),
  1453. name: "Front",
  1454. image: {
  1455. source: "./media/characters/natalya/front.svg"
  1456. }
  1457. },
  1458. back: {
  1459. height: math.unit(2, "meter"),
  1460. weight: math.unit(80, "kg"),
  1461. name: "Back",
  1462. image: {
  1463. source: "./media/characters/natalya/back.svg"
  1464. }
  1465. }
  1466. },
  1467. [
  1468. {
  1469. name: "Normal",
  1470. height: math.unit(150, "feet"),
  1471. default: true
  1472. },
  1473. {
  1474. name: "Megamacro",
  1475. height: math.unit(5, "miles")
  1476. },
  1477. {
  1478. name: "Full-Size",
  1479. height: math.unit(600, "kiloparsecs")
  1480. }
  1481. ]
  1482. ))
  1483. characterMakers.push(() => makeCharacter(
  1484. { name: "Erestrebah" },
  1485. {
  1486. front: {
  1487. height: math.unit(2, "meter"),
  1488. weight: math.unit(50, "kg"),
  1489. name: "Front",
  1490. image: {
  1491. source: "./media/characters/erestrebah/front.svg",
  1492. extra: 208 / 193,
  1493. bottom: 0.055
  1494. }
  1495. },
  1496. back: {
  1497. height: math.unit(2, "meter"),
  1498. weight: math.unit(50, "kg"),
  1499. name: "Back",
  1500. image: {
  1501. source: "./media/characters/erestrebah/back.svg",
  1502. extra: 1.3
  1503. }
  1504. }
  1505. },
  1506. [
  1507. {
  1508. name: "Normal",
  1509. height: math.unit(10, "feet")
  1510. },
  1511. {
  1512. name: "Large",
  1513. height: math.unit(50, "feet"),
  1514. default: true
  1515. },
  1516. {
  1517. name: "Macro",
  1518. height: math.unit(300, "feet")
  1519. },
  1520. {
  1521. name: "Macro+",
  1522. height: math.unit(750, "feet")
  1523. },
  1524. {
  1525. name: "Megamacro",
  1526. height: math.unit(3, "miles")
  1527. }
  1528. ]
  1529. ))
  1530. characterMakers.push(() => makeCharacter(
  1531. { name: "Jennifer" },
  1532. {
  1533. front: {
  1534. height: math.unit(2, "meter"),
  1535. weight: math.unit(80, "kg"),
  1536. name: "Front",
  1537. image: {
  1538. source: "./media/characters/jennifer/front.svg",
  1539. bottom: 0.11,
  1540. extra: 1.16
  1541. }
  1542. },
  1543. frontAlt: {
  1544. height: math.unit(2, "meter"),
  1545. weight: math.unit(80, "kg"),
  1546. name: "Front (Alt)",
  1547. image: {
  1548. source: "./media/characters/jennifer/front-alt.svg"
  1549. }
  1550. }
  1551. },
  1552. [
  1553. {
  1554. name: "Canon Height",
  1555. height: math.unit(120, "feet"),
  1556. default: true
  1557. },
  1558. {
  1559. name: "Macro+",
  1560. height: math.unit(300, "feet")
  1561. },
  1562. {
  1563. name: "Megamacro",
  1564. height: math.unit(20000, "feet")
  1565. }
  1566. ]
  1567. ))
  1568. characterMakers.push(() => makeCharacter(
  1569. { name: "Kalista" },
  1570. {
  1571. front: {
  1572. height: math.unit(2, "meter"),
  1573. weight: math.unit(50, "kg"),
  1574. name: "Front",
  1575. image: {
  1576. source: "./media/characters/kalista/front.svg",
  1577. extra: 1947 / 1700,
  1578. bottom: 76.6/1412.98
  1579. }
  1580. },
  1581. back: {
  1582. height: math.unit(2, "meter"),
  1583. weight: math.unit(50, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/kalista/back.svg",
  1587. extra: 1366 / 1156,
  1588. bottom: 33.9/1362.78
  1589. }
  1590. }
  1591. },
  1592. [
  1593. {
  1594. name: "Uncomfortably Small",
  1595. height: math.unit(10, "feet")
  1596. },
  1597. {
  1598. name: "Small",
  1599. height: math.unit(30, "feet")
  1600. },
  1601. {
  1602. name: "Macro",
  1603. height: math.unit(100, "feet"),
  1604. default: true
  1605. },
  1606. {
  1607. name: "Macro+",
  1608. height: math.unit(2000, "feet")
  1609. },
  1610. {
  1611. name: "True Form",
  1612. height: math.unit(8924, "miles")
  1613. }
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "GiantGrowingVixen" },
  1618. {
  1619. front: {
  1620. height: math.unit(2, "meter"),
  1621. weight: math.unit(120, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/ggv/front.svg"
  1625. }
  1626. },
  1627. side: {
  1628. height: math.unit(2, "meter"),
  1629. weight: math.unit(120, "kg"),
  1630. name: "Side",
  1631. image: {
  1632. source: "./media/characters/ggv/side.svg"
  1633. }
  1634. }
  1635. },
  1636. [
  1637. {
  1638. name: "Extremely Puny",
  1639. height: math.unit(9 + 5 / 12, "feet")
  1640. },
  1641. {
  1642. name: "Horribly Small",
  1643. height: math.unit(47.7, "miles"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Reasonably Sized",
  1648. height: math.unit(25000, "parsecs")
  1649. },
  1650. {
  1651. name: "Slightly Uncompressed",
  1652. height: math.unit(7.77e31, "parsecs")
  1653. },
  1654. {
  1655. name: "Omniversal",
  1656. height: math.unit(1e300, "meters")
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Napalm" },
  1662. {
  1663. front: {
  1664. height: math.unit(2, "meter"),
  1665. weight: math.unit(75, "lb"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/napalm/front.svg"
  1669. }
  1670. },
  1671. back: {
  1672. height: math.unit(2, "meter"),
  1673. weight: math.unit(75, "lb"),
  1674. name: "Back",
  1675. image: {
  1676. source: "./media/characters/napalm/back.svg"
  1677. }
  1678. }
  1679. },
  1680. [
  1681. {
  1682. name: "Standard",
  1683. height: math.unit(55, "feet"),
  1684. default: true
  1685. }
  1686. ]
  1687. ))
  1688. characterMakers.push(() => makeCharacter(
  1689. { name: "Asana" },
  1690. {
  1691. front: {
  1692. height: math.unit(7 + 5 / 6, "feet"),
  1693. weight: math.unit(325, "lb"),
  1694. name: "Front",
  1695. image: {
  1696. source: "./media/characters/asana/front.svg",
  1697. extra: 1128 / 1068
  1698. }
  1699. },
  1700. back: {
  1701. height: math.unit(7 + 5 / 6, "feet"),
  1702. weight: math.unit(325, "lb"),
  1703. name: "Back",
  1704. image: {
  1705. source: "./media/characters/asana/back.svg",
  1706. extra: 1128 / 1068
  1707. }
  1708. },
  1709. },
  1710. [
  1711. {
  1712. name: "Standard",
  1713. height: math.unit(7 + 5 / 6, "feet"),
  1714. default: true
  1715. },
  1716. {
  1717. name: "Large",
  1718. height: math.unit(10, "meters")
  1719. },
  1720. {
  1721. name: "Macro",
  1722. height: math.unit(2500, "meters")
  1723. },
  1724. {
  1725. name: "Megamacro",
  1726. height: math.unit(5e6, "meters")
  1727. },
  1728. {
  1729. name: "Examacro",
  1730. height: math.unit(5e12, "lightyears")
  1731. },
  1732. {
  1733. name: "Max Size",
  1734. height: math.unit(1e31, "lightyears")
  1735. }
  1736. ]
  1737. ))
  1738. characterMakers.push(() => makeCharacter(
  1739. { name: "Ebony" },
  1740. {
  1741. front: {
  1742. height: math.unit(2, "meter"),
  1743. weight: math.unit(60, "kg"),
  1744. name: "Front",
  1745. image: {
  1746. source: "./media/characters/ebony/front.svg",
  1747. bottom: 0.03,
  1748. extra: 1045 / 810 + 0.03
  1749. }
  1750. },
  1751. side: {
  1752. height: math.unit(2, "meter"),
  1753. weight: math.unit(60, "kg"),
  1754. name: "Side",
  1755. image: {
  1756. source: "./media/characters/ebony/side.svg",
  1757. bottom: 0.03,
  1758. extra: 1045 / 810 + 0.03
  1759. }
  1760. },
  1761. back: {
  1762. height: math.unit(2, "meter"),
  1763. weight: math.unit(60, "kg"),
  1764. name: "Back",
  1765. image: {
  1766. source: "./media/characters/ebony/back.svg",
  1767. bottom: 0.01,
  1768. extra: 1045 / 810 + 0.01
  1769. }
  1770. },
  1771. },
  1772. [
  1773. // TODO check why I did this lol
  1774. {
  1775. name: "Standard",
  1776. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1777. default: true
  1778. },
  1779. {
  1780. name: "Macro",
  1781. height: math.unit(200, "feet")
  1782. },
  1783. {
  1784. name: "Gigamacro",
  1785. height: math.unit(13000, "km")
  1786. }
  1787. ]
  1788. ))
  1789. characterMakers.push(() => makeCharacter(
  1790. { name: "Mountain" },
  1791. {
  1792. front: {
  1793. height: math.unit(6, "feet"),
  1794. weight: math.unit(175, "lb"),
  1795. name: "Front",
  1796. image: {
  1797. source: "./media/characters/mountain/front.svg"
  1798. }
  1799. },
  1800. back: {
  1801. height: math.unit(6, "feet"),
  1802. weight: math.unit(175, "lb"),
  1803. name: "Back",
  1804. image: {
  1805. source: "./media/characters/mountain/back.svg"
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Large",
  1812. height: math.unit(20, "meters")
  1813. },
  1814. {
  1815. name: "Macro",
  1816. height: math.unit(300, "meters")
  1817. },
  1818. {
  1819. name: "Gigamacro",
  1820. height: math.unit(10000, "km"),
  1821. default: true
  1822. },
  1823. {
  1824. name: "Examacro",
  1825. height: math.unit(10e9, "lightyears")
  1826. }
  1827. ]
  1828. ))
  1829. characterMakers.push(() => makeCharacter(
  1830. { name: "Rick" },
  1831. {
  1832. front: {
  1833. height: math.unit(8, "feet"),
  1834. weight: math.unit(500, "lb"),
  1835. name: "Front",
  1836. image: {
  1837. source: "./media/characters/rick/front.svg"
  1838. }
  1839. }
  1840. },
  1841. [
  1842. {
  1843. name: "Normal",
  1844. height: math.unit(8, "feet"),
  1845. default: true
  1846. },
  1847. {
  1848. name: "Macro",
  1849. height: math.unit(5, "km")
  1850. }
  1851. ]
  1852. ))
  1853. characterMakers.push(() => makeCharacter(
  1854. { name: "Ona" },
  1855. {
  1856. front: {
  1857. height: math.unit(8, "feet"),
  1858. weight: math.unit(120, "lb"),
  1859. name: "Front",
  1860. image: {
  1861. source: "./media/characters/ona/front.svg"
  1862. }
  1863. },
  1864. frontAlt: {
  1865. height: math.unit(8, "feet"),
  1866. weight: math.unit(120, "lb"),
  1867. name: "Front (Alt)",
  1868. image: {
  1869. source: "./media/characters/ona/front-alt.svg"
  1870. }
  1871. },
  1872. back: {
  1873. height: math.unit(8, "feet"),
  1874. weight: math.unit(120, "lb"),
  1875. name: "Back",
  1876. image: {
  1877. source: "./media/characters/ona/back.svg"
  1878. }
  1879. },
  1880. foot: {
  1881. height: math.unit(1.1, "feet"),
  1882. name: "Foot",
  1883. image: {
  1884. source: "./media/characters/ona/foot.svg"
  1885. }
  1886. }
  1887. },
  1888. [
  1889. {
  1890. name: "Megamacro",
  1891. height: math.unit(70, "km"),
  1892. default: true
  1893. },
  1894. {
  1895. name: "Gigamacro",
  1896. height: math.unit(681818, "miles")
  1897. },
  1898. {
  1899. name: "Examacro",
  1900. height: math.unit(3800000, "lightyears")
  1901. },
  1902. ]
  1903. ))
  1904. characterMakers.push(() => makeCharacter(
  1905. { name: "Mech" },
  1906. {
  1907. front: {
  1908. height: math.unit(12, "feet"),
  1909. weight: math.unit(3000, "lb"),
  1910. name: "Front",
  1911. image: {
  1912. source: "./media/characters/mech/front.svg",
  1913. bottom: 0.025,
  1914. }
  1915. },
  1916. back: {
  1917. height: math.unit(12, "feet"),
  1918. weight: math.unit(3000, "lb"),
  1919. name: "Back",
  1920. image: {
  1921. source: "./media/characters/mech/back.svg",
  1922. bottom: 0.03,
  1923. }
  1924. }
  1925. },
  1926. [
  1927. {
  1928. name: "Normal",
  1929. height: math.unit(12, "feet")
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(300, "feet"),
  1934. default: true
  1935. },
  1936. {
  1937. name: "Macro+",
  1938. height: math.unit(1500, "feet")
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Gregory" },
  1944. {
  1945. front: {
  1946. height: math.unit(1.3, "meter"),
  1947. weight: math.unit(30, "kg"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/gregory/front.svg",
  1951. }
  1952. }
  1953. },
  1954. [
  1955. {
  1956. name: "Normal",
  1957. height: math.unit(1.3, "meter"),
  1958. default: true
  1959. },
  1960. {
  1961. name: "Macro",
  1962. height: math.unit(20, "meter")
  1963. }
  1964. ]
  1965. ))
  1966. characterMakers.push(() => makeCharacter(
  1967. { name: "Elory" },
  1968. {
  1969. front: {
  1970. height: math.unit(2.8, "meter"),
  1971. weight: math.unit(200, "kg"),
  1972. name: "Front",
  1973. image: {
  1974. source: "./media/characters/elory/front.svg",
  1975. }
  1976. }
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(2.8, "meter"),
  1982. default: true
  1983. },
  1984. {
  1985. name: "Macro",
  1986. height: math.unit(38, "meter")
  1987. }
  1988. ]
  1989. ))
  1990. characterMakers.push(() => makeCharacter(
  1991. { name: "Angelpatamon" },
  1992. {
  1993. front: {
  1994. height: math.unit(470, "feet"),
  1995. weight: math.unit(924, "tons"),
  1996. name: "Front",
  1997. image: {
  1998. source: "./media/characters/angelpatamon/front.svg",
  1999. }
  2000. }
  2001. },
  2002. [
  2003. {
  2004. name: "Normal",
  2005. height: math.unit(470, "feet"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Deity Size I",
  2010. height: math.unit(28651.2, "km")
  2011. },
  2012. {
  2013. name: "Deity Size II",
  2014. height: math.unit(171907.2, "km")
  2015. }
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Cryae" },
  2020. {
  2021. side: {
  2022. height: math.unit(7.2, "meter"),
  2023. weight: math.unit(8.2, "tons"),
  2024. name: "Side",
  2025. image: {
  2026. source: "./media/characters/cryae/side.svg",
  2027. extra: 3500 / 1500
  2028. }
  2029. }
  2030. },
  2031. [
  2032. {
  2033. name: "Normal",
  2034. height: math.unit(7.2, "meter"),
  2035. default: true
  2036. }
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Xera" },
  2041. {
  2042. front: {
  2043. height: math.unit(6, "feet"),
  2044. weight: math.unit(175, "lb"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/xera/front.svg",
  2048. extra: 2300 / 2061
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(6, "feet"),
  2053. weight: math.unit(175, "lb"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/xera/side.svg",
  2057. extra: 2300 / 2061
  2058. }
  2059. },
  2060. back: {
  2061. height: math.unit(6, "feet"),
  2062. weight: math.unit(175, "lb"),
  2063. name: "Back",
  2064. image: {
  2065. source: "./media/characters/xera/back.svg"
  2066. }
  2067. },
  2068. },
  2069. [
  2070. {
  2071. name: "Small",
  2072. height: math.unit(10, "feet")
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(500, "meters"),
  2077. default: true
  2078. },
  2079. {
  2080. name: "Macro+",
  2081. height: math.unit(10, "km")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(25000, "km")
  2086. },
  2087. {
  2088. name: "Teramacro",
  2089. height: math.unit(3e6, "km")
  2090. }
  2091. ]
  2092. ))
  2093. characterMakers.push(() => makeCharacter(
  2094. { name: "Nebula" },
  2095. {
  2096. front: {
  2097. height: math.unit(6, "feet"),
  2098. weight: math.unit(175, "lb"),
  2099. name: "Front",
  2100. image: {
  2101. source: "./media/characters/nebula/front.svg",
  2102. extra: 2600 / 2450
  2103. }
  2104. }
  2105. },
  2106. [
  2107. {
  2108. name: "Small",
  2109. height: math.unit(4.5, "meters")
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(1500, "meters"),
  2114. default: true
  2115. },
  2116. {
  2117. name: "Megamacro",
  2118. height: math.unit(150, "km")
  2119. },
  2120. {
  2121. name: "Gigamacro",
  2122. height: math.unit(27000, "km")
  2123. }
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "Abysgar" },
  2128. {
  2129. front: {
  2130. height: math.unit(6, "feet"),
  2131. weight: math.unit(225, "lb"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/abysgar/front.svg"
  2135. }
  2136. }
  2137. },
  2138. [
  2139. {
  2140. name: "Small",
  2141. height: math.unit(4.5, "meters")
  2142. },
  2143. {
  2144. name: "Macro",
  2145. height: math.unit(1250, "meters"),
  2146. default: true
  2147. },
  2148. {
  2149. name: "Megamacro",
  2150. height: math.unit(125, "km")
  2151. },
  2152. {
  2153. name: "Gigamacro",
  2154. height: math.unit(26000, "km")
  2155. }
  2156. ]
  2157. ))
  2158. characterMakers.push(() => makeCharacter(
  2159. { name: "Yakuz" },
  2160. {
  2161. front: {
  2162. height: math.unit(6, "feet"),
  2163. weight: math.unit(180, "lb"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/yakuz/front.svg"
  2167. }
  2168. }
  2169. },
  2170. [
  2171. {
  2172. name: "Small",
  2173. height: math.unit(5, "meters")
  2174. },
  2175. {
  2176. name: "Macro",
  2177. height: math.unit(1500, "meters"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Megamacro",
  2182. height: math.unit(200, "km")
  2183. },
  2184. {
  2185. name: "Gigamacro",
  2186. height: math.unit(100000, "km")
  2187. }
  2188. ]
  2189. ))
  2190. characterMakers.push(() => makeCharacter(
  2191. { name: "Mirova" },
  2192. {
  2193. front: {
  2194. height: math.unit(6, "feet"),
  2195. weight: math.unit(175, "lb"),
  2196. name: "Front",
  2197. image: {
  2198. source: "./media/characters/mirova/front.svg"
  2199. }
  2200. }
  2201. },
  2202. [
  2203. {
  2204. name: "Small",
  2205. height: math.unit(5, "meters")
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(900, "meters"),
  2210. default: true
  2211. },
  2212. {
  2213. name: "Megamacro",
  2214. height: math.unit(135, "km")
  2215. },
  2216. {
  2217. name: "Gigamacro",
  2218. height: math.unit(20000, "km")
  2219. }
  2220. ]
  2221. ))
  2222. characterMakers.push(() => makeCharacter(
  2223. { name: "Asana (Mech)" },
  2224. {
  2225. side: {
  2226. height: math.unit(28.35, "feet"),
  2227. weight: math.unit(99.75, "tons"),
  2228. name: "Side",
  2229. image: {
  2230. source: "./media/characters/asana-mech/side.svg"
  2231. }
  2232. }
  2233. },
  2234. [
  2235. {
  2236. name: "Normal",
  2237. height: math.unit(28.35, "feet"),
  2238. default: true
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(2500, "feet")
  2243. },
  2244. {
  2245. name: "Megamacro",
  2246. height: math.unit(25, "miles")
  2247. },
  2248. {
  2249. name: "Examacro",
  2250. height: math.unit(6e8, "lightyears")
  2251. },
  2252. ]
  2253. ))
  2254. characterMakers.push(() => makeCharacter(
  2255. { name: "Ashtrek" },
  2256. {
  2257. front: {
  2258. height: math.unit(2, "meters"),
  2259. weight: math.unit(70, "kg"),
  2260. name: "Front",
  2261. image: {
  2262. source: "./media/characters/ashtrek/front.svg",
  2263. extra: 560 / 524,
  2264. bottom: 0.01
  2265. }
  2266. },
  2267. frontArmor: {
  2268. height: math.unit(2, "meters"),
  2269. weight: math.unit(76, "kg"),
  2270. name: "Front (Armor)",
  2271. image: {
  2272. source: "./media/characters/ashtrek/front-armor.svg",
  2273. extra: 561 / 527,
  2274. bottom: 0.01
  2275. }
  2276. },
  2277. side: {
  2278. height: math.unit(2, "meters"),
  2279. weight: math.unit(70, "kg"),
  2280. name: "Side",
  2281. image: {
  2282. source: "./media/characters/ashtrek/side.svg",
  2283. extra: 1717 / 1609,
  2284. bottom: 0.005
  2285. }
  2286. },
  2287. back: {
  2288. height: math.unit(2, "meters"),
  2289. weight: math.unit(70, "kg"),
  2290. name: "Back",
  2291. image: {
  2292. source: "./media/characters/ashtrek/back.svg",
  2293. extra: 1570 / 1501
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "DEFCON 5",
  2300. height: math.unit(5, "meters")
  2301. },
  2302. {
  2303. name: "DEFCON 4",
  2304. height: math.unit(500, "meters"),
  2305. default: true
  2306. },
  2307. {
  2308. name: "DEFCON 3",
  2309. height: math.unit(5, "km")
  2310. },
  2311. {
  2312. name: "DEFCON 2",
  2313. height: math.unit(500, "km")
  2314. },
  2315. {
  2316. name: "DEFCON 1",
  2317. height: math.unit(500000, "km")
  2318. },
  2319. {
  2320. name: "DEFCON 0",
  2321. height: math.unit(3, "gigaparsecs")
  2322. },
  2323. ]
  2324. ))
  2325. characterMakers.push(() => makeCharacter(
  2326. { name: "Gale" },
  2327. {
  2328. front: {
  2329. height: math.unit(2, "meters"),
  2330. weight: math.unit(76, "kg"),
  2331. name: "Front",
  2332. image: {
  2333. source: "./media/characters/gale/front.svg"
  2334. }
  2335. },
  2336. frontAlt1: {
  2337. height: math.unit(2, "meters"),
  2338. weight: math.unit(76, "kg"),
  2339. name: "Front (Alt 1)",
  2340. image: {
  2341. source: "./media/characters/gale/front-alt-1.svg"
  2342. }
  2343. },
  2344. frontAlt2: {
  2345. height: math.unit(2, "meters"),
  2346. weight: math.unit(76, "kg"),
  2347. name: "Front (Alt 2)",
  2348. image: {
  2349. source: "./media/characters/gale/front-alt-2.svg"
  2350. }
  2351. },
  2352. },
  2353. [
  2354. {
  2355. name: "Normal",
  2356. height: math.unit(7, "feet")
  2357. },
  2358. {
  2359. name: "Macro",
  2360. height: math.unit(150, "feet"),
  2361. default: true
  2362. },
  2363. {
  2364. name: "Macro+",
  2365. height: math.unit(300, "feet")
  2366. },
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Draylen" },
  2371. {
  2372. front: {
  2373. height: math.unit(2, "meters"),
  2374. weight: math.unit(76, "kg"),
  2375. name: "Front",
  2376. image: {
  2377. source: "./media/characters/draylen/front.svg"
  2378. }
  2379. }
  2380. },
  2381. [
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(150, "feet"),
  2385. default: true
  2386. }
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Chez" },
  2391. {
  2392. front: {
  2393. height: math.unit(7 + 9 / 12, "feet"),
  2394. weight: math.unit(379, "lbs"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/chez/front.svg"
  2398. }
  2399. },
  2400. side: {
  2401. height: math.unit(7 + 9 / 12, "feet"),
  2402. weight: math.unit(379, "lbs"),
  2403. name: "Side",
  2404. image: {
  2405. source: "./media/characters/chez/side.svg"
  2406. }
  2407. }
  2408. },
  2409. [
  2410. {
  2411. name: "Normal",
  2412. height: math.unit(7 + 9 / 12, "feet"),
  2413. default: true
  2414. },
  2415. {
  2416. name: "God King",
  2417. height: math.unit(9750000, "meters")
  2418. }
  2419. ]
  2420. ))
  2421. characterMakers.push(() => makeCharacter(
  2422. { name: "Kaylum" },
  2423. {
  2424. front: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(275, "lbs"),
  2427. name: "Front",
  2428. image: {
  2429. source: "./media/characters/kaylum/front.svg",
  2430. bottom: 0.01,
  2431. extra: 1166 / 1031
  2432. }
  2433. },
  2434. frontWingless: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(275, "lbs"),
  2437. name: "Front (Wingless)",
  2438. image: {
  2439. source: "./media/characters/kaylum/front-wingless.svg",
  2440. bottom: 0.01,
  2441. extra: 1117 / 1031
  2442. }
  2443. }
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(3.05, "meters")
  2449. },
  2450. {
  2451. name: "Master",
  2452. height: math.unit(5.5, "meters")
  2453. },
  2454. {
  2455. name: "Rampage",
  2456. height: math.unit(19, "meters")
  2457. },
  2458. {
  2459. name: "Macro Lite",
  2460. height: math.unit(37, "meters")
  2461. },
  2462. {
  2463. name: "Hyper Predator",
  2464. height: math.unit(61, "meters")
  2465. },
  2466. {
  2467. name: "Macro",
  2468. height: math.unit(138, "meters"),
  2469. default: true
  2470. }
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Geta" },
  2475. {
  2476. front: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(150, "lbs"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/geta/front.svg"
  2482. }
  2483. }
  2484. },
  2485. [
  2486. {
  2487. name: "Micro",
  2488. height: math.unit(3, "inches"),
  2489. default: true
  2490. },
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(5 + 5 / 12, "feet")
  2494. }
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Tyrnn" },
  2499. {
  2500. front: {
  2501. height: math.unit(6, "feet"),
  2502. weight: math.unit(300, "lbs"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/tyrnn/front.svg"
  2506. }
  2507. }
  2508. },
  2509. [
  2510. {
  2511. name: "Main Height",
  2512. height: math.unit(355, "feet"),
  2513. default: true
  2514. },
  2515. {
  2516. name: "Fave. Height",
  2517. height: math.unit(2400, "feet")
  2518. }
  2519. ]
  2520. ))
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Apple" },
  2523. {
  2524. front: {
  2525. height: math.unit(6, "feet"),
  2526. weight: math.unit(300, "lbs"),
  2527. name: "Front",
  2528. image: {
  2529. source: "./media/characters/appledectomy/front.svg"
  2530. }
  2531. }
  2532. },
  2533. [
  2534. {
  2535. name: "Macro",
  2536. height: math.unit(2500, "feet")
  2537. },
  2538. {
  2539. name: "Megamacro",
  2540. height: math.unit(50, "miles"),
  2541. default: true
  2542. },
  2543. {
  2544. name: "Gigamacro",
  2545. height: math.unit(5000, "miles")
  2546. },
  2547. {
  2548. name: "Teramacro",
  2549. height: math.unit(250000, "miles")
  2550. },
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Vulpes" },
  2555. {
  2556. front: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(200, "lbs"),
  2559. name: "Front",
  2560. image: {
  2561. source: "./media/characters/vulpes/front.svg",
  2562. extra: 573 / 543,
  2563. bottom: 0.033
  2564. }
  2565. },
  2566. side: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(200, "lbs"),
  2569. name: "Side",
  2570. image: {
  2571. source: "./media/characters/vulpes/side.svg",
  2572. extra: 573 / 543,
  2573. bottom: 0.01
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(6, "feet"),
  2578. weight: math.unit(200, "lbs"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/vulpes/back.svg",
  2582. extra: 573 / 543,
  2583. }
  2584. },
  2585. feet: {
  2586. height: math.unit(1.276, "feet"),
  2587. name: "Feet",
  2588. image: {
  2589. source: "./media/characters/vulpes/feet.svg"
  2590. }
  2591. },
  2592. maw: {
  2593. height: math.unit(1.18, "feet"),
  2594. name: "Maw",
  2595. image: {
  2596. source: "./media/characters/vulpes/maw.svg"
  2597. }
  2598. },
  2599. },
  2600. [
  2601. {
  2602. name: "Micro",
  2603. height: math.unit(2, "inches")
  2604. },
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(6.3, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(850, "feet")
  2612. },
  2613. {
  2614. name: "Megamacro",
  2615. height: math.unit(7500, "feet"),
  2616. default: true
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(570000, "miles")
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Rain Fallen" },
  2626. {
  2627. front: {
  2628. height: math.unit(6, "feet"),
  2629. weight: math.unit(210, "lbs"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/rain-fallen/front.svg"
  2633. }
  2634. },
  2635. side: {
  2636. height: math.unit(6, "feet"),
  2637. weight: math.unit(210, "lbs"),
  2638. name: "Side",
  2639. image: {
  2640. source: "./media/characters/rain-fallen/side.svg"
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(6, "feet"),
  2645. weight: math.unit(210, "lbs"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/rain-fallen/back.svg"
  2649. }
  2650. },
  2651. feral: {
  2652. height: math.unit(9, "feet"),
  2653. weight: math.unit(700, "lbs"),
  2654. name: "Feral",
  2655. image: {
  2656. source: "./media/characters/rain-fallen/feral.svg"
  2657. }
  2658. },
  2659. },
  2660. [
  2661. {
  2662. name: "Normal",
  2663. height: math.unit(5, "meter")
  2664. },
  2665. {
  2666. name: "Macro",
  2667. height: math.unit(150, "meter"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(278e6, "meter")
  2673. },
  2674. {
  2675. name: "Gigamacro",
  2676. height: math.unit(2e9, "meter")
  2677. },
  2678. {
  2679. name: "Teramacro",
  2680. height: math.unit(8e12, "meter")
  2681. },
  2682. {
  2683. name: "Devourer",
  2684. height: math.unit(14, "zettameters")
  2685. },
  2686. {
  2687. name: "Scarlet King",
  2688. height: math.unit(18, "yottameters")
  2689. },
  2690. {
  2691. name: "Void",
  2692. height: math.unit(6.66e66, "yottameters")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Zaakira" },
  2698. {
  2699. standing: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(180, "lbs"),
  2702. name: "Standing",
  2703. image: {
  2704. source: "./media/characters/zaakira/standing.svg"
  2705. }
  2706. },
  2707. laying: {
  2708. height: math.unit(3, "feet"),
  2709. weight: math.unit(180, "lbs"),
  2710. name: "Laying",
  2711. image: {
  2712. source: "./media/characters/zaakira/laying.svg"
  2713. }
  2714. },
  2715. },
  2716. [
  2717. {
  2718. name: "Normal",
  2719. height: math.unit(12, "feet")
  2720. },
  2721. {
  2722. name: "Macro",
  2723. height: math.unit(279, "feet"),
  2724. default: true
  2725. }
  2726. ]
  2727. ))
  2728. characterMakers.push(() => makeCharacter(
  2729. { name: "Sigvald" },
  2730. {
  2731. front: {
  2732. height: math.unit(6, "feet"),
  2733. weight: math.unit(250, "lbs"),
  2734. name: "Front",
  2735. image: {
  2736. source: "./media/characters/sigvald/front.svg",
  2737. extra: 1000 / 850
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(6, "feet"),
  2742. weight: math.unit(250, "lbs"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/sigvald/back.svg"
  2746. }
  2747. },
  2748. },
  2749. [
  2750. {
  2751. name: "Normal",
  2752. height: math.unit(8, "feet")
  2753. },
  2754. {
  2755. name: "Large",
  2756. height: math.unit(12, "feet")
  2757. },
  2758. {
  2759. name: "Larger",
  2760. height: math.unit(20, "feet")
  2761. },
  2762. {
  2763. name: "Macro",
  2764. height: math.unit(150, "feet")
  2765. },
  2766. {
  2767. name: "Macro+",
  2768. height: math.unit(200, "feet"),
  2769. default: true
  2770. },
  2771. ]
  2772. ))
  2773. characterMakers.push(() => makeCharacter(
  2774. { name: "Scott" },
  2775. {
  2776. side: {
  2777. height: math.unit(12, "feet"),
  2778. weight: math.unit(2000, "kg"),
  2779. name: "Side",
  2780. image: {
  2781. source: "./media/characters/scott/side.svg",
  2782. extra: 754/724,
  2783. bottom: 0.069
  2784. }
  2785. },
  2786. upright: {
  2787. height: math.unit(12, "feet"),
  2788. weight: math.unit(2000, "kg"),
  2789. name: "Upright",
  2790. image: {
  2791. source: "./media/characters/scott/upright.svg",
  2792. extra: 3881/3722,
  2793. bottom: 0.05
  2794. }
  2795. },
  2796. },
  2797. [
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(12, "feet"),
  2801. default: true
  2802. },
  2803. ]
  2804. ))
  2805. characterMakers.push(() => makeCharacter(
  2806. { name: "Tobias" },
  2807. {
  2808. side: {
  2809. height: math.unit(8, "meters"),
  2810. weight: math.unit(84755, "lbs"),
  2811. name: "Side",
  2812. image: {
  2813. source: "./media/characters/tobias/side.svg",
  2814. extra: 1474 / 1096,
  2815. bottom: 38.9 / 1513.1235
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(8, "meters"),
  2823. default: true
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Kieran" },
  2829. {
  2830. front: {
  2831. height: math.unit(5.5, "feet"),
  2832. weight: math.unit(400, "lbs"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/kieran/front.svg",
  2836. extra: 2694/2364,
  2837. bottom: 217/2908
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(5.5, "feet"),
  2842. weight: math.unit(400, "lbs"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/kieran/side.svg",
  2846. extra: 875/777,
  2847. bottom: 84.6/959
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Normal",
  2854. height: math.unit(5.5, "feet"),
  2855. default: true
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Sanya" },
  2861. {
  2862. side: {
  2863. height: math.unit(2, "meters"),
  2864. weight: math.unit(70, "kg"),
  2865. name: "Side",
  2866. image: {
  2867. source: "./media/characters/sanya/side.svg",
  2868. bottom: 0.02,
  2869. extra: 1.02
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Small",
  2876. height: math.unit(2, "meters")
  2877. },
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(3, "meters")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(16, "meters"),
  2885. default: true
  2886. },
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Miranda" },
  2891. {
  2892. side: {
  2893. height: math.unit(2, "meters"),
  2894. weight: math.unit(120, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/miranda/front.svg",
  2898. extra: 10.6 / 10
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(10, "feet"),
  2906. default: true
  2907. }
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "James" },
  2912. {
  2913. side: {
  2914. height: math.unit(2, "meters"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Front",
  2917. image: {
  2918. source: "./media/characters/james/front.svg",
  2919. extra: 10 / 8.5
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(8.5, "feet"),
  2927. default: true
  2928. }
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Heather" },
  2933. {
  2934. side: {
  2935. height: math.unit(9.5, "feet"),
  2936. weight: math.unit(2500, "lbs"),
  2937. name: "Side",
  2938. image: {
  2939. source: "./media/characters/heather/side.svg"
  2940. }
  2941. },
  2942. },
  2943. [
  2944. {
  2945. name: "Normal",
  2946. height: math.unit(9.5, "feet"),
  2947. default: true
  2948. }
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Lukas" },
  2953. {
  2954. side: {
  2955. height: math.unit(6.5, "feet"),
  2956. weight: math.unit(400, "lbs"),
  2957. name: "Side",
  2958. image: {
  2959. source: "./media/characters/lukas/side.svg",
  2960. extra: 7.25 / 6.5
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(6.5, "feet"),
  2968. default: true
  2969. }
  2970. ]
  2971. ))
  2972. characterMakers.push(() => makeCharacter(
  2973. { name: "Louise" },
  2974. {
  2975. side: {
  2976. height: math.unit(5, "feet"),
  2977. weight: math.unit(3000, "lbs"),
  2978. name: "Side",
  2979. image: {
  2980. source: "./media/characters/louise/side.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5, "feet"),
  2988. default: true
  2989. }
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Ramona" },
  2994. {
  2995. side: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(150, "lbs"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/ramona/side.svg"
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(5.3, "meters"),
  3008. default: true
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(20, "stories")
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(50, "stories")
  3017. },
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Deerpuff" },
  3022. {
  3023. standing: {
  3024. height: math.unit(5.75, "feet"),
  3025. weight: math.unit(160, "lbs"),
  3026. name: "Standing",
  3027. image: {
  3028. source: "./media/characters/deerpuff/standing.svg",
  3029. extra: 682 / 624
  3030. }
  3031. },
  3032. sitting: {
  3033. height: math.unit(5.75 / 1.79, "feet"),
  3034. weight: math.unit(160, "lbs"),
  3035. name: "Sitting",
  3036. image: {
  3037. source: "./media/characters/deerpuff/sitting.svg",
  3038. bottom: 44 / 400,
  3039. extra: 1
  3040. }
  3041. },
  3042. taurLaying: {
  3043. height: math.unit(6, "feet"),
  3044. weight: math.unit(400, "lbs"),
  3045. name: "Taur (Laying)",
  3046. image: {
  3047. source: "./media/characters/deerpuff/taur-laying.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Puffball",
  3054. height: math.unit(6, "inches")
  3055. },
  3056. {
  3057. name: "Normalpuff",
  3058. height: math.unit(5.75, "feet")
  3059. },
  3060. {
  3061. name: "Macropuff",
  3062. height: math.unit(1500, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Megapuff",
  3067. height: math.unit(500, "miles")
  3068. },
  3069. {
  3070. name: "Gigapuff",
  3071. height: math.unit(250000, "miles")
  3072. },
  3073. {
  3074. name: "Omegapuff",
  3075. height: math.unit(1000, "lightyears")
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Vivian" },
  3081. {
  3082. stomping: {
  3083. height: math.unit(6, "feet"),
  3084. weight: math.unit(170, "lbs"),
  3085. name: "Stomping",
  3086. image: {
  3087. source: "./media/characters/vivian/stomping.svg"
  3088. }
  3089. },
  3090. sitting: {
  3091. height: math.unit(6 / 1.75, "feet"),
  3092. weight: math.unit(170, "lbs"),
  3093. name: "Sitting",
  3094. image: {
  3095. source: "./media/characters/vivian/sitting.svg",
  3096. bottom: 1 / 6.4,
  3097. extra: 1,
  3098. }
  3099. },
  3100. },
  3101. [
  3102. {
  3103. name: "Normal",
  3104. height: math.unit(7, "feet"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Macro",
  3109. height: math.unit(10, "stories")
  3110. },
  3111. {
  3112. name: "Macro+",
  3113. height: math.unit(30, "stories")
  3114. },
  3115. {
  3116. name: "Megamacro",
  3117. height: math.unit(10, "miles")
  3118. },
  3119. {
  3120. name: "Megamacro+",
  3121. height: math.unit(2750000, "meters")
  3122. },
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Prince" },
  3127. {
  3128. front: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(160, "lbs"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/prince/front.svg",
  3134. extra: 3400 / 3000
  3135. }
  3136. },
  3137. jumping: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(160, "lbs"),
  3140. name: "Jumping",
  3141. image: {
  3142. source: "./media/characters/prince/jump.svg",
  3143. extra: 2555 / 2134
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(7.75, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Not cute",
  3155. height: math.unit(17, "feet")
  3156. },
  3157. {
  3158. name: "I said NOT",
  3159. height: math.unit(91, "feet")
  3160. },
  3161. {
  3162. name: "Please stop",
  3163. height: math.unit(560, "feet")
  3164. },
  3165. {
  3166. name: "What have you done",
  3167. height: math.unit(2200, "feet")
  3168. },
  3169. {
  3170. name: "Deer God",
  3171. height: math.unit(3.6, "miles")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Psymon" },
  3177. {
  3178. standing: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(300, "lbs"),
  3181. name: "Standing",
  3182. image: {
  3183. source: "./media/characters/psymon/standing.svg",
  3184. extra: 1888 / 1810,
  3185. bottom: 0.05
  3186. }
  3187. },
  3188. slithering: {
  3189. height: math.unit(6, "feet"),
  3190. weight: math.unit(300, "lbs"),
  3191. name: "Slithering",
  3192. image: {
  3193. source: "./media/characters/psymon/slithering.svg",
  3194. extra: 1330 / 1224
  3195. }
  3196. },
  3197. slitheringAlt: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(300, "lbs"),
  3200. name: "Slithering (Alt)",
  3201. image: {
  3202. source: "./media/characters/psymon/slithering-alt.svg",
  3203. extra: 1330 / 1224
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Normal",
  3210. height: math.unit(11.25, "feet"),
  3211. default: true
  3212. },
  3213. {
  3214. name: "Large",
  3215. height: math.unit(27, "feet")
  3216. },
  3217. {
  3218. name: "Giant",
  3219. height: math.unit(87, "feet")
  3220. },
  3221. {
  3222. name: "Macro",
  3223. height: math.unit(365, "feet")
  3224. },
  3225. {
  3226. name: "Megamacro",
  3227. height: math.unit(3, "miles")
  3228. },
  3229. {
  3230. name: "World Serpent",
  3231. height: math.unit(8000, "miles")
  3232. },
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "Daimos" },
  3237. {
  3238. front: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(180, "lbs"),
  3241. name: "Front",
  3242. image: {
  3243. source: "./media/characters/daimos/front.svg",
  3244. extra: 4160 / 3897,
  3245. bottom: 0.021
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(8, "feet"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Big Dog",
  3257. height: math.unit(22, "feet")
  3258. },
  3259. {
  3260. name: "Macro",
  3261. height: math.unit(127, "feet")
  3262. },
  3263. {
  3264. name: "Megamacro",
  3265. height: math.unit(3600, "feet")
  3266. },
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Blake" },
  3271. {
  3272. side: {
  3273. height: math.unit(6, "feet"),
  3274. weight: math.unit(180, "lbs"),
  3275. name: "Side",
  3276. image: {
  3277. source: "./media/characters/blake/side.svg",
  3278. extra: 1212 / 1120,
  3279. bottom: 0.05
  3280. }
  3281. },
  3282. crouched: {
  3283. height: math.unit(6 * 0.57, "feet"),
  3284. weight: math.unit(180, "lbs"),
  3285. name: "Crouched",
  3286. image: {
  3287. source: "./media/characters/blake/crouched.svg",
  3288. extra: 840 / 587,
  3289. bottom: 0.04
  3290. }
  3291. },
  3292. bent: {
  3293. height: math.unit(6 * 0.75, "feet"),
  3294. weight: math.unit(180, "lbs"),
  3295. name: "Bent",
  3296. image: {
  3297. source: "./media/characters/blake/bent.svg",
  3298. extra: 592 / 544,
  3299. bottom: 0.035
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Normal",
  3306. height: math.unit(8 + 1 / 6, "feet"),
  3307. default: true
  3308. },
  3309. {
  3310. name: "Big Backside",
  3311. height: math.unit(37, "feet")
  3312. },
  3313. {
  3314. name: "Subway Shredder",
  3315. height: math.unit(72, "feet")
  3316. },
  3317. {
  3318. name: "City Carver",
  3319. height: math.unit(1675, "feet")
  3320. },
  3321. {
  3322. name: "Tectonic Tweaker",
  3323. height: math.unit(2300, "miles")
  3324. },
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Guisetto" },
  3329. {
  3330. front: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(180, "lbs"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/guisetto/front.svg",
  3336. extra: 856 / 817,
  3337. bottom: 0.06
  3338. }
  3339. },
  3340. airborne: {
  3341. height: math.unit(6, "feet"),
  3342. weight: math.unit(180, "lbs"),
  3343. name: "Airborne",
  3344. image: {
  3345. source: "./media/characters/guisetto/airborne.svg",
  3346. extra: 584 / 525
  3347. }
  3348. },
  3349. },
  3350. [
  3351. {
  3352. name: "Normal",
  3353. height: math.unit(10 + 11 / 12, "feet"),
  3354. default: true
  3355. },
  3356. {
  3357. name: "Large",
  3358. height: math.unit(35, "feet")
  3359. },
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(475, "feet")
  3363. },
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Luxor" },
  3368. {
  3369. front: {
  3370. height: math.unit(6, "feet"),
  3371. weight: math.unit(180, "lbs"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/luxor/front.svg",
  3375. extra: 2940 / 2152
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(180, "lbs"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/luxor/back.svg",
  3384. extra: 1083 / 960
  3385. }
  3386. },
  3387. },
  3388. [
  3389. {
  3390. name: "Normal",
  3391. height: math.unit(5 + 5 / 6, "feet"),
  3392. default: true
  3393. },
  3394. {
  3395. name: "Lamp",
  3396. height: math.unit(50, "feet")
  3397. },
  3398. {
  3399. name: "Lämp",
  3400. height: math.unit(300, "feet")
  3401. },
  3402. {
  3403. name: "The sun is a lamp",
  3404. height: math.unit(250000, "miles")
  3405. },
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Huoyan" },
  3410. {
  3411. front: {
  3412. height: math.unit(6, "feet"),
  3413. weight: math.unit(50, "lbs"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/huoyan/front.svg"
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(180, "lbs"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/huoyan/side.svg"
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Chef",
  3431. height: math.unit(9, "feet")
  3432. },
  3433. {
  3434. name: "Normal",
  3435. height: math.unit(65, "feet"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro",
  3440. height: math.unit(780, "feet")
  3441. },
  3442. {
  3443. name: "Flaming Mountain",
  3444. height: math.unit(4.8, "miles")
  3445. },
  3446. {
  3447. name: "Celestial",
  3448. height: math.unit(765000, "miles")
  3449. },
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Tails" },
  3454. {
  3455. front: {
  3456. height: math.unit(5 + 3 / 4, "feet"),
  3457. weight: math.unit(120, "lbs"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/tails/front.svg"
  3461. }
  3462. }
  3463. },
  3464. [
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(5 + 3 / 4, "feet"),
  3468. default: true
  3469. }
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Rainy" },
  3474. {
  3475. front: {
  3476. height: math.unit(4, "feet"),
  3477. weight: math.unit(50, "lbs"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/rainy/front.svg"
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(800, "feet"),
  3488. default: true
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Rainier" },
  3494. {
  3495. front: {
  3496. height: math.unit(6, "feet"),
  3497. weight: math.unit(150, "lbs"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/rainier/front.svg"
  3501. }
  3502. }
  3503. },
  3504. [
  3505. {
  3506. name: "Micro",
  3507. height: math.unit(2, "mm"),
  3508. default: true
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Andy" },
  3514. {
  3515. front: {
  3516. height: math.unit(6, "feet"),
  3517. weight: math.unit(180, "lbs"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/andy/front.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(8, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(1000, "feet")
  3533. },
  3534. {
  3535. name: "Megamacro",
  3536. height: math.unit(5, "miles")
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(5000, "miles")
  3541. },
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Cimmaron" },
  3546. {
  3547. front: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(210, "lbs"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/cimmaron/front-sfw.svg",
  3553. extra: 701 / 676,
  3554. bottom: 0.046
  3555. }
  3556. },
  3557. back: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(210, "lbs"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/cimmaron/back-sfw.svg",
  3563. extra: 701 / 676,
  3564. bottom: 0.046
  3565. }
  3566. },
  3567. frontNsfw: {
  3568. height: math.unit(6, "feet"),
  3569. weight: math.unit(210, "lbs"),
  3570. name: "Front (NSFW)",
  3571. image: {
  3572. source: "./media/characters/cimmaron/front-nsfw.svg",
  3573. extra: 701 / 676,
  3574. bottom: 0.046
  3575. }
  3576. },
  3577. backNsfw: {
  3578. height: math.unit(6, "feet"),
  3579. weight: math.unit(210, "lbs"),
  3580. name: "Back (NSFW)",
  3581. image: {
  3582. source: "./media/characters/cimmaron/back-nsfw.svg",
  3583. extra: 701 / 676,
  3584. bottom: 0.046
  3585. }
  3586. },
  3587. dick: {
  3588. height: math.unit(1.714, "feet"),
  3589. name: "Dick",
  3590. image: {
  3591. source: "./media/characters/cimmaron/dick.svg"
  3592. }
  3593. },
  3594. },
  3595. [
  3596. {
  3597. name: "Normal",
  3598. height: math.unit(6, "feet"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Macro Mayor",
  3603. height: math.unit(350, "meters")
  3604. },
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Akari Kaen" },
  3609. {
  3610. front: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(200, "lbs"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/akari/front.svg",
  3616. extra: 962 / 901,
  3617. bottom: 0.04
  3618. }
  3619. }
  3620. },
  3621. [
  3622. {
  3623. name: "Micro",
  3624. height: math.unit(5, "inches"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(7, "feet")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Cynosura" },
  3635. {
  3636. front: {
  3637. height: math.unit(6, "feet"),
  3638. weight: math.unit(140, "lbs"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/cynosura/front.svg",
  3642. extra: 896 / 847
  3643. }
  3644. },
  3645. back: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(140, "lbs"),
  3648. name: "Back",
  3649. image: {
  3650. source: "./media/characters/cynosura/back.svg",
  3651. extra: 1365 / 1250
  3652. }
  3653. },
  3654. },
  3655. [
  3656. {
  3657. name: "Micro",
  3658. height: math.unit(4, "inches")
  3659. },
  3660. {
  3661. name: "Normal",
  3662. height: math.unit(5.75, "feet"),
  3663. default: true
  3664. },
  3665. {
  3666. name: "Tall",
  3667. height: math.unit(10, "feet")
  3668. },
  3669. {
  3670. name: "Big",
  3671. height: math.unit(20, "feet")
  3672. },
  3673. {
  3674. name: "Macro",
  3675. height: math.unit(50, "feet")
  3676. },
  3677. ]
  3678. ))
  3679. characterMakers.push(() => makeCharacter(
  3680. { name: "Gin" },
  3681. {
  3682. front: {
  3683. height: math.unit(6, "feet"),
  3684. weight: math.unit(170, "lbs"),
  3685. name: "Front",
  3686. image: {
  3687. source: "./media/characters/gin/front.svg",
  3688. extra: 1.053,
  3689. bottom: 0.025
  3690. }
  3691. },
  3692. foot: {
  3693. height: math.unit(6 / 4.25, "feet"),
  3694. name: "Foot",
  3695. image: {
  3696. source: "./media/characters/gin/foot.svg"
  3697. }
  3698. },
  3699. sole: {
  3700. height: math.unit(6 / 4.40, "feet"),
  3701. name: "Sole",
  3702. image: {
  3703. source: "./media/characters/gin/sole.svg"
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Normal",
  3710. height: math.unit(13 + 2/12, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(1500, "feet")
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(200, "miles"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Gigamacro",
  3723. height: math.unit(500, "megameters")
  3724. },
  3725. {
  3726. name: "Teramacro",
  3727. height: math.unit(15, "lightyears")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Guy" },
  3733. {
  3734. front: {
  3735. height: math.unit(6 + 1 / 6, "feet"),
  3736. weight: math.unit(178, "lbs"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/guy/front.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Normal",
  3746. height: math.unit(6 + 1 / 6, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Large",
  3751. height: math.unit(25 + 7 / 12, "feet")
  3752. },
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(60 + 9 / 12, "feet")
  3756. },
  3757. {
  3758. name: "Macro+",
  3759. height: math.unit(246, "feet")
  3760. },
  3761. {
  3762. name: "Macro++",
  3763. height: math.unit(878, "feet")
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Tiberius" },
  3769. {
  3770. front: {
  3771. height: math.unit(9, "feet"),
  3772. weight: math.unit(800, "lbs"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/tiberius/front.svg",
  3776. extra: 2295 / 2071
  3777. }
  3778. },
  3779. back: {
  3780. height: math.unit(9, "feet"),
  3781. weight: math.unit(800, "lbs"),
  3782. name: "Back",
  3783. image: {
  3784. source: "./media/characters/tiberius/back.svg",
  3785. extra: 2373 / 2160
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(9, "feet"),
  3793. default: true
  3794. }
  3795. ]
  3796. ))
  3797. characterMakers.push(() => makeCharacter(
  3798. { name: "Surgo" },
  3799. {
  3800. front: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(600, "lbs"),
  3803. name: "Front",
  3804. image: {
  3805. source: "./media/characters/surgo/front.svg",
  3806. extra: 3591 / 2227
  3807. }
  3808. },
  3809. back: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(600, "lbs"),
  3812. name: "Back",
  3813. image: {
  3814. source: "./media/characters/surgo/back.svg",
  3815. extra: 3557 / 2228
  3816. }
  3817. },
  3818. laying: {
  3819. height: math.unit(6 * 0.85, "feet"),
  3820. weight: math.unit(600, "lbs"),
  3821. name: "Laying",
  3822. image: {
  3823. source: "./media/characters/surgo/laying.svg"
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(6, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Cibus" },
  3837. {
  3838. side: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(150, "lbs"),
  3841. name: "Side",
  3842. image: {
  3843. source: "./media/characters/cibus/side.svg",
  3844. extra: 800 / 400
  3845. }
  3846. },
  3847. },
  3848. [
  3849. {
  3850. name: "Normal",
  3851. height: math.unit(6, "feet"),
  3852. default: true
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Nibbles" },
  3858. {
  3859. front: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(240, "lbs"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/nibbles/front.svg"
  3865. }
  3866. },
  3867. side: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(240, "lbs"),
  3870. name: "Side",
  3871. image: {
  3872. source: "./media/characters/nibbles/side.svg"
  3873. }
  3874. },
  3875. },
  3876. [
  3877. {
  3878. name: "Normal",
  3879. height: math.unit(9, "feet"),
  3880. default: true
  3881. }
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Rikky" },
  3886. {
  3887. side: {
  3888. height: math.unit(5 + 1 / 6, "feet"),
  3889. weight: math.unit(130, "lbs"),
  3890. name: "Side",
  3891. image: {
  3892. source: "./media/characters/rikky/side.svg"
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "Normal",
  3899. height: math.unit(5 + 1 / 6, "feet")
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(152, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Megamacro",
  3908. height: math.unit(7, "miles")
  3909. }
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Malfressa" },
  3914. {
  3915. side: {
  3916. height: math.unit(370, "cm"),
  3917. weight: math.unit(350, "lbs"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/malfressa/side.svg"
  3921. }
  3922. },
  3923. walking: {
  3924. height: math.unit(370, "cm"),
  3925. weight: math.unit(350, "lbs"),
  3926. name: "Walking",
  3927. image: {
  3928. source: "./media/characters/malfressa/walking.svg"
  3929. }
  3930. },
  3931. feral: {
  3932. height: math.unit(2500, "cm"),
  3933. weight: math.unit(100000, "lbs"),
  3934. name: "Feral",
  3935. image: {
  3936. source: "./media/characters/malfressa/feral.svg",
  3937. extra: 2108 / 837,
  3938. bottom: 0.02
  3939. }
  3940. },
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(370, "cm")
  3946. },
  3947. {
  3948. name: "Macro",
  3949. height: math.unit(300, "meters"),
  3950. default: true
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Jaro" },
  3956. {
  3957. front: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(60, "kg"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/jaro/front.svg"
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(60, "kg"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/jaro/back.svg"
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Micro",
  3977. height: math.unit(7, "inches")
  3978. },
  3979. {
  3980. name: "Normal",
  3981. height: math.unit(5.5, "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Minimacro",
  3986. height: math.unit(20, "feet")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(200, "meters")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Rogue" },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(195, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/rogue/front.svg"
  4003. }
  4004. },
  4005. },
  4006. [
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(90, "feet"),
  4010. default: true
  4011. },
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Piper" },
  4016. {
  4017. front: {
  4018. height: math.unit(5 + 8 / 12, "feet"),
  4019. weight: math.unit(140, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/piper/front.svg",
  4023. extra: 3928 / 3681
  4024. }
  4025. },
  4026. },
  4027. [
  4028. {
  4029. name: "Micro",
  4030. height: math.unit(2, "inches")
  4031. },
  4032. {
  4033. name: "Normal",
  4034. height: math.unit(5 + 8 / 12, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(250, "feet"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Megamacro",
  4043. height: math.unit(7, "miles")
  4044. },
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Gemini" },
  4049. {
  4050. front: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(220, "lb"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/gemini/front.svg"
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(220, "lb"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/gemini/back.svg"
  4064. }
  4065. },
  4066. kneeling: {
  4067. height: math.unit(6 / 1.5, "feet"),
  4068. weight: math.unit(220, "lb"),
  4069. name: "Kneeling",
  4070. image: {
  4071. source: "./media/characters/gemini/kneeling.svg",
  4072. bottom: 0.02
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(300, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(6900, "meters")
  4085. },
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Alicia" },
  4090. {
  4091. anthro: {
  4092. height: math.unit(2.35, "meters"),
  4093. weight: math.unit(73, "kg"),
  4094. name: "Anthro",
  4095. image: {
  4096. source: "./media/characters/alicia/anthro.svg"
  4097. }
  4098. },
  4099. feral: {
  4100. height: math.unit(1.69, "meters"),
  4101. weight: math.unit(73, "kg"),
  4102. name: "Feral",
  4103. image: {
  4104. source: "./media/characters/alicia/feral.svg"
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(2.35, "meters")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(60, "meters"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Megamacro",
  4120. height: math.unit(10000, "kilometers")
  4121. },
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Archy" },
  4126. {
  4127. front: {
  4128. height: math.unit(7, "feet"),
  4129. weight: math.unit(250, "lbs"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/archy/front.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Micro",
  4139. height: math.unit(1, "inch")
  4140. },
  4141. {
  4142. name: "Shorty",
  4143. height: math.unit(5, "feet")
  4144. },
  4145. {
  4146. name: "Normal",
  4147. height: math.unit(7, "feet")
  4148. },
  4149. {
  4150. name: "Macro",
  4151. height: math.unit(600, "meters"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(1, "mile")
  4157. },
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Berri" },
  4162. {
  4163. front: {
  4164. height: math.unit(1.65, "meters"),
  4165. weight: math.unit(74, "kg"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/berri/front.svg"
  4169. }
  4170. }
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(1.65, "meters")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(60, "m"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(9.213, "km")
  4185. },
  4186. {
  4187. name: "Planet Eater",
  4188. height: math.unit(489, "megameters")
  4189. },
  4190. {
  4191. name: "Teramacro",
  4192. height: math.unit(2471635000000, "meters")
  4193. },
  4194. {
  4195. name: "Examacro",
  4196. height: math.unit(8.0624e+26, "meters")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Lexi" },
  4202. {
  4203. front: {
  4204. height: math.unit(1.72, "meters"),
  4205. weight: math.unit(68, "kg"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/lexi/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Very Smol",
  4215. height: math.unit(10, "mm")
  4216. },
  4217. {
  4218. name: "Micro",
  4219. height: math.unit(6.8, "cm"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(1.72, "m")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Martin" },
  4230. {
  4231. front: {
  4232. height: math.unit(1.69, "meters"),
  4233. weight: math.unit(68, "kg"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/martin/front.svg",
  4237. extra: 596 / 581
  4238. }
  4239. }
  4240. },
  4241. [
  4242. {
  4243. name: "Micro",
  4244. height: math.unit(6.85, "cm"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(1.69, "m")
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Juno" },
  4255. {
  4256. front: {
  4257. height: math.unit(1.69, "meters"),
  4258. weight: math.unit(68, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/juno/front.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Micro",
  4268. height: math.unit(7, "cm")
  4269. },
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(1.89, "m")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(353, "meters"),
  4277. default: true
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Samantha" },
  4283. {
  4284. front: {
  4285. height: math.unit(1.93, "meters"),
  4286. weight: math.unit(83, "kg"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/samantha/front.svg"
  4290. }
  4291. },
  4292. frontClothed: {
  4293. height: math.unit(1.93, "meters"),
  4294. weight: math.unit(83, "kg"),
  4295. name: "Front (Clothed)",
  4296. image: {
  4297. source: "./media/characters/samantha/front-clothed.svg"
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(1.93, "meters"),
  4302. weight: math.unit(83, "kg"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/samantha/back.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(1.93, "m")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(74, "meters"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(223, "meters"),
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(8381, "meters"),
  4326. },
  4327. {
  4328. name: "Megamacro+",
  4329. height: math.unit(12000, "kilometers")
  4330. },
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Dr. Clay" },
  4335. {
  4336. front: {
  4337. height: math.unit(1.92, "meters"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/dr-clay/front.svg"
  4342. }
  4343. },
  4344. frontClothed: {
  4345. height: math.unit(1.92, "meters"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Front (Clothed)",
  4348. image: {
  4349. source: "./media/characters/dr-clay/front-clothed.svg"
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(1.92, "m")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(214, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Macro+",
  4365. height: math.unit(12.237, "meters"),
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(557, "megameters"),
  4370. },
  4371. {
  4372. name: "Unimaginable",
  4373. height: math.unit(120e9, "lightyears")
  4374. },
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Wyvrn Ripsnarl" },
  4379. {
  4380. front: {
  4381. height: math.unit(2, "meters"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Teramacro",
  4392. height: math.unit(500000, "lightyears"),
  4393. default: true
  4394. },
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Vemus" },
  4399. {
  4400. front: {
  4401. height: math.unit(2, "meters"),
  4402. weight: math.unit(150, "kg"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/vemus/front.svg",
  4406. extra: 2384 / 2084,
  4407. bottom: 0.0123
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(3.75, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Big",
  4419. height: math.unit(8, "meters")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(100, "meters")
  4424. },
  4425. {
  4426. name: "Macro+",
  4427. height: math.unit(1500, "meters")
  4428. },
  4429. {
  4430. name: "Stellar",
  4431. height: math.unit(14e8, "meters")
  4432. },
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Beherit" },
  4437. {
  4438. front: {
  4439. height: math.unit(2, "meters"),
  4440. weight: math.unit(70, "kg"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/beherit/front.svg",
  4444. extra: 1408 / 1242
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(6, "feet")
  4452. },
  4453. {
  4454. name: "Lorg",
  4455. height: math.unit(25, "feet"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Lorger",
  4460. height: math.unit(75, "feet")
  4461. },
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(200, "meters")
  4465. },
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Everett" },
  4470. {
  4471. front: {
  4472. height: math.unit(2, "meters"),
  4473. weight: math.unit(150, "kg"),
  4474. name: "Front",
  4475. image: {
  4476. source: "./media/characters/everett/front.svg",
  4477. extra: 2038 / 1737,
  4478. bottom: 0.03
  4479. }
  4480. },
  4481. paw: {
  4482. height: math.unit(2 / 3.6, "meters"),
  4483. name: "Paw",
  4484. image: {
  4485. source: "./media/characters/everett/paw.svg"
  4486. }
  4487. },
  4488. },
  4489. [
  4490. {
  4491. name: "Normal",
  4492. height: math.unit(15, "feet"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "Lorg",
  4497. height: math.unit(70, "feet"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "Lorger",
  4502. height: math.unit(250, "feet")
  4503. },
  4504. {
  4505. name: "Macro",
  4506. height: math.unit(500, "meters")
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Rose Lion" },
  4512. {
  4513. front: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(86, "kg"),
  4516. name: "Front",
  4517. image: {
  4518. source: "./media/characters/rose-lion/front.svg"
  4519. }
  4520. },
  4521. bent: {
  4522. height: math.unit(2 / 1.4288, "meters"),
  4523. weight: math.unit(86, "kg"),
  4524. name: "Bent",
  4525. image: {
  4526. source: "./media/characters/rose-lion/bent.svg"
  4527. }
  4528. }
  4529. },
  4530. [
  4531. {
  4532. name: "Mini-Micro",
  4533. height: math.unit(1, "cm")
  4534. },
  4535. {
  4536. name: "Micro",
  4537. height: math.unit(3.5, "inches"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(6 + 1 / 6, "feet")
  4543. },
  4544. {
  4545. name: "Mini-Macro",
  4546. height: math.unit(9 + 10 / 12, "feet")
  4547. },
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Regal" },
  4552. {
  4553. front: {
  4554. height: math.unit(2, "meters"),
  4555. weight: math.unit(350, "lbs"),
  4556. name: "Front",
  4557. image: {
  4558. source: "./media/characters/regal/front.svg"
  4559. }
  4560. },
  4561. back: {
  4562. height: math.unit(2, "meters"),
  4563. weight: math.unit(350, "lbs"),
  4564. name: "Back",
  4565. image: {
  4566. source: "./media/characters/regal/back.svg"
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(350, "feet"),
  4574. default: true
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Opal" },
  4580. {
  4581. front: {
  4582. height: math.unit(4 + 11 / 12, "feet"),
  4583. weight: math.unit(100, "lbs"),
  4584. name: "Front",
  4585. image: {
  4586. source: "./media/characters/opal/front.svg"
  4587. }
  4588. },
  4589. frontAlt: {
  4590. height: math.unit(4 + 11 / 12, "feet"),
  4591. weight: math.unit(100, "lbs"),
  4592. name: "Front (Alt)",
  4593. image: {
  4594. source: "./media/characters/opal/front-alt.svg"
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Small",
  4601. height: math.unit(4 + 11 / 12, "feet")
  4602. },
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(20, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(120, "feet")
  4611. },
  4612. {
  4613. name: "Megamacro",
  4614. height: math.unit(80, "miles")
  4615. },
  4616. {
  4617. name: "True Size",
  4618. height: math.unit(100000, "lightyears")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Vector Wuff" },
  4624. {
  4625. front: {
  4626. height: math.unit(6, "feet"),
  4627. weight: math.unit(200, "lbs"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/vector-wuff/front.svg"
  4631. }
  4632. }
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(2.8, "meters")
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(450, "meters"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Megamacro",
  4646. height: math.unit(15, "kilometers")
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Dannik" },
  4652. {
  4653. front: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(256, "lbs"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/dannik/front.svg"
  4659. }
  4660. }
  4661. },
  4662. [
  4663. {
  4664. name: "Macro",
  4665. height: math.unit(69.57, "meters"),
  4666. default: true
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Azura Saharah" },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(120, "lbs"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/azura-saharah/front.svg"
  4679. }
  4680. },
  4681. back: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(120, "lbs"),
  4684. name: "Back",
  4685. image: {
  4686. source: "./media/characters/azura-saharah/back.svg"
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Macro",
  4693. height: math.unit(100, "feet"),
  4694. default: true
  4695. },
  4696. ]
  4697. ))
  4698. characterMakers.push(() => makeCharacter(
  4699. { name: "Kennedy" },
  4700. {
  4701. side: {
  4702. height: math.unit(5 + 4 / 12, "feet"),
  4703. weight: math.unit(163, "lbs"),
  4704. name: "Side",
  4705. image: {
  4706. source: "./media/characters/kennedy/side.svg"
  4707. }
  4708. }
  4709. },
  4710. [
  4711. {
  4712. name: "Standard Doggo",
  4713. height: math.unit(5 + 4 / 12, "feet")
  4714. },
  4715. {
  4716. name: "Big Doggo",
  4717. height: math.unit(25 + 3 / 12, "feet"),
  4718. default: true
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Odi Lunar" },
  4724. {
  4725. front: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(90, "lbs"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/odi-lunar/front.svg"
  4731. }
  4732. }
  4733. },
  4734. [
  4735. {
  4736. name: "Micro",
  4737. height: math.unit(3, "inches"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Normal",
  4742. height: math.unit(5.5, "feet")
  4743. }
  4744. ]
  4745. ))
  4746. characterMakers.push(() => makeCharacter(
  4747. { name: "Mandake" },
  4748. {
  4749. back: {
  4750. height: math.unit(6, "feet"),
  4751. weight: math.unit(220, "lbs"),
  4752. name: "Back",
  4753. image: {
  4754. source: "./media/characters/mandake/back.svg"
  4755. }
  4756. }
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(7, "feet"),
  4762. default: true
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(78, "feet")
  4767. },
  4768. {
  4769. name: "Macro+",
  4770. height: math.unit(300, "meters")
  4771. },
  4772. {
  4773. name: "Macro++",
  4774. height: math.unit(2400, "feet")
  4775. },
  4776. {
  4777. name: "Megamacro",
  4778. height: math.unit(5167, "meters")
  4779. },
  4780. {
  4781. name: "Gigamacro",
  4782. height: math.unit(41769, "miles")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Yozey" },
  4788. {
  4789. front: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(120, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/yozey/front.svg"
  4795. }
  4796. },
  4797. frontAlt: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(120, "lbs"),
  4800. name: "Front (Alt)",
  4801. image: {
  4802. source: "./media/characters/yozey/front-alt.svg"
  4803. }
  4804. },
  4805. side: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(120, "lbs"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/yozey/side.svg"
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Micro",
  4817. height: math.unit(3, "inches"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Normal",
  4822. height: math.unit(6, "feet")
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Valeska Voss" },
  4828. {
  4829. front: {
  4830. height: math.unit(6, "feet"),
  4831. weight: math.unit(103, "lbs"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/valeska-voss/front.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Mini-Sized Sub",
  4841. height: math.unit(3.1, "inches")
  4842. },
  4843. {
  4844. name: "Mid-Sized Sub",
  4845. height: math.unit(6.2, "inches")
  4846. },
  4847. {
  4848. name: "Full-Sized Sub",
  4849. height: math.unit(9.3, "inches")
  4850. },
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5 + 2 / 12, "foot"),
  4854. default: true
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Gene Zeta" },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(160, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/gene-zeta/front.svg",
  4867. bottom: 0.03,
  4868. extra: 1
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(6.25, "foot"),
  4876. default: true
  4877. },
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Razinox" },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(350, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/razinox/front.svg",
  4889. extra: 1686 / 1548,
  4890. bottom: 28.2/1868
  4891. }
  4892. },
  4893. back: {
  4894. height: math.unit(6, "feet"),
  4895. weight: math.unit(350, "lbs"),
  4896. name: "Back",
  4897. image: {
  4898. source: "./media/characters/razinox/back.svg",
  4899. extra: 1660 / 1590,
  4900. bottom: 15/1665
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(10 + 8 / 12, "foot")
  4908. },
  4909. {
  4910. name: "Minimacro",
  4911. height: math.unit(15, "foot")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(60, "foot"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Megamacro",
  4920. height: math.unit(5, "miles")
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(6000, "miles")
  4925. },
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Cobalt" },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(150, "lbs"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/cobalt/front.svg"
  4937. }
  4938. }
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(8 + 1 / 12, "foot")
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(111, "foot"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Supracosmic",
  4952. height: math.unit(1e42, "feet")
  4953. },
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Amanda" },
  4958. {
  4959. front: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(140, "lbs"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/amanda/front.svg"
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Micro",
  4971. height: math.unit(5, "inches"),
  4972. default: true
  4973. },
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Teal" },
  4978. {
  4979. front: {
  4980. height: math.unit(5.59, "feet"),
  4981. weight: math.unit(250, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/teal/front.svg"
  4985. }
  4986. },
  4987. frontAlt: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(250, "lbs"),
  4990. name: "Front (Alt)",
  4991. image: {
  4992. source: "./media/characters/teal/front-alt.svg",
  4993. bottom: 0.04,
  4994. extra: 1
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(12, "feet"),
  5002. default: true
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(300, "feet")
  5007. },
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Ravin Amulet" },
  5012. {
  5013. frontCat: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(180, "lbs"),
  5016. name: "Front (Cat)",
  5017. image: {
  5018. source: "./media/characters/ravin-amulet/front-cat.svg"
  5019. }
  5020. },
  5021. frontCatAlt: {
  5022. height: math.unit(6, "feet"),
  5023. weight: math.unit(180, "lbs"),
  5024. name: "Front (Alt, Cat)",
  5025. image: {
  5026. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5027. }
  5028. },
  5029. frontWerewolf: {
  5030. height: math.unit(6 * 1.2, "feet"),
  5031. weight: math.unit(225, "lbs"),
  5032. name: "Front (Werewolf)",
  5033. image: {
  5034. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5035. }
  5036. },
  5037. backWerewolf: {
  5038. height: math.unit(6 * 1.2, "feet"),
  5039. weight: math.unit(225, "lbs"),
  5040. name: "Back (Werewolf)",
  5041. image: {
  5042. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5043. }
  5044. },
  5045. },
  5046. [
  5047. {
  5048. name: "Nano",
  5049. height: math.unit(1, "micrometer")
  5050. },
  5051. {
  5052. name: "Micro",
  5053. height: math.unit(1, "inch")
  5054. },
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(6, "feet"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(60, "feet")
  5063. }
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Fluoresce" },
  5068. {
  5069. front: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(165, "lbs"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/fluoresce/front.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Micro",
  5081. height: math.unit(6, "cm")
  5082. },
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(5 + 7 / 12, "feet"),
  5086. default: true
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(56, "feet")
  5091. },
  5092. {
  5093. name: "Megamacro",
  5094. height: math.unit(1.9, "miles")
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Aurora" },
  5100. {
  5101. front: {
  5102. height: math.unit(9 + 6 / 12, "feet"),
  5103. weight: math.unit(523, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/aurora/side.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(9 + 6 / 12, "feet")
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(96, "feet"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Macro+",
  5122. height: math.unit(243, "feet")
  5123. },
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Ranek" },
  5128. {
  5129. front: {
  5130. height: math.unit(194, "cm"),
  5131. weight: math.unit(90, "kg"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/ranek/front.svg"
  5135. }
  5136. },
  5137. side: {
  5138. height: math.unit(194, "cm"),
  5139. weight: math.unit(90, "kg"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/ranek/side.svg"
  5143. }
  5144. },
  5145. back: {
  5146. height: math.unit(194, "cm"),
  5147. weight: math.unit(90, "kg"),
  5148. name: "Back",
  5149. image: {
  5150. source: "./media/characters/ranek/back.svg"
  5151. }
  5152. },
  5153. feral: {
  5154. height: math.unit(30, "cm"),
  5155. weight: math.unit(1.6, "lbs"),
  5156. name: "Feral",
  5157. image: {
  5158. source: "./media/characters/ranek/feral.svg"
  5159. }
  5160. },
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(194, "cm"),
  5166. default: true
  5167. },
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(100, "meters")
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Andrew Cooper" },
  5176. {
  5177. front: {
  5178. height: math.unit(5 + 6 / 12, "feet"),
  5179. weight: math.unit(153, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/andrew-cooper/front.svg"
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Nano",
  5189. height: math.unit(1, "mm")
  5190. },
  5191. {
  5192. name: "Micro",
  5193. height: math.unit(2, "inches")
  5194. },
  5195. {
  5196. name: "Normal",
  5197. height: math.unit(5 + 6 / 12, "feet"),
  5198. default: true
  5199. }
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Akane Sato" },
  5204. {
  5205. front: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(180, "lbs"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/akane-sato/front.svg",
  5211. extra: 1219 / 1140
  5212. }
  5213. },
  5214. back: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(180, "lbs"),
  5217. name: "Back",
  5218. image: {
  5219. source: "./media/characters/akane-sato/back.svg",
  5220. extra: 1219 / 1170
  5221. }
  5222. },
  5223. },
  5224. [
  5225. {
  5226. name: "Normal",
  5227. height: math.unit(2.5, "meters")
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(250, "meters"),
  5232. default: true
  5233. },
  5234. {
  5235. name: "Megamacro",
  5236. height: math.unit(25, "km")
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Rook" },
  5242. {
  5243. front: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(65, "kg"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/rook/front.svg",
  5249. extra: 960/950
  5250. }
  5251. }
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(8.8, "feet")
  5257. },
  5258. {
  5259. name: "Macro",
  5260. height: math.unit(88, "feet"),
  5261. default: true
  5262. },
  5263. {
  5264. name: "Megamacro",
  5265. height: math.unit(8, "miles")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Prodigy" },
  5271. {
  5272. front: {
  5273. height: math.unit(12 + 2 / 12, "feet"),
  5274. weight: math.unit(808, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/prodigy/front.svg"
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(12 + 2 / 12, "feet"),
  5285. default: true
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(143, "feet")
  5290. },
  5291. {
  5292. name: "Macro+",
  5293. height: math.unit(400, "feet")
  5294. },
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Daniel" },
  5299. {
  5300. front: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(225, "lbs"),
  5303. name: "Front",
  5304. image: {
  5305. source: "./media/characters/daniel/front.svg"
  5306. }
  5307. },
  5308. leaning: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(225, "lbs"),
  5311. name: "Leaning",
  5312. image: {
  5313. source: "./media/characters/daniel/leaning.svg"
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Macro",
  5320. height: math.unit(1000, "feet"),
  5321. default: true
  5322. },
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Chiros" },
  5327. {
  5328. front: {
  5329. height: math.unit(6, "feet"),
  5330. weight: math.unit(88, "lbs"),
  5331. name: "Front",
  5332. image: {
  5333. source: "./media/characters/chiros/front.svg",
  5334. extra: 306 / 226
  5335. }
  5336. },
  5337. side: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(88, "lbs"),
  5340. name: "Side",
  5341. image: {
  5342. source: "./media/characters/chiros/side.svg",
  5343. extra: 306 / 226
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(6, "cm"),
  5351. default: true
  5352. },
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Selka" },
  5357. {
  5358. front: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(100, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/selka/front.svg",
  5364. extra: 947 / 887
  5365. }
  5366. }
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(5, "cm"),
  5372. default: true
  5373. },
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Verin" },
  5378. {
  5379. front: {
  5380. height: math.unit(8 + 3 / 12, "feet"),
  5381. weight: math.unit(424, "lbs"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/verin/front.svg",
  5385. extra: 1845 / 1550
  5386. }
  5387. },
  5388. frontArmored: {
  5389. height: math.unit(8 + 3 / 12, "feet"),
  5390. weight: math.unit(424, "lbs"),
  5391. name: "Front (Armored)",
  5392. image: {
  5393. source: "./media/characters/verin/front-armor.svg",
  5394. extra: 1845 / 1550,
  5395. bottom: 0.01
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(8 + 3 / 12, "feet"),
  5400. weight: math.unit(424, "lbs"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/verin/back.svg",
  5404. bottom: 0.1,
  5405. extra: 1
  5406. }
  5407. },
  5408. foot: {
  5409. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5410. name: "Foot",
  5411. image: {
  5412. source: "./media/characters/verin/foot.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(8 + 3 / 12, "feet")
  5420. },
  5421. {
  5422. name: "Minimacro",
  5423. height: math.unit(21, "feet"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(626, "feet")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Sovrim Terraquian" },
  5434. {
  5435. front: {
  5436. height: math.unit(2.718, "meters"),
  5437. weight: math.unit(150, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/sovrim-terraquian/front.svg"
  5441. }
  5442. },
  5443. back: {
  5444. height: math.unit(2.718, "meters"),
  5445. weight: math.unit(150, "lbs"),
  5446. name: "Back",
  5447. image: {
  5448. source: "./media/characters/sovrim-terraquian/back.svg"
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Micro",
  5455. height: math.unit(2, "inches")
  5456. },
  5457. {
  5458. name: "Small",
  5459. height: math.unit(1, "meter")
  5460. },
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(Math.E, "meters"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(20, "meters")
  5469. },
  5470. {
  5471. name: "Macro+",
  5472. height: math.unit(400, "meters")
  5473. },
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Reece Silvermane" },
  5478. {
  5479. front: {
  5480. height: math.unit(7, "feet"),
  5481. weight: math.unit(489, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/reece-silvermane/front.svg",
  5485. bottom: 0.02,
  5486. extra: 1
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Macro",
  5493. height: math.unit(1.5, "miles"),
  5494. default: true
  5495. },
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Kane" },
  5500. {
  5501. front: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(78, "kg"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/kane/front.svg",
  5507. extra: 978 / 899
  5508. }
  5509. },
  5510. },
  5511. [
  5512. {
  5513. name: "Normal",
  5514. height: math.unit(2.1, "m"),
  5515. },
  5516. {
  5517. name: "Macro",
  5518. height: math.unit(1, "km"),
  5519. default: true
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Tegon" },
  5525. {
  5526. front: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(200, "kg"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/tegon/front.svg",
  5532. bottom: 0.01,
  5533. extra: 1
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Micro",
  5540. height: math.unit(1, "inch")
  5541. },
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(6 + 3 / 12, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(300, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(69, "miles")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Arcturax" },
  5559. {
  5560. side: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(2304, "lbs"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/arcturax/side.svg",
  5566. extra: 790 / 376,
  5567. bottom: 0.01
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Micro",
  5574. height: math.unit(2, "inch")
  5575. },
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(6, "feet")
  5579. },
  5580. {
  5581. name: "Macro",
  5582. height: math.unit(39, "feet"),
  5583. default: true
  5584. },
  5585. {
  5586. name: "Megamacro",
  5587. height: math.unit(7, "miles")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Sentri" },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(50, "lbs"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/sentri/front.svg",
  5600. extra: 1750 / 1570,
  5601. bottom: 0.025
  5602. }
  5603. },
  5604. frontAlt: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(50, "lbs"),
  5607. name: "Front (Alt)",
  5608. image: {
  5609. source: "./media/characters/sentri/front-alt.svg",
  5610. extra: 1750 / 1570,
  5611. bottom: 0.025
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(15, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(2500, "feet")
  5624. }
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Corvin" },
  5629. {
  5630. front: {
  5631. height: math.unit(5 + 8 / 12, "feet"),
  5632. weight: math.unit(130, "lbs"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/corvin/front.svg",
  5636. extra: 1803 / 1629
  5637. }
  5638. },
  5639. frontShirt: {
  5640. height: math.unit(5 + 8 / 12, "feet"),
  5641. weight: math.unit(130, "lbs"),
  5642. name: "Front (Shirt)",
  5643. image: {
  5644. source: "./media/characters/corvin/front-shirt.svg",
  5645. extra: 1803 / 1629
  5646. }
  5647. },
  5648. frontPoncho: {
  5649. height: math.unit(5 + 8 / 12, "feet"),
  5650. weight: math.unit(130, "lbs"),
  5651. name: "Front (Poncho)",
  5652. image: {
  5653. source: "./media/characters/corvin/front-poncho.svg",
  5654. extra: 1803 / 1629
  5655. }
  5656. },
  5657. side: {
  5658. height: math.unit(5 + 8 / 12, "feet"),
  5659. weight: math.unit(130, "lbs"),
  5660. name: "Side",
  5661. image: {
  5662. source: "./media/characters/corvin/side.svg",
  5663. extra: 1012 / 945
  5664. }
  5665. },
  5666. back: {
  5667. height: math.unit(5 + 8 / 12, "feet"),
  5668. weight: math.unit(130, "lbs"),
  5669. name: "Back",
  5670. image: {
  5671. source: "./media/characters/corvin/back.svg",
  5672. extra: 1803 / 1629
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Micro",
  5679. height: math.unit(3, "inches")
  5680. },
  5681. {
  5682. name: "Normal",
  5683. height: math.unit(5 + 8 / 12, "feet")
  5684. },
  5685. {
  5686. name: "Macro",
  5687. height: math.unit(300, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Megamacro",
  5692. height: math.unit(500, "miles")
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Q" },
  5698. {
  5699. front: {
  5700. height: math.unit(6, "feet"),
  5701. weight: math.unit(135, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/q/front.svg",
  5705. extra: 854 / 752,
  5706. bottom: 0.005
  5707. }
  5708. },
  5709. back: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(130, "lbs"),
  5712. name: "Back",
  5713. image: {
  5714. source: "./media/characters/q/back.svg",
  5715. extra: 854 / 752
  5716. }
  5717. },
  5718. },
  5719. [
  5720. {
  5721. name: "Macro",
  5722. height: math.unit(90, "feet"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Extra Macro",
  5727. height: math.unit(300, "feet"),
  5728. },
  5729. {
  5730. name: "BIG WALF",
  5731. height: math.unit(750, "feet"),
  5732. },
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Carley" },
  5737. {
  5738. front: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(150, "lbs"),
  5741. name: "Front",
  5742. image: {
  5743. source: "./media/characters/carley/front.svg",
  5744. extra: 3927 / 3540,
  5745. bottom: 0.03
  5746. }
  5747. }
  5748. },
  5749. [
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(6 + 3 / 12, "feet")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(185, "feet"),
  5757. default: true
  5758. },
  5759. {
  5760. name: "Megamacro",
  5761. height: math.unit(8, "miles"),
  5762. },
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Citrine" },
  5767. {
  5768. front: {
  5769. height: math.unit(3, "feet"),
  5770. weight: math.unit(28, "lbs"),
  5771. name: "Front",
  5772. image: {
  5773. source: "./media/characters/citrine/front.svg"
  5774. }
  5775. }
  5776. },
  5777. [
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(3, "feet"),
  5781. default: true
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Aura Starwind" },
  5787. {
  5788. front: {
  5789. height: math.unit(14, "feet"),
  5790. weight: math.unit(1450, "kg"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/aura-starwind/front.svg",
  5794. extra: 1455 / 1335
  5795. }
  5796. },
  5797. side: {
  5798. height: math.unit(14, "feet"),
  5799. weight: math.unit(1450, "kg"),
  5800. name: "Side",
  5801. image: {
  5802. source: "./media/characters/aura-starwind/side.svg",
  5803. extra: 1654 / 1497
  5804. }
  5805. },
  5806. taur: {
  5807. height: math.unit(18, "feet"),
  5808. weight: math.unit(5500, "kg"),
  5809. name: "Taur",
  5810. image: {
  5811. source: "./media/characters/aura-starwind/taur.svg",
  5812. extra: 1760 / 1650
  5813. }
  5814. },
  5815. feral: {
  5816. height: math.unit(46, "feet"),
  5817. weight: math.unit(25000, "kg"),
  5818. name: "Feral",
  5819. image: {
  5820. source: "./media/characters/aura-starwind/feral.svg"
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(14, "feet"),
  5828. default: true
  5829. },
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(50, "meters")
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(5000, "meters")
  5837. },
  5838. {
  5839. name: "Gigamacro",
  5840. height: math.unit(100000, "kilometers")
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Rivet" },
  5846. {
  5847. front: {
  5848. height: math.unit(2 + 7 / 12, "feet"),
  5849. weight: math.unit(32, "lbs"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/rivet/front.svg",
  5853. extra: 1716 / 1658,
  5854. bottom: 0.03
  5855. }
  5856. },
  5857. foot: {
  5858. height: math.unit(0.551, "feet"),
  5859. name: "Rivet's Foot",
  5860. image: {
  5861. source: "./media/characters/rivet/foot.svg"
  5862. },
  5863. rename: true
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(1.5, "inches"),
  5870. },
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(2 + 7 / 12, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(85, "feet")
  5879. },
  5880. {
  5881. name: "Megamacro",
  5882. height: math.unit(2.2, "km")
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Coffee" },
  5888. {
  5889. front: {
  5890. height: math.unit(5 + 9 / 12, "feet"),
  5891. weight: math.unit(150, "lbs"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/coffee/front.svg",
  5895. extra: 3666 / 3032,
  5896. bottom: 0.04
  5897. }
  5898. },
  5899. foot: {
  5900. height: math.unit(1.29, "feet"),
  5901. name: "Foot",
  5902. image: {
  5903. source: "./media/characters/coffee/foot.svg"
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(2, "inches"),
  5911. },
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(5 + 9 / 12, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(800, "feet")
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(25, "miles")
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Chari-Gal" },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(200, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/chari-gal/front.svg",
  5936. extra: 1568 / 1385,
  5937. bottom: 0.047
  5938. }
  5939. },
  5940. gigantamax: {
  5941. height: math.unit(6 * 16, "feet"),
  5942. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5943. name: "Gigantamax",
  5944. image: {
  5945. source: "./media/characters/chari-gal/gigantamax.svg",
  5946. extra: 1124 / 888,
  5947. bottom: 0.03
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(5 + 7 / 12, "feet")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(200, "feet"),
  5959. default: true
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Nova" },
  5965. {
  5966. front: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(150, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/nova/front.svg",
  5972. extra: 5000 / 4722,
  5973. bottom: 0.02
  5974. }
  5975. }
  5976. },
  5977. [
  5978. {
  5979. name: "Micro-",
  5980. height: math.unit(0.8, "inches")
  5981. },
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(2, "inches"),
  5985. default: true
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Argent" },
  5991. {
  5992. front: {
  5993. height: math.unit(3 + 1 / 12, "feet"),
  5994. weight: math.unit(21.7, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/argent/front.svg",
  5998. extra: 1565 / 1416,
  5999. bottom: 0.01
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Micro",
  6006. height: math.unit(2, "inches")
  6007. },
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(3 + 1 / 12, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(120, "feet")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Mira al-Cul" },
  6021. {
  6022. lamp: {
  6023. height: math.unit(7 * 1559 / 989, "feet"),
  6024. name: "Magic Lamp",
  6025. image: {
  6026. source: "./media/characters/mira-al-cul/lamp.svg",
  6027. extra: 1617 / 1559
  6028. }
  6029. },
  6030. front: {
  6031. height: math.unit(7, "feet"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/mira-al-cul/front.svg",
  6035. extra: 1044 / 990
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Heavily Restricted",
  6042. height: math.unit(7 * 1559 / 989, "feet")
  6043. },
  6044. {
  6045. name: "Freshly Freed",
  6046. height: math.unit(50 * 1559 / 989, "feet")
  6047. },
  6048. {
  6049. name: "World Encompassing",
  6050. height: math.unit(10000 * 1559 / 989, "miles")
  6051. },
  6052. {
  6053. name: "Galactic",
  6054. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6055. },
  6056. {
  6057. name: "Palmed Universe",
  6058. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6059. default: true
  6060. },
  6061. {
  6062. name: "Multiversal Matriarch",
  6063. height: math.unit(8.87e10, "yottameters")
  6064. },
  6065. {
  6066. name: "Void Mother",
  6067. height: math.unit(3.14e110, "yottaparsecs")
  6068. },
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Kuro-shi Uchū" },
  6073. {
  6074. front: {
  6075. height: math.unit(17 + 1 / 12, "feet"),
  6076. weight: math.unit(476.2 * 5, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/kuro-shi-uchū/front.svg",
  6080. extra: 2329 / 1835,
  6081. bottom: 0.02
  6082. }
  6083. },
  6084. },
  6085. [
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(2, "inches")
  6089. },
  6090. {
  6091. name: "Normal",
  6092. height: math.unit(12, "meters")
  6093. },
  6094. {
  6095. name: "Planetary",
  6096. height: math.unit(0.00929, "AU"),
  6097. default: true
  6098. },
  6099. {
  6100. name: "Universal",
  6101. height: math.unit(20, "gigaparsecs")
  6102. },
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Katherine" },
  6107. {
  6108. front: {
  6109. height: math.unit(5 + 2 / 12, "feet"),
  6110. weight: math.unit(120, "lbs"),
  6111. name: "Front",
  6112. image: {
  6113. source: "./media/characters/katherine/front.svg",
  6114. extra: 2075 / 1969
  6115. }
  6116. },
  6117. dress: {
  6118. height: math.unit(5 + 2 / 12, "feet"),
  6119. weight: math.unit(120, "lbs"),
  6120. name: "Dress",
  6121. image: {
  6122. source: "./media/characters/katherine/dress.svg",
  6123. extra: 2258 / 2064
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Micro",
  6130. height: math.unit(1, "inches"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(5 + 2 / 12, "feet")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(100, "meters")
  6140. },
  6141. {
  6142. name: "Megamacro",
  6143. height: math.unit(80, "miles")
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Yevis" },
  6149. {
  6150. front: {
  6151. height: math.unit(7 + 8 / 12, "feet"),
  6152. weight: math.unit(250, "lbs"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/yevis/front.svg",
  6156. extra: 1938 / 1755
  6157. }
  6158. }
  6159. },
  6160. [
  6161. {
  6162. name: "Mortal",
  6163. height: math.unit(7 + 8 / 12, "feet")
  6164. },
  6165. {
  6166. name: "Battle",
  6167. height: math.unit(25 + 11 / 12, "feet")
  6168. },
  6169. {
  6170. name: "Wrath",
  6171. height: math.unit(1654 + 11 / 12, "feet")
  6172. },
  6173. {
  6174. name: "Planet Destroyer",
  6175. height: math.unit(12000, "miles")
  6176. },
  6177. {
  6178. name: "Galaxy Conqueror",
  6179. height: math.unit(1.45, "zettameters"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Universal War",
  6184. height: math.unit(184, "gigaparsecs")
  6185. },
  6186. {
  6187. name: "Eternity War",
  6188. height: math.unit(1.98e55, "yottaparsecs")
  6189. },
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Xavier" },
  6194. {
  6195. front: {
  6196. height: math.unit(5 + 8 / 12, "feet"),
  6197. weight: math.unit(63, "kg"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/xavier/front.svg",
  6201. extra: 944 / 883
  6202. }
  6203. },
  6204. frontStretch: {
  6205. height: math.unit(5 + 8 / 12, "feet"),
  6206. weight: math.unit(63, "kg"),
  6207. name: "Stretching",
  6208. image: {
  6209. source: "./media/characters/xavier/front-stretch.svg",
  6210. extra: 962 / 820
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(5 + 8 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(100, "meters"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "McLargeHuge",
  6226. height: math.unit(10, "miles")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Joshii" },
  6232. {
  6233. front: {
  6234. height: math.unit(5 + 5 / 12, "feet"),
  6235. weight: math.unit(150, "lb"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/joshii/front.svg"
  6239. }
  6240. },
  6241. foot: {
  6242. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6243. name: "Foot",
  6244. image: {
  6245. source: "./media/characters/joshii/foot.svg"
  6246. }
  6247. },
  6248. },
  6249. [
  6250. {
  6251. name: "Micro",
  6252. height: math.unit(2, "inches")
  6253. },
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(5 + 5 / 12, "feet"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(785, "feet")
  6262. },
  6263. {
  6264. name: "Megamacro",
  6265. height: math.unit(24.5, "miles")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Goddess Elizabeth" },
  6271. {
  6272. front: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(150, "lb"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/goddess-elizabeth/front.svg",
  6278. extra: 1800 / 1525,
  6279. bottom: 0.005
  6280. }
  6281. },
  6282. foot: {
  6283. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6284. name: "Foot",
  6285. image: {
  6286. source: "./media/characters/goddess-elizabeth/foot.svg"
  6287. }
  6288. },
  6289. mouth: {
  6290. height: math.unit(6, "feet"),
  6291. name: "Mouth",
  6292. image: {
  6293. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Micro",
  6300. height: math.unit(12, "feet")
  6301. },
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(80, "miles"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(15000, "parsecs")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Kara" },
  6315. {
  6316. front: {
  6317. height: math.unit(5 + 9 / 12, "feet"),
  6318. weight: math.unit(144, "lb"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/kara/front.svg"
  6322. }
  6323. },
  6324. feet: {
  6325. height: math.unit(6 / 6.765, "feet"),
  6326. name: "Kara's Feet",
  6327. rename: true,
  6328. image: {
  6329. source: "./media/characters/kara/feet.svg"
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(5 + 9 / 12, "feet")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(174, "feet"),
  6341. default: true
  6342. },
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Tyrone" },
  6347. {
  6348. front: {
  6349. height: math.unit(18, "feet"),
  6350. weight: math.unit(4050, "lb"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/tyrone/front.svg",
  6354. extra: 2520 / 2402,
  6355. bottom: 0.025
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(18, "feet"),
  6363. default: true
  6364. },
  6365. {
  6366. name: "Macro",
  6367. height: math.unit(300, "feet")
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Danny" },
  6373. {
  6374. front: {
  6375. height: math.unit(7 + 8 / 12, "feet"),
  6376. weight: math.unit(120, "lb"),
  6377. name: "Front",
  6378. image: {
  6379. source: "./media/characters/danny/front.svg",
  6380. extra: 1490 / 1350
  6381. }
  6382. },
  6383. back: {
  6384. height: math.unit(7 + 8 / 12, "feet"),
  6385. weight: math.unit(120, "lb"),
  6386. name: "Back",
  6387. image: {
  6388. source: "./media/characters/danny/back.svg",
  6389. extra: 1490 / 1350
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(7 + 8 / 12, "feet"),
  6397. default: true
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Mallow" },
  6403. {
  6404. front: {
  6405. height: math.unit(3.5, "inches"),
  6406. weight: math.unit(19, "grams"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/mallow/front.svg",
  6410. extra: 471 / 431
  6411. }
  6412. },
  6413. back: {
  6414. height: math.unit(3.5, "inches"),
  6415. weight: math.unit(19, "grams"),
  6416. name: "Back",
  6417. image: {
  6418. source: "./media/characters/mallow/back.svg",
  6419. extra: 471 / 431
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(3.5, "inches"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Starry Aqua" },
  6433. {
  6434. front: {
  6435. height: math.unit(9, "feet"),
  6436. weight: math.unit(230, "kg"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/starry-aqua/front.svg"
  6440. }
  6441. },
  6442. back: {
  6443. height: math.unit(9, "feet"),
  6444. weight: math.unit(230, "kg"),
  6445. name: "Back",
  6446. image: {
  6447. source: "./media/characters/starry-aqua/back.svg"
  6448. }
  6449. },
  6450. hand: {
  6451. height: math.unit(9 * 0.1168, "feet"),
  6452. name: "Hand",
  6453. image: {
  6454. source: "./media/characters/starry-aqua/hand.svg"
  6455. }
  6456. },
  6457. foot: {
  6458. height: math.unit(9 * 0.18, "feet"),
  6459. name: "Foot",
  6460. image: {
  6461. source: "./media/characters/starry-aqua/foot.svg"
  6462. }
  6463. }
  6464. },
  6465. [
  6466. {
  6467. name: "Micro",
  6468. height: math.unit(3, "inches")
  6469. },
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(9, "feet")
  6473. },
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(300, "feet"),
  6477. default: true
  6478. },
  6479. {
  6480. name: "Megamacro",
  6481. height: math.unit(3200, "feet")
  6482. }
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Luka" },
  6487. {
  6488. front: {
  6489. height: math.unit(6, "feet"),
  6490. weight: math.unit(230, "lb"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/luka/front.svg",
  6494. extra: 1,
  6495. bottom: 0.025
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(12 + 8 / 12, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Minimacro",
  6507. height: math.unit(20, "feet")
  6508. },
  6509. {
  6510. name: "Macro",
  6511. height: math.unit(250, "feet")
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(5, "miles")
  6516. },
  6517. {
  6518. name: "Gigamacro",
  6519. height: math.unit(8000, "miles")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Natalie Nightring" },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(150, "lb"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/natalie-nightring/front.svg",
  6532. extra: 1,
  6533. bottom: 0.06
  6534. }
  6535. },
  6536. },
  6537. [
  6538. {
  6539. name: "Uh Oh",
  6540. height: math.unit(0.1, "mm")
  6541. },
  6542. {
  6543. name: "Small",
  6544. height: math.unit(3, "inches")
  6545. },
  6546. {
  6547. name: "Human Scale",
  6548. height: math.unit(6, "feet")
  6549. },
  6550. {
  6551. name: "Librarian",
  6552. height: math.unit(50, "feet"),
  6553. default: true
  6554. },
  6555. {
  6556. name: "Immense",
  6557. height: math.unit(200, "miles")
  6558. },
  6559. ]
  6560. ))
  6561. characterMakers.push(() => makeCharacter(
  6562. { name: "Danni Rosie" },
  6563. {
  6564. front: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(180, "lbs"),
  6567. name: "Front",
  6568. image: {
  6569. source: "./media/characters/danni-rosie/front.svg",
  6570. extra: 1260 / 1128,
  6571. bottom: 0.022
  6572. }
  6573. },
  6574. },
  6575. [
  6576. {
  6577. name: "Micro",
  6578. height: math.unit(2, "inches"),
  6579. default: true
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Samantha Kruse" },
  6585. {
  6586. front: {
  6587. height: math.unit(5 + 9 / 12, "feet"),
  6588. weight: math.unit(220, "lb"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/samantha-kruse/front.svg",
  6592. extra: (985 / 935),
  6593. bottom: 0.03
  6594. }
  6595. },
  6596. frontUndressed: {
  6597. height: math.unit(5 + 9 / 12, "feet"),
  6598. weight: math.unit(220, "lb"),
  6599. name: "Front (Undressed)",
  6600. image: {
  6601. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6602. extra: (973 / 923),
  6603. bottom: 0.025
  6604. }
  6605. },
  6606. fat: {
  6607. height: math.unit(5 + 9 / 12, "feet"),
  6608. weight: math.unit(900, "lb"),
  6609. name: "Front (Fat)",
  6610. image: {
  6611. source: "./media/characters/samantha-kruse/fat.svg",
  6612. extra: 2688 / 2561
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(5 + 9 / 12, "feet"),
  6620. default: true
  6621. }
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Amelia Rosie" },
  6626. {
  6627. back: {
  6628. height: math.unit(5 + 4 / 12, "feet"),
  6629. weight: math.unit(4963, "lb"),
  6630. name: "Back",
  6631. image: {
  6632. source: "./media/characters/amelia-rosie/back.svg",
  6633. extra: 1113 / 963,
  6634. bottom: 0.01
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Level 0",
  6641. height: math.unit(5 + 4 / 12, "feet")
  6642. },
  6643. {
  6644. name: "Level 1",
  6645. height: math.unit(164597, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Level 2",
  6650. height: math.unit(956243, "miles")
  6651. },
  6652. {
  6653. name: "Level 3",
  6654. height: math.unit(29421709423, "miles")
  6655. },
  6656. {
  6657. name: "Level 4",
  6658. height: math.unit(154, "lightyears")
  6659. },
  6660. {
  6661. name: "Level 5",
  6662. height: math.unit(4738272, "lightyears")
  6663. },
  6664. {
  6665. name: "Level 6",
  6666. height: math.unit(145787152896, "lightyears")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Rook Kitara" },
  6672. {
  6673. front: {
  6674. height: math.unit(5 + 11 / 12, "feet"),
  6675. weight: math.unit(65, "kg"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/rook-kitara/front.svg",
  6679. extra: 1347 / 1274,
  6680. bottom: 0.005
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Totally Unfair",
  6687. height: math.unit(1.8, "mm")
  6688. },
  6689. {
  6690. name: "Lap Rookie",
  6691. height: math.unit(1.4, "feet")
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(5 + 11 / 12, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "How Did This Happen",
  6700. height: math.unit(80, "miles")
  6701. }
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Pisces" },
  6706. {
  6707. front: {
  6708. height: math.unit(7, "feet"),
  6709. weight: math.unit(300, "lb"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/pisces/front.svg",
  6713. extra: 2255 / 2115,
  6714. bottom: 0.03
  6715. }
  6716. },
  6717. back: {
  6718. height: math.unit(7, "feet"),
  6719. weight: math.unit(300, "lb"),
  6720. name: "Back",
  6721. image: {
  6722. source: "./media/characters/pisces/back.svg",
  6723. extra: 2146 / 2055,
  6724. bottom: 0.04
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(7, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Swimming Pool",
  6736. height: math.unit(12.2, "meters")
  6737. },
  6738. {
  6739. name: "Olympic Swimming Pool",
  6740. height: math.unit(56.3, "meters")
  6741. },
  6742. {
  6743. name: "Lake Superior",
  6744. height: math.unit(93900, "meters")
  6745. },
  6746. {
  6747. name: "Mediterranean Sea",
  6748. height: math.unit(644457, "meters")
  6749. },
  6750. {
  6751. name: "World's Oceans",
  6752. height: math.unit(4567491, "meters")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Zelas" },
  6758. {
  6759. front: {
  6760. height: math.unit(2.3, "meters"),
  6761. weight: math.unit(120, "kg"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/zelas/front.svg"
  6765. }
  6766. },
  6767. side: {
  6768. height: math.unit(2.3, "meters"),
  6769. weight: math.unit(120, "kg"),
  6770. name: "Side",
  6771. image: {
  6772. source: "./media/characters/zelas/side.svg"
  6773. }
  6774. },
  6775. back: {
  6776. height: math.unit(2.3, "meters"),
  6777. weight: math.unit(120, "kg"),
  6778. name: "Back",
  6779. image: {
  6780. source: "./media/characters/zelas/back.svg"
  6781. }
  6782. },
  6783. foot: {
  6784. height: math.unit(1.116, "feet"),
  6785. name: "Foot",
  6786. image: {
  6787. source: "./media/characters/zelas/foot.svg"
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(2.3, "meters")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(30, "meters"),
  6799. default: true
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Talbot" },
  6805. {
  6806. front: {
  6807. height: math.unit(1, "inch"),
  6808. weight: math.unit(0.21, "grams"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/talbot/front.svg",
  6812. extra: 594 / 544
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Micro",
  6819. height: math.unit(1, "inch"),
  6820. default: true
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Fliss" },
  6826. {
  6827. front: {
  6828. height: math.unit(3 + 3 / 12, "feet"),
  6829. weight: math.unit(51.8, "lb"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/fliss/front.svg",
  6833. extra: 840 / 640
  6834. }
  6835. },
  6836. },
  6837. [
  6838. {
  6839. name: "Teeny Tiny",
  6840. height: math.unit(1, "mm")
  6841. },
  6842. {
  6843. name: "Small",
  6844. height: math.unit(1, "inch"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Standard Sylveon",
  6849. height: math.unit(3 + 3 / 12, "feet")
  6850. },
  6851. {
  6852. name: "Large Nuisance",
  6853. height: math.unit(33, "feet")
  6854. },
  6855. {
  6856. name: "City Filler",
  6857. height: math.unit(3000, "feet")
  6858. },
  6859. {
  6860. name: "New Horizon",
  6861. height: math.unit(6000, "miles")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Fleta" },
  6867. {
  6868. front: {
  6869. height: math.unit(5, "cm"),
  6870. weight: math.unit(1.94, "g"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/fleta/front.svg",
  6874. extra: 835 / 803
  6875. }
  6876. },
  6877. back: {
  6878. height: math.unit(5, "cm"),
  6879. weight: math.unit(1.94, "g"),
  6880. name: "Back",
  6881. image: {
  6882. source: "./media/characters/fleta/back.svg",
  6883. extra: 835 / 803
  6884. }
  6885. },
  6886. },
  6887. [
  6888. {
  6889. name: "Micro",
  6890. height: math.unit(5, "cm"),
  6891. default: true
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Dominic" },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(225, "lb"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/dominic/front.svg",
  6904. extra: 1770 / 1620,
  6905. bottom: 0.025
  6906. }
  6907. },
  6908. back: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(225, "lb"),
  6911. name: "Back",
  6912. image: {
  6913. source: "./media/characters/dominic/back.svg",
  6914. extra: 1745 / 1620,
  6915. bottom: 0.065
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Nano",
  6922. height: math.unit(0.1, "mm")
  6923. },
  6924. {
  6925. name: "Micro-",
  6926. height: math.unit(1, "mm")
  6927. },
  6928. {
  6929. name: "Micro",
  6930. height: math.unit(4, "inches")
  6931. },
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(6 + 4 / 12, "feet"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(115, "feet")
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(955, "feet")
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(8990, "feet")
  6948. },
  6949. {
  6950. name: "Gigmacro",
  6951. height: math.unit(9310, "miles")
  6952. },
  6953. {
  6954. name: "Teramacro",
  6955. height: math.unit(1567005010, "miles")
  6956. },
  6957. {
  6958. name: "Examacro",
  6959. height: math.unit(1425, "parsecs")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Major Colonel" },
  6965. {
  6966. front: {
  6967. height: math.unit(400, "feet"),
  6968. weight: math.unit(44444444, "lb"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/major-colonel/front.svg"
  6972. }
  6973. },
  6974. back: {
  6975. height: math.unit(400, "feet"),
  6976. weight: math.unit(44444444, "lb"),
  6977. name: "Back",
  6978. image: {
  6979. source: "./media/characters/major-colonel/back.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(400, "feet"),
  6987. default: true
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Axel Lycan" },
  6993. {
  6994. front: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(120, "lb"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/axel-lycan/front.svg",
  7000. extra: 1,
  7001. bottom: 0.08
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(1, "km"),
  7009. default: true
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Vanrel (Hyena)" },
  7015. {
  7016. front: {
  7017. height: math.unit(5 + 9 / 12, "feet"),
  7018. weight: math.unit(175, "lb"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/vanrel-hyena/front.svg",
  7022. extra: 1086 / 1010,
  7023. bottom: 0.04
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5 + 9 / 12, "feet"),
  7031. default: true
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Abbott Absol" },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(103, "lb"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/abbott-absol/front.svg",
  7044. extra: 2010 / 1842
  7045. }
  7046. },
  7047. },
  7048. [
  7049. {
  7050. name: "Megamicro",
  7051. height: math.unit(0.1, "mm")
  7052. },
  7053. {
  7054. name: "Micro",
  7055. height: math.unit(1, "inch")
  7056. },
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(6, "feet"),
  7060. default: true
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Hector" },
  7066. {
  7067. front: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(264, "lb"),
  7070. name: "Front",
  7071. image: {
  7072. source: "./media/characters/hector/front.svg",
  7073. extra: 2280 / 2130,
  7074. bottom: 0.07
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(12.25, "foot"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Macro",
  7086. height: math.unit(160, "feet")
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Sal" },
  7092. {
  7093. front: {
  7094. height: math.unit(6, "feet"),
  7095. weight: math.unit(150, "lb"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/sal/front.svg",
  7099. extra: 1846 / 1699,
  7100. bottom: 0.04
  7101. }
  7102. },
  7103. },
  7104. [
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(10, "miles"),
  7108. default: true
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Ranger" },
  7114. {
  7115. front: {
  7116. height: math.unit(3, "meters"),
  7117. weight: math.unit(450, "kg"),
  7118. name: "front",
  7119. image: {
  7120. source: "./media/characters/ranger/front.svg",
  7121. extra: 2401 / 2243,
  7122. bottom: 0.05
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(3, "meters"),
  7130. default: true
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Theresa" },
  7136. {
  7137. front: {
  7138. height: math.unit(14, "feet"),
  7139. weight: math.unit(800, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/theresa/front.svg",
  7143. extra: 3575 / 3346,
  7144. bottom: 0.03
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(14, "feet"),
  7152. default: true
  7153. },
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Ine" },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(3, "kg"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/ine/front.svg",
  7165. extra: 678 / 539,
  7166. bottom: 0.023
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(2.265, "feet"),
  7174. default: true
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Vial" },
  7180. {
  7181. front: {
  7182. height: math.unit(5, "feet"),
  7183. weight: math.unit(30, "kg"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/vial/front.svg",
  7187. extra: 1365 / 1277,
  7188. bottom: 0.04
  7189. }
  7190. },
  7191. },
  7192. [
  7193. {
  7194. name: "Normal",
  7195. height: math.unit(5, "feet"),
  7196. default: true
  7197. },
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Rovoska" },
  7202. {
  7203. side: {
  7204. height: math.unit(3.4, "meters"),
  7205. weight: math.unit(1000, "lb"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/rovoska/side.svg",
  7209. extra: 4403 / 1515
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(3.4, "meters"),
  7217. default: true
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Gunner Rotthbauer" },
  7223. {
  7224. front: {
  7225. height: math.unit(8, "feet"),
  7226. weight: math.unit(315, "lb"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/gunner-rotthbauer/front.svg"
  7230. }
  7231. },
  7232. back: {
  7233. height: math.unit(8, "feet"),
  7234. weight: math.unit(315, "lb"),
  7235. name: "Back",
  7236. image: {
  7237. source: "./media/characters/gunner-rotthbauer/back.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Micro",
  7244. height: math.unit(3.5, "inches")
  7245. },
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(8, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(250, "feet")
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(1, "AU")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Allatia" },
  7263. {
  7264. front: {
  7265. height: math.unit(5 + 5 / 12, "feet"),
  7266. weight: math.unit(140, "lb"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/allatia/front.svg",
  7270. extra: 1227 / 1180,
  7271. bottom: 0.027
  7272. }
  7273. },
  7274. },
  7275. [
  7276. {
  7277. name: "Normal",
  7278. height: math.unit(5 + 5 / 12, "feet")
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(250, "feet"),
  7283. default: true
  7284. },
  7285. {
  7286. name: "Megamacro",
  7287. height: math.unit(8, "miles")
  7288. }
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Tene" },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(120, "lb"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/tene/front.svg",
  7300. extra: 1728 / 1578,
  7301. bottom: 0.022
  7302. }
  7303. },
  7304. stomping: {
  7305. height: math.unit(2.025, "meters"),
  7306. weight: math.unit(120, "lb"),
  7307. name: "Stomping",
  7308. image: {
  7309. source: "./media/characters/tene/stomping.svg",
  7310. extra: 938 / 873,
  7311. bottom: 0.01
  7312. }
  7313. },
  7314. sitting: {
  7315. height: math.unit(1, "meter"),
  7316. weight: math.unit(120, "lb"),
  7317. name: "Sitting",
  7318. image: {
  7319. source: "./media/characters/tene/sitting.svg",
  7320. extra: 437 / 415,
  7321. bottom: 0.1
  7322. }
  7323. },
  7324. feral: {
  7325. height: math.unit(3.9, "feet"),
  7326. weight: math.unit(250, "lb"),
  7327. name: "Feral",
  7328. image: {
  7329. source: "./media/characters/tene/feral.svg",
  7330. extra: 717 / 458,
  7331. bottom: 0.179
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(6, "feet")
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(300, "feet"),
  7343. default: true
  7344. },
  7345. {
  7346. name: "Megamacro",
  7347. height: math.unit(5, "miles")
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Evander" },
  7353. {
  7354. side: {
  7355. height: math.unit(6, "feet"),
  7356. name: "Side",
  7357. image: {
  7358. source: "./media/characters/evander/side.svg",
  7359. extra: 877 / 477
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(0.83, "meters"),
  7367. default: true
  7368. },
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7373. {
  7374. front: {
  7375. height: math.unit(12, "feet"),
  7376. weight: math.unit(1000, "lb"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7380. extra: 1762 / 1611
  7381. }
  7382. },
  7383. back: {
  7384. height: math.unit(12, "feet"),
  7385. weight: math.unit(1000, "lb"),
  7386. name: "Back",
  7387. image: {
  7388. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7389. extra: 1762 / 1611
  7390. }
  7391. },
  7392. },
  7393. [
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(12, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Kaiju",
  7401. height: math.unit(150, "feet")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Zero Alurus" },
  7407. {
  7408. front: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(150, "lb"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/zero-alurus/front.svg"
  7414. }
  7415. },
  7416. back: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(150, "lb"),
  7419. name: "Back",
  7420. image: {
  7421. source: "./media/characters/zero-alurus/back.svg"
  7422. }
  7423. },
  7424. },
  7425. [
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(5 + 10 / 12, "feet")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(60, "feet"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Macro+",
  7437. height: math.unit(450, "feet")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Mega Shi" },
  7443. {
  7444. front: {
  7445. height: math.unit(6, "feet"),
  7446. weight: math.unit(200, "lb"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/mega-shi/front.svg",
  7450. extra: 1279 / 1250,
  7451. bottom: 0.02
  7452. }
  7453. },
  7454. back: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(200, "lb"),
  7457. name: "Back",
  7458. image: {
  7459. source: "./media/characters/mega-shi/back.svg",
  7460. extra: 1279 / 1250,
  7461. bottom: 0.02
  7462. }
  7463. },
  7464. },
  7465. [
  7466. {
  7467. name: "Micro",
  7468. height: math.unit(16 + 6 / 12, "feet")
  7469. },
  7470. {
  7471. name: "Third Dimension",
  7472. height: math.unit(40, "meters")
  7473. },
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(660, "feet"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(10, "miles")
  7482. },
  7483. {
  7484. name: "Planetary Launch",
  7485. height: math.unit(500, "miles")
  7486. },
  7487. {
  7488. name: "Interstellar",
  7489. height: math.unit(1e9, "miles")
  7490. },
  7491. {
  7492. name: "Leaving the Universe",
  7493. height: math.unit(1, "gigaparsec")
  7494. },
  7495. {
  7496. name: "Travelling Universes",
  7497. height: math.unit(30e15, "parsecs")
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Odyssey" },
  7503. {
  7504. front: {
  7505. height: math.unit(6, "feet"),
  7506. weight: math.unit(150, "lb"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/odyssey/front.svg",
  7510. extra: 1782 / 1582,
  7511. bottom: 0.01
  7512. }
  7513. },
  7514. side: {
  7515. height: math.unit(5.7, "feet"),
  7516. weight: math.unit(140, "lb"),
  7517. name: "Side",
  7518. image: {
  7519. source: "./media/characters/odyssey/side.svg",
  7520. extra: 6462 / 5700
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Normal",
  7527. height: math.unit(5 + 4 / 12, "feet")
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(1, "km")
  7532. },
  7533. {
  7534. name: "Megamacro",
  7535. height: math.unit(3000, "km")
  7536. },
  7537. {
  7538. name: "Gigamacro",
  7539. height: math.unit(1, "AU"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Omniversal",
  7544. height: math.unit(100e14, "lightyears")
  7545. },
  7546. ]
  7547. ))
  7548. characterMakers.push(() => makeCharacter(
  7549. { name: "Mekuto" },
  7550. {
  7551. front: {
  7552. height: math.unit(6, "feet"),
  7553. weight: math.unit(300, "lb"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/mekuto/front.svg",
  7557. extra: 921 / 832,
  7558. bottom: 0.03
  7559. }
  7560. },
  7561. hand: {
  7562. height: math.unit(6 / 10.24, "feet"),
  7563. name: "Hand",
  7564. image: {
  7565. source: "./media/characters/mekuto/hand.svg"
  7566. }
  7567. },
  7568. foot: {
  7569. height: math.unit(6 / 5.05, "feet"),
  7570. name: "Foot",
  7571. image: {
  7572. source: "./media/characters/mekuto/foot.svg"
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Minimicro",
  7579. height: math.unit(0.2, "inches")
  7580. },
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(1.5, "inches")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(5 + 11 / 12, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Minimacro",
  7592. height: math.unit(17 + 9 / 12, "feet")
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(177.5, "feet")
  7597. },
  7598. {
  7599. name: "Megamacro",
  7600. height: math.unit(152, "miles")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Dafydd Tomos" },
  7606. {
  7607. front: {
  7608. height: math.unit(6.5, "inches"),
  7609. weight: math.unit(13, "oz"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/dafydd-tomos/front.svg",
  7613. extra: 2990 / 2603,
  7614. bottom: 0.03
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(6.5, "inches"),
  7622. default: true
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Splinter" },
  7628. {
  7629. front: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(150, "lb"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/splinter/front.svg",
  7635. extra: 2990 / 2882,
  7636. bottom: 0.04
  7637. }
  7638. },
  7639. back: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(150, "lb"),
  7642. name: "Back",
  7643. image: {
  7644. source: "./media/characters/splinter/back.svg",
  7645. extra: 2990 / 2882,
  7646. bottom: 0.04
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(6, "feet")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(230, "meters"),
  7658. default: true
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "SnowGabumon" },
  7664. {
  7665. front: {
  7666. height: math.unit(4 + 10 / 12, "feet"),
  7667. weight: math.unit(480, "lb"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/snow-gabumon/front.svg",
  7671. extra: 1140 / 963,
  7672. bottom: 0.058
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(4 + 10 / 12, "feet"),
  7677. weight: math.unit(480, "lb"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/snow-gabumon/back.svg",
  7681. extra: 1115 / 962,
  7682. bottom: 0.041
  7683. }
  7684. },
  7685. frontUndresed: {
  7686. height: math.unit(4 + 10 / 12, "feet"),
  7687. weight: math.unit(480, "lb"),
  7688. name: "Front (Undressed)",
  7689. image: {
  7690. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7691. extra: 1061 / 960,
  7692. bottom: 0.045
  7693. }
  7694. },
  7695. },
  7696. [
  7697. {
  7698. name: "Micro",
  7699. height: math.unit(1, "inch")
  7700. },
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(4 + 10 / 12, "feet"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(200, "feet")
  7709. },
  7710. {
  7711. name: "Megamacro",
  7712. height: math.unit(120, "miles")
  7713. },
  7714. {
  7715. name: "Gigamacro",
  7716. height: math.unit(9800, "miles")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Moody" },
  7722. {
  7723. front: {
  7724. height: math.unit(1.7, "meters"),
  7725. weight: math.unit(140, "lb"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/moody/front.svg",
  7729. extra: 3226 / 3007,
  7730. bottom: 0.087
  7731. }
  7732. },
  7733. },
  7734. [
  7735. {
  7736. name: "Micro",
  7737. height: math.unit(1, "mm")
  7738. },
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(1.7, "meters"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(80, "meters")
  7747. },
  7748. {
  7749. name: "Macro+",
  7750. height: math.unit(500, "meters")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Zyas" },
  7756. {
  7757. front: {
  7758. height: math.unit(6, "feet"),
  7759. weight: math.unit(150, "lb"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/zyas/front.svg",
  7763. extra: 1180 / 1120,
  7764. bottom: 0.045
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(10, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(500, "feet")
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5, "miles")
  7781. },
  7782. {
  7783. name: "Teramacro",
  7784. height: math.unit(150000, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Cuon" },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(150, "lb"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/cuon/front.svg",
  7797. extra: 1390 / 1320,
  7798. bottom: 0.008
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(3, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(18 + 9 / 12, "feet"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(360, "feet")
  7815. },
  7816. {
  7817. name: "Megamacro",
  7818. height: math.unit(360, "miles")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Nyanuxk" },
  7824. {
  7825. front: {
  7826. height: math.unit(2.4, "meters"),
  7827. weight: math.unit(70, "kg"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/nyanuxk/front.svg",
  7831. extra: 1172 / 1084,
  7832. bottom: 0.065
  7833. }
  7834. },
  7835. side: {
  7836. height: math.unit(2.4, "meters"),
  7837. weight: math.unit(70, "kg"),
  7838. name: "Side",
  7839. image: {
  7840. source: "./media/characters/nyanuxk/side.svg",
  7841. extra: 1190 / 1132,
  7842. bottom: 0.007
  7843. }
  7844. },
  7845. back: {
  7846. height: math.unit(2.4, "meters"),
  7847. weight: math.unit(70, "kg"),
  7848. name: "Back",
  7849. image: {
  7850. source: "./media/characters/nyanuxk/back.svg",
  7851. extra: 1200 / 1141,
  7852. bottom: 0.015
  7853. }
  7854. },
  7855. foot: {
  7856. height: math.unit(0.52, "meters"),
  7857. name: "Foot",
  7858. image: {
  7859. source: "./media/characters/nyanuxk/foot.svg"
  7860. }
  7861. },
  7862. },
  7863. [
  7864. {
  7865. name: "Micro",
  7866. height: math.unit(2, "cm")
  7867. },
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(2.4, "meters"),
  7871. default: true
  7872. },
  7873. {
  7874. name: "Smaller Macro",
  7875. height: math.unit(120, "meters")
  7876. },
  7877. {
  7878. name: "Bigger Macro",
  7879. height: math.unit(1.2, "km")
  7880. },
  7881. {
  7882. name: "Megamacro",
  7883. height: math.unit(15, "kilometers")
  7884. },
  7885. {
  7886. name: "Gigamacro",
  7887. height: math.unit(2000, "km")
  7888. },
  7889. {
  7890. name: "Teramacro",
  7891. height: math.unit(500000, "km")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Ailbhe" },
  7897. {
  7898. side: {
  7899. height: math.unit(6, "feet"),
  7900. name: "Side",
  7901. image: {
  7902. source: "./media/characters/ailbhe/side.svg",
  7903. extra: 757 / 464,
  7904. bottom: 0.041
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(1.07, "meters"),
  7912. default: true
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Zevulfius" },
  7918. {
  7919. front: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(120, "kg"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/zevulfius/front.svg",
  7925. extra: 965 / 903
  7926. }
  7927. },
  7928. side: {
  7929. height: math.unit(6, "feet"),
  7930. weight: math.unit(120, "kg"),
  7931. name: "Side",
  7932. image: {
  7933. source: "./media/characters/zevulfius/side.svg",
  7934. extra: 939 / 900
  7935. }
  7936. },
  7937. back: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(120, "kg"),
  7940. name: "Back",
  7941. image: {
  7942. source: "./media/characters/zevulfius/back.svg",
  7943. extra: 918 / 854,
  7944. bottom: 0.005
  7945. }
  7946. },
  7947. foot: {
  7948. height: math.unit(6 / 3.72, "feet"),
  7949. name: "Foot",
  7950. image: {
  7951. source: "./media/characters/zevulfius/foot.svg"
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Macro",
  7958. height: math.unit(750, "meters")
  7959. },
  7960. {
  7961. name: "Megamacro",
  7962. height: math.unit(20, "km"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Gigamacro",
  7967. height: math.unit(2000, "km")
  7968. },
  7969. {
  7970. name: "Teramacro",
  7971. height: math.unit(250000, "km")
  7972. },
  7973. ]
  7974. ))
  7975. characterMakers.push(() => makeCharacter(
  7976. { name: "Rikes" },
  7977. {
  7978. front: {
  7979. height: math.unit(100, "feet"),
  7980. weight: math.unit(350, "kg"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/rikes/front.svg",
  7984. extra: 1565 / 1483,
  7985. bottom: 0.017
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(100, "feet"),
  7993. default: true
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Adam Silver-Mane" },
  7999. {
  8000. anthro: {
  8001. height: math.unit(8, "feet"),
  8002. weight: math.unit(120, "kg"),
  8003. name: "Anthro",
  8004. image: {
  8005. source: "./media/characters/adam-silver-mane/anthro.svg",
  8006. extra: 5743 / 5339,
  8007. bottom: 0.07
  8008. }
  8009. },
  8010. taur: {
  8011. height: math.unit(16, "feet"),
  8012. weight: math.unit(1500, "kg"),
  8013. name: "Taur",
  8014. image: {
  8015. source: "./media/characters/adam-silver-mane/taur.svg",
  8016. extra: 1713 / 1571,
  8017. bottom: 0.01
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(8, "feet")
  8025. },
  8026. {
  8027. name: "Minimacro",
  8028. height: math.unit(80, "feet")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(800, "feet"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Megamacro",
  8037. height: math.unit(8000, "feet")
  8038. },
  8039. {
  8040. name: "Gigamacro",
  8041. height: math.unit(800, "miles")
  8042. },
  8043. {
  8044. name: "Teramacro",
  8045. height: math.unit(80000, "miles")
  8046. },
  8047. {
  8048. name: "Celestial",
  8049. height: math.unit(8e6, "miles")
  8050. },
  8051. {
  8052. name: "Star Dragon",
  8053. height: math.unit(800000, "parsecs")
  8054. },
  8055. {
  8056. name: "Godly",
  8057. height: math.unit(800, "teraparsecs")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Ky'owin" },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(150, "lb"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/ky'owin/front.svg",
  8070. extra: 3888 / 3068,
  8071. bottom: 0.015
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(6 + 8 / 12, "feet")
  8079. },
  8080. {
  8081. name: "Large",
  8082. height: math.unit(68, "feet")
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(132, "feet")
  8087. },
  8088. {
  8089. name: "Macro+",
  8090. height: math.unit(340, "feet")
  8091. },
  8092. {
  8093. name: "Macro++",
  8094. height: math.unit(680, "feet"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Megamacro",
  8099. height: math.unit(1, "mile")
  8100. },
  8101. {
  8102. name: "Megamacro+",
  8103. height: math.unit(10, "miles")
  8104. },
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Mal" },
  8109. {
  8110. front: {
  8111. height: math.unit(4, "feet"),
  8112. weight: math.unit(50, "lb"),
  8113. name: "Front",
  8114. image: {
  8115. source: "./media/characters/mal/front.svg",
  8116. extra: 785 / 724,
  8117. bottom: 0.07
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Micro",
  8124. height: math.unit(4, "inches")
  8125. },
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(4, "feet"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(200, "feet")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Jordan Deware" },
  8139. {
  8140. front: {
  8141. height: math.unit(6, "feet"),
  8142. weight: math.unit(150, "lb"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/jordan-deware/front.svg",
  8146. extra: 1191 / 1012
  8147. }
  8148. },
  8149. },
  8150. [
  8151. {
  8152. name: "Nano",
  8153. height: math.unit(0.01, "mm")
  8154. },
  8155. {
  8156. name: "Minimicro",
  8157. height: math.unit(1, "mm")
  8158. },
  8159. {
  8160. name: "Micro",
  8161. height: math.unit(0.5, "inches")
  8162. },
  8163. {
  8164. name: "Normal",
  8165. height: math.unit(4, "feet"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Minimacro",
  8170. height: math.unit(40, "meters")
  8171. },
  8172. {
  8173. name: "Small Macro",
  8174. height: math.unit(400, "meters")
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(4, "miles")
  8179. },
  8180. {
  8181. name: "Megamacro",
  8182. height: math.unit(40, "miles")
  8183. },
  8184. {
  8185. name: "Megamacro+",
  8186. height: math.unit(400, "miles")
  8187. },
  8188. {
  8189. name: "Gigamacro",
  8190. height: math.unit(400000, "miles")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Kimiko" },
  8196. {
  8197. side: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lb"),
  8200. name: "Side",
  8201. image: {
  8202. source: "./media/characters/kimiko/side.svg",
  8203. extra: 600 / 358
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(15, "feet"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(220, "feet")
  8216. },
  8217. {
  8218. name: "Macro+",
  8219. height: math.unit(1450, "feet")
  8220. },
  8221. {
  8222. name: "Megamacro",
  8223. height: math.unit(11500, "feet")
  8224. },
  8225. {
  8226. name: "Gigamacro",
  8227. height: math.unit(9500, "miles")
  8228. },
  8229. {
  8230. name: "Teramacro",
  8231. height: math.unit(2208005005, "miles")
  8232. },
  8233. {
  8234. name: "Examacro",
  8235. height: math.unit(2750, "parsecs")
  8236. },
  8237. {
  8238. name: "Zettamacro",
  8239. height: math.unit(101500, "parsecs")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Andrew Sleepy" },
  8245. {
  8246. front: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(70, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/andrew-sleepy/front.svg"
  8252. }
  8253. },
  8254. side: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(70, "kg"),
  8257. name: "Side",
  8258. image: {
  8259. source: "./media/characters/andrew-sleepy/side.svg"
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Micro",
  8266. height: math.unit(1, "mm"),
  8267. default: true
  8268. },
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Judio" },
  8273. {
  8274. front: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(150, "lb"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/judio/front.svg",
  8280. extra: 1258 / 1110
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(5 + 6 / 12, "feet")
  8288. },
  8289. {
  8290. name: "Macro",
  8291. height: math.unit(1000, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(10, "miles")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Nomaxice" },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(68, "kg"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/nomaxice/front.svg",
  8309. extra: 1498 / 1073,
  8310. bottom: 0.075
  8311. }
  8312. },
  8313. foot: {
  8314. height: math.unit(1.1, "feet"),
  8315. name: "Foot",
  8316. image: {
  8317. source: "./media/characters/nomaxice/foot.svg"
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Micro",
  8324. height: math.unit(8, "cm")
  8325. },
  8326. {
  8327. name: "Norm",
  8328. height: math.unit(1.82, "m")
  8329. },
  8330. {
  8331. name: "Norm+",
  8332. height: math.unit(8.8, "feet")
  8333. },
  8334. {
  8335. name: "Big",
  8336. height: math.unit(8, "meters"),
  8337. default: true
  8338. },
  8339. {
  8340. name: "Macro",
  8341. height: math.unit(18, "meters")
  8342. },
  8343. {
  8344. name: "Macro+",
  8345. height: math.unit(88, "meters")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Dydros" },
  8351. {
  8352. front: {
  8353. height: math.unit(12, "feet"),
  8354. weight: math.unit(1.5, "tons"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/dydros/front.svg",
  8358. extra: 863 / 800,
  8359. bottom: 0.015
  8360. }
  8361. },
  8362. back: {
  8363. height: math.unit(12, "feet"),
  8364. weight: math.unit(1.5, "tons"),
  8365. name: "Back",
  8366. image: {
  8367. source: "./media/characters/dydros/back.svg",
  8368. extra: 900 / 843,
  8369. bottom: 0.005
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(12, "feet"),
  8377. default: true
  8378. },
  8379. ]
  8380. ))
  8381. characterMakers.push(() => makeCharacter(
  8382. { name: "Riggi" },
  8383. {
  8384. front: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(100, "kg"),
  8387. name: "Front",
  8388. image: {
  8389. source: "./media/characters/riggi/front.svg",
  8390. extra: 5787 / 5303
  8391. }
  8392. },
  8393. hyper: {
  8394. height: math.unit(6 * 5 / 3, "feet"),
  8395. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8396. name: "Hyper",
  8397. image: {
  8398. source: "./media/characters/riggi/hyper.svg",
  8399. extra: 3595 / 3485
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Small Macro",
  8406. height: math.unit(50, "feet")
  8407. },
  8408. {
  8409. name: "Default",
  8410. height: math.unit(200, "feet"),
  8411. default: true
  8412. },
  8413. {
  8414. name: "Loom",
  8415. height: math.unit(10000, "feet")
  8416. },
  8417. {
  8418. name: "Cruising Altitude",
  8419. height: math.unit(30000, "feet")
  8420. },
  8421. {
  8422. name: "Megamacro",
  8423. height: math.unit(100, "miles")
  8424. },
  8425. {
  8426. name: "Continent Sized",
  8427. height: math.unit(2800, "miles")
  8428. },
  8429. {
  8430. name: "Earth Sized",
  8431. height: math.unit(8000, "miles")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Alexi" },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(250, "lb"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/alexi/front.svg",
  8444. extra: 3483 / 3291,
  8445. bottom: 0.04
  8446. }
  8447. },
  8448. back: {
  8449. height: math.unit(6, "feet"),
  8450. weight: math.unit(250, "lb"),
  8451. name: "Back",
  8452. image: {
  8453. source: "./media/characters/alexi/back.svg",
  8454. extra: 3533 / 3356,
  8455. bottom: 0.021
  8456. }
  8457. },
  8458. frontTransformed: {
  8459. height: math.unit(12.5, "feet"),
  8460. weight: math.unit(4000, "lb"),
  8461. name: "Front (Transformed)",
  8462. image: {
  8463. source: "./media/characters/alexi/front-transformed.svg",
  8464. extra: 5345 / 5100,
  8465. bottom: 0.03
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(3, "meters"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Minimacro",
  8477. height: math.unit(30, "meters")
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(500, "meters")
  8482. },
  8483. {
  8484. name: "Megamacro",
  8485. height: math.unit(9000, "km")
  8486. },
  8487. {
  8488. name: "Teramacro",
  8489. height: math.unit(384000, "km")
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Kayroo" },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(150, "lb"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/kayroo/front.svg",
  8502. extra: 1153 / 1038,
  8503. bottom: 0.06
  8504. }
  8505. },
  8506. foot: {
  8507. height: math.unit(6, "feet"),
  8508. weight: math.unit(150, "lb"),
  8509. name: "Foot",
  8510. image: {
  8511. source: "./media/characters/kayroo/foot.svg"
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(8, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Minimacro",
  8523. height: math.unit(250, "feet")
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(2800, "feet")
  8528. },
  8529. {
  8530. name: "Megamacro",
  8531. height: math.unit(5200, "feet")
  8532. },
  8533. {
  8534. name: "Gigamacro",
  8535. height: math.unit(27000, "feet")
  8536. },
  8537. {
  8538. name: "Omega",
  8539. height: math.unit(45000, "feet")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Rhys" },
  8545. {
  8546. front: {
  8547. height: math.unit(18, "feet"),
  8548. weight: math.unit(5800, "lb"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/rhys/front.svg",
  8552. extra: 3386 / 3090,
  8553. bottom: 0.07
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(18, "feet"),
  8561. default: true
  8562. },
  8563. {
  8564. name: "Working Size",
  8565. height: math.unit(200, "feet")
  8566. },
  8567. {
  8568. name: "Demolition Size",
  8569. height: math.unit(2000, "feet")
  8570. },
  8571. {
  8572. name: "Maximum Licensed Size",
  8573. height: math.unit(5, "miles")
  8574. },
  8575. {
  8576. name: "Maximum Observed Size",
  8577. height: math.unit(10, "yottameters")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Toto" },
  8583. {
  8584. front: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(250, "lb"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/toto/front.svg",
  8590. extra: 527 / 479,
  8591. bottom: 0.05
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(3, "feet")
  8599. },
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(10, "feet")
  8603. },
  8604. {
  8605. name: "Macro",
  8606. height: math.unit(150, "feet"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(1200, "feet")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "King" },
  8617. {
  8618. back: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(150, "lb"),
  8621. name: "Back",
  8622. image: {
  8623. source: "./media/characters/king/back.svg"
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Micro",
  8630. height: math.unit(2, "inches")
  8631. },
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(8, "feet")
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(200, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Megamacro",
  8643. height: math.unit(50, "miles")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Cordite" },
  8649. {
  8650. anthro: {
  8651. height: math.unit(6 + 5 / 12, "feet"),
  8652. weight: math.unit(280, "lb"),
  8653. name: "Anthro",
  8654. image: {
  8655. source: "./media/characters/cordite/anthro.svg",
  8656. extra: 1986 / 1905,
  8657. bottom: 0.025
  8658. }
  8659. },
  8660. feral: {
  8661. height: math.unit(2, "feet"),
  8662. weight: math.unit(90, "lb"),
  8663. name: "Feral",
  8664. image: {
  8665. source: "./media/characters/cordite/feral.svg",
  8666. extra: 1260 / 755,
  8667. bottom: 0.05
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(6 + 5 / 12, "feet"),
  8675. default: true
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Pianostrong" },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(150, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/pianostrong/front.svg",
  8688. extra: 6577 / 6254,
  8689. bottom: 0.02
  8690. }
  8691. },
  8692. side: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(150, "lb"),
  8695. name: "Side",
  8696. image: {
  8697. source: "./media/characters/pianostrong/side.svg",
  8698. extra: 6106 / 5730
  8699. }
  8700. },
  8701. back: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(150, "lb"),
  8704. name: "Back",
  8705. image: {
  8706. source: "./media/characters/pianostrong/back.svg",
  8707. extra: 6085 / 5733,
  8708. bottom: 0.01
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Macro",
  8715. height: math.unit(100, "feet")
  8716. },
  8717. {
  8718. name: "Macro+",
  8719. height: math.unit(300, "feet"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro++",
  8724. height: math.unit(1000, "feet")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Kona" },
  8730. {
  8731. front: {
  8732. height: math.unit(6, "feet"),
  8733. weight: math.unit(150, "lb"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/kona/front.svg",
  8737. extra: 2960 / 2629,
  8738. bottom: 0.005
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(11 + 8 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(850, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro+",
  8754. height: math.unit(1.5, "km"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(80, "miles")
  8760. },
  8761. {
  8762. name: "Gigamacro",
  8763. height: math.unit(3500, "miles")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Levi" },
  8769. {
  8770. side: {
  8771. height: math.unit(1.9, "meters"),
  8772. weight: math.unit(326, "kg"),
  8773. name: "Side",
  8774. image: {
  8775. source: "./media/characters/levi/side.svg",
  8776. extra: 1704 / 1334,
  8777. bottom: 0.02
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(1.9, "meters"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(20, "meters")
  8790. },
  8791. {
  8792. name: "Macro+",
  8793. height: math.unit(200, "meters")
  8794. },
  8795. {
  8796. name: "Megamacro",
  8797. height: math.unit(2, "km")
  8798. },
  8799. {
  8800. name: "Megamacro+",
  8801. height: math.unit(20, "km")
  8802. },
  8803. {
  8804. name: "Gigamacro",
  8805. height: math.unit(2500, "km")
  8806. },
  8807. {
  8808. name: "Gigamacro+",
  8809. height: math.unit(120000, "km")
  8810. },
  8811. {
  8812. name: "Teramacro",
  8813. height: math.unit(7.77e6, "km")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "BMC" },
  8819. {
  8820. front: {
  8821. height: math.unit(6 + 4 / 12, "feet"),
  8822. weight: math.unit(188, "lb"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/bmc/front.svg",
  8826. extra: 1067 / 1022,
  8827. bottom: 0.047
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Human-sized",
  8834. height: math.unit(6 + 4 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Small",
  8838. height: math.unit(250, "feet")
  8839. },
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(1250, "feet"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "Good Day",
  8847. height: math.unit(88, "miles")
  8848. },
  8849. {
  8850. name: "Largest Measured Size",
  8851. height: math.unit(11.2e6, "lightyears")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Sven the Kaiju" },
  8857. {
  8858. front: {
  8859. height: math.unit(20, "feet"),
  8860. weight: math.unit(2016, "kg"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/sven-the-kaiju/front.svg",
  8864. extra: 1479 / 1449,
  8865. bottom: 0.05
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Fairy",
  8872. height: math.unit(6, "inches")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(20, "feet"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Rampage",
  8881. height: math.unit(200, "feet")
  8882. },
  8883. {
  8884. name: "Archfey Forest Guardian",
  8885. height: math.unit(1, "mile")
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Marik" },
  8891. {
  8892. front: {
  8893. height: math.unit(4, "meters"),
  8894. weight: math.unit(2, "tons"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/marik/front.svg",
  8898. extra: 1057 / 1003,
  8899. bottom: 0.08
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(4, "meters"),
  8907. default: true
  8908. },
  8909. {
  8910. name: "Macro",
  8911. height: math.unit(20, "meters")
  8912. },
  8913. {
  8914. name: "Megamacro",
  8915. height: math.unit(50, "km")
  8916. },
  8917. {
  8918. name: "Gigamacro",
  8919. height: math.unit(100, "km")
  8920. },
  8921. {
  8922. name: "Alpha Macro",
  8923. height: math.unit(7.88e7, "yottameters")
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Mel" },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(110, "lb"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/mel/front.svg",
  8936. extra: 736 / 617,
  8937. bottom: 0.017
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Pico",
  8944. height: math.unit(3, "pm")
  8945. },
  8946. {
  8947. name: "Nano",
  8948. height: math.unit(3, "nm")
  8949. },
  8950. {
  8951. name: "Micro",
  8952. height: math.unit(0.3, "mm"),
  8953. default: true
  8954. },
  8955. {
  8956. name: "Micro+",
  8957. height: math.unit(3, "mm")
  8958. },
  8959. {
  8960. name: "Normal",
  8961. height: math.unit(5 + 10.5 / 12, "feet")
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Lykonous" },
  8967. {
  8968. kaiju: {
  8969. height: math.unit(1.75, "meters"),
  8970. weight: math.unit(55, "kg"),
  8971. name: "Kaiju",
  8972. image: {
  8973. source: "./media/characters/lykonous/kaiju.svg",
  8974. extra: 1055 / 946,
  8975. bottom: 0.135
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(2.5, "meters"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Kaiju Dragon",
  8987. height: math.unit(60, "meters")
  8988. },
  8989. {
  8990. name: "Mega Kaiju",
  8991. height: math.unit(120, "km")
  8992. },
  8993. {
  8994. name: "Giga Kaiju",
  8995. height: math.unit(200, "megameters")
  8996. },
  8997. {
  8998. name: "Terra Kaiju",
  8999. height: math.unit(400, "gigameters")
  9000. },
  9001. {
  9002. name: "Kaiju Dragon God",
  9003. height: math.unit(13000, "exaparsecs")
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Blü" },
  9009. {
  9010. front: {
  9011. height: math.unit(6, "feet"),
  9012. weight: math.unit(150, "lb"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/blü/front.svg",
  9016. extra: 1883 / 1564,
  9017. bottom: 0.031
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(13, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Big Boi",
  9029. height: math.unit(150, "meters")
  9030. },
  9031. {
  9032. name: "Mini Stomper",
  9033. height: math.unit(300, "meters")
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(1000, "meters")
  9038. },
  9039. {
  9040. name: "Megamacro",
  9041. height: math.unit(11000, "meters")
  9042. },
  9043. {
  9044. name: "Gigamacro",
  9045. height: math.unit(11000, "km")
  9046. },
  9047. {
  9048. name: "Teramacro",
  9049. height: math.unit(420000, "km")
  9050. },
  9051. {
  9052. name: "Examacro",
  9053. height: math.unit(120, "parsecs")
  9054. },
  9055. {
  9056. name: "God Tho",
  9057. height: math.unit(98000000000, "parsecs")
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Scales" },
  9063. {
  9064. taurFront: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(200, "lb"),
  9067. name: "Taur (Front)",
  9068. image: {
  9069. source: "./media/characters/scales/taur-front.svg",
  9070. extra: 1,
  9071. bottom: 0.05
  9072. }
  9073. },
  9074. taurBack: {
  9075. height: math.unit(6, "feet"),
  9076. weight: math.unit(200, "lb"),
  9077. name: "Taur (Back)",
  9078. image: {
  9079. source: "./media/characters/scales/taur-back.svg",
  9080. extra: 1,
  9081. bottom: 0.08
  9082. }
  9083. },
  9084. anthro: {
  9085. height: math.unit(6 * 7 / 12, "feet"),
  9086. weight: math.unit(100, "lb"),
  9087. name: "Anthro",
  9088. image: {
  9089. source: "./media/characters/scales/anthro.svg",
  9090. extra: 1,
  9091. bottom: 0.06
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(12, "feet"),
  9099. default: true
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Koragos" },
  9105. {
  9106. front: {
  9107. height: math.unit(6, "feet"),
  9108. weight: math.unit(150, "lb"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/koragos/front.svg",
  9112. extra: 841 / 794,
  9113. bottom: 0.035
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(150, "lb"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/koragos/back.svg",
  9122. extra: 841 / 810,
  9123. bottom: 0.022
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(6 + 11 / 12, "feet"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "Macro",
  9135. height: math.unit(490, "feet")
  9136. },
  9137. {
  9138. name: "Megamacro",
  9139. height: math.unit(10, "miles")
  9140. },
  9141. {
  9142. name: "Gigamacro",
  9143. height: math.unit(50, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Xylrem" },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(250, "lb"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/xylrem/front.svg",
  9156. extra: 3323 / 3050,
  9157. bottom: 0.065
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(4, "feet")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(16, "feet"),
  9169. default: true
  9170. },
  9171. {
  9172. name: "Macro",
  9173. height: math.unit(2720, "feet")
  9174. },
  9175. {
  9176. name: "Megamacro",
  9177. height: math.unit(25000, "miles")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Ikideru" },
  9183. {
  9184. front: {
  9185. height: math.unit(8, "feet"),
  9186. weight: math.unit(250, "kg"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/ikideru/front.svg",
  9190. extra: 930 / 870,
  9191. bottom: 0.087
  9192. }
  9193. },
  9194. back: {
  9195. height: math.unit(8, "feet"),
  9196. weight: math.unit(250, "kg"),
  9197. name: "Back",
  9198. image: {
  9199. source: "./media/characters/ikideru/back.svg",
  9200. extra: 919 / 852,
  9201. bottom: 0.055
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Rare",
  9208. height: math.unit(8, "feet"),
  9209. default: true
  9210. },
  9211. {
  9212. name: "Playful Loom",
  9213. height: math.unit(80, "feet")
  9214. },
  9215. {
  9216. name: "City Leaner",
  9217. height: math.unit(230, "feet")
  9218. },
  9219. {
  9220. name: "Megamacro",
  9221. height: math.unit(2500, "feet")
  9222. },
  9223. {
  9224. name: "Gigamacro",
  9225. height: math.unit(26400, "feet")
  9226. },
  9227. {
  9228. name: "Tectonic Shifter",
  9229. height: math.unit(1.7, "megameters")
  9230. },
  9231. {
  9232. name: "Planet Carer",
  9233. height: math.unit(21, "megameters")
  9234. },
  9235. {
  9236. name: "God",
  9237. height: math.unit(11157.22, "parsecs")
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Neo" },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "lb"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/neo/front.svg"
  9250. }
  9251. },
  9252. },
  9253. [
  9254. {
  9255. name: "Micro",
  9256. height: math.unit(2, "inches"),
  9257. default: true
  9258. },
  9259. {
  9260. name: "Human Size",
  9261. height: math.unit(5 + 8 / 12, "feet")
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Chauncey (Chantz)" },
  9267. {
  9268. front: {
  9269. height: math.unit(13 + 10 / 12, "feet"),
  9270. weight: math.unit(5320, "lb"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/chauncey-chantz/front.svg",
  9274. extra: 1587 / 1435,
  9275. bottom: 0.02
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(13 + 10 / 12, "feet"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(45, "feet")
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(250, "miles")
  9292. },
  9293. {
  9294. name: "Planetary",
  9295. height: math.unit(10000, "miles")
  9296. },
  9297. {
  9298. name: "Galactic",
  9299. height: math.unit(40000, "parsecs")
  9300. },
  9301. {
  9302. name: "Universal",
  9303. height: math.unit(1, "yottameter")
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Epifox" },
  9309. {
  9310. front: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(150, "lb"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/epifox/front.svg",
  9316. extra: 1,
  9317. bottom: 0.075
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Micro",
  9324. height: math.unit(6, "inches")
  9325. },
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(12, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(3810, "feet")
  9334. },
  9335. {
  9336. name: "Megamacro",
  9337. height: math.unit(500, "miles")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Colin T." },
  9343. {
  9344. front: {
  9345. height: math.unit(1.8796, "m"),
  9346. weight: math.unit(230, "lb"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/colin-t/front.svg",
  9350. extra: 1272 / 1193,
  9351. bottom: 0.07
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Micro",
  9358. height: math.unit(0.571, "meters")
  9359. },
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(1.8796, "meters"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Tall",
  9367. height: math.unit(4, "meters")
  9368. },
  9369. {
  9370. name: "Macro",
  9371. height: math.unit(67.241, "meters")
  9372. },
  9373. {
  9374. name: "Megamacro",
  9375. height: math.unit(371.856, "meters")
  9376. },
  9377. {
  9378. name: "Planetary",
  9379. height: math.unit(12631.5689, "km")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Matvei" },
  9385. {
  9386. front: {
  9387. height: math.unit(1.85, "meters"),
  9388. weight: math.unit(80, "kg"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/matvei/front.svg",
  9392. extra: 614 / 594,
  9393. bottom: 0.01
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(1.85, "meters"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Quincy" },
  9407. {
  9408. front: {
  9409. height: math.unit(5 + 9 / 12, "feet"),
  9410. weight: math.unit(70, "lb"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/quincy/front.svg",
  9414. extra: 3041 / 2751
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(5 + 9 / 12, "feet"),
  9419. weight: math.unit(70, "lb"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/quincy/back.svg",
  9423. extra: 3041 / 2751
  9424. }
  9425. },
  9426. flying: {
  9427. height: math.unit(5 + 4 / 12, "feet"),
  9428. weight: math.unit(70, "lb"),
  9429. name: "Flying",
  9430. image: {
  9431. source: "./media/characters/quincy/flying.svg",
  9432. extra: 1044 / 930
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Micro",
  9439. height: math.unit(3, "cm")
  9440. },
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(5 + 9 / 12, "feet")
  9444. },
  9445. {
  9446. name: "Macro",
  9447. height: math.unit(200, "meters"),
  9448. default: true
  9449. },
  9450. {
  9451. name: "Megamacro",
  9452. height: math.unit(1000, "meters")
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Vanrel" },
  9458. {
  9459. front: {
  9460. height: math.unit(4 + 7 / 12, "feet"),
  9461. weight: math.unit(150, "lb"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/vanrel/front.svg",
  9465. extra: 1,
  9466. bottom: 0.02
  9467. }
  9468. },
  9469. elemental: {
  9470. height: math.unit(3, "feet"),
  9471. weight: math.unit(150, "lb"),
  9472. name: "Elemental",
  9473. image: {
  9474. source: "./media/characters/vanrel/elemental.svg",
  9475. extra: 192.3/162.8,
  9476. bottom: 1.79/194.17
  9477. }
  9478. },
  9479. side: {
  9480. height: math.unit(4 + 7 / 12, "feet"),
  9481. weight: math.unit(150, "lb"),
  9482. name: "Side",
  9483. image: {
  9484. source: "./media/characters/vanrel/side.svg",
  9485. extra: 1,
  9486. bottom: 0.025
  9487. }
  9488. },
  9489. tome: {
  9490. height: math.unit(1.35, "feet"),
  9491. weight: math.unit(10, "lb"),
  9492. name: "Vanrel's Tome",
  9493. rename: true,
  9494. image: {
  9495. source: "./media/characters/vanrel/tome.svg"
  9496. }
  9497. },
  9498. beans: {
  9499. height: math.unit(0.89, "feet"),
  9500. name: "Beans",
  9501. image: {
  9502. source: "./media/characters/vanrel/beans.svg"
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(4 + 7 / 12, "feet"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Kuiper Vanrel" },
  9516. {
  9517. front: {
  9518. height: math.unit(7 + 5 / 12, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/kuiper-vanrel/front.svg",
  9523. extra: 1118 / 1068,
  9524. bottom: 0.09
  9525. }
  9526. },
  9527. foot: {
  9528. height: math.unit(0.55, "meters"),
  9529. name: "Foot",
  9530. image: {
  9531. source: "./media/characters/kuiper-vanrel/foot.svg",
  9532. }
  9533. },
  9534. battle: {
  9535. height: math.unit(6.824, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Battle",
  9538. image: {
  9539. source: "./media/characters/kuiper-vanrel/battle.svg",
  9540. extra: 1466/1327,
  9541. bottom: 29/1492.5
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(7 + 5 / 12, "feet"),
  9549. default: true
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Keset Vanrel" },
  9555. {
  9556. front: {
  9557. height: math.unit(8 + 5 / 12, "feet"),
  9558. weight: math.unit(150, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/keset-vanrel/front.svg",
  9562. extra: 1150 / 1084,
  9563. bottom: 0.05
  9564. }
  9565. },
  9566. hand: {
  9567. height: math.unit(0.6, "meters"),
  9568. name: "Hand",
  9569. image: {
  9570. source: "./media/characters/keset-vanrel/hand.svg"
  9571. }
  9572. },
  9573. foot: {
  9574. height: math.unit(0.94978, "meters"),
  9575. name: "Foot",
  9576. image: {
  9577. source: "./media/characters/keset-vanrel/foot.svg"
  9578. }
  9579. },
  9580. battle: {
  9581. height: math.unit(7.408, "feet"),
  9582. weight: math.unit(150, "lb"),
  9583. name: "Battle",
  9584. image: {
  9585. source: "./media/characters/keset-vanrel/battle.svg",
  9586. extra: 1890/1386,
  9587. bottom: 73.28/1970
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(8 + 5 / 12, "feet"),
  9595. default: true
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Neos" },
  9601. {
  9602. front: {
  9603. height: math.unit(6, "feet"),
  9604. weight: math.unit(150, "lb"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/neos/front.svg",
  9608. extra: 1696 / 992,
  9609. bottom: 0.14
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(54, "cm"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Macro",
  9621. height: math.unit(100, "m")
  9622. },
  9623. {
  9624. name: "Megamacro",
  9625. height: math.unit(10, "km")
  9626. },
  9627. {
  9628. name: "Megamacro+",
  9629. height: math.unit(100, "km")
  9630. },
  9631. {
  9632. name: "Gigamacro",
  9633. height: math.unit(100, "Mm")
  9634. },
  9635. {
  9636. name: "Teramacro",
  9637. height: math.unit(100, "Gm")
  9638. },
  9639. {
  9640. name: "Examacro",
  9641. height: math.unit(100, "Em")
  9642. },
  9643. {
  9644. name: "Godly",
  9645. height: math.unit(10000, "Ym")
  9646. },
  9647. {
  9648. name: "Beyond Godly",
  9649. height: math.unit(10000000, "Ym")
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Sammy Mouse" },
  9655. {
  9656. feminine: {
  9657. height: math.unit(5, "feet"),
  9658. weight: math.unit(100, "lb"),
  9659. name: "Feminine",
  9660. image: {
  9661. source: "./media/characters/sammy-mouse/feminine.svg",
  9662. extra: 2526 / 2425,
  9663. bottom: 0.123
  9664. }
  9665. },
  9666. masculine: {
  9667. height: math.unit(5, "feet"),
  9668. weight: math.unit(100, "lb"),
  9669. name: "Masculine",
  9670. image: {
  9671. source: "./media/characters/sammy-mouse/masculine.svg",
  9672. extra: 2526 / 2425,
  9673. bottom: 0.123
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Micro",
  9680. height: math.unit(5, "inches")
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(60, "feet")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Kole" },
  9695. {
  9696. front: {
  9697. height: math.unit(4, "feet"),
  9698. weight: math.unit(50, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/kole/front.svg",
  9702. extra: 1423 / 1303,
  9703. bottom: 0.025
  9704. }
  9705. },
  9706. back: {
  9707. height: math.unit(4, "feet"),
  9708. weight: math.unit(50, "lb"),
  9709. name: "Back",
  9710. image: {
  9711. source: "./media/characters/kole/back.svg",
  9712. extra: 1426 / 1280,
  9713. bottom: 0.02
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Normal",
  9720. height: math.unit(4, "feet"),
  9721. default: true
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Rufran" },
  9727. {
  9728. front: {
  9729. height: math.unit(2 + 6 / 12, "feet"),
  9730. weight: math.unit(20, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/rufran/front.svg",
  9734. extra: 2041 / 1839,
  9735. bottom: 0.055
  9736. }
  9737. },
  9738. back: {
  9739. height: math.unit(2 + 6 / 12, "feet"),
  9740. weight: math.unit(20, "lb"),
  9741. name: "Back",
  9742. image: {
  9743. source: "./media/characters/rufran/back.svg",
  9744. extra: 2054 / 1839,
  9745. bottom: 0.01
  9746. }
  9747. },
  9748. hand: {
  9749. height: math.unit(0.2166, "meters"),
  9750. name: "Hand",
  9751. image: {
  9752. source: "./media/characters/rufran/hand.svg"
  9753. }
  9754. },
  9755. foot: {
  9756. height: math.unit(0.185, "meters"),
  9757. name: "Foot",
  9758. image: {
  9759. source: "./media/characters/rufran/foot.svg"
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(1, "inch")
  9767. },
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(2 + 6 / 12, "feet"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "Big",
  9775. height: math.unit(60, "feet")
  9776. },
  9777. {
  9778. name: "Macro",
  9779. height: math.unit(325, "feet")
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Chip" },
  9785. {
  9786. front: {
  9787. height: math.unit(0.3, "meters"),
  9788. weight: math.unit(3.5, "kg"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/chip/front.svg",
  9792. extra: 748 / 674
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Micro",
  9799. height: math.unit(1, "inch"),
  9800. default: true
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Torvid" },
  9806. {
  9807. side: {
  9808. height: math.unit(2.3, "meters"),
  9809. weight: math.unit(3500, "lb"),
  9810. name: "Side",
  9811. image: {
  9812. source: "./media/characters/torvid/side.svg",
  9813. extra: 1972 / 722,
  9814. bottom: 0.035
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(2.3, "meters"),
  9822. default: true
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Susan" },
  9828. {
  9829. front: {
  9830. height: math.unit(2, "meters"),
  9831. weight: math.unit(150.5, "kg"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/susan/front.svg",
  9835. extra: 693 / 635,
  9836. bottom: 0.05
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(505, "miles"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Raindrops" },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/raindrops/front.svg",
  9857. extra: 2655 / 2461,
  9858. bottom: 0.02
  9859. }
  9860. },
  9861. back: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(150, "lb"),
  9864. name: "Back",
  9865. image: {
  9866. source: "./media/characters/raindrops/back.svg",
  9867. extra: 2574 / 2400,
  9868. bottom: 0.03
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Micro",
  9875. height: math.unit(6, "inches")
  9876. },
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(6 + 2 / 12, "feet")
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(131, "feet"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Megamacro",
  9888. height: math.unit(15, "miles")
  9889. },
  9890. {
  9891. name: "Gigamacro",
  9892. height: math.unit(4000, "miles")
  9893. },
  9894. {
  9895. name: "Teramacro",
  9896. height: math.unit(315000, "miles")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Tezwa" },
  9902. {
  9903. front: {
  9904. height: math.unit(2.794, "meters"),
  9905. weight: math.unit(325, "kg"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/tezwa/front.svg",
  9909. extra: 2083 / 1906,
  9910. bottom: 0.031
  9911. }
  9912. },
  9913. foot: {
  9914. height: math.unit(0.687, "meters"),
  9915. name: "Foot",
  9916. image: {
  9917. source: "./media/characters/tezwa/foot.svg"
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(9 + 2 / 12, "feet"),
  9925. default: true
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Typhus" },
  9931. {
  9932. front: {
  9933. height: math.unit(58, "feet"),
  9934. weight: math.unit(89000, "lb"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/typhus/front.svg",
  9938. extra: 816 / 800,
  9939. bottom: 0.065
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(58, "feet"),
  9947. default: true
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Lyra Von Wulf" },
  9953. {
  9954. front: {
  9955. height: math.unit(12, "feet"),
  9956. weight: math.unit(6, "tonnes"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/lyra-von-wulf/front.svg",
  9960. extra: 1,
  9961. bottom: 0.10
  9962. }
  9963. },
  9964. frontMecha: {
  9965. height: math.unit(12, "feet"),
  9966. weight: math.unit(12, "tonnes"),
  9967. name: "Front (Mecha)",
  9968. image: {
  9969. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9970. extra: 1,
  9971. bottom: 0.042
  9972. }
  9973. },
  9974. maw: {
  9975. height: math.unit(2.2, "feet"),
  9976. name: "Maw",
  9977. image: {
  9978. source: "./media/characters/lyra-von-wulf/maw.svg"
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(12, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Classic",
  9990. height: math.unit(50, "feet")
  9991. },
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(500, "feet")
  9995. },
  9996. {
  9997. name: "Megamacro",
  9998. height: math.unit(1, "mile")
  9999. },
  10000. {
  10001. name: "Gigamacro",
  10002. height: math.unit(400, "miles")
  10003. },
  10004. {
  10005. name: "Teramacro",
  10006. height: math.unit(22000, "miles")
  10007. },
  10008. {
  10009. name: "Solarmacro",
  10010. height: math.unit(8600000, "miles")
  10011. },
  10012. {
  10013. name: "Galactic",
  10014. height: math.unit(1057000, "lightyears")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Dixon" },
  10020. {
  10021. front: {
  10022. height: math.unit(6 + 10 / 12, "feet"),
  10023. weight: math.unit(150, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/dixon/front.svg",
  10027. extra: 3361 / 3209,
  10028. bottom: 0.01
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(6 + 10 / 12, "feet"),
  10036. default: true
  10037. },
  10038. {
  10039. name: "Big",
  10040. height: math.unit(12, "meters")
  10041. },
  10042. {
  10043. name: "Macro",
  10044. height: math.unit(500, "meters")
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(2, "km")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Kauko" },
  10054. {
  10055. front: {
  10056. height: math.unit(185, "cm"),
  10057. weight: math.unit(68, "kg"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/kauko/front.svg",
  10061. extra: 1455 / 1421,
  10062. bottom: 0.03
  10063. }
  10064. },
  10065. back: {
  10066. height: math.unit(185, "cm"),
  10067. weight: math.unit(68, "kg"),
  10068. name: "Back",
  10069. image: {
  10070. source: "./media/characters/kauko/back.svg",
  10071. extra: 1455 / 1421,
  10072. bottom: 0.004
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(185, "cm"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Varg" },
  10086. {
  10087. front: {
  10088. height: math.unit(6, "feet"),
  10089. weight: math.unit(150, "kg"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/varg/front.svg",
  10093. extra: 1108 / 1018,
  10094. bottom: 0.0375
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(5, "meters")
  10102. },
  10103. {
  10104. name: "Macro",
  10105. height: math.unit(200, "meters")
  10106. },
  10107. {
  10108. name: "Megamacro",
  10109. height: math.unit(20, "kilometers")
  10110. },
  10111. {
  10112. name: "True Size",
  10113. height: math.unit(211, "km"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Gigamacro",
  10118. height: math.unit(1000, "km")
  10119. },
  10120. {
  10121. name: "Gigamacro+",
  10122. height: math.unit(8000, "km")
  10123. },
  10124. {
  10125. name: "Teramacro",
  10126. height: math.unit(1000000, "km")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Dayza" },
  10132. {
  10133. front: {
  10134. height: math.unit(7 + 7 / 12, "feet"),
  10135. weight: math.unit(267, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/dayza/front.svg",
  10139. extra: 1262 / 1200,
  10140. bottom: 0.035
  10141. }
  10142. },
  10143. side: {
  10144. height: math.unit(7 + 7 / 12, "feet"),
  10145. weight: math.unit(267, "lb"),
  10146. name: "Side",
  10147. image: {
  10148. source: "./media/characters/dayza/side.svg",
  10149. extra: 1295 / 1245,
  10150. bottom: 0.05
  10151. }
  10152. },
  10153. back: {
  10154. height: math.unit(7 + 7 / 12, "feet"),
  10155. weight: math.unit(267, "lb"),
  10156. name: "Back",
  10157. image: {
  10158. source: "./media/characters/dayza/back.svg",
  10159. extra: 1241 / 1170
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Normal",
  10166. height: math.unit(7 + 7 / 12, "feet"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(155, "feet")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Xanthos" },
  10177. {
  10178. front: {
  10179. height: math.unit(6 + 5 / 12, "feet"),
  10180. weight: math.unit(160, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/xanthos/front.svg",
  10184. extra: 1,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. back: {
  10189. height: math.unit(6 + 5 / 12, "feet"),
  10190. weight: math.unit(160, "lb"),
  10191. name: "Back",
  10192. image: {
  10193. source: "./media/characters/xanthos/back.svg",
  10194. extra: 1,
  10195. bottom: 0.03
  10196. }
  10197. },
  10198. hand: {
  10199. height: math.unit(0.928, "feet"),
  10200. name: "Hand",
  10201. image: {
  10202. source: "./media/characters/xanthos/hand.svg"
  10203. }
  10204. },
  10205. foot: {
  10206. height: math.unit(1.286, "feet"),
  10207. name: "Foot",
  10208. image: {
  10209. source: "./media/characters/xanthos/foot.svg"
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Normal",
  10216. height: math.unit(6 + 5 / 12, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Normal+",
  10221. height: math.unit(6, "meters")
  10222. },
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(40, "feet")
  10226. },
  10227. {
  10228. name: "Macro+",
  10229. height: math.unit(200, "meters")
  10230. },
  10231. {
  10232. name: "Megamacro",
  10233. height: math.unit(20, "km")
  10234. },
  10235. {
  10236. name: "Megamacro+",
  10237. height: math.unit(100, "km")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Grynn" },
  10243. {
  10244. front: {
  10245. height: math.unit(6 + 3 / 12, "feet"),
  10246. weight: math.unit(215, "lb"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/grynn/front.svg",
  10250. extra: 4627 / 4209,
  10251. bottom: 0.047
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(6, "inches")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(6 + 3 / 12, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Big",
  10267. height: math.unit(104, "feet")
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(944, "feet")
  10272. },
  10273. {
  10274. name: "Macro+",
  10275. height: math.unit(9480, "feet")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(78752, "feet")
  10280. },
  10281. {
  10282. name: "Megamacro+",
  10283. height: math.unit(630128, "feet")
  10284. },
  10285. {
  10286. name: "Megamacro++",
  10287. height: math.unit(3150695, "feet")
  10288. },
  10289. ]
  10290. ))
  10291. characterMakers.push(() => makeCharacter(
  10292. { name: "Mocha Aura" },
  10293. {
  10294. front: {
  10295. height: math.unit(7 + 5 / 12, "feet"),
  10296. weight: math.unit(450, "lb"),
  10297. name: "Front",
  10298. image: {
  10299. source: "./media/characters/mocha-aura/front.svg",
  10300. extra: 1907 / 1817,
  10301. bottom: 0.04
  10302. }
  10303. },
  10304. back: {
  10305. height: math.unit(7 + 5 / 12, "feet"),
  10306. weight: math.unit(450, "lb"),
  10307. name: "Back",
  10308. image: {
  10309. source: "./media/characters/mocha-aura/back.svg",
  10310. extra: 1900 / 1825,
  10311. bottom: 0.045
  10312. }
  10313. },
  10314. },
  10315. [
  10316. {
  10317. name: "Nano",
  10318. height: math.unit(1, "nm")
  10319. },
  10320. {
  10321. name: "Megamicro",
  10322. height: math.unit(1, "mm")
  10323. },
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(3, "inches")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(7 + 5 / 12, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Macro",
  10335. height: math.unit(30, "feet")
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(3500, "feet")
  10340. },
  10341. {
  10342. name: "Teramacro",
  10343. height: math.unit(500000, "miles")
  10344. },
  10345. {
  10346. name: "Petamacro",
  10347. height: math.unit(50000000000000000, "parsecs")
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Ilisha Devya" },
  10353. {
  10354. front: {
  10355. height: math.unit(6, "feet"),
  10356. weight: math.unit(150, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/ilisha-devya/front.svg",
  10360. extra: 1,
  10361. bottom: 0.175
  10362. }
  10363. },
  10364. back: {
  10365. height: math.unit(6, "feet"),
  10366. weight: math.unit(150, "lb"),
  10367. name: "Back",
  10368. image: {
  10369. source: "./media/characters/ilisha-devya/back.svg",
  10370. extra: 1,
  10371. bottom: 0.015
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(500, "feet"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Megamacro",
  10383. height: math.unit(10, "miles")
  10384. },
  10385. {
  10386. name: "Gigamacro",
  10387. height: math.unit(100000, "miles")
  10388. },
  10389. {
  10390. name: "Examacro",
  10391. height: math.unit(1e9, "lightyears")
  10392. },
  10393. {
  10394. name: "Omniversal",
  10395. height: math.unit(1e33, "lightyears")
  10396. },
  10397. {
  10398. name: "Beyond Infinite",
  10399. height: math.unit(1e100, "lightyears")
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Mira" },
  10405. {
  10406. Side: {
  10407. height: math.unit(6, "feet"),
  10408. weight: math.unit(150, "lb"),
  10409. name: "Side",
  10410. image: {
  10411. source: "./media/characters/mira/side.svg",
  10412. extra: 900 / 799,
  10413. bottom: 0.02
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Human Size",
  10420. height: math.unit(6, "feet")
  10421. },
  10422. {
  10423. name: "Macro",
  10424. height: math.unit(100, "feet"),
  10425. default: true
  10426. },
  10427. {
  10428. name: "Megamacro",
  10429. height: math.unit(10, "miles")
  10430. },
  10431. {
  10432. name: "Gigamacro",
  10433. height: math.unit(25000, "miles")
  10434. },
  10435. {
  10436. name: "Teramacro",
  10437. height: math.unit(300, "AU")
  10438. },
  10439. {
  10440. name: "Full Size",
  10441. height: math.unit(4.5e10, "lightyears")
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Holly" },
  10447. {
  10448. front: {
  10449. height: math.unit(6, "feet"),
  10450. weight: math.unit(150, "lb"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/holly/front.svg",
  10454. extra: 639 / 606
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(150, "lb"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/holly/back.svg",
  10463. extra: 623 / 598
  10464. }
  10465. },
  10466. frontWorking: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front (Working)",
  10470. image: {
  10471. source: "./media/characters/holly/front-working.svg",
  10472. extra: 607 / 577,
  10473. bottom: 0.048
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(12 + 3 / 12, "feet"),
  10481. default: true
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Porter" },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/porter/front.svg",
  10494. extra: 1,
  10495. bottom: 0.01
  10496. }
  10497. },
  10498. frontRobes: {
  10499. height: math.unit(6, "feet"),
  10500. weight: math.unit(150, "lb"),
  10501. name: "Front (Robes)",
  10502. image: {
  10503. source: "./media/characters/porter/front-robes.svg",
  10504. extra: 1.01,
  10505. bottom: 0.01
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(11 + 9 / 12, "feet"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Lucy" },
  10519. {
  10520. legendary: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(150, "lb"),
  10523. name: "Legendary",
  10524. image: {
  10525. source: "./media/characters/lucy/legendary.svg",
  10526. extra: 1355 / 1100,
  10527. bottom: 0.045
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Legendary",
  10534. height: math.unit(86882 * 2, "miles"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Drusilla" },
  10541. {
  10542. front: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(150, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/drusilla/front.svg",
  10548. extra: 678 / 635,
  10549. bottom: 0.03
  10550. }
  10551. },
  10552. back: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(150, "lb"),
  10555. name: "Back",
  10556. image: {
  10557. source: "./media/characters/drusilla/back.svg",
  10558. extra: 678 / 635,
  10559. bottom: 0.005
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(100, "feet")
  10567. },
  10568. {
  10569. name: "Canon Height",
  10570. height: math.unit(2000, "feet"),
  10571. default: true
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Renard Thatch" },
  10577. {
  10578. front: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(180, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/renard-thatch/front.svg",
  10584. extra: 2411 / 2275,
  10585. bottom: 0.01
  10586. }
  10587. },
  10588. frontPosing: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(180, "lb"),
  10591. name: "Front (Posing)",
  10592. image: {
  10593. source: "./media/characters/renard-thatch/front-posing.svg",
  10594. extra: 2381 / 2261,
  10595. bottom: 0.01
  10596. }
  10597. },
  10598. back: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(180, "lb"),
  10601. name: "Back",
  10602. image: {
  10603. source: "./media/characters/renard-thatch/back.svg",
  10604. extra: 2428 / 2288
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Micro",
  10611. height: math.unit(3, "inches")
  10612. },
  10613. {
  10614. name: "Default",
  10615. height: math.unit(6, "feet"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Macro",
  10620. height: math.unit(75, "feet")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Sekvra" },
  10626. {
  10627. front: {
  10628. height: math.unit(1450, "feet"),
  10629. weight: math.unit(1.21e6, "tons"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/sekvra/front.svg",
  10633. extra: 1,
  10634. bottom: 0.03
  10635. }
  10636. },
  10637. frontClothed: {
  10638. height: math.unit(1450, "feet"),
  10639. weight: math.unit(1.21e6, "tons"),
  10640. name: "Front (Clothed)",
  10641. image: {
  10642. source: "./media/characters/sekvra/front-clothed.svg",
  10643. extra: 1,
  10644. bottom: 0.03
  10645. }
  10646. },
  10647. side: {
  10648. height: math.unit(1450, "feet"),
  10649. weight: math.unit(1.21e6, "tons"),
  10650. name: "Side",
  10651. image: {
  10652. source: "./media/characters/sekvra/side.svg",
  10653. extra: 1,
  10654. bottom: 0.025
  10655. }
  10656. },
  10657. back: {
  10658. height: math.unit(1450, "feet"),
  10659. weight: math.unit(1.21e6, "tons"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/sekvra/back.svg",
  10663. extra: 1,
  10664. bottom: 0.005
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(1450, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(15000, "feet")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Carmine" },
  10682. {
  10683. front: {
  10684. height: math.unit(6, "feet"),
  10685. weight: math.unit(150, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/carmine/front.svg",
  10689. extra: 1,
  10690. bottom: 0.035
  10691. }
  10692. },
  10693. frontArmor: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Front (Armor)",
  10697. image: {
  10698. source: "./media/characters/carmine/front-armor.svg",
  10699. extra: 1,
  10700. bottom: 0.035
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Large",
  10707. height: math.unit(1, "mile")
  10708. },
  10709. {
  10710. name: "Huge",
  10711. height: math.unit(40, "miles"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Colossal",
  10716. height: math.unit(2500, "miles")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Elyssia" },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/elyssia/front.svg",
  10729. extra: 2201 / 2035,
  10730. bottom: 0.05
  10731. }
  10732. },
  10733. frontClothed: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Front (Clothed)",
  10737. image: {
  10738. source: "./media/characters/elyssia/front-clothed.svg",
  10739. extra: 2201 / 2035,
  10740. bottom: 0.05
  10741. }
  10742. },
  10743. back: {
  10744. height: math.unit(6, "feet"),
  10745. weight: math.unit(150, "lb"),
  10746. name: "Back",
  10747. image: {
  10748. source: "./media/characters/elyssia/back.svg",
  10749. extra: 2201 / 2035,
  10750. bottom: 0.013
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Smaller",
  10757. height: math.unit(150, "feet")
  10758. },
  10759. {
  10760. name: "Standard",
  10761. height: math.unit(1400, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Distracted",
  10766. height: math.unit(15000, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Geno Maxwell" },
  10772. {
  10773. front: {
  10774. height: math.unit(7 + 4 / 12, "feet"),
  10775. weight: math.unit(500, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/geno-maxwell/front.svg",
  10779. extra: 2207 / 2040,
  10780. bottom: 0.015
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Micro",
  10787. height: math.unit(3, "inches")
  10788. },
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(7 + 4 / 12, "feet"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(220, "feet")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(11, "miles")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Regena Maxwell" },
  10806. {
  10807. front: {
  10808. height: math.unit(7 + 4 / 12, "feet"),
  10809. weight: math.unit(500, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/regena-maxwell/front.svg",
  10813. extra: 3115 / 2770,
  10814. bottom: 0.02
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(7 + 4 / 12, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(220, "feet")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(11, "miles")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "XGlidingDragonX" },
  10836. {
  10837. front: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(150, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10843. extra: 860 / 690,
  10844. bottom: 0.03
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(1.7, "meters"),
  10852. default: true
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Quilly" },
  10858. {
  10859. front: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(150, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/quilly/front.svg",
  10865. extra: 890 / 776
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Gigamacro",
  10872. height: math.unit(404090, "miles"),
  10873. default: true
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Tempest" },
  10879. {
  10880. front: {
  10881. height: math.unit(7 + 8 / 12, "feet"),
  10882. weight: math.unit(350, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/tempest/front.svg",
  10886. extra: 1175 / 1086,
  10887. bottom: 0.02
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(7 + 8 / 12, "feet"),
  10895. default: true
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Rodger" },
  10901. {
  10902. side: {
  10903. height: math.unit(4 + 5 / 12, "feet"),
  10904. weight: math.unit(80, "lb"),
  10905. name: "Side",
  10906. image: {
  10907. source: "./media/characters/rodger/side.svg",
  10908. extra: 1235 / 1118
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Micro",
  10915. height: math.unit(1, "inch")
  10916. },
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(4 + 5 / 12, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Macro",
  10924. height: math.unit(120, "feet")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Danyel" },
  10930. {
  10931. front: {
  10932. height: math.unit(6, "feet"),
  10933. weight: math.unit(150, "lb"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/danyel/front.svg",
  10937. extra: 1185 / 1123,
  10938. bottom: 0.05
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Shrunken",
  10945. height: math.unit(0.5, "mm")
  10946. },
  10947. {
  10948. name: "Micro",
  10949. height: math.unit(1, "mm"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Upsized",
  10954. height: math.unit(5 + 5 / 12, "feet")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Vivian Bijoux" },
  10960. {
  10961. front: {
  10962. height: math.unit(5 + 6 / 12, "feet"),
  10963. weight: math.unit(200, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/vivian-bijoux/front.svg",
  10967. extra: 1,
  10968. bottom: 0.072
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(5 + 6 / 12, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Bad Dream",
  10980. height: math.unit(500, "feet")
  10981. },
  10982. {
  10983. name: "Nightmare",
  10984. height: math.unit(500, "miles")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Zeta" },
  10990. {
  10991. front: {
  10992. height: math.unit(6 + 1 / 12, "feet"),
  10993. weight: math.unit(260, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/zeta/front.svg",
  10997. extra: 1968 / 1889,
  10998. bottom: 0.06
  10999. }
  11000. },
  11001. back: {
  11002. height: math.unit(6 + 1 / 12, "feet"),
  11003. weight: math.unit(260, "lb"),
  11004. name: "Back",
  11005. image: {
  11006. source: "./media/characters/zeta/back.svg",
  11007. extra: 1944 / 1858,
  11008. bottom: 0.03
  11009. }
  11010. },
  11011. hand: {
  11012. height: math.unit(1.112, "feet"),
  11013. name: "Hand",
  11014. image: {
  11015. source: "./media/characters/zeta/hand.svg"
  11016. }
  11017. },
  11018. foot: {
  11019. height: math.unit(1.48, "feet"),
  11020. name: "Foot",
  11021. image: {
  11022. source: "./media/characters/zeta/foot.svg"
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Micro",
  11029. height: math.unit(6, "inches")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(6 + 1 / 12, "feet"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(20, "feet")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Jamie Larsen" },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(150, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/jamie-larsen/front.svg",
  11051. extra: 962 / 933,
  11052. bottom: 0.02
  11053. }
  11054. },
  11055. back: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Back",
  11059. image: {
  11060. source: "./media/characters/jamie-larsen/back.svg",
  11061. extra: 997 / 946
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(28 + 7 / 12, "feet"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Macro+",
  11073. height: math.unit(180, "feet")
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(10, "miles")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(200000, "miles")
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Vance" },
  11087. {
  11088. front: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(120, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/vance/front.svg",
  11094. extra: 1980 / 1890,
  11095. bottom: 0.09
  11096. }
  11097. },
  11098. back: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "lb"),
  11101. name: "Back",
  11102. image: {
  11103. source: "./media/characters/vance/back.svg",
  11104. extra: 2081 / 1994,
  11105. bottom: 0.014
  11106. }
  11107. },
  11108. hand: {
  11109. height: math.unit(0.88, "feet"),
  11110. name: "Hand",
  11111. image: {
  11112. source: "./media/characters/vance/hand.svg"
  11113. }
  11114. },
  11115. foot: {
  11116. height: math.unit(0.64, "feet"),
  11117. name: "Foot",
  11118. image: {
  11119. source: "./media/characters/vance/foot.svg"
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Small",
  11126. height: math.unit(90, "feet"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(100, "meters")
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(15, "miles")
  11136. },
  11137. ]
  11138. ))
  11139. characterMakers.push(() => makeCharacter(
  11140. { name: "Xochitl" },
  11141. {
  11142. front: {
  11143. height: math.unit(6, "feet"),
  11144. weight: math.unit(180, "lb"),
  11145. name: "Front",
  11146. image: {
  11147. source: "./media/characters/xochitl/front.svg",
  11148. extra: 2297 / 2261,
  11149. bottom: 0.065
  11150. }
  11151. },
  11152. back: {
  11153. height: math.unit(6, "feet"),
  11154. weight: math.unit(180, "lb"),
  11155. name: "Back",
  11156. image: {
  11157. source: "./media/characters/xochitl/back.svg",
  11158. extra: 2386 / 2354,
  11159. bottom: 0.01
  11160. }
  11161. },
  11162. foot: {
  11163. height: math.unit(6 / 5 * 1.15, "feet"),
  11164. weight: math.unit(150, "lb"),
  11165. name: "Foot",
  11166. image: {
  11167. source: "./media/characters/xochitl/foot.svg"
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(80, "feet")
  11175. },
  11176. {
  11177. name: "Macro+",
  11178. height: math.unit(400, "feet"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Gigamacro",
  11183. height: math.unit(80000, "miles")
  11184. },
  11185. {
  11186. name: "Gigamacro+",
  11187. height: math.unit(400000, "miles")
  11188. },
  11189. {
  11190. name: "Teramacro",
  11191. height: math.unit(300, "AU")
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Vincent" },
  11197. {
  11198. front: {
  11199. height: math.unit(6, "feet"),
  11200. weight: math.unit(150, "lb"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/vincent/front.svg",
  11204. extra: 1130 / 1080,
  11205. bottom: 0.055
  11206. }
  11207. },
  11208. beak: {
  11209. height: math.unit(6 * 0.1, "feet"),
  11210. name: "Beak",
  11211. image: {
  11212. source: "./media/characters/vincent/beak.svg"
  11213. }
  11214. },
  11215. hand: {
  11216. height: math.unit(6 * 0.85, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Hand",
  11219. image: {
  11220. source: "./media/characters/vincent/hand.svg"
  11221. }
  11222. },
  11223. foot: {
  11224. height: math.unit(6 * 0.19, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Foot",
  11227. image: {
  11228. source: "./media/characters/vincent/foot.svg"
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Base",
  11235. height: math.unit(6 + 5 / 12, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(300, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(2, "miles")
  11245. },
  11246. {
  11247. name: "Gigamacro",
  11248. height: math.unit(1000, "miles")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Jay" },
  11254. {
  11255. front: {
  11256. height: math.unit(6 + 2 / 12, "feet"),
  11257. weight: math.unit(265, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/jay/front.svg",
  11261. extra: 1510 / 1430,
  11262. bottom: 0.042
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6 + 2 / 12, "feet"),
  11267. weight: math.unit(265, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/jay/back.svg",
  11271. extra: 1510 / 1430,
  11272. bottom: 0.025
  11273. }
  11274. },
  11275. clothed: {
  11276. height: math.unit(6 + 2 / 12, "feet"),
  11277. weight: math.unit(265, "lb"),
  11278. name: "Front (Clothed)",
  11279. image: {
  11280. source: "./media/characters/jay/clothed.svg",
  11281. extra: 744 / 699,
  11282. bottom: 0.043
  11283. }
  11284. },
  11285. head: {
  11286. height: math.unit(1.772, "feet"),
  11287. name: "Head",
  11288. image: {
  11289. source: "./media/characters/jay/head.svg"
  11290. }
  11291. },
  11292. sizeRay: {
  11293. height: math.unit(1.331, "feet"),
  11294. name: "Size Ray",
  11295. image: {
  11296. source: "./media/characters/jay/size-ray.svg"
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(1, "inch")
  11304. },
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(6 + 2 / 12, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(1, "mile")
  11313. },
  11314. {
  11315. name: "Megamacro",
  11316. height: math.unit(100, "miles")
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Coatl" },
  11322. {
  11323. front: {
  11324. height: math.unit(2, "meters"),
  11325. weight: math.unit(500, "kg"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/coatl/front.svg",
  11329. extra: 3948 / 3500,
  11330. bottom: 0.082
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(4, "meters")
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(100, "meters"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Macro+",
  11346. height: math.unit(300, "meters")
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(3, "gigameters")
  11351. },
  11352. {
  11353. name: "Megamacro+",
  11354. height: math.unit(300, "terameters")
  11355. },
  11356. {
  11357. name: "Megamacro++",
  11358. height: math.unit(3, "lightyears")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Shiroryu" },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(50, "kg"),
  11368. name: "front",
  11369. image: {
  11370. source: "./media/characters/shiroryu/front.svg",
  11371. extra: 1990 / 1935
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Mortal Mingling",
  11378. height: math.unit(3, "meters")
  11379. },
  11380. {
  11381. name: "Kaiju-ish",
  11382. height: math.unit(250, "meters")
  11383. },
  11384. {
  11385. name: "Somewhat Godly",
  11386. height: math.unit(400, "km"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Planetary",
  11391. height: math.unit(300, "megameters")
  11392. },
  11393. {
  11394. name: "Galaxy-dwarfing",
  11395. height: math.unit(450, "kiloparsecs")
  11396. },
  11397. {
  11398. name: "Universe Eater",
  11399. height: math.unit(150, "gigaparsecs")
  11400. },
  11401. {
  11402. name: "Almost Immeasurable",
  11403. height: math.unit(1.3e266, "yottaparsecs")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Umeko" },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(150, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/umeko/front.svg",
  11416. extra: 1,
  11417. bottom: 0.019
  11418. }
  11419. },
  11420. frontArmored: {
  11421. height: math.unit(6, "feet"),
  11422. weight: math.unit(150, "lb"),
  11423. name: "Front (Armored)",
  11424. image: {
  11425. source: "./media/characters/umeko/front-armored.svg",
  11426. extra: 1,
  11427. bottom: 0.021
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(220, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Guardian Dragon",
  11439. height: math.unit(50, "miles")
  11440. },
  11441. {
  11442. name: "Cosmic",
  11443. height: math.unit(800000, "miles")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Cassidy" },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/cassidy/front.svg",
  11456. extra: 1,
  11457. bottom: 0.043
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Canon Height",
  11464. height: math.unit(120, "feet"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Macro+",
  11469. height: math.unit(400, "feet")
  11470. },
  11471. {
  11472. name: "Macro++",
  11473. height: math.unit(4000, "feet")
  11474. },
  11475. {
  11476. name: "Megamacro",
  11477. height: math.unit(3, "miles")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Isaac" },
  11483. {
  11484. front: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/isaac/front.svg",
  11490. extra: 896 / 815,
  11491. bottom: 0.11
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Human Size",
  11498. height: math.unit(8, "feet"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Macro",
  11503. height: math.unit(400, "feet")
  11504. },
  11505. {
  11506. name: "Megamacro",
  11507. height: math.unit(50, "miles")
  11508. },
  11509. {
  11510. name: "Canon Height",
  11511. height: math.unit(200, "AU")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Sleekit" },
  11517. {
  11518. front: {
  11519. height: math.unit(6, "feet"),
  11520. weight: math.unit(72, "kg"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/sleekit/front.svg",
  11524. extra: 4693 / 4487,
  11525. bottom: 0.012
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Minimum Height",
  11532. height: math.unit(10, "meters")
  11533. },
  11534. {
  11535. name: "Smaller",
  11536. height: math.unit(25, "meters")
  11537. },
  11538. {
  11539. name: "Larger",
  11540. height: math.unit(38, "meters"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Maximum height",
  11545. height: math.unit(100, "meters")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Nillia" },
  11551. {
  11552. front: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(150, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/nillia/front.svg",
  11558. extra: 2195 / 2037,
  11559. bottom: 0.005
  11560. }
  11561. },
  11562. back: {
  11563. height: math.unit(6, "feet"),
  11564. weight: math.unit(150, "lb"),
  11565. name: "Back",
  11566. image: {
  11567. source: "./media/characters/nillia/back.svg",
  11568. extra: 2195 / 2037,
  11569. bottom: 0.005
  11570. }
  11571. },
  11572. },
  11573. [
  11574. {
  11575. name: "Canon Height",
  11576. height: math.unit(489, "feet"),
  11577. default: true
  11578. }
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Mesmyriza" },
  11583. {
  11584. front: {
  11585. height: math.unit(6, "feet"),
  11586. weight: math.unit(150, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/mesmyriza/front.svg",
  11590. extra: 2067 / 1784,
  11591. bottom: 0.035
  11592. }
  11593. },
  11594. foot: {
  11595. height: math.unit(6 / (250 / 35), "feet"),
  11596. name: "Foot",
  11597. image: {
  11598. source: "./media/characters/mesmyriza/foot.svg"
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(457, "meters"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(8, "megameters")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Saudade" },
  11616. {
  11617. front: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(250, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/saudade/front.svg",
  11623. extra: 1172 / 1139,
  11624. bottom: 0.035
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(3, "inches")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(6, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(50, "feet")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(2800, "feet")
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Keireer" },
  11650. {
  11651. front: {
  11652. height: math.unit(5 + 4 / 12, "feet"),
  11653. weight: math.unit(100, "lb"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/keireer/front.svg",
  11657. extra: 716 / 666,
  11658. bottom: 0.05
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Normal",
  11665. height: math.unit(5 + 4 / 12, "feet"),
  11666. default: true
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Mirja" },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(90, "kg"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/mirja/front.svg",
  11679. extra: 1789 / 1683,
  11680. bottom: 0.05
  11681. }
  11682. },
  11683. frontDressed: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(90, "lb"),
  11686. name: "Front (Dressed)",
  11687. image: {
  11688. source: "./media/characters/mirja/front-dressed.svg",
  11689. extra: 1789 / 1683,
  11690. bottom: 0.05
  11691. }
  11692. },
  11693. back: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(90, "lb"),
  11696. name: "Back",
  11697. image: {
  11698. source: "./media/characters/mirja/back.svg",
  11699. extra: 953 / 917,
  11700. bottom: 0.017
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "\"Incognito\"",
  11707. height: math.unit(3, "meters")
  11708. },
  11709. {
  11710. name: "Strolling Size",
  11711. height: math.unit(15, "km")
  11712. },
  11713. {
  11714. name: "Larger Strolling Size",
  11715. height: math.unit(400, "km")
  11716. },
  11717. {
  11718. name: "Preferred Size",
  11719. height: math.unit(5000, "km")
  11720. },
  11721. {
  11722. name: "True Size",
  11723. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11724. default: true
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Nightraver" },
  11730. {
  11731. front: {
  11732. height: math.unit(15, "feet"),
  11733. weight: math.unit(880, "kg"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/nightraver/front.svg",
  11737. extra: 2444 / 2160,
  11738. bottom: 0.027
  11739. }
  11740. },
  11741. back: {
  11742. height: math.unit(15, "feet"),
  11743. weight: math.unit(880, "kg"),
  11744. name: "Back",
  11745. image: {
  11746. source: "./media/characters/nightraver/back.svg",
  11747. extra: 2309 / 2180,
  11748. bottom: 0.005
  11749. }
  11750. },
  11751. sole: {
  11752. height: math.unit(2.878, "feet"),
  11753. name: "Sole",
  11754. image: {
  11755. source: "./media/characters/nightraver/sole.svg"
  11756. }
  11757. },
  11758. foot: {
  11759. height: math.unit(2.285, "feet"),
  11760. name: "Foot",
  11761. image: {
  11762. source: "./media/characters/nightraver/foot.svg"
  11763. }
  11764. },
  11765. maw: {
  11766. height: math.unit(2.67, "feet"),
  11767. name: "Maw",
  11768. image: {
  11769. source: "./media/characters/nightraver/maw.svg"
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Micro",
  11776. height: math.unit(1, "cm")
  11777. },
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(15, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(300, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(300, "miles")
  11790. },
  11791. {
  11792. name: "Gigamacro",
  11793. height: math.unit(10000, "miles")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Arc" },
  11799. {
  11800. side: {
  11801. height: math.unit(2, "inches"),
  11802. weight: math.unit(5, "grams"),
  11803. name: "Side",
  11804. image: {
  11805. source: "./media/characters/arc/side.svg"
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Micro",
  11812. height: math.unit(2, "inches"),
  11813. default: true
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Nebula Shahar" },
  11819. {
  11820. front: {
  11821. height: math.unit(1.1938, "meters"),
  11822. weight: math.unit(54, "kg"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/nebula-shahar/front.svg",
  11826. extra: 1642 / 1436,
  11827. bottom: 0.06
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Megamicro",
  11834. height: math.unit(0.3, "mm")
  11835. },
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(3, "cm")
  11839. },
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(138, "cm"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(30, "m")
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Shayla" },
  11853. {
  11854. front: {
  11855. height: math.unit(5.24, "feet"),
  11856. weight: math.unit(150, "lb"),
  11857. name: "Front",
  11858. image: {
  11859. source: "./media/characters/shayla/front.svg",
  11860. extra: 1512 / 1414,
  11861. bottom: 0.01
  11862. }
  11863. },
  11864. back: {
  11865. height: math.unit(5.24, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Back",
  11868. image: {
  11869. source: "./media/characters/shayla/back.svg",
  11870. extra: 1512 / 1414
  11871. }
  11872. },
  11873. hand: {
  11874. height: math.unit(0.7781496062992126, "feet"),
  11875. name: "Hand",
  11876. image: {
  11877. source: "./media/characters/shayla/hand.svg"
  11878. }
  11879. },
  11880. foot: {
  11881. height: math.unit(1.4206036745406823, "feet"),
  11882. name: "Foot",
  11883. image: {
  11884. source: "./media/characters/shayla/foot.svg"
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(0.32, "feet")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(5.24, "feet"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(492.12, "feet")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(186.41, "miles")
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Pia Jr." },
  11910. {
  11911. front: {
  11912. height: math.unit(2.2, "m"),
  11913. weight: math.unit(120, "kg"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/pia-jr/front.svg",
  11917. extra: 1000 / 970,
  11918. bottom: 0.035
  11919. }
  11920. },
  11921. hand: {
  11922. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11923. name: "Hand",
  11924. image: {
  11925. source: "./media/characters/pia-jr/hand.svg"
  11926. }
  11927. },
  11928. paw: {
  11929. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11930. name: "Paw",
  11931. image: {
  11932. source: "./media/characters/pia-jr/paw.svg"
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Micro",
  11939. height: math.unit(1.2, "cm")
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(2.2, "m"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(180, "m")
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(420, "km")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Pia Sr." },
  11958. {
  11959. front: {
  11960. height: math.unit(2, "m"),
  11961. weight: math.unit(115, "kg"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/pia-sr/front.svg",
  11965. extra: 760 / 730,
  11966. bottom: 0.015
  11967. }
  11968. },
  11969. back: {
  11970. height: math.unit(2, "m"),
  11971. weight: math.unit(115, "kg"),
  11972. name: "Back",
  11973. image: {
  11974. source: "./media/characters/pia-sr/back.svg",
  11975. extra: 760 / 730,
  11976. bottom: 0.01
  11977. }
  11978. },
  11979. hand: {
  11980. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11981. name: "Hand",
  11982. image: {
  11983. source: "./media/characters/pia-sr/hand.svg"
  11984. }
  11985. },
  11986. foot: {
  11987. height: math.unit(1.83, "feet"),
  11988. name: "Foot",
  11989. image: {
  11990. source: "./media/characters/pia-sr/foot.svg"
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Micro",
  11997. height: math.unit(88, "mm")
  11998. },
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(2, "m"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(200, "m")
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(420, "km")
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "KIBIBYTE" },
  12016. {
  12017. front: {
  12018. height: math.unit(8 + 2 / 12, "feet"),
  12019. weight: math.unit(300, "lb"),
  12020. name: "Front",
  12021. image: {
  12022. source: "./media/characters/kibibyte/front.svg",
  12023. extra: 2221 / 2098,
  12024. bottom: 0.04
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(8 + 2 / 12, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Socialable Macro",
  12036. height: math.unit(50, "feet")
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(300, "feet")
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(500, "miles")
  12045. },
  12046. ]
  12047. ))
  12048. characterMakers.push(() => makeCharacter(
  12049. { name: "Felix" },
  12050. {
  12051. front: {
  12052. height: math.unit(6, "feet"),
  12053. weight: math.unit(150, "lb"),
  12054. name: "Front",
  12055. image: {
  12056. source: "./media/characters/felix/front.svg",
  12057. extra: 762 / 722,
  12058. bottom: 0.02
  12059. }
  12060. },
  12061. frontClothed: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(150, "lb"),
  12064. name: "Front (Clothed)",
  12065. image: {
  12066. source: "./media/characters/felix/front-clothed.svg",
  12067. extra: 762 / 722,
  12068. bottom: 0.02
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(6 + 8 / 12, "feet"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(2600, "feet")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(450, "miles")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Tobo" },
  12090. {
  12091. front: {
  12092. height: math.unit(6 + 1 / 12, "feet"),
  12093. weight: math.unit(250, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/tobo/front.svg",
  12097. extra: 608 / 586,
  12098. bottom: 0.023
  12099. }
  12100. },
  12101. back: {
  12102. height: math.unit(6 + 1 / 12, "feet"),
  12103. weight: math.unit(250, "lb"),
  12104. name: "Back",
  12105. image: {
  12106. source: "./media/characters/tobo/back.svg",
  12107. extra: 608 / 586
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Nano",
  12114. height: math.unit(2, "nm")
  12115. },
  12116. {
  12117. name: "Megamicro",
  12118. height: math.unit(0.1, "mm")
  12119. },
  12120. {
  12121. name: "Micro",
  12122. height: math.unit(1, "inch"),
  12123. default: true
  12124. },
  12125. {
  12126. name: "Human-sized",
  12127. height: math.unit(6 + 1 / 12, "feet")
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(250, "feet")
  12132. },
  12133. {
  12134. name: "Megamacro",
  12135. height: math.unit(75, "miles")
  12136. },
  12137. {
  12138. name: "Texas-sized",
  12139. height: math.unit(750, "miles")
  12140. },
  12141. {
  12142. name: "Teramacro",
  12143. height: math.unit(50000, "miles")
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Danny Kapowsky" },
  12149. {
  12150. front: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(269, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/danny-kapowsky/front.svg",
  12156. extra: 766 / 736,
  12157. bottom: 0.044
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(269, "lb"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/danny-kapowsky/back.svg",
  12166. extra: 797 / 760,
  12167. bottom: 0.025
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(150, "feet"),
  12175. default: true
  12176. },
  12177. {
  12178. name: "Macro+",
  12179. height: math.unit(200, "feet")
  12180. },
  12181. {
  12182. name: "Macro++",
  12183. height: math.unit(300, "feet")
  12184. },
  12185. {
  12186. name: "Macro+++",
  12187. height: math.unit(400, "feet")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Finn" },
  12193. {
  12194. side: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(170, "lb"),
  12197. name: "Side",
  12198. image: {
  12199. source: "./media/characters/finn/side.svg",
  12200. extra: 1953 / 1807,
  12201. bottom: 0.057
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Megamacro",
  12208. height: math.unit(14445, "feet"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Roy" },
  12215. {
  12216. front: {
  12217. height: math.unit(5 + 6 / 12, "feet"),
  12218. weight: math.unit(125, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/roy/front.svg",
  12222. extra: 1,
  12223. bottom: 0.11
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(3, "inches"),
  12231. default: true
  12232. },
  12233. {
  12234. name: "Normal",
  12235. height: math.unit(5 + 6 / 12, "feet")
  12236. },
  12237. {
  12238. name: "Lesser Macro",
  12239. height: math.unit(60, "feet")
  12240. },
  12241. {
  12242. name: "Greater Macro",
  12243. height: math.unit(120, "feet")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Aevsivs" },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(100, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/aevsivs/front.svg",
  12256. extra: 1,
  12257. bottom: 0.03
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(100, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/aevsivs/back.svg"
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(2, "inches"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(5, "feet")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Hildegard" },
  12283. {
  12284. front: {
  12285. height: math.unit(5 + 7 / 12, "feet"),
  12286. weight: math.unit(159, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/hildegard/front.svg",
  12290. extra: 312 / 286,
  12291. bottom: 0.005
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(5 + 7 / 12, "feet"),
  12299. default: true
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Bernard & Wilder" },
  12305. {
  12306. bernard: {
  12307. height: math.unit(2 + 7 / 12, "feet"),
  12308. weight: math.unit(66, "lb"),
  12309. name: "Bernard",
  12310. rename: true,
  12311. image: {
  12312. source: "./media/characters/bernard-wilder/bernard.svg",
  12313. extra: 192 / 128,
  12314. bottom: 0.05
  12315. }
  12316. },
  12317. wilder: {
  12318. height: math.unit(5 + 8 / 12, "feet"),
  12319. weight: math.unit(143, "lb"),
  12320. name: "Wilder",
  12321. rename: true,
  12322. image: {
  12323. source: "./media/characters/bernard-wilder/wilder.svg",
  12324. extra: 361 / 312,
  12325. bottom: 0.02
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(2 + 7 / 12, "feet"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Hearth" },
  12339. {
  12340. anthro: {
  12341. height: math.unit(6 + 1 / 12, "feet"),
  12342. weight: math.unit(155, "lb"),
  12343. name: "Anthro",
  12344. image: {
  12345. source: "./media/characters/hearth/anthro.svg",
  12346. extra: 260 / 250,
  12347. bottom: 0.02
  12348. }
  12349. },
  12350. feral: {
  12351. height: math.unit(3.78, "feet"),
  12352. weight: math.unit(35, "kg"),
  12353. name: "Feral",
  12354. image: {
  12355. source: "./media/characters/hearth/feral.svg",
  12356. extra: 153 / 135,
  12357. bottom: 0.03
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(6 + 1 / 12, "feet"),
  12365. default: true
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Ingrid" },
  12371. {
  12372. front: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(182, "lb"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/ingrid/front.svg",
  12378. extra: 294 / 268,
  12379. bottom: 0.027
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(6, "feet"),
  12387. default: true
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Malgam" },
  12393. {
  12394. eevee: {
  12395. height: math.unit(2 + 10 / 12, "feet"),
  12396. weight: math.unit(86, "lb"),
  12397. name: "Malgam",
  12398. image: {
  12399. source: "./media/characters/malgam/eevee.svg",
  12400. extra: 218 / 180,
  12401. bottom: 0.2
  12402. }
  12403. },
  12404. sylveon: {
  12405. height: math.unit(4, "feet"),
  12406. weight: math.unit(101, "lb"),
  12407. name: "Future Malgam",
  12408. rename: true,
  12409. image: {
  12410. source: "./media/characters/malgam/sylveon.svg",
  12411. extra: 371 / 325,
  12412. bottom: 0.015
  12413. }
  12414. },
  12415. gigantamax: {
  12416. height: math.unit(50, "feet"),
  12417. name: "Gigantamax Malgam",
  12418. rename: true,
  12419. image: {
  12420. source: "./media/characters/malgam/gigantamax.svg"
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(2 + 10 / 12, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Fleur" },
  12434. {
  12435. front: {
  12436. height: math.unit(5 + 11 / 12, "feet"),
  12437. weight: math.unit(188, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/fleur/front.svg",
  12441. extra: 309 / 283,
  12442. bottom: 0.007
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(5 + 11 / 12, "feet"),
  12450. default: true
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Jude" },
  12456. {
  12457. front: {
  12458. height: math.unit(5 + 4 / 12, "feet"),
  12459. weight: math.unit(122, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/jude/front.svg",
  12463. extra: 288 / 273,
  12464. bottom: 0.03
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(5 + 4 / 12, "feet"),
  12472. default: true
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Seara" },
  12478. {
  12479. front: {
  12480. height: math.unit(5 + 11 / 12, "feet"),
  12481. weight: math.unit(190, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/seara/front.svg",
  12485. extra: 1,
  12486. bottom: 0.05
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(5 + 11 / 12, "feet"),
  12494. default: true
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Caspian" },
  12500. {
  12501. front: {
  12502. height: math.unit(16 + 5 / 12, "feet"),
  12503. weight: math.unit(524, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/caspian/front.svg",
  12507. extra: 1,
  12508. bottom: 0.04
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(16 + 5 / 12, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Mika" },
  12522. {
  12523. front: {
  12524. height: math.unit(5 + 7 / 12, "feet"),
  12525. weight: math.unit(170, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/mika/front.svg",
  12529. extra: 1,
  12530. bottom: 0.016
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(5 + 7 / 12, "feet"),
  12538. default: true
  12539. },
  12540. ]
  12541. ))
  12542. characterMakers.push(() => makeCharacter(
  12543. { name: "Sol" },
  12544. {
  12545. front: {
  12546. height: math.unit(6 + 2 / 12, "feet"),
  12547. weight: math.unit(268, "lb"),
  12548. name: "Front",
  12549. image: {
  12550. source: "./media/characters/sol/front.svg",
  12551. extra: 247 / 231,
  12552. bottom: 0.05
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Normal",
  12559. height: math.unit(6 + 2 / 12, "feet"),
  12560. default: true
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Umiko" },
  12566. {
  12567. buizel: {
  12568. height: math.unit(2 + 5 / 12, "feet"),
  12569. weight: math.unit(87, "lb"),
  12570. name: "Buizel",
  12571. image: {
  12572. source: "./media/characters/umiko/buizel.svg",
  12573. extra: 172 / 157,
  12574. bottom: 0.01
  12575. }
  12576. },
  12577. floatzel: {
  12578. height: math.unit(5 + 9 / 12, "feet"),
  12579. weight: math.unit(250, "lb"),
  12580. name: "Floatzel",
  12581. image: {
  12582. source: "./media/characters/umiko/floatzel.svg",
  12583. extra: 262 / 248
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(2 + 5 / 12, "feet"),
  12591. default: true
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Iliac" },
  12597. {
  12598. front: {
  12599. height: math.unit(6 + 2 / 12, "feet"),
  12600. weight: math.unit(146, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/iliac/front.svg",
  12604. extra: 389 / 365,
  12605. bottom: 0.035
  12606. }
  12607. },
  12608. },
  12609. [
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(6 + 2 / 12, "feet"),
  12613. default: true
  12614. },
  12615. ]
  12616. ))
  12617. characterMakers.push(() => makeCharacter(
  12618. { name: "Topaz" },
  12619. {
  12620. front: {
  12621. height: math.unit(6, "feet"),
  12622. weight: math.unit(170, "lb"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/topaz/front.svg",
  12626. extra: 317 / 303,
  12627. bottom: 0.055
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(6, "feet"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Gabriel" },
  12641. {
  12642. front: {
  12643. height: math.unit(5 + 11 / 12, "feet"),
  12644. weight: math.unit(144, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/gabriel/front.svg",
  12648. extra: 285 / 262,
  12649. bottom: 0.004
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(5 + 11 / 12, "feet"),
  12657. default: true
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Tempest (Suicune)" },
  12663. {
  12664. side: {
  12665. height: math.unit(6 + 5 / 12, "feet"),
  12666. weight: math.unit(300, "lb"),
  12667. name: "Side",
  12668. image: {
  12669. source: "./media/characters/tempest-suicune/side.svg",
  12670. extra: 195 / 154,
  12671. bottom: 0.04
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(6 + 5 / 12, "feet"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Vulcan" },
  12685. {
  12686. front: {
  12687. height: math.unit(7 + 2 / 12, "feet"),
  12688. weight: math.unit(322, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/vulcan/front.svg",
  12692. extra: 154 / 147,
  12693. bottom: 0.04
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Normal",
  12700. height: math.unit(7 + 2 / 12, "feet"),
  12701. default: true
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Gault" },
  12707. {
  12708. front: {
  12709. height: math.unit(5 + 10 / 12, "feet"),
  12710. weight: math.unit(264, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/gault/front.svg",
  12714. extra: 161 / 140,
  12715. bottom: 0.028
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(5 + 10 / 12, "feet"),
  12723. default: true
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Shard" },
  12729. {
  12730. front: {
  12731. height: math.unit(6, "feet"),
  12732. weight: math.unit(150, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/shard/front.svg",
  12736. extra: 273 / 238,
  12737. bottom: 0.02
  12738. }
  12739. },
  12740. },
  12741. [
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(3 + 6 / 12, "feet"),
  12745. default: true
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Ashe" },
  12751. {
  12752. front: {
  12753. height: math.unit(5 + 11 / 12, "feet"),
  12754. weight: math.unit(146, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/ashe/front.svg",
  12758. extra: 400 / 373,
  12759. bottom: 0.01
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(5 + 11 / 12, "feet"),
  12767. default: true
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Beatrix" },
  12773. {
  12774. front: {
  12775. height: math.unit(5 + 5 / 12, "feet"),
  12776. weight: math.unit(135, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/beatrix/front.svg",
  12780. extra: 392 / 379,
  12781. bottom: 0.01
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Normal",
  12788. height: math.unit(6, "feet"),
  12789. default: true
  12790. },
  12791. ]
  12792. ))
  12793. characterMakers.push(() => makeCharacter(
  12794. { name: "Ignatius" },
  12795. {
  12796. front: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Front",
  12800. image: {
  12801. source: "./media/characters/ignatius/front.svg",
  12802. extra: 245 / 222,
  12803. bottom: 0.01
  12804. }
  12805. },
  12806. },
  12807. [
  12808. {
  12809. name: "Normal",
  12810. height: math.unit(5 + 5 / 12, "feet"),
  12811. default: true
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Mei Li" },
  12817. {
  12818. front: {
  12819. height: math.unit(6 + 2 / 12, "feet"),
  12820. weight: math.unit(138, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/mei-li/front.svg",
  12824. extra: 237 / 229,
  12825. bottom: 0.03
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(6 + 2 / 12, "feet"),
  12833. default: true
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Puru" },
  12839. {
  12840. front: {
  12841. height: math.unit(2 + 4 / 12, "feet"),
  12842. weight: math.unit(62, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/puru/front.svg",
  12846. extra: 206 / 149,
  12847. bottom: 0.06
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(2 + 4 / 12, "feet"),
  12855. default: true
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Kee" },
  12861. {
  12862. taur: {
  12863. height: math.unit(11, "feet"),
  12864. weight: math.unit(500, "lb"),
  12865. name: "Taur",
  12866. image: {
  12867. source: "./media/characters/kee/taur.svg",
  12868. extra: 1,
  12869. bottom: 0.04
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Normal",
  12876. height: math.unit(11, "feet"),
  12877. default: true
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Cobalt (Dracha)" },
  12883. {
  12884. anthro: {
  12885. height: math.unit(7, "feet"),
  12886. weight: math.unit(190, "lb"),
  12887. name: "Anthro",
  12888. image: {
  12889. source: "./media/characters/cobalt-dracha/anthro.svg",
  12890. extra: 231 / 225,
  12891. bottom: 0.04
  12892. }
  12893. },
  12894. feral: {
  12895. height: math.unit(9 + 7 / 12, "feet"),
  12896. weight: math.unit(294, "lb"),
  12897. name: "Feral",
  12898. image: {
  12899. source: "./media/characters/cobalt-dracha/feral.svg",
  12900. extra: 692 / 633,
  12901. bottom: 0.05
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Normal",
  12908. height: math.unit(7, "feet"),
  12909. default: true
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Java" },
  12915. {
  12916. fallen: {
  12917. height: math.unit(11 + 8 / 12, "feet"),
  12918. weight: math.unit(485, "lb"),
  12919. name: "Java (Fallen)",
  12920. rename: true,
  12921. image: {
  12922. source: "./media/characters/java/fallen.svg",
  12923. extra: 226 / 208,
  12924. bottom: 0.005
  12925. }
  12926. },
  12927. godkin: {
  12928. height: math.unit(10 + 6 / 12, "feet"),
  12929. weight: math.unit(328, "lb"),
  12930. name: "Java (Godkin)",
  12931. rename: true,
  12932. image: {
  12933. source: "./media/characters/java/godkin.svg",
  12934. extra: 270 / 262,
  12935. bottom: 0.02
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(11 + 8 / 12, "feet"),
  12943. default: true
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Skoll" },
  12949. {
  12950. front: {
  12951. height: math.unit(7 + 8 / 12, "feet"),
  12952. weight: math.unit(320, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/skoll/front.svg",
  12956. extra: 232 / 220,
  12957. bottom: 0.02
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(7 + 8 / 12, "feet"),
  12965. default: true
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Purna" },
  12971. {
  12972. front: {
  12973. height: math.unit(5 + 9 / 12, "feet"),
  12974. weight: math.unit(170, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/purna/front.svg",
  12978. extra: 239 / 229,
  12979. bottom: 0.01
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(5 + 9 / 12, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Kuva" },
  12993. {
  12994. front: {
  12995. height: math.unit(5 + 9 / 12, "feet"),
  12996. weight: math.unit(142, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/kuva/front.svg",
  13000. extra: 281 / 271,
  13001. bottom: 0.006
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Normal",
  13008. height: math.unit(5 + 9 / 12, "feet"),
  13009. default: true
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Embra" },
  13015. {
  13016. anthro: {
  13017. height: math.unit(9 + 2 / 12, "feet"),
  13018. weight: math.unit(270, "lb"),
  13019. name: "Anthro",
  13020. image: {
  13021. source: "./media/characters/embra/anthro.svg",
  13022. extra: 200 / 187,
  13023. bottom: 0.02
  13024. }
  13025. },
  13026. feral: {
  13027. height: math.unit(18 + 8 / 12, "feet"),
  13028. weight: math.unit(576, "lb"),
  13029. name: "Feral",
  13030. image: {
  13031. source: "./media/characters/embra/feral.svg",
  13032. extra: 152 / 137,
  13033. bottom: 0.037
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(9 + 2 / 12, "feet"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Grottos" },
  13047. {
  13048. anthro: {
  13049. height: math.unit(10 + 9 / 12, "feet"),
  13050. weight: math.unit(224, "lb"),
  13051. name: "Anthro",
  13052. image: {
  13053. source: "./media/characters/grottos/anthro.svg",
  13054. extra: 350 / 332,
  13055. bottom: 0.045
  13056. }
  13057. },
  13058. feral: {
  13059. height: math.unit(20 + 7 / 12, "feet"),
  13060. weight: math.unit(629, "lb"),
  13061. name: "Feral",
  13062. image: {
  13063. source: "./media/characters/grottos/feral.svg",
  13064. extra: 207 / 190,
  13065. bottom: 0.05
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(10 + 9 / 12, "feet"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Frifna" },
  13079. {
  13080. anthro: {
  13081. height: math.unit(9 + 6 / 12, "feet"),
  13082. weight: math.unit(298, "lb"),
  13083. name: "Anthro",
  13084. image: {
  13085. source: "./media/characters/frifna/anthro.svg",
  13086. extra: 282 / 269,
  13087. bottom: 0.015
  13088. }
  13089. },
  13090. feral: {
  13091. height: math.unit(16 + 2 / 12, "feet"),
  13092. weight: math.unit(624, "lb"),
  13093. name: "Feral",
  13094. image: {
  13095. source: "./media/characters/frifna/feral.svg"
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(9 + 6 / 12, "feet"),
  13103. default: true
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Elise" },
  13109. {
  13110. front: {
  13111. height: math.unit(6 + 2 / 12, "feet"),
  13112. weight: math.unit(168, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/elise/front.svg",
  13116. extra: 276 / 271
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(6 + 2 / 12, "feet"),
  13124. default: true
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Glade" },
  13130. {
  13131. front: {
  13132. height: math.unit(5 + 10 / 12, "feet"),
  13133. weight: math.unit(210, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/glade/front.svg",
  13137. extra: 258 / 247,
  13138. bottom: 0.008
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(5 + 10 / 12, "feet"),
  13146. default: true
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Rina" },
  13152. {
  13153. front: {
  13154. height: math.unit(5 + 10 / 12, "feet"),
  13155. weight: math.unit(129, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/rina/front.svg",
  13159. extra: 266 / 255,
  13160. bottom: 0.005
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(5 + 10 / 12, "feet"),
  13168. default: true
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Veronica" },
  13174. {
  13175. front: {
  13176. height: math.unit(6 + 1 / 12, "feet"),
  13177. weight: math.unit(192, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/veronica/front.svg",
  13181. extra: 319 / 309,
  13182. bottom: 0.005
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(6 + 1 / 12, "feet"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Braxton" },
  13196. {
  13197. front: {
  13198. height: math.unit(9 + 3 / 12, "feet"),
  13199. weight: math.unit(1100, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/braxton/front.svg",
  13203. extra: 1057 / 984,
  13204. bottom: 0.05
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(9 + 3 / 12, "feet")
  13212. },
  13213. {
  13214. name: "Giant",
  13215. height: math.unit(300, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Macro",
  13220. height: math.unit(700, "feet")
  13221. },
  13222. {
  13223. name: "Megamacro",
  13224. height: math.unit(6000, "feet")
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Blue Feyonics" },
  13230. {
  13231. front: {
  13232. height: math.unit(6 + 7 / 12, "feet"),
  13233. weight: math.unit(150, "lb"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/blue-feyonics/front.svg",
  13237. extra: 1403 / 1306,
  13238. bottom: 0.047
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Normal",
  13245. height: math.unit(6 + 7 / 12, "feet"),
  13246. default: true
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Maxwell" },
  13252. {
  13253. front: {
  13254. height: math.unit(1.8, "meters"),
  13255. weight: math.unit(60, "kg"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/maxwell/front.svg",
  13259. extra: 2060 / 1873
  13260. }
  13261. },
  13262. },
  13263. [
  13264. {
  13265. name: "Micro",
  13266. height: math.unit(1, "mm")
  13267. },
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(1.8, "meter"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(30, "meters")
  13276. },
  13277. {
  13278. name: "Megamacro",
  13279. height: math.unit(10, "km")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Jack" },
  13285. {
  13286. front: {
  13287. height: math.unit(6, "feet"),
  13288. weight: math.unit(150, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/jack/front.svg",
  13292. extra: 1754 / 1640,
  13293. bottom: 0.01
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(80000, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Max size",
  13305. height: math.unit(10, "lightyears")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Cafat" },
  13311. {
  13312. upright: {
  13313. height: math.unit(7, "feet"),
  13314. weight: math.unit(170, "lb"),
  13315. name: "Upright",
  13316. image: {
  13317. source: "./media/characters/cafat/upright.svg",
  13318. bottom: 0.01
  13319. }
  13320. },
  13321. uprightFull: {
  13322. height: math.unit(7, "feet"),
  13323. weight: math.unit(170, "lb"),
  13324. name: "Upright (Full)",
  13325. image: {
  13326. source: "./media/characters/cafat/upright-full.svg",
  13327. bottom: 0.01
  13328. }
  13329. },
  13330. side: {
  13331. height: math.unit(5, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Side",
  13334. image: {
  13335. source: "./media/characters/cafat/side.svg"
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Small",
  13342. height: math.unit(7, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Large",
  13347. height: math.unit(15.5, "feet")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Verin Raharra" },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(150, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/verin-raharra/front.svg",
  13360. extra: 5019 / 4835,
  13361. bottom: 0.023
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(7 + 5 / 12, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Upsized",
  13373. height: math.unit(20, "feet")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Nakata" },
  13379. {
  13380. front: {
  13381. height: math.unit(7, "feet"),
  13382. weight: math.unit(230, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/nakata/front.svg",
  13386. extra: 1.005,
  13387. bottom: 0.01
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(7, "feet"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Big",
  13399. height: math.unit(14, "feet")
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(400, "feet")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Lily" },
  13409. {
  13410. front: {
  13411. height: math.unit(4.91, "feet"),
  13412. weight: math.unit(100, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/lily/front.svg",
  13416. extra: 1585 / 1415,
  13417. bottom: 0.02
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(4.91, "feet"),
  13425. default: true
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Sheila" },
  13431. {
  13432. laying: {
  13433. height: math.unit(4 + 4 / 12, "feet"),
  13434. weight: math.unit(600, "lb"),
  13435. name: "Laying",
  13436. image: {
  13437. source: "./media/characters/sheila/laying.svg",
  13438. extra: 1333 / 1265,
  13439. bottom: 0.16
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(4 + 4 / 12, "feet"),
  13447. default: true
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Sax" },
  13453. {
  13454. front: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(190, "lb"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/sax/front.svg",
  13460. extra: 1187 / 973,
  13461. bottom: 0.042
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Micro",
  13468. height: math.unit(4, "inches"),
  13469. default: true
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Pandora" },
  13475. {
  13476. front: {
  13477. height: math.unit(6, "feet"),
  13478. weight: math.unit(150, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/pandora/front.svg",
  13482. extra: 2720 / 2556,
  13483. bottom: 0.015
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/pandora/back.svg",
  13492. extra: 2720 / 2556,
  13493. bottom: 0.01
  13494. }
  13495. },
  13496. beans: {
  13497. height: math.unit(6 / 8, "feet"),
  13498. name: "Beans",
  13499. image: {
  13500. source: "./media/characters/pandora/beans.svg"
  13501. }
  13502. },
  13503. skirt: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Skirt",
  13507. image: {
  13508. source: "./media/characters/pandora/skirt.svg",
  13509. extra: 1622 / 1525,
  13510. bottom: 0.015
  13511. }
  13512. },
  13513. hoodie: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Hoodie",
  13517. image: {
  13518. source: "./media/characters/pandora/hoodie.svg",
  13519. extra: 1622 / 1525,
  13520. bottom: 0.015
  13521. }
  13522. },
  13523. casual: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Casual",
  13527. image: {
  13528. source: "./media/characters/pandora/casual.svg",
  13529. extra: 1622 / 1525,
  13530. bottom: 0.015
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(6, "feet")
  13538. },
  13539. {
  13540. name: "Big Steppy",
  13541. height: math.unit(1, "km"),
  13542. default: true
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Venio Darcony" },
  13548. {
  13549. side: {
  13550. height: math.unit(10, "feet"),
  13551. weight: math.unit(800, "kg"),
  13552. name: "Side",
  13553. image: {
  13554. source: "./media/characters/venio-darcony/side.svg",
  13555. extra: 1373 / 1003,
  13556. bottom: 0.037
  13557. }
  13558. },
  13559. front: {
  13560. height: math.unit(19, "feet"),
  13561. weight: math.unit(800, "kg"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/venio-darcony/front.svg"
  13565. }
  13566. },
  13567. back: {
  13568. height: math.unit(19, "feet"),
  13569. weight: math.unit(800, "kg"),
  13570. name: "Back",
  13571. image: {
  13572. source: "./media/characters/venio-darcony/back.svg"
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(10, "feet")
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(130, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Macro+",
  13588. height: math.unit(240, "feet")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Veski" },
  13594. {
  13595. front: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(150, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/veski/front.svg",
  13601. extra: 1299 / 1225,
  13602. bottom: 0.04
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6, "feet"),
  13607. weight: math.unit(150, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/veski/back.svg",
  13611. extra: 1299 / 1225,
  13612. bottom: 0.008
  13613. }
  13614. },
  13615. maw: {
  13616. height: math.unit(1.5 * 1.21, "feet"),
  13617. name: "Maw",
  13618. image: {
  13619. source: "./media/characters/veski/maw.svg"
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Macro",
  13626. height: math.unit(2, "km"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Isabelle" },
  13633. {
  13634. front: {
  13635. height: math.unit(5 + 7 / 12, "feet"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/isabelle/front.svg",
  13639. extra: 2130 / 1976,
  13640. bottom: 0.05
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Supermicro",
  13647. height: math.unit(10, "micrometers")
  13648. },
  13649. {
  13650. name: "Micro",
  13651. height: math.unit(1, "inch")
  13652. },
  13653. {
  13654. name: "Tiny",
  13655. height: math.unit(5, "inches")
  13656. },
  13657. {
  13658. name: "Standard",
  13659. height: math.unit(5 + 7 / 12, "inches")
  13660. },
  13661. {
  13662. name: "Macro",
  13663. height: math.unit(80, "meters"),
  13664. default: true
  13665. },
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(250, "meters")
  13669. },
  13670. {
  13671. name: "Gigamacro",
  13672. height: math.unit(5, "km")
  13673. },
  13674. {
  13675. name: "Cosmic",
  13676. height: math.unit(2.5e6, "miles")
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Hanzo" },
  13682. {
  13683. front: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/hanzo/front.svg",
  13689. extra: 374 / 344,
  13690. bottom: 0.02
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(8, "feet"),
  13698. default: true
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Anna" },
  13704. {
  13705. front: {
  13706. height: math.unit(7, "feet"),
  13707. weight: math.unit(130, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/anna/front.svg",
  13711. extra: 169 / 145,
  13712. bottom: 0.06
  13713. }
  13714. },
  13715. full: {
  13716. height: math.unit(4.96, "feet"),
  13717. weight: math.unit(220, "lb"),
  13718. name: "Full",
  13719. image: {
  13720. source: "./media/characters/anna/full.svg",
  13721. extra: 138 / 114,
  13722. bottom: 0.15
  13723. }
  13724. },
  13725. tongue: {
  13726. height: math.unit(2.53, "feet"),
  13727. name: "Tongue",
  13728. image: {
  13729. source: "./media/characters/anna/tongue.svg"
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(7, "feet"),
  13737. default: true
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Ian Corvid" },
  13743. {
  13744. front: {
  13745. height: math.unit(7, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/ian-corvid/front.svg",
  13750. extra: 150 / 142,
  13751. bottom: 0.02
  13752. }
  13753. },
  13754. back: {
  13755. height: math.unit(7, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Back",
  13758. image: {
  13759. source: "./media/characters/ian-corvid/back.svg",
  13760. extra: 150 / 143,
  13761. bottom: 0.01
  13762. }
  13763. },
  13764. stomping: {
  13765. height: math.unit(7, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Stomping",
  13768. image: {
  13769. source: "./media/characters/ian-corvid/stomping.svg",
  13770. extra: 76 / 72
  13771. }
  13772. },
  13773. sitting: {
  13774. height: math.unit(7 / 1.8, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Sitting",
  13777. image: {
  13778. source: "./media/characters/ian-corvid/sitting.svg",
  13779. extra: 1400 / 1269,
  13780. bottom: 0.15
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Tiny Microw",
  13787. height: math.unit(1, "inch")
  13788. },
  13789. {
  13790. name: "Microw",
  13791. height: math.unit(6, "inches")
  13792. },
  13793. {
  13794. name: "Crow",
  13795. height: math.unit(7 + 1 / 12, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Macrow",
  13800. height: math.unit(176, "feet")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Natalie Kellon" },
  13806. {
  13807. front: {
  13808. height: math.unit(5 + 7 / 12, "feet"),
  13809. weight: math.unit(147, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/natalie-kellon/front.svg",
  13813. extra: 1214 / 1141,
  13814. bottom: 0.02
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Micro",
  13821. height: math.unit(1 / 16, "inch")
  13822. },
  13823. {
  13824. name: "Tiny",
  13825. height: math.unit(4, "inches")
  13826. },
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(5 + 7 / 12, "feet"),
  13830. default: true
  13831. },
  13832. {
  13833. name: "Amazon",
  13834. height: math.unit(12, "feet")
  13835. },
  13836. {
  13837. name: "Giantess",
  13838. height: math.unit(160, "meters")
  13839. },
  13840. {
  13841. name: "Titaness",
  13842. height: math.unit(800, "meters")
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Alluria" },
  13848. {
  13849. front: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/alluria/front.svg",
  13855. extra: 806 / 738,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. side: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Side",
  13863. image: {
  13864. source: "./media/characters/alluria/side.svg",
  13865. extra: 800 / 750,
  13866. }
  13867. },
  13868. back: {
  13869. height: math.unit(6, "feet"),
  13870. weight: math.unit(150, "lb"),
  13871. name: "Back",
  13872. image: {
  13873. source: "./media/characters/alluria/back.svg",
  13874. extra: 806 / 738,
  13875. }
  13876. },
  13877. frontMaid: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Front (Maid)",
  13881. image: {
  13882. source: "./media/characters/alluria/front-maid.svg",
  13883. extra: 806 / 738,
  13884. bottom: 0.01
  13885. }
  13886. },
  13887. sideMaid: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(150, "lb"),
  13890. name: "Side (Maid)",
  13891. image: {
  13892. source: "./media/characters/alluria/side-maid.svg",
  13893. extra: 800 / 750,
  13894. bottom: 0.005
  13895. }
  13896. },
  13897. backMaid: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Back (Maid)",
  13901. image: {
  13902. source: "./media/characters/alluria/back-maid.svg",
  13903. extra: 806 / 738,
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Micro",
  13910. height: math.unit(6, "inches"),
  13911. default: true
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Kyle" },
  13917. {
  13918. front: {
  13919. height: math.unit(6, "feet"),
  13920. weight: math.unit(150, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/kyle/front.svg",
  13924. extra: 1069 / 962,
  13925. bottom: 77.228 / 1727.45
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(150, "feet"),
  13933. default: true
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Duncan" },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(300, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/duncan/front.svg",
  13946. extra: 1650 / 1482,
  13947. bottom: 0.05
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Macro",
  13954. height: math.unit(100, "feet"),
  13955. default: true
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Memory" },
  13961. {
  13962. front: {
  13963. height: math.unit(5 + 4 / 12, "feet"),
  13964. weight: math.unit(220, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/memory/front.svg",
  13968. extra: 3641 / 3545,
  13969. bottom: 0.03
  13970. }
  13971. },
  13972. back: {
  13973. height: math.unit(5 + 4 / 12, "feet"),
  13974. weight: math.unit(220, "lb"),
  13975. name: "Back",
  13976. image: {
  13977. source: "./media/characters/memory/back.svg",
  13978. extra: 3641 / 3545,
  13979. bottom: 0.025
  13980. }
  13981. },
  13982. frontSkirt: {
  13983. height: math.unit(5 + 4 / 12, "feet"),
  13984. weight: math.unit(220, "lb"),
  13985. name: "Front (Skirt)",
  13986. image: {
  13987. source: "./media/characters/memory/front-skirt.svg",
  13988. extra: 3641 / 3545,
  13989. bottom: 0.03
  13990. }
  13991. },
  13992. frontDress: {
  13993. height: math.unit(5 + 4 / 12, "feet"),
  13994. weight: math.unit(220, "lb"),
  13995. name: "Front (Dress)",
  13996. image: {
  13997. source: "./media/characters/memory/front-dress.svg",
  13998. extra: 3641 / 3545,
  13999. bottom: 0.03
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Micro",
  14006. height: math.unit(6, "inches"),
  14007. default: true
  14008. },
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(5 + 4 / 12, "feet")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Luno" },
  14017. {
  14018. front: {
  14019. height: math.unit(4 + 11 / 12, "feet"),
  14020. weight: math.unit(100, "lb"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/luno/front.svg",
  14024. extra: 1535 / 1487,
  14025. bottom: 0.03
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Micro",
  14032. height: math.unit(3, "inches")
  14033. },
  14034. {
  14035. name: "Normal",
  14036. height: math.unit(4 + 11 / 12, "feet"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Macro",
  14041. height: math.unit(300, "feet")
  14042. },
  14043. {
  14044. name: "Megamacro",
  14045. height: math.unit(700, "miles")
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Jamesy" },
  14051. {
  14052. front: {
  14053. height: math.unit(6 + 2 / 12, "feet"),
  14054. weight: math.unit(170, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/jamesy/front.svg",
  14058. extra: 440 / 382,
  14059. bottom: 0.005
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Micro",
  14066. height: math.unit(3, "inches")
  14067. },
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(6 + 2 / 12, "feet"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(300, "feet")
  14076. },
  14077. {
  14078. name: "Megamacro",
  14079. height: math.unit(700, "miles")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Mark" },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(160, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/mark/front.svg",
  14092. extra: 3300 / 3100,
  14093. bottom: 136.42 / 3440.47
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(120, "meters")
  14101. },
  14102. {
  14103. name: "Bigger Macro",
  14104. height: math.unit(350, "meters")
  14105. },
  14106. {
  14107. name: "Megamacro",
  14108. height: math.unit(8, "km"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Continental",
  14113. height: math.unit(4550, "km")
  14114. },
  14115. {
  14116. name: "Planetary",
  14117. height: math.unit(65000, "km")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Mac" },
  14123. {
  14124. front: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(400, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/mac/front.svg",
  14130. extra: 1048 / 987.7,
  14131. bottom: 60 / 1107.6,
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Macro",
  14138. height: math.unit(500, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Bari" },
  14145. {
  14146. front: {
  14147. height: math.unit(5 + 2 / 12, "feet"),
  14148. weight: math.unit(190, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/bari/front.svg",
  14152. extra: 3156 / 2880,
  14153. bottom: 0.03
  14154. }
  14155. },
  14156. back: {
  14157. height: math.unit(5 + 2 / 12, "feet"),
  14158. weight: math.unit(190, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/bari/back.svg",
  14162. extra: 3260 / 2834,
  14163. bottom: 0.025
  14164. }
  14165. },
  14166. frontPlush: {
  14167. height: math.unit(5 + 2 / 12, "feet"),
  14168. weight: math.unit(190, "lb"),
  14169. name: "Front (Plush)",
  14170. image: {
  14171. source: "./media/characters/bari/front-plush.svg",
  14172. extra: 1112 / 1061,
  14173. bottom: 0.002
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Micro",
  14180. height: math.unit(3, "inches")
  14181. },
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(5 + 2 / 12, "feet"),
  14185. default: true
  14186. },
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(20, "feet")
  14190. },
  14191. ]
  14192. ))
  14193. characterMakers.push(() => makeCharacter(
  14194. { name: "Hunter Misha Raven" },
  14195. {
  14196. front: {
  14197. height: math.unit(6 + 1 / 12, "feet"),
  14198. weight: math.unit(275, "lb"),
  14199. name: "Front",
  14200. image: {
  14201. source: "./media/characters/hunter-misha-raven/front.svg"
  14202. }
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Mortal",
  14208. height: math.unit(6 + 1 / 12, "feet")
  14209. },
  14210. {
  14211. name: "Divine",
  14212. height: math.unit(1.12134e34, "parsecs"),
  14213. default: true
  14214. },
  14215. ]
  14216. ))
  14217. characterMakers.push(() => makeCharacter(
  14218. { name: "Max Calore" },
  14219. {
  14220. front: {
  14221. height: math.unit(6 + 3 / 12, "feet"),
  14222. weight: math.unit(220, "lb"),
  14223. name: "Front",
  14224. image: {
  14225. source: "./media/characters/max-calore/front.svg",
  14226. extra: 1700 / 1648,
  14227. bottom: 0.01
  14228. }
  14229. },
  14230. back: {
  14231. height: math.unit(6 + 3 / 12, "feet"),
  14232. weight: math.unit(220, "lb"),
  14233. name: "Back",
  14234. image: {
  14235. source: "./media/characters/max-calore/back.svg",
  14236. extra: 1700 / 1648,
  14237. bottom: 0.01
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(6 + 3 / 12, "feet"),
  14245. default: true
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Aspen" },
  14251. {
  14252. side: {
  14253. height: math.unit(2 + 8 / 12, "feet"),
  14254. weight: math.unit(99, "lb"),
  14255. name: "Side",
  14256. image: {
  14257. source: "./media/characters/aspen/side.svg",
  14258. extra: 152 / 138,
  14259. bottom: 0.032
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(2 + 8 / 12, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Sheila (Feral Wolf)" },
  14273. {
  14274. side: {
  14275. height: math.unit(3 + 2 / 12, "feet"),
  14276. weight: math.unit(224, "lb"),
  14277. name: "Side",
  14278. image: {
  14279. source: "./media/characters/sheila-feral-wolf/side.svg",
  14280. extra: 179 / 166,
  14281. bottom: 0.03
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(3 + 2 / 12, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Michelle" },
  14295. {
  14296. side: {
  14297. height: math.unit(1 + 9 / 12, "feet"),
  14298. weight: math.unit(38, "lb"),
  14299. name: "Side",
  14300. image: {
  14301. source: "./media/characters/michelle/side.svg",
  14302. extra: 147 / 136.7,
  14303. bottom: 0.03
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(1 + 9 / 12, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Nino" },
  14317. {
  14318. front: {
  14319. height: math.unit(1 + 1 / 12, "feet"),
  14320. weight: math.unit(18, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/nino/front.svg"
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(1 + 1 / 12, "feet"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Viola" },
  14337. {
  14338. front: {
  14339. height: math.unit(1, "feet"),
  14340. weight: math.unit(16, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/viola/front.svg"
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(1, "feet"),
  14351. default: true
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Atlas" },
  14357. {
  14358. front: {
  14359. height: math.unit(6 + 5 / 12, "feet"),
  14360. weight: math.unit(580, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/atlas/front.svg",
  14364. extra: 298.5 / 290,
  14365. bottom: 0.015
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(6 + 5 / 12, "feet"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Davy" },
  14379. {
  14380. side: {
  14381. height: math.unit(1 + 10 / 12, "feet"),
  14382. weight: math.unit(25, "lb"),
  14383. name: "Side",
  14384. image: {
  14385. source: "./media/characters/davy/side.svg",
  14386. extra: 200 / 170,
  14387. bottom: 0.01
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(1 + 10 / 12, "feet"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Fiona" },
  14401. {
  14402. side: {
  14403. height: math.unit(4 + 8 / 12, "feet"),
  14404. weight: math.unit(166, "lb"),
  14405. name: "Side",
  14406. image: {
  14407. source: "./media/characters/fiona/side.svg",
  14408. extra: 232 / 220,
  14409. bottom: 0.03
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(4 + 8 / 12, "feet"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Lyla" },
  14423. {
  14424. front: {
  14425. height: math.unit(2, "feet"),
  14426. weight: math.unit(62, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/lyla/front.svg",
  14430. bottom: 0.1
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(2, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Perseus" },
  14444. {
  14445. side: {
  14446. height: math.unit(1.8, "feet"),
  14447. weight: math.unit(44, "lb"),
  14448. name: "Side",
  14449. image: {
  14450. source: "./media/characters/perseus/side.svg",
  14451. bottom: 0.21
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(1.8, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Remus" },
  14465. {
  14466. side: {
  14467. height: math.unit(4 + 2 / 12, "feet"),
  14468. weight: math.unit(20, "lb"),
  14469. name: "Side",
  14470. image: {
  14471. source: "./media/characters/remus/side.svg"
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(4 + 2 / 12, "feet"),
  14479. default: true
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Raf" },
  14485. {
  14486. front: {
  14487. height: math.unit(4 + 11 / 12, "feet"),
  14488. weight: math.unit(114, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/raf/front.svg",
  14492. bottom: 0.01
  14493. }
  14494. },
  14495. side: {
  14496. height: math.unit(4 + 11 / 12, "feet"),
  14497. weight: math.unit(114, "lb"),
  14498. name: "Side",
  14499. image: {
  14500. source: "./media/characters/raf/side.svg",
  14501. bottom: 0.005
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Micro",
  14508. height: math.unit(2, "inches")
  14509. },
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(4 + 11 / 12, "feet"),
  14513. default: true
  14514. },
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(70, "feet")
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Liam Einarr" },
  14523. {
  14524. front: {
  14525. height: math.unit(1.5, "meters"),
  14526. weight: math.unit(68, "kg"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/liam-einarr/front.svg",
  14530. extra: 2822 / 2666
  14531. }
  14532. },
  14533. back: {
  14534. height: math.unit(1.5, "meters"),
  14535. weight: math.unit(68, "kg"),
  14536. name: "Back",
  14537. image: {
  14538. source: "./media/characters/liam-einarr/back.svg",
  14539. extra: 2822 / 2666,
  14540. bottom: 0.015
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(1.5, "meters"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(150, "meters")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(35, "km")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Linda" },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(75, "kg"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/linda/front.svg",
  14569. extra: 930 / 874,
  14570. bottom: 0.004
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(6, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Caylex" },
  14584. {
  14585. front: {
  14586. height: math.unit(6 + 8 / 12, "feet"),
  14587. weight: math.unit(220, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/caylex/front.svg",
  14591. extra: 821 / 772,
  14592. bottom: 0.07
  14593. }
  14594. },
  14595. back: {
  14596. height: math.unit(6 + 8 / 12, "feet"),
  14597. weight: math.unit(220, "lb"),
  14598. name: "Back",
  14599. image: {
  14600. source: "./media/characters/caylex/back.svg",
  14601. extra: 821 / 772,
  14602. bottom: 0.022
  14603. }
  14604. },
  14605. hand: {
  14606. height: math.unit(1.25, "feet"),
  14607. name: "Hand",
  14608. image: {
  14609. source: "./media/characters/caylex/hand.svg"
  14610. }
  14611. },
  14612. foot: {
  14613. height: math.unit(1.6, "feet"),
  14614. name: "Foot",
  14615. image: {
  14616. source: "./media/characters/caylex/foot.svg"
  14617. }
  14618. },
  14619. armored: {
  14620. height: math.unit(6 + 8 / 12, "feet"),
  14621. weight: math.unit(250, "lb"),
  14622. name: "Armored",
  14623. image: {
  14624. source: "./media/characters/caylex/armored.svg",
  14625. extra: 1420 / 1310,
  14626. bottom: 0.045
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(6 + 8 / 12, "feet"),
  14634. default: true
  14635. },
  14636. {
  14637. name: "Normal+",
  14638. height: math.unit(12, "feet")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Alana" },
  14644. {
  14645. front: {
  14646. height: math.unit(7 + 6 / 12, "feet"),
  14647. weight: math.unit(288, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/alana/front.svg",
  14651. extra: 679 / 653,
  14652. bottom: 22.5 / 701
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(7 + 6 / 12, "feet")
  14660. },
  14661. {
  14662. name: "Large",
  14663. height: math.unit(50, "feet")
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(100, "feet"),
  14668. default: true
  14669. },
  14670. {
  14671. name: "Macro+",
  14672. height: math.unit(200, "feet")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Hasani" },
  14678. {
  14679. front: {
  14680. height: math.unit(6 + 1 / 12, "feet"),
  14681. weight: math.unit(210, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/hasani/front.svg",
  14685. extra: 244 / 232,
  14686. bottom: 0.01
  14687. }
  14688. },
  14689. back: {
  14690. height: math.unit(6 + 1 / 12, "feet"),
  14691. weight: math.unit(210, "lb"),
  14692. name: "Back",
  14693. image: {
  14694. source: "./media/characters/hasani/back.svg",
  14695. extra: 244 / 232,
  14696. bottom: 0.01
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(6 + 1 / 12, "feet")
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(175, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Nita" },
  14714. {
  14715. front: {
  14716. height: math.unit(1.82, "meters"),
  14717. weight: math.unit(140, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/nita/front.svg",
  14721. extra: 2473 / 2363,
  14722. bottom: 0.01
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(1.82, "m")
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(300, "m")
  14734. },
  14735. {
  14736. name: "Mistake Canon",
  14737. height: math.unit(0.5, "miles"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Big Mistake",
  14742. height: math.unit(13, "miles")
  14743. },
  14744. {
  14745. name: "Playing God",
  14746. height: math.unit(2450, "miles")
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Shiriko" },
  14752. {
  14753. front: {
  14754. height: math.unit(4, "feet"),
  14755. weight: math.unit(120, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/shiriko/front.svg",
  14759. extra: 195 / 188
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(4, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Deja" },
  14773. {
  14774. front: {
  14775. height: math.unit(6, "feet"),
  14776. name: "front",
  14777. image: {
  14778. source: "./media/characters/deja/front.svg",
  14779. extra: 926 / 840,
  14780. bottom: 0.07
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Planck Length",
  14787. height: math.unit(1.6e-35, "meters")
  14788. },
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(30.48, "meters"),
  14792. default: true
  14793. },
  14794. {
  14795. name: "Universal",
  14796. height: math.unit(8.8e26, "meters")
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Anima" },
  14802. {
  14803. side: {
  14804. height: math.unit(8, "feet"),
  14805. weight: math.unit(6300, "lb"),
  14806. name: "Side",
  14807. image: {
  14808. source: "./media/characters/anima/side.svg",
  14809. bottom: 0.035
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(8, "feet"),
  14817. default: true
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Bianca" },
  14823. {
  14824. front: {
  14825. height: math.unit(8, "feet"),
  14826. weight: math.unit(350, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/bianca/front.svg",
  14830. extra: 234 / 225,
  14831. bottom: 0.03
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(8, "feet"),
  14839. default: true
  14840. },
  14841. ]
  14842. ))
  14843. characterMakers.push(() => makeCharacter(
  14844. { name: "Adinia" },
  14845. {
  14846. front: {
  14847. height: math.unit(6, "feet"),
  14848. weight: math.unit(150, "lb"),
  14849. name: "Front",
  14850. image: {
  14851. source: "./media/characters/adinia/front.svg",
  14852. extra: 1845 / 1672,
  14853. bottom: 0.02
  14854. }
  14855. },
  14856. back: {
  14857. height: math.unit(6, "feet"),
  14858. weight: math.unit(150, "lb"),
  14859. name: "Back",
  14860. image: {
  14861. source: "./media/characters/adinia/back.svg",
  14862. extra: 1845 / 1672,
  14863. bottom: 0.002
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(11 + 5 / 12, "feet"),
  14871. default: true
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Lykasa" },
  14877. {
  14878. front: {
  14879. height: math.unit(3, "meters"),
  14880. weight: math.unit(200, "kg"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/lykasa/front.svg",
  14884. extra: 1076 / 976,
  14885. bottom: 0.06
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(3, "meters")
  14893. },
  14894. {
  14895. name: "Kaiju",
  14896. height: math.unit(120, "meters"),
  14897. default: true
  14898. },
  14899. {
  14900. name: "Mega Kaiju",
  14901. height: math.unit(240, "km")
  14902. },
  14903. {
  14904. name: "Giga Kaiju",
  14905. height: math.unit(400, "megameters")
  14906. },
  14907. {
  14908. name: "Tera Kaiju",
  14909. height: math.unit(800, "gigameters")
  14910. },
  14911. {
  14912. name: "Kaiju Dragon Goddess",
  14913. height: math.unit(26, "zettaparsecs")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Malfaren" },
  14919. {
  14920. side: {
  14921. height: math.unit(283 / 124 * 6, "feet"),
  14922. weight: math.unit(35000, "lb"),
  14923. name: "Side",
  14924. image: {
  14925. source: "./media/characters/malfaren/side.svg",
  14926. extra: 2500 / 1010,
  14927. bottom: 0.01
  14928. }
  14929. },
  14930. front: {
  14931. height: math.unit(22.36, "feet"),
  14932. weight: math.unit(35000, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/malfaren/front.svg",
  14936. extra: 1631 / 1476,
  14937. bottom: 0.01
  14938. }
  14939. },
  14940. maw: {
  14941. height: math.unit(6.9, "feet"),
  14942. name: "Maw",
  14943. image: {
  14944. source: "./media/characters/malfaren/maw.svg"
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Big",
  14951. height: math.unit(283 / 162 * 6, "feet"),
  14952. },
  14953. {
  14954. name: "Bigger",
  14955. height: math.unit(283 / 124 * 6, "feet")
  14956. },
  14957. {
  14958. name: "Massive",
  14959. height: math.unit(283 / 92 * 6, "feet"),
  14960. default: true
  14961. },
  14962. {
  14963. name: "👀💦",
  14964. height: math.unit(283 / 73 * 6, "feet"),
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Kernel" },
  14970. {
  14971. front: {
  14972. height: math.unit(1.7, "m"),
  14973. weight: math.unit(70, "kg"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/kernel/front.svg",
  14977. extra: 222 / 210,
  14978. bottom: 0.007
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Nano",
  14985. height: math.unit(17, "micrometers")
  14986. },
  14987. {
  14988. name: "Micro",
  14989. height: math.unit(1.7, "mm")
  14990. },
  14991. {
  14992. name: "Small",
  14993. height: math.unit(1.7, "cm")
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(1.7, "m"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Jayne Folest" },
  15004. {
  15005. front: {
  15006. height: math.unit(1.75, "meters"),
  15007. weight: math.unit(65, "kg"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/jayne-folest/front.svg",
  15011. extra: 2115 / 2007,
  15012. bottom: 0.02
  15013. }
  15014. },
  15015. back: {
  15016. height: math.unit(1.75, "meters"),
  15017. weight: math.unit(65, "kg"),
  15018. name: "Back",
  15019. image: {
  15020. source: "./media/characters/jayne-folest/back.svg",
  15021. extra: 2115 / 2007,
  15022. bottom: 0.005
  15023. }
  15024. },
  15025. frontClothed: {
  15026. height: math.unit(1.75, "meters"),
  15027. weight: math.unit(65, "kg"),
  15028. name: "Front (Clothed)",
  15029. image: {
  15030. source: "./media/characters/jayne-folest/front-clothed.svg",
  15031. extra: 2115 / 2007,
  15032. bottom: 0.035
  15033. }
  15034. },
  15035. hand: {
  15036. height: math.unit(1 / 1.260, "feet"),
  15037. name: "Hand",
  15038. image: {
  15039. source: "./media/characters/jayne-folest/hand.svg"
  15040. }
  15041. },
  15042. foot: {
  15043. height: math.unit(1 / 0.918, "feet"),
  15044. name: "Foot",
  15045. image: {
  15046. source: "./media/characters/jayne-folest/foot.svg"
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Micro",
  15053. height: math.unit(4, "cm")
  15054. },
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(1.75, "meters")
  15058. },
  15059. {
  15060. name: "Macro",
  15061. height: math.unit(47.5, "meters"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Algier" },
  15068. {
  15069. front: {
  15070. height: math.unit(180, "cm"),
  15071. weight: math.unit(70, "kg"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/algier/front.svg",
  15075. extra: 596 / 572,
  15076. bottom: 0.04
  15077. }
  15078. },
  15079. back: {
  15080. height: math.unit(180, "cm"),
  15081. weight: math.unit(70, "kg"),
  15082. name: "Back",
  15083. image: {
  15084. source: "./media/characters/algier/back.svg",
  15085. extra: 596 / 572,
  15086. bottom: 0.025
  15087. }
  15088. },
  15089. frontdressed: {
  15090. height: math.unit(180, "cm"),
  15091. weight: math.unit(150, "kg"),
  15092. name: "Front-dressed",
  15093. image: {
  15094. source: "./media/characters/algier/front-dressed.svg",
  15095. extra: 596 / 572,
  15096. bottom: 0.038
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Micro",
  15103. height: math.unit(5, "cm")
  15104. },
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(180, "cm"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Macro",
  15112. height: math.unit(64, "m")
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Pretzel" },
  15118. {
  15119. upright: {
  15120. height: math.unit(7, "feet"),
  15121. weight: math.unit(300, "lb"),
  15122. name: "Upright",
  15123. image: {
  15124. source: "./media/characters/pretzel/upright.svg",
  15125. extra: 534 / 522,
  15126. bottom: 0.065
  15127. }
  15128. },
  15129. sprawling: {
  15130. height: math.unit(3.75, "feet"),
  15131. weight: math.unit(300, "lb"),
  15132. name: "Sprawling",
  15133. image: {
  15134. source: "./media/characters/pretzel/sprawling.svg",
  15135. extra: 314 / 281,
  15136. bottom: 0.1
  15137. }
  15138. },
  15139. tongue: {
  15140. height: math.unit(2, "feet"),
  15141. name: "Tongue",
  15142. image: {
  15143. source: "./media/characters/pretzel/tongue.svg"
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Normal",
  15150. height: math.unit(7, "feet"),
  15151. default: true
  15152. },
  15153. {
  15154. name: "Oversized",
  15155. height: math.unit(15, "feet")
  15156. },
  15157. {
  15158. name: "Huge",
  15159. height: math.unit(30, "feet")
  15160. },
  15161. {
  15162. name: "Macro",
  15163. height: math.unit(250, "feet")
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Roxi" },
  15169. {
  15170. sideFront: {
  15171. height: math.unit(5 + 2 / 12, "feet"),
  15172. weight: math.unit(120, "lb"),
  15173. name: "Front Side",
  15174. image: {
  15175. source: "./media/characters/roxi/side-front.svg",
  15176. extra: 2924 / 2717,
  15177. bottom: 0.08
  15178. }
  15179. },
  15180. sideBack: {
  15181. height: math.unit(5 + 2 / 12, "feet"),
  15182. weight: math.unit(120, "lb"),
  15183. name: "Back Side",
  15184. image: {
  15185. source: "./media/characters/roxi/side-back.svg",
  15186. extra: 2904 / 2693,
  15187. bottom: 0.06
  15188. }
  15189. },
  15190. front: {
  15191. height: math.unit(5 + 2 / 12, "feet"),
  15192. weight: math.unit(120, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/roxi/front.svg",
  15196. extra: 2028 / 1907,
  15197. bottom: 0.01
  15198. }
  15199. },
  15200. frontAlt: {
  15201. height: math.unit(5 + 2 / 12, "feet"),
  15202. weight: math.unit(120, "lb"),
  15203. name: "Front (Alt)",
  15204. image: {
  15205. source: "./media/characters/roxi/front-alt.svg",
  15206. extra: 1828 / 1798,
  15207. bottom: 0.01
  15208. }
  15209. },
  15210. sitting: {
  15211. height: math.unit(2.8, "feet"),
  15212. weight: math.unit(120, "lb"),
  15213. name: "Sitting",
  15214. image: {
  15215. source: "./media/characters/roxi/sitting.svg",
  15216. extra: 2660 / 2462,
  15217. bottom: 0.1
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(5 + 2 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Shadow" },
  15231. {
  15232. side: {
  15233. height: math.unit(55, "feet"),
  15234. weight: math.unit(153, "tons"),
  15235. name: "Side",
  15236. image: {
  15237. source: "./media/characters/shadow/side.svg",
  15238. extra: 701 / 628,
  15239. bottom: 0.02
  15240. }
  15241. },
  15242. flying: {
  15243. height: math.unit(145, "feet"),
  15244. weight: math.unit(153, "tons"),
  15245. name: "Flying",
  15246. image: {
  15247. source: "./media/characters/shadow/flying.svg"
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(55, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Marcie" },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(200, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/marcie/front.svg",
  15268. extra: 960 / 876,
  15269. bottom: 58 / 1017.87
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Macro",
  15276. height: math.unit(1, "mile"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Kachina" },
  15283. {
  15284. front: {
  15285. height: math.unit(7, "feet"),
  15286. weight: math.unit(200, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/kachina/front.svg",
  15290. extra: 1290.68 / 1119,
  15291. bottom: 36.5 / 1327.18
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(7, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Kash" },
  15305. {
  15306. looking: {
  15307. height: math.unit(2, "meters"),
  15308. weight: math.unit(300, "kg"),
  15309. name: "Looking",
  15310. image: {
  15311. source: "./media/characters/kash/looking.svg",
  15312. extra: 474 / 344,
  15313. bottom: 0.03
  15314. }
  15315. },
  15316. side: {
  15317. height: math.unit(2, "meters"),
  15318. weight: math.unit(300, "kg"),
  15319. name: "Side",
  15320. image: {
  15321. source: "./media/characters/kash/side.svg",
  15322. extra: 302 / 251,
  15323. bottom: 0.03
  15324. }
  15325. },
  15326. front: {
  15327. height: math.unit(2, "meters"),
  15328. weight: math.unit(300, "kg"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/kash/front.svg",
  15332. extra: 495 / 360,
  15333. bottom: 0.015
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(2, "meters"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Big",
  15345. height: math.unit(3, "meters")
  15346. },
  15347. {
  15348. name: "Large",
  15349. height: math.unit(5, "meters")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Lalim" },
  15355. {
  15356. feeding: {
  15357. height: math.unit(6.7, "feet"),
  15358. weight: math.unit(350, "lb"),
  15359. name: "Feeding",
  15360. image: {
  15361. source: "./media/characters/lalim/feeding.svg",
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(6.7, "feet"),
  15369. default: true
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "De'Vout" },
  15375. {
  15376. front: {
  15377. height: math.unit(9.5, "feet"),
  15378. weight: math.unit(600, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/de'vout/front.svg",
  15382. extra: 1443 / 1328,
  15383. bottom: 0.025
  15384. }
  15385. },
  15386. back: {
  15387. height: math.unit(9.5, "feet"),
  15388. weight: math.unit(600, "lb"),
  15389. name: "Back",
  15390. image: {
  15391. source: "./media/characters/de'vout/back.svg",
  15392. extra: 1443 / 1328
  15393. }
  15394. },
  15395. frontDressed: {
  15396. height: math.unit(9.5, "feet"),
  15397. weight: math.unit(600, "lb"),
  15398. name: "Front (Dressed",
  15399. image: {
  15400. source: "./media/characters/de'vout/front-dressed.svg",
  15401. extra: 1443 / 1328,
  15402. bottom: 0.025
  15403. }
  15404. },
  15405. backDressed: {
  15406. height: math.unit(9.5, "feet"),
  15407. weight: math.unit(600, "lb"),
  15408. name: "Back (Dressed",
  15409. image: {
  15410. source: "./media/characters/de'vout/back-dressed.svg",
  15411. extra: 1443 / 1328
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(9.5, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Talana" },
  15425. {
  15426. front: {
  15427. height: math.unit(8, "feet"),
  15428. weight: math.unit(225, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/talana/front.svg",
  15432. extra: 1410 / 1300,
  15433. bottom: 0.015
  15434. }
  15435. },
  15436. frontDressed: {
  15437. height: math.unit(8, "feet"),
  15438. weight: math.unit(225, "lb"),
  15439. name: "Front (Dressed",
  15440. image: {
  15441. source: "./media/characters/talana/front-dressed.svg",
  15442. extra: 1410 / 1300,
  15443. bottom: 0.015
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(8, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Xeauvok" },
  15457. {
  15458. side: {
  15459. height: math.unit(7.2, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Side",
  15462. image: {
  15463. source: "./media/characters/xeauvok/side.svg",
  15464. extra: 1975 / 1523,
  15465. bottom: 0.07
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(7.2, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Zara" },
  15479. {
  15480. side: {
  15481. height: math.unit(10, "feet"),
  15482. weight: math.unit(900, "kg"),
  15483. name: "Side",
  15484. image: {
  15485. source: "./media/characters/zara/side.svg",
  15486. extra: 504 / 498
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(10, "feet"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Richard (Dragon)" },
  15500. {
  15501. side: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Side",
  15505. image: {
  15506. source: "./media/characters/richard-dragon/side.svg",
  15507. extra: 845 / 340,
  15508. bottom: 0.017
  15509. }
  15510. },
  15511. maw: {
  15512. height: math.unit(2.97, "feet"),
  15513. name: "Maw",
  15514. image: {
  15515. source: "./media/characters/richard-dragon/maw.svg"
  15516. }
  15517. },
  15518. },
  15519. [
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Richard (Smeargle)" },
  15524. {
  15525. front: {
  15526. height: math.unit(4, "feet"),
  15527. weight: math.unit(100, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/richard-smeargle/front.svg",
  15531. extra: 2952 / 2820,
  15532. bottom: 0.028
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(4, "feet"),
  15540. default: true
  15541. },
  15542. {
  15543. name: "Dynamax",
  15544. height: math.unit(20, "meters")
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Klay" },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(110, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/klay/front.svg",
  15557. extra: 962 / 883,
  15558. bottom: 0.04
  15559. }
  15560. },
  15561. back: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(110, "lb"),
  15564. name: "Back",
  15565. image: {
  15566. source: "./media/characters/klay/back.svg",
  15567. extra: 962 / 883
  15568. }
  15569. },
  15570. beans: {
  15571. height: math.unit(1.15, "feet"),
  15572. name: "Beans",
  15573. image: {
  15574. source: "./media/characters/klay/beans.svg"
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Micro",
  15581. height: math.unit(6, "inches")
  15582. },
  15583. {
  15584. name: "Mini",
  15585. height: math.unit(3, "feet")
  15586. },
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(6, "feet"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Big",
  15594. height: math.unit(25, "feet")
  15595. },
  15596. {
  15597. name: "Macro",
  15598. height: math.unit(100, "feet")
  15599. },
  15600. {
  15601. name: "Megamacro",
  15602. height: math.unit(400, "feet")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Marcus" },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(160, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/marcus/front.svg",
  15615. extra: 734 / 676,
  15616. bottom: 0.03
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Little",
  15623. height: math.unit(6, "feet")
  15624. },
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(110, "feet"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Macro",
  15632. height: math.unit(250, "feet")
  15633. },
  15634. {
  15635. name: "Megamacro",
  15636. height: math.unit(1000, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Claude DelRoute" },
  15642. {
  15643. front: {
  15644. height: math.unit(7, "feet"),
  15645. weight: math.unit(275, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/claude-delroute/front.svg",
  15649. extra: 230 / 214,
  15650. bottom: 0.007
  15651. }
  15652. },
  15653. side: {
  15654. height: math.unit(7, "feet"),
  15655. weight: math.unit(275, "lb"),
  15656. name: "Side",
  15657. image: {
  15658. source: "./media/characters/claude-delroute/side.svg",
  15659. extra: 222 / 214,
  15660. bottom: 0.01
  15661. }
  15662. },
  15663. back: {
  15664. height: math.unit(7, "feet"),
  15665. weight: math.unit(275, "lb"),
  15666. name: "Back",
  15667. image: {
  15668. source: "./media/characters/claude-delroute/back.svg",
  15669. extra: 230 / 214,
  15670. bottom: 0.015
  15671. }
  15672. },
  15673. maw: {
  15674. height: math.unit(0.6407, "meters"),
  15675. name: "Maw",
  15676. image: {
  15677. source: "./media/characters/claude-delroute/maw.svg"
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(7, "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Lorge",
  15689. height: math.unit(20, "feet")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Dragonien" },
  15695. {
  15696. front: {
  15697. height: math.unit(8 + 4 / 12, "feet"),
  15698. weight: math.unit(600, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/dragonien/front.svg",
  15702. extra: 100 / 94,
  15703. bottom: 3.3 / 103.3445
  15704. }
  15705. },
  15706. back: {
  15707. height: math.unit(8 + 4 / 12, "feet"),
  15708. weight: math.unit(600, "lb"),
  15709. name: "Back",
  15710. image: {
  15711. source: "./media/characters/dragonien/back.svg",
  15712. extra: 776 / 746,
  15713. bottom: 6.4 / 782.0616
  15714. }
  15715. },
  15716. foot: {
  15717. height: math.unit(1.54, "feet"),
  15718. name: "Foot",
  15719. image: {
  15720. source: "./media/characters/dragonien/foot.svg",
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(8 + 4 / 12, "feet"),
  15728. default: true
  15729. },
  15730. {
  15731. name: "Macro",
  15732. height: math.unit(200, "feet")
  15733. },
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(1, "mile")
  15737. },
  15738. {
  15739. name: "Gigamacro",
  15740. height: math.unit(1000, "miles")
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Desta" },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 2 / 12, "feet"),
  15749. weight: math.unit(110, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/desta/front.svg",
  15753. extra: 1482 / 1417
  15754. }
  15755. },
  15756. side: {
  15757. height: math.unit(5 + 2 / 12, "feet"),
  15758. weight: math.unit(110, "lb"),
  15759. name: "Side",
  15760. image: {
  15761. source: "./media/characters/desta/side.svg",
  15762. extra: 2579 / 2491,
  15763. bottom: 0.053
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Micro",
  15770. height: math.unit(6, "inches")
  15771. },
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(5 + 2 / 12, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro",
  15779. height: math.unit(62, "feet")
  15780. },
  15781. {
  15782. name: "Megamacro",
  15783. height: math.unit(1800, "feet")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Storm Alystar" },
  15789. {
  15790. front: {
  15791. height: math.unit(10, "feet"),
  15792. weight: math.unit(700, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/storm-alystar/front.svg",
  15796. extra: 2112 / 1898,
  15797. bottom: 0.034
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Micro",
  15804. height: math.unit(3.5, "inches")
  15805. },
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(10, "feet"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Macro",
  15813. height: math.unit(400, "feet")
  15814. },
  15815. {
  15816. name: "Deific",
  15817. height: math.unit(60, "miles")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Ilia" },
  15823. {
  15824. front: {
  15825. height: math.unit(2.35, "meters"),
  15826. weight: math.unit(119, "kg"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/ilia/front.svg",
  15830. extra: 1285 / 1255,
  15831. bottom: 0.06
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(2.35, "meters")
  15839. },
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(140, "meters"),
  15843. default: true
  15844. },
  15845. {
  15846. name: "Megamacro",
  15847. height: math.unit(100, "miles")
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "KingDead" },
  15853. {
  15854. front: {
  15855. height: math.unit(6 + 5 / 12, "feet"),
  15856. weight: math.unit(190, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/kingdead/front.svg",
  15860. extra: 1228 / 1177
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Micro",
  15867. height: math.unit(7, "inches")
  15868. },
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(6 + 5 / 12, "feet")
  15872. },
  15873. {
  15874. name: "Macro",
  15875. height: math.unit(150, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Megamacro",
  15880. height: math.unit(200, "miles")
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Kyrehx" },
  15886. {
  15887. front: {
  15888. height: math.unit(8, "feet"),
  15889. weight: math.unit(600, "lb"),
  15890. name: "Front",
  15891. image: {
  15892. source: "./media/characters/kyrehx/front.svg",
  15893. extra: 1195 / 1095,
  15894. bottom: 0.034
  15895. }
  15896. },
  15897. },
  15898. [
  15899. {
  15900. name: "Micro",
  15901. height: math.unit(2, "inches")
  15902. },
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(8, "feet"),
  15906. default: true
  15907. },
  15908. {
  15909. name: "Macro",
  15910. height: math.unit(255, "feet")
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Xang" },
  15916. {
  15917. front: {
  15918. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15919. weight: math.unit(184, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/xang/front.svg",
  15923. extra: 845 / 755
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Macro",
  15935. height: math.unit(0.935 * 146, "feet")
  15936. },
  15937. {
  15938. name: "Megamacro",
  15939. height: math.unit(0.935 * 3, "miles")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Doc Weardno" },
  15945. {
  15946. frontDressed: {
  15947. height: math.unit(5 + 7 / 12, "feet"),
  15948. weight: math.unit(140, "lb"),
  15949. name: "Front (Dressed)",
  15950. image: {
  15951. source: "./media/characters/doc-weardno/front-dressed.svg",
  15952. extra: 263 / 234
  15953. }
  15954. },
  15955. backDressed: {
  15956. height: math.unit(5 + 7 / 12, "feet"),
  15957. weight: math.unit(140, "lb"),
  15958. name: "Back (Dressed)",
  15959. image: {
  15960. source: "./media/characters/doc-weardno/back-dressed.svg",
  15961. extra: 266 / 238
  15962. }
  15963. },
  15964. front: {
  15965. height: math.unit(5 + 7 / 12, "feet"),
  15966. weight: math.unit(140, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/doc-weardno/front.svg",
  15970. extra: 254 / 233
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Micro",
  15977. height: math.unit(3, "inches")
  15978. },
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(5 + 7 / 12, "feet"),
  15982. default: true
  15983. },
  15984. {
  15985. name: "Macro",
  15986. height: math.unit(25, "feet")
  15987. },
  15988. {
  15989. name: "Megamacro",
  15990. height: math.unit(2, "miles")
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "Seth Whilst" },
  15996. {
  15997. front: {
  15998. height: math.unit(6 + 2 / 12, "feet"),
  15999. weight: math.unit(153, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/seth-whilst/front.svg",
  16003. bottom: 0.07
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Micro",
  16010. height: math.unit(5, "inches")
  16011. },
  16012. {
  16013. name: "Normal",
  16014. height: math.unit(6 + 2 / 12, "feet"),
  16015. default: true
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Pocket Jabari" },
  16021. {
  16022. front: {
  16023. height: math.unit(3, "inches"),
  16024. weight: math.unit(8, "grams"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/pocket-jabari/front.svg",
  16028. extra: 1024 / 974,
  16029. bottom: 0.039
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Minimicro",
  16036. height: math.unit(8, "mm")
  16037. },
  16038. {
  16039. name: "Micro",
  16040. height: math.unit(3, "inches"),
  16041. default: true
  16042. },
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(3, "feet")
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Sapphy" },
  16051. {
  16052. front: {
  16053. height: math.unit(15, "feet"),
  16054. weight: math.unit(3280, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/sapphy/front.svg",
  16058. extra: 671 / 577,
  16059. bottom: 0.085
  16060. }
  16061. },
  16062. back: {
  16063. height: math.unit(15, "feet"),
  16064. weight: math.unit(3280, "lb"),
  16065. name: "Back",
  16066. image: {
  16067. source: "./media/characters/sapphy/back.svg",
  16068. extra: 631 / 607,
  16069. bottom: 0.045
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(15, "feet")
  16077. },
  16078. {
  16079. name: "Casual Macro",
  16080. height: math.unit(120, "feet")
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(2150, "feet"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Megamacro",
  16089. height: math.unit(8, "miles")
  16090. },
  16091. {
  16092. name: "Galaxy Mom",
  16093. height: math.unit(6, "megalightyears")
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Kiro" },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(170, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/kiro/front.svg",
  16106. extra: 1064 / 1012,
  16107. bottom: 0.052
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Micro",
  16114. height: math.unit(6, "inches")
  16115. },
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(6, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(72, "feet")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Irishfox" },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 9 / 12, "feet"),
  16132. weight: math.unit(175, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/irishfox/front.svg",
  16136. extra: 1912 / 1680,
  16137. bottom: 0.02
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Nano",
  16144. height: math.unit(1, "mm")
  16145. },
  16146. {
  16147. name: "Micro",
  16148. height: math.unit(2, "inches")
  16149. },
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 9 / 12, "feet"),
  16153. default: true
  16154. },
  16155. {
  16156. name: "Macro",
  16157. height: math.unit(45, "feet")
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Aronai Sieyes" },
  16163. {
  16164. front: {
  16165. height: math.unit(6 + 1 / 12, "feet"),
  16166. weight: math.unit(150, "lb"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/aronai-sieyes/front.svg",
  16170. extra: 1556 / 1480,
  16171. bottom: 0.015
  16172. }
  16173. },
  16174. side: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(150, "lb"),
  16177. name: "Side",
  16178. image: {
  16179. source: "./media/characters/aronai-sieyes/side.svg",
  16180. extra: 1433 / 1390,
  16181. bottom: 0.0393
  16182. }
  16183. },
  16184. back: {
  16185. height: math.unit(6 + 1 / 12, "feet"),
  16186. weight: math.unit(150, "lb"),
  16187. name: "Back",
  16188. image: {
  16189. source: "./media/characters/aronai-sieyes/back.svg",
  16190. extra: 1544 / 1494,
  16191. bottom: 0.02
  16192. }
  16193. },
  16194. frontClothed: {
  16195. height: math.unit(6 + 1 / 12, "feet"),
  16196. weight: math.unit(150, "lb"),
  16197. name: "Front (Clothed)",
  16198. image: {
  16199. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16200. extra: 1582 / 1527
  16201. }
  16202. },
  16203. feral: {
  16204. height: math.unit(18, "feet"),
  16205. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16206. name: "Feral",
  16207. image: {
  16208. source: "./media/characters/aronai-sieyes/feral.svg",
  16209. extra: 1530 / 1240,
  16210. bottom: 0.035
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Micro",
  16217. height: math.unit(2, "inches")
  16218. },
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(6 + 1 / 12, "feet"),
  16222. default: true
  16223. }
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Xuna" },
  16228. {
  16229. front: {
  16230. height: math.unit(12, "feet"),
  16231. weight: math.unit(410, "kg"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/xuna/front.svg",
  16235. extra: 2184 / 1980
  16236. }
  16237. },
  16238. side: {
  16239. height: math.unit(12, "feet"),
  16240. weight: math.unit(410, "kg"),
  16241. name: "Side",
  16242. image: {
  16243. source: "./media/characters/xuna/side.svg",
  16244. extra: 2184 / 1980
  16245. }
  16246. },
  16247. back: {
  16248. height: math.unit(12, "feet"),
  16249. weight: math.unit(410, "kg"),
  16250. name: "Back",
  16251. image: {
  16252. source: "./media/characters/xuna/back.svg",
  16253. extra: 2184 / 1980
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Nano glow",
  16260. height: math.unit(10, "nm")
  16261. },
  16262. {
  16263. name: "Micro floof",
  16264. height: math.unit(0.3, "m")
  16265. },
  16266. {
  16267. name: "Huggable softy boi",
  16268. height: math.unit(3.6576, "m"),
  16269. default: true
  16270. },
  16271. {
  16272. name: "Admirable floof",
  16273. height: math.unit(80, "meters")
  16274. },
  16275. {
  16276. name: "Gentle macro",
  16277. height: math.unit(300, "meters")
  16278. },
  16279. {
  16280. name: "Very careful floof",
  16281. height: math.unit(3200, "meters")
  16282. },
  16283. {
  16284. name: "The mega floof",
  16285. height: math.unit(36000, "meters")
  16286. },
  16287. {
  16288. name: "Giga-fur-Wicker",
  16289. height: math.unit(4800000, "meters")
  16290. },
  16291. {
  16292. name: "Licky world",
  16293. height: math.unit(20000000, "meters")
  16294. },
  16295. {
  16296. name: "Floofy cyan sun",
  16297. height: math.unit(1500000000, "meters")
  16298. },
  16299. {
  16300. name: "Milky Wicker",
  16301. height: math.unit(1000000000000000000000, "meters")
  16302. },
  16303. {
  16304. name: "The observing Wicker",
  16305. height: math.unit(999999999999999999999999999, "meters")
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Arokha Sieyes" },
  16311. {
  16312. front: {
  16313. height: math.unit(5 + 9 / 12, "feet"),
  16314. weight: math.unit(150, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/arokha-sieyes/front.svg",
  16318. extra: 1425 / 1284,
  16319. bottom: 0.05
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(5 + 9 / 12, "feet")
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(30, "meters"),
  16331. default: true
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Arokh Sieyes" },
  16337. {
  16338. front: {
  16339. height: math.unit(6, "feet"),
  16340. weight: math.unit(180, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/arokh-sieyes/front.svg",
  16344. extra: 1830 / 1769,
  16345. bottom: 0.01
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(6, "feet")
  16353. },
  16354. {
  16355. name: "Macro",
  16356. height: math.unit(30, "meters"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Goldeneye" },
  16363. {
  16364. side: {
  16365. height: math.unit(13 + 1 / 12, "feet"),
  16366. weight: math.unit(8.5, "tonnes"),
  16367. name: "Side",
  16368. image: {
  16369. source: "./media/characters/goldeneye/side.svg",
  16370. extra: 1182 / 778,
  16371. bottom: 0.067
  16372. }
  16373. },
  16374. paw: {
  16375. height: math.unit(3.4, "feet"),
  16376. name: "Paw",
  16377. image: {
  16378. source: "./media/characters/goldeneye/paw.svg"
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(13 + 1 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Leonardo Lycheborne" },
  16392. {
  16393. front: {
  16394. height: math.unit(6 + 1 / 12, "feet"),
  16395. weight: math.unit(210, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/leonardo-lycheborne/front.svg",
  16399. extra: 390 / 365,
  16400. bottom: 0.032
  16401. }
  16402. },
  16403. side: {
  16404. height: math.unit(6 + 1 / 12, "feet"),
  16405. weight: math.unit(210, "lb"),
  16406. name: "Side",
  16407. image: {
  16408. source: "./media/characters/leonardo-lycheborne/side.svg",
  16409. extra: 390 / 365,
  16410. bottom: 0.005
  16411. }
  16412. },
  16413. back: {
  16414. height: math.unit(6 + 1 / 12, "feet"),
  16415. weight: math.unit(210, "lb"),
  16416. name: "Back",
  16417. image: {
  16418. source: "./media/characters/leonardo-lycheborne/back.svg",
  16419. extra: 392 / 366,
  16420. bottom: 0.01
  16421. }
  16422. },
  16423. hand: {
  16424. height: math.unit(1.08, "feet"),
  16425. name: "Hand",
  16426. image: {
  16427. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16428. }
  16429. },
  16430. foot: {
  16431. height: math.unit(1.32, "feet"),
  16432. name: "Foot",
  16433. image: {
  16434. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16435. }
  16436. },
  16437. were: {
  16438. height: math.unit(20, "feet"),
  16439. weight: math.unit(7800, "lb"),
  16440. name: "Were",
  16441. image: {
  16442. source: "./media/characters/leonardo-lycheborne/were.svg",
  16443. extra: 308 / 294,
  16444. bottom: 0.048
  16445. }
  16446. },
  16447. feral: {
  16448. height: math.unit(7.5, "feet"),
  16449. weight: math.unit(600, "lb"),
  16450. name: "Feral",
  16451. image: {
  16452. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16453. extra: 210 / 186,
  16454. bottom: 0.108
  16455. }
  16456. },
  16457. taur: {
  16458. height: math.unit(11, "feet"),
  16459. weight: math.unit(3300, "lb"),
  16460. name: "Taur",
  16461. image: {
  16462. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16463. extra: 320 / 303,
  16464. bottom: 0.025
  16465. }
  16466. },
  16467. barghest: {
  16468. height: math.unit(11, "feet"),
  16469. weight: math.unit(1300, "lb"),
  16470. name: "Barghest",
  16471. image: {
  16472. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16473. extra: 323 / 302,
  16474. bottom: 0.027
  16475. }
  16476. },
  16477. dick: {
  16478. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16479. name: "Dick",
  16480. image: {
  16481. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16482. }
  16483. },
  16484. dickWere: {
  16485. height: math.unit((20) / 3.8, "feet"),
  16486. name: "Dick (Were)",
  16487. image: {
  16488. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(6 + 1 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Jet" },
  16502. {
  16503. front: {
  16504. height: math.unit(10, "feet"),
  16505. weight: math.unit(350, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/jet/front.svg",
  16509. extra: 2050 / 1980,
  16510. bottom: 0.013
  16511. }
  16512. },
  16513. back: {
  16514. height: math.unit(10, "feet"),
  16515. weight: math.unit(350, "lb"),
  16516. name: "Back",
  16517. image: {
  16518. source: "./media/characters/jet/back.svg",
  16519. extra: 2050 / 1980,
  16520. bottom: 0.013
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Micro",
  16527. height: math.unit(6, "inches")
  16528. },
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(10, "feet"),
  16532. default: true
  16533. },
  16534. {
  16535. name: "Macro",
  16536. height: math.unit(100, "feet")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Tanarath" },
  16542. {
  16543. front: {
  16544. height: math.unit(15, "feet"),
  16545. weight: math.unit(2800, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/tanarath/front.svg",
  16549. extra: 2392 / 2220,
  16550. bottom: 0.03
  16551. }
  16552. },
  16553. back: {
  16554. height: math.unit(15, "feet"),
  16555. weight: math.unit(2800, "lb"),
  16556. name: "Back",
  16557. image: {
  16558. source: "./media/characters/tanarath/back.svg",
  16559. extra: 2392 / 2220,
  16560. bottom: 0.03
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(15, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Patty CattyBatty" },
  16574. {
  16575. front: {
  16576. height: math.unit(7 + 1 / 12, "feet"),
  16577. weight: math.unit(175, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/patty-cattybatty/front.svg",
  16581. extra: 908 / 874,
  16582. bottom: 0.025
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Micro",
  16589. height: math.unit(1, "inch")
  16590. },
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(7 + 1 / 12, "feet")
  16594. },
  16595. {
  16596. name: "Mini Macro",
  16597. height: math.unit(155, "feet")
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(1077, "feet")
  16602. },
  16603. {
  16604. name: "Mega Macro",
  16605. height: math.unit(47650, "feet"),
  16606. default: true
  16607. },
  16608. {
  16609. name: "Giga Macro",
  16610. height: math.unit(440, "miles")
  16611. },
  16612. {
  16613. name: "Tera Macro",
  16614. height: math.unit(8700, "miles")
  16615. },
  16616. {
  16617. name: "Planetary Macro",
  16618. height: math.unit(32700, "miles")
  16619. },
  16620. {
  16621. name: "Solar Macro",
  16622. height: math.unit(550000, "miles")
  16623. },
  16624. {
  16625. name: "Celestial Macro",
  16626. height: math.unit(2.5, "AU")
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Cappu" },
  16632. {
  16633. front: {
  16634. height: math.unit(4 + 5 / 12, "feet"),
  16635. weight: math.unit(90, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/cappu/front.svg",
  16639. extra: 1247 / 1152,
  16640. bottom: 0.012
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(4 + 5 / 12, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Sebi" },
  16654. {
  16655. frontDressed: {
  16656. height: math.unit(70, "cm"),
  16657. weight: math.unit(6, "kg"),
  16658. name: "Front (Dressed)",
  16659. image: {
  16660. source: "./media/characters/sebi/front-dressed.svg",
  16661. extra: 713.5 / 686.5,
  16662. bottom: 0.003
  16663. }
  16664. },
  16665. front: {
  16666. height: math.unit(70, "cm"),
  16667. weight: math.unit(5, "kg"),
  16668. name: "Front",
  16669. image: {
  16670. source: "./media/characters/sebi/front.svg",
  16671. extra: 713.5 / 686.5,
  16672. bottom: 0.003
  16673. }
  16674. }
  16675. },
  16676. [
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(70, "cm"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(8, "meters")
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Typhek" },
  16690. {
  16691. front: {
  16692. height: math.unit(6, "feet"),
  16693. weight: math.unit(150, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/typhek/front.svg",
  16697. extra: 1948 / 1929,
  16698. bottom: 0.025
  16699. }
  16700. },
  16701. side: {
  16702. height: math.unit(6, "feet"),
  16703. weight: math.unit(150, "lb"),
  16704. name: "Side",
  16705. image: {
  16706. source: "./media/characters/typhek/side.svg",
  16707. extra: 2034 / 2010,
  16708. bottom: 0.003
  16709. }
  16710. },
  16711. back: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(150, "lb"),
  16714. name: "Back",
  16715. image: {
  16716. source: "./media/characters/typhek/back.svg",
  16717. extra: 2005 / 1978,
  16718. bottom: 0.004
  16719. }
  16720. },
  16721. palm: {
  16722. height: math.unit(1.2, "feet"),
  16723. name: "Palm",
  16724. image: {
  16725. source: "./media/characters/typhek/palm.svg"
  16726. }
  16727. },
  16728. fist: {
  16729. height: math.unit(1.1, "feet"),
  16730. name: "Fist",
  16731. image: {
  16732. source: "./media/characters/typhek/fist.svg"
  16733. }
  16734. },
  16735. foot: {
  16736. height: math.unit(1.57, "feet"),
  16737. name: "Foot",
  16738. image: {
  16739. source: "./media/characters/typhek/foot.svg"
  16740. }
  16741. },
  16742. sole: {
  16743. height: math.unit(2.05, "feet"),
  16744. name: "Sole",
  16745. image: {
  16746. source: "./media/characters/typhek/sole.svg"
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Macro",
  16753. height: math.unit(40, "stories"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Megamacro",
  16758. height: math.unit(1, "mile")
  16759. },
  16760. {
  16761. name: "Gigamacro",
  16762. height: math.unit(4000, "solarradii")
  16763. },
  16764. {
  16765. name: "Universal",
  16766. height: math.unit(1.1, "universes")
  16767. }
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Kassy" },
  16772. {
  16773. side: {
  16774. height: math.unit(5 + 7 / 12, "feet"),
  16775. weight: math.unit(150, "lb"),
  16776. name: "Side",
  16777. image: {
  16778. source: "./media/characters/kassy/side.svg",
  16779. extra: 1280 / 1225,
  16780. bottom: 0.002
  16781. }
  16782. },
  16783. front: {
  16784. height: math.unit(5 + 7 / 12, "feet"),
  16785. weight: math.unit(150, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/kassy/front.svg",
  16789. extra: 1280 / 1225,
  16790. bottom: 0.025
  16791. }
  16792. },
  16793. back: {
  16794. height: math.unit(5 + 7 / 12, "feet"),
  16795. weight: math.unit(150, "lb"),
  16796. name: "Back",
  16797. image: {
  16798. source: "./media/characters/kassy/back.svg",
  16799. extra: 1280 / 1225,
  16800. bottom: 0.002
  16801. }
  16802. },
  16803. foot: {
  16804. height: math.unit(1.266, "feet"),
  16805. name: "Foot",
  16806. image: {
  16807. source: "./media/characters/kassy/foot.svg"
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(5 + 7 / 12, "feet")
  16815. },
  16816. {
  16817. name: "Macro",
  16818. height: math.unit(137, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Megamacro",
  16823. height: math.unit(1, "mile")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Neil" },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 1 / 12, "feet"),
  16832. weight: math.unit(200, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/neil/front.svg",
  16836. extra: 1326 / 1250,
  16837. bottom: 0.023
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(6 + 1 / 12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(200, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Atticus" },
  16855. {
  16856. front: {
  16857. height: math.unit(5 + 9 / 12, "feet"),
  16858. weight: math.unit(190, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/atticus/front.svg",
  16862. extra: 2934 / 2785,
  16863. bottom: 0.025
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(5 + 9 / 12, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(180, "feet")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Milo" },
  16881. {
  16882. side: {
  16883. height: math.unit(9, "feet"),
  16884. weight: math.unit(650, "lb"),
  16885. name: "Side",
  16886. image: {
  16887. source: "./media/characters/milo/side.svg",
  16888. extra: 2644 / 2310,
  16889. bottom: 0.032
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(9, "feet"),
  16897. default: true
  16898. },
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(300, "feet")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Ijzer" },
  16907. {
  16908. side: {
  16909. height: math.unit(8, "meters"),
  16910. weight: math.unit(90000, "kg"),
  16911. name: "Side",
  16912. image: {
  16913. source: "./media/characters/ijzer/side.svg",
  16914. extra: 2756 / 1600,
  16915. bottom: 0.01
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Small",
  16922. height: math.unit(3, "meters")
  16923. },
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(8, "meters"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Normal+",
  16931. height: math.unit(10, "meters")
  16932. },
  16933. {
  16934. name: "Bigger",
  16935. height: math.unit(24, "meters")
  16936. },
  16937. {
  16938. name: "Huge",
  16939. height: math.unit(80, "meters")
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Luca Cervicum" },
  16945. {
  16946. front: {
  16947. height: math.unit(6 + 2 / 12, "feet"),
  16948. weight: math.unit(153, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/luca-cervicum/front.svg",
  16952. extra: 370 / 327,
  16953. bottom: 0.015
  16954. }
  16955. },
  16956. back: {
  16957. height: math.unit(6 + 2 / 12, "feet"),
  16958. weight: math.unit(153, "lb"),
  16959. name: "Back",
  16960. image: {
  16961. source: "./media/characters/luca-cervicum/back.svg",
  16962. extra: 367 / 333,
  16963. bottom: 0.005
  16964. }
  16965. },
  16966. frontGear: {
  16967. height: math.unit(6 + 2 / 12, "feet"),
  16968. weight: math.unit(173, "lb"),
  16969. name: "Front (Gear)",
  16970. image: {
  16971. source: "./media/characters/luca-cervicum/front-gear.svg",
  16972. extra: 377 / 333,
  16973. bottom: 0.006
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(6 + 2 / 12, "feet"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Oliver" },
  16987. {
  16988. front: {
  16989. height: math.unit(6 + 1 / 12, "feet"),
  16990. weight: math.unit(304, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/oliver/front.svg",
  16994. extra: 157 / 143,
  16995. bottom: 0.08
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(6 + 1 / 12, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Shane" },
  17009. {
  17010. front: {
  17011. height: math.unit(5 + 7 / 12, "feet"),
  17012. weight: math.unit(140, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/shane/front.svg",
  17016. extra: 304 / 289,
  17017. bottom: 0.005
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(5 + 7 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Shin" },
  17031. {
  17032. front: {
  17033. height: math.unit(5 + 9 / 12, "feet"),
  17034. weight: math.unit(178, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/shin/front.svg",
  17038. extra: 159 / 151,
  17039. bottom: 0.015
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(5 + 9 / 12, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Xerxes" },
  17053. {
  17054. front: {
  17055. height: math.unit(5 + 10 / 12, "feet"),
  17056. weight: math.unit(168, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/xerxes/front.svg",
  17060. extra: 282 / 260,
  17061. bottom: 0.045
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(5 + 10 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Chaska" },
  17075. {
  17076. front: {
  17077. height: math.unit(6 + 7 / 12, "feet"),
  17078. weight: math.unit(208, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/chaska/front.svg",
  17082. extra: 332 / 319,
  17083. bottom: 0.015
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(6 + 7 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Enuk" },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 8 / 12, "feet"),
  17100. weight: math.unit(208, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/enuk/front.svg",
  17104. extra: 437 / 406,
  17105. bottom: 0.02
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(5 + 8 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Bruun" },
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 10 / 12, "feet"),
  17122. weight: math.unit(252, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/bruun/front.svg",
  17126. extra: 197 / 187,
  17127. bottom: 0.012
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(5 + 10 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Alexeev" },
  17141. {
  17142. front: {
  17143. height: math.unit(6 + 10 / 12, "feet"),
  17144. weight: math.unit(255, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/alexeev/front.svg",
  17148. extra: 213 / 200,
  17149. bottom: 0.05
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(6 + 10 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Evelyn" },
  17163. {
  17164. front: {
  17165. height: math.unit(2 + 8 / 12, "feet"),
  17166. weight: math.unit(22, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/evelyn/front.svg",
  17170. extra: 208 / 180
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(2 + 8 / 12, "feet"),
  17178. default: true
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Inca" },
  17184. {
  17185. front: {
  17186. height: math.unit(5 + 9 / 12, "feet"),
  17187. weight: math.unit(139, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/inca/front.svg",
  17191. extra: 294 / 291,
  17192. bottom: 0.03
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(5 + 9 / 12, "feet"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Magdalene" },
  17206. {
  17207. front: {
  17208. height: math.unit(5 + 1 / 12, "feet"),
  17209. weight: math.unit(84, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/magdalene/front.svg",
  17213. extra: 293 / 273
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Normal",
  17220. height: math.unit(5 + 1 / 12, "feet"),
  17221. default: true
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Mera" },
  17227. {
  17228. front: {
  17229. height: math.unit(6 + 3 / 12, "feet"),
  17230. weight: math.unit(185, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/mera/front.svg",
  17234. extra: 291 / 277,
  17235. bottom: 0.03
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(6 + 3 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Ceres" },
  17249. {
  17250. front: {
  17251. height: math.unit(6 + 7 / 12, "feet"),
  17252. weight: math.unit(160, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/ceres/front.svg",
  17256. extra: 1023 / 950,
  17257. bottom: 0.027
  17258. }
  17259. },
  17260. back: {
  17261. height: math.unit(6 + 7 / 12, "feet"),
  17262. weight: math.unit(160, "lb"),
  17263. name: "Back",
  17264. image: {
  17265. source: "./media/characters/ceres/back.svg",
  17266. extra: 1023 / 950
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(6 + 7 / 12, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Kris" },
  17280. {
  17281. front: {
  17282. height: math.unit(5 + 10 / 12, "feet"),
  17283. weight: math.unit(150, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/kris/front.svg",
  17287. extra: 885 / 803,
  17288. bottom: 0.03
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(5 + 10 / 12, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Taluthus" },
  17302. {
  17303. front: {
  17304. height: math.unit(7, "feet"),
  17305. weight: math.unit(120, "kg"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/taluthus/front.svg",
  17309. extra: 903 / 833,
  17310. bottom: 0.015
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(7, "feet"),
  17318. default: true
  17319. },
  17320. {
  17321. name: "Macro",
  17322. height: math.unit(300, "feet")
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Dawn" },
  17328. {
  17329. front: {
  17330. height: math.unit(5 + 9 / 12, "feet"),
  17331. weight: math.unit(145, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/dawn/front.svg",
  17335. extra: 2094 / 2016,
  17336. bottom: 0.025
  17337. }
  17338. },
  17339. back: {
  17340. height: math.unit(5 + 9 / 12, "feet"),
  17341. weight: math.unit(160, "lb"),
  17342. name: "Back",
  17343. image: {
  17344. source: "./media/characters/dawn/back.svg",
  17345. extra: 2112 / 2080,
  17346. bottom: 0.005
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(6 + 7 / 12, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Arador" },
  17360. {
  17361. anthro: {
  17362. height: math.unit(8 + 3 / 12, "feet"),
  17363. weight: math.unit(450, "lb"),
  17364. name: "Anthro",
  17365. image: {
  17366. source: "./media/characters/arador/anthro.svg",
  17367. extra: 1835 / 1718,
  17368. bottom: 0.025
  17369. }
  17370. },
  17371. feral: {
  17372. height: math.unit(4, "feet"),
  17373. weight: math.unit(200, "lb"),
  17374. name: "Feral",
  17375. image: {
  17376. source: "./media/characters/arador/feral.svg",
  17377. extra: 1683 / 1514,
  17378. bottom: 0.07
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(8 + 3 / 12, "feet")
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(82.5, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Dharsi" },
  17396. {
  17397. front: {
  17398. height: math.unit(5 + 10 / 12, "feet"),
  17399. weight: math.unit(125, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/dharsi/front.svg",
  17403. extra: 716 / 630,
  17404. bottom: 0.035
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Nano",
  17411. height: math.unit(100, "nm")
  17412. },
  17413. {
  17414. name: "Micro",
  17415. height: math.unit(2, "inches")
  17416. },
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(5 + 10 / 12, "feet"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(1000, "feet")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(10, "miles")
  17429. },
  17430. {
  17431. name: "Gigamacro",
  17432. height: math.unit(3000, "miles")
  17433. },
  17434. {
  17435. name: "Teramacro",
  17436. height: math.unit(500000, "miles")
  17437. },
  17438. {
  17439. name: "Teramacro+",
  17440. height: math.unit(30, "galaxies")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Deathy" },
  17446. {
  17447. front: {
  17448. height: math.unit(6, "feet"),
  17449. weight: math.unit(150, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/deathy/front.svg",
  17453. extra: 1552 / 1463,
  17454. bottom: 0.025
  17455. }
  17456. },
  17457. side: {
  17458. height: math.unit(6, "feet"),
  17459. weight: math.unit(150, "lb"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/deathy/side.svg",
  17463. extra: 1604 / 1455,
  17464. bottom: 0.025
  17465. }
  17466. },
  17467. back: {
  17468. height: math.unit(6, "feet"),
  17469. weight: math.unit(150, "lb"),
  17470. name: "Back",
  17471. image: {
  17472. source: "./media/characters/deathy/back.svg",
  17473. extra: 1580 / 1463,
  17474. bottom: 0.005
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Micro",
  17481. height: math.unit(5, "millimeters")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(6 + 5 / 12, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Juniper" },
  17492. {
  17493. front: {
  17494. height: math.unit(16, "feet"),
  17495. weight: math.unit(4000, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/juniper/front.svg",
  17499. bottom: 0.04
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(16, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Hipster" },
  17513. {
  17514. front: {
  17515. height: math.unit(6, "feet"),
  17516. weight: math.unit(150, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/hipster/front.svg",
  17520. extra: 1312 / 1209,
  17521. bottom: 0.025
  17522. }
  17523. },
  17524. back: {
  17525. height: math.unit(6, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Back",
  17528. image: {
  17529. source: "./media/characters/hipster/back.svg",
  17530. extra: 1281 / 1196,
  17531. bottom: 0.01
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Micro",
  17538. height: math.unit(1, "mm")
  17539. },
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(4, "inches"),
  17543. default: true
  17544. },
  17545. {
  17546. name: "Macro",
  17547. height: math.unit(500, "feet")
  17548. },
  17549. {
  17550. name: "Megamacro",
  17551. height: math.unit(1000, "miles")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Tendirmuldr" },
  17557. {
  17558. front: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/tendirmuldr/front.svg",
  17564. extra: 1878 / 1772,
  17565. bottom: 0.015
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Megamacro",
  17572. height: math.unit(1500, "miles"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Mort" },
  17579. {
  17580. front: {
  17581. height: math.unit(14, "feet"),
  17582. weight: math.unit(12000, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/mort/front.svg",
  17586. extra: 365 / 318,
  17587. bottom: 0.01
  17588. }
  17589. },
  17590. side: {
  17591. height: math.unit(14, "feet"),
  17592. weight: math.unit(12000, "lb"),
  17593. name: "Side",
  17594. image: {
  17595. source: "./media/characters/mort/side.svg",
  17596. extra: 365 / 318,
  17597. bottom: 0.052
  17598. },
  17599. default: true
  17600. },
  17601. back: {
  17602. height: math.unit(14, "feet"),
  17603. weight: math.unit(12000, "lb"),
  17604. name: "Back",
  17605. image: {
  17606. source: "./media/characters/mort/back.svg",
  17607. extra: 371 / 332,
  17608. bottom: 0.18
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(14, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Lycoa" },
  17622. {
  17623. front: {
  17624. height: math.unit(8, "feet"),
  17625. weight: math.unit(1, "ton"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/lycoa/front.svg",
  17629. extra: 1875 / 1789,
  17630. bottom: 0.022
  17631. }
  17632. },
  17633. back: {
  17634. height: math.unit(8, "feet"),
  17635. weight: math.unit(1, "ton"),
  17636. name: "Back",
  17637. image: {
  17638. source: "./media/characters/lycoa/back.svg",
  17639. extra: 1835 / 1781,
  17640. bottom: 0.03
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(8, "feet"),
  17648. default: true
  17649. },
  17650. {
  17651. name: "Macro",
  17652. height: math.unit(30, "feet")
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Naldara" },
  17658. {
  17659. front: {
  17660. height: math.unit(4 + 2 / 12, "feet"),
  17661. weight: math.unit(70, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/naldara/front.svg",
  17665. extra: 841 / 720,
  17666. bottom: 0.04
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(4 + 2 / 12, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Briar" },
  17680. {
  17681. front: {
  17682. height: math.unit(13 + 7 / 12, "feet"),
  17683. weight: math.unit(1500, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/briar/front.svg",
  17687. extra: 626 / 596,
  17688. bottom: 0.08
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(13 + 7 / 12, "feet"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Vanguard" },
  17702. {
  17703. side: {
  17704. height: math.unit(10, "feet"),
  17705. weight: math.unit(500, "lb"),
  17706. name: "Side",
  17707. image: {
  17708. source: "./media/characters/vanguard/side.svg",
  17709. extra: 502 / 425,
  17710. bottom: 0.087
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(10, "feet"),
  17718. default: true
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Artemis" },
  17724. {
  17725. front: {
  17726. height: math.unit(7.5, "feet"),
  17727. weight: math.unit(2, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/artemis/front.svg",
  17731. extra: 1192 / 1075,
  17732. bottom: 0.07
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(7.5, "feet"),
  17740. default: true
  17741. },
  17742. {
  17743. name: "Enlarged",
  17744. height: math.unit(12, "feet")
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Kira" },
  17750. {
  17751. front: {
  17752. height: math.unit(5 + 3 / 12, "feet"),
  17753. weight: math.unit(160, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/kira/front.svg",
  17757. extra: 906 / 786,
  17758. bottom: 0.01
  17759. }
  17760. },
  17761. back: {
  17762. height: math.unit(5 + 3 / 12, "feet"),
  17763. weight: math.unit(160, "lb"),
  17764. name: "Back",
  17765. image: {
  17766. source: "./media/characters/kira/back.svg",
  17767. extra: 882 / 757,
  17768. bottom: 0.005
  17769. }
  17770. },
  17771. frontDressed: {
  17772. height: math.unit(5 + 3 / 12, "feet"),
  17773. weight: math.unit(160, "lb"),
  17774. name: "Front (Dressed)",
  17775. image: {
  17776. source: "./media/characters/kira/front-dressed.svg",
  17777. extra: 906 / 786,
  17778. bottom: 0.01
  17779. }
  17780. },
  17781. beans: {
  17782. height: math.unit(0.92, "feet"),
  17783. name: "Beans",
  17784. image: {
  17785. source: "./media/characters/kira/beans.svg"
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(5 + 3 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Scramble" },
  17799. {
  17800. front: {
  17801. height: math.unit(5 + 4 / 12, "feet"),
  17802. weight: math.unit(145, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/scramble/front.svg",
  17806. extra: 763 / 727,
  17807. bottom: 0.05
  17808. }
  17809. },
  17810. back: {
  17811. height: math.unit(5 + 4 / 12, "feet"),
  17812. weight: math.unit(145, "lb"),
  17813. name: "Back",
  17814. image: {
  17815. source: "./media/characters/scramble/back.svg",
  17816. extra: 826 / 737,
  17817. bottom: 0.002
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(5 + 4 / 12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Biscuit" },
  17831. {
  17832. side: {
  17833. height: math.unit(6 + 2 / 12, "feet"),
  17834. weight: math.unit(190, "lb"),
  17835. name: "Side",
  17836. image: {
  17837. source: "./media/characters/biscuit/side.svg",
  17838. extra: 858 / 791,
  17839. bottom: 0.044
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(6 + 2 / 12, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Poffin" },
  17853. {
  17854. front: {
  17855. height: math.unit(5 + 2 / 12, "feet"),
  17856. weight: math.unit(120, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/poffin/front.svg",
  17860. extra: 786 / 680,
  17861. bottom: 0.005
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(5 + 2 / 12, "feet"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Dhari" },
  17875. {
  17876. front: {
  17877. height: math.unit(6 + 3 / 12, "feet"),
  17878. weight: math.unit(519, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/dhari/front.svg",
  17882. extra: 1048 / 946,
  17883. bottom: 0.015
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(6 + 3 / 12, "feet"),
  17888. weight: math.unit(519, "lb"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/dhari/back.svg",
  17892. extra: 1048 / 931,
  17893. bottom: 0.005
  17894. }
  17895. },
  17896. frontDressed: {
  17897. height: math.unit(6 + 3 / 12, "feet"),
  17898. weight: math.unit(519, "lb"),
  17899. name: "Front (Dressed)",
  17900. image: {
  17901. source: "./media/characters/dhari/front-dressed.svg",
  17902. extra: 1713 / 1546,
  17903. bottom: 0.02
  17904. }
  17905. },
  17906. backDressed: {
  17907. height: math.unit(6 + 3 / 12, "feet"),
  17908. weight: math.unit(519, "lb"),
  17909. name: "Back (Dressed)",
  17910. image: {
  17911. source: "./media/characters/dhari/back-dressed.svg",
  17912. extra: 1699 / 1537,
  17913. bottom: 0.01
  17914. }
  17915. },
  17916. maw: {
  17917. height: math.unit(0.95, "feet"),
  17918. name: "Maw",
  17919. image: {
  17920. source: "./media/characters/dhari/maw.svg"
  17921. }
  17922. },
  17923. wereFront: {
  17924. height: math.unit(12 + 8 / 12, "feet"),
  17925. weight: math.unit(4000, "lb"),
  17926. name: "Front (Were)",
  17927. image: {
  17928. source: "./media/characters/dhari/were-front.svg",
  17929. extra: 1065 / 969,
  17930. bottom: 0.015
  17931. }
  17932. },
  17933. wereBack: {
  17934. height: math.unit(12 + 8 / 12, "feet"),
  17935. weight: math.unit(4000, "lb"),
  17936. name: "Back (Were)",
  17937. image: {
  17938. source: "./media/characters/dhari/were-back.svg",
  17939. extra: 1065 / 969,
  17940. bottom: 0.012
  17941. }
  17942. },
  17943. wereMaw: {
  17944. height: math.unit(0.625, "meters"),
  17945. name: "Maw (Were)",
  17946. image: {
  17947. source: "./media/characters/dhari/were-maw.svg"
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Normal",
  17954. height: math.unit(6 + 3 / 12, "feet"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Rena Dyne" },
  17961. {
  17962. anthro: {
  17963. height: math.unit(5 + 7 / 12, "feet"),
  17964. weight: math.unit(175, "lb"),
  17965. name: "Anthro",
  17966. image: {
  17967. source: "./media/characters/rena-dyne/anthro.svg",
  17968. extra: 1849 / 1785,
  17969. bottom: 0.005
  17970. }
  17971. },
  17972. taur: {
  17973. height: math.unit(15 + 6 / 12, "feet"),
  17974. weight: math.unit(8000, "lb"),
  17975. name: "Taur",
  17976. image: {
  17977. source: "./media/characters/rena-dyne/taur.svg",
  17978. extra: 2315 / 2234,
  17979. bottom: 0.033
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(5 + 7 / 12, "feet"),
  17987. default: true
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Weremeep" },
  17993. {
  17994. front: {
  17995. height: math.unit(8, "feet"),
  17996. weight: math.unit(600, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/weremeep/front.svg",
  18000. extra: 967 / 862,
  18001. bottom: 0.01
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(8, "feet"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Lorg",
  18013. height: math.unit(12, "feet")
  18014. },
  18015. {
  18016. name: "Oh Lawd She Comin'",
  18017. height: math.unit(20, "feet")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Reza" },
  18023. {
  18024. front: {
  18025. height: math.unit(4, "feet"),
  18026. weight: math.unit(90, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/reza/front.svg",
  18030. extra: 1183 / 1111,
  18031. bottom: 0.017
  18032. }
  18033. },
  18034. back: {
  18035. height: math.unit(4, "feet"),
  18036. weight: math.unit(90, "lb"),
  18037. name: "Back",
  18038. image: {
  18039. source: "./media/characters/reza/back.svg",
  18040. extra: 1183 / 1111,
  18041. bottom: 0.01
  18042. }
  18043. },
  18044. drake: {
  18045. height: math.unit(30, "feet"),
  18046. weight: math.unit(246960, "lb"),
  18047. name: "Drake",
  18048. image: {
  18049. source: "./media/characters/reza/drake.svg",
  18050. extra: 2350/2024,
  18051. bottom: 60.7/2403
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(4, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Athea" },
  18065. {
  18066. side: {
  18067. height: math.unit(15, "feet"),
  18068. weight: math.unit(14, "tons"),
  18069. name: "Side",
  18070. image: {
  18071. source: "./media/characters/athea/side.svg",
  18072. extra: 960 / 540,
  18073. bottom: 0.003
  18074. }
  18075. },
  18076. sitting: {
  18077. height: math.unit(6 * 2.85, "feet"),
  18078. weight: math.unit(14, "tons"),
  18079. name: "Sitting",
  18080. image: {
  18081. source: "./media/characters/athea/sitting.svg",
  18082. extra: 621 / 581,
  18083. bottom: 0.075
  18084. }
  18085. },
  18086. maw: {
  18087. height: math.unit(7.59498031496063, "feet"),
  18088. name: "Maw",
  18089. image: {
  18090. source: "./media/characters/athea/maw.svg"
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Lap Cat",
  18097. height: math.unit(2.5, "feet")
  18098. },
  18099. {
  18100. name: "Minimacro",
  18101. height: math.unit(15, "feet"),
  18102. default: true
  18103. },
  18104. {
  18105. name: "Macro",
  18106. height: math.unit(120, "feet")
  18107. },
  18108. {
  18109. name: "Macro+",
  18110. height: math.unit(640, "feet")
  18111. },
  18112. {
  18113. name: "Colossus",
  18114. height: math.unit(2.2, "miles")
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Seroko" },
  18120. {
  18121. front: {
  18122. height: math.unit(8 + 8 / 12, "feet"),
  18123. weight: math.unit(130, "kg"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/seroko/front.svg",
  18127. extra: 1385 / 1280,
  18128. bottom: 0.025
  18129. }
  18130. },
  18131. back: {
  18132. height: math.unit(8 + 8 / 12, "feet"),
  18133. weight: math.unit(130, "kg"),
  18134. name: "Back",
  18135. image: {
  18136. source: "./media/characters/seroko/back.svg",
  18137. extra: 1369 / 1238,
  18138. bottom: 0.018
  18139. }
  18140. },
  18141. frontDressed: {
  18142. height: math.unit(8 + 8 / 12, "feet"),
  18143. weight: math.unit(130, "kg"),
  18144. name: "Front (Dressed)",
  18145. image: {
  18146. source: "./media/characters/seroko/front-dressed.svg",
  18147. extra: 1366 / 1275,
  18148. bottom: 0.03
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(8 + 8 / 12, "feet"),
  18156. default: true
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Quatzi" },
  18162. {
  18163. front: {
  18164. height: math.unit(5.5, "feet"),
  18165. weight: math.unit(160, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/quatzi/front.svg",
  18169. extra: 2346 / 2242,
  18170. bottom: 0.015
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(5.5, "feet"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Big",
  18182. height: math.unit(7.7, "feet")
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Sen" },
  18188. {
  18189. front: {
  18190. height: math.unit(5 + 11 / 12, "feet"),
  18191. weight: math.unit(180, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/sen/front.svg",
  18195. extra: 1321 / 1254,
  18196. bottom: 0.015
  18197. }
  18198. },
  18199. side: {
  18200. height: math.unit(5 + 11 / 12, "feet"),
  18201. weight: math.unit(180, "lb"),
  18202. name: "Side",
  18203. image: {
  18204. source: "./media/characters/sen/side.svg",
  18205. extra: 1321 / 1254,
  18206. bottom: 0.007
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(5 + 11 / 12, "feet"),
  18211. weight: math.unit(180, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/sen/back.svg",
  18215. extra: 1321 / 1254
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(5 + 11 / 12, "feet"),
  18223. default: true
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Fruity" },
  18229. {
  18230. front: {
  18231. height: math.unit(166.6, "cm"),
  18232. weight: math.unit(66.6, "kg"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/fruity/front.svg",
  18236. extra: 1510 / 1386,
  18237. bottom: 0.04
  18238. }
  18239. },
  18240. back: {
  18241. height: math.unit(166.6, "cm"),
  18242. weight: math.unit(66.6, "lb"),
  18243. name: "Back",
  18244. image: {
  18245. source: "./media/characters/fruity/back.svg",
  18246. extra: 1563 / 1435,
  18247. bottom: 0.005
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(166.6, "cm"),
  18255. default: true
  18256. },
  18257. {
  18258. name: "Demonic",
  18259. height: math.unit(166.6, "feet")
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Zost" },
  18265. {
  18266. side: {
  18267. height: math.unit(10, "feet"),
  18268. weight: math.unit(500, "lb"),
  18269. name: "Side",
  18270. image: {
  18271. source: "./media/characters/zost/side.svg",
  18272. extra: 966 / 880,
  18273. bottom: 0.075
  18274. }
  18275. },
  18276. mawFront: {
  18277. height: math.unit(1.08, "meters"),
  18278. name: "Maw (Front)",
  18279. image: {
  18280. source: "./media/characters/zost/maw-front.svg"
  18281. }
  18282. },
  18283. mawSide: {
  18284. height: math.unit(2.66, "feet"),
  18285. name: "Maw (Side)",
  18286. image: {
  18287. source: "./media/characters/zost/maw-side.svg"
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(10, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Luci" },
  18301. {
  18302. front: {
  18303. height: math.unit(5 + 4 / 12, "feet"),
  18304. weight: math.unit(120, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/luci/front.svg",
  18308. extra: 1985 / 1884,
  18309. bottom: 0.04
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(5 + 4 / 12, "feet"),
  18314. weight: math.unit(120, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/luci/back.svg",
  18318. extra: 1892 / 1791,
  18319. bottom: 0.002
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(5 + 4 / 12, "feet"),
  18327. default: true
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "2th" },
  18333. {
  18334. front: {
  18335. height: math.unit(1500, "feet"),
  18336. weight: math.unit(3.8e6, "tons"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/2th/front.svg",
  18340. extra: 3489 / 3350,
  18341. bottom: 0.1
  18342. }
  18343. },
  18344. foot: {
  18345. height: math.unit(461, "feet"),
  18346. name: "Foot",
  18347. image: {
  18348. source: "./media/characters/2th/foot.svg"
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "\"Micro\"",
  18355. height: math.unit(15 + 7 / 12, "feet")
  18356. },
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(1500, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(5000, "feet")
  18365. },
  18366. {
  18367. name: "Megamacro",
  18368. height: math.unit(15, "miles")
  18369. },
  18370. {
  18371. name: "Gigamacro",
  18372. height: math.unit(4000, "miles")
  18373. },
  18374. {
  18375. name: "Galactic",
  18376. height: math.unit(50, "AU")
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Amethyst" },
  18382. {
  18383. front: {
  18384. height: math.unit(5 + 6 / 12, "feet"),
  18385. weight: math.unit(220, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/amethyst/front.svg",
  18389. extra: 2078 / 2040,
  18390. bottom: 0.045
  18391. }
  18392. },
  18393. back: {
  18394. height: math.unit(5 + 6 / 12, "feet"),
  18395. weight: math.unit(220, "lb"),
  18396. name: "Back",
  18397. image: {
  18398. source: "./media/characters/amethyst/back.svg",
  18399. extra: 2021 / 1989,
  18400. bottom: 0.02
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 6 / 12, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Yumi Akiyama" },
  18414. {
  18415. front: {
  18416. height: math.unit(4 + 11 / 12, "feet"),
  18417. weight: math.unit(120, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/yumi-akiyama/front.svg",
  18421. extra: 1327 / 1235,
  18422. bottom: 0.02
  18423. }
  18424. },
  18425. back: {
  18426. height: math.unit(4 + 11 / 12, "feet"),
  18427. weight: math.unit(120, "lb"),
  18428. name: "Back",
  18429. image: {
  18430. source: "./media/characters/yumi-akiyama/back.svg",
  18431. extra: 1287 / 1245,
  18432. bottom: 0.002
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Galactic",
  18439. height: math.unit(50, "galaxies"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Universal",
  18444. height: math.unit(100, "universes")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Rifter Yrmori" },
  18450. {
  18451. front: {
  18452. height: math.unit(8, "feet"),
  18453. weight: math.unit(500, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/rifter-yrmori/front.svg",
  18457. extra: 1180 / 1125,
  18458. bottom: 0.02
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(8, "feet"),
  18463. weight: math.unit(500, "lb"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/rifter-yrmori/back.svg",
  18467. extra: 1190 / 1145,
  18468. bottom: 0.001
  18469. }
  18470. },
  18471. wings: {
  18472. height: math.unit(7.75, "feet"),
  18473. weight: math.unit(500, "lb"),
  18474. name: "Wings",
  18475. image: {
  18476. source: "./media/characters/rifter-yrmori/wings.svg",
  18477. extra: 1357 / 1285
  18478. }
  18479. },
  18480. maw: {
  18481. height: math.unit(0.8, "feet"),
  18482. name: "Maw",
  18483. image: {
  18484. source: "./media/characters/rifter-yrmori/maw.svg"
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(8, "feet"),
  18492. default: true
  18493. },
  18494. {
  18495. name: "Macro",
  18496. height: math.unit(42, "meters")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Tahajin" },
  18502. {
  18503. were: {
  18504. height: math.unit(25 + 6 / 12, "feet"),
  18505. weight: math.unit(10000, "lb"),
  18506. name: "Were",
  18507. image: {
  18508. source: "./media/characters/tahajin/were.svg",
  18509. extra: 801 / 770,
  18510. bottom: 0.042
  18511. }
  18512. },
  18513. aquatic: {
  18514. height: math.unit(6 + 4 / 12, "feet"),
  18515. weight: math.unit(160, "lb"),
  18516. name: "Aquatic",
  18517. image: {
  18518. source: "./media/characters/tahajin/aquatic.svg",
  18519. extra: 572 / 542,
  18520. bottom: 0.04
  18521. }
  18522. },
  18523. chow: {
  18524. height: math.unit(8 + 11 / 12, "feet"),
  18525. weight: math.unit(450, "lb"),
  18526. name: "Chow",
  18527. image: {
  18528. source: "./media/characters/tahajin/chow.svg",
  18529. extra: 660 / 640,
  18530. bottom: 0.015
  18531. }
  18532. },
  18533. demiNaga: {
  18534. height: math.unit(6 + 8 / 12, "feet"),
  18535. weight: math.unit(300, "lb"),
  18536. name: "Demi Naga",
  18537. image: {
  18538. source: "./media/characters/tahajin/demi-naga.svg",
  18539. extra: 643 / 615,
  18540. bottom: 0.1
  18541. }
  18542. },
  18543. data: {
  18544. height: math.unit(5, "inches"),
  18545. weight: math.unit(0.1, "lb"),
  18546. name: "Data",
  18547. image: {
  18548. source: "./media/characters/tahajin/data.svg"
  18549. }
  18550. },
  18551. fluu: {
  18552. height: math.unit(5 + 7 / 12, "feet"),
  18553. weight: math.unit(140, "lb"),
  18554. name: "Fluu",
  18555. image: {
  18556. source: "./media/characters/tahajin/fluu.svg",
  18557. extra: 628 / 592,
  18558. bottom: 0.02
  18559. }
  18560. },
  18561. starWarrior: {
  18562. height: math.unit(4 + 5 / 12, "feet"),
  18563. weight: math.unit(50, "lb"),
  18564. name: "Star Warrior",
  18565. image: {
  18566. source: "./media/characters/tahajin/star-warrior.svg"
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(25 + 6 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Gabira" },
  18580. {
  18581. front: {
  18582. height: math.unit(8, "feet"),
  18583. weight: math.unit(350, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/gabira/front.svg",
  18587. extra: 608 / 580,
  18588. bottom: 0.03
  18589. }
  18590. },
  18591. back: {
  18592. height: math.unit(8, "feet"),
  18593. weight: math.unit(350, "lb"),
  18594. name: "Back",
  18595. image: {
  18596. source: "./media/characters/gabira/back.svg",
  18597. extra: 608 / 580,
  18598. bottom: 0.03
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(8, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Sasha Katraine" },
  18612. {
  18613. front: {
  18614. height: math.unit(5 + 3 / 12, "feet"),
  18615. weight: math.unit(137, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/sasha-katraine/front.svg",
  18619. bottom: 0.045
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Micro",
  18626. height: math.unit(5, "inches")
  18627. },
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(5 + 3 / 12, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Der" },
  18637. {
  18638. side: {
  18639. height: math.unit(4, "inches"),
  18640. weight: math.unit(200, "grams"),
  18641. name: "Side",
  18642. image: {
  18643. source: "./media/characters/der/side.svg",
  18644. extra: 719 / 400,
  18645. bottom: 30.6 / 749.9187
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(4, "inches"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Fixerdragon" },
  18659. {
  18660. side: {
  18661. height: math.unit(30, "meters"),
  18662. weight: math.unit(700, "tonnes"),
  18663. name: "Side",
  18664. image: {
  18665. source: "./media/characters/fixerdragon/side.svg",
  18666. extra: (1293.0514 - 116.03) / 1106.86,
  18667. bottom: 116.03 / 1293.0514
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Planck",
  18674. height: math.unit(1.6e-35, "meters")
  18675. },
  18676. {
  18677. name: "Micro",
  18678. height: math.unit(0.4, "meters")
  18679. },
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(30, "meters"),
  18683. default: true
  18684. },
  18685. {
  18686. name: "Megamacro",
  18687. height: math.unit(1.2, "megameters")
  18688. },
  18689. {
  18690. name: "Teramacro",
  18691. height: math.unit(130, "terameters")
  18692. },
  18693. {
  18694. name: "Yottamacro",
  18695. height: math.unit(6200, "yottameters")
  18696. },
  18697. ]
  18698. ));
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Kite" },
  18701. {
  18702. front: {
  18703. height: math.unit(8, "feet"),
  18704. weight: math.unit(250, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/kite/front.svg",
  18708. extra: 2796 / 2659,
  18709. bottom: 0.002
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(8, "feet"),
  18717. default: true
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(360, "feet")
  18722. },
  18723. {
  18724. name: "Megamacro",
  18725. height: math.unit(1500, "feet")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Poojawa Vynar" },
  18731. {
  18732. front: {
  18733. height: math.unit(5 + 10 / 12, "feet"),
  18734. weight: math.unit(150, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/poojawa-vynar/front.svg",
  18738. extra: (1506.1547 - 55) / 1356.6,
  18739. bottom: 55 / 1506.1547
  18740. }
  18741. },
  18742. frontTailless: {
  18743. height: math.unit(5 + 10 / 12, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Front (Tailless)",
  18746. image: {
  18747. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18748. extra: (1506.1547 - 55) / 1356.6,
  18749. bottom: 55 / 1506.1547
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 10 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Violette" },
  18763. {
  18764. front: {
  18765. height: math.unit(293, "meters"),
  18766. weight: math.unit(70400, "tons"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/violette/front.svg",
  18770. extra: 1227 / 1180,
  18771. bottom: 0.005
  18772. }
  18773. },
  18774. back: {
  18775. height: math.unit(293, "meters"),
  18776. weight: math.unit(70400, "tons"),
  18777. name: "Back",
  18778. image: {
  18779. source: "./media/characters/violette/back.svg",
  18780. extra: 1227 / 1180,
  18781. bottom: 0.005
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Macro",
  18788. height: math.unit(293, "meters"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Alessandra" },
  18795. {
  18796. front: {
  18797. height: math.unit(1050, "feet"),
  18798. weight: math.unit(200000, "tons"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/alessandra/front.svg",
  18802. extra: 960 / 912,
  18803. bottom: 0.06
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Macro",
  18810. height: math.unit(1050, "feet")
  18811. },
  18812. {
  18813. name: "Macro+",
  18814. height: math.unit(900, "meters"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Person", species: "Catdragon" },
  18821. {
  18822. front: {
  18823. height: math.unit(5, "feet"),
  18824. weight: math.unit(187, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/person/front.svg",
  18828. extra: 3087 / 2945,
  18829. bottom: 91 / 3181
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Micro",
  18836. height: math.unit(3, "inches")
  18837. },
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(5, "feet"),
  18841. default: true
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(90, "feet")
  18846. },
  18847. {
  18848. name: "Max Size",
  18849. height: math.unit(280, "feet")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Ty" },
  18855. {
  18856. front: {
  18857. height: math.unit(4.5, "meters"),
  18858. weight: math.unit(3200, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/ty/front.svg",
  18862. extra: 1038 / 960,
  18863. bottom: 31.156 / 1068
  18864. }
  18865. },
  18866. back: {
  18867. height: math.unit(4.5, "meters"),
  18868. weight: math.unit(3200, "lb"),
  18869. name: "Back",
  18870. image: {
  18871. source: "./media/characters/ty/back.svg",
  18872. extra: 1044 / 966,
  18873. bottom: 7.48 / 1049
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(4.5, "meters"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Rocky" },
  18887. {
  18888. front: {
  18889. height: math.unit(5 + 4 / 12, "feet"),
  18890. weight: math.unit(115, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/rocky/front.svg",
  18894. extra: 1012 / 975,
  18895. bottom: 54 / 1066
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(5 + 4 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Ruin" },
  18909. {
  18910. upright: {
  18911. height: math.unit(6, "meters"),
  18912. weight: math.unit(4000, "kg"),
  18913. name: "Upright",
  18914. image: {
  18915. source: "./media/characters/ruin/upright.svg",
  18916. extra: 668 / 661,
  18917. bottom: 42 / 799.8396
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(6, "meters"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Robin" },
  18931. {
  18932. front: {
  18933. height: math.unit(5, "feet"),
  18934. weight: math.unit(106, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/robin/front.svg",
  18938. extra: 862 / 799,
  18939. bottom: 42.4 / 914.8856
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(5, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Saian" },
  18953. {
  18954. side: {
  18955. height: math.unit(3, "feet"),
  18956. weight: math.unit(225, "lb"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/saian/side.svg",
  18960. extra: 566 / 356,
  18961. bottom: 79.7 / 643
  18962. }
  18963. },
  18964. maw: {
  18965. height: math.unit(2.85, "feet"),
  18966. name: "Maw",
  18967. image: {
  18968. source: "./media/characters/saian/maw.svg"
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(3, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Equus Silvermane" },
  18982. {
  18983. side: {
  18984. height: math.unit(8, "feet"),
  18985. weight: math.unit(300, "lb"),
  18986. name: "Side",
  18987. image: {
  18988. source: "./media/characters/equus-silvermane/side.svg",
  18989. extra: 2176 / 2050,
  18990. bottom: 65.7 / 2245
  18991. }
  18992. },
  18993. front: {
  18994. height: math.unit(8, "feet"),
  18995. weight: math.unit(300, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/equus-silvermane/front.svg",
  18999. extra: 4633 / 4400,
  19000. bottom: 71.3 / 4706.915
  19001. }
  19002. },
  19003. sideStepping: {
  19004. height: math.unit(8, "feet"),
  19005. weight: math.unit(300, "lb"),
  19006. name: "Side (Stepping)",
  19007. image: {
  19008. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19009. extra: 1968 / 1860,
  19010. bottom: 16.4 / 1989
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(8, "feet")
  19018. },
  19019. {
  19020. name: "Minimacro",
  19021. height: math.unit(75, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(150, "feet")
  19027. },
  19028. {
  19029. name: "Macro+",
  19030. height: math.unit(1000, "feet")
  19031. },
  19032. {
  19033. name: "Megamacro",
  19034. height: math.unit(1, "mile")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Windar" },
  19040. {
  19041. side: {
  19042. height: math.unit(20, "feet"),
  19043. weight: math.unit(30000, "kg"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/windar/side.svg",
  19047. extra: 1491 / 1248,
  19048. bottom: 82.56 / 1568
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(20, "feet"),
  19056. default: true
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Melody" },
  19062. {
  19063. side: {
  19064. height: math.unit(15.66, "feet"),
  19065. weight: math.unit(150, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/melody/side.svg",
  19069. extra: 1097 / 944,
  19070. bottom: 11.8 / 1109
  19071. }
  19072. },
  19073. sideOutfit: {
  19074. height: math.unit(15.66, "feet"),
  19075. weight: math.unit(150, "lb"),
  19076. name: "Side (Outfit)",
  19077. image: {
  19078. source: "./media/characters/melody/side-outfit.svg",
  19079. extra: 1097 / 944,
  19080. bottom: 11.8 / 1109
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(15.66, "feet"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Windera" },
  19094. {
  19095. front: {
  19096. height: math.unit(8, "feet"),
  19097. weight: math.unit(325, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/windera/front.svg",
  19101. extra: 3180 / 2845,
  19102. bottom: 178 / 3365
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(8, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Sonear" },
  19116. {
  19117. front: {
  19118. height: math.unit(28.75, "feet"),
  19119. weight: math.unit(2000, "kg"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/sonear/front.svg",
  19123. extra: 1041.1 / 964.9,
  19124. bottom: 53.7 / 1096.6
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(28.75, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Kanara" },
  19138. {
  19139. side: {
  19140. height: math.unit(25.5, "feet"),
  19141. weight: math.unit(23000, "kg"),
  19142. name: "Side",
  19143. image: {
  19144. source: "./media/characters/kanara/side.svg"
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(25.5, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Ereus" },
  19158. {
  19159. side: {
  19160. height: math.unit(10, "feet"),
  19161. weight: math.unit(1000, "kg"),
  19162. name: "Side",
  19163. image: {
  19164. source: "./media/characters/ereus/side.svg",
  19165. extra: 1157 / 959,
  19166. bottom: 153 / 1312.5
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(10, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "E-ter" },
  19180. {
  19181. side: {
  19182. height: math.unit(4.5, "feet"),
  19183. weight: math.unit(500, "lb"),
  19184. name: "Side",
  19185. image: {
  19186. source: "./media/characters/e-ter/side.svg",
  19187. extra: 1550 / 1248,
  19188. bottom: 146 / 1694
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(4.5, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Yamie" },
  19202. {
  19203. side: {
  19204. height: math.unit(9.7, "feet"),
  19205. weight: math.unit(4000, "kg"),
  19206. name: "Side",
  19207. image: {
  19208. source: "./media/characters/yamie/side.svg"
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(9.7, "feet"),
  19216. default: true
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Anders" },
  19222. {
  19223. front: {
  19224. height: math.unit(50, "feet"),
  19225. weight: math.unit(50000, "kg"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/anders/front.svg",
  19229. extra: 570 / 539,
  19230. bottom: 14.7 / 586.7
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Large",
  19237. height: math.unit(50, "feet")
  19238. },
  19239. {
  19240. name: "Macro",
  19241. height: math.unit(2000, "feet"),
  19242. default: true
  19243. },
  19244. {
  19245. name: "Megamacro",
  19246. height: math.unit(12, "miles")
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Reban" },
  19252. {
  19253. front: {
  19254. height: math.unit(7 + 2 / 12, "feet"),
  19255. weight: math.unit(300, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/reban/front.svg",
  19259. extra: 516 / 487,
  19260. bottom: 42.82 / 558.356
  19261. }
  19262. },
  19263. dick: {
  19264. height: math.unit(7 / 5, "feet"),
  19265. name: "Dick",
  19266. image: {
  19267. source: "./media/characters/reban/dick.svg"
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Natural Height",
  19274. height: math.unit(7 + 2 / 12, "feet")
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(500, "feet"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Canon Height",
  19283. height: math.unit(50, "AU")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Terrance Keayes" },
  19289. {
  19290. front: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/terrance-keayes/front.svg",
  19296. extra: 1.005,
  19297. bottom: 151 / 1615
  19298. }
  19299. },
  19300. side: {
  19301. height: math.unit(6, "feet"),
  19302. weight: math.unit(150, "lb"),
  19303. name: "Side",
  19304. image: {
  19305. source: "./media/characters/terrance-keayes/side.svg",
  19306. extra: 1.005,
  19307. bottom: 129.4 / 1544
  19308. }
  19309. },
  19310. back: {
  19311. height: math.unit(6, "feet"),
  19312. weight: math.unit(150, "lb"),
  19313. name: "Back",
  19314. image: {
  19315. source: "./media/characters/terrance-keayes/back.svg",
  19316. extra: 1.005,
  19317. bottom: 58.4 / 1557.3
  19318. }
  19319. },
  19320. dick: {
  19321. height: math.unit(6 * 0.208, "feet"),
  19322. name: "Dick",
  19323. image: {
  19324. source: "./media/characters/terrance-keayes/dick.svg"
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Canon Height",
  19331. height: math.unit(35, "miles"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Ofelia" },
  19338. {
  19339. front: {
  19340. height: math.unit(6, "feet"),
  19341. weight: math.unit(150, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/ofelia/front.svg",
  19345. extra: 546 / 541,
  19346. bottom: 39 / 583
  19347. }
  19348. },
  19349. back: {
  19350. height: math.unit(6, "feet"),
  19351. weight: math.unit(150, "lb"),
  19352. name: "Back",
  19353. image: {
  19354. source: "./media/characters/ofelia/back.svg",
  19355. extra: 564 / 559.5,
  19356. bottom: 8.69 / 573.02
  19357. }
  19358. },
  19359. maw: {
  19360. height: math.unit(1, "feet"),
  19361. name: "Maw",
  19362. image: {
  19363. source: "./media/characters/ofelia/maw.svg"
  19364. }
  19365. },
  19366. foot: {
  19367. height: math.unit(1.949, "feet"),
  19368. name: "Foot",
  19369. image: {
  19370. source: "./media/characters/ofelia/foot.svg"
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Canon Height",
  19377. height: math.unit(2000, "miles"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Samuel" },
  19384. {
  19385. front: {
  19386. height: math.unit(6, "feet"),
  19387. weight: math.unit(150, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/samuel/front.svg",
  19391. extra: 265 / 258,
  19392. bottom: 2 / 266.1566
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(100, "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Full Size",
  19404. height: math.unit(1000, "miles")
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Beishir Kiel" },
  19410. {
  19411. front: {
  19412. height: math.unit(6, "feet"),
  19413. weight: math.unit(300, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/beishir-kiel/front.svg",
  19417. extra: 569 / 547,
  19418. bottom: 41.9 / 609
  19419. }
  19420. },
  19421. maw: {
  19422. height: math.unit(6 * 0.202, "feet"),
  19423. name: "Maw",
  19424. image: {
  19425. source: "./media/characters/beishir-kiel/maw.svg"
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Macro",
  19432. height: math.unit(300, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Logan Grey" },
  19439. {
  19440. front: {
  19441. height: math.unit(5 + 8 / 12, "feet"),
  19442. weight: math.unit(120, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/logan-grey/front.svg",
  19446. extra: 2539 / 2393,
  19447. bottom: 97.6 / 2636.37
  19448. }
  19449. },
  19450. frontAlt: {
  19451. height: math.unit(5 + 8 / 12, "feet"),
  19452. weight: math.unit(120, "lb"),
  19453. name: "Front (Alt)",
  19454. image: {
  19455. source: "./media/characters/logan-grey/front-alt.svg",
  19456. extra: 958 / 893,
  19457. bottom: 15 / 970.768
  19458. }
  19459. },
  19460. back: {
  19461. height: math.unit(5 + 8 / 12, "feet"),
  19462. weight: math.unit(120, "lb"),
  19463. name: "Back",
  19464. image: {
  19465. source: "./media/characters/logan-grey/back.svg",
  19466. extra: 958 / 893,
  19467. bottom: 2.1881 / 970.9788
  19468. }
  19469. },
  19470. dick: {
  19471. height: math.unit(1.437, "feet"),
  19472. name: "Dick",
  19473. image: {
  19474. source: "./media/characters/logan-grey/dick.svg"
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(5 + 8 / 12, "feet")
  19482. },
  19483. {
  19484. name: "The 500 Foot Femboy",
  19485. height: math.unit(500, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Megmacro",
  19490. height: math.unit(20, "miles")
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Draganta" },
  19496. {
  19497. front: {
  19498. height: math.unit(8 + 2 / 12, "feet"),
  19499. weight: math.unit(275, "lb"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/draganta/front.svg",
  19503. extra: 1177 / 1135,
  19504. bottom: 33.46 / 1212.1
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Normal",
  19511. height: math.unit(8 + 6 / 12, "feet"),
  19512. default: true
  19513. },
  19514. {
  19515. name: "Macro",
  19516. height: math.unit(150, "feet")
  19517. },
  19518. {
  19519. name: "Megamacro",
  19520. height: math.unit(1000, "miles")
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Voski", species: "Corvid" },
  19526. {
  19527. front: {
  19528. height: math.unit(1.72, "m"),
  19529. weight: math.unit(80, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/voski/front.svg",
  19533. extra: 2076.22 / 2022.4,
  19534. bottom: 102.7 / 2177.3866
  19535. }
  19536. },
  19537. frontNsfw: {
  19538. height: math.unit(1.72, "m"),
  19539. weight: math.unit(80, "lb"),
  19540. name: "Front (NSFW)",
  19541. image: {
  19542. source: "./media/characters/voski/front-nsfw.svg",
  19543. extra: 2076.22 / 2022.4,
  19544. bottom: 102.7 / 2177.3866
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(1.72, "m"),
  19549. weight: math.unit(80, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/voski/back.svg",
  19553. extra: 2104 / 2051,
  19554. bottom: 10.45 / 2113.63
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(1.72, "m")
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(55, "m"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Macro+",
  19570. height: math.unit(300, "m")
  19571. },
  19572. {
  19573. name: "Macro++",
  19574. height: math.unit(700, "m")
  19575. },
  19576. {
  19577. name: "Macro+++",
  19578. height: math.unit(4500, "m")
  19579. },
  19580. {
  19581. name: "Macro++++",
  19582. height: math.unit(45, "km")
  19583. },
  19584. {
  19585. name: "Macro+++++",
  19586. height: math.unit(1220, "km")
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Icowom Lee" },
  19592. {
  19593. front: {
  19594. height: math.unit(2.3, "m"),
  19595. weight: math.unit(304, "kg"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/icowom-lee/front.svg",
  19599. extra: 3076 / 2933,
  19600. bottom: 51.4 / 3125.1889
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(2.3, "meters"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(94, "meters"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19619. {
  19620. front: {
  19621. height: math.unit(22, "meters"),
  19622. weight: math.unit(21000, "kg"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/shock-diamond/front.svg",
  19626. extra: 2204 / 2053,
  19627. bottom: 65 / 2239.47
  19628. }
  19629. },
  19630. frontNude: {
  19631. height: math.unit(22, "meters"),
  19632. weight: math.unit(21000, "kg"),
  19633. name: "Front (Nude)",
  19634. image: {
  19635. source: "./media/characters/shock-diamond/front-nude.svg",
  19636. extra: 2514 / 2285,
  19637. bottom: 13 / 2527.56
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(3, "meters")
  19645. },
  19646. {
  19647. name: "Macro",
  19648. height: math.unit(22, "meters"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Rory" },
  19655. {
  19656. front: {
  19657. height: math.unit(5 + 4 / 12, "feet"),
  19658. weight: math.unit(120, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/rory/front.svg",
  19662. extra: 589 / 556,
  19663. bottom: 45.7 / 635.76
  19664. }
  19665. },
  19666. frontNude: {
  19667. height: math.unit(5 + 4 / 12, "feet"),
  19668. weight: math.unit(120, "lb"),
  19669. name: "Front (Nude)",
  19670. image: {
  19671. source: "./media/characters/rory/front-nude.svg",
  19672. extra: 589 / 556,
  19673. bottom: 45.7 / 635.76
  19674. }
  19675. },
  19676. side: {
  19677. height: math.unit(5 + 4 / 12, "feet"),
  19678. weight: math.unit(120, "lb"),
  19679. name: "Side",
  19680. image: {
  19681. source: "./media/characters/rory/side.svg",
  19682. extra: 597 / 564,
  19683. bottom: 55 / 653
  19684. }
  19685. },
  19686. back: {
  19687. height: math.unit(5 + 4 / 12, "feet"),
  19688. weight: math.unit(120, "lb"),
  19689. name: "Back",
  19690. image: {
  19691. source: "./media/characters/rory/back.svg",
  19692. extra: 620 / 585,
  19693. bottom: 8.86 / 630.43
  19694. }
  19695. },
  19696. dick: {
  19697. height: math.unit(0.86, "feet"),
  19698. name: "Dick",
  19699. image: {
  19700. source: "./media/characters/rory/dick.svg"
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 4 / 12, "feet"),
  19708. default: true
  19709. },
  19710. {
  19711. name: "Macro",
  19712. height: math.unit(100, "feet")
  19713. },
  19714. {
  19715. name: "Macro+",
  19716. height: math.unit(140, "feet")
  19717. },
  19718. {
  19719. name: "Macro++",
  19720. height: math.unit(300, "feet")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Sprisk" },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 9 / 12, "feet"),
  19729. weight: math.unit(190, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/sprisk/front.svg",
  19733. extra: 1225 / 1180,
  19734. bottom: 42.7 / 1266.4
  19735. }
  19736. },
  19737. frontNsfw: {
  19738. height: math.unit(5 + 9 / 12, "feet"),
  19739. weight: math.unit(190, "lb"),
  19740. name: "Front (NSFW)",
  19741. image: {
  19742. source: "./media/characters/sprisk/front-nsfw.svg",
  19743. extra: 1225 / 1180,
  19744. bottom: 42.7 / 1266.4
  19745. }
  19746. },
  19747. back: {
  19748. height: math.unit(5 + 9 / 12, "feet"),
  19749. weight: math.unit(190, "lb"),
  19750. name: "Back",
  19751. image: {
  19752. source: "./media/characters/sprisk/back.svg",
  19753. extra: 1247 / 1200,
  19754. bottom: 5.6 / 1253.04
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Tiny",
  19761. height: math.unit(2, "inches")
  19762. },
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(5 + 9 / 12, "feet"),
  19766. default: true
  19767. },
  19768. {
  19769. name: "Mini Macro",
  19770. height: math.unit(18, "feet")
  19771. },
  19772. {
  19773. name: "Macro",
  19774. height: math.unit(100, "feet")
  19775. },
  19776. {
  19777. name: "MACRO",
  19778. height: math.unit(50, "miles")
  19779. },
  19780. {
  19781. name: "M A C R O",
  19782. height: math.unit(300, "miles")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Bunsen" },
  19788. {
  19789. side: {
  19790. height: math.unit(15.6, "meters"),
  19791. weight: math.unit(700000, "kg"),
  19792. name: "Side",
  19793. image: {
  19794. source: "./media/characters/bunsen/side.svg",
  19795. extra: 1644 / 358
  19796. }
  19797. },
  19798. foot: {
  19799. height: math.unit(1.611 * 1644 / 358, "meter"),
  19800. name: "Foot",
  19801. image: {
  19802. source: "./media/characters/bunsen/foot.svg"
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Small",
  19809. height: math.unit(10, "feet")
  19810. },
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(15.6, "meters"),
  19814. default: true
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Sesh" },
  19820. {
  19821. front: {
  19822. height: math.unit(4 + 11 / 12, "feet"),
  19823. weight: math.unit(140, "lb"),
  19824. name: "Front",
  19825. image: {
  19826. source: "./media/characters/sesh/front.svg",
  19827. extra: 3420 / 3231,
  19828. bottom: 72 / 3949.5
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(4 + 11 / 12, "feet")
  19836. },
  19837. {
  19838. name: "Grown",
  19839. height: math.unit(15, "feet"),
  19840. default: true
  19841. },
  19842. {
  19843. name: "Macro",
  19844. height: math.unit(1500, "feet")
  19845. },
  19846. {
  19847. name: "Megamacro",
  19848. height: math.unit(30, "miles")
  19849. },
  19850. {
  19851. name: "Continental",
  19852. height: math.unit(3000, "miles")
  19853. },
  19854. {
  19855. name: "Gravity Mass",
  19856. height: math.unit(300000, "miles")
  19857. },
  19858. {
  19859. name: "Planet Buster",
  19860. height: math.unit(30000000, "miles")
  19861. },
  19862. {
  19863. name: "Big",
  19864. height: math.unit(3000000000, "miles")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Pepper" },
  19870. {
  19871. front: {
  19872. height: math.unit(9, "feet"),
  19873. weight: math.unit(350, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/pepper/front.svg",
  19877. extra: 1448/1312,
  19878. bottom: 9.4/1457.88
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(9, "feet"),
  19883. weight: math.unit(350, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/pepper/back.svg",
  19887. extra: 1423/1300,
  19888. bottom: 4.6/1429
  19889. }
  19890. },
  19891. maw: {
  19892. height: math.unit(0.932, "feet"),
  19893. name: "Maw",
  19894. image: {
  19895. source: "./media/characters/pepper/maw.svg"
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(9, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Maelstrom" },
  19909. {
  19910. front: {
  19911. height: math.unit(6, "feet"),
  19912. weight: math.unit(150, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/maelstrom/front.svg",
  19916. extra: 2100/1883,
  19917. bottom: 94/2196.7
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Less Kaiju",
  19924. height: math.unit(200, "feet")
  19925. },
  19926. {
  19927. name: "Kaiju",
  19928. height: math.unit(400, "feet"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Kaiju-er",
  19933. height: math.unit(600, "feet")
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Lexir" },
  19939. {
  19940. front: {
  19941. height: math.unit(6 + 5/12, "feet"),
  19942. weight: math.unit(180, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/lexir/front.svg",
  19946. extra: 180/172,
  19947. bottom: 12/192
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(6 + 5/12, "feet"),
  19952. weight: math.unit(180, "lb"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/lexir/back.svg",
  19956. extra: 183.84/175.5,
  19957. bottom: 3.1/187
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Very Smal",
  19964. height: math.unit(1, "nm")
  19965. },
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(6 + 5/12, "feet"),
  19969. default: true
  19970. },
  19971. {
  19972. name: "Macro",
  19973. height: math.unit(1, "mile")
  19974. },
  19975. {
  19976. name: "Megamacro",
  19977. height: math.unit(50, "miles")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Maksio" },
  19983. {
  19984. front: {
  19985. height: math.unit(1.5, "meters"),
  19986. weight: math.unit(100, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/maksio/front.svg",
  19990. extra: 1549/1531,
  19991. bottom: 123.7/1674.5429
  19992. }
  19993. },
  19994. back: {
  19995. height: math.unit(1.5, "meters"),
  19996. weight: math.unit(100, "lb"),
  19997. name: "Back",
  19998. image: {
  19999. source: "./media/characters/maksio/back.svg",
  20000. extra: 1541/1509,
  20001. bottom: 97/1639
  20002. }
  20003. },
  20004. hand: {
  20005. height: math.unit(0.621, "feet"),
  20006. name: "Hand",
  20007. image: {
  20008. source: "./media/characters/maksio/hand.svg"
  20009. }
  20010. },
  20011. foot: {
  20012. height: math.unit(1.611, "feet"),
  20013. name: "Foot",
  20014. image: {
  20015. source: "./media/characters/maksio/foot.svg"
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Shrunken",
  20022. height: math.unit(10, "cm")
  20023. },
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(150, "cm"),
  20027. default: true
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Erza Bear" },
  20033. {
  20034. front: {
  20035. height: math.unit(100, "feet"),
  20036. name: "Front",
  20037. image: {
  20038. source: "./media/characters/erza-bear/front.svg",
  20039. extra: 2449/2390,
  20040. bottom: 46/2494
  20041. }
  20042. },
  20043. back: {
  20044. height: math.unit(100, "feet"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/erza-bear/back.svg",
  20048. extra: 2489/2430,
  20049. bottom: 85.4/2480
  20050. }
  20051. },
  20052. tail: {
  20053. height: math.unit(42, "feet"),
  20054. name: "Tail",
  20055. image: {
  20056. source: "./media/characters/erza-bear/tail.svg"
  20057. }
  20058. },
  20059. tongue: {
  20060. height: math.unit(8, "feet"),
  20061. name: "Tongue",
  20062. image: {
  20063. source: "./media/characters/erza-bear/tongue.svg"
  20064. }
  20065. },
  20066. dick: {
  20067. height: math.unit(10.5, "feet"),
  20068. name: "Dick",
  20069. image: {
  20070. source: "./media/characters/erza-bear/dick.svg"
  20071. }
  20072. },
  20073. dickVertical: {
  20074. height: math.unit(16.9, "feet"),
  20075. name: "Dick (Vertical)",
  20076. image: {
  20077. source: "./media/characters/erza-bear/dick-vertical.svg"
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Macro",
  20084. height: math.unit(100, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Violet Flor", species: "Skunk" },
  20091. {
  20092. front: {
  20093. height: math.unit(172, "cm"),
  20094. weight: math.unit(73, "kg"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/violet-flor/front.svg",
  20098. extra: 1530/1442,
  20099. bottom: 61.9/1588.8
  20100. }
  20101. },
  20102. back: {
  20103. height: math.unit(180, "cm"),
  20104. weight: math.unit(73, "kg"),
  20105. name: "Back",
  20106. image: {
  20107. source: "./media/characters/violet-flor/back.svg",
  20108. extra: 1692/1630,
  20109. bottom: 20/1712
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(172, "cm"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Lynn Rhea", species: "Shark" },
  20123. {
  20124. front: {
  20125. height: math.unit(6, "feet"),
  20126. weight: math.unit(220, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/lynn-rhea/front.svg",
  20130. extra: 310/273
  20131. }
  20132. },
  20133. back: {
  20134. height: math.unit(6, "feet"),
  20135. weight: math.unit(220, "lb"),
  20136. name: "Back",
  20137. image: {
  20138. source: "./media/characters/lynn-rhea/back.svg",
  20139. extra: 310/273
  20140. }
  20141. },
  20142. dicks: {
  20143. height: math.unit(0.9, "feet"),
  20144. name: "Dicks",
  20145. image: {
  20146. source: "./media/characters/lynn-rhea/dicks.svg"
  20147. }
  20148. },
  20149. slit: {
  20150. height: math.unit(0.4, "feet"),
  20151. name: "Slit",
  20152. image: {
  20153. source: "./media/characters/lynn-rhea/slit.svg"
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Micro",
  20160. height: math.unit(1, "inch")
  20161. },
  20162. {
  20163. name: "Macro",
  20164. height: math.unit(60, "feet"),
  20165. default: true
  20166. },
  20167. {
  20168. name: "Megamacro",
  20169. height: math.unit(2, "miles")
  20170. },
  20171. {
  20172. name: "Gigamacro",
  20173. height: math.unit(3, "earths")
  20174. },
  20175. {
  20176. name: "Galactic",
  20177. height: math.unit(0.8, "galaxies")
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Valathos" },
  20183. {
  20184. front: {
  20185. height: math.unit(1600, "feet"),
  20186. weight: math.unit(85758785169, "kg"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/valathos/front.svg",
  20190. extra: 1451/1339
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Macro",
  20197. height: math.unit(1600, "feet"),
  20198. default: true
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Azula" },
  20204. {
  20205. front: {
  20206. height: math.unit(7 + 5/12, "feet"),
  20207. weight: math.unit(300, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/azula/front.svg",
  20211. extra: 3208/2880,
  20212. bottom: 80.2/3277
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(7 + 5/12, "feet"),
  20217. weight: math.unit(300, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/azula/back.svg",
  20221. extra: 3169/2822,
  20222. bottom: 150.6/3321
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(7 + 5/12, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Big",
  20234. height: math.unit(20, "feet")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Rupert" },
  20240. {
  20241. front: {
  20242. height: math.unit(5 + 1/12, "feet"),
  20243. weight: math.unit(110, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/rupert/front.svg",
  20247. extra: 1549/1495,
  20248. bottom: 54.2/1604.4
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(5 + 1/12, "feet"),
  20256. default: true
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Sheera Castellar" },
  20262. {
  20263. front: {
  20264. height: math.unit(8 + 4/12, "feet"),
  20265. weight: math.unit(350, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/sheera-castellar/front.svg",
  20269. extra: 1957/1894,
  20270. bottom: 26.97/1975.017
  20271. }
  20272. },
  20273. side: {
  20274. height: math.unit(8 + 4/12, "feet"),
  20275. weight: math.unit(350, "lb"),
  20276. name: "Side",
  20277. image: {
  20278. source: "./media/characters/sheera-castellar/side.svg",
  20279. extra: 1957/1894
  20280. }
  20281. },
  20282. back: {
  20283. height: math.unit(8 + 4/12, "feet"),
  20284. weight: math.unit(350, "lb"),
  20285. name: "Back",
  20286. image: {
  20287. source: "./media/characters/sheera-castellar/back.svg",
  20288. extra: 1957/1894
  20289. }
  20290. },
  20291. angled: {
  20292. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20293. weight: math.unit(350, "lb"),
  20294. name: "Angled",
  20295. image: {
  20296. source: "./media/characters/sheera-castellar/angled.svg",
  20297. extra: 1807/1707,
  20298. bottom: 68/1875
  20299. }
  20300. },
  20301. genitals: {
  20302. height: math.unit(2.2, "feet"),
  20303. name: "Genitals",
  20304. image: {
  20305. source: "./media/characters/sheera-castellar/genitals.svg"
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(8 + 4/12, "feet")
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(150, "feet"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Macro+",
  20321. height: math.unit(800, "feet")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Jaipur", species: "Black Panther" },
  20327. {
  20328. front: {
  20329. height: math.unit(6, "feet"),
  20330. weight: math.unit(150, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/jaipur/front.svg",
  20334. extra: 3860/3731,
  20335. bottom: 287/4140
  20336. }
  20337. },
  20338. back: {
  20339. height: math.unit(6, "feet"),
  20340. weight: math.unit(150, "lb"),
  20341. name: "Back",
  20342. image: {
  20343. source: "./media/characters/jaipur/back.svg",
  20344. extra: 4060/3930,
  20345. bottom: 151/4200
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(1.85, "meters"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(150, "meters")
  20358. },
  20359. {
  20360. name: "Macro+",
  20361. height: math.unit(0.5, "miles")
  20362. },
  20363. {
  20364. name: "Macro++",
  20365. height: math.unit(2.5, "miles")
  20366. },
  20367. {
  20368. name: "Macro+++",
  20369. height: math.unit(12, "miles")
  20370. },
  20371. {
  20372. name: "Macro++++",
  20373. height: math.unit(120, "miles")
  20374. },
  20375. {
  20376. name: "Macro+++++",
  20377. height: math.unit(1200, "miles")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Sheila (Wolf)" },
  20383. {
  20384. front: {
  20385. height: math.unit(6, "feet"),
  20386. weight: math.unit(150, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/sheila-wolf/front.svg",
  20390. extra: 1931/1808,
  20391. bottom: 29.5/1960
  20392. }
  20393. },
  20394. dick: {
  20395. height: math.unit(1.464, "feet"),
  20396. name: "Dick",
  20397. image: {
  20398. source: "./media/characters/sheila-wolf/dick.svg"
  20399. }
  20400. },
  20401. muzzle: {
  20402. height: math.unit(0.513, "feet"),
  20403. name: "Muzzle",
  20404. image: {
  20405. source: "./media/characters/sheila-wolf/muzzle.svg"
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Macro",
  20412. height: math.unit(70, "feet"),
  20413. default: true
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Almor", species: "Dragon" },
  20419. {
  20420. front: {
  20421. height: math.unit(32, "meters"),
  20422. weight: math.unit(300000, "kg"),
  20423. name: "Front",
  20424. image: {
  20425. source: "./media/characters/almor/front.svg",
  20426. extra: 1408/1322,
  20427. bottom: 94.6/1506.5
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Macro",
  20434. height: math.unit(32, "meters"),
  20435. default: true
  20436. },
  20437. ]
  20438. ))
  20439. characterMakers.push(() => makeCharacter(
  20440. { name: "Silver" },
  20441. {
  20442. front: {
  20443. height: math.unit(7, "feet"),
  20444. weight: math.unit(200, "lb"),
  20445. name: "Front",
  20446. image: {
  20447. source: "./media/characters/silver/front.svg",
  20448. extra: 472.1/450.5,
  20449. bottom: 26.5/499.424
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(7, "feet"),
  20457. default: true
  20458. },
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(800, "feet")
  20462. },
  20463. {
  20464. name: "Megamacro",
  20465. height: math.unit(250, "miles")
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Pliskin" },
  20471. {
  20472. front: {
  20473. height: math.unit(6, "feet"),
  20474. weight: math.unit(150, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/pliskin/front.svg",
  20478. extra: 1469/1359,
  20479. bottom: 70/1540
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Micro",
  20486. height: math.unit(3, "inches")
  20487. },
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(5 + 11/12, "feet"),
  20491. default: true
  20492. },
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(120, "feet")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Sammy" },
  20501. {
  20502. front: {
  20503. height: math.unit(6, "feet"),
  20504. weight: math.unit(150, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/sammy/front.svg",
  20508. extra: 1193/1089,
  20509. bottom: 30.5/1226
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Macro",
  20516. height: math.unit(1700, "feet"),
  20517. default: true
  20518. },
  20519. {
  20520. name: "Examacro",
  20521. height: math.unit(2.5e9, "lightyears")
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Kuru", species: "Umbra" },
  20527. {
  20528. front: {
  20529. height: math.unit(21, "meters"),
  20530. weight: math.unit(12, "tonnes"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/kuru/front.svg",
  20534. extra: 4301/3785,
  20535. bottom: 371.3/4691
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Macro",
  20542. height: math.unit(21, "meters"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Rakka", species: "Umbra" },
  20549. {
  20550. front: {
  20551. height: math.unit(23, "meters"),
  20552. weight: math.unit(12.2, "tonnes"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/rakka/front.svg",
  20556. extra: 4670/4169,
  20557. bottom: 301/4968.7
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Macro",
  20564. height: math.unit(23, "meters"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Rhys (Feline)" },
  20571. {
  20572. front: {
  20573. height: math.unit(6, "feet"),
  20574. weight: math.unit(150, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/rhys-feline/front.svg",
  20578. extra: 2488/2308,
  20579. bottom: 35.67/2519.19
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Really Small",
  20586. height: math.unit(1, "nm")
  20587. },
  20588. {
  20589. name: "Micro",
  20590. height: math.unit(4, "inches")
  20591. },
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(4 + 10/12, "feet"),
  20595. default: true
  20596. },
  20597. {
  20598. name: "Macro",
  20599. height: math.unit(100, "feet")
  20600. },
  20601. {
  20602. name: "Megamacto",
  20603. height: math.unit(50, "miles")
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Alydar", species: "Raven/Snow Leopard" },
  20609. {
  20610. side: {
  20611. height: math.unit(30, "feet"),
  20612. weight: math.unit(35000, "kg"),
  20613. name: "Side",
  20614. image: {
  20615. source: "./media/characters/alydar/side.svg",
  20616. extra: 234/222,
  20617. bottom: 6.5/241
  20618. }
  20619. },
  20620. front: {
  20621. height: math.unit(30, "feet"),
  20622. weight: math.unit(35000, "kg"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/alydar/front.svg",
  20626. extra: 223.37/210.2,
  20627. bottom: 22.3/246.76
  20628. }
  20629. },
  20630. top: {
  20631. height: math.unit(64.54, "feet"),
  20632. weight: math.unit(35000, "kg"),
  20633. name: "Top",
  20634. image: {
  20635. source: "./media/characters/alydar/top.svg"
  20636. }
  20637. },
  20638. anthro: {
  20639. height: math.unit(30, "feet"),
  20640. weight: math.unit(9000, "kg"),
  20641. name: "Anthro",
  20642. image: {
  20643. source: "./media/characters/alydar/anthro.svg",
  20644. extra: 432/421,
  20645. bottom: 7.18/440
  20646. }
  20647. },
  20648. maw: {
  20649. height: math.unit(11.693, "feet"),
  20650. name: "Maw",
  20651. image: {
  20652. source: "./media/characters/alydar/maw.svg"
  20653. }
  20654. },
  20655. head: {
  20656. height: math.unit(11.693, "feet"),
  20657. name: "Head",
  20658. image: {
  20659. source: "./media/characters/alydar/head.svg"
  20660. }
  20661. },
  20662. headAlt: {
  20663. height: math.unit(12.861, "feet"),
  20664. name: "Head (Alt)",
  20665. image: {
  20666. source: "./media/characters/alydar/head-alt.svg"
  20667. }
  20668. },
  20669. wing: {
  20670. height: math.unit(20.712, "feet"),
  20671. name: "Wing",
  20672. image: {
  20673. source: "./media/characters/alydar/wing.svg"
  20674. }
  20675. },
  20676. wingFeather: {
  20677. height: math.unit(9.662, "feet"),
  20678. name: "Wing Feather",
  20679. image: {
  20680. source: "./media/characters/alydar/wing-feather.svg"
  20681. }
  20682. },
  20683. countourFeather: {
  20684. height: math.unit(4.154, "feet"),
  20685. name: "Contour Feather",
  20686. image: {
  20687. source: "./media/characters/alydar/contour-feather.svg"
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Diplomatic",
  20694. height: math.unit(13, "feet"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Small",
  20699. height: math.unit(30, "feet")
  20700. },
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(95, "feet"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Large",
  20708. height: math.unit(285, "feet")
  20709. },
  20710. {
  20711. name: "Incomprehensible",
  20712. height: math.unit(450, "megameters")
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Selicia" },
  20718. {
  20719. side: {
  20720. height: math.unit(11, "feet"),
  20721. weight: math.unit(1750, "kg"),
  20722. name: "Side",
  20723. image: {
  20724. source: "./media/characters/selicia/side.svg",
  20725. extra: 440/396,
  20726. bottom: 24.8/465.979
  20727. }
  20728. },
  20729. maw: {
  20730. height: math.unit(4.665, "feet"),
  20731. name: "Maw",
  20732. image: {
  20733. source: "./media/characters/selicia/maw.svg"
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(11, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Layla" },
  20747. {
  20748. side: {
  20749. height: math.unit(2 + 6 /12, "feet"),
  20750. weight: math.unit(30, "lb"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/layla/side.svg",
  20754. extra: 244/188,
  20755. bottom: 18.2/262.1
  20756. }
  20757. },
  20758. back: {
  20759. height: math.unit(2 + 6 /12, "feet"),
  20760. weight: math.unit(30, "lb"),
  20761. name: "Back",
  20762. image: {
  20763. source: "./media/characters/layla/back.svg",
  20764. extra: 308/241.5,
  20765. bottom: 8.9/316.8
  20766. }
  20767. },
  20768. cumming: {
  20769. height: math.unit(2 + 6 /12, "feet"),
  20770. weight: math.unit(30, "lb"),
  20771. name: "Cumming",
  20772. image: {
  20773. source: "./media/characters/layla/cumming.svg",
  20774. extra: 342/279,
  20775. bottom: 595/938
  20776. }
  20777. },
  20778. dickFlaccid: {
  20779. height: math.unit(2.595, "feet"),
  20780. name: "Flaccid Genitals",
  20781. image: {
  20782. source: "./media/characters/layla/dick-flaccid.svg"
  20783. }
  20784. },
  20785. dickErect: {
  20786. height: math.unit(2.359, "feet"),
  20787. name: "Erect Genitals",
  20788. image: {
  20789. source: "./media/characters/layla/dick-erect.svg"
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Micro",
  20796. height: math.unit(1, "inch")
  20797. },
  20798. {
  20799. name: "Small",
  20800. height: math.unit(1, "foot")
  20801. },
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(2 + 6/12, "feet"),
  20805. default: true
  20806. },
  20807. {
  20808. name: "Macro",
  20809. height: math.unit(200, "feet")
  20810. },
  20811. {
  20812. name: "Megamacro",
  20813. height: math.unit(1000, "miles")
  20814. },
  20815. {
  20816. name: "Planetary",
  20817. height: math.unit(8000, "miles")
  20818. },
  20819. {
  20820. name: "True Layla",
  20821. height: math.unit(200000*7, "multiverses")
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Knox" },
  20827. {
  20828. back: {
  20829. height: math.unit(10.5, "feet"),
  20830. weight: math.unit(800, "lb"),
  20831. name: "Back",
  20832. image: {
  20833. source: "./media/characters/knox/back.svg",
  20834. extra: 1486/1089,
  20835. bottom: 107/1601.4
  20836. }
  20837. },
  20838. side: {
  20839. height: math.unit(10.5, "feet"),
  20840. weight: math.unit(800, "lb"),
  20841. name: "Side",
  20842. image: {
  20843. source: "./media/characters/knox/side.svg",
  20844. extra: 244/218,
  20845. bottom: 14/260
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Compact",
  20852. height: math.unit(10.5, "feet"),
  20853. default: true
  20854. },
  20855. {
  20856. name: "Dynamax",
  20857. height: math.unit(210, "feet")
  20858. },
  20859. {
  20860. name: "Full Macro",
  20861. height: math.unit(850, "feet")
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Shin (Pikachu)" },
  20867. {
  20868. front: {
  20869. height: math.unit(6, "feet"),
  20870. weight: math.unit(152, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/shin-pikachu/front.svg",
  20874. extra: 1574/1480,
  20875. bottom: 53.3/1626
  20876. }
  20877. },
  20878. hand: {
  20879. height: math.unit(1.055, "feet"),
  20880. name: "Hand",
  20881. image: {
  20882. source: "./media/characters/shin-pikachu/hand.svg"
  20883. }
  20884. },
  20885. foot: {
  20886. height: math.unit(1.1, "feet"),
  20887. name: "Foot",
  20888. image: {
  20889. source: "./media/characters/shin-pikachu/foot.svg"
  20890. }
  20891. },
  20892. collar: {
  20893. height: math.unit(0.386, "feet"),
  20894. name: "Collar",
  20895. image: {
  20896. source: "./media/characters/shin-pikachu/collar.svg"
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Smallest",
  20903. height: math.unit(0.5, "inches")
  20904. },
  20905. {
  20906. name: "Micro",
  20907. height: math.unit(6, "inches")
  20908. },
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(6, "feet"),
  20912. default: true
  20913. },
  20914. {
  20915. name: "Macro",
  20916. height: math.unit(150, "feet")
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Kayda" },
  20922. {
  20923. front: {
  20924. height: math.unit(28, "feet"),
  20925. weight: math.unit(10500, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/kayda/front.svg",
  20929. extra: 1536/1428,
  20930. bottom: 68.7/1603
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(28, "feet"),
  20935. weight: math.unit(10500, "lb"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/kayda/back.svg",
  20939. extra: 1557/1464,
  20940. bottom: 39.5/1597.49
  20941. }
  20942. },
  20943. dick: {
  20944. height: math.unit(3.858, "feet"),
  20945. name: "Dick",
  20946. image: {
  20947. source: "./media/characters/kayda/dick.svg"
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Macro",
  20954. height: math.unit(28, "feet"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Brian", species: "Barbary Lion" },
  20961. {
  20962. front: {
  20963. height: math.unit(10 + 11/12, "feet"),
  20964. weight: math.unit(1400, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/brian/front.svg",
  20968. extra: 737/692,
  20969. bottom: 55.4/785
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(10 + 11/12, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Khemri", species: "Jackal" },
  20983. {
  20984. front: {
  20985. height: math.unit(5 + 8/12, "feet"),
  20986. weight: math.unit(140, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/khemri/front.svg",
  20990. extra: 4780/4059,
  20991. bottom: 80.1/4859.25
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Micro",
  20998. height: math.unit(6, "inches")
  20999. },
  21000. {
  21001. name: "Normal",
  21002. height: math.unit(5 + 8/12, "feet"),
  21003. default: true
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Felix Braveheart" },
  21009. {
  21010. front: {
  21011. height: math.unit(13, "feet"),
  21012. weight: math.unit(1700, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/felix-braveheart/front.svg",
  21016. extra: 1222/1157,
  21017. bottom: 53.2/1280
  21018. }
  21019. },
  21020. back: {
  21021. height: math.unit(13, "feet"),
  21022. weight: math.unit(1700, "lb"),
  21023. name: "Back",
  21024. image: {
  21025. source: "./media/characters/felix-braveheart/back.svg",
  21026. extra: 1277/1203,
  21027. bottom: 50.2/1327
  21028. }
  21029. },
  21030. feral: {
  21031. height: math.unit(6, "feet"),
  21032. weight: math.unit(400, "lb"),
  21033. name: "Feral",
  21034. image: {
  21035. source: "./media/characters/felix-braveheart/feral.svg",
  21036. extra: 682/625,
  21037. bottom: 6.9/688
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(13, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Shadow Blade" },
  21051. {
  21052. side: {
  21053. height: math.unit(5 + 11/12, "feet"),
  21054. weight: math.unit(1400, "lb"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/shadow-blade/side.svg",
  21058. extra: 1726/1267,
  21059. bottom: 58.4/1785
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(5 + 11/12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Karla Halldor" },
  21073. {
  21074. front: {
  21075. height: math.unit(1 + 6/12, "feet"),
  21076. weight: math.unit(25, "lb"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/karla-halldor/front.svg",
  21080. extra: 1459/1383,
  21081. bottom: 12/1472
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(1 + 6/12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Ariam" },
  21095. {
  21096. front: {
  21097. height: math.unit(6 + 2/12, "feet"),
  21098. weight: math.unit(160, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/ariam/front.svg",
  21102. extra: 714/617,
  21103. bottom: 23.4/737,
  21104. }
  21105. },
  21106. squatting: {
  21107. height: math.unit(4.1, "feet"),
  21108. weight: math.unit(160, "lb"),
  21109. name: "Squatting",
  21110. image: {
  21111. source: "./media/characters/ariam/squatting.svg",
  21112. extra: 2617/2112,
  21113. bottom: 61.2/2681,
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Normal",
  21120. height: math.unit(6 + 2/12, "feet"),
  21121. default: true
  21122. },
  21123. {
  21124. name: "Normal+",
  21125. height: math.unit(4, "meters")
  21126. },
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(50, "meters")
  21130. },
  21131. {
  21132. name: "Macro+",
  21133. height: math.unit(100, "meters")
  21134. },
  21135. {
  21136. name: "Megamacro",
  21137. height: math.unit(20, "km")
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Qodri Class-of-'Fortwelve-Six" },
  21143. {
  21144. front: {
  21145. height: math.unit(1.67, "meters"),
  21146. weight: math.unit(140, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21150. extra: 438/410,
  21151. bottom: 0.75/439
  21152. }
  21153. },
  21154. },
  21155. [
  21156. {
  21157. name: "Shrunken",
  21158. height: math.unit(7.6, "cm")
  21159. },
  21160. {
  21161. name: "Human Scale",
  21162. height: math.unit(1.67, "meters")
  21163. },
  21164. {
  21165. name: "Wolxi Scale",
  21166. height: math.unit(36.7, "meters"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Izue Two-Mothers" },
  21173. {
  21174. front: {
  21175. height: math.unit(1.73, "meters"),
  21176. weight: math.unit(240, "lb"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/izue-two-mothers/front.svg",
  21180. extra: 469/437,
  21181. bottom: 1.24/470.6
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Shrunken",
  21188. height: math.unit(7.86, "cm")
  21189. },
  21190. {
  21191. name: "Human Scale",
  21192. height: math.unit(1.73, "meters")
  21193. },
  21194. {
  21195. name: "Wolxi Scale",
  21196. height: math.unit(38, "meters"),
  21197. default: true
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Teeku Love-Shack" },
  21203. {
  21204. front: {
  21205. height: math.unit(1.55, "meters"),
  21206. weight: math.unit(120, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/teeku-love-shack/front.svg",
  21210. extra: 387/362,
  21211. bottom: 1.51/388
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Shrunken",
  21218. height: math.unit(7, "cm")
  21219. },
  21220. {
  21221. name: "Human Scale",
  21222. height: math.unit(1.55, "meters")
  21223. },
  21224. {
  21225. name: "Wolxi Scale",
  21226. height: math.unit(34.1, "meters"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Dejma the Red" },
  21233. {
  21234. front: {
  21235. height: math.unit(1.83, "meters"),
  21236. weight: math.unit(135, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/dejma-the-red/front.svg",
  21240. extra: 480/458,
  21241. bottom: 1.8/482
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Shrunken",
  21248. height: math.unit(8.3, "cm")
  21249. },
  21250. {
  21251. name: "Human Scale",
  21252. height: math.unit(1.83, "meters")
  21253. },
  21254. {
  21255. name: "Wolxi Scale",
  21256. height: math.unit(40, "meters"),
  21257. default: true
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Aki" },
  21263. {
  21264. front: {
  21265. height: math.unit(1.78, "meters"),
  21266. weight: math.unit(65, "kg"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/aki/front.svg",
  21270. extra: 452/415
  21271. }
  21272. },
  21273. frontNsfw: {
  21274. height: math.unit(1.78, "meters"),
  21275. weight: math.unit(65, "kg"),
  21276. name: "Front (NSFW)",
  21277. image: {
  21278. source: "./media/characters/aki/front-nsfw.svg",
  21279. extra: 452/415
  21280. }
  21281. },
  21282. back: {
  21283. height: math.unit(1.78, "meters"),
  21284. weight: math.unit(65, "kg"),
  21285. name: "Back",
  21286. image: {
  21287. source: "./media/characters/aki/back.svg",
  21288. extra: 452/415
  21289. }
  21290. },
  21291. rump: {
  21292. height: math.unit(2.05, "feet"),
  21293. name: "Rump",
  21294. image: {
  21295. source: "./media/characters/aki/rump.svg"
  21296. }
  21297. },
  21298. dick: {
  21299. height: math.unit(0.95, "feet"),
  21300. name: "Dick",
  21301. image: {
  21302. source: "./media/characters/aki/dick.svg"
  21303. }
  21304. },
  21305. },
  21306. [
  21307. {
  21308. name: "Micro",
  21309. height: math.unit(15, "cm")
  21310. },
  21311. {
  21312. name: "Normal",
  21313. height: math.unit(178, "cm"),
  21314. default: true
  21315. },
  21316. {
  21317. name: "Macro",
  21318. height: math.unit(214, "m")
  21319. },
  21320. {
  21321. name: "Macro+",
  21322. height: math.unit(534, "m")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Ari" },
  21328. {
  21329. front: {
  21330. height: math.unit(5 + 5/12, "feet"),
  21331. weight: math.unit(120, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/ari/front.svg",
  21335. extra: 714.5/682,
  21336. bottom: 8/722.5
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(5 + 5/12, "feet")
  21344. },
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(100, "feet"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Megamacro",
  21352. height: math.unit(100, "miles")
  21353. },
  21354. {
  21355. name: "Gigamacro",
  21356. height: math.unit(80000, "miles")
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Bolt" },
  21362. {
  21363. side: {
  21364. height: math.unit(9, "feet"),
  21365. weight: math.unit(400, "kg"),
  21366. name: "Side",
  21367. image: {
  21368. source: "./media/characters/bolt/side.svg",
  21369. extra: 1126/896,
  21370. bottom: 60/1187.3,
  21371. }
  21372. },
  21373. },
  21374. [
  21375. {
  21376. name: "Micro",
  21377. height: math.unit(5, "inches")
  21378. },
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(9, "feet"),
  21382. default: true
  21383. },
  21384. {
  21385. name: "Macro",
  21386. height: math.unit(700, "feet")
  21387. },
  21388. {
  21389. name: "Max Size",
  21390. height: math.unit(1.52e22, "yottameters")
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Draekon Sylviar", species: "Dra'gal" },
  21396. {
  21397. front: {
  21398. height: math.unit(4.53, "meters"),
  21399. weight: math.unit(3, "tons"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/draekon-sylviar/front.svg",
  21403. extra: 1228/1068,
  21404. bottom: 41/1270
  21405. }
  21406. },
  21407. tail: {
  21408. height: math.unit(1.772, "meter"),
  21409. name: "Tail",
  21410. image: {
  21411. source: "./media/characters/draekon-sylviar/tail.svg"
  21412. }
  21413. },
  21414. head: {
  21415. height: math.unit(1.331, "meter"),
  21416. name: "Head",
  21417. image: {
  21418. source: "./media/characters/draekon-sylviar/head.svg"
  21419. }
  21420. },
  21421. hand: {
  21422. height: math.unit(0.564, "meter"),
  21423. name: "Hand",
  21424. image: {
  21425. source: "./media/characters/draekon-sylviar/hand.svg"
  21426. }
  21427. },
  21428. foot: {
  21429. height: math.unit(0.621, "meter"),
  21430. name: "Foot",
  21431. image: {
  21432. source: "./media/characters/draekon-sylviar/foot.svg",
  21433. bottom: 32/324
  21434. }
  21435. },
  21436. dick: {
  21437. height: math.unit(61, "cm"),
  21438. name: "Dick",
  21439. image: {
  21440. source: "./media/characters/draekon-sylviar/dick.svg"
  21441. }
  21442. },
  21443. dickseparated: {
  21444. height: math.unit(61, "cm"),
  21445. name: "Dick-separated",
  21446. image: {
  21447. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Small",
  21454. height: math.unit(4.53/2, "meters"),
  21455. default: true
  21456. },
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(4.53, "meters"),
  21460. default: true
  21461. },
  21462. {
  21463. name: "Large",
  21464. height: math.unit(4.53*2, "meters"),
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Brawler", species: "German Shepherd" },
  21470. {
  21471. front: {
  21472. height: math.unit(6 + 2/12, "feet"),
  21473. weight: math.unit(180, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/brawler/front.svg",
  21477. extra: 3301/3027,
  21478. bottom: 138/3439
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(6 + 2/12, "feet"),
  21486. default: true
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Alex", species: "Bayleef" },
  21492. {
  21493. front: {
  21494. height: math.unit(11, "feet"),
  21495. weight: math.unit(1000, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/alex/front.svg",
  21499. bottom: 44.5/620
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Micro",
  21506. height: math.unit(5, "inches")
  21507. },
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(11, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Macro",
  21515. height: math.unit(9.5e9, "feet")
  21516. },
  21517. {
  21518. name: "Max Size",
  21519. height: math.unit(1.4e283, "yottameters")
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Zenari" },
  21525. {
  21526. female: {
  21527. height: math.unit(29.9, "m"),
  21528. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21529. name: "Female",
  21530. image: {
  21531. source: "./media/characters/zenari/female.svg",
  21532. extra: 3281.6/3217,
  21533. bottom: 72.2/3353
  21534. }
  21535. },
  21536. male: {
  21537. height: math.unit(27.7, "m"),
  21538. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21539. name: "Male",
  21540. image: {
  21541. source: "./media/characters/zenari/male.svg",
  21542. extra: 3008/2991,
  21543. bottom: 54.6/3069
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(29.7, "meters"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Mactarian" },
  21557. {
  21558. female: {
  21559. height: math.unit(23.8, "m"),
  21560. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21561. name: "Female",
  21562. image: {
  21563. source: "./media/characters/mactarian/female.svg",
  21564. extra: 2662/2569,
  21565. bottom: 73/2736
  21566. }
  21567. },
  21568. male: {
  21569. height: math.unit(23.8, "m"),
  21570. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21571. name: "Male",
  21572. image: {
  21573. source: "./media/characters/mactarian/male.svg",
  21574. extra: 2673/2600,
  21575. bottom: 76/2750
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Macro",
  21582. height: math.unit(23.8, "meters"),
  21583. default: true
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Umok" },
  21589. {
  21590. female: {
  21591. height: math.unit(19.3, "m"),
  21592. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21593. name: "Female",
  21594. image: {
  21595. source: "./media/characters/umok/female.svg",
  21596. extra: 2186/2078,
  21597. bottom: 87/2277
  21598. }
  21599. },
  21600. male: {
  21601. height: math.unit(19.5, "m"),
  21602. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21603. name: "Male",
  21604. image: {
  21605. source: "./media/characters/umok/male.svg",
  21606. extra: 2233/2140,
  21607. bottom: 24.4/2258
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Macro",
  21614. height: math.unit(19.3, "meters"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Joraxian" },
  21621. {
  21622. female: {
  21623. height: math.unit(26.15, "m"),
  21624. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21625. name: "Female",
  21626. image: {
  21627. source: "./media/characters/joraxian/female.svg",
  21628. extra: 2943/2831,
  21629. bottom: 27/2972
  21630. }
  21631. },
  21632. male: {
  21633. height: math.unit(25.4, "m"),
  21634. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21635. name: "Male",
  21636. image: {
  21637. source: "./media/characters/joraxian/male.svg",
  21638. extra: 2835/2741,
  21639. bottom: 27/2862
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Macro",
  21646. height: math.unit(26.15, "meters"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Sthara" },
  21653. {
  21654. female: {
  21655. height: math.unit(21.6, "m"),
  21656. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21657. name: "Female",
  21658. image: {
  21659. source: "./media/characters/sthara/female.svg",
  21660. extra: 2516/2347,
  21661. bottom: 21.5/2537
  21662. }
  21663. },
  21664. male: {
  21665. height: math.unit(24, "m"),
  21666. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21667. name: "Male",
  21668. image: {
  21669. source: "./media/characters/sthara/male.svg",
  21670. extra: 2732/2607,
  21671. bottom: 23/2732
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Macro",
  21678. height: math.unit(21.6, "meters"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Luka Bryzant" },
  21685. {
  21686. front: {
  21687. height: math.unit(6 + 4/12, "feet"),
  21688. weight: math.unit(175, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/luka-bryzant/front.svg",
  21692. extra: 311/289,
  21693. bottom: 4/315
  21694. }
  21695. },
  21696. back: {
  21697. height: math.unit(6 + 4/12, "feet"),
  21698. weight: math.unit(175, "lb"),
  21699. name: "Back",
  21700. image: {
  21701. source: "./media/characters/luka-bryzant/back.svg",
  21702. extra: 311/289,
  21703. bottom: 3.8/313.7
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Micro",
  21710. height: math.unit(10, "inches")
  21711. },
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(6 + 4/12, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Large",
  21719. height: math.unit(12, "feet")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Aman Aquila" },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 7/12, "feet"),
  21728. weight: math.unit(185, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/aman-aquila/front.svg",
  21732. extra: 1013/976,
  21733. bottom: 45.6/1057
  21734. }
  21735. },
  21736. side: {
  21737. height: math.unit(5 + 7/12, "feet"),
  21738. weight: math.unit(185, "lb"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/aman-aquila/side.svg",
  21742. extra: 1054/1011,
  21743. bottom: 15/1070
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(5 + 7/12, "feet"),
  21748. weight: math.unit(185, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/aman-aquila/back.svg",
  21752. extra: 1026/970,
  21753. bottom: 12/1039
  21754. }
  21755. },
  21756. head: {
  21757. height: math.unit(1.211, "feet"),
  21758. name: "Head",
  21759. image: {
  21760. source: "./media/characters/aman-aquila/head.svg",
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Minimicro",
  21767. height: math.unit(0.057, "inches")
  21768. },
  21769. {
  21770. name: "Micro",
  21771. height: math.unit(7, "inches")
  21772. },
  21773. {
  21774. name: "Mini",
  21775. height: math.unit(3 + 7/12, "feet")
  21776. },
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(5 + 7/12, "feet"),
  21780. default: true
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(157 + 7/12, "feet")
  21785. },
  21786. {
  21787. name: "Megamacro",
  21788. height: math.unit(1557 + 7/12, "feet")
  21789. },
  21790. {
  21791. name: "Gigamacro",
  21792. height: math.unit(15557 + 7/12, "feet")
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Hiphae", species: "Mouse" },
  21798. {
  21799. front: {
  21800. height: math.unit(3 + 2/12, "inches"),
  21801. weight: math.unit(0.3, "ounces"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/hiphae/front.svg",
  21805. extra: 1931/1683,
  21806. bottom: 24/1955
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(3 + 1/2, "inches"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Nicky", species: "Shark" },
  21820. {
  21821. front: {
  21822. height: math.unit(5 + 10/12, "feet"),
  21823. weight: math.unit(165, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/nicky/front.svg",
  21827. extra: 3144/2886,
  21828. bottom: 45.6/3192
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(5 + 10/12, "feet"),
  21833. weight: math.unit(165, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/nicky/back.svg",
  21837. extra: 3055/2804,
  21838. bottom: 28.4/3087
  21839. }
  21840. },
  21841. frontclothed: {
  21842. height: math.unit(5 + 10/12, "feet"),
  21843. weight: math.unit(165, "lb"),
  21844. name: "Front-clothed",
  21845. image: {
  21846. source: "./media/characters/nicky/front-clothed.svg",
  21847. extra: 3184.9/2926.9,
  21848. bottom: 86.5/3239.9
  21849. }
  21850. },
  21851. foot: {
  21852. height: math.unit(1.16, "feet"),
  21853. name: "Foot",
  21854. image: {
  21855. source: "./media/characters/nicky/foot.svg"
  21856. }
  21857. },
  21858. feet: {
  21859. height: math.unit(1.34, "feet"),
  21860. name: "Feet",
  21861. image: {
  21862. source: "./media/characters/nicky/feet.svg"
  21863. }
  21864. },
  21865. maw: {
  21866. height: math.unit(0.9, "feet"),
  21867. name: "Maw",
  21868. image: {
  21869. source: "./media/characters/nicky/maw.svg"
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(5 + 10/12, "feet"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(60, "feet")
  21882. },
  21883. {
  21884. name: "Megamacro",
  21885. height: math.unit(1, "mile")
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Blair" },
  21891. {
  21892. side: {
  21893. height: math.unit(10, "feet"),
  21894. weight: math.unit(600, "lb"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/blair/side.svg",
  21898. bottom: 16.6/475,
  21899. extra: 458/431
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Micro",
  21906. height: math.unit(8, "inches")
  21907. },
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(10, "feet"),
  21911. default: true
  21912. },
  21913. {
  21914. name: "Macro",
  21915. height: math.unit(180, "feet")
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Fisher" },
  21921. {
  21922. front: {
  21923. height: math.unit(5 + 4/12, "feet"),
  21924. weight: math.unit(125, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/fisher/front.svg",
  21928. extra: 444/390,
  21929. bottom: 2/444.8
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Micro",
  21936. height: math.unit(4, "inches")
  21937. },
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(5 + 4/12, "feet"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Macro",
  21945. height: math.unit(100, "feet")
  21946. },
  21947. ]
  21948. ))
  21949. //characters
  21950. function makeCharacters() {
  21951. const results = [];
  21952. characterMakers.forEach(character => {
  21953. results.push(character());
  21954. });
  21955. return results;
  21956. }