less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21656 lines
518 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. }
  4891. },
  4892. back: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(350, "lbs"),
  4895. name: "Back",
  4896. image: {
  4897. source: "./media/characters/razinox/back.svg",
  4898. extra: 1660 / 1590
  4899. }
  4900. },
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(10 + 8 / 12, "foot")
  4906. },
  4907. {
  4908. name: "Minimacro",
  4909. height: math.unit(15, "foot")
  4910. },
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(60, "foot"),
  4914. default: true
  4915. },
  4916. {
  4917. name: "Megamacro",
  4918. height: math.unit(5, "miles")
  4919. },
  4920. {
  4921. name: "Gigamacro",
  4922. height: math.unit(6000, "miles")
  4923. },
  4924. ]
  4925. ))
  4926. characterMakers.push(() => makeCharacter(
  4927. { name: "Cobalt" },
  4928. {
  4929. front: {
  4930. height: math.unit(6, "feet"),
  4931. weight: math.unit(150, "lbs"),
  4932. name: "Front",
  4933. image: {
  4934. source: "./media/characters/cobalt/front.svg"
  4935. }
  4936. }
  4937. },
  4938. [
  4939. {
  4940. name: "Normal",
  4941. height: math.unit(8 + 1 / 12, "foot")
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(111, "foot"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Supracosmic",
  4950. height: math.unit(1e42, "feet")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Amanda" },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(140, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/amanda/front.svg"
  4963. }
  4964. }
  4965. },
  4966. [
  4967. {
  4968. name: "Micro",
  4969. height: math.unit(5, "inches"),
  4970. default: true
  4971. },
  4972. ]
  4973. ))
  4974. characterMakers.push(() => makeCharacter(
  4975. { name: "Teal" },
  4976. {
  4977. front: {
  4978. height: math.unit(5.59, "feet"),
  4979. weight: math.unit(250, "lbs"),
  4980. name: "Front",
  4981. image: {
  4982. source: "./media/characters/teal/front.svg"
  4983. }
  4984. },
  4985. frontAlt: {
  4986. height: math.unit(6, "feet"),
  4987. weight: math.unit(250, "lbs"),
  4988. name: "Front (Alt)",
  4989. image: {
  4990. source: "./media/characters/teal/front-alt.svg",
  4991. bottom: 0.04,
  4992. extra: 1
  4993. }
  4994. },
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(12, "feet"),
  5000. default: true
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(300, "feet")
  5005. },
  5006. ]
  5007. ))
  5008. characterMakers.push(() => makeCharacter(
  5009. { name: "Ravin Amulet" },
  5010. {
  5011. frontCat: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(180, "lbs"),
  5014. name: "Front (Cat)",
  5015. image: {
  5016. source: "./media/characters/ravin-amulet/front-cat.svg"
  5017. }
  5018. },
  5019. frontCatAlt: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Front (Alt, Cat)",
  5023. image: {
  5024. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5025. }
  5026. },
  5027. frontWerewolf: {
  5028. height: math.unit(6 * 1.2, "feet"),
  5029. weight: math.unit(225, "lbs"),
  5030. name: "Front (Werewolf)",
  5031. image: {
  5032. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5033. }
  5034. },
  5035. backWerewolf: {
  5036. height: math.unit(6 * 1.2, "feet"),
  5037. weight: math.unit(225, "lbs"),
  5038. name: "Back (Werewolf)",
  5039. image: {
  5040. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5041. }
  5042. },
  5043. },
  5044. [
  5045. {
  5046. name: "Nano",
  5047. height: math.unit(1, "micrometer")
  5048. },
  5049. {
  5050. name: "Micro",
  5051. height: math.unit(1, "inch")
  5052. },
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(6, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(60, "feet")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Fluoresce" },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(165, "lbs"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/fluoresce/front.svg"
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Micro",
  5079. height: math.unit(6, "cm")
  5080. },
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(5 + 7 / 12, "feet"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(56, "feet")
  5089. },
  5090. {
  5091. name: "Megamacro",
  5092. height: math.unit(1.9, "miles")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Aurora" },
  5098. {
  5099. front: {
  5100. height: math.unit(9 + 6 / 12, "feet"),
  5101. weight: math.unit(523, "lbs"),
  5102. name: "Side",
  5103. image: {
  5104. source: "./media/characters/aurora/side.svg"
  5105. }
  5106. }
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(9 + 6 / 12, "feet")
  5112. },
  5113. {
  5114. name: "Macro",
  5115. height: math.unit(96, "feet"),
  5116. default: true
  5117. },
  5118. {
  5119. name: "Macro+",
  5120. height: math.unit(243, "feet")
  5121. },
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Ranek" },
  5126. {
  5127. front: {
  5128. height: math.unit(194, "cm"),
  5129. weight: math.unit(90, "kg"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/ranek/front.svg"
  5133. }
  5134. },
  5135. side: {
  5136. height: math.unit(194, "cm"),
  5137. weight: math.unit(90, "kg"),
  5138. name: "Side",
  5139. image: {
  5140. source: "./media/characters/ranek/side.svg"
  5141. }
  5142. },
  5143. back: {
  5144. height: math.unit(194, "cm"),
  5145. weight: math.unit(90, "kg"),
  5146. name: "Back",
  5147. image: {
  5148. source: "./media/characters/ranek/back.svg"
  5149. }
  5150. },
  5151. feral: {
  5152. height: math.unit(30, "cm"),
  5153. weight: math.unit(1.6, "lbs"),
  5154. name: "Feral",
  5155. image: {
  5156. source: "./media/characters/ranek/feral.svg"
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(194, "cm"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Macro",
  5168. height: math.unit(100, "meters")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Andrew Cooper" },
  5174. {
  5175. front: {
  5176. height: math.unit(5 + 6 / 12, "feet"),
  5177. weight: math.unit(153, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/andrew-cooper/front.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Nano",
  5187. height: math.unit(1, "mm")
  5188. },
  5189. {
  5190. name: "Micro",
  5191. height: math.unit(2, "inches")
  5192. },
  5193. {
  5194. name: "Normal",
  5195. height: math.unit(5 + 6 / 12, "feet"),
  5196. default: true
  5197. }
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Akane Sato" },
  5202. {
  5203. front: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(180, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/akane-sato/front.svg",
  5209. extra: 1219 / 1140
  5210. }
  5211. },
  5212. back: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(180, "lbs"),
  5215. name: "Back",
  5216. image: {
  5217. source: "./media/characters/akane-sato/back.svg",
  5218. extra: 1219 / 1170
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(2.5, "meters")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(250, "meters"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Megamacro",
  5234. height: math.unit(25, "km")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Rook" },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(65, "kg"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/rook/front.svg",
  5247. extra: 960/950
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(8.8, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(88, "feet"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Megamacro",
  5263. height: math.unit(8, "miles")
  5264. },
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Prodigy" },
  5269. {
  5270. front: {
  5271. height: math.unit(12 + 2 / 12, "feet"),
  5272. weight: math.unit(808, "lbs"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/prodigy/front.svg"
  5276. }
  5277. }
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(12 + 2 / 12, "feet"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(143, "feet")
  5288. },
  5289. {
  5290. name: "Macro+",
  5291. height: math.unit(400, "feet")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Daniel" },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(225, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/daniel/front.svg"
  5304. }
  5305. },
  5306. leaning: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(225, "lbs"),
  5309. name: "Leaning",
  5310. image: {
  5311. source: "./media/characters/daniel/leaning.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(1000, "feet"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Chiros" },
  5325. {
  5326. front: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(88, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/chiros/front.svg",
  5332. extra: 306 / 226
  5333. }
  5334. },
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(88, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/chiros/side.svg",
  5341. extra: 306 / 226
  5342. }
  5343. },
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(6, "cm"),
  5349. default: true
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Selka" },
  5355. {
  5356. front: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(100, "lbs"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/selka/front.svg",
  5362. extra: 947 / 887
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5, "cm"),
  5370. default: true
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Verin" },
  5376. {
  5377. front: {
  5378. height: math.unit(8 + 3 / 12, "feet"),
  5379. weight: math.unit(424, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/verin/front.svg",
  5383. extra: 1845 / 1550
  5384. }
  5385. },
  5386. frontArmored: {
  5387. height: math.unit(8 + 3 / 12, "feet"),
  5388. weight: math.unit(424, "lbs"),
  5389. name: "Front (Armored)",
  5390. image: {
  5391. source: "./media/characters/verin/front-armor.svg",
  5392. extra: 1845 / 1550,
  5393. bottom: 0.01
  5394. }
  5395. },
  5396. back: {
  5397. height: math.unit(8 + 3 / 12, "feet"),
  5398. weight: math.unit(424, "lbs"),
  5399. name: "Back",
  5400. image: {
  5401. source: "./media/characters/verin/back.svg",
  5402. bottom: 0.1,
  5403. extra: 1
  5404. }
  5405. },
  5406. foot: {
  5407. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5408. name: "Foot",
  5409. image: {
  5410. source: "./media/characters/verin/foot.svg"
  5411. }
  5412. },
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(8 + 3 / 12, "feet")
  5418. },
  5419. {
  5420. name: "Minimacro",
  5421. height: math.unit(21, "feet"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(626, "feet")
  5427. },
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Sovrim Terraquian" },
  5432. {
  5433. front: {
  5434. height: math.unit(2.718, "meters"),
  5435. weight: math.unit(150, "lbs"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/sovrim-terraquian/front.svg"
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(2.718, "meters"),
  5443. weight: math.unit(150, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/sovrim-terraquian/back.svg"
  5447. }
  5448. }
  5449. },
  5450. [
  5451. {
  5452. name: "Micro",
  5453. height: math.unit(2, "inches")
  5454. },
  5455. {
  5456. name: "Small",
  5457. height: math.unit(1, "meter")
  5458. },
  5459. {
  5460. name: "Normal",
  5461. height: math.unit(Math.E, "meters"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Macro",
  5466. height: math.unit(20, "meters")
  5467. },
  5468. {
  5469. name: "Macro+",
  5470. height: math.unit(400, "meters")
  5471. },
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Reece Silvermane" },
  5476. {
  5477. front: {
  5478. height: math.unit(7, "feet"),
  5479. weight: math.unit(489, "lbs"),
  5480. name: "Front",
  5481. image: {
  5482. source: "./media/characters/reece-silvermane/front.svg",
  5483. bottom: 0.02,
  5484. extra: 1
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(1.5, "miles"),
  5492. default: true
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Kane" },
  5498. {
  5499. front: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(78, "kg"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/kane/front.svg",
  5505. extra: 978 / 899
  5506. }
  5507. },
  5508. },
  5509. [
  5510. {
  5511. name: "Normal",
  5512. height: math.unit(2.1, "m"),
  5513. },
  5514. {
  5515. name: "Macro",
  5516. height: math.unit(1, "km"),
  5517. default: true
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Tegon" },
  5523. {
  5524. front: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(200, "kg"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/tegon/front.svg",
  5530. bottom: 0.01,
  5531. extra: 1
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Micro",
  5538. height: math.unit(1, "inch")
  5539. },
  5540. {
  5541. name: "Normal",
  5542. height: math.unit(6 + 3 / 12, "feet"),
  5543. default: true
  5544. },
  5545. {
  5546. name: "Macro",
  5547. height: math.unit(300, "feet")
  5548. },
  5549. {
  5550. name: "Megamacro",
  5551. height: math.unit(69, "miles")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Arcturax" },
  5557. {
  5558. side: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(2304, "lbs"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/arcturax/side.svg",
  5564. extra: 790 / 376,
  5565. bottom: 0.01
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Micro",
  5572. height: math.unit(2, "inch")
  5573. },
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(6, "feet")
  5577. },
  5578. {
  5579. name: "Macro",
  5580. height: math.unit(39, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(7, "miles")
  5586. },
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Sentri" },
  5591. {
  5592. front: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(50, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/sentri/front.svg",
  5598. extra: 1750 / 1570,
  5599. bottom: 0.025
  5600. }
  5601. },
  5602. frontAlt: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(50, "lbs"),
  5605. name: "Front (Alt)",
  5606. image: {
  5607. source: "./media/characters/sentri/front-alt.svg",
  5608. extra: 1750 / 1570,
  5609. bottom: 0.025
  5610. }
  5611. },
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(15, "feet"),
  5617. default: true
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(2500, "feet")
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Corvin" },
  5627. {
  5628. front: {
  5629. height: math.unit(5 + 8 / 12, "feet"),
  5630. weight: math.unit(130, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/corvin/front.svg",
  5634. extra: 1803 / 1629
  5635. }
  5636. },
  5637. frontShirt: {
  5638. height: math.unit(5 + 8 / 12, "feet"),
  5639. weight: math.unit(130, "lbs"),
  5640. name: "Front (Shirt)",
  5641. image: {
  5642. source: "./media/characters/corvin/front-shirt.svg",
  5643. extra: 1803 / 1629
  5644. }
  5645. },
  5646. frontPoncho: {
  5647. height: math.unit(5 + 8 / 12, "feet"),
  5648. weight: math.unit(130, "lbs"),
  5649. name: "Front (Poncho)",
  5650. image: {
  5651. source: "./media/characters/corvin/front-poncho.svg",
  5652. extra: 1803 / 1629
  5653. }
  5654. },
  5655. side: {
  5656. height: math.unit(5 + 8 / 12, "feet"),
  5657. weight: math.unit(130, "lbs"),
  5658. name: "Side",
  5659. image: {
  5660. source: "./media/characters/corvin/side.svg",
  5661. extra: 1012 / 945
  5662. }
  5663. },
  5664. back: {
  5665. height: math.unit(5 + 8 / 12, "feet"),
  5666. weight: math.unit(130, "lbs"),
  5667. name: "Back",
  5668. image: {
  5669. source: "./media/characters/corvin/back.svg",
  5670. extra: 1803 / 1629
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Micro",
  5677. height: math.unit(3, "inches")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5 + 8 / 12, "feet")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(300, "feet"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(500, "miles")
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Q" },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(135, "lbs"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/q/front.svg",
  5703. extra: 854 / 752,
  5704. bottom: 0.005
  5705. }
  5706. },
  5707. back: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(130, "lbs"),
  5710. name: "Back",
  5711. image: {
  5712. source: "./media/characters/q/back.svg",
  5713. extra: 854 / 752
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(90, "feet"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Extra Macro",
  5725. height: math.unit(300, "feet"),
  5726. },
  5727. {
  5728. name: "BIG WALF",
  5729. height: math.unit(750, "feet"),
  5730. },
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Carley" },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(150, "lbs"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/carley/front.svg",
  5742. extra: 3927 / 3540,
  5743. bottom: 0.03
  5744. }
  5745. }
  5746. },
  5747. [
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(6 + 3 / 12, "feet")
  5751. },
  5752. {
  5753. name: "Macro",
  5754. height: math.unit(185, "feet"),
  5755. default: true
  5756. },
  5757. {
  5758. name: "Megamacro",
  5759. height: math.unit(8, "miles"),
  5760. },
  5761. ]
  5762. ))
  5763. characterMakers.push(() => makeCharacter(
  5764. { name: "Citrine" },
  5765. {
  5766. front: {
  5767. height: math.unit(3, "feet"),
  5768. weight: math.unit(28, "lbs"),
  5769. name: "Front",
  5770. image: {
  5771. source: "./media/characters/citrine/front.svg"
  5772. }
  5773. }
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(3, "feet"),
  5779. default: true
  5780. }
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Aura Starwind" },
  5785. {
  5786. front: {
  5787. height: math.unit(14, "feet"),
  5788. weight: math.unit(1450, "kg"),
  5789. name: "Front",
  5790. image: {
  5791. source: "./media/characters/aura-starwind/front.svg",
  5792. extra: 1455 / 1335
  5793. }
  5794. },
  5795. side: {
  5796. height: math.unit(14, "feet"),
  5797. weight: math.unit(1450, "kg"),
  5798. name: "Side",
  5799. image: {
  5800. source: "./media/characters/aura-starwind/side.svg",
  5801. extra: 1654 / 1497
  5802. }
  5803. },
  5804. taur: {
  5805. height: math.unit(18, "feet"),
  5806. weight: math.unit(5500, "kg"),
  5807. name: "Taur",
  5808. image: {
  5809. source: "./media/characters/aura-starwind/taur.svg",
  5810. extra: 1760 / 1650
  5811. }
  5812. },
  5813. feral: {
  5814. height: math.unit(46, "feet"),
  5815. weight: math.unit(25000, "kg"),
  5816. name: "Feral",
  5817. image: {
  5818. source: "./media/characters/aura-starwind/feral.svg"
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(14, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(50, "meters")
  5831. },
  5832. {
  5833. name: "Megamacro",
  5834. height: math.unit(5000, "meters")
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(100000, "kilometers")
  5839. },
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rivet" },
  5844. {
  5845. front: {
  5846. height: math.unit(2 + 7 / 12, "feet"),
  5847. weight: math.unit(32, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rivet/front.svg",
  5851. extra: 1716 / 1658,
  5852. bottom: 0.03
  5853. }
  5854. },
  5855. foot: {
  5856. height: math.unit(0.551, "feet"),
  5857. name: "Rivet's Foot",
  5858. image: {
  5859. source: "./media/characters/rivet/foot.svg"
  5860. },
  5861. rename: true
  5862. }
  5863. },
  5864. [
  5865. {
  5866. name: "Micro",
  5867. height: math.unit(1.5, "inches"),
  5868. },
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(2 + 7 / 12, "feet"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(85, "feet")
  5877. },
  5878. {
  5879. name: "Megamacro",
  5880. height: math.unit(2.2, "km")
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Coffee" },
  5886. {
  5887. front: {
  5888. height: math.unit(5 + 9 / 12, "feet"),
  5889. weight: math.unit(150, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/coffee/front.svg",
  5893. extra: 3666 / 3032,
  5894. bottom: 0.04
  5895. }
  5896. },
  5897. foot: {
  5898. height: math.unit(1.29, "feet"),
  5899. name: "Foot",
  5900. image: {
  5901. source: "./media/characters/coffee/foot.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Micro",
  5908. height: math.unit(2, "inches"),
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(5 + 9 / 12, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(800, "feet")
  5918. },
  5919. {
  5920. name: "Megamacro",
  5921. height: math.unit(25, "miles")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Chari-Gal" },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(200, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/chari-gal/front.svg",
  5934. extra: 1568 / 1385,
  5935. bottom: 0.047
  5936. }
  5937. },
  5938. gigantamax: {
  5939. height: math.unit(6 * 16, "feet"),
  5940. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5941. name: "Gigantamax",
  5942. image: {
  5943. source: "./media/characters/chari-gal/gigantamax.svg",
  5944. extra: 1124 / 888,
  5945. bottom: 0.03
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(5 + 7 / 12, "feet")
  5953. },
  5954. {
  5955. name: "Macro",
  5956. height: math.unit(200, "feet"),
  5957. default: true
  5958. }
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Nova" },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(150, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/nova/front.svg",
  5970. extra: 5000 / 4722,
  5971. bottom: 0.02
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Micro-",
  5978. height: math.unit(0.8, "inches")
  5979. },
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(2, "inches"),
  5983. default: true
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Argent" },
  5989. {
  5990. front: {
  5991. height: math.unit(3 + 1 / 12, "feet"),
  5992. weight: math.unit(21.7, "lbs"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/argent/front.svg",
  5996. extra: 1565 / 1416,
  5997. bottom: 0.01
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Micro",
  6004. height: math.unit(2, "inches")
  6005. },
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(3 + 1 / 12, "feet"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(120, "feet")
  6014. },
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Mira al-Cul" },
  6019. {
  6020. lamp: {
  6021. height: math.unit(7 * 1559 / 989, "feet"),
  6022. name: "Magic Lamp",
  6023. image: {
  6024. source: "./media/characters/mira-al-cul/lamp.svg",
  6025. extra: 1617 / 1559
  6026. }
  6027. },
  6028. front: {
  6029. height: math.unit(7, "feet"),
  6030. name: "Front",
  6031. image: {
  6032. source: "./media/characters/mira-al-cul/front.svg",
  6033. extra: 1044 / 990
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Heavily Restricted",
  6040. height: math.unit(7 * 1559 / 989, "feet")
  6041. },
  6042. {
  6043. name: "Freshly Freed",
  6044. height: math.unit(50 * 1559 / 989, "feet")
  6045. },
  6046. {
  6047. name: "World Encompassing",
  6048. height: math.unit(10000 * 1559 / 989, "miles")
  6049. },
  6050. {
  6051. name: "Galactic",
  6052. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6053. },
  6054. {
  6055. name: "Palmed Universe",
  6056. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Multiversal Matriarch",
  6061. height: math.unit(8.87e10, "yottameters")
  6062. },
  6063. {
  6064. name: "Void Mother",
  6065. height: math.unit(3.14e110, "yottaparsecs")
  6066. },
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Kuro-shi Uchū" },
  6071. {
  6072. front: {
  6073. height: math.unit(17 + 1 / 12, "feet"),
  6074. weight: math.unit(476.2 * 5, "lbs"),
  6075. name: "Front",
  6076. image: {
  6077. source: "./media/characters/kuro-shi-uchū/front.svg",
  6078. extra: 2329 / 1835,
  6079. bottom: 0.02
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Micro",
  6086. height: math.unit(2, "inches")
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(12, "meters")
  6091. },
  6092. {
  6093. name: "Planetary",
  6094. height: math.unit(0.00929, "AU"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Universal",
  6099. height: math.unit(20, "gigaparsecs")
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Katherine" },
  6105. {
  6106. front: {
  6107. height: math.unit(5 + 2 / 12, "feet"),
  6108. weight: math.unit(120, "lbs"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/katherine/front.svg",
  6112. extra: 2075 / 1969
  6113. }
  6114. },
  6115. dress: {
  6116. height: math.unit(5 + 2 / 12, "feet"),
  6117. weight: math.unit(120, "lbs"),
  6118. name: "Dress",
  6119. image: {
  6120. source: "./media/characters/katherine/dress.svg",
  6121. extra: 2258 / 2064
  6122. }
  6123. },
  6124. },
  6125. [
  6126. {
  6127. name: "Micro",
  6128. height: math.unit(1, "inches"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(5 + 2 / 12, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(100, "meters")
  6138. },
  6139. {
  6140. name: "Megamacro",
  6141. height: math.unit(80, "miles")
  6142. },
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Yevis" },
  6147. {
  6148. front: {
  6149. height: math.unit(7 + 8 / 12, "feet"),
  6150. weight: math.unit(250, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/yevis/front.svg",
  6154. extra: 1938 / 1755
  6155. }
  6156. }
  6157. },
  6158. [
  6159. {
  6160. name: "Mortal",
  6161. height: math.unit(7 + 8 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Battle",
  6165. height: math.unit(25 + 11 / 12, "feet")
  6166. },
  6167. {
  6168. name: "Wrath",
  6169. height: math.unit(1654 + 11 / 12, "feet")
  6170. },
  6171. {
  6172. name: "Planet Destroyer",
  6173. height: math.unit(12000, "miles")
  6174. },
  6175. {
  6176. name: "Galaxy Conqueror",
  6177. height: math.unit(1.45, "zettameters"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Universal War",
  6182. height: math.unit(184, "gigaparsecs")
  6183. },
  6184. {
  6185. name: "Eternity War",
  6186. height: math.unit(1.98e55, "yottaparsecs")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Xavier" },
  6192. {
  6193. front: {
  6194. height: math.unit(5 + 8 / 12, "feet"),
  6195. weight: math.unit(63, "kg"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/xavier/front.svg",
  6199. extra: 944 / 883
  6200. }
  6201. },
  6202. frontStretch: {
  6203. height: math.unit(5 + 8 / 12, "feet"),
  6204. weight: math.unit(63, "kg"),
  6205. name: "Stretching",
  6206. image: {
  6207. source: "./media/characters/xavier/front-stretch.svg",
  6208. extra: 962 / 820
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5 + 8 / 12, "feet")
  6216. },
  6217. {
  6218. name: "Macro",
  6219. height: math.unit(100, "meters"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "McLargeHuge",
  6224. height: math.unit(10, "miles")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Joshii" },
  6230. {
  6231. front: {
  6232. height: math.unit(5 + 5 / 12, "feet"),
  6233. weight: math.unit(150, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/joshii/front.svg"
  6237. }
  6238. },
  6239. foot: {
  6240. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6241. name: "Foot",
  6242. image: {
  6243. source: "./media/characters/joshii/foot.svg"
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Micro",
  6250. height: math.unit(2, "inches")
  6251. },
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(5 + 5 / 12, "feet"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(785, "feet")
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(24.5, "miles")
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Goddess Elizabeth" },
  6269. {
  6270. front: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(150, "lb"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/goddess-elizabeth/front.svg",
  6276. extra: 1800 / 1525,
  6277. bottom: 0.005
  6278. }
  6279. },
  6280. foot: {
  6281. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6282. name: "Foot",
  6283. image: {
  6284. source: "./media/characters/goddess-elizabeth/foot.svg"
  6285. }
  6286. },
  6287. mouth: {
  6288. height: math.unit(6, "feet"),
  6289. name: "Mouth",
  6290. image: {
  6291. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Micro",
  6298. height: math.unit(12, "feet")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(80, "miles"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(15000, "parsecs")
  6308. },
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Kara" },
  6313. {
  6314. front: {
  6315. height: math.unit(5 + 9 / 12, "feet"),
  6316. weight: math.unit(144, "lb"),
  6317. name: "Front",
  6318. image: {
  6319. source: "./media/characters/kara/front.svg"
  6320. }
  6321. },
  6322. feet: {
  6323. height: math.unit(6 / 6.765, "feet"),
  6324. name: "Kara's Feet",
  6325. rename: true,
  6326. image: {
  6327. source: "./media/characters/kara/feet.svg"
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(5 + 9 / 12, "feet")
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(174, "feet"),
  6339. default: true
  6340. },
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Tyrone" },
  6345. {
  6346. front: {
  6347. height: math.unit(18, "feet"),
  6348. weight: math.unit(4050, "lb"),
  6349. name: "Front",
  6350. image: {
  6351. source: "./media/characters/tyrone/front.svg",
  6352. extra: 2520 / 2402,
  6353. bottom: 0.025
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(18, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(300, "feet")
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Danny" },
  6371. {
  6372. front: {
  6373. height: math.unit(7 + 8 / 12, "feet"),
  6374. weight: math.unit(120, "lb"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/danny/front.svg",
  6378. extra: 1490 / 1350
  6379. }
  6380. },
  6381. back: {
  6382. height: math.unit(7 + 8 / 12, "feet"),
  6383. weight: math.unit(120, "lb"),
  6384. name: "Back",
  6385. image: {
  6386. source: "./media/characters/danny/back.svg",
  6387. extra: 1490 / 1350
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(7 + 8 / 12, "feet"),
  6395. default: true
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Mallow" },
  6401. {
  6402. front: {
  6403. height: math.unit(3.5, "inches"),
  6404. weight: math.unit(19, "grams"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/mallow/front.svg",
  6408. extra: 471 / 431
  6409. }
  6410. },
  6411. back: {
  6412. height: math.unit(3.5, "inches"),
  6413. weight: math.unit(19, "grams"),
  6414. name: "Back",
  6415. image: {
  6416. source: "./media/characters/mallow/back.svg",
  6417. extra: 471 / 431
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(3.5, "inches"),
  6425. default: true
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Starry Aqua" },
  6431. {
  6432. front: {
  6433. height: math.unit(9, "feet"),
  6434. weight: math.unit(230, "kg"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/starry-aqua/front.svg"
  6438. }
  6439. },
  6440. back: {
  6441. height: math.unit(9, "feet"),
  6442. weight: math.unit(230, "kg"),
  6443. name: "Back",
  6444. image: {
  6445. source: "./media/characters/starry-aqua/back.svg"
  6446. }
  6447. },
  6448. hand: {
  6449. height: math.unit(9 * 0.1168, "feet"),
  6450. name: "Hand",
  6451. image: {
  6452. source: "./media/characters/starry-aqua/hand.svg"
  6453. }
  6454. },
  6455. foot: {
  6456. height: math.unit(9 * 0.18, "feet"),
  6457. name: "Foot",
  6458. image: {
  6459. source: "./media/characters/starry-aqua/foot.svg"
  6460. }
  6461. }
  6462. },
  6463. [
  6464. {
  6465. name: "Micro",
  6466. height: math.unit(3, "inches")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(9, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(300, "feet"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(3200, "feet")
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Luka" },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(230, "lb"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/luka/front.svg",
  6492. extra: 1,
  6493. bottom: 0.025
  6494. }
  6495. },
  6496. },
  6497. [
  6498. {
  6499. name: "Normal",
  6500. height: math.unit(12 + 8 / 12, "feet"),
  6501. default: true
  6502. },
  6503. {
  6504. name: "Minimacro",
  6505. height: math.unit(20, "feet")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(250, "feet")
  6510. },
  6511. {
  6512. name: "Megamacro",
  6513. height: math.unit(5, "miles")
  6514. },
  6515. {
  6516. name: "Gigamacro",
  6517. height: math.unit(8000, "miles")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Natalie Nightring" },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(150, "lb"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/natalie-nightring/front.svg",
  6530. extra: 1,
  6531. bottom: 0.06
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Uh Oh",
  6538. height: math.unit(0.1, "mm")
  6539. },
  6540. {
  6541. name: "Small",
  6542. height: math.unit(3, "inches")
  6543. },
  6544. {
  6545. name: "Human Scale",
  6546. height: math.unit(6, "feet")
  6547. },
  6548. {
  6549. name: "Librarian",
  6550. height: math.unit(50, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Immense",
  6555. height: math.unit(200, "miles")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Danni Rosie" },
  6561. {
  6562. front: {
  6563. height: math.unit(6, "feet"),
  6564. weight: math.unit(180, "lbs"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/danni-rosie/front.svg",
  6568. extra: 1260 / 1128,
  6569. bottom: 0.022
  6570. }
  6571. },
  6572. },
  6573. [
  6574. {
  6575. name: "Micro",
  6576. height: math.unit(2, "inches"),
  6577. default: true
  6578. },
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Samantha Kruse" },
  6583. {
  6584. front: {
  6585. height: math.unit(5 + 9 / 12, "feet"),
  6586. weight: math.unit(220, "lb"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/samantha-kruse/front.svg",
  6590. extra: (985 / 935),
  6591. bottom: 0.03
  6592. }
  6593. },
  6594. frontUndressed: {
  6595. height: math.unit(5 + 9 / 12, "feet"),
  6596. weight: math.unit(220, "lb"),
  6597. name: "Front (Undressed)",
  6598. image: {
  6599. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6600. extra: (973 / 923),
  6601. bottom: 0.025
  6602. }
  6603. },
  6604. fat: {
  6605. height: math.unit(5 + 9 / 12, "feet"),
  6606. weight: math.unit(900, "lb"),
  6607. name: "Front (Fat)",
  6608. image: {
  6609. source: "./media/characters/samantha-kruse/fat.svg",
  6610. extra: 2688 / 2561
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Normal",
  6617. height: math.unit(5 + 9 / 12, "feet"),
  6618. default: true
  6619. }
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Amelia Rosie" },
  6624. {
  6625. back: {
  6626. height: math.unit(5 + 4 / 12, "feet"),
  6627. weight: math.unit(4963, "lb"),
  6628. name: "Back",
  6629. image: {
  6630. source: "./media/characters/amelia-rosie/back.svg",
  6631. extra: 1113 / 963,
  6632. bottom: 0.01
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Level 0",
  6639. height: math.unit(5 + 4 / 12, "feet")
  6640. },
  6641. {
  6642. name: "Level 1",
  6643. height: math.unit(164597, "feet"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Level 2",
  6648. height: math.unit(956243, "miles")
  6649. },
  6650. {
  6651. name: "Level 3",
  6652. height: math.unit(29421709423, "miles")
  6653. },
  6654. {
  6655. name: "Level 4",
  6656. height: math.unit(154, "lightyears")
  6657. },
  6658. {
  6659. name: "Level 5",
  6660. height: math.unit(4738272, "lightyears")
  6661. },
  6662. {
  6663. name: "Level 6",
  6664. height: math.unit(145787152896, "lightyears")
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Rook Kitara" },
  6670. {
  6671. front: {
  6672. height: math.unit(5 + 11 / 12, "feet"),
  6673. weight: math.unit(65, "kg"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/rook-kitara/front.svg",
  6677. extra: 1347 / 1274,
  6678. bottom: 0.005
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Totally Unfair",
  6685. height: math.unit(1.8, "mm")
  6686. },
  6687. {
  6688. name: "Lap Rookie",
  6689. height: math.unit(1.4, "feet")
  6690. },
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(5 + 11 / 12, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "How Did This Happen",
  6698. height: math.unit(80, "miles")
  6699. }
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Pisces" },
  6704. {
  6705. front: {
  6706. height: math.unit(7, "feet"),
  6707. weight: math.unit(300, "lb"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/pisces/front.svg",
  6711. extra: 2255 / 2115,
  6712. bottom: 0.03
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(7, "feet"),
  6717. weight: math.unit(300, "lb"),
  6718. name: "Back",
  6719. image: {
  6720. source: "./media/characters/pisces/back.svg",
  6721. extra: 2146 / 2055,
  6722. bottom: 0.04
  6723. }
  6724. },
  6725. },
  6726. [
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(7, "feet"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Swimming Pool",
  6734. height: math.unit(12.2, "meters")
  6735. },
  6736. {
  6737. name: "Olympic Swimming Pool",
  6738. height: math.unit(56.3, "meters")
  6739. },
  6740. {
  6741. name: "Lake Superior",
  6742. height: math.unit(93900, "meters")
  6743. },
  6744. {
  6745. name: "Mediterranean Sea",
  6746. height: math.unit(644457, "meters")
  6747. },
  6748. {
  6749. name: "World's Oceans",
  6750. height: math.unit(4567491, "meters")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Zelas" },
  6756. {
  6757. front: {
  6758. height: math.unit(2.3, "meters"),
  6759. weight: math.unit(120, "kg"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/zelas/front.svg"
  6763. }
  6764. },
  6765. side: {
  6766. height: math.unit(2.3, "meters"),
  6767. weight: math.unit(120, "kg"),
  6768. name: "Side",
  6769. image: {
  6770. source: "./media/characters/zelas/side.svg"
  6771. }
  6772. },
  6773. back: {
  6774. height: math.unit(2.3, "meters"),
  6775. weight: math.unit(120, "kg"),
  6776. name: "Back",
  6777. image: {
  6778. source: "./media/characters/zelas/back.svg"
  6779. }
  6780. },
  6781. foot: {
  6782. height: math.unit(1.116, "feet"),
  6783. name: "Foot",
  6784. image: {
  6785. source: "./media/characters/zelas/foot.svg"
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(2.3, "meters")
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(30, "meters"),
  6797. default: true
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Talbot" },
  6803. {
  6804. front: {
  6805. height: math.unit(1, "inch"),
  6806. weight: math.unit(0.21, "grams"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/talbot/front.svg",
  6810. extra: 594 / 544
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Micro",
  6817. height: math.unit(1, "inch"),
  6818. default: true
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Fliss" },
  6824. {
  6825. front: {
  6826. height: math.unit(3 + 3 / 12, "feet"),
  6827. weight: math.unit(51.8, "lb"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/fliss/front.svg",
  6831. extra: 840 / 640
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Teeny Tiny",
  6838. height: math.unit(1, "mm")
  6839. },
  6840. {
  6841. name: "Small",
  6842. height: math.unit(1, "inch"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Standard Sylveon",
  6847. height: math.unit(3 + 3 / 12, "feet")
  6848. },
  6849. {
  6850. name: "Large Nuisance",
  6851. height: math.unit(33, "feet")
  6852. },
  6853. {
  6854. name: "City Filler",
  6855. height: math.unit(3000, "feet")
  6856. },
  6857. {
  6858. name: "New Horizon",
  6859. height: math.unit(6000, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Fleta" },
  6865. {
  6866. front: {
  6867. height: math.unit(5, "cm"),
  6868. weight: math.unit(1.94, "g"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/fleta/front.svg",
  6872. extra: 835 / 803
  6873. }
  6874. },
  6875. back: {
  6876. height: math.unit(5, "cm"),
  6877. weight: math.unit(1.94, "g"),
  6878. name: "Back",
  6879. image: {
  6880. source: "./media/characters/fleta/back.svg",
  6881. extra: 835 / 803
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Micro",
  6888. height: math.unit(5, "cm"),
  6889. default: true
  6890. },
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Dominic" },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(225, "lb"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/dominic/front.svg",
  6902. extra: 1770 / 1620,
  6903. bottom: 0.025
  6904. }
  6905. },
  6906. back: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(225, "lb"),
  6909. name: "Back",
  6910. image: {
  6911. source: "./media/characters/dominic/back.svg",
  6912. extra: 1745 / 1620,
  6913. bottom: 0.065
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Nano",
  6920. height: math.unit(0.1, "mm")
  6921. },
  6922. {
  6923. name: "Micro-",
  6924. height: math.unit(1, "mm")
  6925. },
  6926. {
  6927. name: "Micro",
  6928. height: math.unit(4, "inches")
  6929. },
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(6 + 4 / 12, "feet"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(115, "feet")
  6938. },
  6939. {
  6940. name: "Macro+",
  6941. height: math.unit(955, "feet")
  6942. },
  6943. {
  6944. name: "Megamacro",
  6945. height: math.unit(8990, "feet")
  6946. },
  6947. {
  6948. name: "Gigmacro",
  6949. height: math.unit(9310, "miles")
  6950. },
  6951. {
  6952. name: "Teramacro",
  6953. height: math.unit(1567005010, "miles")
  6954. },
  6955. {
  6956. name: "Examacro",
  6957. height: math.unit(1425, "parsecs")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Major Colonel" },
  6963. {
  6964. front: {
  6965. height: math.unit(400, "feet"),
  6966. weight: math.unit(44444444, "lb"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/major-colonel/front.svg"
  6970. }
  6971. },
  6972. back: {
  6973. height: math.unit(400, "feet"),
  6974. weight: math.unit(44444444, "lb"),
  6975. name: "Back",
  6976. image: {
  6977. source: "./media/characters/major-colonel/back.svg"
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Macro",
  6984. height: math.unit(400, "feet"),
  6985. default: true
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Axel Lycan" },
  6991. {
  6992. front: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(120, "lb"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/axel-lycan/front.svg",
  6998. extra: 1,
  6999. bottom: 0.08
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Macro",
  7006. height: math.unit(1, "km"),
  7007. default: true
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Vanrel (Hyena)" },
  7013. {
  7014. front: {
  7015. height: math.unit(5 + 9 / 12, "feet"),
  7016. weight: math.unit(175, "lb"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/vanrel-hyena/front.svg",
  7020. extra: 1086 / 1010,
  7021. bottom: 0.04
  7022. }
  7023. },
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(5 + 9 / 12, "feet"),
  7029. default: true
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Abbott Absol" },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(103, "lb"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/abbott-absol/front.svg",
  7042. extra: 2010 / 1842
  7043. }
  7044. },
  7045. },
  7046. [
  7047. {
  7048. name: "Megamicro",
  7049. height: math.unit(0.1, "mm")
  7050. },
  7051. {
  7052. name: "Micro",
  7053. height: math.unit(1, "inch")
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(6, "feet"),
  7058. default: true
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Hector" },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(264, "lb"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/hector/front.svg",
  7071. extra: 2280 / 2130,
  7072. bottom: 0.07
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Normal",
  7079. height: math.unit(12.25, "foot"),
  7080. default: true
  7081. },
  7082. {
  7083. name: "Macro",
  7084. height: math.unit(160, "feet")
  7085. },
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Sal" },
  7090. {
  7091. front: {
  7092. height: math.unit(6, "feet"),
  7093. weight: math.unit(150, "lb"),
  7094. name: "Front",
  7095. image: {
  7096. source: "./media/characters/sal/front.svg",
  7097. extra: 1846 / 1699,
  7098. bottom: 0.04
  7099. }
  7100. },
  7101. },
  7102. [
  7103. {
  7104. name: "Megamacro",
  7105. height: math.unit(10, "miles"),
  7106. default: true
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Ranger" },
  7112. {
  7113. front: {
  7114. height: math.unit(3, "meters"),
  7115. weight: math.unit(450, "kg"),
  7116. name: "front",
  7117. image: {
  7118. source: "./media/characters/ranger/front.svg",
  7119. extra: 2401 / 2243,
  7120. bottom: 0.05
  7121. }
  7122. },
  7123. },
  7124. [
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(3, "meters"),
  7128. default: true
  7129. },
  7130. ]
  7131. ))
  7132. characterMakers.push(() => makeCharacter(
  7133. { name: "Theresa" },
  7134. {
  7135. front: {
  7136. height: math.unit(14, "feet"),
  7137. weight: math.unit(800, "kg"),
  7138. name: "Front",
  7139. image: {
  7140. source: "./media/characters/theresa/front.svg",
  7141. extra: 3575 / 3346,
  7142. bottom: 0.03
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(14, "feet"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Ine" },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(3, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/ine/front.svg",
  7163. extra: 678 / 539,
  7164. bottom: 0.023
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(2.265, "feet"),
  7172. default: true
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Vial" },
  7178. {
  7179. front: {
  7180. height: math.unit(5, "feet"),
  7181. weight: math.unit(30, "kg"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/vial/front.svg",
  7185. extra: 1365 / 1277,
  7186. bottom: 0.04
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(5, "feet"),
  7194. default: true
  7195. },
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Rovoska" },
  7200. {
  7201. side: {
  7202. height: math.unit(3.4, "meters"),
  7203. weight: math.unit(1000, "lb"),
  7204. name: "Side",
  7205. image: {
  7206. source: "./media/characters/rovoska/side.svg",
  7207. extra: 4403 / 1515
  7208. }
  7209. },
  7210. },
  7211. [
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(3.4, "meters"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Gunner Rotthbauer" },
  7221. {
  7222. front: {
  7223. height: math.unit(8, "feet"),
  7224. weight: math.unit(315, "lb"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/gunner-rotthbauer/front.svg"
  7228. }
  7229. },
  7230. back: {
  7231. height: math.unit(8, "feet"),
  7232. weight: math.unit(315, "lb"),
  7233. name: "Back",
  7234. image: {
  7235. source: "./media/characters/gunner-rotthbauer/back.svg"
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Micro",
  7242. height: math.unit(3.5, "inches")
  7243. },
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(8, "feet"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Macro",
  7251. height: math.unit(250, "feet")
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(1, "AU")
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Allatia" },
  7261. {
  7262. front: {
  7263. height: math.unit(5 + 5 / 12, "feet"),
  7264. weight: math.unit(140, "lb"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/allatia/front.svg",
  7268. extra: 1227 / 1180,
  7269. bottom: 0.027
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(5 + 5 / 12, "feet")
  7277. },
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(250, "feet"),
  7281. default: true
  7282. },
  7283. {
  7284. name: "Megamacro",
  7285. height: math.unit(8, "miles")
  7286. }
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Tene" },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lb"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/tene/front.svg",
  7298. extra: 1728 / 1578,
  7299. bottom: 0.022
  7300. }
  7301. },
  7302. stomping: {
  7303. height: math.unit(2.025, "meters"),
  7304. weight: math.unit(120, "lb"),
  7305. name: "Stomping",
  7306. image: {
  7307. source: "./media/characters/tene/stomping.svg",
  7308. extra: 938 / 873,
  7309. bottom: 0.01
  7310. }
  7311. },
  7312. sitting: {
  7313. height: math.unit(1, "meter"),
  7314. weight: math.unit(120, "lb"),
  7315. name: "Sitting",
  7316. image: {
  7317. source: "./media/characters/tene/sitting.svg",
  7318. extra: 437 / 415,
  7319. bottom: 0.1
  7320. }
  7321. },
  7322. feral: {
  7323. height: math.unit(3.9, "feet"),
  7324. weight: math.unit(250, "lb"),
  7325. name: "Feral",
  7326. image: {
  7327. source: "./media/characters/tene/feral.svg",
  7328. extra: 717 / 458,
  7329. bottom: 0.179
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(6, "feet")
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(300, "feet"),
  7341. default: true
  7342. },
  7343. {
  7344. name: "Megamacro",
  7345. height: math.unit(5, "miles")
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Evander" },
  7351. {
  7352. side: {
  7353. height: math.unit(6, "feet"),
  7354. name: "Side",
  7355. image: {
  7356. source: "./media/characters/evander/side.svg",
  7357. extra: 877 / 477
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(0.83, "meters"),
  7365. default: true
  7366. },
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7371. {
  7372. front: {
  7373. height: math.unit(12, "feet"),
  7374. weight: math.unit(1000, "lb"),
  7375. name: "Front",
  7376. image: {
  7377. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7378. extra: 1762 / 1611
  7379. }
  7380. },
  7381. back: {
  7382. height: math.unit(12, "feet"),
  7383. weight: math.unit(1000, "lb"),
  7384. name: "Back",
  7385. image: {
  7386. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7387. extra: 1762 / 1611
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Normal",
  7394. height: math.unit(12, "feet"),
  7395. default: true
  7396. },
  7397. {
  7398. name: "Kaiju",
  7399. height: math.unit(150, "feet")
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Zero Alurus" },
  7405. {
  7406. front: {
  7407. height: math.unit(6, "feet"),
  7408. weight: math.unit(150, "lb"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/zero-alurus/front.svg"
  7412. }
  7413. },
  7414. back: {
  7415. height: math.unit(6, "feet"),
  7416. weight: math.unit(150, "lb"),
  7417. name: "Back",
  7418. image: {
  7419. source: "./media/characters/zero-alurus/back.svg"
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(5 + 10 / 12, "feet")
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(60, "feet"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Macro+",
  7435. height: math.unit(450, "feet")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Mega Shi" },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(200, "lb"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/mega-shi/front.svg",
  7448. extra: 1279 / 1250,
  7449. bottom: 0.02
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(200, "lb"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/mega-shi/back.svg",
  7458. extra: 1279 / 1250,
  7459. bottom: 0.02
  7460. }
  7461. },
  7462. },
  7463. [
  7464. {
  7465. name: "Micro",
  7466. height: math.unit(16 + 6 / 12, "feet")
  7467. },
  7468. {
  7469. name: "Third Dimension",
  7470. height: math.unit(40, "meters")
  7471. },
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(660, "feet"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Megamacro",
  7479. height: math.unit(10, "miles")
  7480. },
  7481. {
  7482. name: "Planetary Launch",
  7483. height: math.unit(500, "miles")
  7484. },
  7485. {
  7486. name: "Interstellar",
  7487. height: math.unit(1e9, "miles")
  7488. },
  7489. {
  7490. name: "Leaving the Universe",
  7491. height: math.unit(1, "gigaparsec")
  7492. },
  7493. {
  7494. name: "Travelling Universes",
  7495. height: math.unit(30e15, "parsecs")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Odyssey" },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(150, "lb"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/odyssey/front.svg",
  7508. extra: 1782 / 1582,
  7509. bottom: 0.01
  7510. }
  7511. },
  7512. side: {
  7513. height: math.unit(5.7, "feet"),
  7514. weight: math.unit(140, "lb"),
  7515. name: "Side",
  7516. image: {
  7517. source: "./media/characters/odyssey/side.svg",
  7518. extra: 6462 / 5700
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(5 + 4 / 12, "feet")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(1, "km")
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(3000, "km")
  7534. },
  7535. {
  7536. name: "Gigamacro",
  7537. height: math.unit(1, "AU"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Omniversal",
  7542. height: math.unit(100e14, "lightyears")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Mekuto" },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(300, "lb"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/mekuto/front.svg",
  7555. extra: 921 / 832,
  7556. bottom: 0.03
  7557. }
  7558. },
  7559. hand: {
  7560. height: math.unit(6 / 10.24, "feet"),
  7561. name: "Hand",
  7562. image: {
  7563. source: "./media/characters/mekuto/hand.svg"
  7564. }
  7565. },
  7566. foot: {
  7567. height: math.unit(6 / 5.05, "feet"),
  7568. name: "Foot",
  7569. image: {
  7570. source: "./media/characters/mekuto/foot.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Minimicro",
  7577. height: math.unit(0.2, "inches")
  7578. },
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(1.5, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5 + 11 / 12, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Minimacro",
  7590. height: math.unit(17 + 9 / 12, "feet")
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(177.5, "feet")
  7595. },
  7596. {
  7597. name: "Megamacro",
  7598. height: math.unit(152, "miles")
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Dafydd Tomos" },
  7604. {
  7605. front: {
  7606. height: math.unit(6.5, "inches"),
  7607. weight: math.unit(13, "oz"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/dafydd-tomos/front.svg",
  7611. extra: 2990 / 2603,
  7612. bottom: 0.03
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Micro",
  7619. height: math.unit(6.5, "inches"),
  7620. default: true
  7621. },
  7622. ]
  7623. ))
  7624. characterMakers.push(() => makeCharacter(
  7625. { name: "Splinter" },
  7626. {
  7627. front: {
  7628. height: math.unit(6, "feet"),
  7629. weight: math.unit(150, "lb"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/splinter/front.svg",
  7633. extra: 2990 / 2882,
  7634. bottom: 0.04
  7635. }
  7636. },
  7637. back: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(150, "lb"),
  7640. name: "Back",
  7641. image: {
  7642. source: "./media/characters/splinter/back.svg",
  7643. extra: 2990 / 2882,
  7644. bottom: 0.04
  7645. }
  7646. },
  7647. },
  7648. [
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(6, "feet")
  7652. },
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(230, "meters"),
  7656. default: true
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "SnowGabumon" },
  7662. {
  7663. front: {
  7664. height: math.unit(4 + 10 / 12, "feet"),
  7665. weight: math.unit(480, "lb"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/snow-gabumon/front.svg",
  7669. extra: 1140 / 963,
  7670. bottom: 0.058
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(4 + 10 / 12, "feet"),
  7675. weight: math.unit(480, "lb"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/snow-gabumon/back.svg",
  7679. extra: 1115 / 962,
  7680. bottom: 0.041
  7681. }
  7682. },
  7683. frontUndresed: {
  7684. height: math.unit(4 + 10 / 12, "feet"),
  7685. weight: math.unit(480, "lb"),
  7686. name: "Front (Undressed)",
  7687. image: {
  7688. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7689. extra: 1061 / 960,
  7690. bottom: 0.045
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(1, "inch")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(4 + 10 / 12, "feet"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(200, "feet")
  7707. },
  7708. {
  7709. name: "Megamacro",
  7710. height: math.unit(120, "miles")
  7711. },
  7712. {
  7713. name: "Gigamacro",
  7714. height: math.unit(9800, "miles")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Moody" },
  7720. {
  7721. front: {
  7722. height: math.unit(1.7, "meters"),
  7723. weight: math.unit(140, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/moody/front.svg",
  7727. extra: 3226 / 3007,
  7728. bottom: 0.087
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Micro",
  7735. height: math.unit(1, "mm")
  7736. },
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(1.7, "meters"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(80, "meters")
  7745. },
  7746. {
  7747. name: "Macro+",
  7748. height: math.unit(500, "meters")
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Zyas" },
  7754. {
  7755. front: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(150, "lb"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/zyas/front.svg",
  7761. extra: 1180 / 1120,
  7762. bottom: 0.045
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Normal",
  7769. height: math.unit(10, "feet"),
  7770. default: true
  7771. },
  7772. {
  7773. name: "Macro",
  7774. height: math.unit(500, "feet")
  7775. },
  7776. {
  7777. name: "Megamacro",
  7778. height: math.unit(5, "miles")
  7779. },
  7780. {
  7781. name: "Teramacro",
  7782. height: math.unit(150000, "miles")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Cuon" },
  7788. {
  7789. front: {
  7790. height: math.unit(6, "feet"),
  7791. weight: math.unit(150, "lb"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/cuon/front.svg",
  7795. extra: 1390 / 1320,
  7796. bottom: 0.008
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Micro",
  7803. height: math.unit(3, "inches")
  7804. },
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(18 + 9 / 12, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(360, "feet")
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(360, "miles")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Nyanuxk" },
  7822. {
  7823. front: {
  7824. height: math.unit(2.4, "meters"),
  7825. weight: math.unit(70, "kg"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/nyanuxk/front.svg",
  7829. extra: 1172 / 1084,
  7830. bottom: 0.065
  7831. }
  7832. },
  7833. side: {
  7834. height: math.unit(2.4, "meters"),
  7835. weight: math.unit(70, "kg"),
  7836. name: "Side",
  7837. image: {
  7838. source: "./media/characters/nyanuxk/side.svg",
  7839. extra: 1190 / 1132,
  7840. bottom: 0.007
  7841. }
  7842. },
  7843. back: {
  7844. height: math.unit(2.4, "meters"),
  7845. weight: math.unit(70, "kg"),
  7846. name: "Back",
  7847. image: {
  7848. source: "./media/characters/nyanuxk/back.svg",
  7849. extra: 1200 / 1141,
  7850. bottom: 0.015
  7851. }
  7852. },
  7853. foot: {
  7854. height: math.unit(0.52, "meters"),
  7855. name: "Foot",
  7856. image: {
  7857. source: "./media/characters/nyanuxk/foot.svg"
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Micro",
  7864. height: math.unit(2, "cm")
  7865. },
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(2.4, "meters"),
  7869. default: true
  7870. },
  7871. {
  7872. name: "Smaller Macro",
  7873. height: math.unit(120, "meters")
  7874. },
  7875. {
  7876. name: "Bigger Macro",
  7877. height: math.unit(1.2, "km")
  7878. },
  7879. {
  7880. name: "Megamacro",
  7881. height: math.unit(15, "kilometers")
  7882. },
  7883. {
  7884. name: "Gigamacro",
  7885. height: math.unit(2000, "km")
  7886. },
  7887. {
  7888. name: "Teramacro",
  7889. height: math.unit(500000, "km")
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Ailbhe" },
  7895. {
  7896. side: {
  7897. height: math.unit(6, "feet"),
  7898. name: "Side",
  7899. image: {
  7900. source: "./media/characters/ailbhe/side.svg",
  7901. extra: 757 / 464,
  7902. bottom: 0.041
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(1.07, "meters"),
  7910. default: true
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Zevulfius" },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(120, "kg"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/zevulfius/front.svg",
  7923. extra: 965 / 903
  7924. }
  7925. },
  7926. side: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(120, "kg"),
  7929. name: "Side",
  7930. image: {
  7931. source: "./media/characters/zevulfius/side.svg",
  7932. extra: 939 / 900
  7933. }
  7934. },
  7935. back: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(120, "kg"),
  7938. name: "Back",
  7939. image: {
  7940. source: "./media/characters/zevulfius/back.svg",
  7941. extra: 918 / 854,
  7942. bottom: 0.005
  7943. }
  7944. },
  7945. foot: {
  7946. height: math.unit(6 / 3.72, "feet"),
  7947. name: "Foot",
  7948. image: {
  7949. source: "./media/characters/zevulfius/foot.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(750, "meters")
  7957. },
  7958. {
  7959. name: "Megamacro",
  7960. height: math.unit(20, "km"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Gigamacro",
  7965. height: math.unit(2000, "km")
  7966. },
  7967. {
  7968. name: "Teramacro",
  7969. height: math.unit(250000, "km")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Rikes" },
  7975. {
  7976. front: {
  7977. height: math.unit(100, "feet"),
  7978. weight: math.unit(350, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/rikes/front.svg",
  7982. extra: 1565 / 1483,
  7983. bottom: 0.017
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Macro",
  7990. height: math.unit(100, "feet"),
  7991. default: true
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Adam Silver-Mane" },
  7997. {
  7998. anthro: {
  7999. height: math.unit(8, "feet"),
  8000. weight: math.unit(120, "kg"),
  8001. name: "Anthro",
  8002. image: {
  8003. source: "./media/characters/adam-silver-mane/anthro.svg",
  8004. extra: 5743 / 5339,
  8005. bottom: 0.07
  8006. }
  8007. },
  8008. taur: {
  8009. height: math.unit(16, "feet"),
  8010. weight: math.unit(1500, "kg"),
  8011. name: "Taur",
  8012. image: {
  8013. source: "./media/characters/adam-silver-mane/taur.svg",
  8014. extra: 1713 / 1571,
  8015. bottom: 0.01
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(8, "feet")
  8023. },
  8024. {
  8025. name: "Minimacro",
  8026. height: math.unit(80, "feet")
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(800, "feet"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Megamacro",
  8035. height: math.unit(8000, "feet")
  8036. },
  8037. {
  8038. name: "Gigamacro",
  8039. height: math.unit(800, "miles")
  8040. },
  8041. {
  8042. name: "Teramacro",
  8043. height: math.unit(80000, "miles")
  8044. },
  8045. {
  8046. name: "Celestial",
  8047. height: math.unit(8e6, "miles")
  8048. },
  8049. {
  8050. name: "Star Dragon",
  8051. height: math.unit(800000, "parsecs")
  8052. },
  8053. {
  8054. name: "Godly",
  8055. height: math.unit(800, "teraparsecs")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Ky'owin" },
  8061. {
  8062. front: {
  8063. height: math.unit(6, "feet"),
  8064. weight: math.unit(150, "lb"),
  8065. name: "Front",
  8066. image: {
  8067. source: "./media/characters/ky'owin/front.svg",
  8068. extra: 3888 / 3068,
  8069. bottom: 0.015
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(6 + 8 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Large",
  8080. height: math.unit(68, "feet")
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(132, "feet")
  8085. },
  8086. {
  8087. name: "Macro+",
  8088. height: math.unit(340, "feet")
  8089. },
  8090. {
  8091. name: "Macro++",
  8092. height: math.unit(680, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Megamacro",
  8097. height: math.unit(1, "mile")
  8098. },
  8099. {
  8100. name: "Megamacro+",
  8101. height: math.unit(10, "miles")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Mal" },
  8107. {
  8108. front: {
  8109. height: math.unit(4, "feet"),
  8110. weight: math.unit(50, "lb"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/mal/front.svg",
  8114. extra: 785 / 724,
  8115. bottom: 0.07
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(4, "inches")
  8123. },
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(4, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(200, "feet")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Jordan Deware" },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(150, "lb"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/jordan-deware/front.svg",
  8144. extra: 1191 / 1012
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Nano",
  8151. height: math.unit(0.01, "mm")
  8152. },
  8153. {
  8154. name: "Minimicro",
  8155. height: math.unit(1, "mm")
  8156. },
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(0.5, "inches")
  8160. },
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(4, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Minimacro",
  8168. height: math.unit(40, "meters")
  8169. },
  8170. {
  8171. name: "Small Macro",
  8172. height: math.unit(400, "meters")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(4, "miles")
  8177. },
  8178. {
  8179. name: "Megamacro",
  8180. height: math.unit(40, "miles")
  8181. },
  8182. {
  8183. name: "Megamacro+",
  8184. height: math.unit(400, "miles")
  8185. },
  8186. {
  8187. name: "Gigamacro",
  8188. height: math.unit(400000, "miles")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Kimiko" },
  8194. {
  8195. side: {
  8196. height: math.unit(6, "feet"),
  8197. weight: math.unit(150, "lb"),
  8198. name: "Side",
  8199. image: {
  8200. source: "./media/characters/kimiko/side.svg",
  8201. extra: 600 / 358
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(15, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(220, "feet")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(1450, "feet")
  8218. },
  8219. {
  8220. name: "Megamacro",
  8221. height: math.unit(11500, "feet")
  8222. },
  8223. {
  8224. name: "Gigamacro",
  8225. height: math.unit(9500, "miles")
  8226. },
  8227. {
  8228. name: "Teramacro",
  8229. height: math.unit(2208005005, "miles")
  8230. },
  8231. {
  8232. name: "Examacro",
  8233. height: math.unit(2750, "parsecs")
  8234. },
  8235. {
  8236. name: "Zettamacro",
  8237. height: math.unit(101500, "parsecs")
  8238. },
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Andrew Sleepy" },
  8243. {
  8244. front: {
  8245. height: math.unit(6, "feet"),
  8246. weight: math.unit(70, "kg"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/andrew-sleepy/front.svg"
  8250. }
  8251. },
  8252. side: {
  8253. height: math.unit(6, "feet"),
  8254. weight: math.unit(70, "kg"),
  8255. name: "Side",
  8256. image: {
  8257. source: "./media/characters/andrew-sleepy/side.svg"
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Micro",
  8264. height: math.unit(1, "mm"),
  8265. default: true
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Judio" },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(150, "lb"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/judio/front.svg",
  8278. extra: 1258 / 1110
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Normal",
  8285. height: math.unit(5 + 6 / 12, "feet")
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(1000, "feet"),
  8290. default: true
  8291. },
  8292. {
  8293. name: "Megamacro",
  8294. height: math.unit(10, "miles")
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Nomaxice" },
  8300. {
  8301. front: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(68, "kg"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/nomaxice/front.svg",
  8307. extra: 1498 / 1073,
  8308. bottom: 0.075
  8309. }
  8310. },
  8311. foot: {
  8312. height: math.unit(1.1, "feet"),
  8313. name: "Foot",
  8314. image: {
  8315. source: "./media/characters/nomaxice/foot.svg"
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Micro",
  8322. height: math.unit(8, "cm")
  8323. },
  8324. {
  8325. name: "Norm",
  8326. height: math.unit(1.82, "m")
  8327. },
  8328. {
  8329. name: "Norm+",
  8330. height: math.unit(8.8, "feet")
  8331. },
  8332. {
  8333. name: "Big",
  8334. height: math.unit(8, "meters"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(18, "meters")
  8340. },
  8341. {
  8342. name: "Macro+",
  8343. height: math.unit(88, "meters")
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Dydros" },
  8349. {
  8350. front: {
  8351. height: math.unit(12, "feet"),
  8352. weight: math.unit(1.5, "tons"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/dydros/front.svg",
  8356. extra: 863 / 800,
  8357. bottom: 0.015
  8358. }
  8359. },
  8360. back: {
  8361. height: math.unit(12, "feet"),
  8362. weight: math.unit(1.5, "tons"),
  8363. name: "Back",
  8364. image: {
  8365. source: "./media/characters/dydros/back.svg",
  8366. extra: 900 / 843,
  8367. bottom: 0.005
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(12, "feet"),
  8375. default: true
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Riggi" },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(100, "kg"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/riggi/front.svg",
  8388. extra: 5787 / 5303
  8389. }
  8390. },
  8391. hyper: {
  8392. height: math.unit(6 * 5 / 3, "feet"),
  8393. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8394. name: "Hyper",
  8395. image: {
  8396. source: "./media/characters/riggi/hyper.svg",
  8397. extra: 3595 / 3485
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Small Macro",
  8404. height: math.unit(50, "feet")
  8405. },
  8406. {
  8407. name: "Default",
  8408. height: math.unit(200, "feet"),
  8409. default: true
  8410. },
  8411. {
  8412. name: "Loom",
  8413. height: math.unit(10000, "feet")
  8414. },
  8415. {
  8416. name: "Cruising Altitude",
  8417. height: math.unit(30000, "feet")
  8418. },
  8419. {
  8420. name: "Megamacro",
  8421. height: math.unit(100, "miles")
  8422. },
  8423. {
  8424. name: "Continent Sized",
  8425. height: math.unit(2800, "miles")
  8426. },
  8427. {
  8428. name: "Earth Sized",
  8429. height: math.unit(8000, "miles")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Alexi" },
  8435. {
  8436. front: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(250, "lb"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/alexi/front.svg",
  8442. extra: 3483 / 3291,
  8443. bottom: 0.04
  8444. }
  8445. },
  8446. back: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(250, "lb"),
  8449. name: "Back",
  8450. image: {
  8451. source: "./media/characters/alexi/back.svg",
  8452. extra: 3533 / 3356,
  8453. bottom: 0.021
  8454. }
  8455. },
  8456. frontTransformed: {
  8457. height: math.unit(12.5, "feet"),
  8458. weight: math.unit(4000, "lb"),
  8459. name: "Front (Transformed)",
  8460. image: {
  8461. source: "./media/characters/alexi/front-transformed.svg",
  8462. extra: 5345 / 5100,
  8463. bottom: 0.03
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(3, "meters"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Minimacro",
  8475. height: math.unit(30, "meters")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(500, "meters")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(9000, "km")
  8484. },
  8485. {
  8486. name: "Teramacro",
  8487. height: math.unit(384000, "km")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Kayroo" },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(150, "lb"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/kayroo/front.svg",
  8500. extra: 1153 / 1038,
  8501. bottom: 0.06
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(150, "lb"),
  8507. name: "Foot",
  8508. image: {
  8509. source: "./media/characters/kayroo/foot.svg"
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(8, "feet"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Minimacro",
  8521. height: math.unit(250, "feet")
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(2800, "feet")
  8526. },
  8527. {
  8528. name: "Megamacro",
  8529. height: math.unit(5200, "feet")
  8530. },
  8531. {
  8532. name: "Gigamacro",
  8533. height: math.unit(27000, "feet")
  8534. },
  8535. {
  8536. name: "Omega",
  8537. height: math.unit(45000, "feet")
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Rhys" },
  8543. {
  8544. front: {
  8545. height: math.unit(18, "feet"),
  8546. weight: math.unit(5800, "lb"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/rhys/front.svg",
  8550. extra: 3386 / 3090,
  8551. bottom: 0.07
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(18, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Working Size",
  8563. height: math.unit(200, "feet")
  8564. },
  8565. {
  8566. name: "Demolition Size",
  8567. height: math.unit(2000, "feet")
  8568. },
  8569. {
  8570. name: "Maximum Licensed Size",
  8571. height: math.unit(5, "miles")
  8572. },
  8573. {
  8574. name: "Maximum Observed Size",
  8575. height: math.unit(10, "yottameters")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Toto" },
  8581. {
  8582. front: {
  8583. height: math.unit(6, "feet"),
  8584. weight: math.unit(250, "lb"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/toto/front.svg",
  8588. extra: 527 / 479,
  8589. bottom: 0.05
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Micro",
  8596. height: math.unit(3, "feet")
  8597. },
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(10, "feet")
  8601. },
  8602. {
  8603. name: "Macro",
  8604. height: math.unit(150, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Megamacro",
  8609. height: math.unit(1200, "feet")
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "King" },
  8615. {
  8616. back: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(150, "lb"),
  8619. name: "Back",
  8620. image: {
  8621. source: "./media/characters/king/back.svg"
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(2, "inches")
  8629. },
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(8, "feet")
  8633. },
  8634. {
  8635. name: "Macro",
  8636. height: math.unit(200, "feet"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Megamacro",
  8641. height: math.unit(50, "miles")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Cordite" },
  8647. {
  8648. anthro: {
  8649. height: math.unit(6 + 5 / 12, "feet"),
  8650. weight: math.unit(280, "lb"),
  8651. name: "Anthro",
  8652. image: {
  8653. source: "./media/characters/cordite/anthro.svg",
  8654. extra: 1986 / 1905,
  8655. bottom: 0.025
  8656. }
  8657. },
  8658. feral: {
  8659. height: math.unit(2, "feet"),
  8660. weight: math.unit(90, "lb"),
  8661. name: "Feral",
  8662. image: {
  8663. source: "./media/characters/cordite/feral.svg",
  8664. extra: 1260 / 755,
  8665. bottom: 0.05
  8666. }
  8667. },
  8668. },
  8669. [
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(6 + 5 / 12, "feet"),
  8673. default: true
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Pianostrong" },
  8679. {
  8680. front: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(150, "lb"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/pianostrong/front.svg",
  8686. extra: 6577 / 6254,
  8687. bottom: 0.02
  8688. }
  8689. },
  8690. side: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(150, "lb"),
  8693. name: "Side",
  8694. image: {
  8695. source: "./media/characters/pianostrong/side.svg",
  8696. extra: 6106 / 5730
  8697. }
  8698. },
  8699. back: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(150, "lb"),
  8702. name: "Back",
  8703. image: {
  8704. source: "./media/characters/pianostrong/back.svg",
  8705. extra: 6085 / 5733,
  8706. bottom: 0.01
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(100, "feet")
  8714. },
  8715. {
  8716. name: "Macro+",
  8717. height: math.unit(300, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Macro++",
  8722. height: math.unit(1000, "feet")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Kona" },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(150, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/kona/front.svg",
  8735. extra: 2960 / 2629,
  8736. bottom: 0.005
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(11 + 8 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(850, "feet"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Macro+",
  8752. height: math.unit(1.5, "km"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(80, "miles")
  8758. },
  8759. {
  8760. name: "Gigamacro",
  8761. height: math.unit(3500, "miles")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Levi" },
  8767. {
  8768. side: {
  8769. height: math.unit(1.9, "meters"),
  8770. weight: math.unit(326, "kg"),
  8771. name: "Side",
  8772. image: {
  8773. source: "./media/characters/levi/side.svg",
  8774. extra: 1704 / 1334,
  8775. bottom: 0.02
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(1.9, "meters"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(20, "meters")
  8788. },
  8789. {
  8790. name: "Macro+",
  8791. height: math.unit(200, "meters")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(2, "km")
  8796. },
  8797. {
  8798. name: "Megamacro+",
  8799. height: math.unit(20, "km")
  8800. },
  8801. {
  8802. name: "Gigamacro",
  8803. height: math.unit(2500, "km")
  8804. },
  8805. {
  8806. name: "Gigamacro+",
  8807. height: math.unit(120000, "km")
  8808. },
  8809. {
  8810. name: "Teramacro",
  8811. height: math.unit(7.77e6, "km")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "BMC" },
  8817. {
  8818. front: {
  8819. height: math.unit(6 + 4 / 12, "feet"),
  8820. weight: math.unit(188, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/bmc/front.svg",
  8824. extra: 1067 / 1022,
  8825. bottom: 0.047
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Human-sized",
  8832. height: math.unit(6 + 4 / 12, "feet")
  8833. },
  8834. {
  8835. name: "Small",
  8836. height: math.unit(250, "feet")
  8837. },
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(1250, "feet"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Good Day",
  8845. height: math.unit(88, "miles")
  8846. },
  8847. {
  8848. name: "Largest Measured Size",
  8849. height: math.unit(11.2e6, "lightyears")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Sven the Kaiju" },
  8855. {
  8856. front: {
  8857. height: math.unit(20, "feet"),
  8858. weight: math.unit(2016, "kg"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/sven-the-kaiju/front.svg",
  8862. extra: 1479 / 1449,
  8863. bottom: 0.05
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Fairy",
  8870. height: math.unit(6, "inches")
  8871. },
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(20, "feet"),
  8875. default: true
  8876. },
  8877. {
  8878. name: "Rampage",
  8879. height: math.unit(200, "feet")
  8880. },
  8881. {
  8882. name: "Archfey Forest Guardian",
  8883. height: math.unit(1, "mile")
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Marik" },
  8889. {
  8890. front: {
  8891. height: math.unit(4, "meters"),
  8892. weight: math.unit(2, "tons"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/marik/front.svg",
  8896. extra: 1057 / 1003,
  8897. bottom: 0.08
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(4, "meters"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(20, "meters")
  8910. },
  8911. {
  8912. name: "Megamacro",
  8913. height: math.unit(50, "km")
  8914. },
  8915. {
  8916. name: "Gigamacro",
  8917. height: math.unit(100, "km")
  8918. },
  8919. {
  8920. name: "Alpha Macro",
  8921. height: math.unit(7.88e7, "yottameters")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Mel" },
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(110, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/mel/front.svg",
  8934. extra: 736 / 617,
  8935. bottom: 0.017
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Pico",
  8942. height: math.unit(3, "pm")
  8943. },
  8944. {
  8945. name: "Nano",
  8946. height: math.unit(3, "nm")
  8947. },
  8948. {
  8949. name: "Micro",
  8950. height: math.unit(0.3, "mm"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Micro+",
  8955. height: math.unit(3, "mm")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(5 + 10.5 / 12, "feet")
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Lykonous" },
  8965. {
  8966. kaiju: {
  8967. height: math.unit(1.75, "meters"),
  8968. weight: math.unit(55, "kg"),
  8969. name: "Kaiju",
  8970. image: {
  8971. source: "./media/characters/lykonous/kaiju.svg",
  8972. extra: 1055 / 946,
  8973. bottom: 0.135
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(2.5, "meters"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "Kaiju Dragon",
  8985. height: math.unit(60, "meters")
  8986. },
  8987. {
  8988. name: "Mega Kaiju",
  8989. height: math.unit(120, "km")
  8990. },
  8991. {
  8992. name: "Giga Kaiju",
  8993. height: math.unit(200, "megameters")
  8994. },
  8995. {
  8996. name: "Terra Kaiju",
  8997. height: math.unit(400, "gigameters")
  8998. },
  8999. {
  9000. name: "Kaiju Dragon God",
  9001. height: math.unit(13000, "exaparsecs")
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Blü" },
  9007. {
  9008. front: {
  9009. height: math.unit(6, "feet"),
  9010. weight: math.unit(150, "lb"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/blü/front.svg",
  9014. extra: 1883 / 1564,
  9015. bottom: 0.031
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(13, "feet"),
  9023. default: true
  9024. },
  9025. {
  9026. name: "Big Boi",
  9027. height: math.unit(150, "meters")
  9028. },
  9029. {
  9030. name: "Mini Stomper",
  9031. height: math.unit(300, "meters")
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(1000, "meters")
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(11000, "meters")
  9040. },
  9041. {
  9042. name: "Gigamacro",
  9043. height: math.unit(11000, "km")
  9044. },
  9045. {
  9046. name: "Teramacro",
  9047. height: math.unit(420000, "km")
  9048. },
  9049. {
  9050. name: "Examacro",
  9051. height: math.unit(120, "parsecs")
  9052. },
  9053. {
  9054. name: "God Tho",
  9055. height: math.unit(98000000000, "parsecs")
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Scales" },
  9061. {
  9062. taurFront: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(200, "lb"),
  9065. name: "Taur (Front)",
  9066. image: {
  9067. source: "./media/characters/scales/taur-front.svg",
  9068. extra: 1,
  9069. bottom: 0.05
  9070. }
  9071. },
  9072. taurBack: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(200, "lb"),
  9075. name: "Taur (Back)",
  9076. image: {
  9077. source: "./media/characters/scales/taur-back.svg",
  9078. extra: 1,
  9079. bottom: 0.08
  9080. }
  9081. },
  9082. anthro: {
  9083. height: math.unit(6 * 7 / 12, "feet"),
  9084. weight: math.unit(100, "lb"),
  9085. name: "Anthro",
  9086. image: {
  9087. source: "./media/characters/scales/anthro.svg",
  9088. extra: 1,
  9089. bottom: 0.06
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(12, "feet"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Koragos" },
  9103. {
  9104. front: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(150, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/koragos/front.svg",
  9110. extra: 841 / 794,
  9111. bottom: 0.035
  9112. }
  9113. },
  9114. back: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(150, "lb"),
  9117. name: "Back",
  9118. image: {
  9119. source: "./media/characters/koragos/back.svg",
  9120. extra: 841 / 810,
  9121. bottom: 0.022
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(6 + 11 / 12, "feet"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(490, "feet")
  9134. },
  9135. {
  9136. name: "Megamacro",
  9137. height: math.unit(10, "miles")
  9138. },
  9139. {
  9140. name: "Gigamacro",
  9141. height: math.unit(50, "miles")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Xylrem" },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(250, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/xylrem/front.svg",
  9154. extra: 3323 / 3050,
  9155. bottom: 0.065
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Micro",
  9162. height: math.unit(4, "feet")
  9163. },
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(16, "feet"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(2720, "feet")
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(25000, "miles")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Ikideru" },
  9181. {
  9182. front: {
  9183. height: math.unit(8, "feet"),
  9184. weight: math.unit(250, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/ikideru/front.svg",
  9188. extra: 930 / 870,
  9189. bottom: 0.087
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(8, "feet"),
  9194. weight: math.unit(250, "kg"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/ikideru/back.svg",
  9198. extra: 919 / 852,
  9199. bottom: 0.055
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Rare",
  9206. height: math.unit(8, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Playful Loom",
  9211. height: math.unit(80, "feet")
  9212. },
  9213. {
  9214. name: "City Leaner",
  9215. height: math.unit(230, "feet")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(2500, "feet")
  9220. },
  9221. {
  9222. name: "Gigamacro",
  9223. height: math.unit(26400, "feet")
  9224. },
  9225. {
  9226. name: "Tectonic Shifter",
  9227. height: math.unit(1.7, "megameters")
  9228. },
  9229. {
  9230. name: "Planet Carer",
  9231. height: math.unit(21, "megameters")
  9232. },
  9233. {
  9234. name: "God",
  9235. height: math.unit(11157.22, "parsecs")
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Neo" },
  9241. {
  9242. front: {
  9243. height: math.unit(6, "feet"),
  9244. weight: math.unit(120, "lb"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/neo/front.svg"
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Micro",
  9254. height: math.unit(2, "inches"),
  9255. default: true
  9256. },
  9257. {
  9258. name: "Human Size",
  9259. height: math.unit(5 + 8 / 12, "feet")
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Chauncey (Chantz)" },
  9265. {
  9266. front: {
  9267. height: math.unit(13 + 10 / 12, "feet"),
  9268. weight: math.unit(5320, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/chauncey-chantz/front.svg",
  9272. extra: 1587 / 1435,
  9273. bottom: 0.02
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(13 + 10 / 12, "feet"),
  9281. default: true
  9282. },
  9283. {
  9284. name: "Macro",
  9285. height: math.unit(45, "feet")
  9286. },
  9287. {
  9288. name: "Megamacro",
  9289. height: math.unit(250, "miles")
  9290. },
  9291. {
  9292. name: "Planetary",
  9293. height: math.unit(10000, "miles")
  9294. },
  9295. {
  9296. name: "Galactic",
  9297. height: math.unit(40000, "parsecs")
  9298. },
  9299. {
  9300. name: "Universal",
  9301. height: math.unit(1, "yottameter")
  9302. },
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Epifox" },
  9307. {
  9308. front: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(150, "lb"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/epifox/front.svg",
  9314. extra: 1,
  9315. bottom: 0.075
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Micro",
  9322. height: math.unit(6, "inches")
  9323. },
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(12, "feet"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(3810, "feet")
  9332. },
  9333. {
  9334. name: "Megamacro",
  9335. height: math.unit(500, "miles")
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Colin T." },
  9341. {
  9342. front: {
  9343. height: math.unit(1.8796, "m"),
  9344. weight: math.unit(230, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/colin-t/front.svg",
  9348. extra: 1272 / 1193,
  9349. bottom: 0.07
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Micro",
  9356. height: math.unit(0.571, "meters")
  9357. },
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(1.8796, "meters"),
  9361. default: true
  9362. },
  9363. {
  9364. name: "Tall",
  9365. height: math.unit(4, "meters")
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(67.241, "meters")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(371.856, "meters")
  9374. },
  9375. {
  9376. name: "Planetary",
  9377. height: math.unit(12631.5689, "km")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Matvei" },
  9383. {
  9384. front: {
  9385. height: math.unit(1.85, "meters"),
  9386. weight: math.unit(80, "kg"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/matvei/front.svg",
  9390. extra: 614 / 594,
  9391. bottom: 0.01
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(1.85, "meters"),
  9399. default: true
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Quincy" },
  9405. {
  9406. front: {
  9407. height: math.unit(5 + 9 / 12, "feet"),
  9408. weight: math.unit(70, "lb"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/quincy/front.svg",
  9412. extra: 3041 / 2751
  9413. }
  9414. },
  9415. back: {
  9416. height: math.unit(5 + 9 / 12, "feet"),
  9417. weight: math.unit(70, "lb"),
  9418. name: "Back",
  9419. image: {
  9420. source: "./media/characters/quincy/back.svg",
  9421. extra: 3041 / 2751
  9422. }
  9423. },
  9424. flying: {
  9425. height: math.unit(5 + 4 / 12, "feet"),
  9426. weight: math.unit(70, "lb"),
  9427. name: "Flying",
  9428. image: {
  9429. source: "./media/characters/quincy/flying.svg",
  9430. extra: 1044 / 930
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(3, "cm")
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(5 + 9 / 12, "feet")
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(200, "meters"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(1000, "meters")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Vanrel" },
  9456. {
  9457. front: {
  9458. height: math.unit(4 + 7 / 12, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/vanrel/front.svg",
  9463. extra: 1,
  9464. bottom: 0.02
  9465. }
  9466. },
  9467. elemental: {
  9468. height: math.unit(3, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Elemental",
  9471. image: {
  9472. source: "./media/characters/vanrel/elemental.svg",
  9473. extra: 192.3/162.8,
  9474. bottom: 1.79/194.17
  9475. }
  9476. },
  9477. side: {
  9478. height: math.unit(4 + 7 / 12, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Side",
  9481. image: {
  9482. source: "./media/characters/vanrel/side.svg",
  9483. extra: 1,
  9484. bottom: 0.025
  9485. }
  9486. },
  9487. tome: {
  9488. height: math.unit(1.35, "feet"),
  9489. weight: math.unit(10, "lb"),
  9490. name: "Vanrel's Tome",
  9491. rename: true,
  9492. image: {
  9493. source: "./media/characters/vanrel/tome.svg"
  9494. }
  9495. },
  9496. beans: {
  9497. height: math.unit(0.89, "feet"),
  9498. name: "Beans",
  9499. image: {
  9500. source: "./media/characters/vanrel/beans.svg"
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Normal",
  9507. height: math.unit(4 + 7 / 12, "feet"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Kuiper Vanrel" },
  9514. {
  9515. front: {
  9516. height: math.unit(7 + 5 / 12, "feet"),
  9517. weight: math.unit(150, "lb"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/kuiper-vanrel/front.svg",
  9521. extra: 1118 / 1068,
  9522. bottom: 0.09
  9523. }
  9524. },
  9525. foot: {
  9526. height: math.unit(0.55, "meters"),
  9527. name: "Foot",
  9528. image: {
  9529. source: "./media/characters/kuiper-vanrel/foot.svg",
  9530. }
  9531. },
  9532. battle: {
  9533. height: math.unit(6.824, "feet"),
  9534. weight: math.unit(150, "lb"),
  9535. name: "Battle",
  9536. image: {
  9537. source: "./media/characters/kuiper-vanrel/battle.svg",
  9538. extra: 1466/1327,
  9539. bottom: 29/1492.5
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(7 + 5 / 12, "feet"),
  9547. default: true
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Keset Vanrel" },
  9553. {
  9554. front: {
  9555. height: math.unit(8 + 5 / 12, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/keset-vanrel/front.svg",
  9560. extra: 1150 / 1084,
  9561. bottom: 0.05
  9562. }
  9563. },
  9564. hand: {
  9565. height: math.unit(0.6, "meters"),
  9566. name: "Hand",
  9567. image: {
  9568. source: "./media/characters/keset-vanrel/hand.svg"
  9569. }
  9570. },
  9571. foot: {
  9572. height: math.unit(0.94978, "meters"),
  9573. name: "Foot",
  9574. image: {
  9575. source: "./media/characters/keset-vanrel/foot.svg"
  9576. }
  9577. },
  9578. battle: {
  9579. height: math.unit(7.408, "feet"),
  9580. weight: math.unit(150, "lb"),
  9581. name: "Battle",
  9582. image: {
  9583. source: "./media/characters/keset-vanrel/battle.svg",
  9584. extra: 1890/1386,
  9585. bottom: 73.28/1970
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(8 + 5 / 12, "feet"),
  9593. default: true
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Neos" },
  9599. {
  9600. front: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(150, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/neos/front.svg",
  9606. extra: 1696 / 992,
  9607. bottom: 0.14
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Normal",
  9614. height: math.unit(54, "cm"),
  9615. default: true
  9616. },
  9617. {
  9618. name: "Macro",
  9619. height: math.unit(100, "m")
  9620. },
  9621. {
  9622. name: "Megamacro",
  9623. height: math.unit(10, "km")
  9624. },
  9625. {
  9626. name: "Megamacro+",
  9627. height: math.unit(100, "km")
  9628. },
  9629. {
  9630. name: "Gigamacro",
  9631. height: math.unit(100, "Mm")
  9632. },
  9633. {
  9634. name: "Teramacro",
  9635. height: math.unit(100, "Gm")
  9636. },
  9637. {
  9638. name: "Examacro",
  9639. height: math.unit(100, "Em")
  9640. },
  9641. {
  9642. name: "Godly",
  9643. height: math.unit(10000, "Ym")
  9644. },
  9645. {
  9646. name: "Beyond Godly",
  9647. height: math.unit(10000000, "Ym")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Sammy Mouse" },
  9653. {
  9654. feminine: {
  9655. height: math.unit(5, "feet"),
  9656. weight: math.unit(100, "lb"),
  9657. name: "Feminine",
  9658. image: {
  9659. source: "./media/characters/sammy-mouse/feminine.svg",
  9660. extra: 2526 / 2425,
  9661. bottom: 0.123
  9662. }
  9663. },
  9664. masculine: {
  9665. height: math.unit(5, "feet"),
  9666. weight: math.unit(100, "lb"),
  9667. name: "Masculine",
  9668. image: {
  9669. source: "./media/characters/sammy-mouse/masculine.svg",
  9670. extra: 2526 / 2425,
  9671. bottom: 0.123
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(5, "inches")
  9679. },
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(5, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro",
  9687. height: math.unit(60, "feet")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Kole" },
  9693. {
  9694. front: {
  9695. height: math.unit(4, "feet"),
  9696. weight: math.unit(50, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/kole/front.svg",
  9700. extra: 1423 / 1303,
  9701. bottom: 0.025
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(4, "feet"),
  9706. weight: math.unit(50, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/kole/back.svg",
  9710. extra: 1426 / 1280,
  9711. bottom: 0.02
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(4, "feet"),
  9719. default: true
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Rufran" },
  9725. {
  9726. front: {
  9727. height: math.unit(2 + 6 / 12, "feet"),
  9728. weight: math.unit(20, "lb"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/rufran/front.svg",
  9732. extra: 2041 / 1839,
  9733. bottom: 0.055
  9734. }
  9735. },
  9736. back: {
  9737. height: math.unit(2 + 6 / 12, "feet"),
  9738. weight: math.unit(20, "lb"),
  9739. name: "Back",
  9740. image: {
  9741. source: "./media/characters/rufran/back.svg",
  9742. extra: 2054 / 1839,
  9743. bottom: 0.01
  9744. }
  9745. },
  9746. hand: {
  9747. height: math.unit(0.2166, "meters"),
  9748. name: "Hand",
  9749. image: {
  9750. source: "./media/characters/rufran/hand.svg"
  9751. }
  9752. },
  9753. foot: {
  9754. height: math.unit(0.185, "meters"),
  9755. name: "Foot",
  9756. image: {
  9757. source: "./media/characters/rufran/foot.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(1, "inch")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(2 + 6 / 12, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Big",
  9773. height: math.unit(60, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(325, "feet")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Chip" },
  9783. {
  9784. front: {
  9785. height: math.unit(0.3, "meters"),
  9786. weight: math.unit(3.5, "kg"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/chip/front.svg",
  9790. extra: 748 / 674
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Micro",
  9797. height: math.unit(1, "inch"),
  9798. default: true
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Torvid" },
  9804. {
  9805. side: {
  9806. height: math.unit(2.3, "meters"),
  9807. weight: math.unit(3500, "lb"),
  9808. name: "Side",
  9809. image: {
  9810. source: "./media/characters/torvid/side.svg",
  9811. extra: 1972 / 722,
  9812. bottom: 0.035
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Normal",
  9819. height: math.unit(2.3, "meters"),
  9820. default: true
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Susan" },
  9826. {
  9827. front: {
  9828. height: math.unit(2, "meters"),
  9829. weight: math.unit(150.5, "kg"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/susan/front.svg",
  9833. extra: 693 / 635,
  9834. bottom: 0.05
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Megamacro",
  9841. height: math.unit(505, "miles"),
  9842. default: true
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Raindrops" },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/raindrops/front.svg",
  9855. extra: 2655 / 2461,
  9856. bottom: 0.02
  9857. }
  9858. },
  9859. back: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Back",
  9863. image: {
  9864. source: "./media/characters/raindrops/back.svg",
  9865. extra: 2574 / 2400,
  9866. bottom: 0.03
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Micro",
  9873. height: math.unit(6, "inches")
  9874. },
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(6 + 2 / 12, "feet")
  9878. },
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(131, "feet"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(15, "miles")
  9887. },
  9888. {
  9889. name: "Gigamacro",
  9890. height: math.unit(4000, "miles")
  9891. },
  9892. {
  9893. name: "Teramacro",
  9894. height: math.unit(315000, "miles")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Tezwa" },
  9900. {
  9901. front: {
  9902. height: math.unit(2.794, "meters"),
  9903. weight: math.unit(325, "kg"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/tezwa/front.svg",
  9907. extra: 2083 / 1906,
  9908. bottom: 0.031
  9909. }
  9910. },
  9911. foot: {
  9912. height: math.unit(0.687, "meters"),
  9913. name: "Foot",
  9914. image: {
  9915. source: "./media/characters/tezwa/foot.svg"
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(9 + 2 / 12, "feet"),
  9923. default: true
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Typhus" },
  9929. {
  9930. front: {
  9931. height: math.unit(58, "feet"),
  9932. weight: math.unit(89000, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/typhus/front.svg",
  9936. extra: 816 / 800,
  9937. bottom: 0.065
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(58, "feet"),
  9945. default: true
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Lyra Von Wulf" },
  9951. {
  9952. front: {
  9953. height: math.unit(12, "feet"),
  9954. weight: math.unit(6, "tonnes"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/lyra-von-wulf/front.svg",
  9958. extra: 1,
  9959. bottom: 0.10
  9960. }
  9961. },
  9962. frontMecha: {
  9963. height: math.unit(12, "feet"),
  9964. weight: math.unit(12, "tonnes"),
  9965. name: "Front (Mecha)",
  9966. image: {
  9967. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9968. extra: 1,
  9969. bottom: 0.042
  9970. }
  9971. },
  9972. maw: {
  9973. height: math.unit(2.2, "feet"),
  9974. name: "Maw",
  9975. image: {
  9976. source: "./media/characters/lyra-von-wulf/maw.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(12, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Classic",
  9988. height: math.unit(50, "feet")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(500, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "mile")
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(400, "miles")
  10001. },
  10002. {
  10003. name: "Teramacro",
  10004. height: math.unit(22000, "miles")
  10005. },
  10006. {
  10007. name: "Solarmacro",
  10008. height: math.unit(8600000, "miles")
  10009. },
  10010. {
  10011. name: "Galactic",
  10012. height: math.unit(1057000, "lightyears")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Dixon" },
  10018. {
  10019. front: {
  10020. height: math.unit(6 + 10 / 12, "feet"),
  10021. weight: math.unit(150, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/dixon/front.svg",
  10025. extra: 3361 / 3209,
  10026. bottom: 0.01
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(6 + 10 / 12, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Big",
  10038. height: math.unit(12, "meters")
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(500, "meters")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(2, "km")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Kauko" },
  10052. {
  10053. front: {
  10054. height: math.unit(185, "cm"),
  10055. weight: math.unit(68, "kg"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/kauko/front.svg",
  10059. extra: 1455 / 1421,
  10060. bottom: 0.03
  10061. }
  10062. },
  10063. back: {
  10064. height: math.unit(185, "cm"),
  10065. weight: math.unit(68, "kg"),
  10066. name: "Back",
  10067. image: {
  10068. source: "./media/characters/kauko/back.svg",
  10069. extra: 1455 / 1421,
  10070. bottom: 0.004
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(185, "cm"),
  10078. default: true
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Varg" },
  10084. {
  10085. front: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "kg"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/varg/front.svg",
  10091. extra: 1108 / 1018,
  10092. bottom: 0.0375
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(5, "meters")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(200, "meters")
  10104. },
  10105. {
  10106. name: "Megamacro",
  10107. height: math.unit(20, "kilometers")
  10108. },
  10109. {
  10110. name: "True Size",
  10111. height: math.unit(211, "km"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Gigamacro",
  10116. height: math.unit(1000, "km")
  10117. },
  10118. {
  10119. name: "Gigamacro+",
  10120. height: math.unit(8000, "km")
  10121. },
  10122. {
  10123. name: "Teramacro",
  10124. height: math.unit(1000000, "km")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Dayza" },
  10130. {
  10131. front: {
  10132. height: math.unit(7 + 7 / 12, "feet"),
  10133. weight: math.unit(267, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/dayza/front.svg",
  10137. extra: 1262 / 1200,
  10138. bottom: 0.035
  10139. }
  10140. },
  10141. side: {
  10142. height: math.unit(7 + 7 / 12, "feet"),
  10143. weight: math.unit(267, "lb"),
  10144. name: "Side",
  10145. image: {
  10146. source: "./media/characters/dayza/side.svg",
  10147. extra: 1295 / 1245,
  10148. bottom: 0.05
  10149. }
  10150. },
  10151. back: {
  10152. height: math.unit(7 + 7 / 12, "feet"),
  10153. weight: math.unit(267, "lb"),
  10154. name: "Back",
  10155. image: {
  10156. source: "./media/characters/dayza/back.svg",
  10157. extra: 1241 / 1170
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(7 + 7 / 12, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(155, "feet")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Xanthos" },
  10175. {
  10176. front: {
  10177. height: math.unit(6 + 5 / 12, "feet"),
  10178. weight: math.unit(160, "lb"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/xanthos/front.svg",
  10182. extra: 1,
  10183. bottom: 0.04
  10184. }
  10185. },
  10186. back: {
  10187. height: math.unit(6 + 5 / 12, "feet"),
  10188. weight: math.unit(160, "lb"),
  10189. name: "Back",
  10190. image: {
  10191. source: "./media/characters/xanthos/back.svg",
  10192. extra: 1,
  10193. bottom: 0.03
  10194. }
  10195. },
  10196. hand: {
  10197. height: math.unit(0.928, "feet"),
  10198. name: "Hand",
  10199. image: {
  10200. source: "./media/characters/xanthos/hand.svg"
  10201. }
  10202. },
  10203. foot: {
  10204. height: math.unit(1.286, "feet"),
  10205. name: "Foot",
  10206. image: {
  10207. source: "./media/characters/xanthos/foot.svg"
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(6 + 5 / 12, "feet"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Normal+",
  10219. height: math.unit(6, "meters")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(40, "feet")
  10224. },
  10225. {
  10226. name: "Macro+",
  10227. height: math.unit(200, "meters")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(20, "km")
  10232. },
  10233. {
  10234. name: "Megamacro+",
  10235. height: math.unit(100, "km")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Grynn" },
  10241. {
  10242. front: {
  10243. height: math.unit(6 + 3 / 12, "feet"),
  10244. weight: math.unit(215, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/grynn/front.svg",
  10248. extra: 4627 / 4209,
  10249. bottom: 0.047
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(6, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(6 + 3 / 12, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Big",
  10265. height: math.unit(104, "feet")
  10266. },
  10267. {
  10268. name: "Macro",
  10269. height: math.unit(944, "feet")
  10270. },
  10271. {
  10272. name: "Macro+",
  10273. height: math.unit(9480, "feet")
  10274. },
  10275. {
  10276. name: "Megamacro",
  10277. height: math.unit(78752, "feet")
  10278. },
  10279. {
  10280. name: "Megamacro+",
  10281. height: math.unit(630128, "feet")
  10282. },
  10283. {
  10284. name: "Megamacro++",
  10285. height: math.unit(3150695, "feet")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Mocha Aura" },
  10291. {
  10292. front: {
  10293. height: math.unit(7 + 5 / 12, "feet"),
  10294. weight: math.unit(450, "lb"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/mocha-aura/front.svg",
  10298. extra: 1907 / 1817,
  10299. bottom: 0.04
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(7 + 5 / 12, "feet"),
  10304. weight: math.unit(450, "lb"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/mocha-aura/back.svg",
  10308. extra: 1900 / 1825,
  10309. bottom: 0.045
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Nano",
  10316. height: math.unit(1, "nm")
  10317. },
  10318. {
  10319. name: "Megamicro",
  10320. height: math.unit(1, "mm")
  10321. },
  10322. {
  10323. name: "Micro",
  10324. height: math.unit(3, "inches")
  10325. },
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(7 + 5 / 12, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Macro",
  10333. height: math.unit(30, "feet")
  10334. },
  10335. {
  10336. name: "Megamacro",
  10337. height: math.unit(3500, "feet")
  10338. },
  10339. {
  10340. name: "Teramacro",
  10341. height: math.unit(500000, "miles")
  10342. },
  10343. {
  10344. name: "Petamacro",
  10345. height: math.unit(50000000000000000, "parsecs")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Ilisha Devya" },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/ilisha-devya/front.svg",
  10358. extra: 1,
  10359. bottom: 0.175
  10360. }
  10361. },
  10362. back: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Back",
  10366. image: {
  10367. source: "./media/characters/ilisha-devya/back.svg",
  10368. extra: 1,
  10369. bottom: 0.015
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(500, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(10, "miles")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(100000, "miles")
  10386. },
  10387. {
  10388. name: "Examacro",
  10389. height: math.unit(1e9, "lightyears")
  10390. },
  10391. {
  10392. name: "Omniversal",
  10393. height: math.unit(1e33, "lightyears")
  10394. },
  10395. {
  10396. name: "Beyond Infinite",
  10397. height: math.unit(1e100, "lightyears")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Mira" },
  10403. {
  10404. Side: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(150, "lb"),
  10407. name: "Side",
  10408. image: {
  10409. source: "./media/characters/mira/side.svg",
  10410. extra: 900 / 799,
  10411. bottom: 0.02
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Human Size",
  10418. height: math.unit(6, "feet")
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(100, "feet"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(10, "miles")
  10428. },
  10429. {
  10430. name: "Gigamacro",
  10431. height: math.unit(25000, "miles")
  10432. },
  10433. {
  10434. name: "Teramacro",
  10435. height: math.unit(300, "AU")
  10436. },
  10437. {
  10438. name: "Full Size",
  10439. height: math.unit(4.5e10, "lightyears")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Holly" },
  10445. {
  10446. front: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/holly/front.svg",
  10452. extra: 639 / 606
  10453. }
  10454. },
  10455. back: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(150, "lb"),
  10458. name: "Back",
  10459. image: {
  10460. source: "./media/characters/holly/back.svg",
  10461. extra: 623 / 598
  10462. }
  10463. },
  10464. frontWorking: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front (Working)",
  10468. image: {
  10469. source: "./media/characters/holly/front-working.svg",
  10470. extra: 607 / 577,
  10471. bottom: 0.048
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(12 + 3 / 12, "feet"),
  10479. default: true
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Porter" },
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "lb"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/porter/front.svg",
  10492. extra: 1,
  10493. bottom: 0.01
  10494. }
  10495. },
  10496. frontRobes: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front (Robes)",
  10500. image: {
  10501. source: "./media/characters/porter/front-robes.svg",
  10502. extra: 1.01,
  10503. bottom: 0.01
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(11 + 9 / 12, "feet"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Lucy" },
  10517. {
  10518. legendary: {
  10519. height: math.unit(6, "feet"),
  10520. weight: math.unit(150, "lb"),
  10521. name: "Legendary",
  10522. image: {
  10523. source: "./media/characters/lucy/legendary.svg",
  10524. extra: 1355 / 1100,
  10525. bottom: 0.045
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Legendary",
  10532. height: math.unit(86882 * 2, "miles"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Drusilla" },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/drusilla/front.svg",
  10546. extra: 678 / 635,
  10547. bottom: 0.03
  10548. }
  10549. },
  10550. back: {
  10551. height: math.unit(6, "feet"),
  10552. weight: math.unit(150, "lb"),
  10553. name: "Back",
  10554. image: {
  10555. source: "./media/characters/drusilla/back.svg",
  10556. extra: 678 / 635,
  10557. bottom: 0.005
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(100, "feet")
  10565. },
  10566. {
  10567. name: "Canon Height",
  10568. height: math.unit(2000, "feet"),
  10569. default: true
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Renard Thatch" },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(180, "lb"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/renard-thatch/front.svg",
  10582. extra: 2411 / 2275,
  10583. bottom: 0.01
  10584. }
  10585. },
  10586. frontPosing: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(180, "lb"),
  10589. name: "Front (Posing)",
  10590. image: {
  10591. source: "./media/characters/renard-thatch/front-posing.svg",
  10592. extra: 2381 / 2261,
  10593. bottom: 0.01
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(180, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/renard-thatch/back.svg",
  10602. extra: 2428 / 2288
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(3, "inches")
  10610. },
  10611. {
  10612. name: "Default",
  10613. height: math.unit(6, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Macro",
  10618. height: math.unit(75, "feet")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Sekvra" },
  10624. {
  10625. front: {
  10626. height: math.unit(1450, "feet"),
  10627. weight: math.unit(1.21e6, "tons"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/sekvra/front.svg",
  10631. extra: 1,
  10632. bottom: 0.03
  10633. }
  10634. },
  10635. frontClothed: {
  10636. height: math.unit(1450, "feet"),
  10637. weight: math.unit(1.21e6, "tons"),
  10638. name: "Front (Clothed)",
  10639. image: {
  10640. source: "./media/characters/sekvra/front-clothed.svg",
  10641. extra: 1,
  10642. bottom: 0.03
  10643. }
  10644. },
  10645. side: {
  10646. height: math.unit(1450, "feet"),
  10647. weight: math.unit(1.21e6, "tons"),
  10648. name: "Side",
  10649. image: {
  10650. source: "./media/characters/sekvra/side.svg",
  10651. extra: 1,
  10652. bottom: 0.025
  10653. }
  10654. },
  10655. back: {
  10656. height: math.unit(1450, "feet"),
  10657. weight: math.unit(1.21e6, "tons"),
  10658. name: "Back",
  10659. image: {
  10660. source: "./media/characters/sekvra/back.svg",
  10661. extra: 1,
  10662. bottom: 0.005
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(1450, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(15000, "feet")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Carmine" },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(150, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/carmine/front.svg",
  10687. extra: 1,
  10688. bottom: 0.035
  10689. }
  10690. },
  10691. frontArmor: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(150, "lb"),
  10694. name: "Front (Armor)",
  10695. image: {
  10696. source: "./media/characters/carmine/front-armor.svg",
  10697. extra: 1,
  10698. bottom: 0.035
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Large",
  10705. height: math.unit(1, "mile")
  10706. },
  10707. {
  10708. name: "Huge",
  10709. height: math.unit(40, "miles"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Colossal",
  10714. height: math.unit(2500, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Elyssia" },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/elyssia/front.svg",
  10727. extra: 2201 / 2035,
  10728. bottom: 0.05
  10729. }
  10730. },
  10731. frontClothed: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Front (Clothed)",
  10735. image: {
  10736. source: "./media/characters/elyssia/front-clothed.svg",
  10737. extra: 2201 / 2035,
  10738. bottom: 0.05
  10739. }
  10740. },
  10741. back: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Back",
  10745. image: {
  10746. source: "./media/characters/elyssia/back.svg",
  10747. extra: 2201 / 2035,
  10748. bottom: 0.013
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Smaller",
  10755. height: math.unit(150, "feet")
  10756. },
  10757. {
  10758. name: "Standard",
  10759. height: math.unit(1400, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Distracted",
  10764. height: math.unit(15000, "feet")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Geno Maxwell" },
  10770. {
  10771. front: {
  10772. height: math.unit(7 + 4 / 12, "feet"),
  10773. weight: math.unit(500, "lb"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/geno-maxwell/front.svg",
  10777. extra: 2207 / 2040,
  10778. bottom: 0.015
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Micro",
  10785. height: math.unit(3, "inches")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(7 + 4 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(220, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(11, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Regena Maxwell" },
  10804. {
  10805. front: {
  10806. height: math.unit(7 + 4 / 12, "feet"),
  10807. weight: math.unit(500, "lb"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/regena-maxwell/front.svg",
  10811. extra: 3115 / 2770,
  10812. bottom: 0.02
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(7 + 4 / 12, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(220, "feet")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(11, "miles")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "XGlidingDragonX" },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(150, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10841. extra: 860 / 690,
  10842. bottom: 0.03
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(1.7, "meters"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Quilly" },
  10856. {
  10857. front: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(150, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/quilly/front.svg",
  10863. extra: 890 / 776
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Gigamacro",
  10870. height: math.unit(404090, "miles"),
  10871. default: true
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Tempest" },
  10877. {
  10878. front: {
  10879. height: math.unit(7 + 8 / 12, "feet"),
  10880. weight: math.unit(350, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/tempest/front.svg",
  10884. extra: 1175 / 1086,
  10885. bottom: 0.02
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(7 + 8 / 12, "feet"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Rodger" },
  10899. {
  10900. side: {
  10901. height: math.unit(4 + 5 / 12, "feet"),
  10902. weight: math.unit(80, "lb"),
  10903. name: "Side",
  10904. image: {
  10905. source: "./media/characters/rodger/side.svg",
  10906. extra: 1235 / 1118
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(1, "inch")
  10914. },
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(4 + 5 / 12, "feet"),
  10918. default: true
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(120, "feet")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Danyel" },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/danyel/front.svg",
  10935. extra: 1185 / 1123,
  10936. bottom: 0.05
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Shrunken",
  10943. height: math.unit(0.5, "mm")
  10944. },
  10945. {
  10946. name: "Micro",
  10947. height: math.unit(1, "mm"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Upsized",
  10952. height: math.unit(5 + 5 / 12, "feet")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Vivian Bijoux" },
  10958. {
  10959. front: {
  10960. height: math.unit(5 + 6 / 12, "feet"),
  10961. weight: math.unit(200, "lb"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/vivian-bijoux/front.svg",
  10965. extra: 1,
  10966. bottom: 0.072
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(5 + 6 / 12, "feet"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Bad Dream",
  10978. height: math.unit(500, "feet")
  10979. },
  10980. {
  10981. name: "Nightmare",
  10982. height: math.unit(500, "miles")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Zeta" },
  10988. {
  10989. front: {
  10990. height: math.unit(6 + 1 / 12, "feet"),
  10991. weight: math.unit(260, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/zeta/front.svg",
  10995. extra: 1968 / 1889,
  10996. bottom: 0.06
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6 + 1 / 12, "feet"),
  11001. weight: math.unit(260, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/zeta/back.svg",
  11005. extra: 1944 / 1858,
  11006. bottom: 0.03
  11007. }
  11008. },
  11009. hand: {
  11010. height: math.unit(1.112, "feet"),
  11011. name: "Hand",
  11012. image: {
  11013. source: "./media/characters/zeta/hand.svg"
  11014. }
  11015. },
  11016. foot: {
  11017. height: math.unit(1.48, "feet"),
  11018. name: "Foot",
  11019. image: {
  11020. source: "./media/characters/zeta/foot.svg"
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Micro",
  11027. height: math.unit(6, "inches")
  11028. },
  11029. {
  11030. name: "Normal",
  11031. height: math.unit(6 + 1 / 12, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(20, "feet")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Jamie Larsen" },
  11042. {
  11043. front: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/jamie-larsen/front.svg",
  11049. extra: 962 / 933,
  11050. bottom: 0.02
  11051. }
  11052. },
  11053. back: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(150, "lb"),
  11056. name: "Back",
  11057. image: {
  11058. source: "./media/characters/jamie-larsen/back.svg",
  11059. extra: 997 / 946
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(28 + 7 / 12, "feet"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Macro+",
  11071. height: math.unit(180, "feet")
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(10, "miles")
  11076. },
  11077. {
  11078. name: "Gigamacro",
  11079. height: math.unit(200000, "miles")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Vance" },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(120, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/vance/front.svg",
  11092. extra: 1980 / 1890,
  11093. bottom: 0.09
  11094. }
  11095. },
  11096. back: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(120, "lb"),
  11099. name: "Back",
  11100. image: {
  11101. source: "./media/characters/vance/back.svg",
  11102. extra: 2081 / 1994,
  11103. bottom: 0.014
  11104. }
  11105. },
  11106. hand: {
  11107. height: math.unit(0.88, "feet"),
  11108. name: "Hand",
  11109. image: {
  11110. source: "./media/characters/vance/hand.svg"
  11111. }
  11112. },
  11113. foot: {
  11114. height: math.unit(0.64, "feet"),
  11115. name: "Foot",
  11116. image: {
  11117. source: "./media/characters/vance/foot.svg"
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Small",
  11124. height: math.unit(90, "feet"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(100, "meters")
  11130. },
  11131. {
  11132. name: "Megamacro",
  11133. height: math.unit(15, "miles")
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Xochitl" },
  11139. {
  11140. front: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(180, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/xochitl/front.svg",
  11146. extra: 2297 / 2261,
  11147. bottom: 0.065
  11148. }
  11149. },
  11150. back: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(180, "lb"),
  11153. name: "Back",
  11154. image: {
  11155. source: "./media/characters/xochitl/back.svg",
  11156. extra: 2386 / 2354,
  11157. bottom: 0.01
  11158. }
  11159. },
  11160. foot: {
  11161. height: math.unit(6 / 5 * 1.15, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Foot",
  11164. image: {
  11165. source: "./media/characters/xochitl/foot.svg"
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(80, "feet")
  11173. },
  11174. {
  11175. name: "Macro+",
  11176. height: math.unit(400, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Gigamacro",
  11181. height: math.unit(80000, "miles")
  11182. },
  11183. {
  11184. name: "Gigamacro+",
  11185. height: math.unit(400000, "miles")
  11186. },
  11187. {
  11188. name: "Teramacro",
  11189. height: math.unit(300, "AU")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Vincent" },
  11195. {
  11196. front: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/vincent/front.svg",
  11202. extra: 1130 / 1080,
  11203. bottom: 0.055
  11204. }
  11205. },
  11206. beak: {
  11207. height: math.unit(6 * 0.1, "feet"),
  11208. name: "Beak",
  11209. image: {
  11210. source: "./media/characters/vincent/beak.svg"
  11211. }
  11212. },
  11213. hand: {
  11214. height: math.unit(6 * 0.85, "feet"),
  11215. weight: math.unit(150, "lb"),
  11216. name: "Hand",
  11217. image: {
  11218. source: "./media/characters/vincent/hand.svg"
  11219. }
  11220. },
  11221. foot: {
  11222. height: math.unit(6 * 0.19, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Foot",
  11225. image: {
  11226. source: "./media/characters/vincent/foot.svg"
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Base",
  11233. height: math.unit(6 + 5 / 12, "feet"),
  11234. default: true
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(300, "feet")
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(2, "miles")
  11243. },
  11244. {
  11245. name: "Gigamacro",
  11246. height: math.unit(1000, "miles")
  11247. },
  11248. ]
  11249. ))
  11250. characterMakers.push(() => makeCharacter(
  11251. { name: "Jay" },
  11252. {
  11253. front: {
  11254. height: math.unit(6 + 2 / 12, "feet"),
  11255. weight: math.unit(65, "lb"),
  11256. name: "Front",
  11257. image: {
  11258. source: "./media/characters/jay/front.svg",
  11259. extra: 1510 / 1430,
  11260. bottom: 0.042
  11261. }
  11262. },
  11263. back: {
  11264. height: math.unit(6 + 2 / 12, "feet"),
  11265. weight: math.unit(65, "lb"),
  11266. name: "Back",
  11267. image: {
  11268. source: "./media/characters/jay/back.svg",
  11269. extra: 1510 / 1430,
  11270. bottom: 0.025
  11271. }
  11272. },
  11273. clothed: {
  11274. height: math.unit(6 + 2 / 12, "feet"),
  11275. weight: math.unit(65, "lb"),
  11276. name: "Front (Clothed)",
  11277. image: {
  11278. source: "./media/characters/jay/clothed.svg",
  11279. extra: 744 / 699,
  11280. bottom: 0.043
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Micro",
  11287. height: math.unit(1, "inch")
  11288. },
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(6 + 2 / 12, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(1, "mile")
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(100, "miles")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Coatl" },
  11306. {
  11307. front: {
  11308. height: math.unit(2, "meters"),
  11309. weight: math.unit(500, "kg"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/coatl/front.svg",
  11313. extra: 3948 / 3500,
  11314. bottom: 0.082
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(4, "meters")
  11322. },
  11323. {
  11324. name: "Macro",
  11325. height: math.unit(100, "meters"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Macro+",
  11330. height: math.unit(300, "meters")
  11331. },
  11332. {
  11333. name: "Megamacro",
  11334. height: math.unit(3, "gigameters")
  11335. },
  11336. {
  11337. name: "Megamacro+",
  11338. height: math.unit(300, "terameters")
  11339. },
  11340. {
  11341. name: "Megamacro++",
  11342. height: math.unit(3, "lightyears")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Shiroryu" },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(50, "kg"),
  11352. name: "front",
  11353. image: {
  11354. source: "./media/characters/shiroryu/front.svg",
  11355. extra: 1990 / 1935
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Mortal Mingling",
  11362. height: math.unit(3, "meters")
  11363. },
  11364. {
  11365. name: "Kaiju-ish",
  11366. height: math.unit(250, "meters")
  11367. },
  11368. {
  11369. name: "Somewhat Godly",
  11370. height: math.unit(400, "km"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Planetary",
  11375. height: math.unit(300, "megameters")
  11376. },
  11377. {
  11378. name: "Galaxy-dwarfing",
  11379. height: math.unit(450, "kiloparsecs")
  11380. },
  11381. {
  11382. name: "Universe Eater",
  11383. height: math.unit(150, "gigaparsecs")
  11384. },
  11385. {
  11386. name: "Almost Immeasurable",
  11387. height: math.unit(1.3e266, "yottaparsecs")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Umeko" },
  11393. {
  11394. front: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/umeko/front.svg",
  11400. extra: 1,
  11401. bottom: 0.019
  11402. }
  11403. },
  11404. frontArmored: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(150, "lb"),
  11407. name: "Front (Armored)",
  11408. image: {
  11409. source: "./media/characters/umeko/front-armored.svg",
  11410. extra: 1,
  11411. bottom: 0.021
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(220, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Guardian Dragon",
  11423. height: math.unit(50, "miles")
  11424. },
  11425. {
  11426. name: "Cosmic",
  11427. height: math.unit(800000, "miles")
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Cassidy" },
  11433. {
  11434. front: {
  11435. height: math.unit(6, "feet"),
  11436. weight: math.unit(150, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/cassidy/front.svg",
  11440. extra: 1,
  11441. bottom: 0.043
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Canon Height",
  11448. height: math.unit(120, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Macro+",
  11453. height: math.unit(400, "feet")
  11454. },
  11455. {
  11456. name: "Macro++",
  11457. height: math.unit(4000, "feet")
  11458. },
  11459. {
  11460. name: "Megamacro",
  11461. height: math.unit(3, "miles")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Isaac" },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/isaac/front.svg",
  11474. extra: 896 / 815,
  11475. bottom: 0.11
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Human Size",
  11482. height: math.unit(8, "feet"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro",
  11487. height: math.unit(400, "feet")
  11488. },
  11489. {
  11490. name: "Megamacro",
  11491. height: math.unit(50, "miles")
  11492. },
  11493. {
  11494. name: "Canon Height",
  11495. height: math.unit(200, "AU")
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Sleekit" },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(72, "kg"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/sleekit/front.svg",
  11508. extra: 4693 / 4487,
  11509. bottom: 0.012
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Minimum Height",
  11516. height: math.unit(10, "meters")
  11517. },
  11518. {
  11519. name: "Smaller",
  11520. height: math.unit(25, "meters")
  11521. },
  11522. {
  11523. name: "Larger",
  11524. height: math.unit(38, "meters"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Maximum height",
  11529. height: math.unit(100, "meters")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Nillia" },
  11535. {
  11536. front: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(150, "lb"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/nillia/front.svg",
  11542. extra: 2195 / 2037,
  11543. bottom: 0.005
  11544. }
  11545. },
  11546. back: {
  11547. height: math.unit(6, "feet"),
  11548. weight: math.unit(150, "lb"),
  11549. name: "Back",
  11550. image: {
  11551. source: "./media/characters/nillia/back.svg",
  11552. extra: 2195 / 2037,
  11553. bottom: 0.005
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Canon Height",
  11560. height: math.unit(489, "feet"),
  11561. default: true
  11562. }
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Mesmyriza" },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(150, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/mesmyriza/front.svg",
  11574. extra: 2067 / 1784,
  11575. bottom: 0.035
  11576. }
  11577. },
  11578. foot: {
  11579. height: math.unit(6 / (250 / 35), "feet"),
  11580. name: "Foot",
  11581. image: {
  11582. source: "./media/characters/mesmyriza/foot.svg"
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Macro",
  11589. height: math.unit(457, "meters"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(8, "megameters")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Saudade" },
  11600. {
  11601. front: {
  11602. height: math.unit(6, "feet"),
  11603. weight: math.unit(250, "lb"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/saudade/front.svg",
  11607. extra: 1172 / 1139,
  11608. bottom: 0.035
  11609. }
  11610. },
  11611. },
  11612. [
  11613. {
  11614. name: "Micro",
  11615. height: math.unit(3, "inches")
  11616. },
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(6, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(50, "feet")
  11625. },
  11626. {
  11627. name: "Megamacro",
  11628. height: math.unit(2800, "feet")
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Keireer" },
  11634. {
  11635. front: {
  11636. height: math.unit(5 + 4 / 12, "feet"),
  11637. weight: math.unit(100, "lb"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/keireer/front.svg",
  11641. extra: 716 / 666,
  11642. bottom: 0.05
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(5 + 4 / 12, "feet"),
  11650. default: true
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Mirja" },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(90, "kg"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/mirja/front.svg",
  11663. extra: 1789 / 1683,
  11664. bottom: 0.05
  11665. }
  11666. },
  11667. frontDressed: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(90, "lb"),
  11670. name: "Front (Dressed)",
  11671. image: {
  11672. source: "./media/characters/mirja/front-dressed.svg",
  11673. extra: 1789 / 1683,
  11674. bottom: 0.05
  11675. }
  11676. },
  11677. back: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(90, "lb"),
  11680. name: "Back",
  11681. image: {
  11682. source: "./media/characters/mirja/back.svg",
  11683. extra: 953 / 917,
  11684. bottom: 0.017
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "\"Incognito\"",
  11691. height: math.unit(3, "meters")
  11692. },
  11693. {
  11694. name: "Strolling Size",
  11695. height: math.unit(15, "km")
  11696. },
  11697. {
  11698. name: "Larger Strolling Size",
  11699. height: math.unit(400, "km")
  11700. },
  11701. {
  11702. name: "Preferred Size",
  11703. height: math.unit(5000, "km")
  11704. },
  11705. {
  11706. name: "True Size",
  11707. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11708. default: true
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Nightraver" },
  11714. {
  11715. front: {
  11716. height: math.unit(15, "feet"),
  11717. weight: math.unit(880, "kg"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/nightraver/front.svg",
  11721. extra: 2444 / 2160,
  11722. bottom: 0.027
  11723. }
  11724. },
  11725. back: {
  11726. height: math.unit(15, "feet"),
  11727. weight: math.unit(880, "kg"),
  11728. name: "Back",
  11729. image: {
  11730. source: "./media/characters/nightraver/back.svg",
  11731. extra: 2309 / 2180,
  11732. bottom: 0.005
  11733. }
  11734. },
  11735. sole: {
  11736. height: math.unit(2.878, "feet"),
  11737. name: "Sole",
  11738. image: {
  11739. source: "./media/characters/nightraver/sole.svg"
  11740. }
  11741. },
  11742. foot: {
  11743. height: math.unit(2.285, "feet"),
  11744. name: "Foot",
  11745. image: {
  11746. source: "./media/characters/nightraver/foot.svg"
  11747. }
  11748. },
  11749. maw: {
  11750. height: math.unit(2.67, "feet"),
  11751. name: "Maw",
  11752. image: {
  11753. source: "./media/characters/nightraver/maw.svg"
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Micro",
  11760. height: math.unit(1, "cm")
  11761. },
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(15, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(300, "feet")
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(300, "miles")
  11774. },
  11775. {
  11776. name: "Gigamacro",
  11777. height: math.unit(10000, "miles")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Arc" },
  11783. {
  11784. side: {
  11785. height: math.unit(2, "inches"),
  11786. weight: math.unit(5, "grams"),
  11787. name: "Side",
  11788. image: {
  11789. source: "./media/characters/arc/side.svg"
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Micro",
  11796. height: math.unit(2, "inches"),
  11797. default: true
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Nebula Shahar" },
  11803. {
  11804. front: {
  11805. height: math.unit(1.1938, "meters"),
  11806. weight: math.unit(54, "kg"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/nebula-shahar/front.svg",
  11810. extra: 1642 / 1436,
  11811. bottom: 0.06
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Megamicro",
  11818. height: math.unit(0.3, "mm")
  11819. },
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(3, "cm")
  11823. },
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(138, "cm"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(30, "m")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Shayla" },
  11837. {
  11838. front: {
  11839. height: math.unit(5.24, "feet"),
  11840. weight: math.unit(150, "lb"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/shayla/front.svg",
  11844. extra: 1512 / 1414,
  11845. bottom: 0.01
  11846. }
  11847. },
  11848. back: {
  11849. height: math.unit(5.24, "feet"),
  11850. weight: math.unit(150, "lb"),
  11851. name: "Back",
  11852. image: {
  11853. source: "./media/characters/shayla/back.svg",
  11854. extra: 1512 / 1414
  11855. }
  11856. },
  11857. hand: {
  11858. height: math.unit(0.7781496062992126, "feet"),
  11859. name: "Hand",
  11860. image: {
  11861. source: "./media/characters/shayla/hand.svg"
  11862. }
  11863. },
  11864. foot: {
  11865. height: math.unit(1.4206036745406823, "feet"),
  11866. name: "Foot",
  11867. image: {
  11868. source: "./media/characters/shayla/foot.svg"
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(0.32, "feet")
  11876. },
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(5.24, "feet"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(492.12, "feet")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(186.41, "miles")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Pia Jr." },
  11894. {
  11895. front: {
  11896. height: math.unit(2.2, "m"),
  11897. weight: math.unit(120, "kg"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/pia-jr/front.svg",
  11901. extra: 1000 / 970,
  11902. bottom: 0.035
  11903. }
  11904. },
  11905. hand: {
  11906. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11907. name: "Hand",
  11908. image: {
  11909. source: "./media/characters/pia-jr/hand.svg"
  11910. }
  11911. },
  11912. paw: {
  11913. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11914. name: "Paw",
  11915. image: {
  11916. source: "./media/characters/pia-jr/paw.svg"
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Micro",
  11923. height: math.unit(1.2, "cm")
  11924. },
  11925. {
  11926. name: "Normal",
  11927. height: math.unit(2.2, "m"),
  11928. default: true
  11929. },
  11930. {
  11931. name: "Macro",
  11932. height: math.unit(180, "m")
  11933. },
  11934. {
  11935. name: "Megamacro",
  11936. height: math.unit(420, "km")
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Pia Sr." },
  11942. {
  11943. front: {
  11944. height: math.unit(2, "m"),
  11945. weight: math.unit(115, "kg"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/pia-sr/front.svg",
  11949. extra: 760 / 730,
  11950. bottom: 0.015
  11951. }
  11952. },
  11953. back: {
  11954. height: math.unit(2, "m"),
  11955. weight: math.unit(115, "kg"),
  11956. name: "Back",
  11957. image: {
  11958. source: "./media/characters/pia-sr/back.svg",
  11959. extra: 760 / 730,
  11960. bottom: 0.01
  11961. }
  11962. },
  11963. hand: {
  11964. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11965. name: "Hand",
  11966. image: {
  11967. source: "./media/characters/pia-sr/hand.svg"
  11968. }
  11969. },
  11970. foot: {
  11971. height: math.unit(1.83, "feet"),
  11972. name: "Foot",
  11973. image: {
  11974. source: "./media/characters/pia-sr/foot.svg"
  11975. }
  11976. },
  11977. },
  11978. [
  11979. {
  11980. name: "Micro",
  11981. height: math.unit(88, "mm")
  11982. },
  11983. {
  11984. name: "Normal",
  11985. height: math.unit(2, "m"),
  11986. default: true
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(200, "m")
  11991. },
  11992. {
  11993. name: "Megamacro",
  11994. height: math.unit(420, "km")
  11995. },
  11996. ]
  11997. ))
  11998. characterMakers.push(() => makeCharacter(
  11999. { name: "KIBIBYTE" },
  12000. {
  12001. front: {
  12002. height: math.unit(8 + 2 / 12, "feet"),
  12003. weight: math.unit(300, "lb"),
  12004. name: "Front",
  12005. image: {
  12006. source: "./media/characters/kibibyte/front.svg",
  12007. extra: 2221 / 2098,
  12008. bottom: 0.04
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(8 + 2 / 12, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Socialable Macro",
  12020. height: math.unit(50, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(300, "feet")
  12025. },
  12026. {
  12027. name: "Megamacro",
  12028. height: math.unit(500, "miles")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Felix" },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/felix/front.svg",
  12041. extra: 762 / 722,
  12042. bottom: 0.02
  12043. }
  12044. },
  12045. frontClothed: {
  12046. height: math.unit(6, "feet"),
  12047. weight: math.unit(150, "lb"),
  12048. name: "Front (Clothed)",
  12049. image: {
  12050. source: "./media/characters/felix/front-clothed.svg",
  12051. extra: 762 / 722,
  12052. bottom: 0.02
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(6 + 8 / 12, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(2600, "feet")
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(450, "miles")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Tobo" },
  12074. {
  12075. front: {
  12076. height: math.unit(6 + 1 / 12, "feet"),
  12077. weight: math.unit(250, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/tobo/front.svg",
  12081. extra: 608 / 586,
  12082. bottom: 0.023
  12083. }
  12084. },
  12085. back: {
  12086. height: math.unit(6 + 1 / 12, "feet"),
  12087. weight: math.unit(250, "lb"),
  12088. name: "Back",
  12089. image: {
  12090. source: "./media/characters/tobo/back.svg",
  12091. extra: 608 / 586
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Nano",
  12098. height: math.unit(2, "nm")
  12099. },
  12100. {
  12101. name: "Megamicro",
  12102. height: math.unit(0.1, "mm")
  12103. },
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(1, "inch"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Human-sized",
  12111. height: math.unit(6 + 1 / 12, "feet")
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(250, "feet")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(75, "miles")
  12120. },
  12121. {
  12122. name: "Texas-sized",
  12123. height: math.unit(750, "miles")
  12124. },
  12125. {
  12126. name: "Teramacro",
  12127. height: math.unit(50000, "miles")
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Danny Kapowsky" },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(269, "lb"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/danny-kapowsky/front.svg",
  12140. extra: 766 / 736,
  12141. bottom: 0.044
  12142. }
  12143. },
  12144. back: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(269, "lb"),
  12147. name: "Back",
  12148. image: {
  12149. source: "./media/characters/danny-kapowsky/back.svg",
  12150. extra: 797 / 760,
  12151. bottom: 0.025
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Macro",
  12158. height: math.unit(150, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Macro+",
  12163. height: math.unit(200, "feet")
  12164. },
  12165. {
  12166. name: "Macro++",
  12167. height: math.unit(300, "feet")
  12168. },
  12169. {
  12170. name: "Macro+++",
  12171. height: math.unit(400, "feet")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Finn" },
  12177. {
  12178. side: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(170, "lb"),
  12181. name: "Side",
  12182. image: {
  12183. source: "./media/characters/finn/side.svg",
  12184. extra: 1953 / 1807,
  12185. bottom: 0.057
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Megamacro",
  12192. height: math.unit(14445, "feet"),
  12193. default: true
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Roy" },
  12199. {
  12200. front: {
  12201. height: math.unit(5 + 6 / 12, "feet"),
  12202. weight: math.unit(125, "lb"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/roy/front.svg",
  12206. extra: 1,
  12207. bottom: 0.11
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Micro",
  12214. height: math.unit(3, "inches"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Normal",
  12219. height: math.unit(5 + 6 / 12, "feet")
  12220. },
  12221. {
  12222. name: "Lesser Macro",
  12223. height: math.unit(60, "feet")
  12224. },
  12225. {
  12226. name: "Greater Macro",
  12227. height: math.unit(120, "feet")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Aevsivs" },
  12233. {
  12234. front: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(100, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/aevsivs/front.svg",
  12240. extra: 1,
  12241. bottom: 0.03
  12242. }
  12243. },
  12244. back: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(100, "lb"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/aevsivs/back.svg"
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(2, "inches"),
  12257. default: true
  12258. },
  12259. {
  12260. name: "Normal",
  12261. height: math.unit(5, "feet")
  12262. },
  12263. ]
  12264. ))
  12265. characterMakers.push(() => makeCharacter(
  12266. { name: "Hildegard" },
  12267. {
  12268. front: {
  12269. height: math.unit(5 + 7 / 12, "feet"),
  12270. weight: math.unit(159, "lb"),
  12271. name: "Front",
  12272. image: {
  12273. source: "./media/characters/hildegard/front.svg",
  12274. extra: 312 / 286,
  12275. bottom: 0.005
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(5 + 7 / 12, "feet"),
  12283. default: true
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "Bernard & Wilder" },
  12289. {
  12290. bernard: {
  12291. height: math.unit(2 + 7 / 12, "feet"),
  12292. weight: math.unit(66, "lb"),
  12293. name: "Bernard",
  12294. rename: true,
  12295. image: {
  12296. source: "./media/characters/bernard-wilder/bernard.svg",
  12297. extra: 192 / 128,
  12298. bottom: 0.05
  12299. }
  12300. },
  12301. wilder: {
  12302. height: math.unit(5 + 8 / 12, "feet"),
  12303. weight: math.unit(143, "lb"),
  12304. name: "Wilder",
  12305. rename: true,
  12306. image: {
  12307. source: "./media/characters/bernard-wilder/wilder.svg",
  12308. extra: 361 / 312,
  12309. bottom: 0.02
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Normal",
  12316. height: math.unit(2 + 7 / 12, "feet"),
  12317. default: true
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Hearth" },
  12323. {
  12324. anthro: {
  12325. height: math.unit(6 + 1 / 12, "feet"),
  12326. weight: math.unit(155, "lb"),
  12327. name: "Anthro",
  12328. image: {
  12329. source: "./media/characters/hearth/anthro.svg",
  12330. extra: 260 / 250,
  12331. bottom: 0.02
  12332. }
  12333. },
  12334. feral: {
  12335. height: math.unit(3.78, "feet"),
  12336. weight: math.unit(35, "kg"),
  12337. name: "Feral",
  12338. image: {
  12339. source: "./media/characters/hearth/feral.svg",
  12340. extra: 153 / 135,
  12341. bottom: 0.03
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(6 + 1 / 12, "feet"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Ingrid" },
  12355. {
  12356. front: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(182, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/ingrid/front.svg",
  12362. extra: 294 / 268,
  12363. bottom: 0.027
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(6, "feet"),
  12371. default: true
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Malgam" },
  12377. {
  12378. eevee: {
  12379. height: math.unit(2 + 10 / 12, "feet"),
  12380. weight: math.unit(86, "lb"),
  12381. name: "Malgam",
  12382. image: {
  12383. source: "./media/characters/malgam/eevee.svg",
  12384. extra: 218 / 180,
  12385. bottom: 0.2
  12386. }
  12387. },
  12388. sylveon: {
  12389. height: math.unit(4, "feet"),
  12390. weight: math.unit(101, "lb"),
  12391. name: "Future Malgam",
  12392. rename: true,
  12393. image: {
  12394. source: "./media/characters/malgam/sylveon.svg",
  12395. extra: 371 / 325,
  12396. bottom: 0.015
  12397. }
  12398. },
  12399. gigantamax: {
  12400. height: math.unit(50, "feet"),
  12401. name: "Gigantamax Malgam",
  12402. rename: true,
  12403. image: {
  12404. source: "./media/characters/malgam/gigantamax.svg"
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(2 + 10 / 12, "feet"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Fleur" },
  12418. {
  12419. front: {
  12420. height: math.unit(5 + 11 / 12, "feet"),
  12421. weight: math.unit(188, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/fleur/front.svg",
  12425. extra: 309 / 283,
  12426. bottom: 0.007
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(5 + 11 / 12, "feet"),
  12434. default: true
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Jude" },
  12440. {
  12441. front: {
  12442. height: math.unit(5 + 4 / 12, "feet"),
  12443. weight: math.unit(122, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/jude/front.svg",
  12447. extra: 288 / 273,
  12448. bottom: 0.03
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(5 + 4 / 12, "feet"),
  12456. default: true
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Seara" },
  12462. {
  12463. front: {
  12464. height: math.unit(5 + 11 / 12, "feet"),
  12465. weight: math.unit(190, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/seara/front.svg",
  12469. extra: 1,
  12470. bottom: 0.05
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(5 + 11 / 12, "feet"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Caspian" },
  12484. {
  12485. front: {
  12486. height: math.unit(16 + 5 / 12, "feet"),
  12487. weight: math.unit(524, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/caspian/front.svg",
  12491. extra: 1,
  12492. bottom: 0.04
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(16 + 5 / 12, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Mika" },
  12506. {
  12507. front: {
  12508. height: math.unit(5 + 7 / 12, "feet"),
  12509. weight: math.unit(170, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/mika/front.svg",
  12513. extra: 1,
  12514. bottom: 0.016
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(5 + 7 / 12, "feet"),
  12522. default: true
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Sol" },
  12528. {
  12529. front: {
  12530. height: math.unit(6 + 2 / 12, "feet"),
  12531. weight: math.unit(268, "lb"),
  12532. name: "Front",
  12533. image: {
  12534. source: "./media/characters/sol/front.svg",
  12535. extra: 247 / 231,
  12536. bottom: 0.05
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(6 + 2 / 12, "feet"),
  12544. default: true
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Umiko" },
  12550. {
  12551. buizel: {
  12552. height: math.unit(2 + 5 / 12, "feet"),
  12553. weight: math.unit(87, "lb"),
  12554. name: "Buizel",
  12555. image: {
  12556. source: "./media/characters/umiko/buizel.svg",
  12557. extra: 172 / 157,
  12558. bottom: 0.01
  12559. }
  12560. },
  12561. floatzel: {
  12562. height: math.unit(5 + 9 / 12, "feet"),
  12563. weight: math.unit(250, "lb"),
  12564. name: "Floatzel",
  12565. image: {
  12566. source: "./media/characters/umiko/floatzel.svg",
  12567. extra: 262 / 248
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(2 + 5 / 12, "feet"),
  12575. default: true
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Iliac" },
  12581. {
  12582. front: {
  12583. height: math.unit(6 + 2 / 12, "feet"),
  12584. weight: math.unit(146, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/iliac/front.svg",
  12588. extra: 389 / 365,
  12589. bottom: 0.035
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(6 + 2 / 12, "feet"),
  12597. default: true
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Topaz" },
  12603. {
  12604. front: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(170, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/topaz/front.svg",
  12610. extra: 317 / 303,
  12611. bottom: 0.055
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(6, "feet"),
  12619. default: true
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Gabriel" },
  12625. {
  12626. front: {
  12627. height: math.unit(5 + 11 / 12, "feet"),
  12628. weight: math.unit(144, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/gabriel/front.svg",
  12632. extra: 285 / 262,
  12633. bottom: 0.004
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(5 + 11 / 12, "feet"),
  12641. default: true
  12642. },
  12643. ]
  12644. ))
  12645. characterMakers.push(() => makeCharacter(
  12646. { name: "Tempest (Suicune)" },
  12647. {
  12648. side: {
  12649. height: math.unit(6 + 5 / 12, "feet"),
  12650. weight: math.unit(300, "lb"),
  12651. name: "Side",
  12652. image: {
  12653. source: "./media/characters/tempest-suicune/side.svg",
  12654. extra: 195 / 154,
  12655. bottom: 0.04
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(6 + 5 / 12, "feet"),
  12663. default: true
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Vulcan" },
  12669. {
  12670. front: {
  12671. height: math.unit(7 + 2 / 12, "feet"),
  12672. weight: math.unit(322, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/vulcan/front.svg",
  12676. extra: 154 / 147,
  12677. bottom: 0.04
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(7 + 2 / 12, "feet"),
  12685. default: true
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Gault" },
  12691. {
  12692. front: {
  12693. height: math.unit(5 + 10 / 12, "feet"),
  12694. weight: math.unit(264, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/gault/front.svg",
  12698. extra: 161 / 140,
  12699. bottom: 0.028
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(5 + 10 / 12, "feet"),
  12707. default: true
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Shard" },
  12713. {
  12714. front: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(150, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/shard/front.svg",
  12720. extra: 273 / 238,
  12721. bottom: 0.02
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(3 + 6 / 12, "feet"),
  12729. default: true
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Ashe" },
  12735. {
  12736. front: {
  12737. height: math.unit(5 + 11 / 12, "feet"),
  12738. weight: math.unit(146, "lb"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/ashe/front.svg",
  12742. extra: 400 / 373,
  12743. bottom: 0.01
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(5 + 11 / 12, "feet"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Beatrix" },
  12757. {
  12758. front: {
  12759. height: math.unit(5 + 5 / 12, "feet"),
  12760. weight: math.unit(135, "lb"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/beatrix/front.svg",
  12764. extra: 392 / 379,
  12765. bottom: 0.01
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(6, "feet"),
  12773. default: true
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Ignatius" },
  12779. {
  12780. front: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/ignatius/front.svg",
  12786. extra: 245 / 222,
  12787. bottom: 0.01
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(5 + 5 / 12, "feet"),
  12795. default: true
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Mei Li" },
  12801. {
  12802. front: {
  12803. height: math.unit(6 + 2 / 12, "feet"),
  12804. weight: math.unit(138, "lb"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/mei-li/front.svg",
  12808. extra: 237 / 229,
  12809. bottom: 0.03
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Normal",
  12816. height: math.unit(6 + 2 / 12, "feet"),
  12817. default: true
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Puru" },
  12823. {
  12824. front: {
  12825. height: math.unit(2 + 4 / 12, "feet"),
  12826. weight: math.unit(62, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/puru/front.svg",
  12830. extra: 206 / 149,
  12831. bottom: 0.06
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(2 + 4 / 12, "feet"),
  12839. default: true
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Kee" },
  12845. {
  12846. taur: {
  12847. height: math.unit(11, "feet"),
  12848. weight: math.unit(500, "lb"),
  12849. name: "Taur",
  12850. image: {
  12851. source: "./media/characters/kee/taur.svg",
  12852. extra: 1,
  12853. bottom: 0.04
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(11, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Cobalt (Dracha)" },
  12867. {
  12868. anthro: {
  12869. height: math.unit(7, "feet"),
  12870. weight: math.unit(190, "lb"),
  12871. name: "Anthro",
  12872. image: {
  12873. source: "./media/characters/cobalt-dracha/anthro.svg",
  12874. extra: 231 / 225,
  12875. bottom: 0.04
  12876. }
  12877. },
  12878. feral: {
  12879. height: math.unit(9 + 7 / 12, "feet"),
  12880. weight: math.unit(294, "lb"),
  12881. name: "Feral",
  12882. image: {
  12883. source: "./media/characters/cobalt-dracha/feral.svg",
  12884. extra: 692 / 633,
  12885. bottom: 0.05
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(7, "feet"),
  12893. default: true
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "Java" },
  12899. {
  12900. fallen: {
  12901. height: math.unit(11 + 8 / 12, "feet"),
  12902. weight: math.unit(485, "lb"),
  12903. name: "Java (Fallen)",
  12904. rename: true,
  12905. image: {
  12906. source: "./media/characters/java/fallen.svg",
  12907. extra: 226 / 208,
  12908. bottom: 0.005
  12909. }
  12910. },
  12911. godkin: {
  12912. height: math.unit(10 + 6 / 12, "feet"),
  12913. weight: math.unit(328, "lb"),
  12914. name: "Java (Godkin)",
  12915. rename: true,
  12916. image: {
  12917. source: "./media/characters/java/godkin.svg",
  12918. extra: 270 / 262,
  12919. bottom: 0.02
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(11 + 8 / 12, "feet"),
  12927. default: true
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Skoll" },
  12933. {
  12934. front: {
  12935. height: math.unit(7 + 8 / 12, "feet"),
  12936. weight: math.unit(320, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/skoll/front.svg",
  12940. extra: 232 / 220,
  12941. bottom: 0.02
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(7 + 8 / 12, "feet"),
  12949. default: true
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Purna" },
  12955. {
  12956. front: {
  12957. height: math.unit(5 + 9 / 12, "feet"),
  12958. weight: math.unit(170, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/purna/front.svg",
  12962. extra: 239 / 229,
  12963. bottom: 0.01
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(5 + 9 / 12, "feet"),
  12971. default: true
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Kuva" },
  12977. {
  12978. front: {
  12979. height: math.unit(5 + 9 / 12, "feet"),
  12980. weight: math.unit(142, "lb"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/kuva/front.svg",
  12984. extra: 281 / 271,
  12985. bottom: 0.006
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(5 + 9 / 12, "feet"),
  12993. default: true
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Embra" },
  12999. {
  13000. anthro: {
  13001. height: math.unit(9 + 2 / 12, "feet"),
  13002. weight: math.unit(270, "lb"),
  13003. name: "Anthro",
  13004. image: {
  13005. source: "./media/characters/embra/anthro.svg",
  13006. extra: 200 / 187,
  13007. bottom: 0.02
  13008. }
  13009. },
  13010. feral: {
  13011. height: math.unit(18 + 8 / 12, "feet"),
  13012. weight: math.unit(576, "lb"),
  13013. name: "Feral",
  13014. image: {
  13015. source: "./media/characters/embra/feral.svg",
  13016. extra: 152 / 137,
  13017. bottom: 0.037
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(9 + 2 / 12, "feet"),
  13025. default: true
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Grottos" },
  13031. {
  13032. anthro: {
  13033. height: math.unit(10 + 9 / 12, "feet"),
  13034. weight: math.unit(224, "lb"),
  13035. name: "Anthro",
  13036. image: {
  13037. source: "./media/characters/grottos/anthro.svg",
  13038. extra: 350 / 332,
  13039. bottom: 0.045
  13040. }
  13041. },
  13042. feral: {
  13043. height: math.unit(20 + 7 / 12, "feet"),
  13044. weight: math.unit(629, "lb"),
  13045. name: "Feral",
  13046. image: {
  13047. source: "./media/characters/grottos/feral.svg",
  13048. extra: 207 / 190,
  13049. bottom: 0.05
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(10 + 9 / 12, "feet"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Frifna" },
  13063. {
  13064. anthro: {
  13065. height: math.unit(9 + 6 / 12, "feet"),
  13066. weight: math.unit(298, "lb"),
  13067. name: "Anthro",
  13068. image: {
  13069. source: "./media/characters/frifna/anthro.svg",
  13070. extra: 282 / 269,
  13071. bottom: 0.015
  13072. }
  13073. },
  13074. feral: {
  13075. height: math.unit(16 + 2 / 12, "feet"),
  13076. weight: math.unit(624, "lb"),
  13077. name: "Feral",
  13078. image: {
  13079. source: "./media/characters/frifna/feral.svg"
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(9 + 6 / 12, "feet"),
  13087. default: true
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Elise" },
  13093. {
  13094. front: {
  13095. height: math.unit(6 + 2 / 12, "feet"),
  13096. weight: math.unit(168, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/elise/front.svg",
  13100. extra: 276 / 271
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(6 + 2 / 12, "feet"),
  13108. default: true
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Glade" },
  13114. {
  13115. front: {
  13116. height: math.unit(5 + 10 / 12, "feet"),
  13117. weight: math.unit(210, "lb"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/glade/front.svg",
  13121. extra: 258 / 247,
  13122. bottom: 0.008
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(5 + 10 / 12, "feet"),
  13130. default: true
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Rina" },
  13136. {
  13137. front: {
  13138. height: math.unit(5 + 10 / 12, "feet"),
  13139. weight: math.unit(129, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/rina/front.svg",
  13143. extra: 266 / 255,
  13144. bottom: 0.005
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(5 + 10 / 12, "feet"),
  13152. default: true
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Veronica" },
  13158. {
  13159. front: {
  13160. height: math.unit(6 + 1 / 12, "feet"),
  13161. weight: math.unit(192, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/veronica/front.svg",
  13165. extra: 319 / 309,
  13166. bottom: 0.005
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(6 + 1 / 12, "feet"),
  13174. default: true
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Braxton" },
  13180. {
  13181. front: {
  13182. height: math.unit(9 + 3 / 12, "feet"),
  13183. weight: math.unit(1100, "lb"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/braxton/front.svg",
  13187. extra: 1057 / 984,
  13188. bottom: 0.05
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(9 + 3 / 12, "feet")
  13196. },
  13197. {
  13198. name: "Giant",
  13199. height: math.unit(300, "feet"),
  13200. default: true
  13201. },
  13202. {
  13203. name: "Macro",
  13204. height: math.unit(700, "feet")
  13205. },
  13206. {
  13207. name: "Megamacro",
  13208. height: math.unit(6000, "feet")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Blue Feyonics" },
  13214. {
  13215. front: {
  13216. height: math.unit(6 + 7 / 12, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/blue-feyonics/front.svg",
  13221. extra: 1403 / 1306,
  13222. bottom: 0.047
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(6 + 7 / 12, "feet"),
  13230. default: true
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Maxwell" },
  13236. {
  13237. front: {
  13238. height: math.unit(1.8, "meters"),
  13239. weight: math.unit(60, "kg"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/maxwell/front.svg",
  13243. extra: 2060 / 1873
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Micro",
  13250. height: math.unit(1, "mm")
  13251. },
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(1.8, "meter"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(30, "meters")
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(10, "km")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Jack" },
  13269. {
  13270. front: {
  13271. height: math.unit(6, "feet"),
  13272. weight: math.unit(150, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/jack/front.svg",
  13276. extra: 1754 / 1640,
  13277. bottom: 0.01
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(80000, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Max size",
  13289. height: math.unit(10, "lightyears")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Cafat" },
  13295. {
  13296. upright: {
  13297. height: math.unit(7, "feet"),
  13298. weight: math.unit(170, "lb"),
  13299. name: "Upright",
  13300. image: {
  13301. source: "./media/characters/cafat/upright.svg",
  13302. bottom: 0.01
  13303. }
  13304. },
  13305. uprightFull: {
  13306. height: math.unit(7, "feet"),
  13307. weight: math.unit(170, "lb"),
  13308. name: "Upright (Full)",
  13309. image: {
  13310. source: "./media/characters/cafat/upright-full.svg",
  13311. bottom: 0.01
  13312. }
  13313. },
  13314. side: {
  13315. height: math.unit(5, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Side",
  13318. image: {
  13319. source: "./media/characters/cafat/side.svg"
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Small",
  13326. height: math.unit(7, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Large",
  13331. height: math.unit(15.5, "feet")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Verin Raharra" },
  13337. {
  13338. front: {
  13339. height: math.unit(6, "feet"),
  13340. weight: math.unit(150, "lb"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/verin-raharra/front.svg",
  13344. extra: 5019 / 4835,
  13345. bottom: 0.023
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(7 + 5 / 12, "feet"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Upsized",
  13357. height: math.unit(20, "feet")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Nakata" },
  13363. {
  13364. front: {
  13365. height: math.unit(7, "feet"),
  13366. weight: math.unit(230, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/nakata/front.svg",
  13370. extra: 1.005,
  13371. bottom: 0.01
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(7, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Big",
  13383. height: math.unit(14, "feet")
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(400, "feet")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Lily" },
  13393. {
  13394. front: {
  13395. height: math.unit(4.91, "feet"),
  13396. weight: math.unit(100, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/lily/front.svg",
  13400. extra: 1585 / 1415,
  13401. bottom: 0.02
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(4.91, "feet"),
  13409. default: true
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Sheila" },
  13415. {
  13416. laying: {
  13417. height: math.unit(4 + 4 / 12, "feet"),
  13418. weight: math.unit(600, "lb"),
  13419. name: "Laying",
  13420. image: {
  13421. source: "./media/characters/sheila/laying.svg",
  13422. extra: 1333 / 1265,
  13423. bottom: 0.16
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(4 + 4 / 12, "feet"),
  13431. default: true
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Sax" },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(190, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/sax/front.svg",
  13444. extra: 1187 / 973,
  13445. bottom: 0.042
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Micro",
  13452. height: math.unit(4, "inches"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Pandora" },
  13459. {
  13460. front: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/pandora/front.svg",
  13466. extra: 2720 / 2556,
  13467. bottom: 0.015
  13468. }
  13469. },
  13470. back: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(150, "lb"),
  13473. name: "Back",
  13474. image: {
  13475. source: "./media/characters/pandora/back.svg",
  13476. extra: 2720 / 2556,
  13477. bottom: 0.01
  13478. }
  13479. },
  13480. beans: {
  13481. height: math.unit(6 / 8, "feet"),
  13482. name: "Beans",
  13483. image: {
  13484. source: "./media/characters/pandora/beans.svg"
  13485. }
  13486. },
  13487. skirt: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Skirt",
  13491. image: {
  13492. source: "./media/characters/pandora/skirt.svg",
  13493. extra: 1622 / 1525,
  13494. bottom: 0.015
  13495. }
  13496. },
  13497. hoodie: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Hoodie",
  13501. image: {
  13502. source: "./media/characters/pandora/hoodie.svg",
  13503. extra: 1622 / 1525,
  13504. bottom: 0.015
  13505. }
  13506. },
  13507. casual: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(150, "lb"),
  13510. name: "Casual",
  13511. image: {
  13512. source: "./media/characters/pandora/casual.svg",
  13513. extra: 1622 / 1525,
  13514. bottom: 0.015
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(6, "feet")
  13522. },
  13523. {
  13524. name: "Big Steppy",
  13525. height: math.unit(1, "km"),
  13526. default: true
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Venio Darcony" },
  13532. {
  13533. side: {
  13534. height: math.unit(10, "feet"),
  13535. weight: math.unit(800, "kg"),
  13536. name: "Side",
  13537. image: {
  13538. source: "./media/characters/venio-darcony/side.svg",
  13539. extra: 1373 / 1003,
  13540. bottom: 0.037
  13541. }
  13542. },
  13543. front: {
  13544. height: math.unit(19, "feet"),
  13545. weight: math.unit(800, "kg"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/venio-darcony/front.svg"
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(19, "feet"),
  13553. weight: math.unit(800, "kg"),
  13554. name: "Back",
  13555. image: {
  13556. source: "./media/characters/venio-darcony/back.svg"
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(10, "feet")
  13564. },
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(130, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Macro+",
  13572. height: math.unit(240, "feet")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Veski" },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/veski/front.svg",
  13585. extra: 1299 / 1225,
  13586. bottom: 0.04
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/veski/back.svg",
  13595. extra: 1299 / 1225,
  13596. bottom: 0.008
  13597. }
  13598. },
  13599. maw: {
  13600. height: math.unit(1.5 * 1.21, "feet"),
  13601. name: "Maw",
  13602. image: {
  13603. source: "./media/characters/veski/maw.svg"
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(2, "km"),
  13611. default: true
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Isabelle" },
  13617. {
  13618. front: {
  13619. height: math.unit(5 + 7 / 12, "feet"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/isabelle/front.svg",
  13623. extra: 2130 / 1976,
  13624. bottom: 0.05
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Supermicro",
  13631. height: math.unit(10, "micrometers")
  13632. },
  13633. {
  13634. name: "Micro",
  13635. height: math.unit(1, "inch")
  13636. },
  13637. {
  13638. name: "Tiny",
  13639. height: math.unit(5, "inches")
  13640. },
  13641. {
  13642. name: "Standard",
  13643. height: math.unit(5 + 7 / 12, "inches")
  13644. },
  13645. {
  13646. name: "Macro",
  13647. height: math.unit(80, "meters"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Megamacro",
  13652. height: math.unit(250, "meters")
  13653. },
  13654. {
  13655. name: "Gigamacro",
  13656. height: math.unit(5, "km")
  13657. },
  13658. {
  13659. name: "Cosmic",
  13660. height: math.unit(2.5e6, "miles")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Hanzo" },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/hanzo/front.svg",
  13673. extra: 374 / 344,
  13674. bottom: 0.02
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(8, "feet"),
  13682. default: true
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Anna" },
  13688. {
  13689. front: {
  13690. height: math.unit(7, "feet"),
  13691. weight: math.unit(130, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/anna/front.svg",
  13695. extra: 169 / 145,
  13696. bottom: 0.06
  13697. }
  13698. },
  13699. full: {
  13700. height: math.unit(4.96, "feet"),
  13701. weight: math.unit(220, "lb"),
  13702. name: "Full",
  13703. image: {
  13704. source: "./media/characters/anna/full.svg",
  13705. extra: 138 / 114,
  13706. bottom: 0.15
  13707. }
  13708. },
  13709. tongue: {
  13710. height: math.unit(2.53, "feet"),
  13711. name: "Tongue",
  13712. image: {
  13713. source: "./media/characters/anna/tongue.svg"
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(7, "feet"),
  13721. default: true
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Ian Corvid" },
  13727. {
  13728. front: {
  13729. height: math.unit(7, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/ian-corvid/front.svg",
  13734. extra: 150 / 142,
  13735. bottom: 0.02
  13736. }
  13737. },
  13738. back: {
  13739. height: math.unit(7, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Back",
  13742. image: {
  13743. source: "./media/characters/ian-corvid/back.svg",
  13744. extra: 150 / 143,
  13745. bottom: 0.01
  13746. }
  13747. },
  13748. stomping: {
  13749. height: math.unit(7, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Stomping",
  13752. image: {
  13753. source: "./media/characters/ian-corvid/stomping.svg",
  13754. extra: 76 / 72
  13755. }
  13756. },
  13757. sitting: {
  13758. height: math.unit(7 / 1.8, "feet"),
  13759. weight: math.unit(150, "lb"),
  13760. name: "Sitting",
  13761. image: {
  13762. source: "./media/characters/ian-corvid/sitting.svg",
  13763. extra: 1400 / 1269,
  13764. bottom: 0.15
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Tiny Microw",
  13771. height: math.unit(1, "inch")
  13772. },
  13773. {
  13774. name: "Microw",
  13775. height: math.unit(6, "inches")
  13776. },
  13777. {
  13778. name: "Crow",
  13779. height: math.unit(7 + 1 / 12, "feet"),
  13780. default: true
  13781. },
  13782. {
  13783. name: "Macrow",
  13784. height: math.unit(176, "feet")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Natalie Kellon" },
  13790. {
  13791. front: {
  13792. height: math.unit(5 + 7 / 12, "feet"),
  13793. weight: math.unit(147, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/natalie-kellon/front.svg",
  13797. extra: 1214 / 1141,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Micro",
  13805. height: math.unit(1 / 16, "inch")
  13806. },
  13807. {
  13808. name: "Tiny",
  13809. height: math.unit(4, "inches")
  13810. },
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(5 + 7 / 12, "feet"),
  13814. default: true
  13815. },
  13816. {
  13817. name: "Amazon",
  13818. height: math.unit(12, "feet")
  13819. },
  13820. {
  13821. name: "Giantess",
  13822. height: math.unit(160, "meters")
  13823. },
  13824. {
  13825. name: "Titaness",
  13826. height: math.unit(800, "meters")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Alluria" },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/alluria/front.svg",
  13839. extra: 806 / 738,
  13840. bottom: 0.01
  13841. }
  13842. },
  13843. side: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Side",
  13847. image: {
  13848. source: "./media/characters/alluria/side.svg",
  13849. extra: 800 / 750,
  13850. }
  13851. },
  13852. back: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(150, "lb"),
  13855. name: "Back",
  13856. image: {
  13857. source: "./media/characters/alluria/back.svg",
  13858. extra: 806 / 738,
  13859. }
  13860. },
  13861. frontMaid: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front (Maid)",
  13865. image: {
  13866. source: "./media/characters/alluria/front-maid.svg",
  13867. extra: 806 / 738,
  13868. bottom: 0.01
  13869. }
  13870. },
  13871. sideMaid: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Side (Maid)",
  13875. image: {
  13876. source: "./media/characters/alluria/side-maid.svg",
  13877. extra: 800 / 750,
  13878. bottom: 0.005
  13879. }
  13880. },
  13881. backMaid: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Back (Maid)",
  13885. image: {
  13886. source: "./media/characters/alluria/back-maid.svg",
  13887. extra: 806 / 738,
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Micro",
  13894. height: math.unit(6, "inches"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Kyle" },
  13901. {
  13902. front: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/kyle/front.svg",
  13908. extra: 1069 / 962,
  13909. bottom: 77.228 / 1727.45
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(150, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Duncan" },
  13923. {
  13924. front: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(300, "lb"),
  13927. name: "Front",
  13928. image: {
  13929. source: "./media/characters/duncan/front.svg",
  13930. extra: 1650 / 1482,
  13931. bottom: 0.05
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Macro",
  13938. height: math.unit(100, "feet"),
  13939. default: true
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Memory" },
  13945. {
  13946. front: {
  13947. height: math.unit(5 + 4 / 12, "feet"),
  13948. weight: math.unit(220, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/memory/front.svg",
  13952. extra: 3641 / 3545,
  13953. bottom: 0.03
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(5 + 4 / 12, "feet"),
  13958. weight: math.unit(220, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/memory/back.svg",
  13962. extra: 3641 / 3545,
  13963. bottom: 0.025
  13964. }
  13965. },
  13966. frontSkirt: {
  13967. height: math.unit(5 + 4 / 12, "feet"),
  13968. weight: math.unit(220, "lb"),
  13969. name: "Front (Skirt)",
  13970. image: {
  13971. source: "./media/characters/memory/front-skirt.svg",
  13972. extra: 3641 / 3545,
  13973. bottom: 0.03
  13974. }
  13975. },
  13976. frontDress: {
  13977. height: math.unit(5 + 4 / 12, "feet"),
  13978. weight: math.unit(220, "lb"),
  13979. name: "Front (Dress)",
  13980. image: {
  13981. source: "./media/characters/memory/front-dress.svg",
  13982. extra: 3641 / 3545,
  13983. bottom: 0.03
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Micro",
  13990. height: math.unit(6, "inches"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(5 + 4 / 12, "feet")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Luno" },
  14001. {
  14002. front: {
  14003. height: math.unit(4 + 11 / 12, "feet"),
  14004. weight: math.unit(100, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/luno/front.svg",
  14008. extra: 1535 / 1487,
  14009. bottom: 0.03
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(3, "inches")
  14017. },
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(4 + 11 / 12, "feet"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(300, "feet")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(700, "miles")
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Jamesy" },
  14035. {
  14036. front: {
  14037. height: math.unit(6 + 2 / 12, "feet"),
  14038. weight: math.unit(170, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/jamesy/front.svg",
  14042. extra: 440 / 382,
  14043. bottom: 0.005
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Micro",
  14050. height: math.unit(3, "inches")
  14051. },
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(6 + 2 / 12, "feet"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(300, "feet")
  14060. },
  14061. {
  14062. name: "Megamacro",
  14063. height: math.unit(700, "miles")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Mark" },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(160, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/mark/front.svg",
  14076. extra: 3300 / 3100,
  14077. bottom: 136.42 / 3440.47
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(120, "meters")
  14085. },
  14086. {
  14087. name: "Bigger Macro",
  14088. height: math.unit(350, "meters")
  14089. },
  14090. {
  14091. name: "Megamacro",
  14092. height: math.unit(8, "km"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Continental",
  14097. height: math.unit(4550, "km")
  14098. },
  14099. {
  14100. name: "Planetary",
  14101. height: math.unit(65000, "km")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Mac" },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(400, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/mac/front.svg",
  14114. extra: 1048 / 987.7,
  14115. bottom: 60 / 1107.6,
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(500, "feet"),
  14123. default: true
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Bari" },
  14129. {
  14130. front: {
  14131. height: math.unit(5 + 2 / 12, "feet"),
  14132. weight: math.unit(190, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/bari/front.svg",
  14136. extra: 3156 / 2880,
  14137. bottom: 0.03
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(5 + 2 / 12, "feet"),
  14142. weight: math.unit(190, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/bari/back.svg",
  14146. extra: 3260 / 2834,
  14147. bottom: 0.025
  14148. }
  14149. },
  14150. frontPlush: {
  14151. height: math.unit(5 + 2 / 12, "feet"),
  14152. weight: math.unit(190, "lb"),
  14153. name: "Front (Plush)",
  14154. image: {
  14155. source: "./media/characters/bari/front-plush.svg",
  14156. extra: 1112 / 1061,
  14157. bottom: 0.002
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Micro",
  14164. height: math.unit(3, "inches")
  14165. },
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(5 + 2 / 12, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(20, "feet")
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Hunter Misha Raven" },
  14179. {
  14180. front: {
  14181. height: math.unit(6 + 1 / 12, "feet"),
  14182. weight: math.unit(275, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/hunter-misha-raven/front.svg"
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Mortal",
  14192. height: math.unit(6 + 1 / 12, "feet")
  14193. },
  14194. {
  14195. name: "Divine",
  14196. height: math.unit(1.12134e34, "parsecs"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Max Calore" },
  14203. {
  14204. front: {
  14205. height: math.unit(6 + 3 / 12, "feet"),
  14206. weight: math.unit(220, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/max-calore/front.svg",
  14210. extra: 1700 / 1648,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. back: {
  14215. height: math.unit(6 + 3 / 12, "feet"),
  14216. weight: math.unit(220, "lb"),
  14217. name: "Back",
  14218. image: {
  14219. source: "./media/characters/max-calore/back.svg",
  14220. extra: 1700 / 1648,
  14221. bottom: 0.01
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(6 + 3 / 12, "feet"),
  14229. default: true
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Aspen" },
  14235. {
  14236. side: {
  14237. height: math.unit(2 + 8 / 12, "feet"),
  14238. weight: math.unit(99, "lb"),
  14239. name: "Side",
  14240. image: {
  14241. source: "./media/characters/aspen/side.svg",
  14242. extra: 152 / 138,
  14243. bottom: 0.032
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(2 + 8 / 12, "feet"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Sheila (Feral Wolf)" },
  14257. {
  14258. side: {
  14259. height: math.unit(3 + 2 / 12, "feet"),
  14260. weight: math.unit(224, "lb"),
  14261. name: "Side",
  14262. image: {
  14263. source: "./media/characters/sheila-feral-wolf/side.svg",
  14264. extra: 179 / 166,
  14265. bottom: 0.03
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(3 + 2 / 12, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Michelle" },
  14279. {
  14280. side: {
  14281. height: math.unit(1 + 9 / 12, "feet"),
  14282. weight: math.unit(38, "lb"),
  14283. name: "Side",
  14284. image: {
  14285. source: "./media/characters/michelle/side.svg",
  14286. extra: 147 / 136.7,
  14287. bottom: 0.03
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(1 + 9 / 12, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Nino" },
  14301. {
  14302. front: {
  14303. height: math.unit(1 + 1 / 12, "feet"),
  14304. weight: math.unit(18, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/nino/front.svg"
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(1 + 1 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Viola" },
  14321. {
  14322. front: {
  14323. height: math.unit(1, "feet"),
  14324. weight: math.unit(16, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/viola/front.svg"
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(1, "feet"),
  14335. default: true
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Atlas" },
  14341. {
  14342. front: {
  14343. height: math.unit(6 + 5 / 12, "feet"),
  14344. weight: math.unit(580, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/atlas/front.svg",
  14348. extra: 298.5 / 290,
  14349. bottom: 0.015
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(6 + 5 / 12, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Davy" },
  14363. {
  14364. side: {
  14365. height: math.unit(1 + 10 / 12, "feet"),
  14366. weight: math.unit(25, "lb"),
  14367. name: "Side",
  14368. image: {
  14369. source: "./media/characters/davy/side.svg",
  14370. extra: 200 / 170,
  14371. bottom: 0.01
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(1 + 10 / 12, "feet"),
  14379. default: true
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Fiona" },
  14385. {
  14386. side: {
  14387. height: math.unit(4 + 8 / 12, "feet"),
  14388. weight: math.unit(166, "lb"),
  14389. name: "Side",
  14390. image: {
  14391. source: "./media/characters/fiona/side.svg",
  14392. extra: 232 / 220,
  14393. bottom: 0.03
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(4 + 8 / 12, "feet"),
  14401. default: true
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Lyla" },
  14407. {
  14408. front: {
  14409. height: math.unit(2, "feet"),
  14410. weight: math.unit(62, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/lyla/front.svg",
  14414. bottom: 0.1
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(2, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Perseus" },
  14428. {
  14429. side: {
  14430. height: math.unit(1.8, "feet"),
  14431. weight: math.unit(44, "lb"),
  14432. name: "Side",
  14433. image: {
  14434. source: "./media/characters/perseus/side.svg",
  14435. bottom: 0.21
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(1.8, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Remus" },
  14449. {
  14450. side: {
  14451. height: math.unit(4 + 2 / 12, "feet"),
  14452. weight: math.unit(20, "lb"),
  14453. name: "Side",
  14454. image: {
  14455. source: "./media/characters/remus/side.svg"
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(4 + 2 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Raf" },
  14469. {
  14470. front: {
  14471. height: math.unit(4 + 11 / 12, "feet"),
  14472. weight: math.unit(114, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/raf/front.svg",
  14476. bottom: 0.01
  14477. }
  14478. },
  14479. side: {
  14480. height: math.unit(4 + 11 / 12, "feet"),
  14481. weight: math.unit(114, "lb"),
  14482. name: "Side",
  14483. image: {
  14484. source: "./media/characters/raf/side.svg",
  14485. bottom: 0.005
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Micro",
  14492. height: math.unit(2, "inches")
  14493. },
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(4 + 11 / 12, "feet"),
  14497. default: true
  14498. },
  14499. {
  14500. name: "Macro",
  14501. height: math.unit(70, "feet")
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Liam Einarr" },
  14507. {
  14508. front: {
  14509. height: math.unit(1.5, "meters"),
  14510. weight: math.unit(68, "kg"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/liam-einarr/front.svg",
  14514. extra: 2822 / 2666
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(1.5, "meters"),
  14519. weight: math.unit(68, "kg"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/liam-einarr/back.svg",
  14523. extra: 2822 / 2666,
  14524. bottom: 0.015
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(1.5, "meters"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Macro",
  14536. height: math.unit(150, "meters")
  14537. },
  14538. {
  14539. name: "Megamacro",
  14540. height: math.unit(35, "km")
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Linda" },
  14546. {
  14547. front: {
  14548. height: math.unit(6, "feet"),
  14549. weight: math.unit(75, "kg"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/linda/front.svg",
  14553. extra: 930 / 874,
  14554. bottom: 0.004
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(6, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Caylex" },
  14568. {
  14569. front: {
  14570. height: math.unit(6 + 8 / 12, "feet"),
  14571. weight: math.unit(220, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/caylex/front.svg",
  14575. extra: 821 / 772,
  14576. bottom: 0.07
  14577. }
  14578. },
  14579. back: {
  14580. height: math.unit(6 + 8 / 12, "feet"),
  14581. weight: math.unit(220, "lb"),
  14582. name: "Back",
  14583. image: {
  14584. source: "./media/characters/caylex/back.svg",
  14585. extra: 821 / 772,
  14586. bottom: 0.022
  14587. }
  14588. },
  14589. hand: {
  14590. height: math.unit(1.25, "feet"),
  14591. name: "Hand",
  14592. image: {
  14593. source: "./media/characters/caylex/hand.svg"
  14594. }
  14595. },
  14596. foot: {
  14597. height: math.unit(1.6, "feet"),
  14598. name: "Foot",
  14599. image: {
  14600. source: "./media/characters/caylex/foot.svg"
  14601. }
  14602. },
  14603. armored: {
  14604. height: math.unit(6 + 8 / 12, "feet"),
  14605. weight: math.unit(250, "lb"),
  14606. name: "Armored",
  14607. image: {
  14608. source: "./media/characters/caylex/armored.svg",
  14609. extra: 1420 / 1310,
  14610. bottom: 0.045
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(6 + 8 / 12, "feet"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Normal+",
  14622. height: math.unit(12, "feet")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Alana" },
  14628. {
  14629. front: {
  14630. height: math.unit(7 + 6 / 12, "feet"),
  14631. weight: math.unit(288, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/alana/front.svg",
  14635. extra: 679 / 653,
  14636. bottom: 22.5 / 701
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(7 + 6 / 12, "feet")
  14644. },
  14645. {
  14646. name: "Large",
  14647. height: math.unit(50, "feet")
  14648. },
  14649. {
  14650. name: "Macro",
  14651. height: math.unit(100, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro+",
  14656. height: math.unit(200, "feet")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Hasani" },
  14662. {
  14663. front: {
  14664. height: math.unit(6 + 1 / 12, "feet"),
  14665. weight: math.unit(210, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/hasani/front.svg",
  14669. extra: 244 / 232,
  14670. bottom: 0.01
  14671. }
  14672. },
  14673. back: {
  14674. height: math.unit(6 + 1 / 12, "feet"),
  14675. weight: math.unit(210, "lb"),
  14676. name: "Back",
  14677. image: {
  14678. source: "./media/characters/hasani/back.svg",
  14679. extra: 244 / 232,
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(6 + 1 / 12, "feet")
  14688. },
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(175, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Nita" },
  14698. {
  14699. front: {
  14700. height: math.unit(1.82, "meters"),
  14701. weight: math.unit(140, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/nita/front.svg",
  14705. extra: 2473 / 2363,
  14706. bottom: 0.01
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(1.82, "m")
  14714. },
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(300, "m")
  14718. },
  14719. {
  14720. name: "Mistake Canon",
  14721. height: math.unit(0.5, "miles"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Big Mistake",
  14726. height: math.unit(13, "miles")
  14727. },
  14728. {
  14729. name: "Playing God",
  14730. height: math.unit(2450, "miles")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Shiriko" },
  14736. {
  14737. front: {
  14738. height: math.unit(4, "feet"),
  14739. weight: math.unit(120, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/shiriko/front.svg",
  14743. extra: 195 / 188
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(4, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Deja" },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. name: "front",
  14761. image: {
  14762. source: "./media/characters/deja/front.svg",
  14763. extra: 926 / 840,
  14764. bottom: 0.07
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Planck Length",
  14771. height: math.unit(1.6e-35, "meters")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(30.48, "meters"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Universal",
  14780. height: math.unit(8.8e26, "meters")
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Anima" },
  14786. {
  14787. side: {
  14788. height: math.unit(8, "feet"),
  14789. weight: math.unit(6300, "lb"),
  14790. name: "Side",
  14791. image: {
  14792. source: "./media/characters/anima/side.svg",
  14793. bottom: 0.035
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(8, "feet"),
  14801. default: true
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Bianca" },
  14807. {
  14808. front: {
  14809. height: math.unit(8, "feet"),
  14810. weight: math.unit(350, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/bianca/front.svg",
  14814. extra: 234 / 225,
  14815. bottom: 0.03
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(8, "feet"),
  14823. default: true
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Adinia" },
  14829. {
  14830. front: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/adinia/front.svg",
  14836. extra: 1845 / 1672,
  14837. bottom: 0.02
  14838. }
  14839. },
  14840. back: {
  14841. height: math.unit(6, "feet"),
  14842. weight: math.unit(150, "lb"),
  14843. name: "Back",
  14844. image: {
  14845. source: "./media/characters/adinia/back.svg",
  14846. extra: 1845 / 1672,
  14847. bottom: 0.002
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(11 + 5 / 12, "feet"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Lykasa" },
  14861. {
  14862. front: {
  14863. height: math.unit(3, "meters"),
  14864. weight: math.unit(200, "kg"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/lykasa/front.svg",
  14868. extra: 1076 / 976,
  14869. bottom: 0.06
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(3, "meters")
  14877. },
  14878. {
  14879. name: "Kaiju",
  14880. height: math.unit(120, "meters"),
  14881. default: true
  14882. },
  14883. {
  14884. name: "Mega Kaiju",
  14885. height: math.unit(240, "km")
  14886. },
  14887. {
  14888. name: "Giga Kaiju",
  14889. height: math.unit(400, "megameters")
  14890. },
  14891. {
  14892. name: "Tera Kaiju",
  14893. height: math.unit(800, "gigameters")
  14894. },
  14895. {
  14896. name: "Kaiju Dragon Goddess",
  14897. height: math.unit(26, "zettaparsecs")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Malfaren" },
  14903. {
  14904. side: {
  14905. height: math.unit(283 / 124 * 6, "feet"),
  14906. weight: math.unit(35000, "lb"),
  14907. name: "Side",
  14908. image: {
  14909. source: "./media/characters/malfaren/side.svg",
  14910. extra: 2500 / 1010,
  14911. bottom: 0.01
  14912. }
  14913. },
  14914. front: {
  14915. height: math.unit(22.36, "feet"),
  14916. weight: math.unit(35000, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/malfaren/front.svg",
  14920. extra: 1631 / 1476,
  14921. bottom: 0.01
  14922. }
  14923. },
  14924. maw: {
  14925. height: math.unit(6.9, "feet"),
  14926. name: "Maw",
  14927. image: {
  14928. source: "./media/characters/malfaren/maw.svg"
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Big",
  14935. height: math.unit(283 / 162 * 6, "feet"),
  14936. },
  14937. {
  14938. name: "Bigger",
  14939. height: math.unit(283 / 124 * 6, "feet")
  14940. },
  14941. {
  14942. name: "Massive",
  14943. height: math.unit(283 / 92 * 6, "feet"),
  14944. default: true
  14945. },
  14946. {
  14947. name: "👀💦",
  14948. height: math.unit(283 / 73 * 6, "feet"),
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Kernel" },
  14954. {
  14955. front: {
  14956. height: math.unit(1.7, "m"),
  14957. weight: math.unit(70, "kg"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/kernel/front.svg",
  14961. extra: 222 / 210,
  14962. bottom: 0.007
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Nano",
  14969. height: math.unit(17, "micrometers")
  14970. },
  14971. {
  14972. name: "Micro",
  14973. height: math.unit(1.7, "mm")
  14974. },
  14975. {
  14976. name: "Small",
  14977. height: math.unit(1.7, "cm")
  14978. },
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(1.7, "m"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Jayne Folest" },
  14988. {
  14989. front: {
  14990. height: math.unit(1.75, "meters"),
  14991. weight: math.unit(65, "kg"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/jayne-folest/front.svg",
  14995. extra: 2115 / 2007,
  14996. bottom: 0.02
  14997. }
  14998. },
  14999. back: {
  15000. height: math.unit(1.75, "meters"),
  15001. weight: math.unit(65, "kg"),
  15002. name: "Back",
  15003. image: {
  15004. source: "./media/characters/jayne-folest/back.svg",
  15005. extra: 2115 / 2007,
  15006. bottom: 0.005
  15007. }
  15008. },
  15009. frontClothed: {
  15010. height: math.unit(1.75, "meters"),
  15011. weight: math.unit(65, "kg"),
  15012. name: "Front (Clothed)",
  15013. image: {
  15014. source: "./media/characters/jayne-folest/front-clothed.svg",
  15015. extra: 2115 / 2007,
  15016. bottom: 0.035
  15017. }
  15018. },
  15019. hand: {
  15020. height: math.unit(1 / 1.260, "feet"),
  15021. name: "Hand",
  15022. image: {
  15023. source: "./media/characters/jayne-folest/hand.svg"
  15024. }
  15025. },
  15026. foot: {
  15027. height: math.unit(1 / 0.918, "feet"),
  15028. name: "Foot",
  15029. image: {
  15030. source: "./media/characters/jayne-folest/foot.svg"
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Micro",
  15037. height: math.unit(4, "cm")
  15038. },
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(1.75, "meters")
  15042. },
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(47.5, "meters"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Algier" },
  15052. {
  15053. front: {
  15054. height: math.unit(180, "cm"),
  15055. weight: math.unit(70, "kg"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/algier/front.svg",
  15059. extra: 596 / 572,
  15060. bottom: 0.04
  15061. }
  15062. },
  15063. back: {
  15064. height: math.unit(180, "cm"),
  15065. weight: math.unit(70, "kg"),
  15066. name: "Back",
  15067. image: {
  15068. source: "./media/characters/algier/back.svg",
  15069. extra: 596 / 572,
  15070. bottom: 0.025
  15071. }
  15072. },
  15073. frontdressed: {
  15074. height: math.unit(180, "cm"),
  15075. weight: math.unit(150, "kg"),
  15076. name: "Front-dressed",
  15077. image: {
  15078. source: "./media/characters/algier/front-dressed.svg",
  15079. extra: 596 / 572,
  15080. bottom: 0.038
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Micro",
  15087. height: math.unit(5, "cm")
  15088. },
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(180, "cm"),
  15092. default: true
  15093. },
  15094. {
  15095. name: "Macro",
  15096. height: math.unit(64, "m")
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Pretzel" },
  15102. {
  15103. upright: {
  15104. height: math.unit(7, "feet"),
  15105. weight: math.unit(300, "lb"),
  15106. name: "Upright",
  15107. image: {
  15108. source: "./media/characters/pretzel/upright.svg",
  15109. extra: 534 / 522,
  15110. bottom: 0.065
  15111. }
  15112. },
  15113. sprawling: {
  15114. height: math.unit(3.75, "feet"),
  15115. weight: math.unit(300, "lb"),
  15116. name: "Sprawling",
  15117. image: {
  15118. source: "./media/characters/pretzel/sprawling.svg",
  15119. extra: 314 / 281,
  15120. bottom: 0.1
  15121. }
  15122. },
  15123. tongue: {
  15124. height: math.unit(2, "feet"),
  15125. name: "Tongue",
  15126. image: {
  15127. source: "./media/characters/pretzel/tongue.svg"
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(7, "feet"),
  15135. default: true
  15136. },
  15137. {
  15138. name: "Oversized",
  15139. height: math.unit(15, "feet")
  15140. },
  15141. {
  15142. name: "Huge",
  15143. height: math.unit(30, "feet")
  15144. },
  15145. {
  15146. name: "Macro",
  15147. height: math.unit(250, "feet")
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Roxi" },
  15153. {
  15154. sideFront: {
  15155. height: math.unit(5 + 2 / 12, "feet"),
  15156. weight: math.unit(120, "lb"),
  15157. name: "Front Side",
  15158. image: {
  15159. source: "./media/characters/roxi/side-front.svg",
  15160. extra: 2924 / 2717,
  15161. bottom: 0.08
  15162. }
  15163. },
  15164. sideBack: {
  15165. height: math.unit(5 + 2 / 12, "feet"),
  15166. weight: math.unit(120, "lb"),
  15167. name: "Back Side",
  15168. image: {
  15169. source: "./media/characters/roxi/side-back.svg",
  15170. extra: 2904 / 2693,
  15171. bottom: 0.06
  15172. }
  15173. },
  15174. front: {
  15175. height: math.unit(5 + 2 / 12, "feet"),
  15176. weight: math.unit(120, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/roxi/front.svg",
  15180. extra: 2028 / 1907,
  15181. bottom: 0.01
  15182. }
  15183. },
  15184. frontAlt: {
  15185. height: math.unit(5 + 2 / 12, "feet"),
  15186. weight: math.unit(120, "lb"),
  15187. name: "Front (Alt)",
  15188. image: {
  15189. source: "./media/characters/roxi/front-alt.svg",
  15190. extra: 1828 / 1798,
  15191. bottom: 0.01
  15192. }
  15193. },
  15194. sitting: {
  15195. height: math.unit(2.8, "feet"),
  15196. weight: math.unit(120, "lb"),
  15197. name: "Sitting",
  15198. image: {
  15199. source: "./media/characters/roxi/sitting.svg",
  15200. extra: 2660 / 2462,
  15201. bottom: 0.1
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(5 + 2 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Shadow" },
  15215. {
  15216. side: {
  15217. height: math.unit(55, "feet"),
  15218. weight: math.unit(153, "tons"),
  15219. name: "Side",
  15220. image: {
  15221. source: "./media/characters/shadow/side.svg",
  15222. extra: 701 / 628,
  15223. bottom: 0.02
  15224. }
  15225. },
  15226. flying: {
  15227. height: math.unit(145, "feet"),
  15228. weight: math.unit(153, "tons"),
  15229. name: "Flying",
  15230. image: {
  15231. source: "./media/characters/shadow/flying.svg"
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(55, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Marcie" },
  15245. {
  15246. front: {
  15247. height: math.unit(6, "feet"),
  15248. weight: math.unit(200, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/marcie/front.svg",
  15252. extra: 960 / 876,
  15253. bottom: 58 / 1017.87
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Macro",
  15260. height: math.unit(1, "mile"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Kachina" },
  15267. {
  15268. front: {
  15269. height: math.unit(7, "feet"),
  15270. weight: math.unit(200, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/kachina/front.svg",
  15274. extra: 1290.68 / 1119,
  15275. bottom: 36.5 / 1327.18
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(7, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Kash" },
  15289. {
  15290. looking: {
  15291. height: math.unit(2, "meters"),
  15292. weight: math.unit(300, "kg"),
  15293. name: "Looking",
  15294. image: {
  15295. source: "./media/characters/kash/looking.svg",
  15296. extra: 474 / 344,
  15297. bottom: 0.03
  15298. }
  15299. },
  15300. side: {
  15301. height: math.unit(2, "meters"),
  15302. weight: math.unit(300, "kg"),
  15303. name: "Side",
  15304. image: {
  15305. source: "./media/characters/kash/side.svg",
  15306. extra: 302 / 251,
  15307. bottom: 0.03
  15308. }
  15309. },
  15310. front: {
  15311. height: math.unit(2, "meters"),
  15312. weight: math.unit(300, "kg"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/kash/front.svg",
  15316. extra: 495 / 360,
  15317. bottom: 0.015
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(2, "meters"),
  15325. default: true
  15326. },
  15327. {
  15328. name: "Big",
  15329. height: math.unit(3, "meters")
  15330. },
  15331. {
  15332. name: "Large",
  15333. height: math.unit(5, "meters")
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Lalim" },
  15339. {
  15340. feeding: {
  15341. height: math.unit(6.7, "feet"),
  15342. weight: math.unit(350, "lb"),
  15343. name: "Feeding",
  15344. image: {
  15345. source: "./media/characters/lalim/feeding.svg",
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(6.7, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "De'Vout" },
  15359. {
  15360. front: {
  15361. height: math.unit(9.5, "feet"),
  15362. weight: math.unit(600, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/de'vout/front.svg",
  15366. extra: 1443 / 1328,
  15367. bottom: 0.025
  15368. }
  15369. },
  15370. back: {
  15371. height: math.unit(9.5, "feet"),
  15372. weight: math.unit(600, "lb"),
  15373. name: "Back",
  15374. image: {
  15375. source: "./media/characters/de'vout/back.svg",
  15376. extra: 1443 / 1328
  15377. }
  15378. },
  15379. frontDressed: {
  15380. height: math.unit(9.5, "feet"),
  15381. weight: math.unit(600, "lb"),
  15382. name: "Front (Dressed",
  15383. image: {
  15384. source: "./media/characters/de'vout/front-dressed.svg",
  15385. extra: 1443 / 1328,
  15386. bottom: 0.025
  15387. }
  15388. },
  15389. backDressed: {
  15390. height: math.unit(9.5, "feet"),
  15391. weight: math.unit(600, "lb"),
  15392. name: "Back (Dressed",
  15393. image: {
  15394. source: "./media/characters/de'vout/back-dressed.svg",
  15395. extra: 1443 / 1328
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(9.5, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Talana" },
  15409. {
  15410. front: {
  15411. height: math.unit(8, "feet"),
  15412. weight: math.unit(225, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/talana/front.svg",
  15416. extra: 1410 / 1300,
  15417. bottom: 0.015
  15418. }
  15419. },
  15420. frontDressed: {
  15421. height: math.unit(8, "feet"),
  15422. weight: math.unit(225, "lb"),
  15423. name: "Front (Dressed",
  15424. image: {
  15425. source: "./media/characters/talana/front-dressed.svg",
  15426. extra: 1410 / 1300,
  15427. bottom: 0.015
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(8, "feet"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Xeauvok" },
  15441. {
  15442. side: {
  15443. height: math.unit(7.2, "feet"),
  15444. weight: math.unit(150, "lb"),
  15445. name: "Side",
  15446. image: {
  15447. source: "./media/characters/xeauvok/side.svg",
  15448. extra: 1975 / 1523,
  15449. bottom: 0.07
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(7.2, "feet"),
  15457. default: true
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Zara" },
  15463. {
  15464. side: {
  15465. height: math.unit(10, "feet"),
  15466. weight: math.unit(900, "kg"),
  15467. name: "Side",
  15468. image: {
  15469. source: "./media/characters/zara/side.svg",
  15470. extra: 504 / 498
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(10, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Richard (Dragon)" },
  15484. {
  15485. side: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Side",
  15489. image: {
  15490. source: "./media/characters/richard-dragon/side.svg",
  15491. extra: 845 / 340,
  15492. bottom: 0.017
  15493. }
  15494. },
  15495. maw: {
  15496. height: math.unit(2.97, "feet"),
  15497. name: "Maw",
  15498. image: {
  15499. source: "./media/characters/richard-dragon/maw.svg"
  15500. }
  15501. },
  15502. },
  15503. [
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Richard (Smeargle)" },
  15508. {
  15509. front: {
  15510. height: math.unit(4, "feet"),
  15511. weight: math.unit(100, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/richard-smeargle/front.svg",
  15515. extra: 2952 / 2820,
  15516. bottom: 0.028
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(4, "feet"),
  15524. default: true
  15525. },
  15526. {
  15527. name: "Dynamax",
  15528. height: math.unit(20, "meters")
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Klay" },
  15534. {
  15535. front: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(110, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/klay/front.svg",
  15541. extra: 962 / 883,
  15542. bottom: 0.04
  15543. }
  15544. },
  15545. back: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(110, "lb"),
  15548. name: "Back",
  15549. image: {
  15550. source: "./media/characters/klay/back.svg",
  15551. extra: 962 / 883
  15552. }
  15553. },
  15554. beans: {
  15555. height: math.unit(1.15, "feet"),
  15556. name: "Beans",
  15557. image: {
  15558. source: "./media/characters/klay/beans.svg"
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Micro",
  15565. height: math.unit(6, "inches")
  15566. },
  15567. {
  15568. name: "Mini",
  15569. height: math.unit(3, "feet")
  15570. },
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(6, "feet"),
  15574. default: true
  15575. },
  15576. {
  15577. name: "Big",
  15578. height: math.unit(25, "feet")
  15579. },
  15580. {
  15581. name: "Macro",
  15582. height: math.unit(100, "feet")
  15583. },
  15584. {
  15585. name: "Megamacro",
  15586. height: math.unit(400, "feet")
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Marcus" },
  15592. {
  15593. front: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(160, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/marcus/front.svg",
  15599. extra: 734 / 676,
  15600. bottom: 0.03
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "Little",
  15607. height: math.unit(6, "feet")
  15608. },
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(110, "feet"),
  15612. default: true
  15613. },
  15614. {
  15615. name: "Macro",
  15616. height: math.unit(250, "feet")
  15617. },
  15618. {
  15619. name: "Megamacro",
  15620. height: math.unit(1000, "feet")
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Claude DelRoute" },
  15626. {
  15627. front: {
  15628. height: math.unit(7, "feet"),
  15629. weight: math.unit(275, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/claude-delroute/front.svg",
  15633. extra: 230 / 214,
  15634. bottom: 0.007
  15635. }
  15636. },
  15637. side: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(275, "lb"),
  15640. name: "Side",
  15641. image: {
  15642. source: "./media/characters/claude-delroute/side.svg",
  15643. extra: 222 / 214,
  15644. bottom: 0.01
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(7, "feet"),
  15649. weight: math.unit(275, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/claude-delroute/back.svg",
  15653. extra: 230 / 214,
  15654. bottom: 0.015
  15655. }
  15656. },
  15657. maw: {
  15658. height: math.unit(0.6407, "meters"),
  15659. name: "Maw",
  15660. image: {
  15661. source: "./media/characters/claude-delroute/maw.svg"
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(7, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Lorge",
  15673. height: math.unit(20, "feet")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Dragonien" },
  15679. {
  15680. front: {
  15681. height: math.unit(8 + 4 / 12, "feet"),
  15682. weight: math.unit(600, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/dragonien/front.svg",
  15686. extra: 100 / 94,
  15687. bottom: 3.3 / 103.3445
  15688. }
  15689. },
  15690. back: {
  15691. height: math.unit(8 + 4 / 12, "feet"),
  15692. weight: math.unit(600, "lb"),
  15693. name: "Back",
  15694. image: {
  15695. source: "./media/characters/dragonien/back.svg",
  15696. extra: 776 / 746,
  15697. bottom: 6.4 / 782.0616
  15698. }
  15699. },
  15700. foot: {
  15701. height: math.unit(1.54, "feet"),
  15702. name: "Foot",
  15703. image: {
  15704. source: "./media/characters/dragonien/foot.svg",
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(8 + 4 / 12, "feet"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(200, "feet")
  15717. },
  15718. {
  15719. name: "Megamacro",
  15720. height: math.unit(1, "mile")
  15721. },
  15722. {
  15723. name: "Gigamacro",
  15724. height: math.unit(1000, "miles")
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Desta" },
  15730. {
  15731. front: {
  15732. height: math.unit(5 + 2 / 12, "feet"),
  15733. weight: math.unit(110, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/desta/front.svg",
  15737. extra: 1482 / 1417
  15738. }
  15739. },
  15740. side: {
  15741. height: math.unit(5 + 2 / 12, "feet"),
  15742. weight: math.unit(110, "lb"),
  15743. name: "Side",
  15744. image: {
  15745. source: "./media/characters/desta/side.svg",
  15746. extra: 2579 / 2491,
  15747. bottom: 0.053
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Micro",
  15754. height: math.unit(6, "inches")
  15755. },
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(5 + 2 / 12, "feet"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(62, "feet")
  15764. },
  15765. {
  15766. name: "Megamacro",
  15767. height: math.unit(1800, "feet")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Storm Alystar" },
  15773. {
  15774. front: {
  15775. height: math.unit(10, "feet"),
  15776. weight: math.unit(700, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/storm-alystar/front.svg",
  15780. extra: 2112 / 1898,
  15781. bottom: 0.034
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Micro",
  15788. height: math.unit(3.5, "inches")
  15789. },
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(10, "feet"),
  15793. default: true
  15794. },
  15795. {
  15796. name: "Macro",
  15797. height: math.unit(400, "feet")
  15798. },
  15799. {
  15800. name: "Deific",
  15801. height: math.unit(60, "miles")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Ilia" },
  15807. {
  15808. front: {
  15809. height: math.unit(2.35, "meters"),
  15810. weight: math.unit(119, "kg"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/ilia/front.svg",
  15814. extra: 1285 / 1255,
  15815. bottom: 0.06
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(2.35, "meters")
  15823. },
  15824. {
  15825. name: "Macro",
  15826. height: math.unit(140, "meters"),
  15827. default: true
  15828. },
  15829. {
  15830. name: "Megamacro",
  15831. height: math.unit(100, "miles")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "KingDead" },
  15837. {
  15838. front: {
  15839. height: math.unit(6 + 5 / 12, "feet"),
  15840. weight: math.unit(190, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/kingdead/front.svg",
  15844. extra: 1228 / 1177
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Micro",
  15851. height: math.unit(7, "inches")
  15852. },
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(6 + 5 / 12, "feet")
  15856. },
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(150, "feet"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Megamacro",
  15864. height: math.unit(200, "miles")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Kyrehx" },
  15870. {
  15871. front: {
  15872. height: math.unit(8, "feet"),
  15873. weight: math.unit(600, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/kyrehx/front.svg",
  15877. extra: 1195 / 1095,
  15878. bottom: 0.034
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(2, "inches")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(8, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(255, "feet")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Xang" },
  15900. {
  15901. front: {
  15902. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15903. weight: math.unit(184, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/xang/front.svg",
  15907. extra: 845 / 755
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(0.935 * 146, "feet")
  15920. },
  15921. {
  15922. name: "Megamacro",
  15923. height: math.unit(0.935 * 3, "miles")
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Doc Weardno" },
  15929. {
  15930. frontDressed: {
  15931. height: math.unit(5 + 7 / 12, "feet"),
  15932. weight: math.unit(140, "lb"),
  15933. name: "Front (Dressed)",
  15934. image: {
  15935. source: "./media/characters/doc-weardno/front-dressed.svg",
  15936. extra: 263 / 234
  15937. }
  15938. },
  15939. backDressed: {
  15940. height: math.unit(5 + 7 / 12, "feet"),
  15941. weight: math.unit(140, "lb"),
  15942. name: "Back (Dressed)",
  15943. image: {
  15944. source: "./media/characters/doc-weardno/back-dressed.svg",
  15945. extra: 266 / 238
  15946. }
  15947. },
  15948. front: {
  15949. height: math.unit(5 + 7 / 12, "feet"),
  15950. weight: math.unit(140, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/doc-weardno/front.svg",
  15954. extra: 254 / 233
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Micro",
  15961. height: math.unit(3, "inches")
  15962. },
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(5 + 7 / 12, "feet"),
  15966. default: true
  15967. },
  15968. {
  15969. name: "Macro",
  15970. height: math.unit(25, "feet")
  15971. },
  15972. {
  15973. name: "Megamacro",
  15974. height: math.unit(2, "miles")
  15975. },
  15976. ]
  15977. ))
  15978. characterMakers.push(() => makeCharacter(
  15979. { name: "Seth Whilst" },
  15980. {
  15981. front: {
  15982. height: math.unit(6 + 2 / 12, "feet"),
  15983. weight: math.unit(153, "lb"),
  15984. name: "Front",
  15985. image: {
  15986. source: "./media/characters/seth-whilst/front.svg",
  15987. bottom: 0.07
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Micro",
  15994. height: math.unit(5, "inches")
  15995. },
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 2 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Pocket Jabari" },
  16005. {
  16006. front: {
  16007. height: math.unit(3, "inches"),
  16008. weight: math.unit(8, "grams"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/pocket-jabari/front.svg",
  16012. extra: 1024 / 974,
  16013. bottom: 0.039
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Minimicro",
  16020. height: math.unit(8, "mm")
  16021. },
  16022. {
  16023. name: "Micro",
  16024. height: math.unit(3, "inches"),
  16025. default: true
  16026. },
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(3, "feet")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Sapphy" },
  16035. {
  16036. front: {
  16037. height: math.unit(15, "feet"),
  16038. weight: math.unit(3280, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/sapphy/front.svg",
  16042. extra: 671 / 577,
  16043. bottom: 0.085
  16044. }
  16045. },
  16046. back: {
  16047. height: math.unit(15, "feet"),
  16048. weight: math.unit(3280, "lb"),
  16049. name: "Back",
  16050. image: {
  16051. source: "./media/characters/sapphy/back.svg",
  16052. extra: 631 / 607,
  16053. bottom: 0.045
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(15, "feet")
  16061. },
  16062. {
  16063. name: "Casual Macro",
  16064. height: math.unit(120, "feet")
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(2150, "feet"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Megamacro",
  16073. height: math.unit(8, "miles")
  16074. },
  16075. {
  16076. name: "Galaxy Mom",
  16077. height: math.unit(6, "megalightyears")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Kiro" },
  16083. {
  16084. front: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(170, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/kiro/front.svg",
  16090. extra: 1064 / 1012,
  16091. bottom: 0.052
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Micro",
  16098. height: math.unit(6, "inches")
  16099. },
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6, "feet"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(72, "feet")
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Irishfox" },
  16113. {
  16114. front: {
  16115. height: math.unit(5 + 9 / 12, "feet"),
  16116. weight: math.unit(175, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/irishfox/front.svg",
  16120. extra: 1912 / 1680,
  16121. bottom: 0.02
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Nano",
  16128. height: math.unit(1, "mm")
  16129. },
  16130. {
  16131. name: "Micro",
  16132. height: math.unit(2, "inches")
  16133. },
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(5 + 9 / 12, "feet"),
  16137. default: true
  16138. },
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(45, "feet")
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Aronai Sieyes" },
  16147. {
  16148. front: {
  16149. height: math.unit(6 + 1 / 12, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/aronai-sieyes/front.svg",
  16154. extra: 1556 / 1480,
  16155. bottom: 0.015
  16156. }
  16157. },
  16158. side: {
  16159. height: math.unit(6 + 1 / 12, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Side",
  16162. image: {
  16163. source: "./media/characters/aronai-sieyes/side.svg",
  16164. extra: 1433 / 1390,
  16165. bottom: 0.0393
  16166. }
  16167. },
  16168. back: {
  16169. height: math.unit(6 + 1 / 12, "feet"),
  16170. weight: math.unit(150, "lb"),
  16171. name: "Back",
  16172. image: {
  16173. source: "./media/characters/aronai-sieyes/back.svg",
  16174. extra: 1544 / 1494,
  16175. bottom: 0.02
  16176. }
  16177. },
  16178. frontClothed: {
  16179. height: math.unit(6 + 1 / 12, "feet"),
  16180. weight: math.unit(150, "lb"),
  16181. name: "Front (Clothed)",
  16182. image: {
  16183. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16184. extra: 1582 / 1527
  16185. }
  16186. },
  16187. feral: {
  16188. height: math.unit(18, "feet"),
  16189. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16190. name: "Feral",
  16191. image: {
  16192. source: "./media/characters/aronai-sieyes/feral.svg",
  16193. extra: 1530 / 1240,
  16194. bottom: 0.035
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Micro",
  16201. height: math.unit(2, "inches")
  16202. },
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(6 + 1 / 12, "feet"),
  16206. default: true
  16207. }
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Xuna" },
  16212. {
  16213. front: {
  16214. height: math.unit(12, "feet"),
  16215. weight: math.unit(410, "kg"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/xuna/front.svg",
  16219. extra: 2184 / 1980
  16220. }
  16221. },
  16222. side: {
  16223. height: math.unit(12, "feet"),
  16224. weight: math.unit(410, "kg"),
  16225. name: "Side",
  16226. image: {
  16227. source: "./media/characters/xuna/side.svg",
  16228. extra: 2184 / 1980
  16229. }
  16230. },
  16231. back: {
  16232. height: math.unit(12, "feet"),
  16233. weight: math.unit(410, "kg"),
  16234. name: "Back",
  16235. image: {
  16236. source: "./media/characters/xuna/back.svg",
  16237. extra: 2184 / 1980
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Nano glow",
  16244. height: math.unit(10, "nm")
  16245. },
  16246. {
  16247. name: "Micro floof",
  16248. height: math.unit(0.3, "m")
  16249. },
  16250. {
  16251. name: "Huggable softy boi",
  16252. height: math.unit(3.6576, "m"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Admirable floof",
  16257. height: math.unit(80, "meters")
  16258. },
  16259. {
  16260. name: "Gentle macro",
  16261. height: math.unit(300, "meters")
  16262. },
  16263. {
  16264. name: "Very careful floof",
  16265. height: math.unit(3200, "meters")
  16266. },
  16267. {
  16268. name: "The mega floof",
  16269. height: math.unit(36000, "meters")
  16270. },
  16271. {
  16272. name: "Giga-fur-Wicker",
  16273. height: math.unit(4800000, "meters")
  16274. },
  16275. {
  16276. name: "Licky world",
  16277. height: math.unit(20000000, "meters")
  16278. },
  16279. {
  16280. name: "Floofy cyan sun",
  16281. height: math.unit(1500000000, "meters")
  16282. },
  16283. {
  16284. name: "Milky Wicker",
  16285. height: math.unit(1000000000000000000000, "meters")
  16286. },
  16287. {
  16288. name: "The observing Wicker",
  16289. height: math.unit(999999999999999999999999999, "meters")
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Arokha Sieyes" },
  16295. {
  16296. front: {
  16297. height: math.unit(5 + 9 / 12, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/arokha-sieyes/front.svg",
  16302. extra: 1425 / 1284,
  16303. bottom: 0.05
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(5 + 9 / 12, "feet")
  16311. },
  16312. {
  16313. name: "Macro",
  16314. height: math.unit(30, "meters"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Arokh Sieyes" },
  16321. {
  16322. front: {
  16323. height: math.unit(6, "feet"),
  16324. weight: math.unit(180, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/arokh-sieyes/front.svg",
  16328. extra: 1830 / 1769,
  16329. bottom: 0.01
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(6, "feet")
  16337. },
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(30, "meters"),
  16341. default: true
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Goldeneye" },
  16347. {
  16348. side: {
  16349. height: math.unit(13 + 1 / 12, "feet"),
  16350. weight: math.unit(8.5, "tonnes"),
  16351. name: "Side",
  16352. image: {
  16353. source: "./media/characters/goldeneye/side.svg",
  16354. extra: 1182 / 778,
  16355. bottom: 0.067
  16356. }
  16357. },
  16358. paw: {
  16359. height: math.unit(3.4, "feet"),
  16360. name: "Paw",
  16361. image: {
  16362. source: "./media/characters/goldeneye/paw.svg"
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(13 + 1 / 12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Leonardo Lycheborne" },
  16376. {
  16377. front: {
  16378. height: math.unit(6 + 1 / 12, "feet"),
  16379. weight: math.unit(210, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/leonardo-lycheborne/front.svg",
  16383. extra: 390 / 365,
  16384. bottom: 0.032
  16385. }
  16386. },
  16387. side: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(210, "lb"),
  16390. name: "Side",
  16391. image: {
  16392. source: "./media/characters/leonardo-lycheborne/side.svg",
  16393. extra: 390 / 365,
  16394. bottom: 0.005
  16395. }
  16396. },
  16397. back: {
  16398. height: math.unit(6 + 1 / 12, "feet"),
  16399. weight: math.unit(210, "lb"),
  16400. name: "Back",
  16401. image: {
  16402. source: "./media/characters/leonardo-lycheborne/back.svg",
  16403. extra: 392 / 366,
  16404. bottom: 0.01
  16405. }
  16406. },
  16407. hand: {
  16408. height: math.unit(1.08, "feet"),
  16409. name: "Hand",
  16410. image: {
  16411. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16412. }
  16413. },
  16414. foot: {
  16415. height: math.unit(1.32, "feet"),
  16416. name: "Foot",
  16417. image: {
  16418. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16419. }
  16420. },
  16421. were: {
  16422. height: math.unit(20, "feet"),
  16423. weight: math.unit(7800, "lb"),
  16424. name: "Were",
  16425. image: {
  16426. source: "./media/characters/leonardo-lycheborne/were.svg",
  16427. extra: 308 / 294,
  16428. bottom: 0.048
  16429. }
  16430. },
  16431. feral: {
  16432. height: math.unit(7.5, "feet"),
  16433. weight: math.unit(600, "lb"),
  16434. name: "Feral",
  16435. image: {
  16436. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16437. extra: 210 / 186,
  16438. bottom: 0.108
  16439. }
  16440. },
  16441. taur: {
  16442. height: math.unit(11, "feet"),
  16443. weight: math.unit(3300, "lb"),
  16444. name: "Taur",
  16445. image: {
  16446. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16447. extra: 320 / 303,
  16448. bottom: 0.025
  16449. }
  16450. },
  16451. barghest: {
  16452. height: math.unit(11, "feet"),
  16453. weight: math.unit(1300, "lb"),
  16454. name: "Barghest",
  16455. image: {
  16456. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16457. extra: 323 / 302,
  16458. bottom: 0.027
  16459. }
  16460. },
  16461. dick: {
  16462. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16463. name: "Dick",
  16464. image: {
  16465. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16466. }
  16467. },
  16468. dickWere: {
  16469. height: math.unit((20) / 3.8, "feet"),
  16470. name: "Dick (Were)",
  16471. image: {
  16472. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(6 + 1 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Jet" },
  16486. {
  16487. front: {
  16488. height: math.unit(10, "feet"),
  16489. weight: math.unit(350, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/jet/front.svg",
  16493. extra: 2050 / 1980,
  16494. bottom: 0.013
  16495. }
  16496. },
  16497. back: {
  16498. height: math.unit(10, "feet"),
  16499. weight: math.unit(350, "lb"),
  16500. name: "Back",
  16501. image: {
  16502. source: "./media/characters/jet/back.svg",
  16503. extra: 2050 / 1980,
  16504. bottom: 0.013
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Micro",
  16511. height: math.unit(6, "inches")
  16512. },
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(10, "feet"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Macro",
  16520. height: math.unit(100, "feet")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Tanarath" },
  16526. {
  16527. front: {
  16528. height: math.unit(15, "feet"),
  16529. weight: math.unit(2800, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/tanarath/front.svg",
  16533. extra: 2392 / 2220,
  16534. bottom: 0.03
  16535. }
  16536. },
  16537. back: {
  16538. height: math.unit(15, "feet"),
  16539. weight: math.unit(2800, "lb"),
  16540. name: "Back",
  16541. image: {
  16542. source: "./media/characters/tanarath/back.svg",
  16543. extra: 2392 / 2220,
  16544. bottom: 0.03
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(15, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Patty CattyBatty" },
  16558. {
  16559. front: {
  16560. height: math.unit(7 + 1 / 12, "feet"),
  16561. weight: math.unit(175, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/patty-cattybatty/front.svg",
  16565. extra: 908 / 874,
  16566. bottom: 0.025
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Micro",
  16573. height: math.unit(1, "inch")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(7 + 1 / 12, "feet")
  16578. },
  16579. {
  16580. name: "Mini Macro",
  16581. height: math.unit(155, "feet")
  16582. },
  16583. {
  16584. name: "Macro",
  16585. height: math.unit(1077, "feet")
  16586. },
  16587. {
  16588. name: "Mega Macro",
  16589. height: math.unit(47650, "feet"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Giga Macro",
  16594. height: math.unit(440, "miles")
  16595. },
  16596. {
  16597. name: "Tera Macro",
  16598. height: math.unit(8700, "miles")
  16599. },
  16600. {
  16601. name: "Planetary Macro",
  16602. height: math.unit(32700, "miles")
  16603. },
  16604. {
  16605. name: "Solar Macro",
  16606. height: math.unit(550000, "miles")
  16607. },
  16608. {
  16609. name: "Celestial Macro",
  16610. height: math.unit(2.5, "AU")
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Cappu" },
  16616. {
  16617. front: {
  16618. height: math.unit(4 + 5 / 12, "feet"),
  16619. weight: math.unit(90, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/cappu/front.svg",
  16623. extra: 1247 / 1152,
  16624. bottom: 0.012
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(4 + 5 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Sebi" },
  16638. {
  16639. frontDressed: {
  16640. height: math.unit(70, "cm"),
  16641. weight: math.unit(6, "kg"),
  16642. name: "Front (Dressed)",
  16643. image: {
  16644. source: "./media/characters/sebi/front-dressed.svg",
  16645. extra: 713.5 / 686.5,
  16646. bottom: 0.003
  16647. }
  16648. },
  16649. front: {
  16650. height: math.unit(70, "cm"),
  16651. weight: math.unit(5, "kg"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/sebi/front.svg",
  16655. extra: 713.5 / 686.5,
  16656. bottom: 0.003
  16657. }
  16658. }
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(70, "cm"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Macro",
  16668. height: math.unit(8, "meters")
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Typhek" },
  16674. {
  16675. front: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(150, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/typhek/front.svg",
  16681. extra: 1948 / 1929,
  16682. bottom: 0.025
  16683. }
  16684. },
  16685. side: {
  16686. height: math.unit(6, "feet"),
  16687. weight: math.unit(150, "lb"),
  16688. name: "Side",
  16689. image: {
  16690. source: "./media/characters/typhek/side.svg",
  16691. extra: 2034 / 2010,
  16692. bottom: 0.003
  16693. }
  16694. },
  16695. back: {
  16696. height: math.unit(6, "feet"),
  16697. weight: math.unit(150, "lb"),
  16698. name: "Back",
  16699. image: {
  16700. source: "./media/characters/typhek/back.svg",
  16701. extra: 2005 / 1978,
  16702. bottom: 0.004
  16703. }
  16704. },
  16705. palm: {
  16706. height: math.unit(1.2, "feet"),
  16707. name: "Palm",
  16708. image: {
  16709. source: "./media/characters/typhek/palm.svg"
  16710. }
  16711. },
  16712. fist: {
  16713. height: math.unit(1.1, "feet"),
  16714. name: "Fist",
  16715. image: {
  16716. source: "./media/characters/typhek/fist.svg"
  16717. }
  16718. },
  16719. foot: {
  16720. height: math.unit(1.57, "feet"),
  16721. name: "Foot",
  16722. image: {
  16723. source: "./media/characters/typhek/foot.svg"
  16724. }
  16725. },
  16726. sole: {
  16727. height: math.unit(2.05, "feet"),
  16728. name: "Sole",
  16729. image: {
  16730. source: "./media/characters/typhek/sole.svg"
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(40, "stories"),
  16738. default: true
  16739. },
  16740. {
  16741. name: "Megamacro",
  16742. height: math.unit(1, "mile")
  16743. },
  16744. {
  16745. name: "Gigamacro",
  16746. height: math.unit(4000, "solarradii")
  16747. },
  16748. {
  16749. name: "Universal",
  16750. height: math.unit(1.1, "universes")
  16751. }
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Kassy" },
  16756. {
  16757. side: {
  16758. height: math.unit(5 + 7 / 12, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Side",
  16761. image: {
  16762. source: "./media/characters/kassy/side.svg",
  16763. extra: 1280 / 1225,
  16764. bottom: 0.002
  16765. }
  16766. },
  16767. front: {
  16768. height: math.unit(5 + 7 / 12, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/kassy/front.svg",
  16773. extra: 1280 / 1225,
  16774. bottom: 0.025
  16775. }
  16776. },
  16777. back: {
  16778. height: math.unit(5 + 7 / 12, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Back",
  16781. image: {
  16782. source: "./media/characters/kassy/back.svg",
  16783. extra: 1280 / 1225,
  16784. bottom: 0.002
  16785. }
  16786. },
  16787. foot: {
  16788. height: math.unit(1.266, "feet"),
  16789. name: "Foot",
  16790. image: {
  16791. source: "./media/characters/kassy/foot.svg"
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(5 + 7 / 12, "feet")
  16799. },
  16800. {
  16801. name: "Macro",
  16802. height: math.unit(137, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Megamacro",
  16807. height: math.unit(1, "mile")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Neil" },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 1 / 12, "feet"),
  16816. weight: math.unit(200, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/neil/front.svg",
  16820. extra: 1326 / 1250,
  16821. bottom: 0.023
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6 + 1 / 12, "feet"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(200, "feet")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Atticus" },
  16839. {
  16840. front: {
  16841. height: math.unit(5 + 9 / 12, "feet"),
  16842. weight: math.unit(190, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/atticus/front.svg",
  16846. extra: 2934 / 2785,
  16847. bottom: 0.025
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(5 + 9 / 12, "feet"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Macro",
  16859. height: math.unit(180, "feet")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Milo" },
  16865. {
  16866. side: {
  16867. height: math.unit(9, "feet"),
  16868. weight: math.unit(650, "lb"),
  16869. name: "Side",
  16870. image: {
  16871. source: "./media/characters/milo/side.svg",
  16872. extra: 2644 / 2310,
  16873. bottom: 0.032
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(9, "feet"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Macro",
  16885. height: math.unit(300, "feet")
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Ijzer" },
  16891. {
  16892. side: {
  16893. height: math.unit(8, "meters"),
  16894. weight: math.unit(90000, "kg"),
  16895. name: "Side",
  16896. image: {
  16897. source: "./media/characters/ijzer/side.svg",
  16898. extra: 2756 / 1600,
  16899. bottom: 0.01
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Small",
  16906. height: math.unit(3, "meters")
  16907. },
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(8, "meters"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Normal+",
  16915. height: math.unit(10, "meters")
  16916. },
  16917. {
  16918. name: "Bigger",
  16919. height: math.unit(24, "meters")
  16920. },
  16921. {
  16922. name: "Huge",
  16923. height: math.unit(80, "meters")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Luca Cervicum" },
  16929. {
  16930. front: {
  16931. height: math.unit(6 + 2 / 12, "feet"),
  16932. weight: math.unit(153, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/luca-cervicum/front.svg",
  16936. extra: 370 / 327,
  16937. bottom: 0.015
  16938. }
  16939. },
  16940. back: {
  16941. height: math.unit(6 + 2 / 12, "feet"),
  16942. weight: math.unit(153, "lb"),
  16943. name: "Back",
  16944. image: {
  16945. source: "./media/characters/luca-cervicum/back.svg",
  16946. extra: 367 / 333,
  16947. bottom: 0.005
  16948. }
  16949. },
  16950. frontGear: {
  16951. height: math.unit(6 + 2 / 12, "feet"),
  16952. weight: math.unit(173, "lb"),
  16953. name: "Front (Gear)",
  16954. image: {
  16955. source: "./media/characters/luca-cervicum/front-gear.svg",
  16956. extra: 377 / 333,
  16957. bottom: 0.006
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(6 + 2 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Oliver" },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 1 / 12, "feet"),
  16974. weight: math.unit(304, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/oliver/front.svg",
  16978. extra: 157 / 143,
  16979. bottom: 0.08
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(6 + 1 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Shane" },
  16993. {
  16994. front: {
  16995. height: math.unit(5 + 7 / 12, "feet"),
  16996. weight: math.unit(140, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/shane/front.svg",
  17000. extra: 304 / 289,
  17001. bottom: 0.005
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5 + 7 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Shin" },
  17015. {
  17016. front: {
  17017. height: math.unit(5 + 9 / 12, "feet"),
  17018. weight: math.unit(178, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/shin/front.svg",
  17022. extra: 159 / 151,
  17023. bottom: 0.015
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(5 + 9 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Xerxes" },
  17037. {
  17038. front: {
  17039. height: math.unit(5 + 10 / 12, "feet"),
  17040. weight: math.unit(168, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/xerxes/front.svg",
  17044. extra: 282 / 260,
  17045. bottom: 0.045
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(5 + 10 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Chaska" },
  17059. {
  17060. front: {
  17061. height: math.unit(6 + 7 / 12, "feet"),
  17062. weight: math.unit(208, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/chaska/front.svg",
  17066. extra: 332 / 319,
  17067. bottom: 0.015
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(6 + 7 / 12, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Enuk" },
  17081. {
  17082. front: {
  17083. height: math.unit(5 + 8 / 12, "feet"),
  17084. weight: math.unit(208, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/enuk/front.svg",
  17088. extra: 437 / 406,
  17089. bottom: 0.02
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(5 + 8 / 12, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Bruun" },
  17103. {
  17104. front: {
  17105. height: math.unit(5 + 10 / 12, "feet"),
  17106. weight: math.unit(252, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/bruun/front.svg",
  17110. extra: 197 / 187,
  17111. bottom: 0.012
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(5 + 10 / 12, "feet"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Alexeev" },
  17125. {
  17126. front: {
  17127. height: math.unit(6 + 10 / 12, "feet"),
  17128. weight: math.unit(255, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/alexeev/front.svg",
  17132. extra: 213 / 200,
  17133. bottom: 0.05
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(6 + 10 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Evelyn" },
  17147. {
  17148. front: {
  17149. height: math.unit(2 + 8 / 12, "feet"),
  17150. weight: math.unit(22, "lb"),
  17151. name: "Front",
  17152. image: {
  17153. source: "./media/characters/evelyn/front.svg",
  17154. extra: 208 / 180
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(2 + 8 / 12, "feet"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Inca" },
  17168. {
  17169. front: {
  17170. height: math.unit(5 + 9 / 12, "feet"),
  17171. weight: math.unit(139, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/inca/front.svg",
  17175. extra: 294 / 291,
  17176. bottom: 0.03
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(5 + 9 / 12, "feet"),
  17184. default: true
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Magdalene" },
  17190. {
  17191. front: {
  17192. height: math.unit(5 + 1 / 12, "feet"),
  17193. weight: math.unit(84, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/magdalene/front.svg",
  17197. extra: 293 / 273
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(5 + 1 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Mera" },
  17211. {
  17212. front: {
  17213. height: math.unit(6 + 3 / 12, "feet"),
  17214. weight: math.unit(185, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/mera/front.svg",
  17218. extra: 291 / 277,
  17219. bottom: 0.03
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6 + 3 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Ceres" },
  17233. {
  17234. front: {
  17235. height: math.unit(6 + 7 / 12, "feet"),
  17236. weight: math.unit(160, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/ceres/front.svg",
  17240. extra: 1023 / 950,
  17241. bottom: 0.027
  17242. }
  17243. },
  17244. back: {
  17245. height: math.unit(6 + 7 / 12, "feet"),
  17246. weight: math.unit(160, "lb"),
  17247. name: "Back",
  17248. image: {
  17249. source: "./media/characters/ceres/back.svg",
  17250. extra: 1023 / 950
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(6 + 7 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Kris" },
  17264. {
  17265. front: {
  17266. height: math.unit(5 + 10 / 12, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/kris/front.svg",
  17271. extra: 885 / 803,
  17272. bottom: 0.03
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(5 + 10 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Taluthus" },
  17286. {
  17287. front: {
  17288. height: math.unit(7, "feet"),
  17289. weight: math.unit(120, "kg"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/taluthus/front.svg",
  17293. extra: 903 / 833,
  17294. bottom: 0.015
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(7, "feet"),
  17302. default: true
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(300, "feet")
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Dawn" },
  17312. {
  17313. front: {
  17314. height: math.unit(5 + 9 / 12, "feet"),
  17315. weight: math.unit(145, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/dawn/front.svg",
  17319. extra: 2094 / 2016,
  17320. bottom: 0.025
  17321. }
  17322. },
  17323. back: {
  17324. height: math.unit(5 + 9 / 12, "feet"),
  17325. weight: math.unit(160, "lb"),
  17326. name: "Back",
  17327. image: {
  17328. source: "./media/characters/dawn/back.svg",
  17329. extra: 2112 / 2080,
  17330. bottom: 0.005
  17331. }
  17332. },
  17333. },
  17334. [
  17335. {
  17336. name: "Normal",
  17337. height: math.unit(6 + 7 / 12, "feet"),
  17338. default: true
  17339. },
  17340. ]
  17341. ))
  17342. characterMakers.push(() => makeCharacter(
  17343. { name: "Arador" },
  17344. {
  17345. anthro: {
  17346. height: math.unit(8 + 3 / 12, "feet"),
  17347. weight: math.unit(450, "lb"),
  17348. name: "Anthro",
  17349. image: {
  17350. source: "./media/characters/arador/anthro.svg",
  17351. extra: 1835 / 1718,
  17352. bottom: 0.025
  17353. }
  17354. },
  17355. feral: {
  17356. height: math.unit(4, "feet"),
  17357. weight: math.unit(200, "lb"),
  17358. name: "Feral",
  17359. image: {
  17360. source: "./media/characters/arador/feral.svg",
  17361. extra: 1683 / 1514,
  17362. bottom: 0.07
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(8 + 3 / 12, "feet")
  17370. },
  17371. {
  17372. name: "Macro",
  17373. height: math.unit(82.5, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Dharsi" },
  17380. {
  17381. front: {
  17382. height: math.unit(5 + 10 / 12, "feet"),
  17383. weight: math.unit(125, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/dharsi/front.svg",
  17387. extra: 716 / 630,
  17388. bottom: 0.035
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Nano",
  17395. height: math.unit(100, "nm")
  17396. },
  17397. {
  17398. name: "Micro",
  17399. height: math.unit(2, "inches")
  17400. },
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(5 + 10 / 12, "feet"),
  17404. default: true
  17405. },
  17406. {
  17407. name: "Macro",
  17408. height: math.unit(1000, "feet")
  17409. },
  17410. {
  17411. name: "Megamacro",
  17412. height: math.unit(10, "miles")
  17413. },
  17414. {
  17415. name: "Gigamacro",
  17416. height: math.unit(3000, "miles")
  17417. },
  17418. {
  17419. name: "Teramacro",
  17420. height: math.unit(500000, "miles")
  17421. },
  17422. {
  17423. name: "Teramacro+",
  17424. height: math.unit(30, "galaxies")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Deathy" },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(150, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/deathy/front.svg",
  17437. extra: 1552 / 1463,
  17438. bottom: 0.025
  17439. }
  17440. },
  17441. side: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Side",
  17445. image: {
  17446. source: "./media/characters/deathy/side.svg",
  17447. extra: 1604 / 1455,
  17448. bottom: 0.025
  17449. }
  17450. },
  17451. back: {
  17452. height: math.unit(6, "feet"),
  17453. weight: math.unit(150, "lb"),
  17454. name: "Back",
  17455. image: {
  17456. source: "./media/characters/deathy/back.svg",
  17457. extra: 1580 / 1463,
  17458. bottom: 0.005
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Micro",
  17465. height: math.unit(5, "millimeters")
  17466. },
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 5 / 12, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Juniper" },
  17476. {
  17477. front: {
  17478. height: math.unit(16, "feet"),
  17479. weight: math.unit(4000, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/juniper/front.svg",
  17483. bottom: 0.04
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(16, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Hipster" },
  17497. {
  17498. front: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/hipster/front.svg",
  17504. extra: 1312 / 1209,
  17505. bottom: 0.025
  17506. }
  17507. },
  17508. back: {
  17509. height: math.unit(6, "feet"),
  17510. weight: math.unit(150, "lb"),
  17511. name: "Back",
  17512. image: {
  17513. source: "./media/characters/hipster/back.svg",
  17514. extra: 1281 / 1196,
  17515. bottom: 0.01
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Micro",
  17522. height: math.unit(1, "mm")
  17523. },
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(4, "inches"),
  17527. default: true
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(500, "feet")
  17532. },
  17533. {
  17534. name: "Megamacro",
  17535. height: math.unit(1000, "miles")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Tendirmuldr" },
  17541. {
  17542. front: {
  17543. height: math.unit(6, "feet"),
  17544. weight: math.unit(150, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/tendirmuldr/front.svg",
  17548. extra: 1878 / 1772,
  17549. bottom: 0.015
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Megamacro",
  17556. height: math.unit(1500, "miles"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Mort" },
  17563. {
  17564. front: {
  17565. height: math.unit(14, "feet"),
  17566. weight: math.unit(12000, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/mort/front.svg",
  17570. extra: 365 / 318,
  17571. bottom: 0.01
  17572. }
  17573. },
  17574. side: {
  17575. height: math.unit(14, "feet"),
  17576. weight: math.unit(12000, "lb"),
  17577. name: "Side",
  17578. image: {
  17579. source: "./media/characters/mort/side.svg",
  17580. extra: 365 / 318,
  17581. bottom: 0.052
  17582. },
  17583. default: true
  17584. },
  17585. back: {
  17586. height: math.unit(14, "feet"),
  17587. weight: math.unit(12000, "lb"),
  17588. name: "Back",
  17589. image: {
  17590. source: "./media/characters/mort/back.svg",
  17591. extra: 371 / 332,
  17592. bottom: 0.18
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(14, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Lycoa" },
  17606. {
  17607. front: {
  17608. height: math.unit(8, "feet"),
  17609. weight: math.unit(1, "ton"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/lycoa/front.svg",
  17613. extra: 1875 / 1789,
  17614. bottom: 0.022
  17615. }
  17616. },
  17617. back: {
  17618. height: math.unit(8, "feet"),
  17619. weight: math.unit(1, "ton"),
  17620. name: "Back",
  17621. image: {
  17622. source: "./media/characters/lycoa/back.svg",
  17623. extra: 1835 / 1781,
  17624. bottom: 0.03
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(8, "feet"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Macro",
  17636. height: math.unit(30, "feet")
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Naldara" },
  17642. {
  17643. front: {
  17644. height: math.unit(4 + 2 / 12, "feet"),
  17645. weight: math.unit(70, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/naldara/front.svg",
  17649. extra: 841 / 720,
  17650. bottom: 0.04
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(4 + 2 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Briar" },
  17664. {
  17665. front: {
  17666. height: math.unit(13 + 7 / 12, "feet"),
  17667. weight: math.unit(1500, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/briar/front.svg",
  17671. extra: 626 / 596,
  17672. bottom: 0.08
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(13 + 7 / 12, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Vanguard" },
  17686. {
  17687. side: {
  17688. height: math.unit(10, "feet"),
  17689. weight: math.unit(500, "lb"),
  17690. name: "Side",
  17691. image: {
  17692. source: "./media/characters/vanguard/side.svg",
  17693. extra: 502 / 425,
  17694. bottom: 0.087
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(10, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Artemis" },
  17708. {
  17709. front: {
  17710. height: math.unit(7.5, "feet"),
  17711. weight: math.unit(2, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/artemis/front.svg",
  17715. extra: 1192 / 1075,
  17716. bottom: 0.07
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(7.5, "feet"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Enlarged",
  17728. height: math.unit(12, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Kira" },
  17734. {
  17735. front: {
  17736. height: math.unit(5 + 3 / 12, "feet"),
  17737. weight: math.unit(160, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/kira/front.svg",
  17741. extra: 906 / 786,
  17742. bottom: 0.01
  17743. }
  17744. },
  17745. back: {
  17746. height: math.unit(5 + 3 / 12, "feet"),
  17747. weight: math.unit(160, "lb"),
  17748. name: "Back",
  17749. image: {
  17750. source: "./media/characters/kira/back.svg",
  17751. extra: 882 / 757,
  17752. bottom: 0.005
  17753. }
  17754. },
  17755. frontDressed: {
  17756. height: math.unit(5 + 3 / 12, "feet"),
  17757. weight: math.unit(160, "lb"),
  17758. name: "Front (Dressed)",
  17759. image: {
  17760. source: "./media/characters/kira/front-dressed.svg",
  17761. extra: 906 / 786,
  17762. bottom: 0.01
  17763. }
  17764. },
  17765. beans: {
  17766. height: math.unit(0.92, "feet"),
  17767. name: "Beans",
  17768. image: {
  17769. source: "./media/characters/kira/beans.svg"
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(5 + 3 / 12, "feet"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Scramble" },
  17783. {
  17784. front: {
  17785. height: math.unit(5 + 4 / 12, "feet"),
  17786. weight: math.unit(145, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/scramble/front.svg",
  17790. extra: 763 / 727,
  17791. bottom: 0.05
  17792. }
  17793. },
  17794. back: {
  17795. height: math.unit(5 + 4 / 12, "feet"),
  17796. weight: math.unit(145, "lb"),
  17797. name: "Back",
  17798. image: {
  17799. source: "./media/characters/scramble/back.svg",
  17800. extra: 826 / 737,
  17801. bottom: 0.002
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(5 + 4 / 12, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Biscuit" },
  17815. {
  17816. side: {
  17817. height: math.unit(6 + 2 / 12, "feet"),
  17818. weight: math.unit(190, "lb"),
  17819. name: "Side",
  17820. image: {
  17821. source: "./media/characters/biscuit/side.svg",
  17822. extra: 858 / 791,
  17823. bottom: 0.044
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(6 + 2 / 12, "feet"),
  17831. default: true
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Poffin" },
  17837. {
  17838. front: {
  17839. height: math.unit(5 + 2 / 12, "feet"),
  17840. weight: math.unit(120, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/poffin/front.svg",
  17844. extra: 786 / 680,
  17845. bottom: 0.005
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(5 + 2 / 12, "feet"),
  17853. default: true
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Dhari" },
  17859. {
  17860. front: {
  17861. height: math.unit(6 + 3 / 12, "feet"),
  17862. weight: math.unit(519, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/dhari/front.svg",
  17866. extra: 1048 / 946,
  17867. bottom: 0.015
  17868. }
  17869. },
  17870. back: {
  17871. height: math.unit(6 + 3 / 12, "feet"),
  17872. weight: math.unit(519, "lb"),
  17873. name: "Back",
  17874. image: {
  17875. source: "./media/characters/dhari/back.svg",
  17876. extra: 1048 / 931,
  17877. bottom: 0.005
  17878. }
  17879. },
  17880. frontDressed: {
  17881. height: math.unit(6 + 3 / 12, "feet"),
  17882. weight: math.unit(519, "lb"),
  17883. name: "Front (Dressed)",
  17884. image: {
  17885. source: "./media/characters/dhari/front-dressed.svg",
  17886. extra: 1713 / 1546,
  17887. bottom: 0.02
  17888. }
  17889. },
  17890. backDressed: {
  17891. height: math.unit(6 + 3 / 12, "feet"),
  17892. weight: math.unit(519, "lb"),
  17893. name: "Back (Dressed)",
  17894. image: {
  17895. source: "./media/characters/dhari/back-dressed.svg",
  17896. extra: 1699 / 1537,
  17897. bottom: 0.01
  17898. }
  17899. },
  17900. maw: {
  17901. height: math.unit(0.95, "feet"),
  17902. name: "Maw",
  17903. image: {
  17904. source: "./media/characters/dhari/maw.svg"
  17905. }
  17906. },
  17907. wereFront: {
  17908. height: math.unit(12 + 8 / 12, "feet"),
  17909. weight: math.unit(4000, "lb"),
  17910. name: "Front (Were)",
  17911. image: {
  17912. source: "./media/characters/dhari/were-front.svg",
  17913. extra: 1065 / 969,
  17914. bottom: 0.015
  17915. }
  17916. },
  17917. wereBack: {
  17918. height: math.unit(12 + 8 / 12, "feet"),
  17919. weight: math.unit(4000, "lb"),
  17920. name: "Back (Were)",
  17921. image: {
  17922. source: "./media/characters/dhari/were-back.svg",
  17923. extra: 1065 / 969,
  17924. bottom: 0.012
  17925. }
  17926. },
  17927. wereMaw: {
  17928. height: math.unit(0.625, "meters"),
  17929. name: "Maw (Were)",
  17930. image: {
  17931. source: "./media/characters/dhari/were-maw.svg"
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(6 + 3 / 12, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Rena Dyne" },
  17945. {
  17946. anthro: {
  17947. height: math.unit(5 + 7 / 12, "feet"),
  17948. weight: math.unit(175, "lb"),
  17949. name: "Anthro",
  17950. image: {
  17951. source: "./media/characters/rena-dyne/anthro.svg",
  17952. extra: 1849 / 1785,
  17953. bottom: 0.005
  17954. }
  17955. },
  17956. taur: {
  17957. height: math.unit(15 + 6 / 12, "feet"),
  17958. weight: math.unit(8000, "lb"),
  17959. name: "Taur",
  17960. image: {
  17961. source: "./media/characters/rena-dyne/taur.svg",
  17962. extra: 2315 / 2234,
  17963. bottom: 0.033
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Normal",
  17970. height: math.unit(5 + 7 / 12, "feet"),
  17971. default: true
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Weremeep" },
  17977. {
  17978. front: {
  17979. height: math.unit(8, "feet"),
  17980. weight: math.unit(600, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/weremeep/front.svg",
  17984. extra: 967 / 862,
  17985. bottom: 0.01
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(8, "feet"),
  17993. default: true
  17994. },
  17995. {
  17996. name: "Lorg",
  17997. height: math.unit(12, "feet")
  17998. },
  17999. {
  18000. name: "Oh Lawd She Comin'",
  18001. height: math.unit(20, "feet")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Reza" },
  18007. {
  18008. front: {
  18009. height: math.unit(4, "feet"),
  18010. weight: math.unit(90, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/reza/front.svg",
  18014. extra: 1183 / 1111,
  18015. bottom: 0.017
  18016. }
  18017. },
  18018. back: {
  18019. height: math.unit(4, "feet"),
  18020. weight: math.unit(90, "lb"),
  18021. name: "Back",
  18022. image: {
  18023. source: "./media/characters/reza/back.svg",
  18024. extra: 1183 / 1111,
  18025. bottom: 0.01
  18026. }
  18027. },
  18028. drake: {
  18029. height: math.unit(30, "feet"),
  18030. weight: math.unit(246960, "lb"),
  18031. name: "Drake",
  18032. image: {
  18033. source: "./media/characters/reza/drake.svg",
  18034. extra: 2350/2024,
  18035. bottom: 60.7/2403
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(4, "feet"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Athea" },
  18049. {
  18050. side: {
  18051. height: math.unit(15, "feet"),
  18052. weight: math.unit(14, "tons"),
  18053. name: "Side",
  18054. image: {
  18055. source: "./media/characters/athea/side.svg",
  18056. extra: 960 / 540,
  18057. bottom: 0.003
  18058. }
  18059. },
  18060. sitting: {
  18061. height: math.unit(6 * 2.85, "feet"),
  18062. weight: math.unit(14, "tons"),
  18063. name: "Sitting",
  18064. image: {
  18065. source: "./media/characters/athea/sitting.svg",
  18066. extra: 621 / 581,
  18067. bottom: 0.075
  18068. }
  18069. },
  18070. maw: {
  18071. height: math.unit(7.59498031496063, "feet"),
  18072. name: "Maw",
  18073. image: {
  18074. source: "./media/characters/athea/maw.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Lap Cat",
  18081. height: math.unit(2.5, "feet")
  18082. },
  18083. {
  18084. name: "Minimacro",
  18085. height: math.unit(15, "feet"),
  18086. default: true
  18087. },
  18088. {
  18089. name: "Macro",
  18090. height: math.unit(120, "feet")
  18091. },
  18092. {
  18093. name: "Macro+",
  18094. height: math.unit(640, "feet")
  18095. },
  18096. {
  18097. name: "Colossus",
  18098. height: math.unit(2.2, "miles")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Seroko" },
  18104. {
  18105. front: {
  18106. height: math.unit(8 + 8 / 12, "feet"),
  18107. weight: math.unit(130, "kg"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/seroko/front.svg",
  18111. extra: 1385 / 1280,
  18112. bottom: 0.025
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(8 + 8 / 12, "feet"),
  18117. weight: math.unit(130, "kg"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/seroko/back.svg",
  18121. extra: 1369 / 1238,
  18122. bottom: 0.018
  18123. }
  18124. },
  18125. frontDressed: {
  18126. height: math.unit(8 + 8 / 12, "feet"),
  18127. weight: math.unit(130, "kg"),
  18128. name: "Front (Dressed)",
  18129. image: {
  18130. source: "./media/characters/seroko/front-dressed.svg",
  18131. extra: 1366 / 1275,
  18132. bottom: 0.03
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(8 + 8 / 12, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Quatzi" },
  18146. {
  18147. front: {
  18148. height: math.unit(5.5, "feet"),
  18149. weight: math.unit(160, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/quatzi/front.svg",
  18153. extra: 2346 / 2242,
  18154. bottom: 0.015
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(5.5, "feet"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Big",
  18166. height: math.unit(7.7, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Sen" },
  18172. {
  18173. front: {
  18174. height: math.unit(5 + 11 / 12, "feet"),
  18175. weight: math.unit(180, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/sen/front.svg",
  18179. extra: 1321 / 1254,
  18180. bottom: 0.015
  18181. }
  18182. },
  18183. side: {
  18184. height: math.unit(5 + 11 / 12, "feet"),
  18185. weight: math.unit(180, "lb"),
  18186. name: "Side",
  18187. image: {
  18188. source: "./media/characters/sen/side.svg",
  18189. extra: 1321 / 1254,
  18190. bottom: 0.007
  18191. }
  18192. },
  18193. back: {
  18194. height: math.unit(5 + 11 / 12, "feet"),
  18195. weight: math.unit(180, "lb"),
  18196. name: "Back",
  18197. image: {
  18198. source: "./media/characters/sen/back.svg",
  18199. extra: 1321 / 1254
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(5 + 11 / 12, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Fruity" },
  18213. {
  18214. front: {
  18215. height: math.unit(166.6, "cm"),
  18216. weight: math.unit(66.6, "kg"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/fruity/front.svg",
  18220. extra: 1510 / 1386,
  18221. bottom: 0.04
  18222. }
  18223. },
  18224. back: {
  18225. height: math.unit(166.6, "cm"),
  18226. weight: math.unit(66.6, "lb"),
  18227. name: "Back",
  18228. image: {
  18229. source: "./media/characters/fruity/back.svg",
  18230. extra: 1563 / 1435,
  18231. bottom: 0.005
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(166.6, "cm"),
  18239. default: true
  18240. },
  18241. {
  18242. name: "Demonic",
  18243. height: math.unit(166.6, "feet")
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Zost" },
  18249. {
  18250. side: {
  18251. height: math.unit(10, "feet"),
  18252. weight: math.unit(500, "lb"),
  18253. name: "Side",
  18254. image: {
  18255. source: "./media/characters/zost/side.svg",
  18256. extra: 966 / 880,
  18257. bottom: 0.075
  18258. }
  18259. },
  18260. mawFront: {
  18261. height: math.unit(1.08, "meters"),
  18262. name: "Maw (Front)",
  18263. image: {
  18264. source: "./media/characters/zost/maw-front.svg"
  18265. }
  18266. },
  18267. mawSide: {
  18268. height: math.unit(2.66, "feet"),
  18269. name: "Maw (Side)",
  18270. image: {
  18271. source: "./media/characters/zost/maw-side.svg"
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(10, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Luci" },
  18285. {
  18286. front: {
  18287. height: math.unit(5 + 4 / 12, "feet"),
  18288. weight: math.unit(120, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/luci/front.svg",
  18292. extra: 1985 / 1884,
  18293. bottom: 0.04
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(5 + 4 / 12, "feet"),
  18298. weight: math.unit(120, "lb"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/luci/back.svg",
  18302. extra: 1892 / 1791,
  18303. bottom: 0.002
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Normal",
  18310. height: math.unit(5 + 4 / 12, "feet"),
  18311. default: true
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "2th" },
  18317. {
  18318. front: {
  18319. height: math.unit(1500, "feet"),
  18320. weight: math.unit(3.8e6, "tons"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/2th/front.svg",
  18324. extra: 3489 / 3350,
  18325. bottom: 0.1
  18326. }
  18327. },
  18328. foot: {
  18329. height: math.unit(461, "feet"),
  18330. name: "Foot",
  18331. image: {
  18332. source: "./media/characters/2th/foot.svg"
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "\"Micro\"",
  18339. height: math.unit(15 + 7 / 12, "feet")
  18340. },
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(1500, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(5000, "feet")
  18349. },
  18350. {
  18351. name: "Megamacro",
  18352. height: math.unit(15, "miles")
  18353. },
  18354. {
  18355. name: "Gigamacro",
  18356. height: math.unit(4000, "miles")
  18357. },
  18358. {
  18359. name: "Galactic",
  18360. height: math.unit(50, "AU")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Amethyst" },
  18366. {
  18367. front: {
  18368. height: math.unit(5 + 6 / 12, "feet"),
  18369. weight: math.unit(220, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/amethyst/front.svg",
  18373. extra: 2078 / 2040,
  18374. bottom: 0.045
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(5 + 6 / 12, "feet"),
  18379. weight: math.unit(220, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/amethyst/back.svg",
  18383. extra: 2021 / 1989,
  18384. bottom: 0.02
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(5 + 6 / 12, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Yumi Akiyama" },
  18398. {
  18399. front: {
  18400. height: math.unit(4 + 11 / 12, "feet"),
  18401. weight: math.unit(120, "lb"),
  18402. name: "Front",
  18403. image: {
  18404. source: "./media/characters/yumi-akiyama/front.svg",
  18405. extra: 1327 / 1235,
  18406. bottom: 0.02
  18407. }
  18408. },
  18409. back: {
  18410. height: math.unit(4 + 11 / 12, "feet"),
  18411. weight: math.unit(120, "lb"),
  18412. name: "Back",
  18413. image: {
  18414. source: "./media/characters/yumi-akiyama/back.svg",
  18415. extra: 1287 / 1245,
  18416. bottom: 0.002
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Galactic",
  18423. height: math.unit(50, "galaxies"),
  18424. default: true
  18425. },
  18426. {
  18427. name: "Universal",
  18428. height: math.unit(100, "universes")
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Rifter Yrmori" },
  18434. {
  18435. front: {
  18436. height: math.unit(8, "feet"),
  18437. weight: math.unit(500, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/rifter-yrmori/front.svg",
  18441. extra: 1180 / 1125,
  18442. bottom: 0.02
  18443. }
  18444. },
  18445. back: {
  18446. height: math.unit(8, "feet"),
  18447. weight: math.unit(500, "lb"),
  18448. name: "Back",
  18449. image: {
  18450. source: "./media/characters/rifter-yrmori/back.svg",
  18451. extra: 1190 / 1145,
  18452. bottom: 0.001
  18453. }
  18454. },
  18455. wings: {
  18456. height: math.unit(7.75, "feet"),
  18457. weight: math.unit(500, "lb"),
  18458. name: "Wings",
  18459. image: {
  18460. source: "./media/characters/rifter-yrmori/wings.svg",
  18461. extra: 1357 / 1285
  18462. }
  18463. },
  18464. maw: {
  18465. height: math.unit(0.8, "feet"),
  18466. name: "Maw",
  18467. image: {
  18468. source: "./media/characters/rifter-yrmori/maw.svg"
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(8, "feet"),
  18476. default: true
  18477. },
  18478. {
  18479. name: "Macro",
  18480. height: math.unit(42, "meters")
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Tahajin" },
  18486. {
  18487. were: {
  18488. height: math.unit(25 + 6 / 12, "feet"),
  18489. weight: math.unit(10000, "lb"),
  18490. name: "Were",
  18491. image: {
  18492. source: "./media/characters/tahajin/were.svg",
  18493. extra: 801 / 770,
  18494. bottom: 0.042
  18495. }
  18496. },
  18497. aquatic: {
  18498. height: math.unit(6 + 4 / 12, "feet"),
  18499. weight: math.unit(160, "lb"),
  18500. name: "Aquatic",
  18501. image: {
  18502. source: "./media/characters/tahajin/aquatic.svg",
  18503. extra: 572 / 542,
  18504. bottom: 0.04
  18505. }
  18506. },
  18507. chow: {
  18508. height: math.unit(8 + 11 / 12, "feet"),
  18509. weight: math.unit(450, "lb"),
  18510. name: "Chow",
  18511. image: {
  18512. source: "./media/characters/tahajin/chow.svg",
  18513. extra: 660 / 640,
  18514. bottom: 0.015
  18515. }
  18516. },
  18517. demiNaga: {
  18518. height: math.unit(6 + 8 / 12, "feet"),
  18519. weight: math.unit(300, "lb"),
  18520. name: "Demi Naga",
  18521. image: {
  18522. source: "./media/characters/tahajin/demi-naga.svg",
  18523. extra: 643 / 615,
  18524. bottom: 0.1
  18525. }
  18526. },
  18527. data: {
  18528. height: math.unit(5, "inches"),
  18529. weight: math.unit(0.1, "lb"),
  18530. name: "Data",
  18531. image: {
  18532. source: "./media/characters/tahajin/data.svg"
  18533. }
  18534. },
  18535. fluu: {
  18536. height: math.unit(5 + 7 / 12, "feet"),
  18537. weight: math.unit(140, "lb"),
  18538. name: "Fluu",
  18539. image: {
  18540. source: "./media/characters/tahajin/fluu.svg",
  18541. extra: 628 / 592,
  18542. bottom: 0.02
  18543. }
  18544. },
  18545. starWarrior: {
  18546. height: math.unit(4 + 5 / 12, "feet"),
  18547. weight: math.unit(50, "lb"),
  18548. name: "Star Warrior",
  18549. image: {
  18550. source: "./media/characters/tahajin/star-warrior.svg"
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(25 + 6 / 12, "feet"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Gabira" },
  18564. {
  18565. front: {
  18566. height: math.unit(8, "feet"),
  18567. weight: math.unit(350, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/gabira/front.svg",
  18571. extra: 608 / 580,
  18572. bottom: 0.03
  18573. }
  18574. },
  18575. back: {
  18576. height: math.unit(8, "feet"),
  18577. weight: math.unit(350, "lb"),
  18578. name: "Back",
  18579. image: {
  18580. source: "./media/characters/gabira/back.svg",
  18581. extra: 608 / 580,
  18582. bottom: 0.03
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(8, "feet"),
  18590. default: true
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Sasha Katraine" },
  18596. {
  18597. front: {
  18598. height: math.unit(5 + 3 / 12, "feet"),
  18599. weight: math.unit(137, "lb"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/sasha-katraine/front.svg",
  18603. bottom: 0.045
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Micro",
  18610. height: math.unit(5, "inches")
  18611. },
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(5 + 3 / 12, "feet"),
  18615. default: true
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Der" },
  18621. {
  18622. side: {
  18623. height: math.unit(4, "inches"),
  18624. weight: math.unit(200, "grams"),
  18625. name: "Side",
  18626. image: {
  18627. source: "./media/characters/der/side.svg",
  18628. extra: 719 / 400,
  18629. bottom: 30.6 / 749.9187
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(4, "inches"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Fixerdragon" },
  18643. {
  18644. side: {
  18645. height: math.unit(30, "meters"),
  18646. weight: math.unit(700, "tonnes"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/fixerdragon/side.svg",
  18650. extra: (1293.0514 - 116.03) / 1106.86,
  18651. bottom: 116.03 / 1293.0514
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Planck",
  18658. height: math.unit(1.6e-35, "meters")
  18659. },
  18660. {
  18661. name: "Micro",
  18662. height: math.unit(0.4, "meters")
  18663. },
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(30, "meters"),
  18667. default: true
  18668. },
  18669. {
  18670. name: "Megamacro",
  18671. height: math.unit(1.2, "megameters")
  18672. },
  18673. {
  18674. name: "Teramacro",
  18675. height: math.unit(130, "terameters")
  18676. },
  18677. {
  18678. name: "Yottamacro",
  18679. height: math.unit(6200, "yottameters")
  18680. },
  18681. ]
  18682. ));
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Kite" },
  18685. {
  18686. front: {
  18687. height: math.unit(8, "feet"),
  18688. weight: math.unit(250, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/kite/front.svg",
  18692. extra: 2796 / 2659,
  18693. bottom: 0.002
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(8, "feet"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(360, "feet")
  18706. },
  18707. {
  18708. name: "Megamacro",
  18709. height: math.unit(1500, "feet")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Poojawa Vynar" },
  18715. {
  18716. front: {
  18717. height: math.unit(5 + 10 / 12, "feet"),
  18718. weight: math.unit(150, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/poojawa-vynar/front.svg",
  18722. extra: (1506.1547 - 55) / 1356.6,
  18723. bottom: 55 / 1506.1547
  18724. }
  18725. },
  18726. frontTailless: {
  18727. height: math.unit(5 + 10 / 12, "feet"),
  18728. weight: math.unit(150, "lb"),
  18729. name: "Front (Tailless)",
  18730. image: {
  18731. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18732. extra: (1506.1547 - 55) / 1356.6,
  18733. bottom: 55 / 1506.1547
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(5 + 10 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Violette" },
  18747. {
  18748. front: {
  18749. height: math.unit(293, "meters"),
  18750. weight: math.unit(70400, "tons"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/violette/front.svg",
  18754. extra: 1227 / 1180,
  18755. bottom: 0.005
  18756. }
  18757. },
  18758. back: {
  18759. height: math.unit(293, "meters"),
  18760. weight: math.unit(70400, "tons"),
  18761. name: "Back",
  18762. image: {
  18763. source: "./media/characters/violette/back.svg",
  18764. extra: 1227 / 1180,
  18765. bottom: 0.005
  18766. }
  18767. },
  18768. },
  18769. [
  18770. {
  18771. name: "Macro",
  18772. height: math.unit(293, "meters"),
  18773. default: true
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Alessandra" },
  18779. {
  18780. front: {
  18781. height: math.unit(1050, "feet"),
  18782. weight: math.unit(200000, "tons"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/alessandra/front.svg",
  18786. extra: 960 / 912,
  18787. bottom: 0.06
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(1050, "feet")
  18795. },
  18796. {
  18797. name: "Macro+",
  18798. height: math.unit(900, "meters"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Person", species: "Catdragon" },
  18805. {
  18806. front: {
  18807. height: math.unit(5, "feet"),
  18808. weight: math.unit(187, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/person/front.svg",
  18812. extra: 3087 / 2945,
  18813. bottom: 91 / 3181
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Micro",
  18820. height: math.unit(3, "inches")
  18821. },
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(5, "feet"),
  18825. default: true
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(90, "feet")
  18830. },
  18831. {
  18832. name: "Max Size",
  18833. height: math.unit(280, "feet")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Ty" },
  18839. {
  18840. front: {
  18841. height: math.unit(4.5, "meters"),
  18842. weight: math.unit(3200, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/ty/front.svg",
  18846. extra: 1038 / 960,
  18847. bottom: 31.156 / 1068
  18848. }
  18849. },
  18850. back: {
  18851. height: math.unit(4.5, "meters"),
  18852. weight: math.unit(3200, "lb"),
  18853. name: "Back",
  18854. image: {
  18855. source: "./media/characters/ty/back.svg",
  18856. extra: 1044 / 966,
  18857. bottom: 7.48 / 1049
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Normal",
  18864. height: math.unit(4.5, "meters"),
  18865. default: true
  18866. },
  18867. ]
  18868. ))
  18869. characterMakers.push(() => makeCharacter(
  18870. { name: "Rocky" },
  18871. {
  18872. front: {
  18873. height: math.unit(5 + 4 / 12, "feet"),
  18874. weight: math.unit(115, "lb"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/rocky/front.svg",
  18878. extra: 1012 / 975,
  18879. bottom: 54 / 1066
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(5 + 4 / 12, "feet"),
  18887. default: true
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Ruin" },
  18893. {
  18894. upright: {
  18895. height: math.unit(6, "meters"),
  18896. weight: math.unit(4000, "kg"),
  18897. name: "Upright",
  18898. image: {
  18899. source: "./media/characters/ruin/upright.svg",
  18900. extra: 668 / 661,
  18901. bottom: 42 / 799.8396
  18902. }
  18903. },
  18904. },
  18905. [
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(6, "meters"),
  18909. default: true
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Robin" },
  18915. {
  18916. front: {
  18917. height: math.unit(5, "feet"),
  18918. weight: math.unit(106, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/robin/front.svg",
  18922. extra: 862 / 799,
  18923. bottom: 42.4 / 914.8856
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Normal",
  18930. height: math.unit(5, "feet"),
  18931. default: true
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Saian" },
  18937. {
  18938. side: {
  18939. height: math.unit(3, "feet"),
  18940. weight: math.unit(225, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/saian/side.svg",
  18944. extra: 566 / 356,
  18945. bottom: 79.7 / 643
  18946. }
  18947. },
  18948. maw: {
  18949. height: math.unit(2.85, "feet"),
  18950. name: "Maw",
  18951. image: {
  18952. source: "./media/characters/saian/maw.svg"
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(3, "feet"),
  18960. default: true
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Equus Silvermane" },
  18966. {
  18967. side: {
  18968. height: math.unit(8, "feet"),
  18969. weight: math.unit(300, "lb"),
  18970. name: "Side",
  18971. image: {
  18972. source: "./media/characters/equus-silvermane/side.svg",
  18973. extra: 2176 / 2050,
  18974. bottom: 65.7 / 2245
  18975. }
  18976. },
  18977. front: {
  18978. height: math.unit(8, "feet"),
  18979. weight: math.unit(300, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/equus-silvermane/front.svg",
  18983. extra: 4633 / 4400,
  18984. bottom: 71.3 / 4706.915
  18985. }
  18986. },
  18987. sideStepping: {
  18988. height: math.unit(8, "feet"),
  18989. weight: math.unit(300, "lb"),
  18990. name: "Side (Stepping)",
  18991. image: {
  18992. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18993. extra: 1968 / 1860,
  18994. bottom: 16.4 / 1989
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(8, "feet")
  19002. },
  19003. {
  19004. name: "Minimacro",
  19005. height: math.unit(75, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(150, "feet")
  19011. },
  19012. {
  19013. name: "Macro+",
  19014. height: math.unit(1000, "feet")
  19015. },
  19016. {
  19017. name: "Megamacro",
  19018. height: math.unit(1, "mile")
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Windar" },
  19024. {
  19025. side: {
  19026. height: math.unit(20, "feet"),
  19027. weight: math.unit(30000, "kg"),
  19028. name: "Side",
  19029. image: {
  19030. source: "./media/characters/windar/side.svg",
  19031. extra: 1491 / 1248,
  19032. bottom: 82.56 / 1568
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(20, "feet"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Melody" },
  19046. {
  19047. side: {
  19048. height: math.unit(15.66, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/melody/side.svg",
  19053. extra: 1097 / 944,
  19054. bottom: 11.8 / 1109
  19055. }
  19056. },
  19057. sideOutfit: {
  19058. height: math.unit(15.66, "feet"),
  19059. weight: math.unit(150, "lb"),
  19060. name: "Side (Outfit)",
  19061. image: {
  19062. source: "./media/characters/melody/side-outfit.svg",
  19063. extra: 1097 / 944,
  19064. bottom: 11.8 / 1109
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(15.66, "feet"),
  19072. default: true
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Windera" },
  19078. {
  19079. front: {
  19080. height: math.unit(8, "feet"),
  19081. weight: math.unit(325, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/windera/front.svg",
  19085. extra: 3180 / 2845,
  19086. bottom: 178 / 3365
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(8, "feet"),
  19094. default: true
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Sonear" },
  19100. {
  19101. front: {
  19102. height: math.unit(28.75, "feet"),
  19103. weight: math.unit(2000, "kg"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/sonear/front.svg",
  19107. extra: 1041.1 / 964.9,
  19108. bottom: 53.7 / 1096.6
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(28.75, "feet"),
  19116. default: true
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Kanara" },
  19122. {
  19123. side: {
  19124. height: math.unit(25.5, "feet"),
  19125. weight: math.unit(23000, "kg"),
  19126. name: "Side",
  19127. image: {
  19128. source: "./media/characters/kanara/side.svg"
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(25.5, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Ereus" },
  19142. {
  19143. side: {
  19144. height: math.unit(10, "feet"),
  19145. weight: math.unit(1000, "kg"),
  19146. name: "Side",
  19147. image: {
  19148. source: "./media/characters/ereus/side.svg",
  19149. extra: 1157 / 959,
  19150. bottom: 153 / 1312.5
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(10, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "E-ter" },
  19164. {
  19165. side: {
  19166. height: math.unit(4.5, "feet"),
  19167. weight: math.unit(500, "lb"),
  19168. name: "Side",
  19169. image: {
  19170. source: "./media/characters/e-ter/side.svg",
  19171. extra: 1550 / 1248,
  19172. bottom: 146 / 1694
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(4.5, "feet"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Yamie" },
  19186. {
  19187. side: {
  19188. height: math.unit(9.7, "feet"),
  19189. weight: math.unit(4000, "kg"),
  19190. name: "Side",
  19191. image: {
  19192. source: "./media/characters/yamie/side.svg"
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(9.7, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Anders" },
  19206. {
  19207. front: {
  19208. height: math.unit(50, "feet"),
  19209. weight: math.unit(50000, "kg"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/anders/front.svg",
  19213. extra: 570 / 539,
  19214. bottom: 14.7 / 586.7
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Large",
  19221. height: math.unit(50, "feet")
  19222. },
  19223. {
  19224. name: "Macro",
  19225. height: math.unit(2000, "feet"),
  19226. default: true
  19227. },
  19228. {
  19229. name: "Megamacro",
  19230. height: math.unit(12, "miles")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Reban" },
  19236. {
  19237. front: {
  19238. height: math.unit(7 + 2 / 12, "feet"),
  19239. weight: math.unit(300, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/reban/front.svg",
  19243. extra: 516 / 487,
  19244. bottom: 42.82 / 558.356
  19245. }
  19246. },
  19247. dick: {
  19248. height: math.unit(7 / 5, "feet"),
  19249. name: "Dick",
  19250. image: {
  19251. source: "./media/characters/reban/dick.svg"
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Natural Height",
  19258. height: math.unit(7 + 2 / 12, "feet")
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(500, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Canon Height",
  19267. height: math.unit(50, "AU")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Terrance Keayes" },
  19273. {
  19274. front: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/terrance-keayes/front.svg",
  19280. extra: 1.005,
  19281. bottom: 151 / 1615
  19282. }
  19283. },
  19284. side: {
  19285. height: math.unit(6, "feet"),
  19286. weight: math.unit(150, "lb"),
  19287. name: "Side",
  19288. image: {
  19289. source: "./media/characters/terrance-keayes/side.svg",
  19290. extra: 1.005,
  19291. bottom: 129.4 / 1544
  19292. }
  19293. },
  19294. back: {
  19295. height: math.unit(6, "feet"),
  19296. weight: math.unit(150, "lb"),
  19297. name: "Back",
  19298. image: {
  19299. source: "./media/characters/terrance-keayes/back.svg",
  19300. extra: 1.005,
  19301. bottom: 58.4 / 1557.3
  19302. }
  19303. },
  19304. dick: {
  19305. height: math.unit(6 * 0.208, "feet"),
  19306. name: "Dick",
  19307. image: {
  19308. source: "./media/characters/terrance-keayes/dick.svg"
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Canon Height",
  19315. height: math.unit(35, "miles"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Ofelia" },
  19322. {
  19323. front: {
  19324. height: math.unit(6, "feet"),
  19325. weight: math.unit(150, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/ofelia/front.svg",
  19329. extra: 546 / 541,
  19330. bottom: 39 / 583
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(6, "feet"),
  19335. weight: math.unit(150, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/ofelia/back.svg",
  19339. extra: 564 / 559.5,
  19340. bottom: 8.69 / 573.02
  19341. }
  19342. },
  19343. maw: {
  19344. height: math.unit(1, "feet"),
  19345. name: "Maw",
  19346. image: {
  19347. source: "./media/characters/ofelia/maw.svg"
  19348. }
  19349. },
  19350. foot: {
  19351. height: math.unit(1.949, "feet"),
  19352. name: "Foot",
  19353. image: {
  19354. source: "./media/characters/ofelia/foot.svg"
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Canon Height",
  19361. height: math.unit(2000, "miles"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Samuel" },
  19368. {
  19369. front: {
  19370. height: math.unit(6, "feet"),
  19371. weight: math.unit(150, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/samuel/front.svg",
  19375. extra: 265 / 258,
  19376. bottom: 2 / 266.1566
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(100, "feet"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Full Size",
  19388. height: math.unit(1000, "miles")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Beishir Kiel" },
  19394. {
  19395. front: {
  19396. height: math.unit(6, "feet"),
  19397. weight: math.unit(300, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/beishir-kiel/front.svg",
  19401. extra: 569 / 547,
  19402. bottom: 41.9 / 609
  19403. }
  19404. },
  19405. maw: {
  19406. height: math.unit(6 * 0.202, "feet"),
  19407. name: "Maw",
  19408. image: {
  19409. source: "./media/characters/beishir-kiel/maw.svg"
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(300, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Logan Grey" },
  19423. {
  19424. front: {
  19425. height: math.unit(5 + 8 / 12, "feet"),
  19426. weight: math.unit(120, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/logan-grey/front.svg",
  19430. extra: 2539 / 2393,
  19431. bottom: 97.6 / 2636.37
  19432. }
  19433. },
  19434. frontAlt: {
  19435. height: math.unit(5 + 8 / 12, "feet"),
  19436. weight: math.unit(120, "lb"),
  19437. name: "Front (Alt)",
  19438. image: {
  19439. source: "./media/characters/logan-grey/front-alt.svg",
  19440. extra: 958 / 893,
  19441. bottom: 15 / 970.768
  19442. }
  19443. },
  19444. back: {
  19445. height: math.unit(5 + 8 / 12, "feet"),
  19446. weight: math.unit(120, "lb"),
  19447. name: "Back",
  19448. image: {
  19449. source: "./media/characters/logan-grey/back.svg",
  19450. extra: 958 / 893,
  19451. bottom: 2.1881 / 970.9788
  19452. }
  19453. },
  19454. dick: {
  19455. height: math.unit(1.437, "feet"),
  19456. name: "Dick",
  19457. image: {
  19458. source: "./media/characters/logan-grey/dick.svg"
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(5 + 8 / 12, "feet")
  19466. },
  19467. {
  19468. name: "The 500 Foot Femboy",
  19469. height: math.unit(500, "feet"),
  19470. default: true
  19471. },
  19472. {
  19473. name: "Megmacro",
  19474. height: math.unit(20, "miles")
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Draganta" },
  19480. {
  19481. front: {
  19482. height: math.unit(8 + 2 / 12, "feet"),
  19483. weight: math.unit(275, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/draganta/front.svg",
  19487. extra: 1177 / 1135,
  19488. bottom: 33.46 / 1212.1
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(8 + 6 / 12, "feet"),
  19496. default: true
  19497. },
  19498. {
  19499. name: "Macro",
  19500. height: math.unit(150, "feet")
  19501. },
  19502. {
  19503. name: "Megamacro",
  19504. height: math.unit(1000, "miles")
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Voski", species: "Corvid" },
  19510. {
  19511. front: {
  19512. height: math.unit(1.72, "m"),
  19513. weight: math.unit(80, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/voski/front.svg",
  19517. extra: 2076.22 / 2022.4,
  19518. bottom: 102.7 / 2177.3866
  19519. }
  19520. },
  19521. frontNsfw: {
  19522. height: math.unit(1.72, "m"),
  19523. weight: math.unit(80, "lb"),
  19524. name: "Front (NSFW)",
  19525. image: {
  19526. source: "./media/characters/voski/front-nsfw.svg",
  19527. extra: 2076.22 / 2022.4,
  19528. bottom: 102.7 / 2177.3866
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(1.72, "m"),
  19533. weight: math.unit(80, "lb"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/voski/back.svg",
  19537. extra: 2104 / 2051,
  19538. bottom: 10.45 / 2113.63
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(1.72, "m")
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(55, "m"),
  19550. default: true
  19551. },
  19552. {
  19553. name: "Macro+",
  19554. height: math.unit(300, "m")
  19555. },
  19556. {
  19557. name: "Macro++",
  19558. height: math.unit(700, "m")
  19559. },
  19560. {
  19561. name: "Macro+++",
  19562. height: math.unit(4500, "m")
  19563. },
  19564. {
  19565. name: "Macro++++",
  19566. height: math.unit(45, "km")
  19567. },
  19568. {
  19569. name: "Macro+++++",
  19570. height: math.unit(1220, "km")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Icowom Lee" },
  19576. {
  19577. front: {
  19578. height: math.unit(2.3, "m"),
  19579. weight: math.unit(304, "kg"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/icowom-lee/front.svg",
  19583. extra: 3076 / 2933,
  19584. bottom: 51.4 / 3125.1889
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(2.3, "meters"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(94, "meters"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19603. {
  19604. front: {
  19605. height: math.unit(22, "meters"),
  19606. weight: math.unit(21000, "kg"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/shock-diamond/front.svg",
  19610. extra: 2204 / 2053,
  19611. bottom: 65 / 2239.47
  19612. }
  19613. },
  19614. frontNude: {
  19615. height: math.unit(22, "meters"),
  19616. weight: math.unit(21000, "kg"),
  19617. name: "Front (Nude)",
  19618. image: {
  19619. source: "./media/characters/shock-diamond/front-nude.svg",
  19620. extra: 2514 / 2285,
  19621. bottom: 13 / 2527.56
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(3, "meters")
  19629. },
  19630. {
  19631. name: "Macro",
  19632. height: math.unit(22, "meters"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Rory" },
  19639. {
  19640. front: {
  19641. height: math.unit(5 + 4 / 12, "feet"),
  19642. weight: math.unit(120, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/rory/front.svg",
  19646. extra: 589 / 556,
  19647. bottom: 45.7 / 635.76
  19648. }
  19649. },
  19650. frontNude: {
  19651. height: math.unit(5 + 4 / 12, "feet"),
  19652. weight: math.unit(120, "lb"),
  19653. name: "Front (Nude)",
  19654. image: {
  19655. source: "./media/characters/rory/front-nude.svg",
  19656. extra: 589 / 556,
  19657. bottom: 45.7 / 635.76
  19658. }
  19659. },
  19660. side: {
  19661. height: math.unit(5 + 4 / 12, "feet"),
  19662. weight: math.unit(120, "lb"),
  19663. name: "Side",
  19664. image: {
  19665. source: "./media/characters/rory/side.svg",
  19666. extra: 597 / 564,
  19667. bottom: 55 / 653
  19668. }
  19669. },
  19670. back: {
  19671. height: math.unit(5 + 4 / 12, "feet"),
  19672. weight: math.unit(120, "lb"),
  19673. name: "Back",
  19674. image: {
  19675. source: "./media/characters/rory/back.svg",
  19676. extra: 620 / 585,
  19677. bottom: 8.86 / 630.43
  19678. }
  19679. },
  19680. dick: {
  19681. height: math.unit(0.86, "feet"),
  19682. name: "Dick",
  19683. image: {
  19684. source: "./media/characters/rory/dick.svg"
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(5 + 4 / 12, "feet"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "Macro",
  19696. height: math.unit(100, "feet")
  19697. },
  19698. {
  19699. name: "Macro+",
  19700. height: math.unit(140, "feet")
  19701. },
  19702. {
  19703. name: "Macro++",
  19704. height: math.unit(300, "feet")
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Sprisk" },
  19710. {
  19711. front: {
  19712. height: math.unit(5 + 9 / 12, "feet"),
  19713. weight: math.unit(190, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/sprisk/front.svg",
  19717. extra: 1225 / 1180,
  19718. bottom: 42.7 / 1266.4
  19719. }
  19720. },
  19721. frontNsfw: {
  19722. height: math.unit(5 + 9 / 12, "feet"),
  19723. weight: math.unit(190, "lb"),
  19724. name: "Front (NSFW)",
  19725. image: {
  19726. source: "./media/characters/sprisk/front-nsfw.svg",
  19727. extra: 1225 / 1180,
  19728. bottom: 42.7 / 1266.4
  19729. }
  19730. },
  19731. back: {
  19732. height: math.unit(5 + 9 / 12, "feet"),
  19733. weight: math.unit(190, "lb"),
  19734. name: "Back",
  19735. image: {
  19736. source: "./media/characters/sprisk/back.svg",
  19737. extra: 1247 / 1200,
  19738. bottom: 5.6 / 1253.04
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Tiny",
  19745. height: math.unit(2, "inches")
  19746. },
  19747. {
  19748. name: "Normal",
  19749. height: math.unit(5 + 9 / 12, "feet"),
  19750. default: true
  19751. },
  19752. {
  19753. name: "Mini Macro",
  19754. height: math.unit(18, "feet")
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(100, "feet")
  19759. },
  19760. {
  19761. name: "MACRO",
  19762. height: math.unit(50, "miles")
  19763. },
  19764. {
  19765. name: "M A C R O",
  19766. height: math.unit(300, "miles")
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Bunsen" },
  19772. {
  19773. side: {
  19774. height: math.unit(15.6, "meters"),
  19775. weight: math.unit(700000, "kg"),
  19776. name: "Side",
  19777. image: {
  19778. source: "./media/characters/bunsen/side.svg",
  19779. extra: 1644 / 358
  19780. }
  19781. },
  19782. foot: {
  19783. height: math.unit(1.611 * 1644 / 358, "meter"),
  19784. name: "Foot",
  19785. image: {
  19786. source: "./media/characters/bunsen/foot.svg"
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Small",
  19793. height: math.unit(10, "feet")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(15.6, "meters"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Sesh" },
  19804. {
  19805. front: {
  19806. height: math.unit(4 + 11 / 12, "feet"),
  19807. weight: math.unit(140, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/sesh/front.svg",
  19811. extra: 3420 / 3231,
  19812. bottom: 72 / 3949.5
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(4 + 11 / 12, "feet")
  19820. },
  19821. {
  19822. name: "Grown",
  19823. height: math.unit(15, "feet"),
  19824. default: true
  19825. },
  19826. {
  19827. name: "Macro",
  19828. height: math.unit(1500, "feet")
  19829. },
  19830. {
  19831. name: "Megamacro",
  19832. height: math.unit(30, "miles")
  19833. },
  19834. {
  19835. name: "Continental",
  19836. height: math.unit(3000, "miles")
  19837. },
  19838. {
  19839. name: "Gravity Mass",
  19840. height: math.unit(300000, "miles")
  19841. },
  19842. {
  19843. name: "Planet Buster",
  19844. height: math.unit(30000000, "miles")
  19845. },
  19846. {
  19847. name: "Big",
  19848. height: math.unit(3000000000, "miles")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Pepper" },
  19854. {
  19855. front: {
  19856. height: math.unit(9, "feet"),
  19857. weight: math.unit(350, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/pepper/front.svg",
  19861. extra: 1448/1312,
  19862. bottom: 9.4/1457.88
  19863. }
  19864. },
  19865. back: {
  19866. height: math.unit(9, "feet"),
  19867. weight: math.unit(350, "lb"),
  19868. name: "Back",
  19869. image: {
  19870. source: "./media/characters/pepper/back.svg",
  19871. extra: 1423/1300,
  19872. bottom: 4.6/1429
  19873. }
  19874. },
  19875. maw: {
  19876. height: math.unit(0.932, "feet"),
  19877. name: "Maw",
  19878. image: {
  19879. source: "./media/characters/pepper/maw.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(9, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Maelstrom" },
  19893. {
  19894. front: {
  19895. height: math.unit(6, "feet"),
  19896. weight: math.unit(150, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/maelstrom/front.svg",
  19900. extra: 2100/1883,
  19901. bottom: 94/2196.7
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Less Kaiju",
  19908. height: math.unit(200, "feet")
  19909. },
  19910. {
  19911. name: "Kaiju",
  19912. height: math.unit(400, "feet"),
  19913. default: true
  19914. },
  19915. {
  19916. name: "Kaiju-er",
  19917. height: math.unit(600, "feet")
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Lexir" },
  19923. {
  19924. front: {
  19925. height: math.unit(6 + 5/12, "feet"),
  19926. weight: math.unit(180, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/lexir/front.svg",
  19930. extra: 180/172,
  19931. bottom: 12/192
  19932. }
  19933. },
  19934. back: {
  19935. height: math.unit(6 + 5/12, "feet"),
  19936. weight: math.unit(180, "lb"),
  19937. name: "Back",
  19938. image: {
  19939. source: "./media/characters/lexir/back.svg",
  19940. extra: 183.84/175.5,
  19941. bottom: 3.1/187
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Very Smal",
  19948. height: math.unit(1, "nm")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(6 + 5/12, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(1, "mile")
  19958. },
  19959. {
  19960. name: "Megamacro",
  19961. height: math.unit(50, "miles")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Maksio" },
  19967. {
  19968. front: {
  19969. height: math.unit(1.5, "meters"),
  19970. weight: math.unit(100, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/maksio/front.svg",
  19974. extra: 1549/1531,
  19975. bottom: 123.7/1674.5429
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(1.5, "meters"),
  19980. weight: math.unit(100, "lb"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/maksio/back.svg",
  19984. extra: 1541/1509,
  19985. bottom: 97/1639
  19986. }
  19987. },
  19988. hand: {
  19989. height: math.unit(0.621, "feet"),
  19990. name: "Hand",
  19991. image: {
  19992. source: "./media/characters/maksio/hand.svg"
  19993. }
  19994. },
  19995. foot: {
  19996. height: math.unit(1.611, "feet"),
  19997. name: "Foot",
  19998. image: {
  19999. source: "./media/characters/maksio/foot.svg"
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Shrunken",
  20006. height: math.unit(10, "cm")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(150, "cm"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Erza Bear" },
  20017. {
  20018. front: {
  20019. height: math.unit(100, "feet"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/erza-bear/front.svg",
  20023. extra: 2449/2390,
  20024. bottom: 46/2494
  20025. }
  20026. },
  20027. back: {
  20028. height: math.unit(100, "feet"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/erza-bear/back.svg",
  20032. extra: 2489/2430,
  20033. bottom: 85.4/2480
  20034. }
  20035. },
  20036. tail: {
  20037. height: math.unit(42, "feet"),
  20038. name: "Tail",
  20039. image: {
  20040. source: "./media/characters/erza-bear/tail.svg"
  20041. }
  20042. },
  20043. tongue: {
  20044. height: math.unit(8, "feet"),
  20045. name: "Tongue",
  20046. image: {
  20047. source: "./media/characters/erza-bear/tongue.svg"
  20048. }
  20049. },
  20050. dick: {
  20051. height: math.unit(10.5, "feet"),
  20052. name: "Dick",
  20053. image: {
  20054. source: "./media/characters/erza-bear/dick.svg"
  20055. }
  20056. },
  20057. dickVertical: {
  20058. height: math.unit(16.9, "feet"),
  20059. name: "Dick (Vertical)",
  20060. image: {
  20061. source: "./media/characters/erza-bear/dick-vertical.svg"
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Macro",
  20068. height: math.unit(100, "feet"),
  20069. default: true
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Violet Flor", species: "Skunk" },
  20075. {
  20076. front: {
  20077. height: math.unit(172, "cm"),
  20078. weight: math.unit(73, "kg"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/violet-flor/front.svg",
  20082. extra: 1530/1442,
  20083. bottom: 61.9/1588.8
  20084. }
  20085. },
  20086. back: {
  20087. height: math.unit(180, "cm"),
  20088. weight: math.unit(73, "kg"),
  20089. name: "Back",
  20090. image: {
  20091. source: "./media/characters/violet-flor/back.svg",
  20092. extra: 1692/1630,
  20093. bottom: 20/1712
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(172, "cm"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Lynn Rhea", species: "Shark" },
  20107. {
  20108. front: {
  20109. height: math.unit(6, "feet"),
  20110. weight: math.unit(220, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/lynn-rhea/front.svg",
  20114. extra: 310/273
  20115. }
  20116. },
  20117. back: {
  20118. height: math.unit(6, "feet"),
  20119. weight: math.unit(220, "lb"),
  20120. name: "Back",
  20121. image: {
  20122. source: "./media/characters/lynn-rhea/back.svg",
  20123. extra: 310/273
  20124. }
  20125. },
  20126. dicks: {
  20127. height: math.unit(0.9, "feet"),
  20128. name: "Dicks",
  20129. image: {
  20130. source: "./media/characters/lynn-rhea/dicks.svg"
  20131. }
  20132. },
  20133. slit: {
  20134. height: math.unit(0.4, "feet"),
  20135. name: "Slit",
  20136. image: {
  20137. source: "./media/characters/lynn-rhea/slit.svg"
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Micro",
  20144. height: math.unit(1, "inch")
  20145. },
  20146. {
  20147. name: "Macro",
  20148. height: math.unit(60, "feet"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Megamacro",
  20153. height: math.unit(2, "miles")
  20154. },
  20155. {
  20156. name: "Gigamacro",
  20157. height: math.unit(3, "earths")
  20158. },
  20159. {
  20160. name: "Galactic",
  20161. height: math.unit(0.8, "galaxies")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Valathos" },
  20167. {
  20168. front: {
  20169. height: math.unit(1600, "feet"),
  20170. weight: math.unit(85758785169, "kg"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/valathos/front.svg",
  20174. extra: 1451/1339
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(1600, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Azula" },
  20188. {
  20189. front: {
  20190. height: math.unit(7 + 5/12, "feet"),
  20191. weight: math.unit(300, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/azula/front.svg",
  20195. extra: 3208/2880,
  20196. bottom: 80.2/3277
  20197. }
  20198. },
  20199. back: {
  20200. height: math.unit(7 + 5/12, "feet"),
  20201. weight: math.unit(300, "lb"),
  20202. name: "Back",
  20203. image: {
  20204. source: "./media/characters/azula/back.svg",
  20205. extra: 3169/2822,
  20206. bottom: 150.6/3321
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(7 + 5/12, "feet"),
  20214. default: true
  20215. },
  20216. {
  20217. name: "Big",
  20218. height: math.unit(20, "feet")
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Rupert" },
  20224. {
  20225. front: {
  20226. height: math.unit(5 + 1/12, "feet"),
  20227. weight: math.unit(110, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/rupert/front.svg",
  20231. extra: 1549/1495,
  20232. bottom: 54.2/1604.4
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(5 + 1/12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Sheera Castellar" },
  20246. {
  20247. front: {
  20248. height: math.unit(8 + 4/12, "feet"),
  20249. weight: math.unit(350, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/sheera-castellar/front.svg",
  20253. extra: 1957/1894,
  20254. bottom: 26.97/1975.017
  20255. }
  20256. },
  20257. side: {
  20258. height: math.unit(8 + 4/12, "feet"),
  20259. weight: math.unit(350, "lb"),
  20260. name: "Side",
  20261. image: {
  20262. source: "./media/characters/sheera-castellar/side.svg",
  20263. extra: 1957/1894
  20264. }
  20265. },
  20266. back: {
  20267. height: math.unit(8 + 4/12, "feet"),
  20268. weight: math.unit(350, "lb"),
  20269. name: "Back",
  20270. image: {
  20271. source: "./media/characters/sheera-castellar/back.svg",
  20272. extra: 1957/1894
  20273. }
  20274. },
  20275. angled: {
  20276. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20277. weight: math.unit(350, "lb"),
  20278. name: "Angled",
  20279. image: {
  20280. source: "./media/characters/sheera-castellar/angled.svg",
  20281. extra: 1807/1707,
  20282. bottom: 68/1875
  20283. }
  20284. },
  20285. genitals: {
  20286. height: math.unit(2.2, "feet"),
  20287. name: "Genitals",
  20288. image: {
  20289. source: "./media/characters/sheera-castellar/genitals.svg"
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(8 + 4/12, "feet")
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(150, "feet"),
  20301. default: true
  20302. },
  20303. {
  20304. name: "Macro+",
  20305. height: math.unit(800, "feet")
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Jaipur", species: "Black Panther" },
  20311. {
  20312. front: {
  20313. height: math.unit(6, "feet"),
  20314. weight: math.unit(150, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/jaipur/front.svg",
  20318. extra: 3860/3731,
  20319. bottom: 287/4140
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(6, "feet"),
  20324. weight: math.unit(150, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/jaipur/back.svg",
  20328. extra: 4060/3930,
  20329. bottom: 151/4200
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(1.85, "meters"),
  20337. default: true
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(150, "meters")
  20342. },
  20343. {
  20344. name: "Macro+",
  20345. height: math.unit(0.5, "miles")
  20346. },
  20347. {
  20348. name: "Macro++",
  20349. height: math.unit(2.5, "miles")
  20350. },
  20351. {
  20352. name: "Macro+++",
  20353. height: math.unit(12, "miles")
  20354. },
  20355. {
  20356. name: "Macro++++",
  20357. height: math.unit(120, "miles")
  20358. },
  20359. {
  20360. name: "Macro+++++",
  20361. height: math.unit(1200, "miles")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Sheila (Wolf)" },
  20367. {
  20368. front: {
  20369. height: math.unit(6, "feet"),
  20370. weight: math.unit(150, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/sheila-wolf/front.svg",
  20374. extra: 1931/1808,
  20375. bottom: 29.5/1960
  20376. }
  20377. },
  20378. dick: {
  20379. height: math.unit(1.464, "feet"),
  20380. name: "Dick",
  20381. image: {
  20382. source: "./media/characters/sheila-wolf/dick.svg"
  20383. }
  20384. },
  20385. muzzle: {
  20386. height: math.unit(0.513, "feet"),
  20387. name: "Muzzle",
  20388. image: {
  20389. source: "./media/characters/sheila-wolf/muzzle.svg"
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Macro",
  20396. height: math.unit(70, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Almor", species: "Dragon" },
  20403. {
  20404. front: {
  20405. height: math.unit(32, "meters"),
  20406. weight: math.unit(300000, "kg"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/almor/front.svg",
  20410. extra: 1408/1322,
  20411. bottom: 94.6/1506.5
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Macro",
  20418. height: math.unit(32, "meters"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Silver" },
  20425. {
  20426. front: {
  20427. height: math.unit(7, "feet"),
  20428. weight: math.unit(200, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/silver/front.svg",
  20432. extra: 472.1/450.5,
  20433. bottom: 26.5/499.424
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(7, "feet"),
  20441. default: true
  20442. },
  20443. {
  20444. name: "Macro",
  20445. height: math.unit(800, "feet")
  20446. },
  20447. {
  20448. name: "Megamacro",
  20449. height: math.unit(250, "miles")
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Pliskin" },
  20455. {
  20456. front: {
  20457. height: math.unit(6, "feet"),
  20458. weight: math.unit(150, "lb"),
  20459. name: "Front",
  20460. image: {
  20461. source: "./media/characters/pliskin/front.svg",
  20462. extra: 1469/1359,
  20463. bottom: 70/1540
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Micro",
  20470. height: math.unit(3, "inches")
  20471. },
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 11/12, "feet"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(120, "feet")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Sammy" },
  20485. {
  20486. front: {
  20487. height: math.unit(6, "feet"),
  20488. weight: math.unit(150, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/sammy/front.svg",
  20492. extra: 1193/1089,
  20493. bottom: 30.5/1226
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Macro",
  20500. height: math.unit(1700, "feet"),
  20501. default: true
  20502. },
  20503. {
  20504. name: "Examacro",
  20505. height: math.unit(2.5e9, "lightyears")
  20506. },
  20507. ]
  20508. ))
  20509. characterMakers.push(() => makeCharacter(
  20510. { name: "Kuru", species: "Umbra" },
  20511. {
  20512. front: {
  20513. height: math.unit(21, "meters"),
  20514. weight: math.unit(12, "tonnes"),
  20515. name: "Front",
  20516. image: {
  20517. source: "./media/characters/kuru/front.svg",
  20518. extra: 4301/3785,
  20519. bottom: 371.3/4691
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Macro",
  20526. height: math.unit(21, "meters"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Rakka", species: "Umbra" },
  20533. {
  20534. front: {
  20535. height: math.unit(23, "meters"),
  20536. weight: math.unit(12.2, "tonnes"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/rakka/front.svg",
  20540. extra: 4670/4169,
  20541. bottom: 301/4968.7
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Macro",
  20548. height: math.unit(23, "meters"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Rhys (Feline)" },
  20555. {
  20556. front: {
  20557. height: math.unit(6, "feet"),
  20558. weight: math.unit(150, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/rhys-feline/front.svg",
  20562. extra: 2488/2308,
  20563. bottom: 35.67/2519.19
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Really Small",
  20570. height: math.unit(1, "nm")
  20571. },
  20572. {
  20573. name: "Micro",
  20574. height: math.unit(4, "inches")
  20575. },
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(4 + 10/12, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(100, "feet")
  20584. },
  20585. {
  20586. name: "Megamacto",
  20587. height: math.unit(50, "miles")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Alydar", species: "Raven/Snow Leopard" },
  20593. {
  20594. side: {
  20595. height: math.unit(30, "feet"),
  20596. weight: math.unit(35000, "kg"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/alydar/side.svg",
  20600. extra: 234/222,
  20601. bottom: 6.5/241
  20602. }
  20603. },
  20604. front: {
  20605. height: math.unit(30, "feet"),
  20606. weight: math.unit(35000, "kg"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/alydar/front.svg",
  20610. extra: 223.37/210.2,
  20611. bottom: 22.3/246.76
  20612. }
  20613. },
  20614. top: {
  20615. height: math.unit(64.54, "feet"),
  20616. weight: math.unit(35000, "kg"),
  20617. name: "Top",
  20618. image: {
  20619. source: "./media/characters/alydar/top.svg"
  20620. }
  20621. },
  20622. anthro: {
  20623. height: math.unit(30, "feet"),
  20624. weight: math.unit(9000, "kg"),
  20625. name: "Anthro",
  20626. image: {
  20627. source: "./media/characters/alydar/anthro.svg",
  20628. extra: 432/421,
  20629. bottom: 7.18/440
  20630. }
  20631. },
  20632. maw: {
  20633. height: math.unit(11.693, "feet"),
  20634. name: "Maw",
  20635. image: {
  20636. source: "./media/characters/alydar/maw.svg"
  20637. }
  20638. },
  20639. head: {
  20640. height: math.unit(11.693, "feet"),
  20641. name: "Head",
  20642. image: {
  20643. source: "./media/characters/alydar/head.svg"
  20644. }
  20645. },
  20646. headAlt: {
  20647. height: math.unit(12.861, "feet"),
  20648. name: "Head (Alt)",
  20649. image: {
  20650. source: "./media/characters/alydar/head-alt.svg"
  20651. }
  20652. },
  20653. wing: {
  20654. height: math.unit(20.712, "feet"),
  20655. name: "Wing",
  20656. image: {
  20657. source: "./media/characters/alydar/wing.svg"
  20658. }
  20659. },
  20660. wingFeather: {
  20661. height: math.unit(9.662, "feet"),
  20662. name: "Wing Feather",
  20663. image: {
  20664. source: "./media/characters/alydar/wing-feather.svg"
  20665. }
  20666. },
  20667. countourFeather: {
  20668. height: math.unit(4.154, "feet"),
  20669. name: "Contour Feather",
  20670. image: {
  20671. source: "./media/characters/alydar/contour-feather.svg"
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Diplomatic",
  20678. height: math.unit(13, "feet"),
  20679. default: true
  20680. },
  20681. {
  20682. name: "Small",
  20683. height: math.unit(30, "feet")
  20684. },
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(95, "feet"),
  20688. default: true
  20689. },
  20690. {
  20691. name: "Large",
  20692. height: math.unit(285, "feet")
  20693. },
  20694. {
  20695. name: "Incomprehensible",
  20696. height: math.unit(450, "megameters")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Selicia" },
  20702. {
  20703. side: {
  20704. height: math.unit(11, "feet"),
  20705. weight: math.unit(1750, "kg"),
  20706. name: "Side",
  20707. image: {
  20708. source: "./media/characters/selicia/side.svg",
  20709. extra: 440/396,
  20710. bottom: 24.8/465.979
  20711. }
  20712. },
  20713. maw: {
  20714. height: math.unit(4.665, "feet"),
  20715. name: "Maw",
  20716. image: {
  20717. source: "./media/characters/selicia/maw.svg"
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(11, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Layla" },
  20731. {
  20732. side: {
  20733. height: math.unit(2 + 6 /12, "feet"),
  20734. weight: math.unit(30, "lb"),
  20735. name: "Side",
  20736. image: {
  20737. source: "./media/characters/layla/side.svg",
  20738. extra: 244/188,
  20739. bottom: 18.2/262.1
  20740. }
  20741. },
  20742. back: {
  20743. height: math.unit(2 + 6 /12, "feet"),
  20744. weight: math.unit(30, "lb"),
  20745. name: "Back",
  20746. image: {
  20747. source: "./media/characters/layla/back.svg",
  20748. extra: 308/241.5,
  20749. bottom: 8.9/316.8
  20750. }
  20751. },
  20752. cumming: {
  20753. height: math.unit(2 + 6 /12, "feet"),
  20754. weight: math.unit(30, "lb"),
  20755. name: "Cumming",
  20756. image: {
  20757. source: "./media/characters/layla/cumming.svg",
  20758. extra: 342/279,
  20759. bottom: 595/938
  20760. }
  20761. },
  20762. dickFlaccid: {
  20763. height: math.unit(2.595, "feet"),
  20764. name: "Flaccid Genitals",
  20765. image: {
  20766. source: "./media/characters/layla/dick-flaccid.svg"
  20767. }
  20768. },
  20769. dickErect: {
  20770. height: math.unit(2.359, "feet"),
  20771. name: "Erect Genitals",
  20772. image: {
  20773. source: "./media/characters/layla/dick-erect.svg"
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Micro",
  20780. height: math.unit(1, "inch")
  20781. },
  20782. {
  20783. name: "Small",
  20784. height: math.unit(1, "foot")
  20785. },
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(2 + 6/12, "feet"),
  20789. default: true
  20790. },
  20791. {
  20792. name: "Macro",
  20793. height: math.unit(200, "feet")
  20794. },
  20795. {
  20796. name: "Megamacro",
  20797. height: math.unit(1000, "miles")
  20798. },
  20799. {
  20800. name: "Planetary",
  20801. height: math.unit(8000, "miles")
  20802. },
  20803. {
  20804. name: "True Layla",
  20805. height: math.unit(200000*7, "multiverses")
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Knox" },
  20811. {
  20812. back: {
  20813. height: math.unit(10.5, "feet"),
  20814. weight: math.unit(800, "lb"),
  20815. name: "Back",
  20816. image: {
  20817. source: "./media/characters/knox/back.svg",
  20818. extra: 1486/1089,
  20819. bottom: 107/1601.4
  20820. }
  20821. },
  20822. side: {
  20823. height: math.unit(10.5, "feet"),
  20824. weight: math.unit(800, "lb"),
  20825. name: "Side",
  20826. image: {
  20827. source: "./media/characters/knox/side.svg",
  20828. extra: 244/218,
  20829. bottom: 14/260
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Compact",
  20836. height: math.unit(10.5, "feet"),
  20837. default: true
  20838. },
  20839. {
  20840. name: "Dynamax",
  20841. height: math.unit(210, "feet")
  20842. },
  20843. {
  20844. name: "Full Macro",
  20845. height: math.unit(850, "feet")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Shin (Pikachu)" },
  20851. {
  20852. front: {
  20853. height: math.unit(6, "feet"),
  20854. weight: math.unit(152, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/shin-pikachu/front.svg",
  20858. extra: 1574/1480,
  20859. bottom: 53.3/1626
  20860. }
  20861. },
  20862. hand: {
  20863. height: math.unit(1.055, "feet"),
  20864. name: "Hand",
  20865. image: {
  20866. source: "./media/characters/shin-pikachu/hand.svg"
  20867. }
  20868. },
  20869. foot: {
  20870. height: math.unit(1.1, "feet"),
  20871. name: "Foot",
  20872. image: {
  20873. source: "./media/characters/shin-pikachu/foot.svg"
  20874. }
  20875. },
  20876. collar: {
  20877. height: math.unit(0.386, "feet"),
  20878. name: "Collar",
  20879. image: {
  20880. source: "./media/characters/shin-pikachu/collar.svg"
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Smallest",
  20887. height: math.unit(0.5, "inches")
  20888. },
  20889. {
  20890. name: "Micro",
  20891. height: math.unit(6, "inches")
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(6, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(150, "feet")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Kayda" },
  20906. {
  20907. front: {
  20908. height: math.unit(28, "feet"),
  20909. weight: math.unit(10500, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/kayda/front.svg",
  20913. extra: 1536/1428,
  20914. bottom: 68.7/1603
  20915. }
  20916. },
  20917. back: {
  20918. height: math.unit(28, "feet"),
  20919. weight: math.unit(10500, "lb"),
  20920. name: "Back",
  20921. image: {
  20922. source: "./media/characters/kayda/back.svg",
  20923. extra: 1557/1464,
  20924. bottom: 39.5/1597.49
  20925. }
  20926. },
  20927. dick: {
  20928. height: math.unit(3.858, "feet"),
  20929. name: "Dick",
  20930. image: {
  20931. source: "./media/characters/kayda/dick.svg"
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Macro",
  20938. height: math.unit(28, "feet"),
  20939. default: true
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Brian", species: "Barbary Lion" },
  20945. {
  20946. front: {
  20947. height: math.unit(10 + 11/12, "feet"),
  20948. weight: math.unit(1400, "lb"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/brian/front.svg",
  20952. extra: 737/692,
  20953. bottom: 55.4/785
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(10 + 11/12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Khemri", species: "Jackal" },
  20967. {
  20968. front: {
  20969. height: math.unit(5 + 8/12, "feet"),
  20970. weight: math.unit(140, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/khemri/front.svg",
  20974. extra: 4780/4059,
  20975. bottom: 80.1/4859.25
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Micro",
  20982. height: math.unit(6, "inches")
  20983. },
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(5 + 8/12, "feet"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Felix Braveheart" },
  20993. {
  20994. front: {
  20995. height: math.unit(13, "feet"),
  20996. weight: math.unit(1700, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/felix-braveheart/front.svg",
  21000. extra: 1222/1157,
  21001. bottom: 53.2/1280
  21002. }
  21003. },
  21004. back: {
  21005. height: math.unit(13, "feet"),
  21006. weight: math.unit(1700, "lb"),
  21007. name: "Back",
  21008. image: {
  21009. source: "./media/characters/felix-braveheart/back.svg",
  21010. extra: 1277/1203,
  21011. bottom: 50.2/1327
  21012. }
  21013. },
  21014. feral: {
  21015. height: math.unit(6, "feet"),
  21016. weight: math.unit(400, "lb"),
  21017. name: "Feral",
  21018. image: {
  21019. source: "./media/characters/felix-braveheart/feral.svg",
  21020. extra: 682/625,
  21021. bottom: 6.9/688
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(13, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Shadow Blade" },
  21035. {
  21036. side: {
  21037. height: math.unit(5 + 11/12, "feet"),
  21038. weight: math.unit(1400, "lb"),
  21039. name: "Side",
  21040. image: {
  21041. source: "./media/characters/shadow-blade/side.svg",
  21042. extra: 1726/1267,
  21043. bottom: 58.4/1785
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(5 + 11/12, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. //characters
  21056. function makeCharacters() {
  21057. const results = [];
  21058. characterMakers.forEach(character => {
  21059. results.push(character());
  21060. });
  21061. return results;
  21062. }