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.
 
 
 

22403 wiersze
536 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(65, "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(65, "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(65, "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. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(1, "inch")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(6 + 2 / 12, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(1, "mile")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(100, "miles")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Coatl" },
  11308. {
  11309. front: {
  11310. height: math.unit(2, "meters"),
  11311. weight: math.unit(500, "kg"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/coatl/front.svg",
  11315. extra: 3948 / 3500,
  11316. bottom: 0.082
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(4, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(100, "meters"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Macro+",
  11332. height: math.unit(300, "meters")
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(3, "gigameters")
  11337. },
  11338. {
  11339. name: "Megamacro+",
  11340. height: math.unit(300, "terameters")
  11341. },
  11342. {
  11343. name: "Megamacro++",
  11344. height: math.unit(3, "lightyears")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Shiroryu" },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(50, "kg"),
  11354. name: "front",
  11355. image: {
  11356. source: "./media/characters/shiroryu/front.svg",
  11357. extra: 1990 / 1935
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Mortal Mingling",
  11364. height: math.unit(3, "meters")
  11365. },
  11366. {
  11367. name: "Kaiju-ish",
  11368. height: math.unit(250, "meters")
  11369. },
  11370. {
  11371. name: "Somewhat Godly",
  11372. height: math.unit(400, "km"),
  11373. default: true
  11374. },
  11375. {
  11376. name: "Planetary",
  11377. height: math.unit(300, "megameters")
  11378. },
  11379. {
  11380. name: "Galaxy-dwarfing",
  11381. height: math.unit(450, "kiloparsecs")
  11382. },
  11383. {
  11384. name: "Universe Eater",
  11385. height: math.unit(150, "gigaparsecs")
  11386. },
  11387. {
  11388. name: "Almost Immeasurable",
  11389. height: math.unit(1.3e266, "yottaparsecs")
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "Umeko" },
  11395. {
  11396. front: {
  11397. height: math.unit(6, "feet"),
  11398. weight: math.unit(150, "lb"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/umeko/front.svg",
  11402. extra: 1,
  11403. bottom: 0.019
  11404. }
  11405. },
  11406. frontArmored: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(150, "lb"),
  11409. name: "Front (Armored)",
  11410. image: {
  11411. source: "./media/characters/umeko/front-armored.svg",
  11412. extra: 1,
  11413. bottom: 0.021
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(220, "feet"),
  11421. default: true
  11422. },
  11423. {
  11424. name: "Guardian Dragon",
  11425. height: math.unit(50, "miles")
  11426. },
  11427. {
  11428. name: "Cosmic",
  11429. height: math.unit(800000, "miles")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Cassidy" },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(150, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/cassidy/front.svg",
  11442. extra: 1,
  11443. bottom: 0.043
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Canon Height",
  11450. height: math.unit(120, "feet"),
  11451. default: true
  11452. },
  11453. {
  11454. name: "Macro+",
  11455. height: math.unit(400, "feet")
  11456. },
  11457. {
  11458. name: "Macro++",
  11459. height: math.unit(4000, "feet")
  11460. },
  11461. {
  11462. name: "Megamacro",
  11463. height: math.unit(3, "miles")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Isaac" },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(150, "lb"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/isaac/front.svg",
  11476. extra: 896 / 815,
  11477. bottom: 0.11
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Human Size",
  11484. height: math.unit(8, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(400, "feet")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(50, "miles")
  11494. },
  11495. {
  11496. name: "Canon Height",
  11497. height: math.unit(200, "AU")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Sleekit" },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(72, "kg"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/sleekit/front.svg",
  11510. extra: 4693 / 4487,
  11511. bottom: 0.012
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Minimum Height",
  11518. height: math.unit(10, "meters")
  11519. },
  11520. {
  11521. name: "Smaller",
  11522. height: math.unit(25, "meters")
  11523. },
  11524. {
  11525. name: "Larger",
  11526. height: math.unit(38, "meters"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Maximum height",
  11531. height: math.unit(100, "meters")
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Nillia" },
  11537. {
  11538. front: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(150, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/nillia/front.svg",
  11544. extra: 2195 / 2037,
  11545. bottom: 0.005
  11546. }
  11547. },
  11548. back: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(150, "lb"),
  11551. name: "Back",
  11552. image: {
  11553. source: "./media/characters/nillia/back.svg",
  11554. extra: 2195 / 2037,
  11555. bottom: 0.005
  11556. }
  11557. },
  11558. },
  11559. [
  11560. {
  11561. name: "Canon Height",
  11562. height: math.unit(489, "feet"),
  11563. default: true
  11564. }
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Mesmyriza" },
  11569. {
  11570. front: {
  11571. height: math.unit(6, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Front",
  11574. image: {
  11575. source: "./media/characters/mesmyriza/front.svg",
  11576. extra: 2067 / 1784,
  11577. bottom: 0.035
  11578. }
  11579. },
  11580. foot: {
  11581. height: math.unit(6 / (250 / 35), "feet"),
  11582. name: "Foot",
  11583. image: {
  11584. source: "./media/characters/mesmyriza/foot.svg"
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(457, "meters"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(8, "megameters")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Saudade" },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(250, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/saudade/front.svg",
  11609. extra: 1172 / 1139,
  11610. bottom: 0.035
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Micro",
  11617. height: math.unit(3, "inches")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(6, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(50, "feet")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(2800, "feet")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Keireer" },
  11636. {
  11637. front: {
  11638. height: math.unit(5 + 4 / 12, "feet"),
  11639. weight: math.unit(100, "lb"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/keireer/front.svg",
  11643. extra: 716 / 666,
  11644. bottom: 0.05
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(5 + 4 / 12, "feet"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Mirja" },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(90, "kg"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/mirja/front.svg",
  11665. extra: 1789 / 1683,
  11666. bottom: 0.05
  11667. }
  11668. },
  11669. frontDressed: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(90, "lb"),
  11672. name: "Front (Dressed)",
  11673. image: {
  11674. source: "./media/characters/mirja/front-dressed.svg",
  11675. extra: 1789 / 1683,
  11676. bottom: 0.05
  11677. }
  11678. },
  11679. back: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(90, "lb"),
  11682. name: "Back",
  11683. image: {
  11684. source: "./media/characters/mirja/back.svg",
  11685. extra: 953 / 917,
  11686. bottom: 0.017
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "\"Incognito\"",
  11693. height: math.unit(3, "meters")
  11694. },
  11695. {
  11696. name: "Strolling Size",
  11697. height: math.unit(15, "km")
  11698. },
  11699. {
  11700. name: "Larger Strolling Size",
  11701. height: math.unit(400, "km")
  11702. },
  11703. {
  11704. name: "Preferred Size",
  11705. height: math.unit(5000, "km")
  11706. },
  11707. {
  11708. name: "True Size",
  11709. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11710. default: true
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Nightraver" },
  11716. {
  11717. front: {
  11718. height: math.unit(15, "feet"),
  11719. weight: math.unit(880, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/nightraver/front.svg",
  11723. extra: 2444 / 2160,
  11724. bottom: 0.027
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(15, "feet"),
  11729. weight: math.unit(880, "kg"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/nightraver/back.svg",
  11733. extra: 2309 / 2180,
  11734. bottom: 0.005
  11735. }
  11736. },
  11737. sole: {
  11738. height: math.unit(2.878, "feet"),
  11739. name: "Sole",
  11740. image: {
  11741. source: "./media/characters/nightraver/sole.svg"
  11742. }
  11743. },
  11744. foot: {
  11745. height: math.unit(2.285, "feet"),
  11746. name: "Foot",
  11747. image: {
  11748. source: "./media/characters/nightraver/foot.svg"
  11749. }
  11750. },
  11751. maw: {
  11752. height: math.unit(2.67, "feet"),
  11753. name: "Maw",
  11754. image: {
  11755. source: "./media/characters/nightraver/maw.svg"
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(1, "cm")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(15, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(300, "feet")
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(300, "miles")
  11776. },
  11777. {
  11778. name: "Gigamacro",
  11779. height: math.unit(10000, "miles")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Arc" },
  11785. {
  11786. side: {
  11787. height: math.unit(2, "inches"),
  11788. weight: math.unit(5, "grams"),
  11789. name: "Side",
  11790. image: {
  11791. source: "./media/characters/arc/side.svg"
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Micro",
  11798. height: math.unit(2, "inches"),
  11799. default: true
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Nebula Shahar" },
  11805. {
  11806. front: {
  11807. height: math.unit(1.1938, "meters"),
  11808. weight: math.unit(54, "kg"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/nebula-shahar/front.svg",
  11812. extra: 1642 / 1436,
  11813. bottom: 0.06
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Megamicro",
  11820. height: math.unit(0.3, "mm")
  11821. },
  11822. {
  11823. name: "Micro",
  11824. height: math.unit(3, "cm")
  11825. },
  11826. {
  11827. name: "Normal",
  11828. height: math.unit(138, "cm"),
  11829. default: true
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(30, "m")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Shayla" },
  11839. {
  11840. front: {
  11841. height: math.unit(5.24, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/shayla/front.svg",
  11846. extra: 1512 / 1414,
  11847. bottom: 0.01
  11848. }
  11849. },
  11850. back: {
  11851. height: math.unit(5.24, "feet"),
  11852. weight: math.unit(150, "lb"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/shayla/back.svg",
  11856. extra: 1512 / 1414
  11857. }
  11858. },
  11859. hand: {
  11860. height: math.unit(0.7781496062992126, "feet"),
  11861. name: "Hand",
  11862. image: {
  11863. source: "./media/characters/shayla/hand.svg"
  11864. }
  11865. },
  11866. foot: {
  11867. height: math.unit(1.4206036745406823, "feet"),
  11868. name: "Foot",
  11869. image: {
  11870. source: "./media/characters/shayla/foot.svg"
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Micro",
  11877. height: math.unit(0.32, "feet")
  11878. },
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(5.24, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(492.12, "feet")
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(186.41, "miles")
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Pia Jr." },
  11896. {
  11897. front: {
  11898. height: math.unit(2.2, "m"),
  11899. weight: math.unit(120, "kg"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/pia-jr/front.svg",
  11903. extra: 1000 / 970,
  11904. bottom: 0.035
  11905. }
  11906. },
  11907. hand: {
  11908. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11909. name: "Hand",
  11910. image: {
  11911. source: "./media/characters/pia-jr/hand.svg"
  11912. }
  11913. },
  11914. paw: {
  11915. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11916. name: "Paw",
  11917. image: {
  11918. source: "./media/characters/pia-jr/paw.svg"
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Micro",
  11925. height: math.unit(1.2, "cm")
  11926. },
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(2.2, "m"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(180, "m")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(420, "km")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Pia Sr." },
  11944. {
  11945. front: {
  11946. height: math.unit(2, "m"),
  11947. weight: math.unit(115, "kg"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/pia-sr/front.svg",
  11951. extra: 760 / 730,
  11952. bottom: 0.015
  11953. }
  11954. },
  11955. back: {
  11956. height: math.unit(2, "m"),
  11957. weight: math.unit(115, "kg"),
  11958. name: "Back",
  11959. image: {
  11960. source: "./media/characters/pia-sr/back.svg",
  11961. extra: 760 / 730,
  11962. bottom: 0.01
  11963. }
  11964. },
  11965. hand: {
  11966. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11967. name: "Hand",
  11968. image: {
  11969. source: "./media/characters/pia-sr/hand.svg"
  11970. }
  11971. },
  11972. foot: {
  11973. height: math.unit(1.83, "feet"),
  11974. name: "Foot",
  11975. image: {
  11976. source: "./media/characters/pia-sr/foot.svg"
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Micro",
  11983. height: math.unit(88, "mm")
  11984. },
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(2, "m"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(200, "m")
  11993. },
  11994. {
  11995. name: "Megamacro",
  11996. height: math.unit(420, "km")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "KIBIBYTE" },
  12002. {
  12003. front: {
  12004. height: math.unit(8 + 2 / 12, "feet"),
  12005. weight: math.unit(300, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/kibibyte/front.svg",
  12009. extra: 2221 / 2098,
  12010. bottom: 0.04
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Normal",
  12017. height: math.unit(8 + 2 / 12, "feet"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Socialable Macro",
  12022. height: math.unit(50, "feet")
  12023. },
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(300, "feet")
  12027. },
  12028. {
  12029. name: "Megamacro",
  12030. height: math.unit(500, "miles")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Felix" },
  12036. {
  12037. front: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(150, "lb"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/felix/front.svg",
  12043. extra: 762 / 722,
  12044. bottom: 0.02
  12045. }
  12046. },
  12047. frontClothed: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(150, "lb"),
  12050. name: "Front (Clothed)",
  12051. image: {
  12052. source: "./media/characters/felix/front-clothed.svg",
  12053. extra: 762 / 722,
  12054. bottom: 0.02
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(6 + 8 / 12, "feet"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(2600, "feet")
  12067. },
  12068. {
  12069. name: "Megamacro",
  12070. height: math.unit(450, "miles")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Tobo" },
  12076. {
  12077. front: {
  12078. height: math.unit(6 + 1 / 12, "feet"),
  12079. weight: math.unit(250, "lb"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/tobo/front.svg",
  12083. extra: 608 / 586,
  12084. bottom: 0.023
  12085. }
  12086. },
  12087. back: {
  12088. height: math.unit(6 + 1 / 12, "feet"),
  12089. weight: math.unit(250, "lb"),
  12090. name: "Back",
  12091. image: {
  12092. source: "./media/characters/tobo/back.svg",
  12093. extra: 608 / 586
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Nano",
  12100. height: math.unit(2, "nm")
  12101. },
  12102. {
  12103. name: "Megamicro",
  12104. height: math.unit(0.1, "mm")
  12105. },
  12106. {
  12107. name: "Micro",
  12108. height: math.unit(1, "inch"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Human-sized",
  12113. height: math.unit(6 + 1 / 12, "feet")
  12114. },
  12115. {
  12116. name: "Macro",
  12117. height: math.unit(250, "feet")
  12118. },
  12119. {
  12120. name: "Megamacro",
  12121. height: math.unit(75, "miles")
  12122. },
  12123. {
  12124. name: "Texas-sized",
  12125. height: math.unit(750, "miles")
  12126. },
  12127. {
  12128. name: "Teramacro",
  12129. height: math.unit(50000, "miles")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Danny Kapowsky" },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(269, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/danny-kapowsky/front.svg",
  12142. extra: 766 / 736,
  12143. bottom: 0.044
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(269, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/danny-kapowsky/back.svg",
  12152. extra: 797 / 760,
  12153. bottom: 0.025
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(150, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Macro+",
  12165. height: math.unit(200, "feet")
  12166. },
  12167. {
  12168. name: "Macro++",
  12169. height: math.unit(300, "feet")
  12170. },
  12171. {
  12172. name: "Macro+++",
  12173. height: math.unit(400, "feet")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Finn" },
  12179. {
  12180. side: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(170, "lb"),
  12183. name: "Side",
  12184. image: {
  12185. source: "./media/characters/finn/side.svg",
  12186. extra: 1953 / 1807,
  12187. bottom: 0.057
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Megamacro",
  12194. height: math.unit(14445, "feet"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Roy" },
  12201. {
  12202. front: {
  12203. height: math.unit(5 + 6 / 12, "feet"),
  12204. weight: math.unit(125, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/roy/front.svg",
  12208. extra: 1,
  12209. bottom: 0.11
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Micro",
  12216. height: math.unit(3, "inches"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(5 + 6 / 12, "feet")
  12222. },
  12223. {
  12224. name: "Lesser Macro",
  12225. height: math.unit(60, "feet")
  12226. },
  12227. {
  12228. name: "Greater Macro",
  12229. height: math.unit(120, "feet")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Aevsivs" },
  12235. {
  12236. front: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(100, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/aevsivs/front.svg",
  12242. extra: 1,
  12243. bottom: 0.03
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(100, "lb"),
  12249. name: "Back",
  12250. image: {
  12251. source: "./media/characters/aevsivs/back.svg"
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Micro",
  12258. height: math.unit(2, "inches"),
  12259. default: true
  12260. },
  12261. {
  12262. name: "Normal",
  12263. height: math.unit(5, "feet")
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Hildegard" },
  12269. {
  12270. front: {
  12271. height: math.unit(5 + 7 / 12, "feet"),
  12272. weight: math.unit(159, "lb"),
  12273. name: "Front",
  12274. image: {
  12275. source: "./media/characters/hildegard/front.svg",
  12276. extra: 312 / 286,
  12277. bottom: 0.005
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(5 + 7 / 12, "feet"),
  12285. default: true
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Bernard & Wilder" },
  12291. {
  12292. bernard: {
  12293. height: math.unit(2 + 7 / 12, "feet"),
  12294. weight: math.unit(66, "lb"),
  12295. name: "Bernard",
  12296. rename: true,
  12297. image: {
  12298. source: "./media/characters/bernard-wilder/bernard.svg",
  12299. extra: 192 / 128,
  12300. bottom: 0.05
  12301. }
  12302. },
  12303. wilder: {
  12304. height: math.unit(5 + 8 / 12, "feet"),
  12305. weight: math.unit(143, "lb"),
  12306. name: "Wilder",
  12307. rename: true,
  12308. image: {
  12309. source: "./media/characters/bernard-wilder/wilder.svg",
  12310. extra: 361 / 312,
  12311. bottom: 0.02
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(2 + 7 / 12, "feet"),
  12319. default: true
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Hearth" },
  12325. {
  12326. anthro: {
  12327. height: math.unit(6 + 1 / 12, "feet"),
  12328. weight: math.unit(155, "lb"),
  12329. name: "Anthro",
  12330. image: {
  12331. source: "./media/characters/hearth/anthro.svg",
  12332. extra: 260 / 250,
  12333. bottom: 0.02
  12334. }
  12335. },
  12336. feral: {
  12337. height: math.unit(3.78, "feet"),
  12338. weight: math.unit(35, "kg"),
  12339. name: "Feral",
  12340. image: {
  12341. source: "./media/characters/hearth/feral.svg",
  12342. extra: 153 / 135,
  12343. bottom: 0.03
  12344. }
  12345. },
  12346. },
  12347. [
  12348. {
  12349. name: "Normal",
  12350. height: math.unit(6 + 1 / 12, "feet"),
  12351. default: true
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Ingrid" },
  12357. {
  12358. front: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(182, "lb"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/ingrid/front.svg",
  12364. extra: 294 / 268,
  12365. bottom: 0.027
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(6, "feet"),
  12373. default: true
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Malgam" },
  12379. {
  12380. eevee: {
  12381. height: math.unit(2 + 10 / 12, "feet"),
  12382. weight: math.unit(86, "lb"),
  12383. name: "Malgam",
  12384. image: {
  12385. source: "./media/characters/malgam/eevee.svg",
  12386. extra: 218 / 180,
  12387. bottom: 0.2
  12388. }
  12389. },
  12390. sylveon: {
  12391. height: math.unit(4, "feet"),
  12392. weight: math.unit(101, "lb"),
  12393. name: "Future Malgam",
  12394. rename: true,
  12395. image: {
  12396. source: "./media/characters/malgam/sylveon.svg",
  12397. extra: 371 / 325,
  12398. bottom: 0.015
  12399. }
  12400. },
  12401. gigantamax: {
  12402. height: math.unit(50, "feet"),
  12403. name: "Gigantamax Malgam",
  12404. rename: true,
  12405. image: {
  12406. source: "./media/characters/malgam/gigantamax.svg"
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(2 + 10 / 12, "feet"),
  12414. default: true
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Fleur" },
  12420. {
  12421. front: {
  12422. height: math.unit(5 + 11 / 12, "feet"),
  12423. weight: math.unit(188, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/fleur/front.svg",
  12427. extra: 309 / 283,
  12428. bottom: 0.007
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(5 + 11 / 12, "feet"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Jude" },
  12442. {
  12443. front: {
  12444. height: math.unit(5 + 4 / 12, "feet"),
  12445. weight: math.unit(122, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/jude/front.svg",
  12449. extra: 288 / 273,
  12450. bottom: 0.03
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(5 + 4 / 12, "feet"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Seara" },
  12464. {
  12465. front: {
  12466. height: math.unit(5 + 11 / 12, "feet"),
  12467. weight: math.unit(190, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/seara/front.svg",
  12471. extra: 1,
  12472. bottom: 0.05
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5 + 11 / 12, "feet"),
  12480. default: true
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Caspian" },
  12486. {
  12487. front: {
  12488. height: math.unit(16 + 5 / 12, "feet"),
  12489. weight: math.unit(524, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/caspian/front.svg",
  12493. extra: 1,
  12494. bottom: 0.04
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(16 + 5 / 12, "feet"),
  12502. default: true
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Mika" },
  12508. {
  12509. front: {
  12510. height: math.unit(5 + 7 / 12, "feet"),
  12511. weight: math.unit(170, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/mika/front.svg",
  12515. extra: 1,
  12516. bottom: 0.016
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(5 + 7 / 12, "feet"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Sol" },
  12530. {
  12531. front: {
  12532. height: math.unit(6 + 2 / 12, "feet"),
  12533. weight: math.unit(268, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/sol/front.svg",
  12537. extra: 247 / 231,
  12538. bottom: 0.05
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(6 + 2 / 12, "feet"),
  12546. default: true
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Umiko" },
  12552. {
  12553. buizel: {
  12554. height: math.unit(2 + 5 / 12, "feet"),
  12555. weight: math.unit(87, "lb"),
  12556. name: "Buizel",
  12557. image: {
  12558. source: "./media/characters/umiko/buizel.svg",
  12559. extra: 172 / 157,
  12560. bottom: 0.01
  12561. }
  12562. },
  12563. floatzel: {
  12564. height: math.unit(5 + 9 / 12, "feet"),
  12565. weight: math.unit(250, "lb"),
  12566. name: "Floatzel",
  12567. image: {
  12568. source: "./media/characters/umiko/floatzel.svg",
  12569. extra: 262 / 248
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(2 + 5 / 12, "feet"),
  12577. default: true
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Iliac" },
  12583. {
  12584. front: {
  12585. height: math.unit(6 + 2 / 12, "feet"),
  12586. weight: math.unit(146, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/iliac/front.svg",
  12590. extra: 389 / 365,
  12591. bottom: 0.035
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(6 + 2 / 12, "feet"),
  12599. default: true
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Topaz" },
  12605. {
  12606. front: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(170, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/topaz/front.svg",
  12612. extra: 317 / 303,
  12613. bottom: 0.055
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(6, "feet"),
  12621. default: true
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Gabriel" },
  12627. {
  12628. front: {
  12629. height: math.unit(5 + 11 / 12, "feet"),
  12630. weight: math.unit(144, "lb"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/gabriel/front.svg",
  12634. extra: 285 / 262,
  12635. bottom: 0.004
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(5 + 11 / 12, "feet"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Tempest (Suicune)" },
  12649. {
  12650. side: {
  12651. height: math.unit(6 + 5 / 12, "feet"),
  12652. weight: math.unit(300, "lb"),
  12653. name: "Side",
  12654. image: {
  12655. source: "./media/characters/tempest-suicune/side.svg",
  12656. extra: 195 / 154,
  12657. bottom: 0.04
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(6 + 5 / 12, "feet"),
  12665. default: true
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Vulcan" },
  12671. {
  12672. front: {
  12673. height: math.unit(7 + 2 / 12, "feet"),
  12674. weight: math.unit(322, "lb"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/vulcan/front.svg",
  12678. extra: 154 / 147,
  12679. bottom: 0.04
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(7 + 2 / 12, "feet"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Gault" },
  12693. {
  12694. front: {
  12695. height: math.unit(5 + 10 / 12, "feet"),
  12696. weight: math.unit(264, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/gault/front.svg",
  12700. extra: 161 / 140,
  12701. bottom: 0.028
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(5 + 10 / 12, "feet"),
  12709. default: true
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Shard" },
  12715. {
  12716. front: {
  12717. height: math.unit(6, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/shard/front.svg",
  12722. extra: 273 / 238,
  12723. bottom: 0.02
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(3 + 6 / 12, "feet"),
  12731. default: true
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Ashe" },
  12737. {
  12738. front: {
  12739. height: math.unit(5 + 11 / 12, "feet"),
  12740. weight: math.unit(146, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/ashe/front.svg",
  12744. extra: 400 / 373,
  12745. bottom: 0.01
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(5 + 11 / 12, "feet"),
  12753. default: true
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Beatrix" },
  12759. {
  12760. front: {
  12761. height: math.unit(5 + 5 / 12, "feet"),
  12762. weight: math.unit(135, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/beatrix/front.svg",
  12766. extra: 392 / 379,
  12767. bottom: 0.01
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(6, "feet"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Ignatius" },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "lb"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/ignatius/front.svg",
  12788. extra: 245 / 222,
  12789. bottom: 0.01
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(5 + 5 / 12, "feet"),
  12797. default: true
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Mei Li" },
  12803. {
  12804. front: {
  12805. height: math.unit(6 + 2 / 12, "feet"),
  12806. weight: math.unit(138, "lb"),
  12807. name: "Front",
  12808. image: {
  12809. source: "./media/characters/mei-li/front.svg",
  12810. extra: 237 / 229,
  12811. bottom: 0.03
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(6 + 2 / 12, "feet"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Puru" },
  12825. {
  12826. front: {
  12827. height: math.unit(2 + 4 / 12, "feet"),
  12828. weight: math.unit(62, "lb"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/puru/front.svg",
  12832. extra: 206 / 149,
  12833. bottom: 0.06
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(2 + 4 / 12, "feet"),
  12841. default: true
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Kee" },
  12847. {
  12848. taur: {
  12849. height: math.unit(11, "feet"),
  12850. weight: math.unit(500, "lb"),
  12851. name: "Taur",
  12852. image: {
  12853. source: "./media/characters/kee/taur.svg",
  12854. extra: 1,
  12855. bottom: 0.04
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(11, "feet"),
  12863. default: true
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Cobalt (Dracha)" },
  12869. {
  12870. anthro: {
  12871. height: math.unit(7, "feet"),
  12872. weight: math.unit(190, "lb"),
  12873. name: "Anthro",
  12874. image: {
  12875. source: "./media/characters/cobalt-dracha/anthro.svg",
  12876. extra: 231 / 225,
  12877. bottom: 0.04
  12878. }
  12879. },
  12880. feral: {
  12881. height: math.unit(9 + 7 / 12, "feet"),
  12882. weight: math.unit(294, "lb"),
  12883. name: "Feral",
  12884. image: {
  12885. source: "./media/characters/cobalt-dracha/feral.svg",
  12886. extra: 692 / 633,
  12887. bottom: 0.05
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(7, "feet"),
  12895. default: true
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Java" },
  12901. {
  12902. fallen: {
  12903. height: math.unit(11 + 8 / 12, "feet"),
  12904. weight: math.unit(485, "lb"),
  12905. name: "Java (Fallen)",
  12906. rename: true,
  12907. image: {
  12908. source: "./media/characters/java/fallen.svg",
  12909. extra: 226 / 208,
  12910. bottom: 0.005
  12911. }
  12912. },
  12913. godkin: {
  12914. height: math.unit(10 + 6 / 12, "feet"),
  12915. weight: math.unit(328, "lb"),
  12916. name: "Java (Godkin)",
  12917. rename: true,
  12918. image: {
  12919. source: "./media/characters/java/godkin.svg",
  12920. extra: 270 / 262,
  12921. bottom: 0.02
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(11 + 8 / 12, "feet"),
  12929. default: true
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Skoll" },
  12935. {
  12936. front: {
  12937. height: math.unit(7 + 8 / 12, "feet"),
  12938. weight: math.unit(320, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/skoll/front.svg",
  12942. extra: 232 / 220,
  12943. bottom: 0.02
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(7 + 8 / 12, "feet"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Purna" },
  12957. {
  12958. front: {
  12959. height: math.unit(5 + 9 / 12, "feet"),
  12960. weight: math.unit(170, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/purna/front.svg",
  12964. extra: 239 / 229,
  12965. bottom: 0.01
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(5 + 9 / 12, "feet"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Kuva" },
  12979. {
  12980. front: {
  12981. height: math.unit(5 + 9 / 12, "feet"),
  12982. weight: math.unit(142, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/kuva/front.svg",
  12986. extra: 281 / 271,
  12987. bottom: 0.006
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(5 + 9 / 12, "feet"),
  12995. default: true
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Embra" },
  13001. {
  13002. anthro: {
  13003. height: math.unit(9 + 2 / 12, "feet"),
  13004. weight: math.unit(270, "lb"),
  13005. name: "Anthro",
  13006. image: {
  13007. source: "./media/characters/embra/anthro.svg",
  13008. extra: 200 / 187,
  13009. bottom: 0.02
  13010. }
  13011. },
  13012. feral: {
  13013. height: math.unit(18 + 8 / 12, "feet"),
  13014. weight: math.unit(576, "lb"),
  13015. name: "Feral",
  13016. image: {
  13017. source: "./media/characters/embra/feral.svg",
  13018. extra: 152 / 137,
  13019. bottom: 0.037
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(9 + 2 / 12, "feet"),
  13027. default: true
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Grottos" },
  13033. {
  13034. anthro: {
  13035. height: math.unit(10 + 9 / 12, "feet"),
  13036. weight: math.unit(224, "lb"),
  13037. name: "Anthro",
  13038. image: {
  13039. source: "./media/characters/grottos/anthro.svg",
  13040. extra: 350 / 332,
  13041. bottom: 0.045
  13042. }
  13043. },
  13044. feral: {
  13045. height: math.unit(20 + 7 / 12, "feet"),
  13046. weight: math.unit(629, "lb"),
  13047. name: "Feral",
  13048. image: {
  13049. source: "./media/characters/grottos/feral.svg",
  13050. extra: 207 / 190,
  13051. bottom: 0.05
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Normal",
  13058. height: math.unit(10 + 9 / 12, "feet"),
  13059. default: true
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Frifna" },
  13065. {
  13066. anthro: {
  13067. height: math.unit(9 + 6 / 12, "feet"),
  13068. weight: math.unit(298, "lb"),
  13069. name: "Anthro",
  13070. image: {
  13071. source: "./media/characters/frifna/anthro.svg",
  13072. extra: 282 / 269,
  13073. bottom: 0.015
  13074. }
  13075. },
  13076. feral: {
  13077. height: math.unit(16 + 2 / 12, "feet"),
  13078. weight: math.unit(624, "lb"),
  13079. name: "Feral",
  13080. image: {
  13081. source: "./media/characters/frifna/feral.svg"
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(9 + 6 / 12, "feet"),
  13089. default: true
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Elise" },
  13095. {
  13096. front: {
  13097. height: math.unit(6 + 2 / 12, "feet"),
  13098. weight: math.unit(168, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/elise/front.svg",
  13102. extra: 276 / 271
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(6 + 2 / 12, "feet"),
  13110. default: true
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Glade" },
  13116. {
  13117. front: {
  13118. height: math.unit(5 + 10 / 12, "feet"),
  13119. weight: math.unit(210, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/glade/front.svg",
  13123. extra: 258 / 247,
  13124. bottom: 0.008
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(5 + 10 / 12, "feet"),
  13132. default: true
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Rina" },
  13138. {
  13139. front: {
  13140. height: math.unit(5 + 10 / 12, "feet"),
  13141. weight: math.unit(129, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/rina/front.svg",
  13145. extra: 266 / 255,
  13146. bottom: 0.005
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(5 + 10 / 12, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Veronica" },
  13160. {
  13161. front: {
  13162. height: math.unit(6 + 1 / 12, "feet"),
  13163. weight: math.unit(192, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/veronica/front.svg",
  13167. extra: 319 / 309,
  13168. bottom: 0.005
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(6 + 1 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Braxton" },
  13182. {
  13183. front: {
  13184. height: math.unit(9 + 3 / 12, "feet"),
  13185. weight: math.unit(1100, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/braxton/front.svg",
  13189. extra: 1057 / 984,
  13190. bottom: 0.05
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(9 + 3 / 12, "feet")
  13198. },
  13199. {
  13200. name: "Giant",
  13201. height: math.unit(300, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(700, "feet")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(6000, "feet")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Blue Feyonics" },
  13216. {
  13217. front: {
  13218. height: math.unit(6 + 7 / 12, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/blue-feyonics/front.svg",
  13223. extra: 1403 / 1306,
  13224. bottom: 0.047
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Normal",
  13231. height: math.unit(6 + 7 / 12, "feet"),
  13232. default: true
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Maxwell" },
  13238. {
  13239. front: {
  13240. height: math.unit(1.8, "meters"),
  13241. weight: math.unit(60, "kg"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/maxwell/front.svg",
  13245. extra: 2060 / 1873
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(1, "mm")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(1.8, "meter"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(30, "meters")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(10, "km")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Jack" },
  13271. {
  13272. front: {
  13273. height: math.unit(6, "feet"),
  13274. weight: math.unit(150, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/jack/front.svg",
  13278. extra: 1754 / 1640,
  13279. bottom: 0.01
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Normal",
  13286. height: math.unit(80000, "feet"),
  13287. default: true
  13288. },
  13289. {
  13290. name: "Max size",
  13291. height: math.unit(10, "lightyears")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Cafat" },
  13297. {
  13298. upright: {
  13299. height: math.unit(7, "feet"),
  13300. weight: math.unit(170, "lb"),
  13301. name: "Upright",
  13302. image: {
  13303. source: "./media/characters/cafat/upright.svg",
  13304. bottom: 0.01
  13305. }
  13306. },
  13307. uprightFull: {
  13308. height: math.unit(7, "feet"),
  13309. weight: math.unit(170, "lb"),
  13310. name: "Upright (Full)",
  13311. image: {
  13312. source: "./media/characters/cafat/upright-full.svg",
  13313. bottom: 0.01
  13314. }
  13315. },
  13316. side: {
  13317. height: math.unit(5, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Side",
  13320. image: {
  13321. source: "./media/characters/cafat/side.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Small",
  13328. height: math.unit(7, "feet"),
  13329. default: true
  13330. },
  13331. {
  13332. name: "Large",
  13333. height: math.unit(15.5, "feet")
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Verin Raharra" },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "lb"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/verin-raharra/front.svg",
  13346. extra: 5019 / 4835,
  13347. bottom: 0.023
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(7 + 5 / 12, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Upsized",
  13359. height: math.unit(20, "feet")
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Nakata" },
  13365. {
  13366. front: {
  13367. height: math.unit(7, "feet"),
  13368. weight: math.unit(230, "lb"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/nakata/front.svg",
  13372. extra: 1.005,
  13373. bottom: 0.01
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Normal",
  13380. height: math.unit(7, "feet"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Big",
  13385. height: math.unit(14, "feet")
  13386. },
  13387. {
  13388. name: "Macro",
  13389. height: math.unit(400, "feet")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Lily" },
  13395. {
  13396. front: {
  13397. height: math.unit(4.91, "feet"),
  13398. weight: math.unit(100, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/lily/front.svg",
  13402. extra: 1585 / 1415,
  13403. bottom: 0.02
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(4.91, "feet"),
  13411. default: true
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Sheila" },
  13417. {
  13418. laying: {
  13419. height: math.unit(4 + 4 / 12, "feet"),
  13420. weight: math.unit(600, "lb"),
  13421. name: "Laying",
  13422. image: {
  13423. source: "./media/characters/sheila/laying.svg",
  13424. extra: 1333 / 1265,
  13425. bottom: 0.16
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(4 + 4 / 12, "feet"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Sax" },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(190, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/sax/front.svg",
  13446. extra: 1187 / 973,
  13447. bottom: 0.042
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Micro",
  13454. height: math.unit(4, "inches"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Pandora" },
  13461. {
  13462. front: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/pandora/front.svg",
  13468. extra: 2720 / 2556,
  13469. bottom: 0.015
  13470. }
  13471. },
  13472. back: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Back",
  13476. image: {
  13477. source: "./media/characters/pandora/back.svg",
  13478. extra: 2720 / 2556,
  13479. bottom: 0.01
  13480. }
  13481. },
  13482. beans: {
  13483. height: math.unit(6 / 8, "feet"),
  13484. name: "Beans",
  13485. image: {
  13486. source: "./media/characters/pandora/beans.svg"
  13487. }
  13488. },
  13489. skirt: {
  13490. height: math.unit(6, "feet"),
  13491. weight: math.unit(150, "lb"),
  13492. name: "Skirt",
  13493. image: {
  13494. source: "./media/characters/pandora/skirt.svg",
  13495. extra: 1622 / 1525,
  13496. bottom: 0.015
  13497. }
  13498. },
  13499. hoodie: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Hoodie",
  13503. image: {
  13504. source: "./media/characters/pandora/hoodie.svg",
  13505. extra: 1622 / 1525,
  13506. bottom: 0.015
  13507. }
  13508. },
  13509. casual: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Casual",
  13513. image: {
  13514. source: "./media/characters/pandora/casual.svg",
  13515. extra: 1622 / 1525,
  13516. bottom: 0.015
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(6, "feet")
  13524. },
  13525. {
  13526. name: "Big Steppy",
  13527. height: math.unit(1, "km"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Venio Darcony" },
  13534. {
  13535. side: {
  13536. height: math.unit(10, "feet"),
  13537. weight: math.unit(800, "kg"),
  13538. name: "Side",
  13539. image: {
  13540. source: "./media/characters/venio-darcony/side.svg",
  13541. extra: 1373 / 1003,
  13542. bottom: 0.037
  13543. }
  13544. },
  13545. front: {
  13546. height: math.unit(19, "feet"),
  13547. weight: math.unit(800, "kg"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/venio-darcony/front.svg"
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(19, "feet"),
  13555. weight: math.unit(800, "kg"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/venio-darcony/back.svg"
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Normal",
  13565. height: math.unit(10, "feet")
  13566. },
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(130, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Macro+",
  13574. height: math.unit(240, "feet")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Veski" },
  13580. {
  13581. front: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/veski/front.svg",
  13587. extra: 1299 / 1225,
  13588. bottom: 0.04
  13589. }
  13590. },
  13591. back: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/veski/back.svg",
  13597. extra: 1299 / 1225,
  13598. bottom: 0.008
  13599. }
  13600. },
  13601. maw: {
  13602. height: math.unit(1.5 * 1.21, "feet"),
  13603. name: "Maw",
  13604. image: {
  13605. source: "./media/characters/veski/maw.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Macro",
  13612. height: math.unit(2, "km"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Isabelle" },
  13619. {
  13620. front: {
  13621. height: math.unit(5 + 7 / 12, "feet"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/isabelle/front.svg",
  13625. extra: 2130 / 1976,
  13626. bottom: 0.05
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Supermicro",
  13633. height: math.unit(10, "micrometers")
  13634. },
  13635. {
  13636. name: "Micro",
  13637. height: math.unit(1, "inch")
  13638. },
  13639. {
  13640. name: "Tiny",
  13641. height: math.unit(5, "inches")
  13642. },
  13643. {
  13644. name: "Standard",
  13645. height: math.unit(5 + 7 / 12, "inches")
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(80, "meters"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(250, "meters")
  13655. },
  13656. {
  13657. name: "Gigamacro",
  13658. height: math.unit(5, "km")
  13659. },
  13660. {
  13661. name: "Cosmic",
  13662. height: math.unit(2.5e6, "miles")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Hanzo" },
  13668. {
  13669. front: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/hanzo/front.svg",
  13675. extra: 374 / 344,
  13676. bottom: 0.02
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Normal",
  13683. height: math.unit(8, "feet"),
  13684. default: true
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Anna" },
  13690. {
  13691. front: {
  13692. height: math.unit(7, "feet"),
  13693. weight: math.unit(130, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/anna/front.svg",
  13697. extra: 169 / 145,
  13698. bottom: 0.06
  13699. }
  13700. },
  13701. full: {
  13702. height: math.unit(4.96, "feet"),
  13703. weight: math.unit(220, "lb"),
  13704. name: "Full",
  13705. image: {
  13706. source: "./media/characters/anna/full.svg",
  13707. extra: 138 / 114,
  13708. bottom: 0.15
  13709. }
  13710. },
  13711. tongue: {
  13712. height: math.unit(2.53, "feet"),
  13713. name: "Tongue",
  13714. image: {
  13715. source: "./media/characters/anna/tongue.svg"
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(7, "feet"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Ian Corvid" },
  13729. {
  13730. front: {
  13731. height: math.unit(7, "feet"),
  13732. weight: math.unit(150, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/ian-corvid/front.svg",
  13736. extra: 150 / 142,
  13737. bottom: 0.02
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(7, "feet"),
  13742. weight: math.unit(150, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/ian-corvid/back.svg",
  13746. extra: 150 / 143,
  13747. bottom: 0.01
  13748. }
  13749. },
  13750. stomping: {
  13751. height: math.unit(7, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Stomping",
  13754. image: {
  13755. source: "./media/characters/ian-corvid/stomping.svg",
  13756. extra: 76 / 72
  13757. }
  13758. },
  13759. sitting: {
  13760. height: math.unit(7 / 1.8, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Sitting",
  13763. image: {
  13764. source: "./media/characters/ian-corvid/sitting.svg",
  13765. extra: 1400 / 1269,
  13766. bottom: 0.15
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Tiny Microw",
  13773. height: math.unit(1, "inch")
  13774. },
  13775. {
  13776. name: "Microw",
  13777. height: math.unit(6, "inches")
  13778. },
  13779. {
  13780. name: "Crow",
  13781. height: math.unit(7 + 1 / 12, "feet"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Macrow",
  13786. height: math.unit(176, "feet")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Natalie Kellon" },
  13792. {
  13793. front: {
  13794. height: math.unit(5 + 7 / 12, "feet"),
  13795. weight: math.unit(147, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/natalie-kellon/front.svg",
  13799. extra: 1214 / 1141,
  13800. bottom: 0.02
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Micro",
  13807. height: math.unit(1 / 16, "inch")
  13808. },
  13809. {
  13810. name: "Tiny",
  13811. height: math.unit(4, "inches")
  13812. },
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(5 + 7 / 12, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Amazon",
  13820. height: math.unit(12, "feet")
  13821. },
  13822. {
  13823. name: "Giantess",
  13824. height: math.unit(160, "meters")
  13825. },
  13826. {
  13827. name: "Titaness",
  13828. height: math.unit(800, "meters")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Alluria" },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/alluria/front.svg",
  13841. extra: 806 / 738,
  13842. bottom: 0.01
  13843. }
  13844. },
  13845. side: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Side",
  13849. image: {
  13850. source: "./media/characters/alluria/side.svg",
  13851. extra: 800 / 750,
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(150, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/alluria/back.svg",
  13860. extra: 806 / 738,
  13861. }
  13862. },
  13863. frontMaid: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Front (Maid)",
  13867. image: {
  13868. source: "./media/characters/alluria/front-maid.svg",
  13869. extra: 806 / 738,
  13870. bottom: 0.01
  13871. }
  13872. },
  13873. sideMaid: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Side (Maid)",
  13877. image: {
  13878. source: "./media/characters/alluria/side-maid.svg",
  13879. extra: 800 / 750,
  13880. bottom: 0.005
  13881. }
  13882. },
  13883. backMaid: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Back (Maid)",
  13887. image: {
  13888. source: "./media/characters/alluria/back-maid.svg",
  13889. extra: 806 / 738,
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Micro",
  13896. height: math.unit(6, "inches"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Kyle" },
  13903. {
  13904. front: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(150, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/kyle/front.svg",
  13910. extra: 1069 / 962,
  13911. bottom: 77.228 / 1727.45
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(150, "feet"),
  13919. default: true
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Duncan" },
  13925. {
  13926. front: {
  13927. height: math.unit(6, "feet"),
  13928. weight: math.unit(300, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/duncan/front.svg",
  13932. extra: 1650 / 1482,
  13933. bottom: 0.05
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Macro",
  13940. height: math.unit(100, "feet"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Memory" },
  13947. {
  13948. front: {
  13949. height: math.unit(5 + 4 / 12, "feet"),
  13950. weight: math.unit(220, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/memory/front.svg",
  13954. extra: 3641 / 3545,
  13955. bottom: 0.03
  13956. }
  13957. },
  13958. back: {
  13959. height: math.unit(5 + 4 / 12, "feet"),
  13960. weight: math.unit(220, "lb"),
  13961. name: "Back",
  13962. image: {
  13963. source: "./media/characters/memory/back.svg",
  13964. extra: 3641 / 3545,
  13965. bottom: 0.025
  13966. }
  13967. },
  13968. frontSkirt: {
  13969. height: math.unit(5 + 4 / 12, "feet"),
  13970. weight: math.unit(220, "lb"),
  13971. name: "Front (Skirt)",
  13972. image: {
  13973. source: "./media/characters/memory/front-skirt.svg",
  13974. extra: 3641 / 3545,
  13975. bottom: 0.03
  13976. }
  13977. },
  13978. frontDress: {
  13979. height: math.unit(5 + 4 / 12, "feet"),
  13980. weight: math.unit(220, "lb"),
  13981. name: "Front (Dress)",
  13982. image: {
  13983. source: "./media/characters/memory/front-dress.svg",
  13984. extra: 3641 / 3545,
  13985. bottom: 0.03
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Micro",
  13992. height: math.unit(6, "inches"),
  13993. default: true
  13994. },
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(5 + 4 / 12, "feet")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Luno" },
  14003. {
  14004. front: {
  14005. height: math.unit(4 + 11 / 12, "feet"),
  14006. weight: math.unit(100, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/luno/front.svg",
  14010. extra: 1535 / 1487,
  14011. bottom: 0.03
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Micro",
  14018. height: math.unit(3, "inches")
  14019. },
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(4 + 11 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(300, "feet")
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(700, "miles")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Jamesy" },
  14037. {
  14038. front: {
  14039. height: math.unit(6 + 2 / 12, "feet"),
  14040. weight: math.unit(170, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/jamesy/front.svg",
  14044. extra: 440 / 382,
  14045. bottom: 0.005
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Micro",
  14052. height: math.unit(3, "inches")
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(6 + 2 / 12, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(300, "feet")
  14062. },
  14063. {
  14064. name: "Megamacro",
  14065. height: math.unit(700, "miles")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Mark" },
  14071. {
  14072. front: {
  14073. height: math.unit(6, "feet"),
  14074. weight: math.unit(160, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/mark/front.svg",
  14078. extra: 3300 / 3100,
  14079. bottom: 136.42 / 3440.47
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(120, "meters")
  14087. },
  14088. {
  14089. name: "Bigger Macro",
  14090. height: math.unit(350, "meters")
  14091. },
  14092. {
  14093. name: "Megamacro",
  14094. height: math.unit(8, "km"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Continental",
  14099. height: math.unit(4550, "km")
  14100. },
  14101. {
  14102. name: "Planetary",
  14103. height: math.unit(65000, "km")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Mac" },
  14109. {
  14110. front: {
  14111. height: math.unit(6, "feet"),
  14112. weight: math.unit(400, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/mac/front.svg",
  14116. extra: 1048 / 987.7,
  14117. bottom: 60 / 1107.6,
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Macro",
  14124. height: math.unit(500, "feet"),
  14125. default: true
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Bari" },
  14131. {
  14132. front: {
  14133. height: math.unit(5 + 2 / 12, "feet"),
  14134. weight: math.unit(190, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/bari/front.svg",
  14138. extra: 3156 / 2880,
  14139. bottom: 0.03
  14140. }
  14141. },
  14142. back: {
  14143. height: math.unit(5 + 2 / 12, "feet"),
  14144. weight: math.unit(190, "lb"),
  14145. name: "Back",
  14146. image: {
  14147. source: "./media/characters/bari/back.svg",
  14148. extra: 3260 / 2834,
  14149. bottom: 0.025
  14150. }
  14151. },
  14152. frontPlush: {
  14153. height: math.unit(5 + 2 / 12, "feet"),
  14154. weight: math.unit(190, "lb"),
  14155. name: "Front (Plush)",
  14156. image: {
  14157. source: "./media/characters/bari/front-plush.svg",
  14158. extra: 1112 / 1061,
  14159. bottom: 0.002
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Micro",
  14166. height: math.unit(3, "inches")
  14167. },
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5 + 2 / 12, "feet"),
  14171. default: true
  14172. },
  14173. {
  14174. name: "Macro",
  14175. height: math.unit(20, "feet")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Hunter Misha Raven" },
  14181. {
  14182. front: {
  14183. height: math.unit(6 + 1 / 12, "feet"),
  14184. weight: math.unit(275, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/hunter-misha-raven/front.svg"
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Mortal",
  14194. height: math.unit(6 + 1 / 12, "feet")
  14195. },
  14196. {
  14197. name: "Divine",
  14198. height: math.unit(1.12134e34, "parsecs"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Max Calore" },
  14205. {
  14206. front: {
  14207. height: math.unit(6 + 3 / 12, "feet"),
  14208. weight: math.unit(220, "lb"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/max-calore/front.svg",
  14212. extra: 1700 / 1648,
  14213. bottom: 0.01
  14214. }
  14215. },
  14216. back: {
  14217. height: math.unit(6 + 3 / 12, "feet"),
  14218. weight: math.unit(220, "lb"),
  14219. name: "Back",
  14220. image: {
  14221. source: "./media/characters/max-calore/back.svg",
  14222. extra: 1700 / 1648,
  14223. bottom: 0.01
  14224. }
  14225. },
  14226. },
  14227. [
  14228. {
  14229. name: "Normal",
  14230. height: math.unit(6 + 3 / 12, "feet"),
  14231. default: true
  14232. },
  14233. ]
  14234. ))
  14235. characterMakers.push(() => makeCharacter(
  14236. { name: "Aspen" },
  14237. {
  14238. side: {
  14239. height: math.unit(2 + 8 / 12, "feet"),
  14240. weight: math.unit(99, "lb"),
  14241. name: "Side",
  14242. image: {
  14243. source: "./media/characters/aspen/side.svg",
  14244. extra: 152 / 138,
  14245. bottom: 0.032
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Normal",
  14252. height: math.unit(2 + 8 / 12, "feet"),
  14253. default: true
  14254. },
  14255. ]
  14256. ))
  14257. characterMakers.push(() => makeCharacter(
  14258. { name: "Sheila (Feral Wolf)" },
  14259. {
  14260. side: {
  14261. height: math.unit(3 + 2 / 12, "feet"),
  14262. weight: math.unit(224, "lb"),
  14263. name: "Side",
  14264. image: {
  14265. source: "./media/characters/sheila-feral-wolf/side.svg",
  14266. extra: 179 / 166,
  14267. bottom: 0.03
  14268. }
  14269. },
  14270. },
  14271. [
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(3 + 2 / 12, "feet"),
  14275. default: true
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Michelle" },
  14281. {
  14282. side: {
  14283. height: math.unit(1 + 9 / 12, "feet"),
  14284. weight: math.unit(38, "lb"),
  14285. name: "Side",
  14286. image: {
  14287. source: "./media/characters/michelle/side.svg",
  14288. extra: 147 / 136.7,
  14289. bottom: 0.03
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(1 + 9 / 12, "feet"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Nino" },
  14303. {
  14304. front: {
  14305. height: math.unit(1 + 1 / 12, "feet"),
  14306. weight: math.unit(18, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/nino/front.svg"
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(1 + 1 / 12, "feet"),
  14317. default: true
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Viola" },
  14323. {
  14324. front: {
  14325. height: math.unit(1, "feet"),
  14326. weight: math.unit(16, "lb"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/viola/front.svg"
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(1, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Atlas" },
  14343. {
  14344. front: {
  14345. height: math.unit(6 + 5 / 12, "feet"),
  14346. weight: math.unit(580, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/atlas/front.svg",
  14350. extra: 298.5 / 290,
  14351. bottom: 0.015
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(6 + 5 / 12, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Davy" },
  14365. {
  14366. side: {
  14367. height: math.unit(1 + 10 / 12, "feet"),
  14368. weight: math.unit(25, "lb"),
  14369. name: "Side",
  14370. image: {
  14371. source: "./media/characters/davy/side.svg",
  14372. extra: 200 / 170,
  14373. bottom: 0.01
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(1 + 10 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Fiona" },
  14387. {
  14388. side: {
  14389. height: math.unit(4 + 8 / 12, "feet"),
  14390. weight: math.unit(166, "lb"),
  14391. name: "Side",
  14392. image: {
  14393. source: "./media/characters/fiona/side.svg",
  14394. extra: 232 / 220,
  14395. bottom: 0.03
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(4 + 8 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Lyla" },
  14409. {
  14410. front: {
  14411. height: math.unit(2, "feet"),
  14412. weight: math.unit(62, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/lyla/front.svg",
  14416. bottom: 0.1
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Normal",
  14423. height: math.unit(2, "feet"),
  14424. default: true
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Perseus" },
  14430. {
  14431. side: {
  14432. height: math.unit(1.8, "feet"),
  14433. weight: math.unit(44, "lb"),
  14434. name: "Side",
  14435. image: {
  14436. source: "./media/characters/perseus/side.svg",
  14437. bottom: 0.21
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(1.8, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Remus" },
  14451. {
  14452. side: {
  14453. height: math.unit(4 + 2 / 12, "feet"),
  14454. weight: math.unit(20, "lb"),
  14455. name: "Side",
  14456. image: {
  14457. source: "./media/characters/remus/side.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(4 + 2 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Raf" },
  14471. {
  14472. front: {
  14473. height: math.unit(4 + 11 / 12, "feet"),
  14474. weight: math.unit(114, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/raf/front.svg",
  14478. bottom: 0.01
  14479. }
  14480. },
  14481. side: {
  14482. height: math.unit(4 + 11 / 12, "feet"),
  14483. weight: math.unit(114, "lb"),
  14484. name: "Side",
  14485. image: {
  14486. source: "./media/characters/raf/side.svg",
  14487. bottom: 0.005
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(2, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(4 + 11 / 12, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(70, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Liam Einarr" },
  14509. {
  14510. front: {
  14511. height: math.unit(1.5, "meters"),
  14512. weight: math.unit(68, "kg"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/liam-einarr/front.svg",
  14516. extra: 2822 / 2666
  14517. }
  14518. },
  14519. back: {
  14520. height: math.unit(1.5, "meters"),
  14521. weight: math.unit(68, "kg"),
  14522. name: "Back",
  14523. image: {
  14524. source: "./media/characters/liam-einarr/back.svg",
  14525. extra: 2822 / 2666,
  14526. bottom: 0.015
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(1.5, "meters"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro",
  14538. height: math.unit(150, "meters")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(35, "km")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Linda" },
  14548. {
  14549. front: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(75, "kg"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/linda/front.svg",
  14555. extra: 930 / 874,
  14556. bottom: 0.004
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Normal",
  14563. height: math.unit(6, "feet"),
  14564. default: true
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Caylex" },
  14570. {
  14571. front: {
  14572. height: math.unit(6 + 8 / 12, "feet"),
  14573. weight: math.unit(220, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/caylex/front.svg",
  14577. extra: 821 / 772,
  14578. bottom: 0.07
  14579. }
  14580. },
  14581. back: {
  14582. height: math.unit(6 + 8 / 12, "feet"),
  14583. weight: math.unit(220, "lb"),
  14584. name: "Back",
  14585. image: {
  14586. source: "./media/characters/caylex/back.svg",
  14587. extra: 821 / 772,
  14588. bottom: 0.022
  14589. }
  14590. },
  14591. hand: {
  14592. height: math.unit(1.25, "feet"),
  14593. name: "Hand",
  14594. image: {
  14595. source: "./media/characters/caylex/hand.svg"
  14596. }
  14597. },
  14598. foot: {
  14599. height: math.unit(1.6, "feet"),
  14600. name: "Foot",
  14601. image: {
  14602. source: "./media/characters/caylex/foot.svg"
  14603. }
  14604. },
  14605. armored: {
  14606. height: math.unit(6 + 8 / 12, "feet"),
  14607. weight: math.unit(250, "lb"),
  14608. name: "Armored",
  14609. image: {
  14610. source: "./media/characters/caylex/armored.svg",
  14611. extra: 1420 / 1310,
  14612. bottom: 0.045
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(6 + 8 / 12, "feet"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Normal+",
  14624. height: math.unit(12, "feet")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Alana" },
  14630. {
  14631. front: {
  14632. height: math.unit(7 + 6 / 12, "feet"),
  14633. weight: math.unit(288, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/alana/front.svg",
  14637. extra: 679 / 653,
  14638. bottom: 22.5 / 701
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(7 + 6 / 12, "feet")
  14646. },
  14647. {
  14648. name: "Large",
  14649. height: math.unit(50, "feet")
  14650. },
  14651. {
  14652. name: "Macro",
  14653. height: math.unit(100, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Macro+",
  14658. height: math.unit(200, "feet")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Hasani" },
  14664. {
  14665. front: {
  14666. height: math.unit(6 + 1 / 12, "feet"),
  14667. weight: math.unit(210, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/hasani/front.svg",
  14671. extra: 244 / 232,
  14672. bottom: 0.01
  14673. }
  14674. },
  14675. back: {
  14676. height: math.unit(6 + 1 / 12, "feet"),
  14677. weight: math.unit(210, "lb"),
  14678. name: "Back",
  14679. image: {
  14680. source: "./media/characters/hasani/back.svg",
  14681. extra: 244 / 232,
  14682. bottom: 0.01
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(6 + 1 / 12, "feet")
  14690. },
  14691. {
  14692. name: "Macro",
  14693. height: math.unit(175, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Nita" },
  14700. {
  14701. front: {
  14702. height: math.unit(1.82, "meters"),
  14703. weight: math.unit(140, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/nita/front.svg",
  14707. extra: 2473 / 2363,
  14708. bottom: 0.01
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(1.82, "m")
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(300, "m")
  14720. },
  14721. {
  14722. name: "Mistake Canon",
  14723. height: math.unit(0.5, "miles"),
  14724. default: true
  14725. },
  14726. {
  14727. name: "Big Mistake",
  14728. height: math.unit(13, "miles")
  14729. },
  14730. {
  14731. name: "Playing God",
  14732. height: math.unit(2450, "miles")
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Shiriko" },
  14738. {
  14739. front: {
  14740. height: math.unit(4, "feet"),
  14741. weight: math.unit(120, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/shiriko/front.svg",
  14745. extra: 195 / 188
  14746. }
  14747. },
  14748. },
  14749. [
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(4, "feet"),
  14753. default: true
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Deja" },
  14759. {
  14760. front: {
  14761. height: math.unit(6, "feet"),
  14762. name: "front",
  14763. image: {
  14764. source: "./media/characters/deja/front.svg",
  14765. extra: 926 / 840,
  14766. bottom: 0.07
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Planck Length",
  14773. height: math.unit(1.6e-35, "meters")
  14774. },
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(30.48, "meters"),
  14778. default: true
  14779. },
  14780. {
  14781. name: "Universal",
  14782. height: math.unit(8.8e26, "meters")
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Anima" },
  14788. {
  14789. side: {
  14790. height: math.unit(8, "feet"),
  14791. weight: math.unit(6300, "lb"),
  14792. name: "Side",
  14793. image: {
  14794. source: "./media/characters/anima/side.svg",
  14795. bottom: 0.035
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(8, "feet"),
  14803. default: true
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Bianca" },
  14809. {
  14810. front: {
  14811. height: math.unit(8, "feet"),
  14812. weight: math.unit(350, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/bianca/front.svg",
  14816. extra: 234 / 225,
  14817. bottom: 0.03
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(8, "feet"),
  14825. default: true
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Adinia" },
  14831. {
  14832. front: {
  14833. height: math.unit(6, "feet"),
  14834. weight: math.unit(150, "lb"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/adinia/front.svg",
  14838. extra: 1845 / 1672,
  14839. bottom: 0.02
  14840. }
  14841. },
  14842. back: {
  14843. height: math.unit(6, "feet"),
  14844. weight: math.unit(150, "lb"),
  14845. name: "Back",
  14846. image: {
  14847. source: "./media/characters/adinia/back.svg",
  14848. extra: 1845 / 1672,
  14849. bottom: 0.002
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Normal",
  14856. height: math.unit(11 + 5 / 12, "feet"),
  14857. default: true
  14858. },
  14859. ]
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Lykasa" },
  14863. {
  14864. front: {
  14865. height: math.unit(3, "meters"),
  14866. weight: math.unit(200, "kg"),
  14867. name: "Front",
  14868. image: {
  14869. source: "./media/characters/lykasa/front.svg",
  14870. extra: 1076 / 976,
  14871. bottom: 0.06
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(3, "meters")
  14879. },
  14880. {
  14881. name: "Kaiju",
  14882. height: math.unit(120, "meters"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Mega Kaiju",
  14887. height: math.unit(240, "km")
  14888. },
  14889. {
  14890. name: "Giga Kaiju",
  14891. height: math.unit(400, "megameters")
  14892. },
  14893. {
  14894. name: "Tera Kaiju",
  14895. height: math.unit(800, "gigameters")
  14896. },
  14897. {
  14898. name: "Kaiju Dragon Goddess",
  14899. height: math.unit(26, "zettaparsecs")
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Malfaren" },
  14905. {
  14906. side: {
  14907. height: math.unit(283 / 124 * 6, "feet"),
  14908. weight: math.unit(35000, "lb"),
  14909. name: "Side",
  14910. image: {
  14911. source: "./media/characters/malfaren/side.svg",
  14912. extra: 2500 / 1010,
  14913. bottom: 0.01
  14914. }
  14915. },
  14916. front: {
  14917. height: math.unit(22.36, "feet"),
  14918. weight: math.unit(35000, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/malfaren/front.svg",
  14922. extra: 1631 / 1476,
  14923. bottom: 0.01
  14924. }
  14925. },
  14926. maw: {
  14927. height: math.unit(6.9, "feet"),
  14928. name: "Maw",
  14929. image: {
  14930. source: "./media/characters/malfaren/maw.svg"
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Big",
  14937. height: math.unit(283 / 162 * 6, "feet"),
  14938. },
  14939. {
  14940. name: "Bigger",
  14941. height: math.unit(283 / 124 * 6, "feet")
  14942. },
  14943. {
  14944. name: "Massive",
  14945. height: math.unit(283 / 92 * 6, "feet"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "👀💦",
  14950. height: math.unit(283 / 73 * 6, "feet"),
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Kernel" },
  14956. {
  14957. front: {
  14958. height: math.unit(1.7, "m"),
  14959. weight: math.unit(70, "kg"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/kernel/front.svg",
  14963. extra: 222 / 210,
  14964. bottom: 0.007
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Nano",
  14971. height: math.unit(17, "micrometers")
  14972. },
  14973. {
  14974. name: "Micro",
  14975. height: math.unit(1.7, "mm")
  14976. },
  14977. {
  14978. name: "Small",
  14979. height: math.unit(1.7, "cm")
  14980. },
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(1.7, "m"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Jayne Folest" },
  14990. {
  14991. front: {
  14992. height: math.unit(1.75, "meters"),
  14993. weight: math.unit(65, "kg"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/jayne-folest/front.svg",
  14997. extra: 2115 / 2007,
  14998. bottom: 0.02
  14999. }
  15000. },
  15001. back: {
  15002. height: math.unit(1.75, "meters"),
  15003. weight: math.unit(65, "kg"),
  15004. name: "Back",
  15005. image: {
  15006. source: "./media/characters/jayne-folest/back.svg",
  15007. extra: 2115 / 2007,
  15008. bottom: 0.005
  15009. }
  15010. },
  15011. frontClothed: {
  15012. height: math.unit(1.75, "meters"),
  15013. weight: math.unit(65, "kg"),
  15014. name: "Front (Clothed)",
  15015. image: {
  15016. source: "./media/characters/jayne-folest/front-clothed.svg",
  15017. extra: 2115 / 2007,
  15018. bottom: 0.035
  15019. }
  15020. },
  15021. hand: {
  15022. height: math.unit(1 / 1.260, "feet"),
  15023. name: "Hand",
  15024. image: {
  15025. source: "./media/characters/jayne-folest/hand.svg"
  15026. }
  15027. },
  15028. foot: {
  15029. height: math.unit(1 / 0.918, "feet"),
  15030. name: "Foot",
  15031. image: {
  15032. source: "./media/characters/jayne-folest/foot.svg"
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Micro",
  15039. height: math.unit(4, "cm")
  15040. },
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(1.75, "meters")
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(47.5, "meters"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Algier" },
  15054. {
  15055. front: {
  15056. height: math.unit(180, "cm"),
  15057. weight: math.unit(70, "kg"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/algier/front.svg",
  15061. extra: 596 / 572,
  15062. bottom: 0.04
  15063. }
  15064. },
  15065. back: {
  15066. height: math.unit(180, "cm"),
  15067. weight: math.unit(70, "kg"),
  15068. name: "Back",
  15069. image: {
  15070. source: "./media/characters/algier/back.svg",
  15071. extra: 596 / 572,
  15072. bottom: 0.025
  15073. }
  15074. },
  15075. frontdressed: {
  15076. height: math.unit(180, "cm"),
  15077. weight: math.unit(150, "kg"),
  15078. name: "Front-dressed",
  15079. image: {
  15080. source: "./media/characters/algier/front-dressed.svg",
  15081. extra: 596 / 572,
  15082. bottom: 0.038
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Micro",
  15089. height: math.unit(5, "cm")
  15090. },
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(180, "cm"),
  15094. default: true
  15095. },
  15096. {
  15097. name: "Macro",
  15098. height: math.unit(64, "m")
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Pretzel" },
  15104. {
  15105. upright: {
  15106. height: math.unit(7, "feet"),
  15107. weight: math.unit(300, "lb"),
  15108. name: "Upright",
  15109. image: {
  15110. source: "./media/characters/pretzel/upright.svg",
  15111. extra: 534 / 522,
  15112. bottom: 0.065
  15113. }
  15114. },
  15115. sprawling: {
  15116. height: math.unit(3.75, "feet"),
  15117. weight: math.unit(300, "lb"),
  15118. name: "Sprawling",
  15119. image: {
  15120. source: "./media/characters/pretzel/sprawling.svg",
  15121. extra: 314 / 281,
  15122. bottom: 0.1
  15123. }
  15124. },
  15125. tongue: {
  15126. height: math.unit(2, "feet"),
  15127. name: "Tongue",
  15128. image: {
  15129. source: "./media/characters/pretzel/tongue.svg"
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(7, "feet"),
  15137. default: true
  15138. },
  15139. {
  15140. name: "Oversized",
  15141. height: math.unit(15, "feet")
  15142. },
  15143. {
  15144. name: "Huge",
  15145. height: math.unit(30, "feet")
  15146. },
  15147. {
  15148. name: "Macro",
  15149. height: math.unit(250, "feet")
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Roxi" },
  15155. {
  15156. sideFront: {
  15157. height: math.unit(5 + 2 / 12, "feet"),
  15158. weight: math.unit(120, "lb"),
  15159. name: "Front Side",
  15160. image: {
  15161. source: "./media/characters/roxi/side-front.svg",
  15162. extra: 2924 / 2717,
  15163. bottom: 0.08
  15164. }
  15165. },
  15166. sideBack: {
  15167. height: math.unit(5 + 2 / 12, "feet"),
  15168. weight: math.unit(120, "lb"),
  15169. name: "Back Side",
  15170. image: {
  15171. source: "./media/characters/roxi/side-back.svg",
  15172. extra: 2904 / 2693,
  15173. bottom: 0.06
  15174. }
  15175. },
  15176. front: {
  15177. height: math.unit(5 + 2 / 12, "feet"),
  15178. weight: math.unit(120, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/roxi/front.svg",
  15182. extra: 2028 / 1907,
  15183. bottom: 0.01
  15184. }
  15185. },
  15186. frontAlt: {
  15187. height: math.unit(5 + 2 / 12, "feet"),
  15188. weight: math.unit(120, "lb"),
  15189. name: "Front (Alt)",
  15190. image: {
  15191. source: "./media/characters/roxi/front-alt.svg",
  15192. extra: 1828 / 1798,
  15193. bottom: 0.01
  15194. }
  15195. },
  15196. sitting: {
  15197. height: math.unit(2.8, "feet"),
  15198. weight: math.unit(120, "lb"),
  15199. name: "Sitting",
  15200. image: {
  15201. source: "./media/characters/roxi/sitting.svg",
  15202. extra: 2660 / 2462,
  15203. bottom: 0.1
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Normal",
  15210. height: math.unit(5 + 2 / 12, "feet"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Shadow" },
  15217. {
  15218. side: {
  15219. height: math.unit(55, "feet"),
  15220. weight: math.unit(153, "tons"),
  15221. name: "Side",
  15222. image: {
  15223. source: "./media/characters/shadow/side.svg",
  15224. extra: 701 / 628,
  15225. bottom: 0.02
  15226. }
  15227. },
  15228. flying: {
  15229. height: math.unit(145, "feet"),
  15230. weight: math.unit(153, "tons"),
  15231. name: "Flying",
  15232. image: {
  15233. source: "./media/characters/shadow/flying.svg"
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(55, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Marcie" },
  15247. {
  15248. front: {
  15249. height: math.unit(6, "feet"),
  15250. weight: math.unit(200, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/marcie/front.svg",
  15254. extra: 960 / 876,
  15255. bottom: 58 / 1017.87
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Macro",
  15262. height: math.unit(1, "mile"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Kachina" },
  15269. {
  15270. front: {
  15271. height: math.unit(7, "feet"),
  15272. weight: math.unit(200, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/kachina/front.svg",
  15276. extra: 1290.68 / 1119,
  15277. bottom: 36.5 / 1327.18
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(7, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Kash" },
  15291. {
  15292. looking: {
  15293. height: math.unit(2, "meters"),
  15294. weight: math.unit(300, "kg"),
  15295. name: "Looking",
  15296. image: {
  15297. source: "./media/characters/kash/looking.svg",
  15298. extra: 474 / 344,
  15299. bottom: 0.03
  15300. }
  15301. },
  15302. side: {
  15303. height: math.unit(2, "meters"),
  15304. weight: math.unit(300, "kg"),
  15305. name: "Side",
  15306. image: {
  15307. source: "./media/characters/kash/side.svg",
  15308. extra: 302 / 251,
  15309. bottom: 0.03
  15310. }
  15311. },
  15312. front: {
  15313. height: math.unit(2, "meters"),
  15314. weight: math.unit(300, "kg"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/kash/front.svg",
  15318. extra: 495 / 360,
  15319. bottom: 0.015
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(2, "meters"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Big",
  15331. height: math.unit(3, "meters")
  15332. },
  15333. {
  15334. name: "Large",
  15335. height: math.unit(5, "meters")
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Lalim" },
  15341. {
  15342. feeding: {
  15343. height: math.unit(6.7, "feet"),
  15344. weight: math.unit(350, "lb"),
  15345. name: "Feeding",
  15346. image: {
  15347. source: "./media/characters/lalim/feeding.svg",
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(6.7, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "De'Vout" },
  15361. {
  15362. front: {
  15363. height: math.unit(9.5, "feet"),
  15364. weight: math.unit(600, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/de'vout/front.svg",
  15368. extra: 1443 / 1328,
  15369. bottom: 0.025
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(9.5, "feet"),
  15374. weight: math.unit(600, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/de'vout/back.svg",
  15378. extra: 1443 / 1328
  15379. }
  15380. },
  15381. frontDressed: {
  15382. height: math.unit(9.5, "feet"),
  15383. weight: math.unit(600, "lb"),
  15384. name: "Front (Dressed",
  15385. image: {
  15386. source: "./media/characters/de'vout/front-dressed.svg",
  15387. extra: 1443 / 1328,
  15388. bottom: 0.025
  15389. }
  15390. },
  15391. backDressed: {
  15392. height: math.unit(9.5, "feet"),
  15393. weight: math.unit(600, "lb"),
  15394. name: "Back (Dressed",
  15395. image: {
  15396. source: "./media/characters/de'vout/back-dressed.svg",
  15397. extra: 1443 / 1328
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(9.5, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Talana" },
  15411. {
  15412. front: {
  15413. height: math.unit(8, "feet"),
  15414. weight: math.unit(225, "lb"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/talana/front.svg",
  15418. extra: 1410 / 1300,
  15419. bottom: 0.015
  15420. }
  15421. },
  15422. frontDressed: {
  15423. height: math.unit(8, "feet"),
  15424. weight: math.unit(225, "lb"),
  15425. name: "Front (Dressed",
  15426. image: {
  15427. source: "./media/characters/talana/front-dressed.svg",
  15428. extra: 1410 / 1300,
  15429. bottom: 0.015
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(8, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Xeauvok" },
  15443. {
  15444. side: {
  15445. height: math.unit(7.2, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Side",
  15448. image: {
  15449. source: "./media/characters/xeauvok/side.svg",
  15450. extra: 1975 / 1523,
  15451. bottom: 0.07
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(7.2, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Zara" },
  15465. {
  15466. side: {
  15467. height: math.unit(10, "feet"),
  15468. weight: math.unit(900, "kg"),
  15469. name: "Side",
  15470. image: {
  15471. source: "./media/characters/zara/side.svg",
  15472. extra: 504 / 498
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(10, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Richard (Dragon)" },
  15486. {
  15487. side: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Side",
  15491. image: {
  15492. source: "./media/characters/richard-dragon/side.svg",
  15493. extra: 845 / 340,
  15494. bottom: 0.017
  15495. }
  15496. },
  15497. maw: {
  15498. height: math.unit(2.97, "feet"),
  15499. name: "Maw",
  15500. image: {
  15501. source: "./media/characters/richard-dragon/maw.svg"
  15502. }
  15503. },
  15504. },
  15505. [
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Richard (Smeargle)" },
  15510. {
  15511. front: {
  15512. height: math.unit(4, "feet"),
  15513. weight: math.unit(100, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/richard-smeargle/front.svg",
  15517. extra: 2952 / 2820,
  15518. bottom: 0.028
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(4, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Dynamax",
  15530. height: math.unit(20, "meters")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Klay" },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(110, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/klay/front.svg",
  15543. extra: 962 / 883,
  15544. bottom: 0.04
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(110, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/klay/back.svg",
  15553. extra: 962 / 883
  15554. }
  15555. },
  15556. beans: {
  15557. height: math.unit(1.15, "feet"),
  15558. name: "Beans",
  15559. image: {
  15560. source: "./media/characters/klay/beans.svg"
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Micro",
  15567. height: math.unit(6, "inches")
  15568. },
  15569. {
  15570. name: "Mini",
  15571. height: math.unit(3, "feet")
  15572. },
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(6, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Big",
  15580. height: math.unit(25, "feet")
  15581. },
  15582. {
  15583. name: "Macro",
  15584. height: math.unit(100, "feet")
  15585. },
  15586. {
  15587. name: "Megamacro",
  15588. height: math.unit(400, "feet")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Marcus" },
  15594. {
  15595. front: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(160, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/marcus/front.svg",
  15601. extra: 734 / 676,
  15602. bottom: 0.03
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Little",
  15609. height: math.unit(6, "feet")
  15610. },
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(110, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(250, "feet")
  15619. },
  15620. {
  15621. name: "Megamacro",
  15622. height: math.unit(1000, "feet")
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Claude DelRoute" },
  15628. {
  15629. front: {
  15630. height: math.unit(7, "feet"),
  15631. weight: math.unit(275, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/claude-delroute/front.svg",
  15635. extra: 230 / 214,
  15636. bottom: 0.007
  15637. }
  15638. },
  15639. side: {
  15640. height: math.unit(7, "feet"),
  15641. weight: math.unit(275, "lb"),
  15642. name: "Side",
  15643. image: {
  15644. source: "./media/characters/claude-delroute/side.svg",
  15645. extra: 222 / 214,
  15646. bottom: 0.01
  15647. }
  15648. },
  15649. back: {
  15650. height: math.unit(7, "feet"),
  15651. weight: math.unit(275, "lb"),
  15652. name: "Back",
  15653. image: {
  15654. source: "./media/characters/claude-delroute/back.svg",
  15655. extra: 230 / 214,
  15656. bottom: 0.015
  15657. }
  15658. },
  15659. maw: {
  15660. height: math.unit(0.6407, "meters"),
  15661. name: "Maw",
  15662. image: {
  15663. source: "./media/characters/claude-delroute/maw.svg"
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(7, "feet"),
  15671. default: true
  15672. },
  15673. {
  15674. name: "Lorge",
  15675. height: math.unit(20, "feet")
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Dragonien" },
  15681. {
  15682. front: {
  15683. height: math.unit(8 + 4 / 12, "feet"),
  15684. weight: math.unit(600, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/dragonien/front.svg",
  15688. extra: 100 / 94,
  15689. bottom: 3.3 / 103.3445
  15690. }
  15691. },
  15692. back: {
  15693. height: math.unit(8 + 4 / 12, "feet"),
  15694. weight: math.unit(600, "lb"),
  15695. name: "Back",
  15696. image: {
  15697. source: "./media/characters/dragonien/back.svg",
  15698. extra: 776 / 746,
  15699. bottom: 6.4 / 782.0616
  15700. }
  15701. },
  15702. foot: {
  15703. height: math.unit(1.54, "feet"),
  15704. name: "Foot",
  15705. image: {
  15706. source: "./media/characters/dragonien/foot.svg",
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(8 + 4 / 12, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(200, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(1, "mile")
  15723. },
  15724. {
  15725. name: "Gigamacro",
  15726. height: math.unit(1000, "miles")
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Desta" },
  15732. {
  15733. front: {
  15734. height: math.unit(5 + 2 / 12, "feet"),
  15735. weight: math.unit(110, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/desta/front.svg",
  15739. extra: 1482 / 1417
  15740. }
  15741. },
  15742. side: {
  15743. height: math.unit(5 + 2 / 12, "feet"),
  15744. weight: math.unit(110, "lb"),
  15745. name: "Side",
  15746. image: {
  15747. source: "./media/characters/desta/side.svg",
  15748. extra: 2579 / 2491,
  15749. bottom: 0.053
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Micro",
  15756. height: math.unit(6, "inches")
  15757. },
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(5 + 2 / 12, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(62, "feet")
  15766. },
  15767. {
  15768. name: "Megamacro",
  15769. height: math.unit(1800, "feet")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Storm Alystar" },
  15775. {
  15776. front: {
  15777. height: math.unit(10, "feet"),
  15778. weight: math.unit(700, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/storm-alystar/front.svg",
  15782. extra: 2112 / 1898,
  15783. bottom: 0.034
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Micro",
  15790. height: math.unit(3.5, "inches")
  15791. },
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(10, "feet"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(400, "feet")
  15800. },
  15801. {
  15802. name: "Deific",
  15803. height: math.unit(60, "miles")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Ilia" },
  15809. {
  15810. front: {
  15811. height: math.unit(2.35, "meters"),
  15812. weight: math.unit(119, "kg"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/ilia/front.svg",
  15816. extra: 1285 / 1255,
  15817. bottom: 0.06
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(2.35, "meters")
  15825. },
  15826. {
  15827. name: "Macro",
  15828. height: math.unit(140, "meters"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(100, "miles")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "KingDead" },
  15839. {
  15840. front: {
  15841. height: math.unit(6 + 5 / 12, "feet"),
  15842. weight: math.unit(190, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/kingdead/front.svg",
  15846. extra: 1228 / 1177
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(7, "inches")
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(6 + 5 / 12, "feet")
  15858. },
  15859. {
  15860. name: "Macro",
  15861. height: math.unit(150, "feet"),
  15862. default: true
  15863. },
  15864. {
  15865. name: "Megamacro",
  15866. height: math.unit(200, "miles")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Kyrehx" },
  15872. {
  15873. front: {
  15874. height: math.unit(8, "feet"),
  15875. weight: math.unit(600, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/kyrehx/front.svg",
  15879. extra: 1195 / 1095,
  15880. bottom: 0.034
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Micro",
  15887. height: math.unit(2, "inches")
  15888. },
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(8, "feet"),
  15892. default: true
  15893. },
  15894. {
  15895. name: "Macro",
  15896. height: math.unit(255, "feet")
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Xang" },
  15902. {
  15903. front: {
  15904. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15905. weight: math.unit(184, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/xang/front.svg",
  15909. extra: 845 / 755
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15917. default: true
  15918. },
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(0.935 * 146, "feet")
  15922. },
  15923. {
  15924. name: "Megamacro",
  15925. height: math.unit(0.935 * 3, "miles")
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Doc Weardno" },
  15931. {
  15932. frontDressed: {
  15933. height: math.unit(5 + 7 / 12, "feet"),
  15934. weight: math.unit(140, "lb"),
  15935. name: "Front (Dressed)",
  15936. image: {
  15937. source: "./media/characters/doc-weardno/front-dressed.svg",
  15938. extra: 263 / 234
  15939. }
  15940. },
  15941. backDressed: {
  15942. height: math.unit(5 + 7 / 12, "feet"),
  15943. weight: math.unit(140, "lb"),
  15944. name: "Back (Dressed)",
  15945. image: {
  15946. source: "./media/characters/doc-weardno/back-dressed.svg",
  15947. extra: 266 / 238
  15948. }
  15949. },
  15950. front: {
  15951. height: math.unit(5 + 7 / 12, "feet"),
  15952. weight: math.unit(140, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/doc-weardno/front.svg",
  15956. extra: 254 / 233
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Micro",
  15963. height: math.unit(3, "inches")
  15964. },
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(5 + 7 / 12, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Macro",
  15972. height: math.unit(25, "feet")
  15973. },
  15974. {
  15975. name: "Megamacro",
  15976. height: math.unit(2, "miles")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Seth Whilst" },
  15982. {
  15983. front: {
  15984. height: math.unit(6 + 2 / 12, "feet"),
  15985. weight: math.unit(153, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/seth-whilst/front.svg",
  15989. bottom: 0.07
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Micro",
  15996. height: math.unit(5, "inches")
  15997. },
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(6 + 2 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Pocket Jabari" },
  16007. {
  16008. front: {
  16009. height: math.unit(3, "inches"),
  16010. weight: math.unit(8, "grams"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/pocket-jabari/front.svg",
  16014. extra: 1024 / 974,
  16015. bottom: 0.039
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Minimicro",
  16022. height: math.unit(8, "mm")
  16023. },
  16024. {
  16025. name: "Micro",
  16026. height: math.unit(3, "inches"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(3, "feet")
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Sapphy" },
  16037. {
  16038. front: {
  16039. height: math.unit(15, "feet"),
  16040. weight: math.unit(3280, "lb"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/sapphy/front.svg",
  16044. extra: 671 / 577,
  16045. bottom: 0.085
  16046. }
  16047. },
  16048. back: {
  16049. height: math.unit(15, "feet"),
  16050. weight: math.unit(3280, "lb"),
  16051. name: "Back",
  16052. image: {
  16053. source: "./media/characters/sapphy/back.svg",
  16054. extra: 631 / 607,
  16055. bottom: 0.045
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(15, "feet")
  16063. },
  16064. {
  16065. name: "Casual Macro",
  16066. height: math.unit(120, "feet")
  16067. },
  16068. {
  16069. name: "Macro",
  16070. height: math.unit(2150, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Megamacro",
  16075. height: math.unit(8, "miles")
  16076. },
  16077. {
  16078. name: "Galaxy Mom",
  16079. height: math.unit(6, "megalightyears")
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Kiro" },
  16085. {
  16086. front: {
  16087. height: math.unit(6, "feet"),
  16088. weight: math.unit(170, "lb"),
  16089. name: "Front",
  16090. image: {
  16091. source: "./media/characters/kiro/front.svg",
  16092. extra: 1064 / 1012,
  16093. bottom: 0.052
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Micro",
  16100. height: math.unit(6, "inches")
  16101. },
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(6, "feet"),
  16105. default: true
  16106. },
  16107. {
  16108. name: "Macro",
  16109. height: math.unit(72, "feet")
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Irishfox" },
  16115. {
  16116. front: {
  16117. height: math.unit(5 + 9 / 12, "feet"),
  16118. weight: math.unit(175, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/irishfox/front.svg",
  16122. extra: 1912 / 1680,
  16123. bottom: 0.02
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Nano",
  16130. height: math.unit(1, "mm")
  16131. },
  16132. {
  16133. name: "Micro",
  16134. height: math.unit(2, "inches")
  16135. },
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(5 + 9 / 12, "feet"),
  16139. default: true
  16140. },
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(45, "feet")
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Aronai Sieyes" },
  16149. {
  16150. front: {
  16151. height: math.unit(6 + 1 / 12, "feet"),
  16152. weight: math.unit(150, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/aronai-sieyes/front.svg",
  16156. extra: 1556 / 1480,
  16157. bottom: 0.015
  16158. }
  16159. },
  16160. side: {
  16161. height: math.unit(6 + 1 / 12, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Side",
  16164. image: {
  16165. source: "./media/characters/aronai-sieyes/side.svg",
  16166. extra: 1433 / 1390,
  16167. bottom: 0.0393
  16168. }
  16169. },
  16170. back: {
  16171. height: math.unit(6 + 1 / 12, "feet"),
  16172. weight: math.unit(150, "lb"),
  16173. name: "Back",
  16174. image: {
  16175. source: "./media/characters/aronai-sieyes/back.svg",
  16176. extra: 1544 / 1494,
  16177. bottom: 0.02
  16178. }
  16179. },
  16180. frontClothed: {
  16181. height: math.unit(6 + 1 / 12, "feet"),
  16182. weight: math.unit(150, "lb"),
  16183. name: "Front (Clothed)",
  16184. image: {
  16185. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16186. extra: 1582 / 1527
  16187. }
  16188. },
  16189. feral: {
  16190. height: math.unit(18, "feet"),
  16191. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16192. name: "Feral",
  16193. image: {
  16194. source: "./media/characters/aronai-sieyes/feral.svg",
  16195. extra: 1530 / 1240,
  16196. bottom: 0.035
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Micro",
  16203. height: math.unit(2, "inches")
  16204. },
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(6 + 1 / 12, "feet"),
  16208. default: true
  16209. }
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Xuna" },
  16214. {
  16215. front: {
  16216. height: math.unit(12, "feet"),
  16217. weight: math.unit(410, "kg"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/xuna/front.svg",
  16221. extra: 2184 / 1980
  16222. }
  16223. },
  16224. side: {
  16225. height: math.unit(12, "feet"),
  16226. weight: math.unit(410, "kg"),
  16227. name: "Side",
  16228. image: {
  16229. source: "./media/characters/xuna/side.svg",
  16230. extra: 2184 / 1980
  16231. }
  16232. },
  16233. back: {
  16234. height: math.unit(12, "feet"),
  16235. weight: math.unit(410, "kg"),
  16236. name: "Back",
  16237. image: {
  16238. source: "./media/characters/xuna/back.svg",
  16239. extra: 2184 / 1980
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Nano glow",
  16246. height: math.unit(10, "nm")
  16247. },
  16248. {
  16249. name: "Micro floof",
  16250. height: math.unit(0.3, "m")
  16251. },
  16252. {
  16253. name: "Huggable softy boi",
  16254. height: math.unit(3.6576, "m"),
  16255. default: true
  16256. },
  16257. {
  16258. name: "Admirable floof",
  16259. height: math.unit(80, "meters")
  16260. },
  16261. {
  16262. name: "Gentle macro",
  16263. height: math.unit(300, "meters")
  16264. },
  16265. {
  16266. name: "Very careful floof",
  16267. height: math.unit(3200, "meters")
  16268. },
  16269. {
  16270. name: "The mega floof",
  16271. height: math.unit(36000, "meters")
  16272. },
  16273. {
  16274. name: "Giga-fur-Wicker",
  16275. height: math.unit(4800000, "meters")
  16276. },
  16277. {
  16278. name: "Licky world",
  16279. height: math.unit(20000000, "meters")
  16280. },
  16281. {
  16282. name: "Floofy cyan sun",
  16283. height: math.unit(1500000000, "meters")
  16284. },
  16285. {
  16286. name: "Milky Wicker",
  16287. height: math.unit(1000000000000000000000, "meters")
  16288. },
  16289. {
  16290. name: "The observing Wicker",
  16291. height: math.unit(999999999999999999999999999, "meters")
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Arokha Sieyes" },
  16297. {
  16298. front: {
  16299. height: math.unit(5 + 9 / 12, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/arokha-sieyes/front.svg",
  16304. extra: 1425 / 1284,
  16305. bottom: 0.05
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(5 + 9 / 12, "feet")
  16313. },
  16314. {
  16315. name: "Macro",
  16316. height: math.unit(30, "meters"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Arokh Sieyes" },
  16323. {
  16324. front: {
  16325. height: math.unit(6, "feet"),
  16326. weight: math.unit(180, "lb"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/arokh-sieyes/front.svg",
  16330. extra: 1830 / 1769,
  16331. bottom: 0.01
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(6, "feet")
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(30, "meters"),
  16343. default: true
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Goldeneye" },
  16349. {
  16350. side: {
  16351. height: math.unit(13 + 1 / 12, "feet"),
  16352. weight: math.unit(8.5, "tonnes"),
  16353. name: "Side",
  16354. image: {
  16355. source: "./media/characters/goldeneye/side.svg",
  16356. extra: 1182 / 778,
  16357. bottom: 0.067
  16358. }
  16359. },
  16360. paw: {
  16361. height: math.unit(3.4, "feet"),
  16362. name: "Paw",
  16363. image: {
  16364. source: "./media/characters/goldeneye/paw.svg"
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(13 + 1 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Leonardo Lycheborne" },
  16378. {
  16379. front: {
  16380. height: math.unit(6 + 1 / 12, "feet"),
  16381. weight: math.unit(210, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/leonardo-lycheborne/front.svg",
  16385. extra: 390 / 365,
  16386. bottom: 0.032
  16387. }
  16388. },
  16389. side: {
  16390. height: math.unit(6 + 1 / 12, "feet"),
  16391. weight: math.unit(210, "lb"),
  16392. name: "Side",
  16393. image: {
  16394. source: "./media/characters/leonardo-lycheborne/side.svg",
  16395. extra: 390 / 365,
  16396. bottom: 0.005
  16397. }
  16398. },
  16399. back: {
  16400. height: math.unit(6 + 1 / 12, "feet"),
  16401. weight: math.unit(210, "lb"),
  16402. name: "Back",
  16403. image: {
  16404. source: "./media/characters/leonardo-lycheborne/back.svg",
  16405. extra: 392 / 366,
  16406. bottom: 0.01
  16407. }
  16408. },
  16409. hand: {
  16410. height: math.unit(1.08, "feet"),
  16411. name: "Hand",
  16412. image: {
  16413. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16414. }
  16415. },
  16416. foot: {
  16417. height: math.unit(1.32, "feet"),
  16418. name: "Foot",
  16419. image: {
  16420. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16421. }
  16422. },
  16423. were: {
  16424. height: math.unit(20, "feet"),
  16425. weight: math.unit(7800, "lb"),
  16426. name: "Were",
  16427. image: {
  16428. source: "./media/characters/leonardo-lycheborne/were.svg",
  16429. extra: 308 / 294,
  16430. bottom: 0.048
  16431. }
  16432. },
  16433. feral: {
  16434. height: math.unit(7.5, "feet"),
  16435. weight: math.unit(600, "lb"),
  16436. name: "Feral",
  16437. image: {
  16438. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16439. extra: 210 / 186,
  16440. bottom: 0.108
  16441. }
  16442. },
  16443. taur: {
  16444. height: math.unit(11, "feet"),
  16445. weight: math.unit(3300, "lb"),
  16446. name: "Taur",
  16447. image: {
  16448. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16449. extra: 320 / 303,
  16450. bottom: 0.025
  16451. }
  16452. },
  16453. barghest: {
  16454. height: math.unit(11, "feet"),
  16455. weight: math.unit(1300, "lb"),
  16456. name: "Barghest",
  16457. image: {
  16458. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16459. extra: 323 / 302,
  16460. bottom: 0.027
  16461. }
  16462. },
  16463. dick: {
  16464. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16465. name: "Dick",
  16466. image: {
  16467. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16468. }
  16469. },
  16470. dickWere: {
  16471. height: math.unit((20) / 3.8, "feet"),
  16472. name: "Dick (Were)",
  16473. image: {
  16474. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(6 + 1 / 12, "feet"),
  16482. default: true
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Jet" },
  16488. {
  16489. front: {
  16490. height: math.unit(10, "feet"),
  16491. weight: math.unit(350, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/jet/front.svg",
  16495. extra: 2050 / 1980,
  16496. bottom: 0.013
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(10, "feet"),
  16501. weight: math.unit(350, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/jet/back.svg",
  16505. extra: 2050 / 1980,
  16506. bottom: 0.013
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Micro",
  16513. height: math.unit(6, "inches")
  16514. },
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(10, "feet"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(100, "feet")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Tanarath" },
  16528. {
  16529. front: {
  16530. height: math.unit(15, "feet"),
  16531. weight: math.unit(2800, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/tanarath/front.svg",
  16535. extra: 2392 / 2220,
  16536. bottom: 0.03
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(15, "feet"),
  16541. weight: math.unit(2800, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/tanarath/back.svg",
  16545. extra: 2392 / 2220,
  16546. bottom: 0.03
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(15, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Patty CattyBatty" },
  16560. {
  16561. front: {
  16562. height: math.unit(7 + 1 / 12, "feet"),
  16563. weight: math.unit(175, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/patty-cattybatty/front.svg",
  16567. extra: 908 / 874,
  16568. bottom: 0.025
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Micro",
  16575. height: math.unit(1, "inch")
  16576. },
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(7 + 1 / 12, "feet")
  16580. },
  16581. {
  16582. name: "Mini Macro",
  16583. height: math.unit(155, "feet")
  16584. },
  16585. {
  16586. name: "Macro",
  16587. height: math.unit(1077, "feet")
  16588. },
  16589. {
  16590. name: "Mega Macro",
  16591. height: math.unit(47650, "feet"),
  16592. default: true
  16593. },
  16594. {
  16595. name: "Giga Macro",
  16596. height: math.unit(440, "miles")
  16597. },
  16598. {
  16599. name: "Tera Macro",
  16600. height: math.unit(8700, "miles")
  16601. },
  16602. {
  16603. name: "Planetary Macro",
  16604. height: math.unit(32700, "miles")
  16605. },
  16606. {
  16607. name: "Solar Macro",
  16608. height: math.unit(550000, "miles")
  16609. },
  16610. {
  16611. name: "Celestial Macro",
  16612. height: math.unit(2.5, "AU")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Cappu" },
  16618. {
  16619. front: {
  16620. height: math.unit(4 + 5 / 12, "feet"),
  16621. weight: math.unit(90, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/cappu/front.svg",
  16625. extra: 1247 / 1152,
  16626. bottom: 0.012
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(4 + 5 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Sebi" },
  16640. {
  16641. frontDressed: {
  16642. height: math.unit(70, "cm"),
  16643. weight: math.unit(6, "kg"),
  16644. name: "Front (Dressed)",
  16645. image: {
  16646. source: "./media/characters/sebi/front-dressed.svg",
  16647. extra: 713.5 / 686.5,
  16648. bottom: 0.003
  16649. }
  16650. },
  16651. front: {
  16652. height: math.unit(70, "cm"),
  16653. weight: math.unit(5, "kg"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/sebi/front.svg",
  16657. extra: 713.5 / 686.5,
  16658. bottom: 0.003
  16659. }
  16660. }
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(70, "cm"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(8, "meters")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Typhek" },
  16676. {
  16677. front: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(150, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/typhek/front.svg",
  16683. extra: 1948 / 1929,
  16684. bottom: 0.025
  16685. }
  16686. },
  16687. side: {
  16688. height: math.unit(6, "feet"),
  16689. weight: math.unit(150, "lb"),
  16690. name: "Side",
  16691. image: {
  16692. source: "./media/characters/typhek/side.svg",
  16693. extra: 2034 / 2010,
  16694. bottom: 0.003
  16695. }
  16696. },
  16697. back: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Back",
  16701. image: {
  16702. source: "./media/characters/typhek/back.svg",
  16703. extra: 2005 / 1978,
  16704. bottom: 0.004
  16705. }
  16706. },
  16707. palm: {
  16708. height: math.unit(1.2, "feet"),
  16709. name: "Palm",
  16710. image: {
  16711. source: "./media/characters/typhek/palm.svg"
  16712. }
  16713. },
  16714. fist: {
  16715. height: math.unit(1.1, "feet"),
  16716. name: "Fist",
  16717. image: {
  16718. source: "./media/characters/typhek/fist.svg"
  16719. }
  16720. },
  16721. foot: {
  16722. height: math.unit(1.57, "feet"),
  16723. name: "Foot",
  16724. image: {
  16725. source: "./media/characters/typhek/foot.svg"
  16726. }
  16727. },
  16728. sole: {
  16729. height: math.unit(2.05, "feet"),
  16730. name: "Sole",
  16731. image: {
  16732. source: "./media/characters/typhek/sole.svg"
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(40, "stories"),
  16740. default: true
  16741. },
  16742. {
  16743. name: "Megamacro",
  16744. height: math.unit(1, "mile")
  16745. },
  16746. {
  16747. name: "Gigamacro",
  16748. height: math.unit(4000, "solarradii")
  16749. },
  16750. {
  16751. name: "Universal",
  16752. height: math.unit(1.1, "universes")
  16753. }
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Kassy" },
  16758. {
  16759. side: {
  16760. height: math.unit(5 + 7 / 12, "feet"),
  16761. weight: math.unit(150, "lb"),
  16762. name: "Side",
  16763. image: {
  16764. source: "./media/characters/kassy/side.svg",
  16765. extra: 1280 / 1225,
  16766. bottom: 0.002
  16767. }
  16768. },
  16769. front: {
  16770. height: math.unit(5 + 7 / 12, "feet"),
  16771. weight: math.unit(150, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/kassy/front.svg",
  16775. extra: 1280 / 1225,
  16776. bottom: 0.025
  16777. }
  16778. },
  16779. back: {
  16780. height: math.unit(5 + 7 / 12, "feet"),
  16781. weight: math.unit(150, "lb"),
  16782. name: "Back",
  16783. image: {
  16784. source: "./media/characters/kassy/back.svg",
  16785. extra: 1280 / 1225,
  16786. bottom: 0.002
  16787. }
  16788. },
  16789. foot: {
  16790. height: math.unit(1.266, "feet"),
  16791. name: "Foot",
  16792. image: {
  16793. source: "./media/characters/kassy/foot.svg"
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(5 + 7 / 12, "feet")
  16801. },
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(137, "feet"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "Megamacro",
  16809. height: math.unit(1, "mile")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Neil" },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 1 / 12, "feet"),
  16818. weight: math.unit(200, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/neil/front.svg",
  16822. extra: 1326 / 1250,
  16823. bottom: 0.023
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 1 / 12, "feet"),
  16831. default: true
  16832. },
  16833. {
  16834. name: "Macro",
  16835. height: math.unit(200, "feet")
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Atticus" },
  16841. {
  16842. front: {
  16843. height: math.unit(5 + 9 / 12, "feet"),
  16844. weight: math.unit(190, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/atticus/front.svg",
  16848. extra: 2934 / 2785,
  16849. bottom: 0.025
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(5 + 9 / 12, "feet"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Macro",
  16861. height: math.unit(180, "feet")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Milo" },
  16867. {
  16868. side: {
  16869. height: math.unit(9, "feet"),
  16870. weight: math.unit(650, "lb"),
  16871. name: "Side",
  16872. image: {
  16873. source: "./media/characters/milo/side.svg",
  16874. extra: 2644 / 2310,
  16875. bottom: 0.032
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(9, "feet"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Macro",
  16887. height: math.unit(300, "feet")
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Ijzer" },
  16893. {
  16894. side: {
  16895. height: math.unit(8, "meters"),
  16896. weight: math.unit(90000, "kg"),
  16897. name: "Side",
  16898. image: {
  16899. source: "./media/characters/ijzer/side.svg",
  16900. extra: 2756 / 1600,
  16901. bottom: 0.01
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Small",
  16908. height: math.unit(3, "meters")
  16909. },
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(8, "meters"),
  16913. default: true
  16914. },
  16915. {
  16916. name: "Normal+",
  16917. height: math.unit(10, "meters")
  16918. },
  16919. {
  16920. name: "Bigger",
  16921. height: math.unit(24, "meters")
  16922. },
  16923. {
  16924. name: "Huge",
  16925. height: math.unit(80, "meters")
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Luca Cervicum" },
  16931. {
  16932. front: {
  16933. height: math.unit(6 + 2 / 12, "feet"),
  16934. weight: math.unit(153, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/luca-cervicum/front.svg",
  16938. extra: 370 / 327,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. back: {
  16943. height: math.unit(6 + 2 / 12, "feet"),
  16944. weight: math.unit(153, "lb"),
  16945. name: "Back",
  16946. image: {
  16947. source: "./media/characters/luca-cervicum/back.svg",
  16948. extra: 367 / 333,
  16949. bottom: 0.005
  16950. }
  16951. },
  16952. frontGear: {
  16953. height: math.unit(6 + 2 / 12, "feet"),
  16954. weight: math.unit(173, "lb"),
  16955. name: "Front (Gear)",
  16956. image: {
  16957. source: "./media/characters/luca-cervicum/front-gear.svg",
  16958. extra: 377 / 333,
  16959. bottom: 0.006
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(6 + 2 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Oliver" },
  16973. {
  16974. front: {
  16975. height: math.unit(6 + 1 / 12, "feet"),
  16976. weight: math.unit(304, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/oliver/front.svg",
  16980. extra: 157 / 143,
  16981. bottom: 0.08
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(6 + 1 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Shane" },
  16995. {
  16996. front: {
  16997. height: math.unit(5 + 7 / 12, "feet"),
  16998. weight: math.unit(140, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/shane/front.svg",
  17002. extra: 304 / 289,
  17003. bottom: 0.005
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(5 + 7 / 12, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Shin" },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 9 / 12, "feet"),
  17020. weight: math.unit(178, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/shin/front.svg",
  17024. extra: 159 / 151,
  17025. bottom: 0.015
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(5 + 9 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Xerxes" },
  17039. {
  17040. front: {
  17041. height: math.unit(5 + 10 / 12, "feet"),
  17042. weight: math.unit(168, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/xerxes/front.svg",
  17046. extra: 282 / 260,
  17047. bottom: 0.045
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(5 + 10 / 12, "feet"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Chaska" },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 7 / 12, "feet"),
  17064. weight: math.unit(208, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/chaska/front.svg",
  17068. extra: 332 / 319,
  17069. bottom: 0.015
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(6 + 7 / 12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Enuk" },
  17083. {
  17084. front: {
  17085. height: math.unit(5 + 8 / 12, "feet"),
  17086. weight: math.unit(208, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/enuk/front.svg",
  17090. extra: 437 / 406,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(5 + 8 / 12, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Bruun" },
  17105. {
  17106. front: {
  17107. height: math.unit(5 + 10 / 12, "feet"),
  17108. weight: math.unit(252, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/bruun/front.svg",
  17112. extra: 197 / 187,
  17113. bottom: 0.012
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(5 + 10 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Alexeev" },
  17127. {
  17128. front: {
  17129. height: math.unit(6 + 10 / 12, "feet"),
  17130. weight: math.unit(255, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/alexeev/front.svg",
  17134. extra: 213 / 200,
  17135. bottom: 0.05
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(6 + 10 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Evelyn" },
  17149. {
  17150. front: {
  17151. height: math.unit(2 + 8 / 12, "feet"),
  17152. weight: math.unit(22, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/evelyn/front.svg",
  17156. extra: 208 / 180
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(2 + 8 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Inca" },
  17170. {
  17171. front: {
  17172. height: math.unit(5 + 9 / 12, "feet"),
  17173. weight: math.unit(139, "lb"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/inca/front.svg",
  17177. extra: 294 / 291,
  17178. bottom: 0.03
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(5 + 9 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Magdalene" },
  17192. {
  17193. front: {
  17194. height: math.unit(5 + 1 / 12, "feet"),
  17195. weight: math.unit(84, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/magdalene/front.svg",
  17199. extra: 293 / 273
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(5 + 1 / 12, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Mera" },
  17213. {
  17214. front: {
  17215. height: math.unit(6 + 3 / 12, "feet"),
  17216. weight: math.unit(185, "lb"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/mera/front.svg",
  17220. extra: 291 / 277,
  17221. bottom: 0.03
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(6 + 3 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Ceres" },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 7 / 12, "feet"),
  17238. weight: math.unit(160, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/ceres/front.svg",
  17242. extra: 1023 / 950,
  17243. bottom: 0.027
  17244. }
  17245. },
  17246. back: {
  17247. height: math.unit(6 + 7 / 12, "feet"),
  17248. weight: math.unit(160, "lb"),
  17249. name: "Back",
  17250. image: {
  17251. source: "./media/characters/ceres/back.svg",
  17252. extra: 1023 / 950
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(6 + 7 / 12, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Kris" },
  17266. {
  17267. front: {
  17268. height: math.unit(5 + 10 / 12, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/kris/front.svg",
  17273. extra: 885 / 803,
  17274. bottom: 0.03
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(5 + 10 / 12, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Taluthus" },
  17288. {
  17289. front: {
  17290. height: math.unit(7, "feet"),
  17291. weight: math.unit(120, "kg"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/taluthus/front.svg",
  17295. extra: 903 / 833,
  17296. bottom: 0.015
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(7, "feet"),
  17304. default: true
  17305. },
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(300, "feet")
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Dawn" },
  17314. {
  17315. front: {
  17316. height: math.unit(5 + 9 / 12, "feet"),
  17317. weight: math.unit(145, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/dawn/front.svg",
  17321. extra: 2094 / 2016,
  17322. bottom: 0.025
  17323. }
  17324. },
  17325. back: {
  17326. height: math.unit(5 + 9 / 12, "feet"),
  17327. weight: math.unit(160, "lb"),
  17328. name: "Back",
  17329. image: {
  17330. source: "./media/characters/dawn/back.svg",
  17331. extra: 2112 / 2080,
  17332. bottom: 0.005
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(6 + 7 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Arador" },
  17346. {
  17347. anthro: {
  17348. height: math.unit(8 + 3 / 12, "feet"),
  17349. weight: math.unit(450, "lb"),
  17350. name: "Anthro",
  17351. image: {
  17352. source: "./media/characters/arador/anthro.svg",
  17353. extra: 1835 / 1718,
  17354. bottom: 0.025
  17355. }
  17356. },
  17357. feral: {
  17358. height: math.unit(4, "feet"),
  17359. weight: math.unit(200, "lb"),
  17360. name: "Feral",
  17361. image: {
  17362. source: "./media/characters/arador/feral.svg",
  17363. extra: 1683 / 1514,
  17364. bottom: 0.07
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(8 + 3 / 12, "feet")
  17372. },
  17373. {
  17374. name: "Macro",
  17375. height: math.unit(82.5, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Dharsi" },
  17382. {
  17383. front: {
  17384. height: math.unit(5 + 10 / 12, "feet"),
  17385. weight: math.unit(125, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/dharsi/front.svg",
  17389. extra: 716 / 630,
  17390. bottom: 0.035
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Nano",
  17397. height: math.unit(100, "nm")
  17398. },
  17399. {
  17400. name: "Micro",
  17401. height: math.unit(2, "inches")
  17402. },
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(5 + 10 / 12, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Macro",
  17410. height: math.unit(1000, "feet")
  17411. },
  17412. {
  17413. name: "Megamacro",
  17414. height: math.unit(10, "miles")
  17415. },
  17416. {
  17417. name: "Gigamacro",
  17418. height: math.unit(3000, "miles")
  17419. },
  17420. {
  17421. name: "Teramacro",
  17422. height: math.unit(500000, "miles")
  17423. },
  17424. {
  17425. name: "Teramacro+",
  17426. height: math.unit(30, "galaxies")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Deathy" },
  17432. {
  17433. front: {
  17434. height: math.unit(6, "feet"),
  17435. weight: math.unit(150, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/deathy/front.svg",
  17439. extra: 1552 / 1463,
  17440. bottom: 0.025
  17441. }
  17442. },
  17443. side: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Side",
  17447. image: {
  17448. source: "./media/characters/deathy/side.svg",
  17449. extra: 1604 / 1455,
  17450. bottom: 0.025
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(150, "lb"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/deathy/back.svg",
  17459. extra: 1580 / 1463,
  17460. bottom: 0.005
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Micro",
  17467. height: math.unit(5, "millimeters")
  17468. },
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(6 + 5 / 12, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Juniper" },
  17478. {
  17479. front: {
  17480. height: math.unit(16, "feet"),
  17481. weight: math.unit(4000, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/juniper/front.svg",
  17485. bottom: 0.04
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(16, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Hipster" },
  17499. {
  17500. front: {
  17501. height: math.unit(6, "feet"),
  17502. weight: math.unit(150, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/hipster/front.svg",
  17506. extra: 1312 / 1209,
  17507. bottom: 0.025
  17508. }
  17509. },
  17510. back: {
  17511. height: math.unit(6, "feet"),
  17512. weight: math.unit(150, "lb"),
  17513. name: "Back",
  17514. image: {
  17515. source: "./media/characters/hipster/back.svg",
  17516. extra: 1281 / 1196,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Micro",
  17524. height: math.unit(1, "mm")
  17525. },
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(4, "inches"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(500, "feet")
  17534. },
  17535. {
  17536. name: "Megamacro",
  17537. height: math.unit(1000, "miles")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Tendirmuldr" },
  17543. {
  17544. front: {
  17545. height: math.unit(6, "feet"),
  17546. weight: math.unit(150, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/tendirmuldr/front.svg",
  17550. extra: 1878 / 1772,
  17551. bottom: 0.015
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Megamacro",
  17558. height: math.unit(1500, "miles"),
  17559. default: true
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Mort" },
  17565. {
  17566. front: {
  17567. height: math.unit(14, "feet"),
  17568. weight: math.unit(12000, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/mort/front.svg",
  17572. extra: 365 / 318,
  17573. bottom: 0.01
  17574. }
  17575. },
  17576. side: {
  17577. height: math.unit(14, "feet"),
  17578. weight: math.unit(12000, "lb"),
  17579. name: "Side",
  17580. image: {
  17581. source: "./media/characters/mort/side.svg",
  17582. extra: 365 / 318,
  17583. bottom: 0.052
  17584. },
  17585. default: true
  17586. },
  17587. back: {
  17588. height: math.unit(14, "feet"),
  17589. weight: math.unit(12000, "lb"),
  17590. name: "Back",
  17591. image: {
  17592. source: "./media/characters/mort/back.svg",
  17593. extra: 371 / 332,
  17594. bottom: 0.18
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(14, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Lycoa" },
  17608. {
  17609. front: {
  17610. height: math.unit(8, "feet"),
  17611. weight: math.unit(1, "ton"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/lycoa/front.svg",
  17615. extra: 1875 / 1789,
  17616. bottom: 0.022
  17617. }
  17618. },
  17619. back: {
  17620. height: math.unit(8, "feet"),
  17621. weight: math.unit(1, "ton"),
  17622. name: "Back",
  17623. image: {
  17624. source: "./media/characters/lycoa/back.svg",
  17625. extra: 1835 / 1781,
  17626. bottom: 0.03
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(8, "feet"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(30, "feet")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Naldara" },
  17644. {
  17645. front: {
  17646. height: math.unit(4 + 2 / 12, "feet"),
  17647. weight: math.unit(70, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/naldara/front.svg",
  17651. extra: 841 / 720,
  17652. bottom: 0.04
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(4 + 2 / 12, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Briar" },
  17666. {
  17667. front: {
  17668. height: math.unit(13 + 7 / 12, "feet"),
  17669. weight: math.unit(1500, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/briar/front.svg",
  17673. extra: 626 / 596,
  17674. bottom: 0.08
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(13 + 7 / 12, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Vanguard" },
  17688. {
  17689. side: {
  17690. height: math.unit(10, "feet"),
  17691. weight: math.unit(500, "lb"),
  17692. name: "Side",
  17693. image: {
  17694. source: "./media/characters/vanguard/side.svg",
  17695. extra: 502 / 425,
  17696. bottom: 0.087
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(10, "feet"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Artemis" },
  17710. {
  17711. front: {
  17712. height: math.unit(7.5, "feet"),
  17713. weight: math.unit(2, "lb"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/artemis/front.svg",
  17717. extra: 1192 / 1075,
  17718. bottom: 0.07
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(7.5, "feet"),
  17726. default: true
  17727. },
  17728. {
  17729. name: "Enlarged",
  17730. height: math.unit(12, "feet")
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Kira" },
  17736. {
  17737. front: {
  17738. height: math.unit(5 + 3 / 12, "feet"),
  17739. weight: math.unit(160, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/kira/front.svg",
  17743. extra: 906 / 786,
  17744. bottom: 0.01
  17745. }
  17746. },
  17747. back: {
  17748. height: math.unit(5 + 3 / 12, "feet"),
  17749. weight: math.unit(160, "lb"),
  17750. name: "Back",
  17751. image: {
  17752. source: "./media/characters/kira/back.svg",
  17753. extra: 882 / 757,
  17754. bottom: 0.005
  17755. }
  17756. },
  17757. frontDressed: {
  17758. height: math.unit(5 + 3 / 12, "feet"),
  17759. weight: math.unit(160, "lb"),
  17760. name: "Front (Dressed)",
  17761. image: {
  17762. source: "./media/characters/kira/front-dressed.svg",
  17763. extra: 906 / 786,
  17764. bottom: 0.01
  17765. }
  17766. },
  17767. beans: {
  17768. height: math.unit(0.92, "feet"),
  17769. name: "Beans",
  17770. image: {
  17771. source: "./media/characters/kira/beans.svg"
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(5 + 3 / 12, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Scramble" },
  17785. {
  17786. front: {
  17787. height: math.unit(5 + 4 / 12, "feet"),
  17788. weight: math.unit(145, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/scramble/front.svg",
  17792. extra: 763 / 727,
  17793. bottom: 0.05
  17794. }
  17795. },
  17796. back: {
  17797. height: math.unit(5 + 4 / 12, "feet"),
  17798. weight: math.unit(145, "lb"),
  17799. name: "Back",
  17800. image: {
  17801. source: "./media/characters/scramble/back.svg",
  17802. extra: 826 / 737,
  17803. bottom: 0.002
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(5 + 4 / 12, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Biscuit" },
  17817. {
  17818. side: {
  17819. height: math.unit(6 + 2 / 12, "feet"),
  17820. weight: math.unit(190, "lb"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/biscuit/side.svg",
  17824. extra: 858 / 791,
  17825. bottom: 0.044
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(6 + 2 / 12, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Poffin" },
  17839. {
  17840. front: {
  17841. height: math.unit(5 + 2 / 12, "feet"),
  17842. weight: math.unit(120, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/poffin/front.svg",
  17846. extra: 786 / 680,
  17847. bottom: 0.005
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(5 + 2 / 12, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Dhari" },
  17861. {
  17862. front: {
  17863. height: math.unit(6 + 3 / 12, "feet"),
  17864. weight: math.unit(519, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/dhari/front.svg",
  17868. extra: 1048 / 946,
  17869. bottom: 0.015
  17870. }
  17871. },
  17872. back: {
  17873. height: math.unit(6 + 3 / 12, "feet"),
  17874. weight: math.unit(519, "lb"),
  17875. name: "Back",
  17876. image: {
  17877. source: "./media/characters/dhari/back.svg",
  17878. extra: 1048 / 931,
  17879. bottom: 0.005
  17880. }
  17881. },
  17882. frontDressed: {
  17883. height: math.unit(6 + 3 / 12, "feet"),
  17884. weight: math.unit(519, "lb"),
  17885. name: "Front (Dressed)",
  17886. image: {
  17887. source: "./media/characters/dhari/front-dressed.svg",
  17888. extra: 1713 / 1546,
  17889. bottom: 0.02
  17890. }
  17891. },
  17892. backDressed: {
  17893. height: math.unit(6 + 3 / 12, "feet"),
  17894. weight: math.unit(519, "lb"),
  17895. name: "Back (Dressed)",
  17896. image: {
  17897. source: "./media/characters/dhari/back-dressed.svg",
  17898. extra: 1699 / 1537,
  17899. bottom: 0.01
  17900. }
  17901. },
  17902. maw: {
  17903. height: math.unit(0.95, "feet"),
  17904. name: "Maw",
  17905. image: {
  17906. source: "./media/characters/dhari/maw.svg"
  17907. }
  17908. },
  17909. wereFront: {
  17910. height: math.unit(12 + 8 / 12, "feet"),
  17911. weight: math.unit(4000, "lb"),
  17912. name: "Front (Were)",
  17913. image: {
  17914. source: "./media/characters/dhari/were-front.svg",
  17915. extra: 1065 / 969,
  17916. bottom: 0.015
  17917. }
  17918. },
  17919. wereBack: {
  17920. height: math.unit(12 + 8 / 12, "feet"),
  17921. weight: math.unit(4000, "lb"),
  17922. name: "Back (Were)",
  17923. image: {
  17924. source: "./media/characters/dhari/were-back.svg",
  17925. extra: 1065 / 969,
  17926. bottom: 0.012
  17927. }
  17928. },
  17929. wereMaw: {
  17930. height: math.unit(0.625, "meters"),
  17931. name: "Maw (Were)",
  17932. image: {
  17933. source: "./media/characters/dhari/were-maw.svg"
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(6 + 3 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Rena Dyne" },
  17947. {
  17948. anthro: {
  17949. height: math.unit(5 + 7 / 12, "feet"),
  17950. weight: math.unit(175, "lb"),
  17951. name: "Anthro",
  17952. image: {
  17953. source: "./media/characters/rena-dyne/anthro.svg",
  17954. extra: 1849 / 1785,
  17955. bottom: 0.005
  17956. }
  17957. },
  17958. taur: {
  17959. height: math.unit(15 + 6 / 12, "feet"),
  17960. weight: math.unit(8000, "lb"),
  17961. name: "Taur",
  17962. image: {
  17963. source: "./media/characters/rena-dyne/taur.svg",
  17964. extra: 2315 / 2234,
  17965. bottom: 0.033
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(5 + 7 / 12, "feet"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Weremeep" },
  17979. {
  17980. front: {
  17981. height: math.unit(8, "feet"),
  17982. weight: math.unit(600, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/weremeep/front.svg",
  17986. extra: 967 / 862,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(8, "feet"),
  17995. default: true
  17996. },
  17997. {
  17998. name: "Lorg",
  17999. height: math.unit(12, "feet")
  18000. },
  18001. {
  18002. name: "Oh Lawd She Comin'",
  18003. height: math.unit(20, "feet")
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Reza" },
  18009. {
  18010. front: {
  18011. height: math.unit(4, "feet"),
  18012. weight: math.unit(90, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/reza/front.svg",
  18016. extra: 1183 / 1111,
  18017. bottom: 0.017
  18018. }
  18019. },
  18020. back: {
  18021. height: math.unit(4, "feet"),
  18022. weight: math.unit(90, "lb"),
  18023. name: "Back",
  18024. image: {
  18025. source: "./media/characters/reza/back.svg",
  18026. extra: 1183 / 1111,
  18027. bottom: 0.01
  18028. }
  18029. },
  18030. drake: {
  18031. height: math.unit(30, "feet"),
  18032. weight: math.unit(246960, "lb"),
  18033. name: "Drake",
  18034. image: {
  18035. source: "./media/characters/reza/drake.svg",
  18036. extra: 2350/2024,
  18037. bottom: 60.7/2403
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(4, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Athea" },
  18051. {
  18052. side: {
  18053. height: math.unit(15, "feet"),
  18054. weight: math.unit(14, "tons"),
  18055. name: "Side",
  18056. image: {
  18057. source: "./media/characters/athea/side.svg",
  18058. extra: 960 / 540,
  18059. bottom: 0.003
  18060. }
  18061. },
  18062. sitting: {
  18063. height: math.unit(6 * 2.85, "feet"),
  18064. weight: math.unit(14, "tons"),
  18065. name: "Sitting",
  18066. image: {
  18067. source: "./media/characters/athea/sitting.svg",
  18068. extra: 621 / 581,
  18069. bottom: 0.075
  18070. }
  18071. },
  18072. maw: {
  18073. height: math.unit(7.59498031496063, "feet"),
  18074. name: "Maw",
  18075. image: {
  18076. source: "./media/characters/athea/maw.svg"
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Lap Cat",
  18083. height: math.unit(2.5, "feet")
  18084. },
  18085. {
  18086. name: "Minimacro",
  18087. height: math.unit(15, "feet"),
  18088. default: true
  18089. },
  18090. {
  18091. name: "Macro",
  18092. height: math.unit(120, "feet")
  18093. },
  18094. {
  18095. name: "Macro+",
  18096. height: math.unit(640, "feet")
  18097. },
  18098. {
  18099. name: "Colossus",
  18100. height: math.unit(2.2, "miles")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Seroko" },
  18106. {
  18107. front: {
  18108. height: math.unit(8 + 8 / 12, "feet"),
  18109. weight: math.unit(130, "kg"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/seroko/front.svg",
  18113. extra: 1385 / 1280,
  18114. bottom: 0.025
  18115. }
  18116. },
  18117. back: {
  18118. height: math.unit(8 + 8 / 12, "feet"),
  18119. weight: math.unit(130, "kg"),
  18120. name: "Back",
  18121. image: {
  18122. source: "./media/characters/seroko/back.svg",
  18123. extra: 1369 / 1238,
  18124. bottom: 0.018
  18125. }
  18126. },
  18127. frontDressed: {
  18128. height: math.unit(8 + 8 / 12, "feet"),
  18129. weight: math.unit(130, "kg"),
  18130. name: "Front (Dressed)",
  18131. image: {
  18132. source: "./media/characters/seroko/front-dressed.svg",
  18133. extra: 1366 / 1275,
  18134. bottom: 0.03
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(8 + 8 / 12, "feet"),
  18142. default: true
  18143. },
  18144. ]
  18145. ))
  18146. characterMakers.push(() => makeCharacter(
  18147. { name: "Quatzi" },
  18148. {
  18149. front: {
  18150. height: math.unit(5.5, "feet"),
  18151. weight: math.unit(160, "lb"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/quatzi/front.svg",
  18155. extra: 2346 / 2242,
  18156. bottom: 0.015
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(5.5, "feet"),
  18164. default: true
  18165. },
  18166. {
  18167. name: "Big",
  18168. height: math.unit(7.7, "feet")
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Sen" },
  18174. {
  18175. front: {
  18176. height: math.unit(5 + 11 / 12, "feet"),
  18177. weight: math.unit(180, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/sen/front.svg",
  18181. extra: 1321 / 1254,
  18182. bottom: 0.015
  18183. }
  18184. },
  18185. side: {
  18186. height: math.unit(5 + 11 / 12, "feet"),
  18187. weight: math.unit(180, "lb"),
  18188. name: "Side",
  18189. image: {
  18190. source: "./media/characters/sen/side.svg",
  18191. extra: 1321 / 1254,
  18192. bottom: 0.007
  18193. }
  18194. },
  18195. back: {
  18196. height: math.unit(5 + 11 / 12, "feet"),
  18197. weight: math.unit(180, "lb"),
  18198. name: "Back",
  18199. image: {
  18200. source: "./media/characters/sen/back.svg",
  18201. extra: 1321 / 1254
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(5 + 11 / 12, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Fruity" },
  18215. {
  18216. front: {
  18217. height: math.unit(166.6, "cm"),
  18218. weight: math.unit(66.6, "kg"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/fruity/front.svg",
  18222. extra: 1510 / 1386,
  18223. bottom: 0.04
  18224. }
  18225. },
  18226. back: {
  18227. height: math.unit(166.6, "cm"),
  18228. weight: math.unit(66.6, "lb"),
  18229. name: "Back",
  18230. image: {
  18231. source: "./media/characters/fruity/back.svg",
  18232. extra: 1563 / 1435,
  18233. bottom: 0.005
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(166.6, "cm"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "Demonic",
  18245. height: math.unit(166.6, "feet")
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Zost" },
  18251. {
  18252. side: {
  18253. height: math.unit(10, "feet"),
  18254. weight: math.unit(500, "lb"),
  18255. name: "Side",
  18256. image: {
  18257. source: "./media/characters/zost/side.svg",
  18258. extra: 966 / 880,
  18259. bottom: 0.075
  18260. }
  18261. },
  18262. mawFront: {
  18263. height: math.unit(1.08, "meters"),
  18264. name: "Maw (Front)",
  18265. image: {
  18266. source: "./media/characters/zost/maw-front.svg"
  18267. }
  18268. },
  18269. mawSide: {
  18270. height: math.unit(2.66, "feet"),
  18271. name: "Maw (Side)",
  18272. image: {
  18273. source: "./media/characters/zost/maw-side.svg"
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(10, "feet"),
  18281. default: true
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Luci" },
  18287. {
  18288. front: {
  18289. height: math.unit(5 + 4 / 12, "feet"),
  18290. weight: math.unit(120, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/luci/front.svg",
  18294. extra: 1985 / 1884,
  18295. bottom: 0.04
  18296. }
  18297. },
  18298. back: {
  18299. height: math.unit(5 + 4 / 12, "feet"),
  18300. weight: math.unit(120, "lb"),
  18301. name: "Back",
  18302. image: {
  18303. source: "./media/characters/luci/back.svg",
  18304. extra: 1892 / 1791,
  18305. bottom: 0.002
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(5 + 4 / 12, "feet"),
  18313. default: true
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "2th" },
  18319. {
  18320. front: {
  18321. height: math.unit(1500, "feet"),
  18322. weight: math.unit(3.8e6, "tons"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/2th/front.svg",
  18326. extra: 3489 / 3350,
  18327. bottom: 0.1
  18328. }
  18329. },
  18330. foot: {
  18331. height: math.unit(461, "feet"),
  18332. name: "Foot",
  18333. image: {
  18334. source: "./media/characters/2th/foot.svg"
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "\"Micro\"",
  18341. height: math.unit(15 + 7 / 12, "feet")
  18342. },
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(1500, "feet"),
  18346. default: true
  18347. },
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(5000, "feet")
  18351. },
  18352. {
  18353. name: "Megamacro",
  18354. height: math.unit(15, "miles")
  18355. },
  18356. {
  18357. name: "Gigamacro",
  18358. height: math.unit(4000, "miles")
  18359. },
  18360. {
  18361. name: "Galactic",
  18362. height: math.unit(50, "AU")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Amethyst" },
  18368. {
  18369. front: {
  18370. height: math.unit(5 + 6 / 12, "feet"),
  18371. weight: math.unit(220, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/amethyst/front.svg",
  18375. extra: 2078 / 2040,
  18376. bottom: 0.045
  18377. }
  18378. },
  18379. back: {
  18380. height: math.unit(5 + 6 / 12, "feet"),
  18381. weight: math.unit(220, "lb"),
  18382. name: "Back",
  18383. image: {
  18384. source: "./media/characters/amethyst/back.svg",
  18385. extra: 2021 / 1989,
  18386. bottom: 0.02
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(5 + 6 / 12, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Yumi Akiyama" },
  18400. {
  18401. front: {
  18402. height: math.unit(4 + 11 / 12, "feet"),
  18403. weight: math.unit(120, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/yumi-akiyama/front.svg",
  18407. extra: 1327 / 1235,
  18408. bottom: 0.02
  18409. }
  18410. },
  18411. back: {
  18412. height: math.unit(4 + 11 / 12, "feet"),
  18413. weight: math.unit(120, "lb"),
  18414. name: "Back",
  18415. image: {
  18416. source: "./media/characters/yumi-akiyama/back.svg",
  18417. extra: 1287 / 1245,
  18418. bottom: 0.002
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Galactic",
  18425. height: math.unit(50, "galaxies"),
  18426. default: true
  18427. },
  18428. {
  18429. name: "Universal",
  18430. height: math.unit(100, "universes")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Rifter Yrmori" },
  18436. {
  18437. front: {
  18438. height: math.unit(8, "feet"),
  18439. weight: math.unit(500, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/rifter-yrmori/front.svg",
  18443. extra: 1180 / 1125,
  18444. bottom: 0.02
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(8, "feet"),
  18449. weight: math.unit(500, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/rifter-yrmori/back.svg",
  18453. extra: 1190 / 1145,
  18454. bottom: 0.001
  18455. }
  18456. },
  18457. wings: {
  18458. height: math.unit(7.75, "feet"),
  18459. weight: math.unit(500, "lb"),
  18460. name: "Wings",
  18461. image: {
  18462. source: "./media/characters/rifter-yrmori/wings.svg",
  18463. extra: 1357 / 1285
  18464. }
  18465. },
  18466. maw: {
  18467. height: math.unit(0.8, "feet"),
  18468. name: "Maw",
  18469. image: {
  18470. source: "./media/characters/rifter-yrmori/maw.svg"
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(8, "feet"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Macro",
  18482. height: math.unit(42, "meters")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Tahajin" },
  18488. {
  18489. were: {
  18490. height: math.unit(25 + 6 / 12, "feet"),
  18491. weight: math.unit(10000, "lb"),
  18492. name: "Were",
  18493. image: {
  18494. source: "./media/characters/tahajin/were.svg",
  18495. extra: 801 / 770,
  18496. bottom: 0.042
  18497. }
  18498. },
  18499. aquatic: {
  18500. height: math.unit(6 + 4 / 12, "feet"),
  18501. weight: math.unit(160, "lb"),
  18502. name: "Aquatic",
  18503. image: {
  18504. source: "./media/characters/tahajin/aquatic.svg",
  18505. extra: 572 / 542,
  18506. bottom: 0.04
  18507. }
  18508. },
  18509. chow: {
  18510. height: math.unit(8 + 11 / 12, "feet"),
  18511. weight: math.unit(450, "lb"),
  18512. name: "Chow",
  18513. image: {
  18514. source: "./media/characters/tahajin/chow.svg",
  18515. extra: 660 / 640,
  18516. bottom: 0.015
  18517. }
  18518. },
  18519. demiNaga: {
  18520. height: math.unit(6 + 8 / 12, "feet"),
  18521. weight: math.unit(300, "lb"),
  18522. name: "Demi Naga",
  18523. image: {
  18524. source: "./media/characters/tahajin/demi-naga.svg",
  18525. extra: 643 / 615,
  18526. bottom: 0.1
  18527. }
  18528. },
  18529. data: {
  18530. height: math.unit(5, "inches"),
  18531. weight: math.unit(0.1, "lb"),
  18532. name: "Data",
  18533. image: {
  18534. source: "./media/characters/tahajin/data.svg"
  18535. }
  18536. },
  18537. fluu: {
  18538. height: math.unit(5 + 7 / 12, "feet"),
  18539. weight: math.unit(140, "lb"),
  18540. name: "Fluu",
  18541. image: {
  18542. source: "./media/characters/tahajin/fluu.svg",
  18543. extra: 628 / 592,
  18544. bottom: 0.02
  18545. }
  18546. },
  18547. starWarrior: {
  18548. height: math.unit(4 + 5 / 12, "feet"),
  18549. weight: math.unit(50, "lb"),
  18550. name: "Star Warrior",
  18551. image: {
  18552. source: "./media/characters/tahajin/star-warrior.svg"
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(25 + 6 / 12, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Gabira" },
  18566. {
  18567. front: {
  18568. height: math.unit(8, "feet"),
  18569. weight: math.unit(350, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/gabira/front.svg",
  18573. extra: 608 / 580,
  18574. bottom: 0.03
  18575. }
  18576. },
  18577. back: {
  18578. height: math.unit(8, "feet"),
  18579. weight: math.unit(350, "lb"),
  18580. name: "Back",
  18581. image: {
  18582. source: "./media/characters/gabira/back.svg",
  18583. extra: 608 / 580,
  18584. bottom: 0.03
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(8, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Sasha Katraine" },
  18598. {
  18599. front: {
  18600. height: math.unit(5 + 3 / 12, "feet"),
  18601. weight: math.unit(137, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/sasha-katraine/front.svg",
  18605. bottom: 0.045
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Micro",
  18612. height: math.unit(5, "inches")
  18613. },
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(5 + 3 / 12, "feet"),
  18617. default: true
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Der" },
  18623. {
  18624. side: {
  18625. height: math.unit(4, "inches"),
  18626. weight: math.unit(200, "grams"),
  18627. name: "Side",
  18628. image: {
  18629. source: "./media/characters/der/side.svg",
  18630. extra: 719 / 400,
  18631. bottom: 30.6 / 749.9187
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Micro",
  18638. height: math.unit(4, "inches"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Fixerdragon" },
  18645. {
  18646. side: {
  18647. height: math.unit(30, "meters"),
  18648. weight: math.unit(700, "tonnes"),
  18649. name: "Side",
  18650. image: {
  18651. source: "./media/characters/fixerdragon/side.svg",
  18652. extra: (1293.0514 - 116.03) / 1106.86,
  18653. bottom: 116.03 / 1293.0514
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Planck",
  18660. height: math.unit(1.6e-35, "meters")
  18661. },
  18662. {
  18663. name: "Micro",
  18664. height: math.unit(0.4, "meters")
  18665. },
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(30, "meters"),
  18669. default: true
  18670. },
  18671. {
  18672. name: "Megamacro",
  18673. height: math.unit(1.2, "megameters")
  18674. },
  18675. {
  18676. name: "Teramacro",
  18677. height: math.unit(130, "terameters")
  18678. },
  18679. {
  18680. name: "Yottamacro",
  18681. height: math.unit(6200, "yottameters")
  18682. },
  18683. ]
  18684. ));
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Kite" },
  18687. {
  18688. front: {
  18689. height: math.unit(8, "feet"),
  18690. weight: math.unit(250, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/kite/front.svg",
  18694. extra: 2796 / 2659,
  18695. bottom: 0.002
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(8, "feet"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(360, "feet")
  18708. },
  18709. {
  18710. name: "Megamacro",
  18711. height: math.unit(1500, "feet")
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Poojawa Vynar" },
  18717. {
  18718. front: {
  18719. height: math.unit(5 + 10 / 12, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/poojawa-vynar/front.svg",
  18724. extra: (1506.1547 - 55) / 1356.6,
  18725. bottom: 55 / 1506.1547
  18726. }
  18727. },
  18728. frontTailless: {
  18729. height: math.unit(5 + 10 / 12, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Front (Tailless)",
  18732. image: {
  18733. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18734. extra: (1506.1547 - 55) / 1356.6,
  18735. bottom: 55 / 1506.1547
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(5 + 10 / 12, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Violette" },
  18749. {
  18750. front: {
  18751. height: math.unit(293, "meters"),
  18752. weight: math.unit(70400, "tons"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/violette/front.svg",
  18756. extra: 1227 / 1180,
  18757. bottom: 0.005
  18758. }
  18759. },
  18760. back: {
  18761. height: math.unit(293, "meters"),
  18762. weight: math.unit(70400, "tons"),
  18763. name: "Back",
  18764. image: {
  18765. source: "./media/characters/violette/back.svg",
  18766. extra: 1227 / 1180,
  18767. bottom: 0.005
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(293, "meters"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Alessandra" },
  18781. {
  18782. front: {
  18783. height: math.unit(1050, "feet"),
  18784. weight: math.unit(200000, "tons"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/alessandra/front.svg",
  18788. extra: 960 / 912,
  18789. bottom: 0.06
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(1050, "feet")
  18797. },
  18798. {
  18799. name: "Macro+",
  18800. height: math.unit(900, "meters"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Person", species: "Catdragon" },
  18807. {
  18808. front: {
  18809. height: math.unit(5, "feet"),
  18810. weight: math.unit(187, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/person/front.svg",
  18814. extra: 3087 / 2945,
  18815. bottom: 91 / 3181
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Micro",
  18822. height: math.unit(3, "inches")
  18823. },
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(5, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(90, "feet")
  18832. },
  18833. {
  18834. name: "Max Size",
  18835. height: math.unit(280, "feet")
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Ty" },
  18841. {
  18842. front: {
  18843. height: math.unit(4.5, "meters"),
  18844. weight: math.unit(3200, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/ty/front.svg",
  18848. extra: 1038 / 960,
  18849. bottom: 31.156 / 1068
  18850. }
  18851. },
  18852. back: {
  18853. height: math.unit(4.5, "meters"),
  18854. weight: math.unit(3200, "lb"),
  18855. name: "Back",
  18856. image: {
  18857. source: "./media/characters/ty/back.svg",
  18858. extra: 1044 / 966,
  18859. bottom: 7.48 / 1049
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(4.5, "meters"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Rocky" },
  18873. {
  18874. front: {
  18875. height: math.unit(5 + 4 / 12, "feet"),
  18876. weight: math.unit(115, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/rocky/front.svg",
  18880. extra: 1012 / 975,
  18881. bottom: 54 / 1066
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(5 + 4 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Ruin" },
  18895. {
  18896. upright: {
  18897. height: math.unit(6, "meters"),
  18898. weight: math.unit(4000, "kg"),
  18899. name: "Upright",
  18900. image: {
  18901. source: "./media/characters/ruin/upright.svg",
  18902. extra: 668 / 661,
  18903. bottom: 42 / 799.8396
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(6, "meters"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Robin" },
  18917. {
  18918. front: {
  18919. height: math.unit(5, "feet"),
  18920. weight: math.unit(106, "lb"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/robin/front.svg",
  18924. extra: 862 / 799,
  18925. bottom: 42.4 / 914.8856
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(5, "feet"),
  18933. default: true
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Saian" },
  18939. {
  18940. side: {
  18941. height: math.unit(3, "feet"),
  18942. weight: math.unit(225, "lb"),
  18943. name: "Side",
  18944. image: {
  18945. source: "./media/characters/saian/side.svg",
  18946. extra: 566 / 356,
  18947. bottom: 79.7 / 643
  18948. }
  18949. },
  18950. maw: {
  18951. height: math.unit(2.85, "feet"),
  18952. name: "Maw",
  18953. image: {
  18954. source: "./media/characters/saian/maw.svg"
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(3, "feet"),
  18962. default: true
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Equus Silvermane" },
  18968. {
  18969. side: {
  18970. height: math.unit(8, "feet"),
  18971. weight: math.unit(300, "lb"),
  18972. name: "Side",
  18973. image: {
  18974. source: "./media/characters/equus-silvermane/side.svg",
  18975. extra: 2176 / 2050,
  18976. bottom: 65.7 / 2245
  18977. }
  18978. },
  18979. front: {
  18980. height: math.unit(8, "feet"),
  18981. weight: math.unit(300, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/equus-silvermane/front.svg",
  18985. extra: 4633 / 4400,
  18986. bottom: 71.3 / 4706.915
  18987. }
  18988. },
  18989. sideStepping: {
  18990. height: math.unit(8, "feet"),
  18991. weight: math.unit(300, "lb"),
  18992. name: "Side (Stepping)",
  18993. image: {
  18994. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18995. extra: 1968 / 1860,
  18996. bottom: 16.4 / 1989
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(8, "feet")
  19004. },
  19005. {
  19006. name: "Minimacro",
  19007. height: math.unit(75, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(150, "feet")
  19013. },
  19014. {
  19015. name: "Macro+",
  19016. height: math.unit(1000, "feet")
  19017. },
  19018. {
  19019. name: "Megamacro",
  19020. height: math.unit(1, "mile")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Windar" },
  19026. {
  19027. side: {
  19028. height: math.unit(20, "feet"),
  19029. weight: math.unit(30000, "kg"),
  19030. name: "Side",
  19031. image: {
  19032. source: "./media/characters/windar/side.svg",
  19033. extra: 1491 / 1248,
  19034. bottom: 82.56 / 1568
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(20, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Melody" },
  19048. {
  19049. side: {
  19050. height: math.unit(15.66, "feet"),
  19051. weight: math.unit(150, "lb"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/melody/side.svg",
  19055. extra: 1097 / 944,
  19056. bottom: 11.8 / 1109
  19057. }
  19058. },
  19059. sideOutfit: {
  19060. height: math.unit(15.66, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Side (Outfit)",
  19063. image: {
  19064. source: "./media/characters/melody/side-outfit.svg",
  19065. extra: 1097 / 944,
  19066. bottom: 11.8 / 1109
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(15.66, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Windera" },
  19080. {
  19081. front: {
  19082. height: math.unit(8, "feet"),
  19083. weight: math.unit(325, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/windera/front.svg",
  19087. extra: 3180 / 2845,
  19088. bottom: 178 / 3365
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(8, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Sonear" },
  19102. {
  19103. front: {
  19104. height: math.unit(28.75, "feet"),
  19105. weight: math.unit(2000, "kg"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/sonear/front.svg",
  19109. extra: 1041.1 / 964.9,
  19110. bottom: 53.7 / 1096.6
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(28.75, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Kanara" },
  19124. {
  19125. side: {
  19126. height: math.unit(25.5, "feet"),
  19127. weight: math.unit(23000, "kg"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/kanara/side.svg"
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(25.5, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Ereus" },
  19144. {
  19145. side: {
  19146. height: math.unit(10, "feet"),
  19147. weight: math.unit(1000, "kg"),
  19148. name: "Side",
  19149. image: {
  19150. source: "./media/characters/ereus/side.svg",
  19151. extra: 1157 / 959,
  19152. bottom: 153 / 1312.5
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(10, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "E-ter" },
  19166. {
  19167. side: {
  19168. height: math.unit(4.5, "feet"),
  19169. weight: math.unit(500, "lb"),
  19170. name: "Side",
  19171. image: {
  19172. source: "./media/characters/e-ter/side.svg",
  19173. extra: 1550 / 1248,
  19174. bottom: 146 / 1694
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(4.5, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Yamie" },
  19188. {
  19189. side: {
  19190. height: math.unit(9.7, "feet"),
  19191. weight: math.unit(4000, "kg"),
  19192. name: "Side",
  19193. image: {
  19194. source: "./media/characters/yamie/side.svg"
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(9.7, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Anders" },
  19208. {
  19209. front: {
  19210. height: math.unit(50, "feet"),
  19211. weight: math.unit(50000, "kg"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/anders/front.svg",
  19215. extra: 570 / 539,
  19216. bottom: 14.7 / 586.7
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Large",
  19223. height: math.unit(50, "feet")
  19224. },
  19225. {
  19226. name: "Macro",
  19227. height: math.unit(2000, "feet"),
  19228. default: true
  19229. },
  19230. {
  19231. name: "Megamacro",
  19232. height: math.unit(12, "miles")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Reban" },
  19238. {
  19239. front: {
  19240. height: math.unit(7 + 2 / 12, "feet"),
  19241. weight: math.unit(300, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/reban/front.svg",
  19245. extra: 516 / 487,
  19246. bottom: 42.82 / 558.356
  19247. }
  19248. },
  19249. dick: {
  19250. height: math.unit(7 / 5, "feet"),
  19251. name: "Dick",
  19252. image: {
  19253. source: "./media/characters/reban/dick.svg"
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Natural Height",
  19260. height: math.unit(7 + 2 / 12, "feet")
  19261. },
  19262. {
  19263. name: "Macro",
  19264. height: math.unit(500, "feet"),
  19265. default: true
  19266. },
  19267. {
  19268. name: "Canon Height",
  19269. height: math.unit(50, "AU")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Terrance Keayes" },
  19275. {
  19276. front: {
  19277. height: math.unit(6, "feet"),
  19278. weight: math.unit(150, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/terrance-keayes/front.svg",
  19282. extra: 1.005,
  19283. bottom: 151 / 1615
  19284. }
  19285. },
  19286. side: {
  19287. height: math.unit(6, "feet"),
  19288. weight: math.unit(150, "lb"),
  19289. name: "Side",
  19290. image: {
  19291. source: "./media/characters/terrance-keayes/side.svg",
  19292. extra: 1.005,
  19293. bottom: 129.4 / 1544
  19294. }
  19295. },
  19296. back: {
  19297. height: math.unit(6, "feet"),
  19298. weight: math.unit(150, "lb"),
  19299. name: "Back",
  19300. image: {
  19301. source: "./media/characters/terrance-keayes/back.svg",
  19302. extra: 1.005,
  19303. bottom: 58.4 / 1557.3
  19304. }
  19305. },
  19306. dick: {
  19307. height: math.unit(6 * 0.208, "feet"),
  19308. name: "Dick",
  19309. image: {
  19310. source: "./media/characters/terrance-keayes/dick.svg"
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Canon Height",
  19317. height: math.unit(35, "miles"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Ofelia" },
  19324. {
  19325. front: {
  19326. height: math.unit(6, "feet"),
  19327. weight: math.unit(150, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/ofelia/front.svg",
  19331. extra: 546 / 541,
  19332. bottom: 39 / 583
  19333. }
  19334. },
  19335. back: {
  19336. height: math.unit(6, "feet"),
  19337. weight: math.unit(150, "lb"),
  19338. name: "Back",
  19339. image: {
  19340. source: "./media/characters/ofelia/back.svg",
  19341. extra: 564 / 559.5,
  19342. bottom: 8.69 / 573.02
  19343. }
  19344. },
  19345. maw: {
  19346. height: math.unit(1, "feet"),
  19347. name: "Maw",
  19348. image: {
  19349. source: "./media/characters/ofelia/maw.svg"
  19350. }
  19351. },
  19352. foot: {
  19353. height: math.unit(1.949, "feet"),
  19354. name: "Foot",
  19355. image: {
  19356. source: "./media/characters/ofelia/foot.svg"
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Canon Height",
  19363. height: math.unit(2000, "miles"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Samuel" },
  19370. {
  19371. front: {
  19372. height: math.unit(6, "feet"),
  19373. weight: math.unit(150, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/samuel/front.svg",
  19377. extra: 265 / 258,
  19378. bottom: 2 / 266.1566
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Macro",
  19385. height: math.unit(100, "feet"),
  19386. default: true
  19387. },
  19388. {
  19389. name: "Full Size",
  19390. height: math.unit(1000, "miles")
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Beishir Kiel" },
  19396. {
  19397. front: {
  19398. height: math.unit(6, "feet"),
  19399. weight: math.unit(300, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/beishir-kiel/front.svg",
  19403. extra: 569 / 547,
  19404. bottom: 41.9 / 609
  19405. }
  19406. },
  19407. maw: {
  19408. height: math.unit(6 * 0.202, "feet"),
  19409. name: "Maw",
  19410. image: {
  19411. source: "./media/characters/beishir-kiel/maw.svg"
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Macro",
  19418. height: math.unit(300, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Logan Grey" },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 8 / 12, "feet"),
  19428. weight: math.unit(120, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/logan-grey/front.svg",
  19432. extra: 2539 / 2393,
  19433. bottom: 97.6 / 2636.37
  19434. }
  19435. },
  19436. frontAlt: {
  19437. height: math.unit(5 + 8 / 12, "feet"),
  19438. weight: math.unit(120, "lb"),
  19439. name: "Front (Alt)",
  19440. image: {
  19441. source: "./media/characters/logan-grey/front-alt.svg",
  19442. extra: 958 / 893,
  19443. bottom: 15 / 970.768
  19444. }
  19445. },
  19446. back: {
  19447. height: math.unit(5 + 8 / 12, "feet"),
  19448. weight: math.unit(120, "lb"),
  19449. name: "Back",
  19450. image: {
  19451. source: "./media/characters/logan-grey/back.svg",
  19452. extra: 958 / 893,
  19453. bottom: 2.1881 / 970.9788
  19454. }
  19455. },
  19456. dick: {
  19457. height: math.unit(1.437, "feet"),
  19458. name: "Dick",
  19459. image: {
  19460. source: "./media/characters/logan-grey/dick.svg"
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(5 + 8 / 12, "feet")
  19468. },
  19469. {
  19470. name: "The 500 Foot Femboy",
  19471. height: math.unit(500, "feet"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Megmacro",
  19476. height: math.unit(20, "miles")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Draganta" },
  19482. {
  19483. front: {
  19484. height: math.unit(8 + 2 / 12, "feet"),
  19485. weight: math.unit(275, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/draganta/front.svg",
  19489. extra: 1177 / 1135,
  19490. bottom: 33.46 / 1212.1
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(8 + 6 / 12, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Macro",
  19502. height: math.unit(150, "feet")
  19503. },
  19504. {
  19505. name: "Megamacro",
  19506. height: math.unit(1000, "miles")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Voski", species: "Corvid" },
  19512. {
  19513. front: {
  19514. height: math.unit(1.72, "m"),
  19515. weight: math.unit(80, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/voski/front.svg",
  19519. extra: 2076.22 / 2022.4,
  19520. bottom: 102.7 / 2177.3866
  19521. }
  19522. },
  19523. frontNsfw: {
  19524. height: math.unit(1.72, "m"),
  19525. weight: math.unit(80, "lb"),
  19526. name: "Front (NSFW)",
  19527. image: {
  19528. source: "./media/characters/voski/front-nsfw.svg",
  19529. extra: 2076.22 / 2022.4,
  19530. bottom: 102.7 / 2177.3866
  19531. }
  19532. },
  19533. back: {
  19534. height: math.unit(1.72, "m"),
  19535. weight: math.unit(80, "lb"),
  19536. name: "Back",
  19537. image: {
  19538. source: "./media/characters/voski/back.svg",
  19539. extra: 2104 / 2051,
  19540. bottom: 10.45 / 2113.63
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(1.72, "m")
  19548. },
  19549. {
  19550. name: "Macro",
  19551. height: math.unit(55, "m"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Macro+",
  19556. height: math.unit(300, "m")
  19557. },
  19558. {
  19559. name: "Macro++",
  19560. height: math.unit(700, "m")
  19561. },
  19562. {
  19563. name: "Macro+++",
  19564. height: math.unit(4500, "m")
  19565. },
  19566. {
  19567. name: "Macro++++",
  19568. height: math.unit(45, "km")
  19569. },
  19570. {
  19571. name: "Macro+++++",
  19572. height: math.unit(1220, "km")
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Icowom Lee" },
  19578. {
  19579. front: {
  19580. height: math.unit(2.3, "m"),
  19581. weight: math.unit(304, "kg"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/icowom-lee/front.svg",
  19585. extra: 3076 / 2933,
  19586. bottom: 51.4 / 3125.1889
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(2.3, "meters"),
  19594. default: true
  19595. },
  19596. {
  19597. name: "Macro",
  19598. height: math.unit(94, "meters"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19605. {
  19606. front: {
  19607. height: math.unit(22, "meters"),
  19608. weight: math.unit(21000, "kg"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/shock-diamond/front.svg",
  19612. extra: 2204 / 2053,
  19613. bottom: 65 / 2239.47
  19614. }
  19615. },
  19616. frontNude: {
  19617. height: math.unit(22, "meters"),
  19618. weight: math.unit(21000, "kg"),
  19619. name: "Front (Nude)",
  19620. image: {
  19621. source: "./media/characters/shock-diamond/front-nude.svg",
  19622. extra: 2514 / 2285,
  19623. bottom: 13 / 2527.56
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(3, "meters")
  19631. },
  19632. {
  19633. name: "Macro",
  19634. height: math.unit(22, "meters"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Rory" },
  19641. {
  19642. front: {
  19643. height: math.unit(5 + 4 / 12, "feet"),
  19644. weight: math.unit(120, "lb"),
  19645. name: "Front",
  19646. image: {
  19647. source: "./media/characters/rory/front.svg",
  19648. extra: 589 / 556,
  19649. bottom: 45.7 / 635.76
  19650. }
  19651. },
  19652. frontNude: {
  19653. height: math.unit(5 + 4 / 12, "feet"),
  19654. weight: math.unit(120, "lb"),
  19655. name: "Front (Nude)",
  19656. image: {
  19657. source: "./media/characters/rory/front-nude.svg",
  19658. extra: 589 / 556,
  19659. bottom: 45.7 / 635.76
  19660. }
  19661. },
  19662. side: {
  19663. height: math.unit(5 + 4 / 12, "feet"),
  19664. weight: math.unit(120, "lb"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/rory/side.svg",
  19668. extra: 597 / 564,
  19669. bottom: 55 / 653
  19670. }
  19671. },
  19672. back: {
  19673. height: math.unit(5 + 4 / 12, "feet"),
  19674. weight: math.unit(120, "lb"),
  19675. name: "Back",
  19676. image: {
  19677. source: "./media/characters/rory/back.svg",
  19678. extra: 620 / 585,
  19679. bottom: 8.86 / 630.43
  19680. }
  19681. },
  19682. dick: {
  19683. height: math.unit(0.86, "feet"),
  19684. name: "Dick",
  19685. image: {
  19686. source: "./media/characters/rory/dick.svg"
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(5 + 4 / 12, "feet"),
  19694. default: true
  19695. },
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(100, "feet")
  19699. },
  19700. {
  19701. name: "Macro+",
  19702. height: math.unit(140, "feet")
  19703. },
  19704. {
  19705. name: "Macro++",
  19706. height: math.unit(300, "feet")
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Sprisk" },
  19712. {
  19713. front: {
  19714. height: math.unit(5 + 9 / 12, "feet"),
  19715. weight: math.unit(190, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/sprisk/front.svg",
  19719. extra: 1225 / 1180,
  19720. bottom: 42.7 / 1266.4
  19721. }
  19722. },
  19723. frontNsfw: {
  19724. height: math.unit(5 + 9 / 12, "feet"),
  19725. weight: math.unit(190, "lb"),
  19726. name: "Front (NSFW)",
  19727. image: {
  19728. source: "./media/characters/sprisk/front-nsfw.svg",
  19729. extra: 1225 / 1180,
  19730. bottom: 42.7 / 1266.4
  19731. }
  19732. },
  19733. back: {
  19734. height: math.unit(5 + 9 / 12, "feet"),
  19735. weight: math.unit(190, "lb"),
  19736. name: "Back",
  19737. image: {
  19738. source: "./media/characters/sprisk/back.svg",
  19739. extra: 1247 / 1200,
  19740. bottom: 5.6 / 1253.04
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Tiny",
  19747. height: math.unit(2, "inches")
  19748. },
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(5 + 9 / 12, "feet"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Mini Macro",
  19756. height: math.unit(18, "feet")
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(100, "feet")
  19761. },
  19762. {
  19763. name: "MACRO",
  19764. height: math.unit(50, "miles")
  19765. },
  19766. {
  19767. name: "M A C R O",
  19768. height: math.unit(300, "miles")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Bunsen" },
  19774. {
  19775. side: {
  19776. height: math.unit(15.6, "meters"),
  19777. weight: math.unit(700000, "kg"),
  19778. name: "Side",
  19779. image: {
  19780. source: "./media/characters/bunsen/side.svg",
  19781. extra: 1644 / 358
  19782. }
  19783. },
  19784. foot: {
  19785. height: math.unit(1.611 * 1644 / 358, "meter"),
  19786. name: "Foot",
  19787. image: {
  19788. source: "./media/characters/bunsen/foot.svg"
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Small",
  19795. height: math.unit(10, "feet")
  19796. },
  19797. {
  19798. name: "Normal",
  19799. height: math.unit(15.6, "meters"),
  19800. default: true
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Sesh" },
  19806. {
  19807. front: {
  19808. height: math.unit(4 + 11 / 12, "feet"),
  19809. weight: math.unit(140, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/sesh/front.svg",
  19813. extra: 3420 / 3231,
  19814. bottom: 72 / 3949.5
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(4 + 11 / 12, "feet")
  19822. },
  19823. {
  19824. name: "Grown",
  19825. height: math.unit(15, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(1500, "feet")
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(30, "miles")
  19835. },
  19836. {
  19837. name: "Continental",
  19838. height: math.unit(3000, "miles")
  19839. },
  19840. {
  19841. name: "Gravity Mass",
  19842. height: math.unit(300000, "miles")
  19843. },
  19844. {
  19845. name: "Planet Buster",
  19846. height: math.unit(30000000, "miles")
  19847. },
  19848. {
  19849. name: "Big",
  19850. height: math.unit(3000000000, "miles")
  19851. },
  19852. ]
  19853. ))
  19854. characterMakers.push(() => makeCharacter(
  19855. { name: "Pepper" },
  19856. {
  19857. front: {
  19858. height: math.unit(9, "feet"),
  19859. weight: math.unit(350, "lb"),
  19860. name: "Front",
  19861. image: {
  19862. source: "./media/characters/pepper/front.svg",
  19863. extra: 1448/1312,
  19864. bottom: 9.4/1457.88
  19865. }
  19866. },
  19867. back: {
  19868. height: math.unit(9, "feet"),
  19869. weight: math.unit(350, "lb"),
  19870. name: "Back",
  19871. image: {
  19872. source: "./media/characters/pepper/back.svg",
  19873. extra: 1423/1300,
  19874. bottom: 4.6/1429
  19875. }
  19876. },
  19877. maw: {
  19878. height: math.unit(0.932, "feet"),
  19879. name: "Maw",
  19880. image: {
  19881. source: "./media/characters/pepper/maw.svg"
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(9, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Maelstrom" },
  19895. {
  19896. front: {
  19897. height: math.unit(6, "feet"),
  19898. weight: math.unit(150, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/maelstrom/front.svg",
  19902. extra: 2100/1883,
  19903. bottom: 94/2196.7
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Less Kaiju",
  19910. height: math.unit(200, "feet")
  19911. },
  19912. {
  19913. name: "Kaiju",
  19914. height: math.unit(400, "feet"),
  19915. default: true
  19916. },
  19917. {
  19918. name: "Kaiju-er",
  19919. height: math.unit(600, "feet")
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Lexir" },
  19925. {
  19926. front: {
  19927. height: math.unit(6 + 5/12, "feet"),
  19928. weight: math.unit(180, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/lexir/front.svg",
  19932. extra: 180/172,
  19933. bottom: 12/192
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(6 + 5/12, "feet"),
  19938. weight: math.unit(180, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/lexir/back.svg",
  19942. extra: 183.84/175.5,
  19943. bottom: 3.1/187
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Very Smal",
  19950. height: math.unit(1, "nm")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(6 + 5/12, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(1, "mile")
  19960. },
  19961. {
  19962. name: "Megamacro",
  19963. height: math.unit(50, "miles")
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Maksio" },
  19969. {
  19970. front: {
  19971. height: math.unit(1.5, "meters"),
  19972. weight: math.unit(100, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/maksio/front.svg",
  19976. extra: 1549/1531,
  19977. bottom: 123.7/1674.5429
  19978. }
  19979. },
  19980. back: {
  19981. height: math.unit(1.5, "meters"),
  19982. weight: math.unit(100, "lb"),
  19983. name: "Back",
  19984. image: {
  19985. source: "./media/characters/maksio/back.svg",
  19986. extra: 1541/1509,
  19987. bottom: 97/1639
  19988. }
  19989. },
  19990. hand: {
  19991. height: math.unit(0.621, "feet"),
  19992. name: "Hand",
  19993. image: {
  19994. source: "./media/characters/maksio/hand.svg"
  19995. }
  19996. },
  19997. foot: {
  19998. height: math.unit(1.611, "feet"),
  19999. name: "Foot",
  20000. image: {
  20001. source: "./media/characters/maksio/foot.svg"
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Shrunken",
  20008. height: math.unit(10, "cm")
  20009. },
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(150, "cm"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Erza Bear" },
  20019. {
  20020. front: {
  20021. height: math.unit(100, "feet"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/erza-bear/front.svg",
  20025. extra: 2449/2390,
  20026. bottom: 46/2494
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(100, "feet"),
  20031. name: "Back",
  20032. image: {
  20033. source: "./media/characters/erza-bear/back.svg",
  20034. extra: 2489/2430,
  20035. bottom: 85.4/2480
  20036. }
  20037. },
  20038. tail: {
  20039. height: math.unit(42, "feet"),
  20040. name: "Tail",
  20041. image: {
  20042. source: "./media/characters/erza-bear/tail.svg"
  20043. }
  20044. },
  20045. tongue: {
  20046. height: math.unit(8, "feet"),
  20047. name: "Tongue",
  20048. image: {
  20049. source: "./media/characters/erza-bear/tongue.svg"
  20050. }
  20051. },
  20052. dick: {
  20053. height: math.unit(10.5, "feet"),
  20054. name: "Dick",
  20055. image: {
  20056. source: "./media/characters/erza-bear/dick.svg"
  20057. }
  20058. },
  20059. dickVertical: {
  20060. height: math.unit(16.9, "feet"),
  20061. name: "Dick (Vertical)",
  20062. image: {
  20063. source: "./media/characters/erza-bear/dick-vertical.svg"
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Macro",
  20070. height: math.unit(100, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Violet Flor", species: "Skunk" },
  20077. {
  20078. front: {
  20079. height: math.unit(172, "cm"),
  20080. weight: math.unit(73, "kg"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/violet-flor/front.svg",
  20084. extra: 1530/1442,
  20085. bottom: 61.9/1588.8
  20086. }
  20087. },
  20088. back: {
  20089. height: math.unit(180, "cm"),
  20090. weight: math.unit(73, "kg"),
  20091. name: "Back",
  20092. image: {
  20093. source: "./media/characters/violet-flor/back.svg",
  20094. extra: 1692/1630,
  20095. bottom: 20/1712
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(172, "cm"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Lynn Rhea", species: "Shark" },
  20109. {
  20110. front: {
  20111. height: math.unit(6, "feet"),
  20112. weight: math.unit(220, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/lynn-rhea/front.svg",
  20116. extra: 310/273
  20117. }
  20118. },
  20119. back: {
  20120. height: math.unit(6, "feet"),
  20121. weight: math.unit(220, "lb"),
  20122. name: "Back",
  20123. image: {
  20124. source: "./media/characters/lynn-rhea/back.svg",
  20125. extra: 310/273
  20126. }
  20127. },
  20128. dicks: {
  20129. height: math.unit(0.9, "feet"),
  20130. name: "Dicks",
  20131. image: {
  20132. source: "./media/characters/lynn-rhea/dicks.svg"
  20133. }
  20134. },
  20135. slit: {
  20136. height: math.unit(0.4, "feet"),
  20137. name: "Slit",
  20138. image: {
  20139. source: "./media/characters/lynn-rhea/slit.svg"
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Micro",
  20146. height: math.unit(1, "inch")
  20147. },
  20148. {
  20149. name: "Macro",
  20150. height: math.unit(60, "feet"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Megamacro",
  20155. height: math.unit(2, "miles")
  20156. },
  20157. {
  20158. name: "Gigamacro",
  20159. height: math.unit(3, "earths")
  20160. },
  20161. {
  20162. name: "Galactic",
  20163. height: math.unit(0.8, "galaxies")
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Valathos" },
  20169. {
  20170. front: {
  20171. height: math.unit(1600, "feet"),
  20172. weight: math.unit(85758785169, "kg"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/valathos/front.svg",
  20176. extra: 1451/1339
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Macro",
  20183. height: math.unit(1600, "feet"),
  20184. default: true
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Azula" },
  20190. {
  20191. front: {
  20192. height: math.unit(7 + 5/12, "feet"),
  20193. weight: math.unit(300, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/azula/front.svg",
  20197. extra: 3208/2880,
  20198. bottom: 80.2/3277
  20199. }
  20200. },
  20201. back: {
  20202. height: math.unit(7 + 5/12, "feet"),
  20203. weight: math.unit(300, "lb"),
  20204. name: "Back",
  20205. image: {
  20206. source: "./media/characters/azula/back.svg",
  20207. extra: 3169/2822,
  20208. bottom: 150.6/3321
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(7 + 5/12, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Big",
  20220. height: math.unit(20, "feet")
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Rupert" },
  20226. {
  20227. front: {
  20228. height: math.unit(5 + 1/12, "feet"),
  20229. weight: math.unit(110, "lb"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/rupert/front.svg",
  20233. extra: 1549/1495,
  20234. bottom: 54.2/1604.4
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(5 + 1/12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Sheera Castellar" },
  20248. {
  20249. front: {
  20250. height: math.unit(8 + 4/12, "feet"),
  20251. weight: math.unit(350, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/sheera-castellar/front.svg",
  20255. extra: 1957/1894,
  20256. bottom: 26.97/1975.017
  20257. }
  20258. },
  20259. side: {
  20260. height: math.unit(8 + 4/12, "feet"),
  20261. weight: math.unit(350, "lb"),
  20262. name: "Side",
  20263. image: {
  20264. source: "./media/characters/sheera-castellar/side.svg",
  20265. extra: 1957/1894
  20266. }
  20267. },
  20268. back: {
  20269. height: math.unit(8 + 4/12, "feet"),
  20270. weight: math.unit(350, "lb"),
  20271. name: "Back",
  20272. image: {
  20273. source: "./media/characters/sheera-castellar/back.svg",
  20274. extra: 1957/1894
  20275. }
  20276. },
  20277. angled: {
  20278. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20279. weight: math.unit(350, "lb"),
  20280. name: "Angled",
  20281. image: {
  20282. source: "./media/characters/sheera-castellar/angled.svg",
  20283. extra: 1807/1707,
  20284. bottom: 68/1875
  20285. }
  20286. },
  20287. genitals: {
  20288. height: math.unit(2.2, "feet"),
  20289. name: "Genitals",
  20290. image: {
  20291. source: "./media/characters/sheera-castellar/genitals.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(8 + 4/12, "feet")
  20299. },
  20300. {
  20301. name: "Macro",
  20302. height: math.unit(150, "feet"),
  20303. default: true
  20304. },
  20305. {
  20306. name: "Macro+",
  20307. height: math.unit(800, "feet")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Jaipur", species: "Black Panther" },
  20313. {
  20314. front: {
  20315. height: math.unit(6, "feet"),
  20316. weight: math.unit(150, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/jaipur/front.svg",
  20320. extra: 3860/3731,
  20321. bottom: 287/4140
  20322. }
  20323. },
  20324. back: {
  20325. height: math.unit(6, "feet"),
  20326. weight: math.unit(150, "lb"),
  20327. name: "Back",
  20328. image: {
  20329. source: "./media/characters/jaipur/back.svg",
  20330. extra: 4060/3930,
  20331. bottom: 151/4200
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(1.85, "meters"),
  20339. default: true
  20340. },
  20341. {
  20342. name: "Macro",
  20343. height: math.unit(150, "meters")
  20344. },
  20345. {
  20346. name: "Macro+",
  20347. height: math.unit(0.5, "miles")
  20348. },
  20349. {
  20350. name: "Macro++",
  20351. height: math.unit(2.5, "miles")
  20352. },
  20353. {
  20354. name: "Macro+++",
  20355. height: math.unit(12, "miles")
  20356. },
  20357. {
  20358. name: "Macro++++",
  20359. height: math.unit(120, "miles")
  20360. },
  20361. {
  20362. name: "Macro+++++",
  20363. height: math.unit(1200, "miles")
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Sheila (Wolf)" },
  20369. {
  20370. front: {
  20371. height: math.unit(6, "feet"),
  20372. weight: math.unit(150, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/sheila-wolf/front.svg",
  20376. extra: 1931/1808,
  20377. bottom: 29.5/1960
  20378. }
  20379. },
  20380. dick: {
  20381. height: math.unit(1.464, "feet"),
  20382. name: "Dick",
  20383. image: {
  20384. source: "./media/characters/sheila-wolf/dick.svg"
  20385. }
  20386. },
  20387. muzzle: {
  20388. height: math.unit(0.513, "feet"),
  20389. name: "Muzzle",
  20390. image: {
  20391. source: "./media/characters/sheila-wolf/muzzle.svg"
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Macro",
  20398. height: math.unit(70, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Almor", species: "Dragon" },
  20405. {
  20406. front: {
  20407. height: math.unit(32, "meters"),
  20408. weight: math.unit(300000, "kg"),
  20409. name: "Front",
  20410. image: {
  20411. source: "./media/characters/almor/front.svg",
  20412. extra: 1408/1322,
  20413. bottom: 94.6/1506.5
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Macro",
  20420. height: math.unit(32, "meters"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Silver" },
  20427. {
  20428. front: {
  20429. height: math.unit(7, "feet"),
  20430. weight: math.unit(200, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/silver/front.svg",
  20434. extra: 472.1/450.5,
  20435. bottom: 26.5/499.424
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(7, "feet"),
  20443. default: true
  20444. },
  20445. {
  20446. name: "Macro",
  20447. height: math.unit(800, "feet")
  20448. },
  20449. {
  20450. name: "Megamacro",
  20451. height: math.unit(250, "miles")
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Pliskin" },
  20457. {
  20458. front: {
  20459. height: math.unit(6, "feet"),
  20460. weight: math.unit(150, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/pliskin/front.svg",
  20464. extra: 1469/1359,
  20465. bottom: 70/1540
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Micro",
  20472. height: math.unit(3, "inches")
  20473. },
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(5 + 11/12, "feet"),
  20477. default: true
  20478. },
  20479. {
  20480. name: "Macro",
  20481. height: math.unit(120, "feet")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Sammy" },
  20487. {
  20488. front: {
  20489. height: math.unit(6, "feet"),
  20490. weight: math.unit(150, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/sammy/front.svg",
  20494. extra: 1193/1089,
  20495. bottom: 30.5/1226
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Macro",
  20502. height: math.unit(1700, "feet"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Examacro",
  20507. height: math.unit(2.5e9, "lightyears")
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Kuru", species: "Umbra" },
  20513. {
  20514. front: {
  20515. height: math.unit(21, "meters"),
  20516. weight: math.unit(12, "tonnes"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/kuru/front.svg",
  20520. extra: 4301/3785,
  20521. bottom: 371.3/4691
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Macro",
  20528. height: math.unit(21, "meters"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Rakka", species: "Umbra" },
  20535. {
  20536. front: {
  20537. height: math.unit(23, "meters"),
  20538. weight: math.unit(12.2, "tonnes"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/rakka/front.svg",
  20542. extra: 4670/4169,
  20543. bottom: 301/4968.7
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Macro",
  20550. height: math.unit(23, "meters"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Rhys (Feline)" },
  20557. {
  20558. front: {
  20559. height: math.unit(6, "feet"),
  20560. weight: math.unit(150, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/rhys-feline/front.svg",
  20564. extra: 2488/2308,
  20565. bottom: 35.67/2519.19
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Really Small",
  20572. height: math.unit(1, "nm")
  20573. },
  20574. {
  20575. name: "Micro",
  20576. height: math.unit(4, "inches")
  20577. },
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(4 + 10/12, "feet"),
  20581. default: true
  20582. },
  20583. {
  20584. name: "Macro",
  20585. height: math.unit(100, "feet")
  20586. },
  20587. {
  20588. name: "Megamacto",
  20589. height: math.unit(50, "miles")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Alydar", species: "Raven/Snow Leopard" },
  20595. {
  20596. side: {
  20597. height: math.unit(30, "feet"),
  20598. weight: math.unit(35000, "kg"),
  20599. name: "Side",
  20600. image: {
  20601. source: "./media/characters/alydar/side.svg",
  20602. extra: 234/222,
  20603. bottom: 6.5/241
  20604. }
  20605. },
  20606. front: {
  20607. height: math.unit(30, "feet"),
  20608. weight: math.unit(35000, "kg"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/alydar/front.svg",
  20612. extra: 223.37/210.2,
  20613. bottom: 22.3/246.76
  20614. }
  20615. },
  20616. top: {
  20617. height: math.unit(64.54, "feet"),
  20618. weight: math.unit(35000, "kg"),
  20619. name: "Top",
  20620. image: {
  20621. source: "./media/characters/alydar/top.svg"
  20622. }
  20623. },
  20624. anthro: {
  20625. height: math.unit(30, "feet"),
  20626. weight: math.unit(9000, "kg"),
  20627. name: "Anthro",
  20628. image: {
  20629. source: "./media/characters/alydar/anthro.svg",
  20630. extra: 432/421,
  20631. bottom: 7.18/440
  20632. }
  20633. },
  20634. maw: {
  20635. height: math.unit(11.693, "feet"),
  20636. name: "Maw",
  20637. image: {
  20638. source: "./media/characters/alydar/maw.svg"
  20639. }
  20640. },
  20641. head: {
  20642. height: math.unit(11.693, "feet"),
  20643. name: "Head",
  20644. image: {
  20645. source: "./media/characters/alydar/head.svg"
  20646. }
  20647. },
  20648. headAlt: {
  20649. height: math.unit(12.861, "feet"),
  20650. name: "Head (Alt)",
  20651. image: {
  20652. source: "./media/characters/alydar/head-alt.svg"
  20653. }
  20654. },
  20655. wing: {
  20656. height: math.unit(20.712, "feet"),
  20657. name: "Wing",
  20658. image: {
  20659. source: "./media/characters/alydar/wing.svg"
  20660. }
  20661. },
  20662. wingFeather: {
  20663. height: math.unit(9.662, "feet"),
  20664. name: "Wing Feather",
  20665. image: {
  20666. source: "./media/characters/alydar/wing-feather.svg"
  20667. }
  20668. },
  20669. countourFeather: {
  20670. height: math.unit(4.154, "feet"),
  20671. name: "Contour Feather",
  20672. image: {
  20673. source: "./media/characters/alydar/contour-feather.svg"
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Diplomatic",
  20680. height: math.unit(13, "feet"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Small",
  20685. height: math.unit(30, "feet")
  20686. },
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(95, "feet"),
  20690. default: true
  20691. },
  20692. {
  20693. name: "Large",
  20694. height: math.unit(285, "feet")
  20695. },
  20696. {
  20697. name: "Incomprehensible",
  20698. height: math.unit(450, "megameters")
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Selicia" },
  20704. {
  20705. side: {
  20706. height: math.unit(11, "feet"),
  20707. weight: math.unit(1750, "kg"),
  20708. name: "Side",
  20709. image: {
  20710. source: "./media/characters/selicia/side.svg",
  20711. extra: 440/396,
  20712. bottom: 24.8/465.979
  20713. }
  20714. },
  20715. maw: {
  20716. height: math.unit(4.665, "feet"),
  20717. name: "Maw",
  20718. image: {
  20719. source: "./media/characters/selicia/maw.svg"
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(11, "feet"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Layla" },
  20733. {
  20734. side: {
  20735. height: math.unit(2 + 6 /12, "feet"),
  20736. weight: math.unit(30, "lb"),
  20737. name: "Side",
  20738. image: {
  20739. source: "./media/characters/layla/side.svg",
  20740. extra: 244/188,
  20741. bottom: 18.2/262.1
  20742. }
  20743. },
  20744. back: {
  20745. height: math.unit(2 + 6 /12, "feet"),
  20746. weight: math.unit(30, "lb"),
  20747. name: "Back",
  20748. image: {
  20749. source: "./media/characters/layla/back.svg",
  20750. extra: 308/241.5,
  20751. bottom: 8.9/316.8
  20752. }
  20753. },
  20754. cumming: {
  20755. height: math.unit(2 + 6 /12, "feet"),
  20756. weight: math.unit(30, "lb"),
  20757. name: "Cumming",
  20758. image: {
  20759. source: "./media/characters/layla/cumming.svg",
  20760. extra: 342/279,
  20761. bottom: 595/938
  20762. }
  20763. },
  20764. dickFlaccid: {
  20765. height: math.unit(2.595, "feet"),
  20766. name: "Flaccid Genitals",
  20767. image: {
  20768. source: "./media/characters/layla/dick-flaccid.svg"
  20769. }
  20770. },
  20771. dickErect: {
  20772. height: math.unit(2.359, "feet"),
  20773. name: "Erect Genitals",
  20774. image: {
  20775. source: "./media/characters/layla/dick-erect.svg"
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Micro",
  20782. height: math.unit(1, "inch")
  20783. },
  20784. {
  20785. name: "Small",
  20786. height: math.unit(1, "foot")
  20787. },
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(2 + 6/12, "feet"),
  20791. default: true
  20792. },
  20793. {
  20794. name: "Macro",
  20795. height: math.unit(200, "feet")
  20796. },
  20797. {
  20798. name: "Megamacro",
  20799. height: math.unit(1000, "miles")
  20800. },
  20801. {
  20802. name: "Planetary",
  20803. height: math.unit(8000, "miles")
  20804. },
  20805. {
  20806. name: "True Layla",
  20807. height: math.unit(200000*7, "multiverses")
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Knox" },
  20813. {
  20814. back: {
  20815. height: math.unit(10.5, "feet"),
  20816. weight: math.unit(800, "lb"),
  20817. name: "Back",
  20818. image: {
  20819. source: "./media/characters/knox/back.svg",
  20820. extra: 1486/1089,
  20821. bottom: 107/1601.4
  20822. }
  20823. },
  20824. side: {
  20825. height: math.unit(10.5, "feet"),
  20826. weight: math.unit(800, "lb"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/knox/side.svg",
  20830. extra: 244/218,
  20831. bottom: 14/260
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Compact",
  20838. height: math.unit(10.5, "feet"),
  20839. default: true
  20840. },
  20841. {
  20842. name: "Dynamax",
  20843. height: math.unit(210, "feet")
  20844. },
  20845. {
  20846. name: "Full Macro",
  20847. height: math.unit(850, "feet")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Shin (Pikachu)" },
  20853. {
  20854. front: {
  20855. height: math.unit(6, "feet"),
  20856. weight: math.unit(152, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/shin-pikachu/front.svg",
  20860. extra: 1574/1480,
  20861. bottom: 53.3/1626
  20862. }
  20863. },
  20864. hand: {
  20865. height: math.unit(1.055, "feet"),
  20866. name: "Hand",
  20867. image: {
  20868. source: "./media/characters/shin-pikachu/hand.svg"
  20869. }
  20870. },
  20871. foot: {
  20872. height: math.unit(1.1, "feet"),
  20873. name: "Foot",
  20874. image: {
  20875. source: "./media/characters/shin-pikachu/foot.svg"
  20876. }
  20877. },
  20878. collar: {
  20879. height: math.unit(0.386, "feet"),
  20880. name: "Collar",
  20881. image: {
  20882. source: "./media/characters/shin-pikachu/collar.svg"
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Smallest",
  20889. height: math.unit(0.5, "inches")
  20890. },
  20891. {
  20892. name: "Micro",
  20893. height: math.unit(6, "inches")
  20894. },
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(6, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(150, "feet")
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Kayda" },
  20908. {
  20909. front: {
  20910. height: math.unit(28, "feet"),
  20911. weight: math.unit(10500, "lb"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/kayda/front.svg",
  20915. extra: 1536/1428,
  20916. bottom: 68.7/1603
  20917. }
  20918. },
  20919. back: {
  20920. height: math.unit(28, "feet"),
  20921. weight: math.unit(10500, "lb"),
  20922. name: "Back",
  20923. image: {
  20924. source: "./media/characters/kayda/back.svg",
  20925. extra: 1557/1464,
  20926. bottom: 39.5/1597.49
  20927. }
  20928. },
  20929. dick: {
  20930. height: math.unit(3.858, "feet"),
  20931. name: "Dick",
  20932. image: {
  20933. source: "./media/characters/kayda/dick.svg"
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Macro",
  20940. height: math.unit(28, "feet"),
  20941. default: true
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Brian", species: "Barbary Lion" },
  20947. {
  20948. front: {
  20949. height: math.unit(10 + 11/12, "feet"),
  20950. weight: math.unit(1400, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/brian/front.svg",
  20954. extra: 737/692,
  20955. bottom: 55.4/785
  20956. }
  20957. },
  20958. },
  20959. [
  20960. {
  20961. name: "Normal",
  20962. height: math.unit(10 + 11/12, "feet"),
  20963. default: true
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Khemri", species: "Jackal" },
  20969. {
  20970. front: {
  20971. height: math.unit(5 + 8/12, "feet"),
  20972. weight: math.unit(140, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/khemri/front.svg",
  20976. extra: 4780/4059,
  20977. bottom: 80.1/4859.25
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Micro",
  20984. height: math.unit(6, "inches")
  20985. },
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(5 + 8/12, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Felix Braveheart" },
  20995. {
  20996. front: {
  20997. height: math.unit(13, "feet"),
  20998. weight: math.unit(1700, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/felix-braveheart/front.svg",
  21002. extra: 1222/1157,
  21003. bottom: 53.2/1280
  21004. }
  21005. },
  21006. back: {
  21007. height: math.unit(13, "feet"),
  21008. weight: math.unit(1700, "lb"),
  21009. name: "Back",
  21010. image: {
  21011. source: "./media/characters/felix-braveheart/back.svg",
  21012. extra: 1277/1203,
  21013. bottom: 50.2/1327
  21014. }
  21015. },
  21016. feral: {
  21017. height: math.unit(6, "feet"),
  21018. weight: math.unit(400, "lb"),
  21019. name: "Feral",
  21020. image: {
  21021. source: "./media/characters/felix-braveheart/feral.svg",
  21022. extra: 682/625,
  21023. bottom: 6.9/688
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(13, "feet"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Shadow Blade" },
  21037. {
  21038. side: {
  21039. height: math.unit(5 + 11/12, "feet"),
  21040. weight: math.unit(1400, "lb"),
  21041. name: "Side",
  21042. image: {
  21043. source: "./media/characters/shadow-blade/side.svg",
  21044. extra: 1726/1267,
  21045. bottom: 58.4/1785
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(5 + 11/12, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Karla Halldor" },
  21059. {
  21060. front: {
  21061. height: math.unit(1 + 6/12, "feet"),
  21062. weight: math.unit(25, "lb"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/karla-halldor/front.svg",
  21066. extra: 1459/1383,
  21067. bottom: 12/1472
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(1 + 6/12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Ariam" },
  21081. {
  21082. front: {
  21083. height: math.unit(6 + 2/12, "feet"),
  21084. weight: math.unit(160, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/ariam/front.svg",
  21088. extra: 714/617,
  21089. bottom: 23.4/737,
  21090. }
  21091. },
  21092. squatting: {
  21093. height: math.unit(4.1, "feet"),
  21094. weight: math.unit(160, "lb"),
  21095. name: "Squatting",
  21096. image: {
  21097. source: "./media/characters/ariam/squatting.svg",
  21098. extra: 2617/2112,
  21099. bottom: 61.2/2681,
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(6 + 2/12, "feet"),
  21107. default: true
  21108. },
  21109. {
  21110. name: "Normal+",
  21111. height: math.unit(4, "meters")
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(50, "meters")
  21116. },
  21117. {
  21118. name: "Macro+",
  21119. height: math.unit(100, "meters")
  21120. },
  21121. {
  21122. name: "Megamacro",
  21123. height: math.unit(20, "km")
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Qodri Class-of-'Fortwelve-Six" },
  21129. {
  21130. front: {
  21131. height: math.unit(1.67, "meters"),
  21132. weight: math.unit(140, "lb"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21136. extra: 438/410,
  21137. bottom: 0.75/439
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Shrunken",
  21144. height: math.unit(7.6, "cm")
  21145. },
  21146. {
  21147. name: "Human Scale",
  21148. height: math.unit(1.67, "meters")
  21149. },
  21150. {
  21151. name: "Wolxi Scale",
  21152. height: math.unit(36.7, "meters"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Izue Two-Mothers" },
  21159. {
  21160. front: {
  21161. height: math.unit(1.73, "meters"),
  21162. weight: math.unit(240, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/izue-two-mothers/front.svg",
  21166. extra: 469/437,
  21167. bottom: 1.24/470.6
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Shrunken",
  21174. height: math.unit(7.86, "cm")
  21175. },
  21176. {
  21177. name: "Human Scale",
  21178. height: math.unit(1.73, "meters")
  21179. },
  21180. {
  21181. name: "Wolxi Scale",
  21182. height: math.unit(38, "meters"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Teeku Love-Shack" },
  21189. {
  21190. front: {
  21191. height: math.unit(1.55, "meters"),
  21192. weight: math.unit(120, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/teeku-love-shack/front.svg",
  21196. extra: 387/362,
  21197. bottom: 1.51/388
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Shrunken",
  21204. height: math.unit(7, "cm")
  21205. },
  21206. {
  21207. name: "Human Scale",
  21208. height: math.unit(1.55, "meters")
  21209. },
  21210. {
  21211. name: "Wolxi Scale",
  21212. height: math.unit(34.1, "meters"),
  21213. default: true
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Dejma the Red" },
  21219. {
  21220. front: {
  21221. height: math.unit(1.83, "meters"),
  21222. weight: math.unit(135, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/dejma-the-red/front.svg",
  21226. extra: 480/458,
  21227. bottom: 1.8/482
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Shrunken",
  21234. height: math.unit(8.3, "cm")
  21235. },
  21236. {
  21237. name: "Human Scale",
  21238. height: math.unit(1.83, "meters")
  21239. },
  21240. {
  21241. name: "Wolxi Scale",
  21242. height: math.unit(40, "meters"),
  21243. default: true
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Aki" },
  21249. {
  21250. front: {
  21251. height: math.unit(1.78, "meters"),
  21252. weight: math.unit(65, "kg"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/aki/front.svg",
  21256. extra: 452/415
  21257. }
  21258. },
  21259. frontNsfw: {
  21260. height: math.unit(1.78, "meters"),
  21261. weight: math.unit(65, "kg"),
  21262. name: "Front (NSFW)",
  21263. image: {
  21264. source: "./media/characters/aki/front-nsfw.svg",
  21265. extra: 452/415
  21266. }
  21267. },
  21268. back: {
  21269. height: math.unit(1.78, "meters"),
  21270. weight: math.unit(65, "kg"),
  21271. name: "Back",
  21272. image: {
  21273. source: "./media/characters/aki/back.svg",
  21274. extra: 452/415
  21275. }
  21276. },
  21277. rump: {
  21278. height: math.unit(2.05, "feet"),
  21279. name: "Rump",
  21280. image: {
  21281. source: "./media/characters/aki/rump.svg"
  21282. }
  21283. },
  21284. dick: {
  21285. height: math.unit(0.95, "feet"),
  21286. name: "Dick",
  21287. image: {
  21288. source: "./media/characters/aki/dick.svg"
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Micro",
  21295. height: math.unit(15, "cm")
  21296. },
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(178, "cm"),
  21300. default: true
  21301. },
  21302. {
  21303. name: "Macro",
  21304. height: math.unit(214, "m")
  21305. },
  21306. {
  21307. name: "Macro+",
  21308. height: math.unit(534, "m")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Ari" },
  21314. {
  21315. front: {
  21316. height: math.unit(5 + 5/12, "feet"),
  21317. weight: math.unit(120, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/ari/front.svg",
  21321. extra: 714.5/682,
  21322. bottom: 8/722.5
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(5 + 5/12, "feet")
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(100, "feet"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Megamacro",
  21338. height: math.unit(100, "miles")
  21339. },
  21340. {
  21341. name: "Gigamacro",
  21342. height: math.unit(80000, "miles")
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Bolt" },
  21348. {
  21349. side: {
  21350. height: math.unit(9, "feet"),
  21351. weight: math.unit(400, "kg"),
  21352. name: "Side",
  21353. image: {
  21354. source: "./media/characters/bolt/side.svg",
  21355. extra: 1126/896,
  21356. bottom: 60/1187.3,
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Micro",
  21363. height: math.unit(5, "inches")
  21364. },
  21365. {
  21366. name: "Normal",
  21367. height: math.unit(9, "feet"),
  21368. default: true
  21369. },
  21370. {
  21371. name: "Macro",
  21372. height: math.unit(700, "feet")
  21373. },
  21374. {
  21375. name: "Max Size",
  21376. height: math.unit(1.52e22, "yottameters")
  21377. },
  21378. ]
  21379. ))
  21380. characterMakers.push(() => makeCharacter(
  21381. { name: "Draekon Sylviar", species: "Dra'gal" },
  21382. {
  21383. front: {
  21384. height: math.unit(4.53, "meters"),
  21385. weight: math.unit(3, "tons"),
  21386. name: "Front",
  21387. image: {
  21388. source: "./media/characters/draekon-sylviar/front.svg",
  21389. extra: 1228/1068,
  21390. bottom: 41/1270
  21391. }
  21392. },
  21393. tail: {
  21394. height: math.unit(1.772, "meter"),
  21395. name: "Tail",
  21396. image: {
  21397. source: "./media/characters/draekon-sylviar/tail.svg"
  21398. }
  21399. },
  21400. head: {
  21401. height: math.unit(1.331, "meter"),
  21402. name: "Head",
  21403. image: {
  21404. source: "./media/characters/draekon-sylviar/head.svg"
  21405. }
  21406. },
  21407. hand: {
  21408. height: math.unit(0.564, "meter"),
  21409. name: "Hand",
  21410. image: {
  21411. source: "./media/characters/draekon-sylviar/hand.svg"
  21412. }
  21413. },
  21414. foot: {
  21415. height: math.unit(0.621, "meter"),
  21416. name: "Foot",
  21417. image: {
  21418. source: "./media/characters/draekon-sylviar/foot.svg",
  21419. bottom: 32/324
  21420. }
  21421. },
  21422. dick: {
  21423. height: math.unit(61, "cm"),
  21424. name: "Dick",
  21425. image: {
  21426. source: "./media/characters/draekon-sylviar/dick.svg"
  21427. }
  21428. },
  21429. dickseparated: {
  21430. height: math.unit(61, "cm"),
  21431. name: "Dick-separated",
  21432. image: {
  21433. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Small",
  21440. height: math.unit(4.53/2, "meters"),
  21441. default: true
  21442. },
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(4.53, "meters"),
  21446. default: true
  21447. },
  21448. {
  21449. name: "Large",
  21450. height: math.unit(4.53*2, "meters"),
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Brawler", species: "German Shepherd" },
  21456. {
  21457. front: {
  21458. height: math.unit(6 + 2/12, "feet"),
  21459. weight: math.unit(180, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/brawler/front.svg",
  21463. extra: 3301/3027,
  21464. bottom: 138/3439
  21465. }
  21466. },
  21467. },
  21468. [
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(6 + 2/12, "feet"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Alex", species: "Bayleef" },
  21478. {
  21479. front: {
  21480. height: math.unit(11, "feet"),
  21481. weight: math.unit(1000, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/alex/front.svg",
  21485. bottom: 44.5/620
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Micro",
  21492. height: math.unit(5, "inches")
  21493. },
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(11, "feet"),
  21497. default: true
  21498. },
  21499. {
  21500. name: "Macro",
  21501. height: math.unit(9.5e9, "feet")
  21502. },
  21503. {
  21504. name: "Max Size",
  21505. height: math.unit(1.57e283, "yottameters")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Zenari" },
  21511. {
  21512. female: {
  21513. height: math.unit(29.9, "m"),
  21514. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21515. name: "Female",
  21516. image: {
  21517. source: "./media/characters/zenari/female.svg",
  21518. extra: 3281.6/3217,
  21519. bottom: 72.2/3353
  21520. }
  21521. },
  21522. male: {
  21523. height: math.unit(27.7, "m"),
  21524. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21525. name: "Male",
  21526. image: {
  21527. source: "./media/characters/zenari/male.svg",
  21528. extra: 3008/2991,
  21529. bottom: 54.6/3069
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Macro",
  21536. height: math.unit(29.7, "meters"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Mactarian" },
  21543. {
  21544. female: {
  21545. height: math.unit(23.8, "m"),
  21546. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21547. name: "Female",
  21548. image: {
  21549. source: "./media/characters/mactarian/female.svg",
  21550. extra: 2662/2569,
  21551. bottom: 73/2736
  21552. }
  21553. },
  21554. male: {
  21555. height: math.unit(23.8, "m"),
  21556. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21557. name: "Male",
  21558. image: {
  21559. source: "./media/characters/mactarian/male.svg",
  21560. extra: 2673/2600,
  21561. bottom: 76/2750
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(23.8, "meters"),
  21569. default: true
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Umok" },
  21575. {
  21576. female: {
  21577. height: math.unit(19.3, "m"),
  21578. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21579. name: "Female",
  21580. image: {
  21581. source: "./media/characters/umok/female.svg",
  21582. extra: 2186/2078,
  21583. bottom: 87/2277
  21584. }
  21585. },
  21586. male: {
  21587. height: math.unit(19.5, "m"),
  21588. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21589. name: "Male",
  21590. image: {
  21591. source: "./media/characters/umok/male.svg",
  21592. extra: 2233/2140,
  21593. bottom: 24.4/2258
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Macro",
  21600. height: math.unit(19.3, "meters"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Joraxian" },
  21607. {
  21608. female: {
  21609. height: math.unit(26.15, "m"),
  21610. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21611. name: "Female",
  21612. image: {
  21613. source: "./media/characters/joraxian/female.svg",
  21614. extra: 2943/2831,
  21615. bottom: 27/2972
  21616. }
  21617. },
  21618. male: {
  21619. height: math.unit(25.4, "m"),
  21620. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21621. name: "Male",
  21622. image: {
  21623. source: "./media/characters/joraxian/male.svg",
  21624. extra: 2835/2741,
  21625. bottom: 27/2862
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Macro",
  21632. height: math.unit(26.15, "meters"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Sthara" },
  21639. {
  21640. female: {
  21641. height: math.unit(21.6, "m"),
  21642. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21643. name: "Female",
  21644. image: {
  21645. source: "./media/characters/sthara/female.svg",
  21646. extra: 2516/2347,
  21647. bottom: 21.5/2537
  21648. }
  21649. },
  21650. male: {
  21651. height: math.unit(24, "m"),
  21652. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21653. name: "Male",
  21654. image: {
  21655. source: "./media/characters/sthara/male.svg",
  21656. extra: 2732/2607,
  21657. bottom: 23/2732
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Macro",
  21664. height: math.unit(21.6, "meters"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Luka Bryzant" },
  21671. {
  21672. front: {
  21673. height: math.unit(6 + 4/12, "feet"),
  21674. weight: math.unit(175, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/luka-bryzant/front.svg",
  21678. extra: 311/289,
  21679. bottom: 4/315
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(6 + 4/12, "feet"),
  21684. weight: math.unit(175, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/luka-bryzant/back.svg",
  21688. extra: 311/289,
  21689. bottom: 3.8/313.7
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Micro",
  21696. height: math.unit(10, "inches")
  21697. },
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(6 + 4/12, "feet"),
  21701. default: true
  21702. },
  21703. {
  21704. name: "Large",
  21705. height: math.unit(12, "feet")
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Aman Aquila" },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 7/12, "feet"),
  21714. weight: math.unit(185, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/aman-aquila/front.svg",
  21718. extra: 1013/976,
  21719. bottom: 45.6/1057
  21720. }
  21721. },
  21722. side: {
  21723. height: math.unit(5 + 7/12, "feet"),
  21724. weight: math.unit(185, "lb"),
  21725. name: "Side",
  21726. image: {
  21727. source: "./media/characters/aman-aquila/side.svg",
  21728. extra: 1054/1011,
  21729. bottom: 15/1070
  21730. }
  21731. },
  21732. back: {
  21733. height: math.unit(5 + 7/12, "feet"),
  21734. weight: math.unit(185, "lb"),
  21735. name: "Back",
  21736. image: {
  21737. source: "./media/characters/aman-aquila/back.svg",
  21738. extra: 1026/970,
  21739. bottom: 12/1039
  21740. }
  21741. },
  21742. head: {
  21743. height: math.unit(1.211, "feet"),
  21744. name: "Head",
  21745. image: {
  21746. source: "./media/characters/aman-aquila/head.svg",
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Minimicro",
  21753. height: math.unit(0.057, "inches")
  21754. },
  21755. {
  21756. name: "Micro",
  21757. height: math.unit(7, "inches")
  21758. },
  21759. {
  21760. name: "Mini",
  21761. height: math.unit(3 + 7/12, "feet")
  21762. },
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(5 + 7/12, "feet"),
  21766. default: true
  21767. },
  21768. {
  21769. name: "Macro",
  21770. height: math.unit(157 + 7/12, "feet")
  21771. },
  21772. {
  21773. name: "Megamacro",
  21774. height: math.unit(1557 + 7/12, "feet")
  21775. },
  21776. {
  21777. name: "Gigamacro",
  21778. height: math.unit(15557 + 7/12, "feet")
  21779. },
  21780. ]
  21781. ))
  21782. //characters
  21783. function makeCharacters() {
  21784. const results = [];
  21785. characterMakers.forEach(character => {
  21786. results.push(character());
  21787. });
  21788. return results;
  21789. }