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.
 
 
 

21646 lines
517 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. maw: {
  598. height: math.unit(6 / 3.81416, "feet"),
  599. name: "Maw",
  600. image: {
  601. source: "./media/characters/rai/maw.svg"
  602. }
  603. },
  604. },
  605. [
  606. {
  607. name: "Normal",
  608. height: math.unit(11, "feet")
  609. },
  610. {
  611. name: "Macro",
  612. height: math.unit(302, "feet"),
  613. default: true
  614. },
  615. ]
  616. ))
  617. characterMakers.push(() => makeCharacter(
  618. { name: "Jazzy" },
  619. {
  620. front: {
  621. height: math.unit(7, "feet"),
  622. weight: math.unit(80, "kg"),
  623. name: "Front",
  624. image: {
  625. source: "./media/characters/jazzy/front.svg",
  626. extra: 1,
  627. bottom: 0.01
  628. }
  629. },
  630. back: {
  631. height: math.unit(7, "feet"),
  632. weight: math.unit(80, "kg"),
  633. name: "Back",
  634. image: {
  635. source: "./media/characters/jazzy/back.svg",
  636. extra: 1,
  637. bottom: 0.01
  638. }
  639. },
  640. },
  641. [
  642. {
  643. name: "Macro",
  644. height: math.unit(216, "feet"),
  645. default: true
  646. },
  647. ]
  648. ))
  649. characterMakers.push(() => makeCharacter(
  650. { name: "Flamm" },
  651. {
  652. front: {
  653. height: math.unit(7, "feet"),
  654. weight: math.unit(80, "kg"),
  655. name: "Front",
  656. image: {
  657. source: "./media/characters/flamm/front.svg",
  658. extra: 1794 / 1677,
  659. bottom: 31.7 / 1828.5
  660. }
  661. },
  662. },
  663. [
  664. {
  665. name: "Normal",
  666. height: math.unit(9.5, "feet")
  667. },
  668. {
  669. name: "Macro",
  670. height: math.unit(200, "feet"),
  671. default: true
  672. },
  673. ]
  674. ))
  675. characterMakers.push(() => makeCharacter(
  676. { name: "Zephiro" },
  677. {
  678. front: {
  679. height: math.unit(7, "feet"),
  680. weight: math.unit(80, "kg"),
  681. name: "Front",
  682. image: {
  683. source: "./media/characters/zephiro/front.svg",
  684. extra: 2309 / 2162,
  685. bottom: 0.069
  686. }
  687. },
  688. side: {
  689. height: math.unit(7, "feet"),
  690. weight: math.unit(80, "kg"),
  691. name: "Side",
  692. image: {
  693. source: "./media/characters/zephiro/side.svg",
  694. extra: 2403 / 2279,
  695. bottom: 0.015
  696. }
  697. },
  698. back: {
  699. height: math.unit(7, "feet"),
  700. weight: math.unit(80, "kg"),
  701. name: "Back",
  702. image: {
  703. source: "./media/characters/zephiro/back.svg",
  704. extra: 2373 / 2244,
  705. bottom: 0.013
  706. }
  707. },
  708. },
  709. [
  710. {
  711. name: "Micro",
  712. height: math.unit(3, "inches")
  713. },
  714. {
  715. name: "Normal",
  716. height: math.unit(5 + 3 / 12, "feet"),
  717. default: true
  718. },
  719. {
  720. name: "Macro",
  721. height: math.unit(118, "feet")
  722. },
  723. ]
  724. ))
  725. characterMakers.push(() => makeCharacter(
  726. { name: "Fory" },
  727. {
  728. front: {
  729. height: math.unit(5, "feet"),
  730. weight: math.unit(90, "kg"),
  731. name: "Front",
  732. image: {
  733. source: "./media/characters/fory/front.svg",
  734. extra: 2862 / 2674,
  735. bottom: 180 / 3043.8
  736. }
  737. },
  738. back: {
  739. height: math.unit(5, "feet"),
  740. weight: math.unit(90, "kg"),
  741. name: "Back",
  742. image: {
  743. source: "./media/characters/fory/back.svg",
  744. extra: 2962 / 2791,
  745. bottom: 106 / 3071.8
  746. }
  747. },
  748. foot: {
  749. height: math.unit(2.14, "feet"),
  750. name: "Foot",
  751. image: {
  752. source: "./media/characters/fory/foot.svg"
  753. }
  754. },
  755. },
  756. [
  757. {
  758. name: "Normal",
  759. height: math.unit(5, "feet")
  760. },
  761. {
  762. name: "Macro",
  763. height: math.unit(50, "feet"),
  764. default: true
  765. },
  766. {
  767. name: "Megamacro",
  768. height: math.unit(10, "miles")
  769. },
  770. {
  771. name: "Gigamacro",
  772. height: math.unit(5, "earths")
  773. },
  774. ]
  775. ))
  776. characterMakers.push(() => makeCharacter(
  777. { name: "Kurrikage" },
  778. {
  779. front: {
  780. height: math.unit(7, "feet"),
  781. weight: math.unit(90, "kg"),
  782. name: "Front",
  783. image: {
  784. source: "./media/characters/kurrikage/front.svg",
  785. extra: 1,
  786. bottom: 0.035
  787. }
  788. },
  789. back: {
  790. height: math.unit(7, "feet"),
  791. weight: math.unit(90, "lb"),
  792. name: "Back",
  793. image: {
  794. source: "./media/characters/kurrikage/back.svg"
  795. }
  796. },
  797. paw: {
  798. height: math.unit(1.5, "feet"),
  799. name: "Paw",
  800. image: {
  801. source: "./media/characters/kurrikage/paw.svg"
  802. }
  803. },
  804. staff: {
  805. height: math.unit(6.7, "feet"),
  806. name: "Staff",
  807. image: {
  808. source: "./media/characters/kurrikage/staff.svg"
  809. }
  810. },
  811. peek: {
  812. height: math.unit(1.05, "feet"),
  813. name: "Peeking",
  814. image: {
  815. source: "./media/characters/kurrikage/peek.svg",
  816. bottom: 0.08
  817. }
  818. },
  819. },
  820. [
  821. {
  822. name: "Normal",
  823. height: math.unit(12, "feet"),
  824. default: true
  825. },
  826. {
  827. name: "Big",
  828. height: math.unit(20, "feet")
  829. },
  830. {
  831. name: "Macro",
  832. height: math.unit(500, "feet")
  833. },
  834. {
  835. name: "Megamacro",
  836. height: math.unit(20, "miles")
  837. },
  838. ]
  839. ))
  840. characterMakers.push(() => makeCharacter(
  841. { name: "Shingo" },
  842. {
  843. front: {
  844. height: math.unit(6, "feet"),
  845. weight: math.unit(75, "kg"),
  846. name: "Front",
  847. image: {
  848. source: "./media/characters/shingo/front.svg",
  849. extra: 3511 / 3338,
  850. bottom: 0.005
  851. }
  852. },
  853. },
  854. [
  855. {
  856. name: "Micro",
  857. height: math.unit(4, "inches")
  858. },
  859. {
  860. name: "Normal",
  861. height: math.unit(6, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro",
  866. height: math.unit(108, "feet")
  867. }
  868. ]
  869. ))
  870. characterMakers.push(() => makeCharacter(
  871. { name: "Aigey" },
  872. {
  873. side: {
  874. height: math.unit(6, "feet"),
  875. weight: math.unit(75, "kg"),
  876. name: "Side",
  877. image: {
  878. source: "./media/characters/aigey/side.svg"
  879. }
  880. },
  881. },
  882. [
  883. {
  884. name: "Macro",
  885. height: math.unit(200, "feet"),
  886. default: true
  887. },
  888. {
  889. name: "Megamacro",
  890. height: math.unit(100, "miles")
  891. },
  892. ]
  893. )
  894. )
  895. characterMakers.push(() => makeCharacter(
  896. { name: "Natasha" },
  897. {
  898. front: {
  899. height: math.unit(5 + 5 / 12, "feet"),
  900. weight: math.unit(75, "kg"),
  901. name: "Front",
  902. image: {
  903. source: "./media/characters/natasha/front.svg",
  904. extra: 859/824,
  905. bottom: 23/879.6
  906. }
  907. },
  908. frontNsfw: {
  909. height: math.unit(5 + 5 / 12, "feet"),
  910. weight: math.unit(75, "kg"),
  911. name: "Front (NSFW)",
  912. image: {
  913. source: "./media/characters/natasha/front-nsfw.svg",
  914. extra: 859/824,
  915. bottom: 23/879.6
  916. }
  917. },
  918. frontErect: {
  919. height: math.unit(5 + 5 / 12, "feet"),
  920. weight: math.unit(75, "kg"),
  921. name: "Front (Erect)",
  922. image: {
  923. source: "./media/characters/natasha/front-erect.svg",
  924. extra: 859/824,
  925. bottom: 23/879.6
  926. }
  927. },
  928. back: {
  929. height: math.unit(5 + 5 / 12, "feet"),
  930. weight: math.unit(75, "kg"),
  931. name: "Back",
  932. image: {
  933. source: "./media/characters/natasha/back.svg",
  934. extra: 887.9/852.6,
  935. bottom: 9.7/896.4
  936. }
  937. },
  938. backAlt: {
  939. height: math.unit(5 + 5 / 12, "feet"),
  940. weight: math.unit(75, "kg"),
  941. name: "Back (Alt)",
  942. image: {
  943. source: "./media/characters/natasha/back-alt.svg",
  944. extra: 1236.7/1192,
  945. bottom: 22.3/1258.2
  946. }
  947. },
  948. dick: {
  949. height: math.unit(1.772, "feet"),
  950. name: "Dick",
  951. image: {
  952. source: "./media/characters/natasha/dick.svg"
  953. }
  954. },
  955. },
  956. [
  957. {
  958. name: "Normal",
  959. height: math.unit(5 + 5 / 12, "feet")
  960. },
  961. {
  962. name: "Large",
  963. height: math.unit(12, "feet")
  964. },
  965. {
  966. name: "Macro",
  967. height: math.unit(100, "feet"),
  968. default: true
  969. },
  970. {
  971. name: "Macro+",
  972. height: math.unit(260, "feet")
  973. },
  974. {
  975. name: "Macro++",
  976. height: math.unit(1, "mile")
  977. },
  978. ]
  979. ))
  980. characterMakers.push(() => makeCharacter(
  981. { name: "Malik" },
  982. {
  983. front: {
  984. height: math.unit(6, "feet"),
  985. weight: math.unit(75, "kg"),
  986. name: "Front",
  987. image: {
  988. source: "./media/characters/malik/front.svg"
  989. }
  990. },
  991. side: {
  992. height: math.unit(6, "feet"),
  993. weight: math.unit(75, "kg"),
  994. name: "Side",
  995. image: {
  996. source: "./media/characters/malik/side.svg",
  997. extra: 1.1539
  998. }
  999. },
  1000. back: {
  1001. height: math.unit(6, "feet"),
  1002. weight: math.unit(75, "kg"),
  1003. name: "Back",
  1004. image: {
  1005. source: "./media/characters/malik/back.svg"
  1006. }
  1007. },
  1008. },
  1009. [
  1010. {
  1011. name: "Macro",
  1012. height: math.unit(156, "feet"),
  1013. default: true
  1014. },
  1015. {
  1016. name: "Macro+",
  1017. height: math.unit(1188, "feet")
  1018. },
  1019. ]
  1020. ))
  1021. characterMakers.push(() => makeCharacter(
  1022. { name: "Sefer" },
  1023. {
  1024. front: {
  1025. height: math.unit(6, "feet"),
  1026. weight: math.unit(75, "kg"),
  1027. name: "Front",
  1028. image: {
  1029. source: "./media/characters/sefer/front.svg"
  1030. }
  1031. },
  1032. back: {
  1033. height: math.unit(6, "feet"),
  1034. weight: math.unit(75, "kg"),
  1035. name: "Back",
  1036. image: {
  1037. source: "./media/characters/sefer/back.svg"
  1038. }
  1039. },
  1040. },
  1041. [
  1042. {
  1043. name: "Normal",
  1044. height: math.unit(6, "feet"),
  1045. default: true
  1046. },
  1047. ]
  1048. ))
  1049. characterMakers.push(() => makeCharacter(
  1050. { name: "North" },
  1051. {
  1052. body: {
  1053. height: math.unit(2.2428, "meter"),
  1054. weight: math.unit(124.738, "kg"),
  1055. name: "Body",
  1056. image: {
  1057. extra: 1225 / 1050,
  1058. source: "./media/characters/north/front.svg"
  1059. }
  1060. }
  1061. },
  1062. [
  1063. {
  1064. name: "Micro",
  1065. height: math.unit(4, "inches")
  1066. },
  1067. {
  1068. name: "Macro",
  1069. height: math.unit(63, "meters")
  1070. },
  1071. {
  1072. name: "Megamacro",
  1073. height: math.unit(101, "miles"),
  1074. default: true
  1075. }
  1076. ]
  1077. ))
  1078. characterMakers.push(() => makeCharacter(
  1079. { name: "Talan" },
  1080. {
  1081. angled: {
  1082. height: math.unit(4, "meter"),
  1083. weight: math.unit(150, "kg"),
  1084. name: "Angled",
  1085. image: {
  1086. source: "./media/characters/talan/angled-sfw.svg",
  1087. bottom: 29 / 3734
  1088. }
  1089. },
  1090. angledNsfw: {
  1091. height: math.unit(4, "meter"),
  1092. weight: math.unit(150, "kg"),
  1093. name: "Angled (NSFW)",
  1094. image: {
  1095. source: "./media/characters/talan/angled-nsfw.svg",
  1096. bottom: 29 / 3734
  1097. }
  1098. },
  1099. frontNsfw: {
  1100. height: math.unit(4, "meter"),
  1101. weight: math.unit(150, "kg"),
  1102. name: "Front (NSFW)",
  1103. image: {
  1104. source: "./media/characters/talan/front-nsfw.svg",
  1105. bottom: 29 / 3734
  1106. }
  1107. },
  1108. sideNsfw: {
  1109. height: math.unit(4, "meter"),
  1110. weight: math.unit(150, "kg"),
  1111. name: "Side (NSFW)",
  1112. image: {
  1113. source: "./media/characters/talan/side-nsfw.svg",
  1114. bottom: 29 / 3734
  1115. }
  1116. },
  1117. back: {
  1118. height: math.unit(4, "meter"),
  1119. weight: math.unit(150, "kg"),
  1120. name: "Back",
  1121. image: {
  1122. source: "./media/characters/talan/back.svg"
  1123. }
  1124. },
  1125. dickBottom: {
  1126. height: math.unit(0.621, "meter"),
  1127. name: "Dick (Bottom)",
  1128. image: {
  1129. source: "./media/characters/talan/dick-bottom.svg"
  1130. }
  1131. },
  1132. dickTop: {
  1133. height: math.unit(0.621, "meter"),
  1134. name: "Dick (Top)",
  1135. image: {
  1136. source: "./media/characters/talan/dick-top.svg"
  1137. }
  1138. },
  1139. dickSide: {
  1140. height: math.unit(0.305, "meter"),
  1141. name: "Dick (Side)",
  1142. image: {
  1143. source: "./media/characters/talan/dick-side.svg"
  1144. }
  1145. },
  1146. dickFront: {
  1147. height: math.unit(0.305, "meter"),
  1148. name: "Dick (Front)",
  1149. image: {
  1150. source: "./media/characters/talan/dick-front.svg"
  1151. }
  1152. },
  1153. },
  1154. [
  1155. {
  1156. name: "Normal",
  1157. height: math.unit(4, "meters")
  1158. },
  1159. {
  1160. name: "Macro",
  1161. height: math.unit(100, "meters")
  1162. },
  1163. {
  1164. name: "Megamacro",
  1165. height: math.unit(2, "miles"),
  1166. default: true
  1167. },
  1168. {
  1169. name: "Gigamacro",
  1170. height: math.unit(5000, "miles")
  1171. },
  1172. {
  1173. name: "Teramacro",
  1174. height: math.unit(100, "parsecs")
  1175. }
  1176. ]
  1177. ))
  1178. characterMakers.push(() => makeCharacter(
  1179. { name: "Gael'Rathus" },
  1180. {
  1181. front: {
  1182. height: math.unit(2, "meter"),
  1183. weight: math.unit(90, "kg"),
  1184. name: "Front",
  1185. image: {
  1186. source: "./media/characters/gael'rathus/front.svg"
  1187. }
  1188. },
  1189. frontAlt: {
  1190. height: math.unit(2, "meter"),
  1191. weight: math.unit(90, "kg"),
  1192. name: "Front (alt)",
  1193. image: {
  1194. source: "./media/characters/gael'rathus/front-alt.svg"
  1195. }
  1196. },
  1197. frontAlt2: {
  1198. height: math.unit(2, "meter"),
  1199. weight: math.unit(90, "kg"),
  1200. name: "Front (alt 2)",
  1201. image: {
  1202. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1203. }
  1204. }
  1205. },
  1206. [
  1207. {
  1208. name: "Normal",
  1209. height: math.unit(9, "feet"),
  1210. default: true
  1211. },
  1212. {
  1213. name: "Large",
  1214. height: math.unit(25, "feet")
  1215. },
  1216. {
  1217. name: "Macro",
  1218. height: math.unit(0.25, "miles")
  1219. },
  1220. {
  1221. name: "Megamacro",
  1222. height: math.unit(10, "miles")
  1223. }
  1224. ]
  1225. ))
  1226. characterMakers.push(() => makeCharacter(
  1227. { name: "Sosha" },
  1228. {
  1229. side: {
  1230. height: math.unit(2, "meter"),
  1231. weight: math.unit(140, "kg"),
  1232. name: "Side",
  1233. image: {
  1234. source: "./media/characters/sosha/side.svg",
  1235. bottom: 0.042
  1236. }
  1237. },
  1238. },
  1239. [
  1240. {
  1241. name: "Normal",
  1242. height: math.unit(12, "feet"),
  1243. default: true
  1244. }
  1245. ]
  1246. ))
  1247. characterMakers.push(() => makeCharacter(
  1248. { name: "RuNNoLa" },
  1249. {
  1250. side: {
  1251. height: math.unit(5 + 5 / 12, "feet"),
  1252. weight: math.unit(170, "kg"),
  1253. name: "Side",
  1254. image: {
  1255. source: "./media/characters/runnola/side.svg",
  1256. extra: 741 / 448,
  1257. bottom: 0.05
  1258. }
  1259. },
  1260. },
  1261. [
  1262. {
  1263. name: "Small",
  1264. height: math.unit(3, "feet")
  1265. },
  1266. {
  1267. name: "Normal",
  1268. height: math.unit(5 + 5 / 12, "feet"),
  1269. default: true
  1270. },
  1271. {
  1272. name: "Big",
  1273. height: math.unit(10, "feet")
  1274. },
  1275. ]
  1276. ))
  1277. characterMakers.push(() => makeCharacter(
  1278. { name: "Kurribird" },
  1279. {
  1280. front: {
  1281. height: math.unit(2, "meter"),
  1282. weight: math.unit(50, "kg"),
  1283. name: "Front",
  1284. image: {
  1285. source: "./media/characters/kurribird/front.svg",
  1286. bottom: 0.015
  1287. }
  1288. },
  1289. frontAlt: {
  1290. height: math.unit(1.5, "meter"),
  1291. weight: math.unit(50, "kg"),
  1292. name: "Front (Alt)",
  1293. image: {
  1294. source: "./media/characters/kurribird/front-alt.svg",
  1295. extra: 1.45
  1296. }
  1297. },
  1298. },
  1299. [
  1300. {
  1301. name: "Normal",
  1302. height: math.unit(7, "feet")
  1303. },
  1304. {
  1305. name: "Big",
  1306. height: math.unit(12, "feet"),
  1307. default: true
  1308. },
  1309. {
  1310. name: "Macro",
  1311. height: math.unit(1500, "feet")
  1312. },
  1313. {
  1314. name: "Megamacro",
  1315. height: math.unit(2, "miles")
  1316. }
  1317. ]
  1318. ))
  1319. characterMakers.push(() => makeCharacter(
  1320. { name: "Elbial" },
  1321. {
  1322. front: {
  1323. height: math.unit(2, "meter"),
  1324. weight: math.unit(80, "kg"),
  1325. name: "Front",
  1326. image: {
  1327. source: "./media/characters/elbial/front.svg",
  1328. extra: 1643 / 1556,
  1329. bottom: 60.2 / 1696
  1330. }
  1331. },
  1332. side: {
  1333. height: math.unit(2, "meter"),
  1334. weight: math.unit(80, "kg"),
  1335. name: "Side",
  1336. image: {
  1337. source: "./media/characters/elbial/side.svg",
  1338. extra: 1630 / 1565,
  1339. bottom: 71.5 / 1697
  1340. }
  1341. },
  1342. back: {
  1343. height: math.unit(2, "meter"),
  1344. weight: math.unit(80, "kg"),
  1345. name: "Back",
  1346. image: {
  1347. source: "./media/characters/elbial/back.svg",
  1348. extra: 1668 / 1595,
  1349. bottom: 5.6 / 1672
  1350. }
  1351. },
  1352. frontDressed: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(80, "kg"),
  1355. name: "Front (Dressed)",
  1356. image: {
  1357. source: "./media/characters/elbial/front-dressed.svg",
  1358. extra: 1653 / 1584,
  1359. bottom: 57 / 1708
  1360. }
  1361. },
  1362. genitals: {
  1363. height: math.unit(2 / 3.367, "meter"),
  1364. name: "Genitals",
  1365. image: {
  1366. source: "./media/characters/elbial/genitals.svg"
  1367. }
  1368. },
  1369. },
  1370. [
  1371. {
  1372. name: "Large",
  1373. height: math.unit(100, "feet")
  1374. },
  1375. {
  1376. name: "Macro",
  1377. height: math.unit(500, "feet"),
  1378. default: true
  1379. },
  1380. {
  1381. name: "Megamacro",
  1382. height: math.unit(10, "miles")
  1383. },
  1384. {
  1385. name: "Gigamacro",
  1386. height: math.unit(25000, "miles")
  1387. },
  1388. {
  1389. name: "Full-Size",
  1390. height: math.unit(8000000, "gigaparsecs")
  1391. }
  1392. ]
  1393. ))
  1394. characterMakers.push(() => makeCharacter(
  1395. { name: "Noah" },
  1396. {
  1397. front: {
  1398. height: math.unit(2, "meter"),
  1399. weight: math.unit(60, "kg"),
  1400. name: "Front",
  1401. image: {
  1402. source: "./media/characters/noah/front.svg"
  1403. }
  1404. },
  1405. talons: {
  1406. height: math.unit(0.315, "meter"),
  1407. name: "Talons",
  1408. image: {
  1409. source: "./media/characters/noah/talons.svg"
  1410. }
  1411. }
  1412. },
  1413. [
  1414. {
  1415. name: "Large",
  1416. height: math.unit(50, "feet")
  1417. },
  1418. {
  1419. name: "Macro",
  1420. height: math.unit(750, "feet"),
  1421. default: true
  1422. },
  1423. {
  1424. name: "Megamacro",
  1425. height: math.unit(50, "miles")
  1426. },
  1427. {
  1428. name: "Gigamacro",
  1429. height: math.unit(100000, "miles")
  1430. },
  1431. {
  1432. name: "Full-Size",
  1433. height: math.unit(3000000000, "miles")
  1434. }
  1435. ]
  1436. ))
  1437. characterMakers.push(() => makeCharacter(
  1438. { name: "Natalya" },
  1439. {
  1440. front: {
  1441. height: math.unit(2, "meter"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Front",
  1444. image: {
  1445. source: "./media/characters/natalya/front.svg"
  1446. }
  1447. },
  1448. back: {
  1449. height: math.unit(2, "meter"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Back",
  1452. image: {
  1453. source: "./media/characters/natalya/back.svg"
  1454. }
  1455. }
  1456. },
  1457. [
  1458. {
  1459. name: "Normal",
  1460. height: math.unit(150, "feet"),
  1461. default: true
  1462. },
  1463. {
  1464. name: "Megamacro",
  1465. height: math.unit(5, "miles")
  1466. },
  1467. {
  1468. name: "Full-Size",
  1469. height: math.unit(600, "kiloparsecs")
  1470. }
  1471. ]
  1472. ))
  1473. characterMakers.push(() => makeCharacter(
  1474. { name: "Erestrebah" },
  1475. {
  1476. front: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(50, "kg"),
  1479. name: "Front",
  1480. image: {
  1481. source: "./media/characters/erestrebah/front.svg",
  1482. extra: 208 / 193,
  1483. bottom: 0.055
  1484. }
  1485. },
  1486. back: {
  1487. height: math.unit(2, "meter"),
  1488. weight: math.unit(50, "kg"),
  1489. name: "Back",
  1490. image: {
  1491. source: "./media/characters/erestrebah/back.svg",
  1492. extra: 1.3
  1493. }
  1494. }
  1495. },
  1496. [
  1497. {
  1498. name: "Normal",
  1499. height: math.unit(10, "feet")
  1500. },
  1501. {
  1502. name: "Large",
  1503. height: math.unit(50, "feet"),
  1504. default: true
  1505. },
  1506. {
  1507. name: "Macro",
  1508. height: math.unit(300, "feet")
  1509. },
  1510. {
  1511. name: "Macro+",
  1512. height: math.unit(750, "feet")
  1513. },
  1514. {
  1515. name: "Megamacro",
  1516. height: math.unit(3, "miles")
  1517. }
  1518. ]
  1519. ))
  1520. characterMakers.push(() => makeCharacter(
  1521. { name: "Jennifer" },
  1522. {
  1523. front: {
  1524. height: math.unit(2, "meter"),
  1525. weight: math.unit(80, "kg"),
  1526. name: "Front",
  1527. image: {
  1528. source: "./media/characters/jennifer/front.svg",
  1529. bottom: 0.11,
  1530. extra: 1.16
  1531. }
  1532. },
  1533. frontAlt: {
  1534. height: math.unit(2, "meter"),
  1535. weight: math.unit(80, "kg"),
  1536. name: "Front (Alt)",
  1537. image: {
  1538. source: "./media/characters/jennifer/front-alt.svg"
  1539. }
  1540. }
  1541. },
  1542. [
  1543. {
  1544. name: "Canon Height",
  1545. height: math.unit(120, "feet"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Macro+",
  1550. height: math.unit(300, "feet")
  1551. },
  1552. {
  1553. name: "Megamacro",
  1554. height: math.unit(20000, "feet")
  1555. }
  1556. ]
  1557. ))
  1558. characterMakers.push(() => makeCharacter(
  1559. { name: "Kalista" },
  1560. {
  1561. front: {
  1562. height: math.unit(2, "meter"),
  1563. weight: math.unit(50, "kg"),
  1564. name: "Front",
  1565. image: {
  1566. source: "./media/characters/kalista/front.svg",
  1567. extra: 1947 / 1700,
  1568. bottom: 76.6/1412.98
  1569. }
  1570. },
  1571. back: {
  1572. height: math.unit(2, "meter"),
  1573. weight: math.unit(50, "kg"),
  1574. name: "Back",
  1575. image: {
  1576. source: "./media/characters/kalista/back.svg",
  1577. extra: 1366 / 1156,
  1578. bottom: 33.9/1362.78
  1579. }
  1580. }
  1581. },
  1582. [
  1583. {
  1584. name: "Uncomfortably Small",
  1585. height: math.unit(10, "feet")
  1586. },
  1587. {
  1588. name: "Small",
  1589. height: math.unit(30, "feet")
  1590. },
  1591. {
  1592. name: "Macro",
  1593. height: math.unit(100, "feet"),
  1594. default: true
  1595. },
  1596. {
  1597. name: "Macro+",
  1598. height: math.unit(2000, "feet")
  1599. },
  1600. {
  1601. name: "True Form",
  1602. height: math.unit(8924, "miles")
  1603. }
  1604. ]
  1605. ))
  1606. characterMakers.push(() => makeCharacter(
  1607. { name: "GiantGrowingVixen" },
  1608. {
  1609. front: {
  1610. height: math.unit(2, "meter"),
  1611. weight: math.unit(120, "kg"),
  1612. name: "Front",
  1613. image: {
  1614. source: "./media/characters/ggv/front.svg"
  1615. }
  1616. },
  1617. side: {
  1618. height: math.unit(2, "meter"),
  1619. weight: math.unit(120, "kg"),
  1620. name: "Side",
  1621. image: {
  1622. source: "./media/characters/ggv/side.svg"
  1623. }
  1624. }
  1625. },
  1626. [
  1627. {
  1628. name: "Extremely Puny",
  1629. height: math.unit(9 + 5 / 12, "feet")
  1630. },
  1631. {
  1632. name: "Horribly Small",
  1633. height: math.unit(47.7, "miles"),
  1634. default: true
  1635. },
  1636. {
  1637. name: "Reasonably Sized",
  1638. height: math.unit(25000, "parsecs")
  1639. },
  1640. {
  1641. name: "Slightly Uncompressed",
  1642. height: math.unit(7.77e31, "parsecs")
  1643. },
  1644. {
  1645. name: "Omniversal",
  1646. height: math.unit(1e300, "meters")
  1647. },
  1648. ]
  1649. ))
  1650. characterMakers.push(() => makeCharacter(
  1651. { name: "Napalm" },
  1652. {
  1653. front: {
  1654. height: math.unit(2, "meter"),
  1655. weight: math.unit(75, "lb"),
  1656. name: "Front",
  1657. image: {
  1658. source: "./media/characters/napalm/front.svg"
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(2, "meter"),
  1663. weight: math.unit(75, "lb"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/napalm/back.svg"
  1667. }
  1668. }
  1669. },
  1670. [
  1671. {
  1672. name: "Standard",
  1673. height: math.unit(55, "feet"),
  1674. default: true
  1675. }
  1676. ]
  1677. ))
  1678. characterMakers.push(() => makeCharacter(
  1679. { name: "Asana" },
  1680. {
  1681. front: {
  1682. height: math.unit(7 + 5 / 6, "feet"),
  1683. weight: math.unit(325, "lb"),
  1684. name: "Front",
  1685. image: {
  1686. source: "./media/characters/asana/front.svg",
  1687. extra: 1128 / 1068
  1688. }
  1689. },
  1690. back: {
  1691. height: math.unit(7 + 5 / 6, "feet"),
  1692. weight: math.unit(325, "lb"),
  1693. name: "Back",
  1694. image: {
  1695. source: "./media/characters/asana/back.svg",
  1696. extra: 1128 / 1068
  1697. }
  1698. },
  1699. },
  1700. [
  1701. {
  1702. name: "Standard",
  1703. height: math.unit(7 + 5 / 6, "feet"),
  1704. default: true
  1705. },
  1706. {
  1707. name: "Large",
  1708. height: math.unit(10, "meters")
  1709. },
  1710. {
  1711. name: "Macro",
  1712. height: math.unit(2500, "meters")
  1713. },
  1714. {
  1715. name: "Megamacro",
  1716. height: math.unit(5e6, "meters")
  1717. },
  1718. {
  1719. name: "Examacro",
  1720. height: math.unit(5e12, "lightyears")
  1721. },
  1722. {
  1723. name: "Max Size",
  1724. height: math.unit(1e31, "lightyears")
  1725. }
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Ebony" },
  1730. {
  1731. front: {
  1732. height: math.unit(2, "meter"),
  1733. weight: math.unit(60, "kg"),
  1734. name: "Front",
  1735. image: {
  1736. source: "./media/characters/ebony/front.svg",
  1737. bottom: 0.03,
  1738. extra: 1045 / 810 + 0.03
  1739. }
  1740. },
  1741. side: {
  1742. height: math.unit(2, "meter"),
  1743. weight: math.unit(60, "kg"),
  1744. name: "Side",
  1745. image: {
  1746. source: "./media/characters/ebony/side.svg",
  1747. bottom: 0.03,
  1748. extra: 1045 / 810 + 0.03
  1749. }
  1750. },
  1751. back: {
  1752. height: math.unit(2, "meter"),
  1753. weight: math.unit(60, "kg"),
  1754. name: "Back",
  1755. image: {
  1756. source: "./media/characters/ebony/back.svg",
  1757. bottom: 0.01,
  1758. extra: 1045 / 810 + 0.01
  1759. }
  1760. },
  1761. },
  1762. [
  1763. // TODO check why I did this lol
  1764. {
  1765. name: "Standard",
  1766. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1767. default: true
  1768. },
  1769. {
  1770. name: "Macro",
  1771. height: math.unit(200, "feet")
  1772. },
  1773. {
  1774. name: "Gigamacro",
  1775. height: math.unit(13000, "km")
  1776. }
  1777. ]
  1778. ))
  1779. characterMakers.push(() => makeCharacter(
  1780. { name: "Mountain" },
  1781. {
  1782. front: {
  1783. height: math.unit(6, "feet"),
  1784. weight: math.unit(175, "lb"),
  1785. name: "Front",
  1786. image: {
  1787. source: "./media/characters/mountain/front.svg"
  1788. }
  1789. },
  1790. back: {
  1791. height: math.unit(6, "feet"),
  1792. weight: math.unit(175, "lb"),
  1793. name: "Back",
  1794. image: {
  1795. source: "./media/characters/mountain/back.svg"
  1796. }
  1797. },
  1798. },
  1799. [
  1800. {
  1801. name: "Large",
  1802. height: math.unit(20, "meters")
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(300, "meters")
  1807. },
  1808. {
  1809. name: "Gigamacro",
  1810. height: math.unit(10000, "km"),
  1811. default: true
  1812. },
  1813. {
  1814. name: "Examacro",
  1815. height: math.unit(10e9, "lightyears")
  1816. }
  1817. ]
  1818. ))
  1819. characterMakers.push(() => makeCharacter(
  1820. { name: "Rick" },
  1821. {
  1822. front: {
  1823. height: math.unit(8, "feet"),
  1824. weight: math.unit(500, "lb"),
  1825. name: "Front",
  1826. image: {
  1827. source: "./media/characters/rick/front.svg"
  1828. }
  1829. }
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(8, "feet"),
  1835. default: true
  1836. },
  1837. {
  1838. name: "Macro",
  1839. height: math.unit(5, "km")
  1840. }
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Ona" },
  1845. {
  1846. front: {
  1847. height: math.unit(8, "feet"),
  1848. weight: math.unit(120, "lb"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/ona/front.svg"
  1852. }
  1853. },
  1854. frontAlt: {
  1855. height: math.unit(8, "feet"),
  1856. weight: math.unit(120, "lb"),
  1857. name: "Front (Alt)",
  1858. image: {
  1859. source: "./media/characters/ona/front-alt.svg"
  1860. }
  1861. },
  1862. back: {
  1863. height: math.unit(8, "feet"),
  1864. weight: math.unit(120, "lb"),
  1865. name: "Back",
  1866. image: {
  1867. source: "./media/characters/ona/back.svg"
  1868. }
  1869. },
  1870. foot: {
  1871. height: math.unit(1.1, "feet"),
  1872. name: "Foot",
  1873. image: {
  1874. source: "./media/characters/ona/foot.svg"
  1875. }
  1876. }
  1877. },
  1878. [
  1879. {
  1880. name: "Megamacro",
  1881. height: math.unit(70, "km"),
  1882. default: true
  1883. },
  1884. {
  1885. name: "Gigamacro",
  1886. height: math.unit(681818, "miles")
  1887. },
  1888. {
  1889. name: "Examacro",
  1890. height: math.unit(3800000, "lightyears")
  1891. },
  1892. ]
  1893. ))
  1894. characterMakers.push(() => makeCharacter(
  1895. { name: "Mech" },
  1896. {
  1897. front: {
  1898. height: math.unit(12, "feet"),
  1899. weight: math.unit(3000, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/mech/front.svg",
  1903. bottom: 0.025,
  1904. }
  1905. },
  1906. back: {
  1907. height: math.unit(12, "feet"),
  1908. weight: math.unit(3000, "lb"),
  1909. name: "Back",
  1910. image: {
  1911. source: "./media/characters/mech/back.svg",
  1912. bottom: 0.03,
  1913. }
  1914. }
  1915. },
  1916. [
  1917. {
  1918. name: "Normal",
  1919. height: math.unit(12, "feet")
  1920. },
  1921. {
  1922. name: "Macro",
  1923. height: math.unit(300, "feet"),
  1924. default: true
  1925. },
  1926. {
  1927. name: "Macro+",
  1928. height: math.unit(1500, "feet")
  1929. },
  1930. ]
  1931. ))
  1932. characterMakers.push(() => makeCharacter(
  1933. { name: "Gregory" },
  1934. {
  1935. front: {
  1936. height: math.unit(1.3, "meter"),
  1937. weight: math.unit(30, "kg"),
  1938. name: "Front",
  1939. image: {
  1940. source: "./media/characters/gregory/front.svg",
  1941. }
  1942. }
  1943. },
  1944. [
  1945. {
  1946. name: "Normal",
  1947. height: math.unit(1.3, "meter"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(20, "meter")
  1953. }
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Elory" },
  1958. {
  1959. front: {
  1960. height: math.unit(2.8, "meter"),
  1961. weight: math.unit(200, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/elory/front.svg",
  1965. }
  1966. }
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(2.8, "meter"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Macro",
  1976. height: math.unit(38, "meter")
  1977. }
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Angelpatamon" },
  1982. {
  1983. front: {
  1984. height: math.unit(470, "feet"),
  1985. weight: math.unit(924, "tons"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/angelpatamon/front.svg",
  1989. }
  1990. }
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(470, "feet"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Deity Size I",
  2000. height: math.unit(28651.2, "km")
  2001. },
  2002. {
  2003. name: "Deity Size II",
  2004. height: math.unit(171907.2, "km")
  2005. }
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Cryae" },
  2010. {
  2011. side: {
  2012. height: math.unit(7.2, "meter"),
  2013. weight: math.unit(8.2, "tons"),
  2014. name: "Side",
  2015. image: {
  2016. source: "./media/characters/cryae/side.svg",
  2017. extra: 3500 / 1500
  2018. }
  2019. }
  2020. },
  2021. [
  2022. {
  2023. name: "Normal",
  2024. height: math.unit(7.2, "meter"),
  2025. default: true
  2026. }
  2027. ]
  2028. ))
  2029. characterMakers.push(() => makeCharacter(
  2030. { name: "Xera" },
  2031. {
  2032. front: {
  2033. height: math.unit(6, "feet"),
  2034. weight: math.unit(175, "lb"),
  2035. name: "Front",
  2036. image: {
  2037. source: "./media/characters/xera/front.svg",
  2038. extra: 2300 / 2061
  2039. }
  2040. },
  2041. side: {
  2042. height: math.unit(6, "feet"),
  2043. weight: math.unit(175, "lb"),
  2044. name: "Side",
  2045. image: {
  2046. source: "./media/characters/xera/side.svg",
  2047. extra: 2300 / 2061
  2048. }
  2049. },
  2050. back: {
  2051. height: math.unit(6, "feet"),
  2052. weight: math.unit(175, "lb"),
  2053. name: "Back",
  2054. image: {
  2055. source: "./media/characters/xera/back.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Small",
  2062. height: math.unit(10, "feet")
  2063. },
  2064. {
  2065. name: "Macro",
  2066. height: math.unit(500, "meters"),
  2067. default: true
  2068. },
  2069. {
  2070. name: "Macro+",
  2071. height: math.unit(10, "km")
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(25000, "km")
  2076. },
  2077. {
  2078. name: "Teramacro",
  2079. height: math.unit(3e6, "km")
  2080. }
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Nebula" },
  2085. {
  2086. front: {
  2087. height: math.unit(6, "feet"),
  2088. weight: math.unit(175, "lb"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/nebula/front.svg",
  2092. extra: 2600 / 2450
  2093. }
  2094. }
  2095. },
  2096. [
  2097. {
  2098. name: "Small",
  2099. height: math.unit(4.5, "meters")
  2100. },
  2101. {
  2102. name: "Macro",
  2103. height: math.unit(1500, "meters"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Megamacro",
  2108. height: math.unit(150, "km")
  2109. },
  2110. {
  2111. name: "Gigamacro",
  2112. height: math.unit(27000, "km")
  2113. }
  2114. ]
  2115. ))
  2116. characterMakers.push(() => makeCharacter(
  2117. { name: "Abysgar" },
  2118. {
  2119. front: {
  2120. height: math.unit(6, "feet"),
  2121. weight: math.unit(225, "lb"),
  2122. name: "Front",
  2123. image: {
  2124. source: "./media/characters/abysgar/front.svg"
  2125. }
  2126. }
  2127. },
  2128. [
  2129. {
  2130. name: "Small",
  2131. height: math.unit(4.5, "meters")
  2132. },
  2133. {
  2134. name: "Macro",
  2135. height: math.unit(1250, "meters"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Megamacro",
  2140. height: math.unit(125, "km")
  2141. },
  2142. {
  2143. name: "Gigamacro",
  2144. height: math.unit(26000, "km")
  2145. }
  2146. ]
  2147. ))
  2148. characterMakers.push(() => makeCharacter(
  2149. { name: "Yakuz" },
  2150. {
  2151. front: {
  2152. height: math.unit(6, "feet"),
  2153. weight: math.unit(180, "lb"),
  2154. name: "Front",
  2155. image: {
  2156. source: "./media/characters/yakuz/front.svg"
  2157. }
  2158. }
  2159. },
  2160. [
  2161. {
  2162. name: "Small",
  2163. height: math.unit(5, "meters")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(1500, "meters"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(200, "km")
  2173. },
  2174. {
  2175. name: "Gigamacro",
  2176. height: math.unit(100000, "km")
  2177. }
  2178. ]
  2179. ))
  2180. characterMakers.push(() => makeCharacter(
  2181. { name: "Mirova" },
  2182. {
  2183. front: {
  2184. height: math.unit(6, "feet"),
  2185. weight: math.unit(175, "lb"),
  2186. name: "Front",
  2187. image: {
  2188. source: "./media/characters/mirova/front.svg"
  2189. }
  2190. }
  2191. },
  2192. [
  2193. {
  2194. name: "Small",
  2195. height: math.unit(5, "meters")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(900, "meters"),
  2200. default: true
  2201. },
  2202. {
  2203. name: "Megamacro",
  2204. height: math.unit(135, "km")
  2205. },
  2206. {
  2207. name: "Gigamacro",
  2208. height: math.unit(20000, "km")
  2209. }
  2210. ]
  2211. ))
  2212. characterMakers.push(() => makeCharacter(
  2213. { name: "Asana (Mech)" },
  2214. {
  2215. side: {
  2216. height: math.unit(28.35, "feet"),
  2217. weight: math.unit(99.75, "tons"),
  2218. name: "Side",
  2219. image: {
  2220. source: "./media/characters/asana-mech/side.svg"
  2221. }
  2222. }
  2223. },
  2224. [
  2225. {
  2226. name: "Normal",
  2227. height: math.unit(28.35, "feet"),
  2228. default: true
  2229. },
  2230. {
  2231. name: "Macro",
  2232. height: math.unit(2500, "feet")
  2233. },
  2234. {
  2235. name: "Megamacro",
  2236. height: math.unit(25, "miles")
  2237. },
  2238. {
  2239. name: "Examacro",
  2240. height: math.unit(6e8, "lightyears")
  2241. },
  2242. ]
  2243. ))
  2244. characterMakers.push(() => makeCharacter(
  2245. { name: "Ashtrek" },
  2246. {
  2247. front: {
  2248. height: math.unit(2, "meters"),
  2249. weight: math.unit(70, "kg"),
  2250. name: "Front",
  2251. image: {
  2252. source: "./media/characters/ashtrek/front.svg",
  2253. extra: 560 / 524,
  2254. bottom: 0.01
  2255. }
  2256. },
  2257. frontArmor: {
  2258. height: math.unit(2, "meters"),
  2259. weight: math.unit(76, "kg"),
  2260. name: "Front (Armor)",
  2261. image: {
  2262. source: "./media/characters/ashtrek/front-armor.svg",
  2263. extra: 561 / 527,
  2264. bottom: 0.01
  2265. }
  2266. },
  2267. side: {
  2268. height: math.unit(2, "meters"),
  2269. weight: math.unit(70, "kg"),
  2270. name: "Side",
  2271. image: {
  2272. source: "./media/characters/ashtrek/side.svg",
  2273. extra: 1717 / 1609,
  2274. bottom: 0.005
  2275. }
  2276. },
  2277. back: {
  2278. height: math.unit(2, "meters"),
  2279. weight: math.unit(70, "kg"),
  2280. name: "Back",
  2281. image: {
  2282. source: "./media/characters/ashtrek/back.svg",
  2283. extra: 1570 / 1501
  2284. }
  2285. },
  2286. },
  2287. [
  2288. {
  2289. name: "DEFCON 5",
  2290. height: math.unit(5, "meters")
  2291. },
  2292. {
  2293. name: "DEFCON 4",
  2294. height: math.unit(500, "meters"),
  2295. default: true
  2296. },
  2297. {
  2298. name: "DEFCON 3",
  2299. height: math.unit(5, "km")
  2300. },
  2301. {
  2302. name: "DEFCON 2",
  2303. height: math.unit(500, "km")
  2304. },
  2305. {
  2306. name: "DEFCON 1",
  2307. height: math.unit(500000, "km")
  2308. },
  2309. {
  2310. name: "DEFCON 0",
  2311. height: math.unit(3, "gigaparsecs")
  2312. },
  2313. ]
  2314. ))
  2315. characterMakers.push(() => makeCharacter(
  2316. { name: "Gale" },
  2317. {
  2318. front: {
  2319. height: math.unit(2, "meters"),
  2320. weight: math.unit(76, "kg"),
  2321. name: "Front",
  2322. image: {
  2323. source: "./media/characters/gale/front.svg"
  2324. }
  2325. },
  2326. frontAlt1: {
  2327. height: math.unit(2, "meters"),
  2328. weight: math.unit(76, "kg"),
  2329. name: "Front (Alt 1)",
  2330. image: {
  2331. source: "./media/characters/gale/front-alt-1.svg"
  2332. }
  2333. },
  2334. frontAlt2: {
  2335. height: math.unit(2, "meters"),
  2336. weight: math.unit(76, "kg"),
  2337. name: "Front (Alt 2)",
  2338. image: {
  2339. source: "./media/characters/gale/front-alt-2.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(7, "feet")
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(150, "feet"),
  2351. default: true
  2352. },
  2353. {
  2354. name: "Macro+",
  2355. height: math.unit(300, "feet")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Draylen" },
  2361. {
  2362. front: {
  2363. height: math.unit(2, "meters"),
  2364. weight: math.unit(76, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/draylen/front.svg"
  2368. }
  2369. }
  2370. },
  2371. [
  2372. {
  2373. name: "Macro",
  2374. height: math.unit(150, "feet"),
  2375. default: true
  2376. }
  2377. ]
  2378. ))
  2379. characterMakers.push(() => makeCharacter(
  2380. { name: "Chez" },
  2381. {
  2382. front: {
  2383. height: math.unit(7 + 9 / 12, "feet"),
  2384. weight: math.unit(379, "lbs"),
  2385. name: "Front",
  2386. image: {
  2387. source: "./media/characters/chez/front.svg"
  2388. }
  2389. },
  2390. side: {
  2391. height: math.unit(7 + 9 / 12, "feet"),
  2392. weight: math.unit(379, "lbs"),
  2393. name: "Side",
  2394. image: {
  2395. source: "./media/characters/chez/side.svg"
  2396. }
  2397. }
  2398. },
  2399. [
  2400. {
  2401. name: "Normal",
  2402. height: math.unit(7 + 9 / 12, "feet"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "God King",
  2407. height: math.unit(9750000, "meters")
  2408. }
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Kaylum" },
  2413. {
  2414. front: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(275, "lbs"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/kaylum/front.svg",
  2420. bottom: 0.01,
  2421. extra: 1166 / 1031
  2422. }
  2423. },
  2424. frontWingless: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(275, "lbs"),
  2427. name: "Front (Wingless)",
  2428. image: {
  2429. source: "./media/characters/kaylum/front-wingless.svg",
  2430. bottom: 0.01,
  2431. extra: 1117 / 1031
  2432. }
  2433. }
  2434. },
  2435. [
  2436. {
  2437. name: "Normal",
  2438. height: math.unit(3.05, "meters")
  2439. },
  2440. {
  2441. name: "Master",
  2442. height: math.unit(5.5, "meters")
  2443. },
  2444. {
  2445. name: "Rampage",
  2446. height: math.unit(19, "meters")
  2447. },
  2448. {
  2449. name: "Macro Lite",
  2450. height: math.unit(37, "meters")
  2451. },
  2452. {
  2453. name: "Hyper Predator",
  2454. height: math.unit(61, "meters")
  2455. },
  2456. {
  2457. name: "Macro",
  2458. height: math.unit(138, "meters"),
  2459. default: true
  2460. }
  2461. ]
  2462. ))
  2463. characterMakers.push(() => makeCharacter(
  2464. { name: "Geta" },
  2465. {
  2466. front: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(150, "lbs"),
  2469. name: "Front",
  2470. image: {
  2471. source: "./media/characters/geta/front.svg"
  2472. }
  2473. }
  2474. },
  2475. [
  2476. {
  2477. name: "Micro",
  2478. height: math.unit(3, "inches"),
  2479. default: true
  2480. },
  2481. {
  2482. name: "Normal",
  2483. height: math.unit(5 + 5 / 12, "feet")
  2484. }
  2485. ]
  2486. ))
  2487. characterMakers.push(() => makeCharacter(
  2488. { name: "Tyrnn" },
  2489. {
  2490. front: {
  2491. height: math.unit(6, "feet"),
  2492. weight: math.unit(300, "lbs"),
  2493. name: "Front",
  2494. image: {
  2495. source: "./media/characters/tyrnn/front.svg"
  2496. }
  2497. }
  2498. },
  2499. [
  2500. {
  2501. name: "Main Height",
  2502. height: math.unit(355, "feet"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Fave. Height",
  2507. height: math.unit(2400, "feet")
  2508. }
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Apple" },
  2513. {
  2514. front: {
  2515. height: math.unit(6, "feet"),
  2516. weight: math.unit(300, "lbs"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/appledectomy/front.svg"
  2520. }
  2521. }
  2522. },
  2523. [
  2524. {
  2525. name: "Macro",
  2526. height: math.unit(2500, "feet")
  2527. },
  2528. {
  2529. name: "Megamacro",
  2530. height: math.unit(50, "miles"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(5000, "miles")
  2536. },
  2537. {
  2538. name: "Teramacro",
  2539. height: math.unit(250000, "miles")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Vulpes" },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(200, "lbs"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/vulpes/front.svg",
  2552. extra: 573 / 543,
  2553. bottom: 0.033
  2554. }
  2555. },
  2556. side: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(200, "lbs"),
  2559. name: "Side",
  2560. image: {
  2561. source: "./media/characters/vulpes/side.svg",
  2562. extra: 573 / 543,
  2563. bottom: 0.01
  2564. }
  2565. },
  2566. back: {
  2567. height: math.unit(6, "feet"),
  2568. weight: math.unit(200, "lbs"),
  2569. name: "Back",
  2570. image: {
  2571. source: "./media/characters/vulpes/back.svg",
  2572. extra: 573 / 543,
  2573. }
  2574. },
  2575. feet: {
  2576. height: math.unit(1.276, "feet"),
  2577. name: "Feet",
  2578. image: {
  2579. source: "./media/characters/vulpes/feet.svg"
  2580. }
  2581. },
  2582. maw: {
  2583. height: math.unit(1.18, "feet"),
  2584. name: "Maw",
  2585. image: {
  2586. source: "./media/characters/vulpes/maw.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Micro",
  2593. height: math.unit(2, "inches")
  2594. },
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(6.3, "feet")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(850, "feet")
  2602. },
  2603. {
  2604. name: "Megamacro",
  2605. height: math.unit(7500, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Gigamacro",
  2610. height: math.unit(570000, "miles")
  2611. }
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Rain Fallen" },
  2616. {
  2617. front: {
  2618. height: math.unit(6, "feet"),
  2619. weight: math.unit(210, "lbs"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/rain-fallen/front.svg"
  2623. }
  2624. },
  2625. side: {
  2626. height: math.unit(6, "feet"),
  2627. weight: math.unit(210, "lbs"),
  2628. name: "Side",
  2629. image: {
  2630. source: "./media/characters/rain-fallen/side.svg"
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(210, "lbs"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/rain-fallen/back.svg"
  2639. }
  2640. },
  2641. feral: {
  2642. height: math.unit(9, "feet"),
  2643. weight: math.unit(700, "lbs"),
  2644. name: "Feral",
  2645. image: {
  2646. source: "./media/characters/rain-fallen/feral.svg"
  2647. }
  2648. },
  2649. },
  2650. [
  2651. {
  2652. name: "Normal",
  2653. height: math.unit(5, "meter")
  2654. },
  2655. {
  2656. name: "Macro",
  2657. height: math.unit(150, "meter"),
  2658. default: true
  2659. },
  2660. {
  2661. name: "Megamacro",
  2662. height: math.unit(278e6, "meter")
  2663. },
  2664. {
  2665. name: "Gigamacro",
  2666. height: math.unit(2e9, "meter")
  2667. },
  2668. {
  2669. name: "Teramacro",
  2670. height: math.unit(8e12, "meter")
  2671. },
  2672. {
  2673. name: "Devourer",
  2674. height: math.unit(14, "zettameters")
  2675. },
  2676. {
  2677. name: "Scarlet King",
  2678. height: math.unit(18, "yottameters")
  2679. },
  2680. {
  2681. name: "Void",
  2682. height: math.unit(6.66e66, "yottameters")
  2683. }
  2684. ]
  2685. ))
  2686. characterMakers.push(() => makeCharacter(
  2687. { name: "Zaakira" },
  2688. {
  2689. standing: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(180, "lbs"),
  2692. name: "Standing",
  2693. image: {
  2694. source: "./media/characters/zaakira/standing.svg"
  2695. }
  2696. },
  2697. laying: {
  2698. height: math.unit(3, "feet"),
  2699. weight: math.unit(180, "lbs"),
  2700. name: "Laying",
  2701. image: {
  2702. source: "./media/characters/zaakira/laying.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(12, "feet")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(279, "feet"),
  2714. default: true
  2715. }
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Sigvald" },
  2720. {
  2721. front: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(250, "lbs"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/sigvald/front.svg",
  2727. extra: 1000 / 850
  2728. }
  2729. },
  2730. back: {
  2731. height: math.unit(6, "feet"),
  2732. weight: math.unit(250, "lbs"),
  2733. name: "Back",
  2734. image: {
  2735. source: "./media/characters/sigvald/back.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(8, "feet")
  2743. },
  2744. {
  2745. name: "Large",
  2746. height: math.unit(12, "feet")
  2747. },
  2748. {
  2749. name: "Larger",
  2750. height: math.unit(20, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(150, "feet")
  2755. },
  2756. {
  2757. name: "Macro+",
  2758. height: math.unit(200, "feet"),
  2759. default: true
  2760. },
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "Scott" },
  2765. {
  2766. side: {
  2767. height: math.unit(12, "feet"),
  2768. weight: math.unit(2000, "kg"),
  2769. name: "Side",
  2770. image: {
  2771. source: "./media/characters/scott/side.svg",
  2772. extra: 754/724,
  2773. bottom: 0.069
  2774. }
  2775. },
  2776. upright: {
  2777. height: math.unit(12, "feet"),
  2778. weight: math.unit(2000, "kg"),
  2779. name: "Upright",
  2780. image: {
  2781. source: "./media/characters/scott/upright.svg",
  2782. extra: 3881/3722,
  2783. bottom: 0.05
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(12, "feet"),
  2791. default: true
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "Tobias" },
  2797. {
  2798. side: {
  2799. height: math.unit(8, "meters"),
  2800. weight: math.unit(84755, "lbs"),
  2801. name: "Side",
  2802. image: {
  2803. source: "./media/characters/tobias/side.svg",
  2804. extra: 1474 / 1096,
  2805. bottom: 38.9 / 1513.1235
  2806. }
  2807. },
  2808. },
  2809. [
  2810. {
  2811. name: "Normal",
  2812. height: math.unit(8, "meters"),
  2813. default: true
  2814. },
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Kieran" },
  2819. {
  2820. front: {
  2821. height: math.unit(5.5, "feet"),
  2822. weight: math.unit(400, "lbs"),
  2823. name: "Front",
  2824. image: {
  2825. source: "./media/characters/kieran/front.svg",
  2826. extra: 2694/2364,
  2827. bottom: 217/2908
  2828. }
  2829. },
  2830. side: {
  2831. height: math.unit(5.5, "feet"),
  2832. weight: math.unit(400, "lbs"),
  2833. name: "Side",
  2834. image: {
  2835. source: "./media/characters/kieran/side.svg",
  2836. extra: 875/777,
  2837. bottom: 84.6/959
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(5.5, "feet"),
  2845. default: true
  2846. },
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Sanya" },
  2851. {
  2852. side: {
  2853. height: math.unit(2, "meters"),
  2854. weight: math.unit(70, "kg"),
  2855. name: "Side",
  2856. image: {
  2857. source: "./media/characters/sanya/side.svg",
  2858. bottom: 0.02,
  2859. extra: 1.02
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Small",
  2866. height: math.unit(2, "meters")
  2867. },
  2868. {
  2869. name: "Normal",
  2870. height: math.unit(3, "meters")
  2871. },
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(16, "meters"),
  2875. default: true
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Miranda" },
  2881. {
  2882. side: {
  2883. height: math.unit(2, "meters"),
  2884. weight: math.unit(120, "kg"),
  2885. name: "Front",
  2886. image: {
  2887. source: "./media/characters/miranda/front.svg",
  2888. extra: 10.6 / 10
  2889. }
  2890. },
  2891. },
  2892. [
  2893. {
  2894. name: "Normal",
  2895. height: math.unit(10, "feet"),
  2896. default: true
  2897. }
  2898. ]
  2899. ))
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "James" },
  2902. {
  2903. side: {
  2904. height: math.unit(2, "meters"),
  2905. weight: math.unit(100, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/james/front.svg",
  2909. extra: 10 / 8.5
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(8.5, "feet"),
  2917. default: true
  2918. }
  2919. ]
  2920. ))
  2921. characterMakers.push(() => makeCharacter(
  2922. { name: "Heather" },
  2923. {
  2924. side: {
  2925. height: math.unit(9.5, "feet"),
  2926. weight: math.unit(2500, "lbs"),
  2927. name: "Side",
  2928. image: {
  2929. source: "./media/characters/heather/side.svg"
  2930. }
  2931. },
  2932. },
  2933. [
  2934. {
  2935. name: "Normal",
  2936. height: math.unit(9.5, "feet"),
  2937. default: true
  2938. }
  2939. ]
  2940. ))
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Lukas" },
  2943. {
  2944. side: {
  2945. height: math.unit(6.5, "feet"),
  2946. weight: math.unit(400, "lbs"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/lukas/side.svg",
  2950. extra: 7.25 / 6.5
  2951. }
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(6.5, "feet"),
  2958. default: true
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Louise" },
  2964. {
  2965. side: {
  2966. height: math.unit(5, "feet"),
  2967. weight: math.unit(3000, "lbs"),
  2968. name: "Side",
  2969. image: {
  2970. source: "./media/characters/louise/side.svg"
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(5, "feet"),
  2978. default: true
  2979. }
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Ramona" },
  2984. {
  2985. side: {
  2986. height: math.unit(6, "feet"),
  2987. weight: math.unit(150, "lbs"),
  2988. name: "Side",
  2989. image: {
  2990. source: "./media/characters/ramona/side.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5.3, "meters"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(20, "stories")
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(50, "stories")
  3007. },
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "Deerpuff" },
  3012. {
  3013. standing: {
  3014. height: math.unit(5.75, "feet"),
  3015. weight: math.unit(160, "lbs"),
  3016. name: "Standing",
  3017. image: {
  3018. source: "./media/characters/deerpuff/standing.svg",
  3019. extra: 682 / 624
  3020. }
  3021. },
  3022. sitting: {
  3023. height: math.unit(5.75 / 1.79, "feet"),
  3024. weight: math.unit(160, "lbs"),
  3025. name: "Sitting",
  3026. image: {
  3027. source: "./media/characters/deerpuff/sitting.svg",
  3028. bottom: 44 / 400,
  3029. extra: 1
  3030. }
  3031. },
  3032. taurLaying: {
  3033. height: math.unit(6, "feet"),
  3034. weight: math.unit(400, "lbs"),
  3035. name: "Taur (Laying)",
  3036. image: {
  3037. source: "./media/characters/deerpuff/taur-laying.svg"
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Puffball",
  3044. height: math.unit(6, "inches")
  3045. },
  3046. {
  3047. name: "Normalpuff",
  3048. height: math.unit(5.75, "feet")
  3049. },
  3050. {
  3051. name: "Macropuff",
  3052. height: math.unit(1500, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Megapuff",
  3057. height: math.unit(500, "miles")
  3058. },
  3059. {
  3060. name: "Gigapuff",
  3061. height: math.unit(250000, "miles")
  3062. },
  3063. {
  3064. name: "Omegapuff",
  3065. height: math.unit(1000, "lightyears")
  3066. },
  3067. ]
  3068. ))
  3069. characterMakers.push(() => makeCharacter(
  3070. { name: "Vivian" },
  3071. {
  3072. stomping: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(170, "lbs"),
  3075. name: "Stomping",
  3076. image: {
  3077. source: "./media/characters/vivian/stomping.svg"
  3078. }
  3079. },
  3080. sitting: {
  3081. height: math.unit(6 / 1.75, "feet"),
  3082. weight: math.unit(170, "lbs"),
  3083. name: "Sitting",
  3084. image: {
  3085. source: "./media/characters/vivian/sitting.svg",
  3086. bottom: 1 / 6.4,
  3087. extra: 1,
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(7, "feet"),
  3095. default: true
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(10, "stories")
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(30, "stories")
  3104. },
  3105. {
  3106. name: "Megamacro",
  3107. height: math.unit(10, "miles")
  3108. },
  3109. {
  3110. name: "Megamacro+",
  3111. height: math.unit(2750000, "meters")
  3112. },
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Prince" },
  3117. {
  3118. front: {
  3119. height: math.unit(6, "feet"),
  3120. weight: math.unit(160, "lbs"),
  3121. name: "Front",
  3122. image: {
  3123. source: "./media/characters/prince/front.svg",
  3124. extra: 3400 / 3000
  3125. }
  3126. },
  3127. jumping: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(160, "lbs"),
  3130. name: "Jumping",
  3131. image: {
  3132. source: "./media/characters/prince/jump.svg",
  3133. extra: 2555 / 2134
  3134. }
  3135. },
  3136. },
  3137. [
  3138. {
  3139. name: "Normal",
  3140. height: math.unit(7.75, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Not cute",
  3145. height: math.unit(17, "feet")
  3146. },
  3147. {
  3148. name: "I said NOT",
  3149. height: math.unit(91, "feet")
  3150. },
  3151. {
  3152. name: "Please stop",
  3153. height: math.unit(560, "feet")
  3154. },
  3155. {
  3156. name: "What have you done",
  3157. height: math.unit(2200, "feet")
  3158. },
  3159. {
  3160. name: "Deer God",
  3161. height: math.unit(3.6, "miles")
  3162. },
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Psymon" },
  3167. {
  3168. standing: {
  3169. height: math.unit(6, "feet"),
  3170. weight: math.unit(300, "lbs"),
  3171. name: "Standing",
  3172. image: {
  3173. source: "./media/characters/psymon/standing.svg",
  3174. extra: 1888 / 1810,
  3175. bottom: 0.05
  3176. }
  3177. },
  3178. slithering: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(300, "lbs"),
  3181. name: "Slithering",
  3182. image: {
  3183. source: "./media/characters/psymon/slithering.svg",
  3184. extra: 1330 / 1224
  3185. }
  3186. },
  3187. slitheringAlt: {
  3188. height: math.unit(6, "feet"),
  3189. weight: math.unit(300, "lbs"),
  3190. name: "Slithering (Alt)",
  3191. image: {
  3192. source: "./media/characters/psymon/slithering-alt.svg",
  3193. extra: 1330 / 1224
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(11.25, "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Large",
  3205. height: math.unit(27, "feet")
  3206. },
  3207. {
  3208. name: "Giant",
  3209. height: math.unit(87, "feet")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(365, "feet")
  3214. },
  3215. {
  3216. name: "Megamacro",
  3217. height: math.unit(3, "miles")
  3218. },
  3219. {
  3220. name: "World Serpent",
  3221. height: math.unit(8000, "miles")
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Daimos" },
  3227. {
  3228. front: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(180, "lbs"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/daimos/front.svg",
  3234. extra: 4160 / 3897,
  3235. bottom: 0.021
  3236. }
  3237. }
  3238. },
  3239. [
  3240. {
  3241. name: "Normal",
  3242. height: math.unit(8, "feet"),
  3243. default: true
  3244. },
  3245. {
  3246. name: "Big Dog",
  3247. height: math.unit(22, "feet")
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(127, "feet")
  3252. },
  3253. {
  3254. name: "Megamacro",
  3255. height: math.unit(3600, "feet")
  3256. },
  3257. ]
  3258. ))
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Blake" },
  3261. {
  3262. side: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(180, "lbs"),
  3265. name: "Side",
  3266. image: {
  3267. source: "./media/characters/blake/side.svg",
  3268. extra: 1212 / 1120,
  3269. bottom: 0.05
  3270. }
  3271. },
  3272. crouched: {
  3273. height: math.unit(6 * 0.57, "feet"),
  3274. weight: math.unit(180, "lbs"),
  3275. name: "Crouched",
  3276. image: {
  3277. source: "./media/characters/blake/crouched.svg",
  3278. extra: 840 / 587,
  3279. bottom: 0.04
  3280. }
  3281. },
  3282. bent: {
  3283. height: math.unit(6 * 0.75, "feet"),
  3284. weight: math.unit(180, "lbs"),
  3285. name: "Bent",
  3286. image: {
  3287. source: "./media/characters/blake/bent.svg",
  3288. extra: 592 / 544,
  3289. bottom: 0.035
  3290. }
  3291. },
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(8 + 1 / 6, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Big Backside",
  3301. height: math.unit(37, "feet")
  3302. },
  3303. {
  3304. name: "Subway Shredder",
  3305. height: math.unit(72, "feet")
  3306. },
  3307. {
  3308. name: "City Carver",
  3309. height: math.unit(1675, "feet")
  3310. },
  3311. {
  3312. name: "Tectonic Tweaker",
  3313. height: math.unit(2300, "miles")
  3314. },
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Guisetto" },
  3319. {
  3320. front: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(180, "lbs"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/guisetto/front.svg",
  3326. extra: 856 / 817,
  3327. bottom: 0.06
  3328. }
  3329. },
  3330. airborne: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(180, "lbs"),
  3333. name: "Airborne",
  3334. image: {
  3335. source: "./media/characters/guisetto/airborne.svg",
  3336. extra: 584 / 525
  3337. }
  3338. },
  3339. },
  3340. [
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(10 + 11 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Large",
  3348. height: math.unit(35, "feet")
  3349. },
  3350. {
  3351. name: "Macro",
  3352. height: math.unit(475, "feet")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Luxor" },
  3358. {
  3359. front: {
  3360. height: math.unit(6, "feet"),
  3361. weight: math.unit(180, "lbs"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/luxor/front.svg",
  3365. extra: 2940 / 2152
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(180, "lbs"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/luxor/back.svg",
  3374. extra: 1083 / 960
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(5 + 5 / 6, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Lamp",
  3386. height: math.unit(50, "feet")
  3387. },
  3388. {
  3389. name: "Lämp",
  3390. height: math.unit(300, "feet")
  3391. },
  3392. {
  3393. name: "The sun is a lamp",
  3394. height: math.unit(250000, "miles")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Huoyan" },
  3400. {
  3401. front: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(50, "lbs"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/huoyan/front.svg"
  3407. }
  3408. },
  3409. side: {
  3410. height: math.unit(6, "feet"),
  3411. weight: math.unit(180, "lbs"),
  3412. name: "Side",
  3413. image: {
  3414. source: "./media/characters/huoyan/side.svg"
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Chef",
  3421. height: math.unit(9, "feet")
  3422. },
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(65, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(780, "feet")
  3431. },
  3432. {
  3433. name: "Flaming Mountain",
  3434. height: math.unit(4.8, "miles")
  3435. },
  3436. {
  3437. name: "Celestial",
  3438. height: math.unit(765000, "miles")
  3439. },
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Tails" },
  3444. {
  3445. front: {
  3446. height: math.unit(5 + 3 / 4, "feet"),
  3447. weight: math.unit(120, "lbs"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/tails/front.svg"
  3451. }
  3452. }
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(5 + 3 / 4, "feet"),
  3458. default: true
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Rainy" },
  3464. {
  3465. front: {
  3466. height: math.unit(4, "feet"),
  3467. weight: math.unit(50, "lbs"),
  3468. name: "Front",
  3469. image: {
  3470. source: "./media/characters/rainy/front.svg"
  3471. }
  3472. }
  3473. },
  3474. [
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(800, "feet"),
  3478. default: true
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Rainier" },
  3484. {
  3485. front: {
  3486. height: math.unit(6, "feet"),
  3487. weight: math.unit(150, "lbs"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/rainier/front.svg"
  3491. }
  3492. }
  3493. },
  3494. [
  3495. {
  3496. name: "Micro",
  3497. height: math.unit(2, "mm"),
  3498. default: true
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Andy" },
  3504. {
  3505. front: {
  3506. height: math.unit(6, "feet"),
  3507. weight: math.unit(180, "lbs"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/andy/front.svg"
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(8, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(1000, "feet")
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(5, "miles")
  3527. },
  3528. {
  3529. name: "Gigamacro",
  3530. height: math.unit(5000, "miles")
  3531. },
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Cimmaron" },
  3536. {
  3537. front: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(210, "lbs"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/cimmaron/front-sfw.svg",
  3543. extra: 701 / 676,
  3544. bottom: 0.046
  3545. }
  3546. },
  3547. back: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(210, "lbs"),
  3550. name: "Back",
  3551. image: {
  3552. source: "./media/characters/cimmaron/back-sfw.svg",
  3553. extra: 701 / 676,
  3554. bottom: 0.046
  3555. }
  3556. },
  3557. frontNsfw: {
  3558. height: math.unit(6, "feet"),
  3559. weight: math.unit(210, "lbs"),
  3560. name: "Front (NSFW)",
  3561. image: {
  3562. source: "./media/characters/cimmaron/front-nsfw.svg",
  3563. extra: 701 / 676,
  3564. bottom: 0.046
  3565. }
  3566. },
  3567. backNsfw: {
  3568. height: math.unit(6, "feet"),
  3569. weight: math.unit(210, "lbs"),
  3570. name: "Back (NSFW)",
  3571. image: {
  3572. source: "./media/characters/cimmaron/back-nsfw.svg",
  3573. extra: 701 / 676,
  3574. bottom: 0.046
  3575. }
  3576. },
  3577. dick: {
  3578. height: math.unit(1.714, "feet"),
  3579. name: "Dick",
  3580. image: {
  3581. source: "./media/characters/cimmaron/dick.svg"
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(6, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro Mayor",
  3593. height: math.unit(350, "meters")
  3594. },
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Akari Kaen" },
  3599. {
  3600. front: {
  3601. height: math.unit(6, "feet"),
  3602. weight: math.unit(200, "lbs"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/akari/front.svg",
  3606. extra: 962 / 901,
  3607. bottom: 0.04
  3608. }
  3609. }
  3610. },
  3611. [
  3612. {
  3613. name: "Micro",
  3614. height: math.unit(5, "inches"),
  3615. default: true
  3616. },
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(7, "feet")
  3620. },
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Cynosura" },
  3625. {
  3626. front: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(140, "lbs"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/cynosura/front.svg",
  3632. extra: 896 / 847
  3633. }
  3634. },
  3635. back: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(140, "lbs"),
  3638. name: "Back",
  3639. image: {
  3640. source: "./media/characters/cynosura/back.svg",
  3641. extra: 1365 / 1250
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Micro",
  3648. height: math.unit(4, "inches")
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(5.75, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Tall",
  3657. height: math.unit(10, "feet")
  3658. },
  3659. {
  3660. name: "Big",
  3661. height: math.unit(20, "feet")
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(50, "feet")
  3666. },
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Gin" },
  3671. {
  3672. front: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(170, "lbs"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/gin/front.svg",
  3678. extra: 1.053,
  3679. bottom: 0.025
  3680. }
  3681. },
  3682. foot: {
  3683. height: math.unit(6 / 4.25, "feet"),
  3684. name: "Foot",
  3685. image: {
  3686. source: "./media/characters/gin/foot.svg"
  3687. }
  3688. },
  3689. sole: {
  3690. height: math.unit(6 / 4.40, "feet"),
  3691. name: "Sole",
  3692. image: {
  3693. source: "./media/characters/gin/sole.svg"
  3694. }
  3695. },
  3696. },
  3697. [
  3698. {
  3699. name: "Normal",
  3700. height: math.unit(13 + 2/12, "feet")
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(1500, "feet")
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(200, "miles"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Gigamacro",
  3713. height: math.unit(500, "megameters")
  3714. },
  3715. {
  3716. name: "Teramacro",
  3717. height: math.unit(15, "lightyears")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Guy" },
  3723. {
  3724. front: {
  3725. height: math.unit(6 + 1 / 6, "feet"),
  3726. weight: math.unit(178, "lbs"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/guy/front.svg"
  3730. }
  3731. }
  3732. },
  3733. [
  3734. {
  3735. name: "Normal",
  3736. height: math.unit(6 + 1 / 6, "feet"),
  3737. default: true
  3738. },
  3739. {
  3740. name: "Large",
  3741. height: math.unit(25 + 7 / 12, "feet")
  3742. },
  3743. {
  3744. name: "Macro",
  3745. height: math.unit(60 + 9 / 12, "feet")
  3746. },
  3747. {
  3748. name: "Macro+",
  3749. height: math.unit(246, "feet")
  3750. },
  3751. {
  3752. name: "Macro++",
  3753. height: math.unit(878, "feet")
  3754. }
  3755. ]
  3756. ))
  3757. characterMakers.push(() => makeCharacter(
  3758. { name: "Tiberius" },
  3759. {
  3760. front: {
  3761. height: math.unit(9, "feet"),
  3762. weight: math.unit(800, "lbs"),
  3763. name: "Front",
  3764. image: {
  3765. source: "./media/characters/tiberius/front.svg",
  3766. extra: 2295 / 2071
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(9, "feet"),
  3771. weight: math.unit(800, "lbs"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/tiberius/back.svg",
  3775. extra: 2373 / 2160
  3776. }
  3777. },
  3778. },
  3779. [
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(9, "feet"),
  3783. default: true
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Surgo" },
  3789. {
  3790. front: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(600, "lbs"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/surgo/front.svg",
  3796. extra: 3591 / 2227
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(600, "lbs"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/surgo/back.svg",
  3805. extra: 3557 / 2228
  3806. }
  3807. },
  3808. laying: {
  3809. height: math.unit(6 * 0.85, "feet"),
  3810. weight: math.unit(600, "lbs"),
  3811. name: "Laying",
  3812. image: {
  3813. source: "./media/characters/surgo/laying.svg"
  3814. }
  3815. },
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(6, "feet"),
  3821. default: true
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Cibus" },
  3827. {
  3828. side: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(150, "lbs"),
  3831. name: "Side",
  3832. image: {
  3833. source: "./media/characters/cibus/side.svg",
  3834. extra: 800 / 400
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(6, "feet"),
  3842. default: true
  3843. }
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Nibbles" },
  3848. {
  3849. front: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(240, "lbs"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/nibbles/front.svg"
  3855. }
  3856. },
  3857. side: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(240, "lbs"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/nibbles/side.svg"
  3863. }
  3864. },
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(9, "feet"),
  3870. default: true
  3871. }
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Rikky" },
  3876. {
  3877. side: {
  3878. height: math.unit(5 + 1 / 6, "feet"),
  3879. weight: math.unit(130, "lbs"),
  3880. name: "Side",
  3881. image: {
  3882. source: "./media/characters/rikky/side.svg"
  3883. }
  3884. },
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(5 + 1 / 6, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(152, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(7, "miles")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Malfressa" },
  3904. {
  3905. side: {
  3906. height: math.unit(370, "cm"),
  3907. weight: math.unit(350, "lbs"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/malfressa/side.svg"
  3911. }
  3912. },
  3913. walking: {
  3914. height: math.unit(370, "cm"),
  3915. weight: math.unit(350, "lbs"),
  3916. name: "Walking",
  3917. image: {
  3918. source: "./media/characters/malfressa/walking.svg"
  3919. }
  3920. },
  3921. feral: {
  3922. height: math.unit(2500, "cm"),
  3923. weight: math.unit(100000, "lbs"),
  3924. name: "Feral",
  3925. image: {
  3926. source: "./media/characters/malfressa/feral.svg",
  3927. extra: 2108 / 837,
  3928. bottom: 0.02
  3929. }
  3930. },
  3931. },
  3932. [
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(370, "cm")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(300, "meters"),
  3940. default: true
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Jaro" },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(60, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/jaro/front.svg"
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(60, "kg"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/jaro/back.svg"
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Micro",
  3967. height: math.unit(7, "inches")
  3968. },
  3969. {
  3970. name: "Normal",
  3971. height: math.unit(5.5, "feet"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Minimacro",
  3976. height: math.unit(20, "feet")
  3977. },
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(200, "meters")
  3981. }
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Rogue" },
  3986. {
  3987. front: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(195, "lb"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/rogue/front.svg"
  3993. }
  3994. },
  3995. },
  3996. [
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(90, "feet"),
  4000. default: true
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Piper" },
  4006. {
  4007. front: {
  4008. height: math.unit(5 + 8 / 12, "feet"),
  4009. weight: math.unit(140, "lb"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/piper/front.svg",
  4013. extra: 3928 / 3681
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Micro",
  4020. height: math.unit(2, "inches")
  4021. },
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(5 + 8 / 12, "feet")
  4025. },
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(250, "feet"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Megamacro",
  4033. height: math.unit(7, "miles")
  4034. },
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Gemini" },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(220, "lb"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/gemini/front.svg"
  4046. }
  4047. },
  4048. back: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(220, "lb"),
  4051. name: "Back",
  4052. image: {
  4053. source: "./media/characters/gemini/back.svg"
  4054. }
  4055. },
  4056. kneeling: {
  4057. height: math.unit(6 / 1.5, "feet"),
  4058. weight: math.unit(220, "lb"),
  4059. name: "Kneeling",
  4060. image: {
  4061. source: "./media/characters/gemini/kneeling.svg",
  4062. bottom: 0.02
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(300, "meters"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Megamacro",
  4074. height: math.unit(6900, "meters")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Alicia" },
  4080. {
  4081. anthro: {
  4082. height: math.unit(2.35, "meters"),
  4083. weight: math.unit(73, "kg"),
  4084. name: "Anthro",
  4085. image: {
  4086. source: "./media/characters/alicia/anthro.svg"
  4087. }
  4088. },
  4089. feral: {
  4090. height: math.unit(1.69, "meters"),
  4091. weight: math.unit(73, "kg"),
  4092. name: "Feral",
  4093. image: {
  4094. source: "./media/characters/alicia/feral.svg"
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(2.35, "meters")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(60, "meters"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(10000, "kilometers")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Archy" },
  4116. {
  4117. front: {
  4118. height: math.unit(7, "feet"),
  4119. weight: math.unit(250, "lbs"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/archy/front.svg"
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(1, "inch")
  4130. },
  4131. {
  4132. name: "Shorty",
  4133. height: math.unit(5, "feet")
  4134. },
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(7, "feet")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(600, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(1, "mile")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Berri" },
  4152. {
  4153. front: {
  4154. height: math.unit(1.65, "meters"),
  4155. weight: math.unit(74, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/berri/front.svg"
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(1.65, "meters")
  4166. },
  4167. {
  4168. name: "Macro",
  4169. height: math.unit(60, "m"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Megamacro",
  4174. height: math.unit(9.213, "km")
  4175. },
  4176. {
  4177. name: "Planet Eater",
  4178. height: math.unit(489, "megameters")
  4179. },
  4180. {
  4181. name: "Teramacro",
  4182. height: math.unit(2471635000000, "meters")
  4183. },
  4184. {
  4185. name: "Examacro",
  4186. height: math.unit(8.0624e+26, "meters")
  4187. }
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Lexi" },
  4192. {
  4193. front: {
  4194. height: math.unit(1.72, "meters"),
  4195. weight: math.unit(68, "kg"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/lexi/front.svg"
  4199. }
  4200. }
  4201. },
  4202. [
  4203. {
  4204. name: "Very Smol",
  4205. height: math.unit(10, "mm")
  4206. },
  4207. {
  4208. name: "Micro",
  4209. height: math.unit(6.8, "cm"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(1.72, "m")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Martin" },
  4220. {
  4221. front: {
  4222. height: math.unit(1.69, "meters"),
  4223. weight: math.unit(68, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/martin/front.svg",
  4227. extra: 596 / 581
  4228. }
  4229. }
  4230. },
  4231. [
  4232. {
  4233. name: "Micro",
  4234. height: math.unit(6.85, "cm"),
  4235. default: true
  4236. },
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(1.69, "m")
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Juno" },
  4245. {
  4246. front: {
  4247. height: math.unit(1.69, "meters"),
  4248. weight: math.unit(68, "kg"),
  4249. name: "Front",
  4250. image: {
  4251. source: "./media/characters/juno/front.svg"
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Micro",
  4258. height: math.unit(7, "cm")
  4259. },
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(1.89, "m")
  4263. },
  4264. {
  4265. name: "Macro",
  4266. height: math.unit(353, "meters"),
  4267. default: true
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Samantha" },
  4273. {
  4274. front: {
  4275. height: math.unit(1.93, "meters"),
  4276. weight: math.unit(83, "kg"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/samantha/front.svg"
  4280. }
  4281. },
  4282. frontClothed: {
  4283. height: math.unit(1.93, "meters"),
  4284. weight: math.unit(83, "kg"),
  4285. name: "Front (Clothed)",
  4286. image: {
  4287. source: "./media/characters/samantha/front-clothed.svg"
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(1.93, "meters"),
  4292. weight: math.unit(83, "kg"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/samantha/back.svg"
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(1.93, "m")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(74, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Macro+",
  4311. height: math.unit(223, "meters"),
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(8381, "meters"),
  4316. },
  4317. {
  4318. name: "Megamacro+",
  4319. height: math.unit(12000, "kilometers")
  4320. },
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Dr. Clay" },
  4325. {
  4326. front: {
  4327. height: math.unit(1.92, "meters"),
  4328. weight: math.unit(80, "kg"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/dr-clay/front.svg"
  4332. }
  4333. },
  4334. frontClothed: {
  4335. height: math.unit(1.92, "meters"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Front (Clothed)",
  4338. image: {
  4339. source: "./media/characters/dr-clay/front-clothed.svg"
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(1.92, "m")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(214, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro+",
  4355. height: math.unit(12.237, "meters"),
  4356. },
  4357. {
  4358. name: "Megamacro",
  4359. height: math.unit(557, "megameters"),
  4360. },
  4361. {
  4362. name: "Unimaginable",
  4363. height: math.unit(120e9, "lightyears")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Wyvrn Ripsnarl" },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meters"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4376. }
  4377. }
  4378. },
  4379. [
  4380. {
  4381. name: "Teramacro",
  4382. height: math.unit(500000, "lightyears"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Vemus" },
  4389. {
  4390. front: {
  4391. height: math.unit(2, "meters"),
  4392. weight: math.unit(150, "kg"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/vemus/front.svg",
  4396. extra: 2384 / 2084,
  4397. bottom: 0.0123
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(3.75, "meters"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Big",
  4409. height: math.unit(8, "meters")
  4410. },
  4411. {
  4412. name: "Macro",
  4413. height: math.unit(100, "meters")
  4414. },
  4415. {
  4416. name: "Macro+",
  4417. height: math.unit(1500, "meters")
  4418. },
  4419. {
  4420. name: "Stellar",
  4421. height: math.unit(14e8, "meters")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Beherit" },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(70, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/beherit/front.svg",
  4434. extra: 1408 / 1242
  4435. }
  4436. }
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(6, "feet")
  4442. },
  4443. {
  4444. name: "Lorg",
  4445. height: math.unit(25, "feet"),
  4446. default: true
  4447. },
  4448. {
  4449. name: "Lorger",
  4450. height: math.unit(75, "feet")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(200, "meters")
  4455. },
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Everett" },
  4460. {
  4461. front: {
  4462. height: math.unit(2, "meters"),
  4463. weight: math.unit(150, "kg"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/everett/front.svg",
  4467. extra: 2038 / 1737,
  4468. bottom: 0.03
  4469. }
  4470. },
  4471. paw: {
  4472. height: math.unit(2 / 3.6, "meters"),
  4473. name: "Paw",
  4474. image: {
  4475. source: "./media/characters/everett/paw.svg"
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(15, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Lorg",
  4487. height: math.unit(70, "feet"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Lorger",
  4492. height: math.unit(250, "feet")
  4493. },
  4494. {
  4495. name: "Macro",
  4496. height: math.unit(500, "meters")
  4497. },
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Rose Lion" },
  4502. {
  4503. front: {
  4504. height: math.unit(2, "meters"),
  4505. weight: math.unit(86, "kg"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/rose-lion/front.svg"
  4509. }
  4510. },
  4511. bent: {
  4512. height: math.unit(2 / 1.4288, "meters"),
  4513. weight: math.unit(86, "kg"),
  4514. name: "Bent",
  4515. image: {
  4516. source: "./media/characters/rose-lion/bent.svg"
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Mini-Micro",
  4523. height: math.unit(1, "cm")
  4524. },
  4525. {
  4526. name: "Micro",
  4527. height: math.unit(3.5, "inches"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Normal",
  4532. height: math.unit(6 + 1 / 6, "feet")
  4533. },
  4534. {
  4535. name: "Mini-Macro",
  4536. height: math.unit(9 + 10 / 12, "feet")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Regal" },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(350, "lbs"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/regal/front.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(2, "meters"),
  4553. weight: math.unit(350, "lbs"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/regal/back.svg"
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(350, "feet"),
  4564. default: true
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Opal" },
  4570. {
  4571. front: {
  4572. height: math.unit(4 + 11 / 12, "feet"),
  4573. weight: math.unit(100, "lbs"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/opal/front.svg"
  4577. }
  4578. },
  4579. frontAlt: {
  4580. height: math.unit(4 + 11 / 12, "feet"),
  4581. weight: math.unit(100, "lbs"),
  4582. name: "Front (Alt)",
  4583. image: {
  4584. source: "./media/characters/opal/front-alt.svg"
  4585. }
  4586. },
  4587. },
  4588. [
  4589. {
  4590. name: "Small",
  4591. height: math.unit(4 + 11 / 12, "feet")
  4592. },
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(20, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(120, "feet")
  4601. },
  4602. {
  4603. name: "Megamacro",
  4604. height: math.unit(80, "miles")
  4605. },
  4606. {
  4607. name: "True Size",
  4608. height: math.unit(100000, "lightyears")
  4609. },
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Vector Wuff" },
  4614. {
  4615. front: {
  4616. height: math.unit(6, "feet"),
  4617. weight: math.unit(200, "lbs"),
  4618. name: "Front",
  4619. image: {
  4620. source: "./media/characters/vector-wuff/front.svg"
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(2.8, "meters")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(450, "meters"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "Megamacro",
  4636. height: math.unit(15, "kilometers")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Dannik" },
  4642. {
  4643. front: {
  4644. height: math.unit(6, "feet"),
  4645. weight: math.unit(256, "lbs"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/dannik/front.svg"
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(69.57, "meters"),
  4656. default: true
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Azura Saharah" },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(120, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/azura-saharah/front.svg"
  4669. }
  4670. },
  4671. back: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(120, "lbs"),
  4674. name: "Back",
  4675. image: {
  4676. source: "./media/characters/azura-saharah/back.svg"
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(100, "feet"),
  4684. default: true
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Kennedy" },
  4690. {
  4691. side: {
  4692. height: math.unit(5 + 4 / 12, "feet"),
  4693. weight: math.unit(163, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/kennedy/side.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Standard Doggo",
  4703. height: math.unit(5 + 4 / 12, "feet")
  4704. },
  4705. {
  4706. name: "Big Doggo",
  4707. height: math.unit(25 + 3 / 12, "feet"),
  4708. default: true
  4709. },
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Odi Lunar" },
  4714. {
  4715. front: {
  4716. height: math.unit(6, "feet"),
  4717. weight: math.unit(90, "lbs"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/odi-lunar/front.svg"
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Micro",
  4727. height: math.unit(3, "inches"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(5.5, "feet")
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Mandake" },
  4738. {
  4739. back: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(220, "lbs"),
  4742. name: "Back",
  4743. image: {
  4744. source: "./media/characters/mandake/back.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(7, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro",
  4756. height: math.unit(78, "feet")
  4757. },
  4758. {
  4759. name: "Macro+",
  4760. height: math.unit(300, "meters")
  4761. },
  4762. {
  4763. name: "Macro++",
  4764. height: math.unit(2400, "feet")
  4765. },
  4766. {
  4767. name: "Megamacro",
  4768. height: math.unit(5167, "meters")
  4769. },
  4770. {
  4771. name: "Gigamacro",
  4772. height: math.unit(41769, "miles")
  4773. },
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Yozey" },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(120, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/yozey/front.svg"
  4785. }
  4786. },
  4787. frontAlt: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(120, "lbs"),
  4790. name: "Front (Alt)",
  4791. image: {
  4792. source: "./media/characters/yozey/front-alt.svg"
  4793. }
  4794. },
  4795. side: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(120, "lbs"),
  4798. name: "Side",
  4799. image: {
  4800. source: "./media/characters/yozey/side.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(3, "inches"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(6, "feet")
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Valeska Voss" },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(103, "lbs"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/valeska-voss/front.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Mini-Sized Sub",
  4831. height: math.unit(3.1, "inches")
  4832. },
  4833. {
  4834. name: "Mid-Sized Sub",
  4835. height: math.unit(6.2, "inches")
  4836. },
  4837. {
  4838. name: "Full-Sized Sub",
  4839. height: math.unit(9.3, "inches")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(5 + 2 / 12, "foot"),
  4844. default: true
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Gene Zeta" },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(160, "lbs"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/gene-zeta/front.svg",
  4857. bottom: 0.03,
  4858. extra: 1
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(6.25, "foot"),
  4866. default: true
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Razinox" },
  4872. {
  4873. front: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(350, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/razinox/front.svg",
  4879. extra: 1686 / 1548
  4880. }
  4881. },
  4882. back: {
  4883. height: math.unit(6, "feet"),
  4884. weight: math.unit(350, "lbs"),
  4885. name: "Back",
  4886. image: {
  4887. source: "./media/characters/razinox/back.svg",
  4888. extra: 1660 / 1590
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(10 + 8 / 12, "foot")
  4896. },
  4897. {
  4898. name: "Minimacro",
  4899. height: math.unit(15, "foot")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(60, "foot"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(5, "miles")
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(6000, "miles")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Cobalt" },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(150, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/cobalt/front.svg"
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(8 + 1 / 12, "foot")
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(111, "foot"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Supracosmic",
  4940. height: math.unit(1e42, "feet")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Amanda" },
  4946. {
  4947. front: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(140, "lbs"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/amanda/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(5, "inches"),
  4960. default: true
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Teal" },
  4966. {
  4967. front: {
  4968. height: math.unit(5.59, "feet"),
  4969. weight: math.unit(250, "lbs"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/teal/front.svg"
  4973. }
  4974. },
  4975. frontAlt: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(250, "lbs"),
  4978. name: "Front (Alt)",
  4979. image: {
  4980. source: "./media/characters/teal/front-alt.svg",
  4981. bottom: 0.04,
  4982. extra: 1
  4983. }
  4984. },
  4985. },
  4986. [
  4987. {
  4988. name: "Normal",
  4989. height: math.unit(12, "feet"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Macro",
  4994. height: math.unit(300, "feet")
  4995. },
  4996. ]
  4997. ))
  4998. characterMakers.push(() => makeCharacter(
  4999. { name: "Ravin Amulet" },
  5000. {
  5001. frontCat: {
  5002. height: math.unit(6, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Front (Cat)",
  5005. image: {
  5006. source: "./media/characters/ravin-amulet/front-cat.svg"
  5007. }
  5008. },
  5009. frontCatAlt: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Front (Alt, Cat)",
  5013. image: {
  5014. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5015. }
  5016. },
  5017. frontWerewolf: {
  5018. height: math.unit(6 * 1.2, "feet"),
  5019. weight: math.unit(225, "lbs"),
  5020. name: "Front (Werewolf)",
  5021. image: {
  5022. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5023. }
  5024. },
  5025. backWerewolf: {
  5026. height: math.unit(6 * 1.2, "feet"),
  5027. weight: math.unit(225, "lbs"),
  5028. name: "Back (Werewolf)",
  5029. image: {
  5030. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Nano",
  5037. height: math.unit(1, "micrometer")
  5038. },
  5039. {
  5040. name: "Micro",
  5041. height: math.unit(1, "inch")
  5042. },
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(6, "feet"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Macro",
  5050. height: math.unit(60, "feet")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Fluoresce" },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(165, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/fluoresce/front.svg"
  5063. }
  5064. }
  5065. },
  5066. [
  5067. {
  5068. name: "Micro",
  5069. height: math.unit(6, "cm")
  5070. },
  5071. {
  5072. name: "Normal",
  5073. height: math.unit(5 + 7 / 12, "feet"),
  5074. default: true
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(56, "feet")
  5079. },
  5080. {
  5081. name: "Megamacro",
  5082. height: math.unit(1.9, "miles")
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Aurora" },
  5088. {
  5089. front: {
  5090. height: math.unit(9 + 6 / 12, "feet"),
  5091. weight: math.unit(523, "lbs"),
  5092. name: "Side",
  5093. image: {
  5094. source: "./media/characters/aurora/side.svg"
  5095. }
  5096. }
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(9 + 6 / 12, "feet")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(96, "feet"),
  5106. default: true
  5107. },
  5108. {
  5109. name: "Macro+",
  5110. height: math.unit(243, "feet")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Ranek" },
  5116. {
  5117. front: {
  5118. height: math.unit(194, "cm"),
  5119. weight: math.unit(90, "kg"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/ranek/front.svg"
  5123. }
  5124. },
  5125. side: {
  5126. height: math.unit(194, "cm"),
  5127. weight: math.unit(90, "kg"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/ranek/side.svg"
  5131. }
  5132. },
  5133. back: {
  5134. height: math.unit(194, "cm"),
  5135. weight: math.unit(90, "kg"),
  5136. name: "Back",
  5137. image: {
  5138. source: "./media/characters/ranek/back.svg"
  5139. }
  5140. },
  5141. feral: {
  5142. height: math.unit(30, "cm"),
  5143. weight: math.unit(1.6, "lbs"),
  5144. name: "Feral",
  5145. image: {
  5146. source: "./media/characters/ranek/feral.svg"
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(194, "cm"),
  5154. default: true
  5155. },
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(100, "meters")
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Andrew Cooper" },
  5164. {
  5165. front: {
  5166. height: math.unit(5 + 6 / 12, "feet"),
  5167. weight: math.unit(153, "lbs"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/andrew-cooper/front.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Nano",
  5177. height: math.unit(1, "mm")
  5178. },
  5179. {
  5180. name: "Micro",
  5181. height: math.unit(2, "inches")
  5182. },
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(5 + 6 / 12, "feet"),
  5186. default: true
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Akane Sato" },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(180, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/akane-sato/front.svg",
  5199. extra: 1219 / 1140
  5200. }
  5201. },
  5202. back: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(180, "lbs"),
  5205. name: "Back",
  5206. image: {
  5207. source: "./media/characters/akane-sato/back.svg",
  5208. extra: 1219 / 1170
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(2.5, "meters")
  5216. },
  5217. {
  5218. name: "Macro",
  5219. height: math.unit(250, "meters"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Megamacro",
  5224. height: math.unit(25, "km")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Rook" },
  5230. {
  5231. front: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(65, "kg"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/rook/front.svg",
  5237. extra: 960/950
  5238. }
  5239. }
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(8.8, "feet")
  5245. },
  5246. {
  5247. name: "Macro",
  5248. height: math.unit(88, "feet"),
  5249. default: true
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(8, "miles")
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Prodigy" },
  5259. {
  5260. front: {
  5261. height: math.unit(12 + 2 / 12, "feet"),
  5262. weight: math.unit(808, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/prodigy/front.svg"
  5266. }
  5267. }
  5268. },
  5269. [
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(12 + 2 / 12, "feet"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(143, "feet")
  5278. },
  5279. {
  5280. name: "Macro+",
  5281. height: math.unit(400, "feet")
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Daniel" },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(225, "lbs"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/daniel/front.svg"
  5294. }
  5295. },
  5296. leaning: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(225, "lbs"),
  5299. name: "Leaning",
  5300. image: {
  5301. source: "./media/characters/daniel/leaning.svg"
  5302. }
  5303. },
  5304. },
  5305. [
  5306. {
  5307. name: "Macro",
  5308. height: math.unit(1000, "feet"),
  5309. default: true
  5310. },
  5311. ]
  5312. ))
  5313. characterMakers.push(() => makeCharacter(
  5314. { name: "Chiros" },
  5315. {
  5316. front: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(88, "lbs"),
  5319. name: "Front",
  5320. image: {
  5321. source: "./media/characters/chiros/front.svg",
  5322. extra: 306 / 226
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(88, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/chiros/side.svg",
  5331. extra: 306 / 226
  5332. }
  5333. },
  5334. },
  5335. [
  5336. {
  5337. name: "Normal",
  5338. height: math.unit(6, "cm"),
  5339. default: true
  5340. },
  5341. ]
  5342. ))
  5343. characterMakers.push(() => makeCharacter(
  5344. { name: "Selka" },
  5345. {
  5346. front: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(100, "lbs"),
  5349. name: "Front",
  5350. image: {
  5351. source: "./media/characters/selka/front.svg",
  5352. extra: 947 / 887
  5353. }
  5354. }
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(5, "cm"),
  5360. default: true
  5361. },
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Verin" },
  5366. {
  5367. front: {
  5368. height: math.unit(8 + 3 / 12, "feet"),
  5369. weight: math.unit(424, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/verin/front.svg",
  5373. extra: 1845 / 1550
  5374. }
  5375. },
  5376. frontArmored: {
  5377. height: math.unit(8 + 3 / 12, "feet"),
  5378. weight: math.unit(424, "lbs"),
  5379. name: "Front (Armored)",
  5380. image: {
  5381. source: "./media/characters/verin/front-armor.svg",
  5382. extra: 1845 / 1550,
  5383. bottom: 0.01
  5384. }
  5385. },
  5386. back: {
  5387. height: math.unit(8 + 3 / 12, "feet"),
  5388. weight: math.unit(424, "lbs"),
  5389. name: "Back",
  5390. image: {
  5391. source: "./media/characters/verin/back.svg",
  5392. bottom: 0.1,
  5393. extra: 1
  5394. }
  5395. },
  5396. foot: {
  5397. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5398. name: "Foot",
  5399. image: {
  5400. source: "./media/characters/verin/foot.svg"
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(8 + 3 / 12, "feet")
  5408. },
  5409. {
  5410. name: "Minimacro",
  5411. height: math.unit(21, "feet"),
  5412. default: true
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(626, "feet")
  5417. },
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Sovrim Terraquian" },
  5422. {
  5423. front: {
  5424. height: math.unit(2.718, "meters"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Front",
  5427. image: {
  5428. source: "./media/characters/sovrim-terraquian/front.svg"
  5429. }
  5430. },
  5431. back: {
  5432. height: math.unit(2.718, "meters"),
  5433. weight: math.unit(150, "lbs"),
  5434. name: "Back",
  5435. image: {
  5436. source: "./media/characters/sovrim-terraquian/back.svg"
  5437. }
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Micro",
  5443. height: math.unit(2, "inches")
  5444. },
  5445. {
  5446. name: "Small",
  5447. height: math.unit(1, "meter")
  5448. },
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(Math.E, "meters"),
  5452. default: true
  5453. },
  5454. {
  5455. name: "Macro",
  5456. height: math.unit(20, "meters")
  5457. },
  5458. {
  5459. name: "Macro+",
  5460. height: math.unit(400, "meters")
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Reece Silvermane" },
  5466. {
  5467. front: {
  5468. height: math.unit(7, "feet"),
  5469. weight: math.unit(489, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/reece-silvermane/front.svg",
  5473. bottom: 0.02,
  5474. extra: 1
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Macro",
  5481. height: math.unit(1.5, "miles"),
  5482. default: true
  5483. },
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Kane" },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(78, "kg"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/kane/front.svg",
  5495. extra: 978 / 899
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(2.1, "m"),
  5503. },
  5504. {
  5505. name: "Macro",
  5506. height: math.unit(1, "km"),
  5507. default: true
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Tegon" },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(200, "kg"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/tegon/front.svg",
  5520. bottom: 0.01,
  5521. extra: 1
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Micro",
  5528. height: math.unit(1, "inch")
  5529. },
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(6 + 3 / 12, "feet"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(300, "feet")
  5538. },
  5539. {
  5540. name: "Megamacro",
  5541. height: math.unit(69, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Arcturax" },
  5547. {
  5548. side: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(2304, "lbs"),
  5551. name: "Side",
  5552. image: {
  5553. source: "./media/characters/arcturax/side.svg",
  5554. extra: 790 / 376,
  5555. bottom: 0.01
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(2, "inch")
  5563. },
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(6, "feet")
  5567. },
  5568. {
  5569. name: "Macro",
  5570. height: math.unit(39, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Megamacro",
  5575. height: math.unit(7, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Sentri" },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(50, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/sentri/front.svg",
  5588. extra: 1750 / 1570,
  5589. bottom: 0.025
  5590. }
  5591. },
  5592. frontAlt: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(50, "lbs"),
  5595. name: "Front (Alt)",
  5596. image: {
  5597. source: "./media/characters/sentri/front-alt.svg",
  5598. extra: 1750 / 1570,
  5599. bottom: 0.025
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(15, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(2500, "feet")
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Corvin" },
  5617. {
  5618. front: {
  5619. height: math.unit(5 + 8 / 12, "feet"),
  5620. weight: math.unit(130, "lbs"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/corvin/front.svg",
  5624. extra: 1803 / 1629
  5625. }
  5626. },
  5627. frontShirt: {
  5628. height: math.unit(5 + 8 / 12, "feet"),
  5629. weight: math.unit(130, "lbs"),
  5630. name: "Front (Shirt)",
  5631. image: {
  5632. source: "./media/characters/corvin/front-shirt.svg",
  5633. extra: 1803 / 1629
  5634. }
  5635. },
  5636. frontPoncho: {
  5637. height: math.unit(5 + 8 / 12, "feet"),
  5638. weight: math.unit(130, "lbs"),
  5639. name: "Front (Poncho)",
  5640. image: {
  5641. source: "./media/characters/corvin/front-poncho.svg",
  5642. extra: 1803 / 1629
  5643. }
  5644. },
  5645. side: {
  5646. height: math.unit(5 + 8 / 12, "feet"),
  5647. weight: math.unit(130, "lbs"),
  5648. name: "Side",
  5649. image: {
  5650. source: "./media/characters/corvin/side.svg",
  5651. extra: 1012 / 945
  5652. }
  5653. },
  5654. back: {
  5655. height: math.unit(5 + 8 / 12, "feet"),
  5656. weight: math.unit(130, "lbs"),
  5657. name: "Back",
  5658. image: {
  5659. source: "./media/characters/corvin/back.svg",
  5660. extra: 1803 / 1629
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Micro",
  5667. height: math.unit(3, "inches")
  5668. },
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(5 + 8 / 12, "feet")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(300, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Megamacro",
  5680. height: math.unit(500, "miles")
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Q" },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(135, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/q/front.svg",
  5693. extra: 854 / 752,
  5694. bottom: 0.005
  5695. }
  5696. },
  5697. back: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(130, "lbs"),
  5700. name: "Back",
  5701. image: {
  5702. source: "./media/characters/q/back.svg",
  5703. extra: 854 / 752
  5704. }
  5705. },
  5706. },
  5707. [
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(90, "feet"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Extra Macro",
  5715. height: math.unit(300, "feet"),
  5716. },
  5717. {
  5718. name: "BIG WALF",
  5719. height: math.unit(750, "feet"),
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Carley" },
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(150, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/carley/front.svg",
  5732. extra: 3927 / 3540,
  5733. bottom: 0.03
  5734. }
  5735. }
  5736. },
  5737. [
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(6 + 3 / 12, "feet")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(185, "feet"),
  5745. default: true
  5746. },
  5747. {
  5748. name: "Megamacro",
  5749. height: math.unit(8, "miles"),
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Citrine" },
  5755. {
  5756. front: {
  5757. height: math.unit(3, "feet"),
  5758. weight: math.unit(28, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/citrine/front.svg"
  5762. }
  5763. }
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(3, "feet"),
  5769. default: true
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Aura Starwind" },
  5775. {
  5776. front: {
  5777. height: math.unit(14, "feet"),
  5778. weight: math.unit(1450, "kg"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/aura-starwind/front.svg",
  5782. extra: 1455 / 1335
  5783. }
  5784. },
  5785. side: {
  5786. height: math.unit(14, "feet"),
  5787. weight: math.unit(1450, "kg"),
  5788. name: "Side",
  5789. image: {
  5790. source: "./media/characters/aura-starwind/side.svg",
  5791. extra: 1654 / 1497
  5792. }
  5793. },
  5794. taur: {
  5795. height: math.unit(18, "feet"),
  5796. weight: math.unit(5500, "kg"),
  5797. name: "Taur",
  5798. image: {
  5799. source: "./media/characters/aura-starwind/taur.svg",
  5800. extra: 1760 / 1650
  5801. }
  5802. },
  5803. feral: {
  5804. height: math.unit(46, "feet"),
  5805. weight: math.unit(25000, "kg"),
  5806. name: "Feral",
  5807. image: {
  5808. source: "./media/characters/aura-starwind/feral.svg"
  5809. }
  5810. },
  5811. },
  5812. [
  5813. {
  5814. name: "Normal",
  5815. height: math.unit(14, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(50, "meters")
  5821. },
  5822. {
  5823. name: "Megamacro",
  5824. height: math.unit(5000, "meters")
  5825. },
  5826. {
  5827. name: "Gigamacro",
  5828. height: math.unit(100000, "kilometers")
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Rivet" },
  5834. {
  5835. front: {
  5836. height: math.unit(2 + 7 / 12, "feet"),
  5837. weight: math.unit(32, "lbs"),
  5838. name: "Front",
  5839. image: {
  5840. source: "./media/characters/rivet/front.svg",
  5841. extra: 1716 / 1658,
  5842. bottom: 0.03
  5843. }
  5844. },
  5845. foot: {
  5846. height: math.unit(0.551, "feet"),
  5847. name: "Rivet's Foot",
  5848. image: {
  5849. source: "./media/characters/rivet/foot.svg"
  5850. },
  5851. rename: true
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(1.5, "inches"),
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(2 + 7 / 12, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(85, "feet")
  5867. },
  5868. {
  5869. name: "Megamacro",
  5870. height: math.unit(2.2, "km")
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Coffee" },
  5876. {
  5877. front: {
  5878. height: math.unit(5 + 9 / 12, "feet"),
  5879. weight: math.unit(150, "lbs"),
  5880. name: "Front",
  5881. image: {
  5882. source: "./media/characters/coffee/front.svg",
  5883. extra: 3666 / 3032,
  5884. bottom: 0.04
  5885. }
  5886. },
  5887. foot: {
  5888. height: math.unit(1.29, "feet"),
  5889. name: "Foot",
  5890. image: {
  5891. source: "./media/characters/coffee/foot.svg"
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Micro",
  5898. height: math.unit(2, "inches"),
  5899. },
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(5 + 9 / 12, "feet"),
  5903. default: true
  5904. },
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(800, "feet")
  5908. },
  5909. {
  5910. name: "Megamacro",
  5911. height: math.unit(25, "miles")
  5912. }
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Chari-Gal" },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(200, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/chari-gal/front.svg",
  5924. extra: 1568 / 1385,
  5925. bottom: 0.047
  5926. }
  5927. },
  5928. gigantamax: {
  5929. height: math.unit(6 * 16, "feet"),
  5930. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5931. name: "Gigantamax",
  5932. image: {
  5933. source: "./media/characters/chari-gal/gigantamax.svg",
  5934. extra: 1124 / 888,
  5935. bottom: 0.03
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(5 + 7 / 12, "feet")
  5943. },
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(200, "feet"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Nova" },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(150, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/nova/front.svg",
  5960. extra: 5000 / 4722,
  5961. bottom: 0.02
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Micro-",
  5968. height: math.unit(0.8, "inches")
  5969. },
  5970. {
  5971. name: "Micro",
  5972. height: math.unit(2, "inches"),
  5973. default: true
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Argent" },
  5979. {
  5980. front: {
  5981. height: math.unit(3 + 1 / 12, "feet"),
  5982. weight: math.unit(21.7, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/argent/front.svg",
  5986. extra: 1565 / 1416,
  5987. bottom: 0.01
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(2, "inches")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(3 + 1 / 12, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(120, "feet")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Mira al-Cul" },
  6009. {
  6010. lamp: {
  6011. height: math.unit(7 * 1559 / 989, "feet"),
  6012. name: "Magic Lamp",
  6013. image: {
  6014. source: "./media/characters/mira-al-cul/lamp.svg",
  6015. extra: 1617 / 1559
  6016. }
  6017. },
  6018. front: {
  6019. height: math.unit(7, "feet"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/mira-al-cul/front.svg",
  6023. extra: 1044 / 990
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Heavily Restricted",
  6030. height: math.unit(7 * 1559 / 989, "feet")
  6031. },
  6032. {
  6033. name: "Freshly Freed",
  6034. height: math.unit(50 * 1559 / 989, "feet")
  6035. },
  6036. {
  6037. name: "World Encompassing",
  6038. height: math.unit(10000 * 1559 / 989, "miles")
  6039. },
  6040. {
  6041. name: "Galactic",
  6042. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6043. },
  6044. {
  6045. name: "Palmed Universe",
  6046. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Multiversal Matriarch",
  6051. height: math.unit(8.87e10, "yottameters")
  6052. },
  6053. {
  6054. name: "Void Mother",
  6055. height: math.unit(3.14e110, "yottaparsecs")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Kuro-shi Uchū" },
  6061. {
  6062. front: {
  6063. height: math.unit(17 + 1 / 12, "feet"),
  6064. weight: math.unit(476.2 * 5, "lbs"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/kuro-shi-uchū/front.svg",
  6068. extra: 2329 / 1835,
  6069. bottom: 0.02
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Micro",
  6076. height: math.unit(2, "inches")
  6077. },
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(12, "meters")
  6081. },
  6082. {
  6083. name: "Planetary",
  6084. height: math.unit(0.00929, "AU"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Universal",
  6089. height: math.unit(20, "gigaparsecs")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Katherine" },
  6095. {
  6096. front: {
  6097. height: math.unit(5 + 2 / 12, "feet"),
  6098. weight: math.unit(120, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/katherine/front.svg",
  6102. extra: 2075 / 1969
  6103. }
  6104. },
  6105. dress: {
  6106. height: math.unit(5 + 2 / 12, "feet"),
  6107. weight: math.unit(120, "lbs"),
  6108. name: "Dress",
  6109. image: {
  6110. source: "./media/characters/katherine/dress.svg",
  6111. extra: 2258 / 2064
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(1, "inches"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 2 / 12, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(100, "meters")
  6128. },
  6129. {
  6130. name: "Megamacro",
  6131. height: math.unit(80, "miles")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Yevis" },
  6137. {
  6138. front: {
  6139. height: math.unit(7 + 8 / 12, "feet"),
  6140. weight: math.unit(250, "lbs"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/yevis/front.svg",
  6144. extra: 1938 / 1755
  6145. }
  6146. }
  6147. },
  6148. [
  6149. {
  6150. name: "Mortal",
  6151. height: math.unit(7 + 8 / 12, "feet")
  6152. },
  6153. {
  6154. name: "Battle",
  6155. height: math.unit(25 + 11 / 12, "feet")
  6156. },
  6157. {
  6158. name: "Wrath",
  6159. height: math.unit(1654 + 11 / 12, "feet")
  6160. },
  6161. {
  6162. name: "Planet Destroyer",
  6163. height: math.unit(12000, "miles")
  6164. },
  6165. {
  6166. name: "Galaxy Conqueror",
  6167. height: math.unit(1.45, "zettameters"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Universal War",
  6172. height: math.unit(184, "gigaparsecs")
  6173. },
  6174. {
  6175. name: "Eternity War",
  6176. height: math.unit(1.98e55, "yottaparsecs")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Xavier" },
  6182. {
  6183. front: {
  6184. height: math.unit(5 + 8 / 12, "feet"),
  6185. weight: math.unit(63, "kg"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/xavier/front.svg",
  6189. extra: 944 / 883
  6190. }
  6191. },
  6192. frontStretch: {
  6193. height: math.unit(5 + 8 / 12, "feet"),
  6194. weight: math.unit(63, "kg"),
  6195. name: "Stretching",
  6196. image: {
  6197. source: "./media/characters/xavier/front-stretch.svg",
  6198. extra: 962 / 820
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5 + 8 / 12, "feet")
  6206. },
  6207. {
  6208. name: "Macro",
  6209. height: math.unit(100, "meters"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "McLargeHuge",
  6214. height: math.unit(10, "miles")
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Joshii" },
  6220. {
  6221. front: {
  6222. height: math.unit(5 + 5 / 12, "feet"),
  6223. weight: math.unit(150, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/joshii/front.svg"
  6227. }
  6228. },
  6229. foot: {
  6230. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6231. name: "Foot",
  6232. image: {
  6233. source: "./media/characters/joshii/foot.svg"
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Micro",
  6240. height: math.unit(2, "inches")
  6241. },
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(5 + 5 / 12, "feet"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Macro",
  6249. height: math.unit(785, "feet")
  6250. },
  6251. {
  6252. name: "Megamacro",
  6253. height: math.unit(24.5, "miles")
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Goddess Elizabeth" },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(150, "lb"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/goddess-elizabeth/front.svg",
  6266. extra: 1800 / 1525,
  6267. bottom: 0.005
  6268. }
  6269. },
  6270. foot: {
  6271. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6272. name: "Foot",
  6273. image: {
  6274. source: "./media/characters/goddess-elizabeth/foot.svg"
  6275. }
  6276. },
  6277. mouth: {
  6278. height: math.unit(6, "feet"),
  6279. name: "Mouth",
  6280. image: {
  6281. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(12, "feet")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(80, "miles"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(15000, "parsecs")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Kara" },
  6303. {
  6304. front: {
  6305. height: math.unit(5 + 9 / 12, "feet"),
  6306. weight: math.unit(144, "lb"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/kara/front.svg"
  6310. }
  6311. },
  6312. feet: {
  6313. height: math.unit(6 / 6.765, "feet"),
  6314. name: "Kara's Feet",
  6315. rename: true,
  6316. image: {
  6317. source: "./media/characters/kara/feet.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 9 / 12, "feet")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(174, "feet"),
  6329. default: true
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Tyrone" },
  6335. {
  6336. front: {
  6337. height: math.unit(18, "feet"),
  6338. weight: math.unit(4050, "lb"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/tyrone/front.svg",
  6342. extra: 2520 / 2402,
  6343. bottom: 0.025
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(18, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Macro",
  6355. height: math.unit(300, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Danny" },
  6361. {
  6362. front: {
  6363. height: math.unit(7 + 8 / 12, "feet"),
  6364. weight: math.unit(120, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/danny/front.svg",
  6368. extra: 1490 / 1350
  6369. }
  6370. },
  6371. back: {
  6372. height: math.unit(7 + 8 / 12, "feet"),
  6373. weight: math.unit(120, "lb"),
  6374. name: "Back",
  6375. image: {
  6376. source: "./media/characters/danny/back.svg",
  6377. extra: 1490 / 1350
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(7 + 8 / 12, "feet"),
  6385. default: true
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Mallow" },
  6391. {
  6392. front: {
  6393. height: math.unit(3.5, "inches"),
  6394. weight: math.unit(19, "grams"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/mallow/front.svg",
  6398. extra: 471 / 431
  6399. }
  6400. },
  6401. back: {
  6402. height: math.unit(3.5, "inches"),
  6403. weight: math.unit(19, "grams"),
  6404. name: "Back",
  6405. image: {
  6406. source: "./media/characters/mallow/back.svg",
  6407. extra: 471 / 431
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(3.5, "inches"),
  6415. default: true
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Starry Aqua" },
  6421. {
  6422. front: {
  6423. height: math.unit(9, "feet"),
  6424. weight: math.unit(230, "kg"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/starry-aqua/front.svg"
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(9, "feet"),
  6432. weight: math.unit(230, "kg"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/starry-aqua/back.svg"
  6436. }
  6437. },
  6438. hand: {
  6439. height: math.unit(9 * 0.1168, "feet"),
  6440. name: "Hand",
  6441. image: {
  6442. source: "./media/characters/starry-aqua/hand.svg"
  6443. }
  6444. },
  6445. foot: {
  6446. height: math.unit(9 * 0.18, "feet"),
  6447. name: "Foot",
  6448. image: {
  6449. source: "./media/characters/starry-aqua/foot.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Micro",
  6456. height: math.unit(3, "inches")
  6457. },
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(9, "feet")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(300, "feet"),
  6465. default: true
  6466. },
  6467. {
  6468. name: "Megamacro",
  6469. height: math.unit(3200, "feet")
  6470. }
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Luka" },
  6475. {
  6476. front: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(230, "lb"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/luka/front.svg",
  6482. extra: 1,
  6483. bottom: 0.025
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(12 + 8 / 12, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Minimacro",
  6495. height: math.unit(20, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(250, "feet")
  6500. },
  6501. {
  6502. name: "Megamacro",
  6503. height: math.unit(5, "miles")
  6504. },
  6505. {
  6506. name: "Gigamacro",
  6507. height: math.unit(8000, "miles")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Natalie Nightring" },
  6513. {
  6514. front: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(150, "lb"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/natalie-nightring/front.svg",
  6520. extra: 1,
  6521. bottom: 0.06
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Uh Oh",
  6528. height: math.unit(0.1, "mm")
  6529. },
  6530. {
  6531. name: "Small",
  6532. height: math.unit(3, "inches")
  6533. },
  6534. {
  6535. name: "Human Scale",
  6536. height: math.unit(6, "feet")
  6537. },
  6538. {
  6539. name: "Librarian",
  6540. height: math.unit(50, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Immense",
  6545. height: math.unit(200, "miles")
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Danni Rosie" },
  6551. {
  6552. front: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(180, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/danni-rosie/front.svg",
  6558. extra: 1260 / 1128,
  6559. bottom: 0.022
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Micro",
  6566. height: math.unit(2, "inches"),
  6567. default: true
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Samantha Kruse" },
  6573. {
  6574. front: {
  6575. height: math.unit(5 + 9 / 12, "feet"),
  6576. weight: math.unit(220, "lb"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/samantha-kruse/front.svg",
  6580. extra: (985 / 935),
  6581. bottom: 0.03
  6582. }
  6583. },
  6584. frontUndressed: {
  6585. height: math.unit(5 + 9 / 12, "feet"),
  6586. weight: math.unit(220, "lb"),
  6587. name: "Front (Undressed)",
  6588. image: {
  6589. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6590. extra: (973 / 923),
  6591. bottom: 0.025
  6592. }
  6593. },
  6594. fat: {
  6595. height: math.unit(5 + 9 / 12, "feet"),
  6596. weight: math.unit(900, "lb"),
  6597. name: "Front (Fat)",
  6598. image: {
  6599. source: "./media/characters/samantha-kruse/fat.svg",
  6600. extra: 2688 / 2561
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(5 + 9 / 12, "feet"),
  6608. default: true
  6609. }
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Amelia Rosie" },
  6614. {
  6615. back: {
  6616. height: math.unit(5 + 4 / 12, "feet"),
  6617. weight: math.unit(4963, "lb"),
  6618. name: "Back",
  6619. image: {
  6620. source: "./media/characters/amelia-rosie/back.svg",
  6621. extra: 1113 / 963,
  6622. bottom: 0.01
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Level 0",
  6629. height: math.unit(5 + 4 / 12, "feet")
  6630. },
  6631. {
  6632. name: "Level 1",
  6633. height: math.unit(164597, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Level 2",
  6638. height: math.unit(956243, "miles")
  6639. },
  6640. {
  6641. name: "Level 3",
  6642. height: math.unit(29421709423, "miles")
  6643. },
  6644. {
  6645. name: "Level 4",
  6646. height: math.unit(154, "lightyears")
  6647. },
  6648. {
  6649. name: "Level 5",
  6650. height: math.unit(4738272, "lightyears")
  6651. },
  6652. {
  6653. name: "Level 6",
  6654. height: math.unit(145787152896, "lightyears")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Rook Kitara" },
  6660. {
  6661. front: {
  6662. height: math.unit(5 + 11 / 12, "feet"),
  6663. weight: math.unit(65, "kg"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/rook-kitara/front.svg",
  6667. extra: 1347 / 1274,
  6668. bottom: 0.005
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Totally Unfair",
  6675. height: math.unit(1.8, "mm")
  6676. },
  6677. {
  6678. name: "Lap Rookie",
  6679. height: math.unit(1.4, "feet")
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(5 + 11 / 12, "feet"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "How Did This Happen",
  6688. height: math.unit(80, "miles")
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Pisces" },
  6694. {
  6695. front: {
  6696. height: math.unit(7, "feet"),
  6697. weight: math.unit(300, "lb"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/pisces/front.svg",
  6701. extra: 2255 / 2115,
  6702. bottom: 0.03
  6703. }
  6704. },
  6705. back: {
  6706. height: math.unit(7, "feet"),
  6707. weight: math.unit(300, "lb"),
  6708. name: "Back",
  6709. image: {
  6710. source: "./media/characters/pisces/back.svg",
  6711. extra: 2146 / 2055,
  6712. bottom: 0.04
  6713. }
  6714. },
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(7, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Swimming Pool",
  6724. height: math.unit(12.2, "meters")
  6725. },
  6726. {
  6727. name: "Olympic Swimming Pool",
  6728. height: math.unit(56.3, "meters")
  6729. },
  6730. {
  6731. name: "Lake Superior",
  6732. height: math.unit(93900, "meters")
  6733. },
  6734. {
  6735. name: "Mediterranean Sea",
  6736. height: math.unit(644457, "meters")
  6737. },
  6738. {
  6739. name: "World's Oceans",
  6740. height: math.unit(4567491, "meters")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Zelas" },
  6746. {
  6747. front: {
  6748. height: math.unit(2.3, "meters"),
  6749. weight: math.unit(120, "kg"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/zelas/front.svg"
  6753. }
  6754. },
  6755. side: {
  6756. height: math.unit(2.3, "meters"),
  6757. weight: math.unit(120, "kg"),
  6758. name: "Side",
  6759. image: {
  6760. source: "./media/characters/zelas/side.svg"
  6761. }
  6762. },
  6763. back: {
  6764. height: math.unit(2.3, "meters"),
  6765. weight: math.unit(120, "kg"),
  6766. name: "Back",
  6767. image: {
  6768. source: "./media/characters/zelas/back.svg"
  6769. }
  6770. },
  6771. foot: {
  6772. height: math.unit(1.116, "feet"),
  6773. name: "Foot",
  6774. image: {
  6775. source: "./media/characters/zelas/foot.svg"
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(2.3, "meters")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(30, "meters"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Talbot" },
  6793. {
  6794. front: {
  6795. height: math.unit(1, "inch"),
  6796. weight: math.unit(0.21, "grams"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/talbot/front.svg",
  6800. extra: 594 / 544
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(1, "inch"),
  6808. default: true
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Fliss" },
  6814. {
  6815. front: {
  6816. height: math.unit(3 + 3 / 12, "feet"),
  6817. weight: math.unit(51.8, "lb"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/fliss/front.svg",
  6821. extra: 840 / 640
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Teeny Tiny",
  6828. height: math.unit(1, "mm")
  6829. },
  6830. {
  6831. name: "Small",
  6832. height: math.unit(1, "inch"),
  6833. default: true
  6834. },
  6835. {
  6836. name: "Standard Sylveon",
  6837. height: math.unit(3 + 3 / 12, "feet")
  6838. },
  6839. {
  6840. name: "Large Nuisance",
  6841. height: math.unit(33, "feet")
  6842. },
  6843. {
  6844. name: "City Filler",
  6845. height: math.unit(3000, "feet")
  6846. },
  6847. {
  6848. name: "New Horizon",
  6849. height: math.unit(6000, "miles")
  6850. },
  6851. ]
  6852. ))
  6853. characterMakers.push(() => makeCharacter(
  6854. { name: "Fleta" },
  6855. {
  6856. front: {
  6857. height: math.unit(5, "cm"),
  6858. weight: math.unit(1.94, "g"),
  6859. name: "Front",
  6860. image: {
  6861. source: "./media/characters/fleta/front.svg",
  6862. extra: 835 / 803
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(5, "cm"),
  6867. weight: math.unit(1.94, "g"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/fleta/back.svg",
  6871. extra: 835 / 803
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Micro",
  6878. height: math.unit(5, "cm"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Dominic" },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(225, "lb"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/dominic/front.svg",
  6892. extra: 1770 / 1620,
  6893. bottom: 0.025
  6894. }
  6895. },
  6896. back: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(225, "lb"),
  6899. name: "Back",
  6900. image: {
  6901. source: "./media/characters/dominic/back.svg",
  6902. extra: 1745 / 1620,
  6903. bottom: 0.065
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Nano",
  6910. height: math.unit(0.1, "mm")
  6911. },
  6912. {
  6913. name: "Micro-",
  6914. height: math.unit(1, "mm")
  6915. },
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(4, "inches")
  6919. },
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(6 + 4 / 12, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(115, "feet")
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(955, "feet")
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(8990, "feet")
  6936. },
  6937. {
  6938. name: "Gigmacro",
  6939. height: math.unit(9310, "miles")
  6940. },
  6941. {
  6942. name: "Teramacro",
  6943. height: math.unit(1567005010, "miles")
  6944. },
  6945. {
  6946. name: "Examacro",
  6947. height: math.unit(1425, "parsecs")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Major Colonel" },
  6953. {
  6954. front: {
  6955. height: math.unit(400, "feet"),
  6956. weight: math.unit(44444444, "lb"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/major-colonel/front.svg"
  6960. }
  6961. },
  6962. back: {
  6963. height: math.unit(400, "feet"),
  6964. weight: math.unit(44444444, "lb"),
  6965. name: "Back",
  6966. image: {
  6967. source: "./media/characters/major-colonel/back.svg"
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(400, "feet"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Axel Lycan" },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lb"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/axel-lycan/front.svg",
  6988. extra: 1,
  6989. bottom: 0.08
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(1, "km"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Vanrel (Hyena)" },
  7003. {
  7004. front: {
  7005. height: math.unit(5 + 9 / 12, "feet"),
  7006. weight: math.unit(175, "lb"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/vanrel-hyena/front.svg",
  7010. extra: 1086 / 1010,
  7011. bottom: 0.04
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(5 + 9 / 12, "feet"),
  7019. default: true
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Abbott Absol" },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(103, "lb"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/abbott-absol/front.svg",
  7032. extra: 2010 / 1842
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Megamicro",
  7039. height: math.unit(0.1, "mm")
  7040. },
  7041. {
  7042. name: "Micro",
  7043. height: math.unit(1, "inch")
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(6, "feet"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Hector" },
  7054. {
  7055. front: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(264, "lb"),
  7058. name: "Front",
  7059. image: {
  7060. source: "./media/characters/hector/front.svg",
  7061. extra: 2280 / 2130,
  7062. bottom: 0.07
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(12.25, "foot"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Macro",
  7074. height: math.unit(160, "feet")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Sal" },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(150, "lb"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/sal/front.svg",
  7087. extra: 1846 / 1699,
  7088. bottom: 0.04
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(10, "miles"),
  7096. default: true
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Ranger" },
  7102. {
  7103. front: {
  7104. height: math.unit(3, "meters"),
  7105. weight: math.unit(450, "kg"),
  7106. name: "front",
  7107. image: {
  7108. source: "./media/characters/ranger/front.svg",
  7109. extra: 2401 / 2243,
  7110. bottom: 0.05
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(3, "meters"),
  7118. default: true
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Theresa" },
  7124. {
  7125. front: {
  7126. height: math.unit(14, "feet"),
  7127. weight: math.unit(800, "kg"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/theresa/front.svg",
  7131. extra: 3575 / 3346,
  7132. bottom: 0.03
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(14, "feet"),
  7140. default: true
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Ine" },
  7146. {
  7147. front: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(3, "kg"),
  7150. name: "Front",
  7151. image: {
  7152. source: "./media/characters/ine/front.svg",
  7153. extra: 678 / 539,
  7154. bottom: 0.023
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(2.265, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Vial" },
  7168. {
  7169. front: {
  7170. height: math.unit(5, "feet"),
  7171. weight: math.unit(30, "kg"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/vial/front.svg",
  7175. extra: 1365 / 1277,
  7176. bottom: 0.04
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(5, "feet"),
  7184. default: true
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Rovoska" },
  7190. {
  7191. side: {
  7192. height: math.unit(3.4, "meters"),
  7193. weight: math.unit(1000, "lb"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/rovoska/side.svg",
  7197. extra: 4403 / 1515
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(3.4, "meters"),
  7205. default: true
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Gunner Rotthbauer" },
  7211. {
  7212. front: {
  7213. height: math.unit(8, "feet"),
  7214. weight: math.unit(315, "lb"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/gunner-rotthbauer/front.svg"
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(8, "feet"),
  7222. weight: math.unit(315, "lb"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/gunner-rotthbauer/back.svg"
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(3.5, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(8, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(250, "feet")
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(1, "AU")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Allatia" },
  7251. {
  7252. front: {
  7253. height: math.unit(5 + 5 / 12, "feet"),
  7254. weight: math.unit(140, "lb"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/allatia/front.svg",
  7258. extra: 1227 / 1180,
  7259. bottom: 0.027
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(5 + 5 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(250, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Megamacro",
  7275. height: math.unit(8, "miles")
  7276. }
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Tene" },
  7281. {
  7282. front: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(120, "lb"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/tene/front.svg",
  7288. extra: 1728 / 1578,
  7289. bottom: 0.022
  7290. }
  7291. },
  7292. stomping: {
  7293. height: math.unit(2.025, "meters"),
  7294. weight: math.unit(120, "lb"),
  7295. name: "Stomping",
  7296. image: {
  7297. source: "./media/characters/tene/stomping.svg",
  7298. extra: 938 / 873,
  7299. bottom: 0.01
  7300. }
  7301. },
  7302. sitting: {
  7303. height: math.unit(1, "meter"),
  7304. weight: math.unit(120, "lb"),
  7305. name: "Sitting",
  7306. image: {
  7307. source: "./media/characters/tene/sitting.svg",
  7308. extra: 437 / 415,
  7309. bottom: 0.1
  7310. }
  7311. },
  7312. feral: {
  7313. height: math.unit(3.9, "feet"),
  7314. weight: math.unit(250, "lb"),
  7315. name: "Feral",
  7316. image: {
  7317. source: "./media/characters/tene/feral.svg",
  7318. extra: 717 / 458,
  7319. bottom: 0.179
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(6, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(300, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(5, "miles")
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Evander" },
  7341. {
  7342. side: {
  7343. height: math.unit(6, "feet"),
  7344. name: "Side",
  7345. image: {
  7346. source: "./media/characters/evander/side.svg",
  7347. extra: 877 / 477
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(0.83, "meters"),
  7355. default: true
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7361. {
  7362. front: {
  7363. height: math.unit(12, "feet"),
  7364. weight: math.unit(1000, "lb"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7368. extra: 1762 / 1611
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(12, "feet"),
  7373. weight: math.unit(1000, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7377. extra: 1762 / 1611
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(12, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Kaiju",
  7389. height: math.unit(150, "feet")
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Zero Alurus" },
  7395. {
  7396. front: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(150, "lb"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/zero-alurus/front.svg"
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(6, "feet"),
  7406. weight: math.unit(150, "lb"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/zero-alurus/back.svg"
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(5 + 10 / 12, "feet")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(60, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro+",
  7425. height: math.unit(450, "feet")
  7426. },
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Mega Shi" },
  7431. {
  7432. front: {
  7433. height: math.unit(6, "feet"),
  7434. weight: math.unit(200, "lb"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/mega-shi/front.svg",
  7438. extra: 1279 / 1250,
  7439. bottom: 0.02
  7440. }
  7441. },
  7442. back: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(200, "lb"),
  7445. name: "Back",
  7446. image: {
  7447. source: "./media/characters/mega-shi/back.svg",
  7448. extra: 1279 / 1250,
  7449. bottom: 0.02
  7450. }
  7451. },
  7452. },
  7453. [
  7454. {
  7455. name: "Micro",
  7456. height: math.unit(16 + 6 / 12, "feet")
  7457. },
  7458. {
  7459. name: "Third Dimension",
  7460. height: math.unit(40, "meters")
  7461. },
  7462. {
  7463. name: "Normal",
  7464. height: math.unit(660, "feet"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Megamacro",
  7469. height: math.unit(10, "miles")
  7470. },
  7471. {
  7472. name: "Planetary Launch",
  7473. height: math.unit(500, "miles")
  7474. },
  7475. {
  7476. name: "Interstellar",
  7477. height: math.unit(1e9, "miles")
  7478. },
  7479. {
  7480. name: "Leaving the Universe",
  7481. height: math.unit(1, "gigaparsec")
  7482. },
  7483. {
  7484. name: "Travelling Universes",
  7485. height: math.unit(30e15, "parsecs")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Odyssey" },
  7491. {
  7492. front: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(150, "lb"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/odyssey/front.svg",
  7498. extra: 1782 / 1582,
  7499. bottom: 0.01
  7500. }
  7501. },
  7502. side: {
  7503. height: math.unit(5.7, "feet"),
  7504. weight: math.unit(140, "lb"),
  7505. name: "Side",
  7506. image: {
  7507. source: "./media/characters/odyssey/side.svg",
  7508. extra: 6462 / 5700
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(5 + 4 / 12, "feet")
  7516. },
  7517. {
  7518. name: "Macro",
  7519. height: math.unit(1, "km")
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(3000, "km")
  7524. },
  7525. {
  7526. name: "Gigamacro",
  7527. height: math.unit(1, "AU"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Omniversal",
  7532. height: math.unit(100e14, "lightyears")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Mekuto" },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(300, "lb"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/mekuto/front.svg",
  7545. extra: 921 / 832,
  7546. bottom: 0.03
  7547. }
  7548. },
  7549. hand: {
  7550. height: math.unit(6 / 10.24, "feet"),
  7551. name: "Hand",
  7552. image: {
  7553. source: "./media/characters/mekuto/hand.svg"
  7554. }
  7555. },
  7556. foot: {
  7557. height: math.unit(6 / 5.05, "feet"),
  7558. name: "Foot",
  7559. image: {
  7560. source: "./media/characters/mekuto/foot.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Minimicro",
  7567. height: math.unit(0.2, "inches")
  7568. },
  7569. {
  7570. name: "Micro",
  7571. height: math.unit(1.5, "inches")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(5 + 11 / 12, "feet"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Minimacro",
  7580. height: math.unit(17 + 9 / 12, "feet")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(177.5, "feet")
  7585. },
  7586. {
  7587. name: "Megamacro",
  7588. height: math.unit(152, "miles")
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Dafydd Tomos" },
  7594. {
  7595. front: {
  7596. height: math.unit(6.5, "inches"),
  7597. weight: math.unit(13, "oz"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/dafydd-tomos/front.svg",
  7601. extra: 2990 / 2603,
  7602. bottom: 0.03
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(6.5, "inches"),
  7610. default: true
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Splinter" },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(150, "lb"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/splinter/front.svg",
  7623. extra: 2990 / 2882,
  7624. bottom: 0.04
  7625. }
  7626. },
  7627. back: {
  7628. height: math.unit(6, "feet"),
  7629. weight: math.unit(150, "lb"),
  7630. name: "Back",
  7631. image: {
  7632. source: "./media/characters/splinter/back.svg",
  7633. extra: 2990 / 2882,
  7634. bottom: 0.04
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(6, "feet")
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(230, "meters"),
  7646. default: true
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "SnowGabumon" },
  7652. {
  7653. front: {
  7654. height: math.unit(4 + 10 / 12, "feet"),
  7655. weight: math.unit(480, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/snow-gabumon/front.svg",
  7659. extra: 1140 / 963,
  7660. bottom: 0.058
  7661. }
  7662. },
  7663. back: {
  7664. height: math.unit(4 + 10 / 12, "feet"),
  7665. weight: math.unit(480, "lb"),
  7666. name: "Back",
  7667. image: {
  7668. source: "./media/characters/snow-gabumon/back.svg",
  7669. extra: 1115 / 962,
  7670. bottom: 0.041
  7671. }
  7672. },
  7673. frontUndresed: {
  7674. height: math.unit(4 + 10 / 12, "feet"),
  7675. weight: math.unit(480, "lb"),
  7676. name: "Front (Undressed)",
  7677. image: {
  7678. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7679. extra: 1061 / 960,
  7680. bottom: 0.045
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Micro",
  7687. height: math.unit(1, "inch")
  7688. },
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(4 + 10 / 12, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(200, "feet")
  7697. },
  7698. {
  7699. name: "Megamacro",
  7700. height: math.unit(120, "miles")
  7701. },
  7702. {
  7703. name: "Gigamacro",
  7704. height: math.unit(9800, "miles")
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Moody" },
  7710. {
  7711. front: {
  7712. height: math.unit(1.7, "meters"),
  7713. weight: math.unit(140, "lb"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/moody/front.svg",
  7717. extra: 3226 / 3007,
  7718. bottom: 0.087
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(1, "mm")
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(1.7, "meters"),
  7730. default: true
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(80, "meters")
  7735. },
  7736. {
  7737. name: "Macro+",
  7738. height: math.unit(500, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Zyas" },
  7744. {
  7745. front: {
  7746. height: math.unit(6, "feet"),
  7747. weight: math.unit(150, "lb"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/zyas/front.svg",
  7751. extra: 1180 / 1120,
  7752. bottom: 0.045
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(10, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(500, "feet")
  7765. },
  7766. {
  7767. name: "Megamacro",
  7768. height: math.unit(5, "miles")
  7769. },
  7770. {
  7771. name: "Teramacro",
  7772. height: math.unit(150000, "miles")
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Cuon" },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(150, "lb"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/cuon/front.svg",
  7785. extra: 1390 / 1320,
  7786. bottom: 0.008
  7787. }
  7788. },
  7789. },
  7790. [
  7791. {
  7792. name: "Micro",
  7793. height: math.unit(3, "inches")
  7794. },
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(18 + 9 / 12, "feet"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Macro",
  7802. height: math.unit(360, "feet")
  7803. },
  7804. {
  7805. name: "Megamacro",
  7806. height: math.unit(360, "miles")
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Nyanuxk" },
  7812. {
  7813. front: {
  7814. height: math.unit(2.4, "meters"),
  7815. weight: math.unit(70, "kg"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/nyanuxk/front.svg",
  7819. extra: 1172 / 1084,
  7820. bottom: 0.065
  7821. }
  7822. },
  7823. side: {
  7824. height: math.unit(2.4, "meters"),
  7825. weight: math.unit(70, "kg"),
  7826. name: "Side",
  7827. image: {
  7828. source: "./media/characters/nyanuxk/side.svg",
  7829. extra: 1190 / 1132,
  7830. bottom: 0.007
  7831. }
  7832. },
  7833. back: {
  7834. height: math.unit(2.4, "meters"),
  7835. weight: math.unit(70, "kg"),
  7836. name: "Back",
  7837. image: {
  7838. source: "./media/characters/nyanuxk/back.svg",
  7839. extra: 1200 / 1141,
  7840. bottom: 0.015
  7841. }
  7842. },
  7843. foot: {
  7844. height: math.unit(0.52, "meters"),
  7845. name: "Foot",
  7846. image: {
  7847. source: "./media/characters/nyanuxk/foot.svg"
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(2, "cm")
  7855. },
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.4, "meters"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Smaller Macro",
  7863. height: math.unit(120, "meters")
  7864. },
  7865. {
  7866. name: "Bigger Macro",
  7867. height: math.unit(1.2, "km")
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(15, "kilometers")
  7872. },
  7873. {
  7874. name: "Gigamacro",
  7875. height: math.unit(2000, "km")
  7876. },
  7877. {
  7878. name: "Teramacro",
  7879. height: math.unit(500000, "km")
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Ailbhe" },
  7885. {
  7886. side: {
  7887. height: math.unit(6, "feet"),
  7888. name: "Side",
  7889. image: {
  7890. source: "./media/characters/ailbhe/side.svg",
  7891. extra: 757 / 464,
  7892. bottom: 0.041
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(1.07, "meters"),
  7900. default: true
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Zevulfius" },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(120, "kg"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/zevulfius/front.svg",
  7913. extra: 965 / 903
  7914. }
  7915. },
  7916. side: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(120, "kg"),
  7919. name: "Side",
  7920. image: {
  7921. source: "./media/characters/zevulfius/side.svg",
  7922. extra: 939 / 900
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(120, "kg"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/zevulfius/back.svg",
  7931. extra: 918 / 854,
  7932. bottom: 0.005
  7933. }
  7934. },
  7935. foot: {
  7936. height: math.unit(6 / 3.72, "feet"),
  7937. name: "Foot",
  7938. image: {
  7939. source: "./media/characters/zevulfius/foot.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(750, "meters")
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(20, "km"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Gigamacro",
  7955. height: math.unit(2000, "km")
  7956. },
  7957. {
  7958. name: "Teramacro",
  7959. height: math.unit(250000, "km")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Rikes" },
  7965. {
  7966. front: {
  7967. height: math.unit(100, "feet"),
  7968. weight: math.unit(350, "kg"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/rikes/front.svg",
  7972. extra: 1565 / 1483,
  7973. bottom: 0.017
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(100, "feet"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Adam Silver-Mane" },
  7987. {
  7988. anthro: {
  7989. height: math.unit(8, "feet"),
  7990. weight: math.unit(120, "kg"),
  7991. name: "Anthro",
  7992. image: {
  7993. source: "./media/characters/adam-silver-mane/anthro.svg",
  7994. extra: 5743 / 5339,
  7995. bottom: 0.07
  7996. }
  7997. },
  7998. taur: {
  7999. height: math.unit(16, "feet"),
  8000. weight: math.unit(1500, "kg"),
  8001. name: "Taur",
  8002. image: {
  8003. source: "./media/characters/adam-silver-mane/taur.svg",
  8004. extra: 1713 / 1571,
  8005. bottom: 0.01
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(8, "feet")
  8013. },
  8014. {
  8015. name: "Minimacro",
  8016. height: math.unit(80, "feet")
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(800, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Megamacro",
  8025. height: math.unit(8000, "feet")
  8026. },
  8027. {
  8028. name: "Gigamacro",
  8029. height: math.unit(800, "miles")
  8030. },
  8031. {
  8032. name: "Teramacro",
  8033. height: math.unit(80000, "miles")
  8034. },
  8035. {
  8036. name: "Celestial",
  8037. height: math.unit(8e6, "miles")
  8038. },
  8039. {
  8040. name: "Star Dragon",
  8041. height: math.unit(800000, "parsecs")
  8042. },
  8043. {
  8044. name: "Godly",
  8045. height: math.unit(800, "teraparsecs")
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Ky'owin" },
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(150, "lb"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/ky'owin/front.svg",
  8058. extra: 3888 / 3068,
  8059. bottom: 0.015
  8060. }
  8061. },
  8062. },
  8063. [
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(6 + 8 / 12, "feet")
  8067. },
  8068. {
  8069. name: "Large",
  8070. height: math.unit(68, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(132, "feet")
  8075. },
  8076. {
  8077. name: "Macro+",
  8078. height: math.unit(340, "feet")
  8079. },
  8080. {
  8081. name: "Macro++",
  8082. height: math.unit(680, "feet"),
  8083. default: true
  8084. },
  8085. {
  8086. name: "Megamacro",
  8087. height: math.unit(1, "mile")
  8088. },
  8089. {
  8090. name: "Megamacro+",
  8091. height: math.unit(10, "miles")
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Mal" },
  8097. {
  8098. front: {
  8099. height: math.unit(4, "feet"),
  8100. weight: math.unit(50, "lb"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/mal/front.svg",
  8104. extra: 785 / 724,
  8105. bottom: 0.07
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Micro",
  8112. height: math.unit(4, "inches")
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(4, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(200, "feet")
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Jordan Deware" },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(150, "lb"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/jordan-deware/front.svg",
  8134. extra: 1191 / 1012
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Nano",
  8141. height: math.unit(0.01, "mm")
  8142. },
  8143. {
  8144. name: "Minimicro",
  8145. height: math.unit(1, "mm")
  8146. },
  8147. {
  8148. name: "Micro",
  8149. height: math.unit(0.5, "inches")
  8150. },
  8151. {
  8152. name: "Normal",
  8153. height: math.unit(4, "feet"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Minimacro",
  8158. height: math.unit(40, "meters")
  8159. },
  8160. {
  8161. name: "Small Macro",
  8162. height: math.unit(400, "meters")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(4, "miles")
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(40, "miles")
  8171. },
  8172. {
  8173. name: "Megamacro+",
  8174. height: math.unit(400, "miles")
  8175. },
  8176. {
  8177. name: "Gigamacro",
  8178. height: math.unit(400000, "miles")
  8179. },
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Kimiko" },
  8184. {
  8185. side: {
  8186. height: math.unit(6, "feet"),
  8187. weight: math.unit(150, "lb"),
  8188. name: "Side",
  8189. image: {
  8190. source: "./media/characters/kimiko/side.svg",
  8191. extra: 600 / 358
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(15, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(220, "feet")
  8204. },
  8205. {
  8206. name: "Macro+",
  8207. height: math.unit(1450, "feet")
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(11500, "feet")
  8212. },
  8213. {
  8214. name: "Gigamacro",
  8215. height: math.unit(9500, "miles")
  8216. },
  8217. {
  8218. name: "Teramacro",
  8219. height: math.unit(2208005005, "miles")
  8220. },
  8221. {
  8222. name: "Examacro",
  8223. height: math.unit(2750, "parsecs")
  8224. },
  8225. {
  8226. name: "Zettamacro",
  8227. height: math.unit(101500, "parsecs")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Andrew Sleepy" },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(70, "kg"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/andrew-sleepy/front.svg"
  8240. }
  8241. },
  8242. side: {
  8243. height: math.unit(6, "feet"),
  8244. weight: math.unit(70, "kg"),
  8245. name: "Side",
  8246. image: {
  8247. source: "./media/characters/andrew-sleepy/side.svg"
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Micro",
  8254. height: math.unit(1, "mm"),
  8255. default: true
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Judio" },
  8261. {
  8262. front: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(150, "lb"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/judio/front.svg",
  8268. extra: 1258 / 1110
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(5 + 6 / 12, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(1000, "feet"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Megamacro",
  8284. height: math.unit(10, "miles")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Nomaxice" },
  8290. {
  8291. front: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(68, "kg"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/nomaxice/front.svg",
  8297. extra: 1498 / 1073,
  8298. bottom: 0.075
  8299. }
  8300. },
  8301. foot: {
  8302. height: math.unit(1.1, "feet"),
  8303. name: "Foot",
  8304. image: {
  8305. source: "./media/characters/nomaxice/foot.svg"
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Micro",
  8312. height: math.unit(8, "cm")
  8313. },
  8314. {
  8315. name: "Norm",
  8316. height: math.unit(1.82, "m")
  8317. },
  8318. {
  8319. name: "Norm+",
  8320. height: math.unit(8.8, "feet")
  8321. },
  8322. {
  8323. name: "Big",
  8324. height: math.unit(8, "meters"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Macro",
  8329. height: math.unit(18, "meters")
  8330. },
  8331. {
  8332. name: "Macro+",
  8333. height: math.unit(88, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Dydros" },
  8339. {
  8340. front: {
  8341. height: math.unit(12, "feet"),
  8342. weight: math.unit(1.5, "tons"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/dydros/front.svg",
  8346. extra: 863 / 800,
  8347. bottom: 0.015
  8348. }
  8349. },
  8350. back: {
  8351. height: math.unit(12, "feet"),
  8352. weight: math.unit(1.5, "tons"),
  8353. name: "Back",
  8354. image: {
  8355. source: "./media/characters/dydros/back.svg",
  8356. extra: 900 / 843,
  8357. bottom: 0.005
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(12, "feet"),
  8365. default: true
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Riggi" },
  8371. {
  8372. front: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(100, "kg"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/riggi/front.svg",
  8378. extra: 5787 / 5303
  8379. }
  8380. },
  8381. hyper: {
  8382. height: math.unit(6 * 5 / 3, "feet"),
  8383. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8384. name: "Hyper",
  8385. image: {
  8386. source: "./media/characters/riggi/hyper.svg",
  8387. extra: 3595 / 3485
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Small Macro",
  8394. height: math.unit(50, "feet")
  8395. },
  8396. {
  8397. name: "Default",
  8398. height: math.unit(200, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Loom",
  8403. height: math.unit(10000, "feet")
  8404. },
  8405. {
  8406. name: "Cruising Altitude",
  8407. height: math.unit(30000, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(100, "miles")
  8412. },
  8413. {
  8414. name: "Continent Sized",
  8415. height: math.unit(2800, "miles")
  8416. },
  8417. {
  8418. name: "Earth Sized",
  8419. height: math.unit(8000, "miles")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Alexi" },
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(250, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/alexi/front.svg",
  8432. extra: 3483 / 3291,
  8433. bottom: 0.04
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(250, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/alexi/back.svg",
  8442. extra: 3533 / 3356,
  8443. bottom: 0.021
  8444. }
  8445. },
  8446. frontTransformed: {
  8447. height: math.unit(12.5, "feet"),
  8448. weight: math.unit(4000, "lb"),
  8449. name: "Front (Transformed)",
  8450. image: {
  8451. source: "./media/characters/alexi/front-transformed.svg",
  8452. extra: 5345 / 5100,
  8453. bottom: 0.03
  8454. }
  8455. },
  8456. },
  8457. [
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(3, "meters"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Minimacro",
  8465. height: math.unit(30, "meters")
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(500, "meters")
  8470. },
  8471. {
  8472. name: "Megamacro",
  8473. height: math.unit(9000, "km")
  8474. },
  8475. {
  8476. name: "Teramacro",
  8477. height: math.unit(384000, "km")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Kayroo" },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(150, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/kayroo/front.svg",
  8490. extra: 1153 / 1038,
  8491. bottom: 0.06
  8492. }
  8493. },
  8494. foot: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(150, "lb"),
  8497. name: "Foot",
  8498. image: {
  8499. source: "./media/characters/kayroo/foot.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(8, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Minimacro",
  8511. height: math.unit(250, "feet")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(2800, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5200, "feet")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(27000, "feet")
  8524. },
  8525. {
  8526. name: "Omega",
  8527. height: math.unit(45000, "feet")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Rhys" },
  8533. {
  8534. front: {
  8535. height: math.unit(18, "feet"),
  8536. weight: math.unit(5800, "lb"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/rhys/front.svg",
  8540. extra: 3386 / 3090,
  8541. bottom: 0.07
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(18, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Working Size",
  8553. height: math.unit(200, "feet")
  8554. },
  8555. {
  8556. name: "Demolition Size",
  8557. height: math.unit(2000, "feet")
  8558. },
  8559. {
  8560. name: "Maximum Licensed Size",
  8561. height: math.unit(5, "miles")
  8562. },
  8563. {
  8564. name: "Maximum Observed Size",
  8565. height: math.unit(10, "yottameters")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Toto" },
  8571. {
  8572. front: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(250, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/toto/front.svg",
  8578. extra: 527 / 479,
  8579. bottom: 0.05
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(3, "feet")
  8587. },
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(10, "feet")
  8591. },
  8592. {
  8593. name: "Macro",
  8594. height: math.unit(150, "feet"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Megamacro",
  8599. height: math.unit(1200, "feet")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "King" },
  8605. {
  8606. back: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(150, "lb"),
  8609. name: "Back",
  8610. image: {
  8611. source: "./media/characters/king/back.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(8, "feet")
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(200, "feet"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Megamacro",
  8631. height: math.unit(50, "miles")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Cordite" },
  8637. {
  8638. anthro: {
  8639. height: math.unit(6 + 5 / 12, "feet"),
  8640. weight: math.unit(280, "lb"),
  8641. name: "Anthro",
  8642. image: {
  8643. source: "./media/characters/cordite/anthro.svg",
  8644. extra: 1986 / 1905,
  8645. bottom: 0.025
  8646. }
  8647. },
  8648. feral: {
  8649. height: math.unit(2, "feet"),
  8650. weight: math.unit(90, "lb"),
  8651. name: "Feral",
  8652. image: {
  8653. source: "./media/characters/cordite/feral.svg",
  8654. extra: 1260 / 755,
  8655. bottom: 0.05
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(6 + 5 / 12, "feet"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Pianostrong" },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(150, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/pianostrong/front.svg",
  8676. extra: 6577 / 6254,
  8677. bottom: 0.02
  8678. }
  8679. },
  8680. side: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(150, "lb"),
  8683. name: "Side",
  8684. image: {
  8685. source: "./media/characters/pianostrong/side.svg",
  8686. extra: 6106 / 5730
  8687. }
  8688. },
  8689. back: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(150, "lb"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/pianostrong/back.svg",
  8695. extra: 6085 / 5733,
  8696. bottom: 0.01
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(100, "feet")
  8704. },
  8705. {
  8706. name: "Macro+",
  8707. height: math.unit(300, "feet"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Macro++",
  8712. height: math.unit(1000, "feet")
  8713. },
  8714. ]
  8715. ))
  8716. characterMakers.push(() => makeCharacter(
  8717. { name: "Kona" },
  8718. {
  8719. front: {
  8720. height: math.unit(6, "feet"),
  8721. weight: math.unit(150, "lb"),
  8722. name: "Front",
  8723. image: {
  8724. source: "./media/characters/kona/front.svg",
  8725. extra: 2960 / 2629,
  8726. bottom: 0.005
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(11 + 8 / 12, "feet")
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(850, "feet"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Macro+",
  8742. height: math.unit(1.5, "km"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(80, "miles")
  8748. },
  8749. {
  8750. name: "Gigamacro",
  8751. height: math.unit(3500, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Levi" },
  8757. {
  8758. side: {
  8759. height: math.unit(1.9, "meters"),
  8760. weight: math.unit(326, "kg"),
  8761. name: "Side",
  8762. image: {
  8763. source: "./media/characters/levi/side.svg",
  8764. extra: 1704 / 1334,
  8765. bottom: 0.02
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(1.9, "meters"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(20, "meters")
  8778. },
  8779. {
  8780. name: "Macro+",
  8781. height: math.unit(200, "meters")
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(2, "km")
  8786. },
  8787. {
  8788. name: "Megamacro+",
  8789. height: math.unit(20, "km")
  8790. },
  8791. {
  8792. name: "Gigamacro",
  8793. height: math.unit(2500, "km")
  8794. },
  8795. {
  8796. name: "Gigamacro+",
  8797. height: math.unit(120000, "km")
  8798. },
  8799. {
  8800. name: "Teramacro",
  8801. height: math.unit(7.77e6, "km")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "BMC" },
  8807. {
  8808. front: {
  8809. height: math.unit(6 + 4 / 12, "feet"),
  8810. weight: math.unit(188, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/bmc/front.svg",
  8814. extra: 1067 / 1022,
  8815. bottom: 0.047
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Human-sized",
  8822. height: math.unit(6 + 4 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Small",
  8826. height: math.unit(250, "feet")
  8827. },
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(1250, "feet"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Good Day",
  8835. height: math.unit(88, "miles")
  8836. },
  8837. {
  8838. name: "Largest Measured Size",
  8839. height: math.unit(11.2e6, "lightyears")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Sven the Kaiju" },
  8845. {
  8846. front: {
  8847. height: math.unit(20, "feet"),
  8848. weight: math.unit(2016, "kg"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/sven-the-kaiju/front.svg",
  8852. extra: 1479 / 1449,
  8853. bottom: 0.05
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Fairy",
  8860. height: math.unit(6, "inches")
  8861. },
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(20, "feet"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Rampage",
  8869. height: math.unit(200, "feet")
  8870. },
  8871. {
  8872. name: "Archfey Forest Guardian",
  8873. height: math.unit(1, "mile")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Marik" },
  8879. {
  8880. front: {
  8881. height: math.unit(4, "meters"),
  8882. weight: math.unit(2, "tons"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/marik/front.svg",
  8886. extra: 1057 / 1003,
  8887. bottom: 0.08
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(4, "meters"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(20, "meters")
  8900. },
  8901. {
  8902. name: "Megamacro",
  8903. height: math.unit(50, "km")
  8904. },
  8905. {
  8906. name: "Gigamacro",
  8907. height: math.unit(100, "km")
  8908. },
  8909. {
  8910. name: "Alpha Macro",
  8911. height: math.unit(7.88e7, "yottameters")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Mel" },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(110, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/mel/front.svg",
  8924. extra: 736 / 617,
  8925. bottom: 0.017
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Pico",
  8932. height: math.unit(3, "pm")
  8933. },
  8934. {
  8935. name: "Nano",
  8936. height: math.unit(3, "nm")
  8937. },
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(0.3, "mm"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Micro+",
  8945. height: math.unit(3, "mm")
  8946. },
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(5 + 10.5 / 12, "feet")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Lykonous" },
  8955. {
  8956. kaiju: {
  8957. height: math.unit(1.75, "meters"),
  8958. weight: math.unit(55, "kg"),
  8959. name: "Kaiju",
  8960. image: {
  8961. source: "./media/characters/lykonous/kaiju.svg",
  8962. extra: 1055 / 946,
  8963. bottom: 0.135
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(2.5, "meters"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Kaiju Dragon",
  8975. height: math.unit(60, "meters")
  8976. },
  8977. {
  8978. name: "Mega Kaiju",
  8979. height: math.unit(120, "km")
  8980. },
  8981. {
  8982. name: "Giga Kaiju",
  8983. height: math.unit(200, "megameters")
  8984. },
  8985. {
  8986. name: "Terra Kaiju",
  8987. height: math.unit(400, "gigameters")
  8988. },
  8989. {
  8990. name: "Kaiju Dragon God",
  8991. height: math.unit(13000, "exaparsecs")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Blü" },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(150, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/blü/front.svg",
  9004. extra: 1883 / 1564,
  9005. bottom: 0.031
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(13, "feet"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Big Boi",
  9017. height: math.unit(150, "meters")
  9018. },
  9019. {
  9020. name: "Mini Stomper",
  9021. height: math.unit(300, "meters")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(1000, "meters")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(11000, "meters")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(11000, "km")
  9034. },
  9035. {
  9036. name: "Teramacro",
  9037. height: math.unit(420000, "km")
  9038. },
  9039. {
  9040. name: "Examacro",
  9041. height: math.unit(120, "parsecs")
  9042. },
  9043. {
  9044. name: "God Tho",
  9045. height: math.unit(98000000000, "parsecs")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Scales" },
  9051. {
  9052. taurFront: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(200, "lb"),
  9055. name: "Taur (Front)",
  9056. image: {
  9057. source: "./media/characters/scales/taur-front.svg",
  9058. extra: 1,
  9059. bottom: 0.05
  9060. }
  9061. },
  9062. taurBack: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(200, "lb"),
  9065. name: "Taur (Back)",
  9066. image: {
  9067. source: "./media/characters/scales/taur-back.svg",
  9068. extra: 1,
  9069. bottom: 0.08
  9070. }
  9071. },
  9072. anthro: {
  9073. height: math.unit(6 * 7 / 12, "feet"),
  9074. weight: math.unit(100, "lb"),
  9075. name: "Anthro",
  9076. image: {
  9077. source: "./media/characters/scales/anthro.svg",
  9078. extra: 1,
  9079. bottom: 0.06
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(12, "feet"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Koragos" },
  9093. {
  9094. front: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(150, "lb"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/koragos/front.svg",
  9100. extra: 841 / 794,
  9101. bottom: 0.035
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(150, "lb"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/koragos/back.svg",
  9110. extra: 841 / 810,
  9111. bottom: 0.022
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(6 + 11 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(490, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(10, "miles")
  9128. },
  9129. {
  9130. name: "Gigamacro",
  9131. height: math.unit(50, "miles")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Xylrem" },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(250, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/xylrem/front.svg",
  9144. extra: 3323 / 3050,
  9145. bottom: 0.065
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Micro",
  9152. height: math.unit(4, "feet")
  9153. },
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(16, "feet"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(2720, "feet")
  9162. },
  9163. {
  9164. name: "Megamacro",
  9165. height: math.unit(25000, "miles")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Ikideru" },
  9171. {
  9172. front: {
  9173. height: math.unit(8, "feet"),
  9174. weight: math.unit(250, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/ikideru/front.svg",
  9178. extra: 930 / 870,
  9179. bottom: 0.087
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(8, "feet"),
  9184. weight: math.unit(250, "kg"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/ikideru/back.svg",
  9188. extra: 919 / 852,
  9189. bottom: 0.055
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Rare",
  9196. height: math.unit(8, "feet"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Playful Loom",
  9201. height: math.unit(80, "feet")
  9202. },
  9203. {
  9204. name: "City Leaner",
  9205. height: math.unit(230, "feet")
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(2500, "feet")
  9210. },
  9211. {
  9212. name: "Gigamacro",
  9213. height: math.unit(26400, "feet")
  9214. },
  9215. {
  9216. name: "Tectonic Shifter",
  9217. height: math.unit(1.7, "megameters")
  9218. },
  9219. {
  9220. name: "Planet Carer",
  9221. height: math.unit(21, "megameters")
  9222. },
  9223. {
  9224. name: "God",
  9225. height: math.unit(11157.22, "parsecs")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Neo" },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(120, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/neo/front.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(2, "inches"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Human Size",
  9249. height: math.unit(5 + 8 / 12, "feet")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Chauncey (Chantz)" },
  9255. {
  9256. front: {
  9257. height: math.unit(13 + 10 / 12, "feet"),
  9258. weight: math.unit(5320, "lb"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/chauncey-chantz/front.svg",
  9262. extra: 1587 / 1435,
  9263. bottom: 0.02
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(13 + 10 / 12, "feet"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Macro",
  9275. height: math.unit(45, "feet")
  9276. },
  9277. {
  9278. name: "Megamacro",
  9279. height: math.unit(250, "miles")
  9280. },
  9281. {
  9282. name: "Planetary",
  9283. height: math.unit(10000, "miles")
  9284. },
  9285. {
  9286. name: "Galactic",
  9287. height: math.unit(40000, "parsecs")
  9288. },
  9289. {
  9290. name: "Universal",
  9291. height: math.unit(1, "yottameter")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Epifox" },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(150, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/epifox/front.svg",
  9304. extra: 1,
  9305. bottom: 0.075
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(6, "inches")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(12, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Macro",
  9321. height: math.unit(3810, "feet")
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(500, "miles")
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Colin T." },
  9331. {
  9332. front: {
  9333. height: math.unit(1.8796, "m"),
  9334. weight: math.unit(230, "lb"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/colin-t/front.svg",
  9338. extra: 1272 / 1193,
  9339. bottom: 0.07
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(0.571, "meters")
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(1.8796, "meters"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Tall",
  9355. height: math.unit(4, "meters")
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(67.241, "meters")
  9360. },
  9361. {
  9362. name: "Megamacro",
  9363. height: math.unit(371.856, "meters")
  9364. },
  9365. {
  9366. name: "Planetary",
  9367. height: math.unit(12631.5689, "km")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Matvei" },
  9373. {
  9374. front: {
  9375. height: math.unit(1.85, "meters"),
  9376. weight: math.unit(80, "kg"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/matvei/front.svg",
  9380. extra: 614 / 594,
  9381. bottom: 0.01
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(1.85, "meters"),
  9389. default: true
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Quincy" },
  9395. {
  9396. front: {
  9397. height: math.unit(5 + 9 / 12, "feet"),
  9398. weight: math.unit(70, "lb"),
  9399. name: "Front",
  9400. image: {
  9401. source: "./media/characters/quincy/front.svg",
  9402. extra: 3041 / 2751
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(5 + 9 / 12, "feet"),
  9407. weight: math.unit(70, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/quincy/back.svg",
  9411. extra: 3041 / 2751
  9412. }
  9413. },
  9414. flying: {
  9415. height: math.unit(5 + 4 / 12, "feet"),
  9416. weight: math.unit(70, "lb"),
  9417. name: "Flying",
  9418. image: {
  9419. source: "./media/characters/quincy/flying.svg",
  9420. extra: 1044 / 930
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Micro",
  9427. height: math.unit(3, "cm")
  9428. },
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(5 + 9 / 12, "feet")
  9432. },
  9433. {
  9434. name: "Macro",
  9435. height: math.unit(200, "meters"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(1000, "meters")
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Vanrel" },
  9446. {
  9447. front: {
  9448. height: math.unit(4 + 7 / 12, "feet"),
  9449. weight: math.unit(150, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/vanrel/front.svg",
  9453. extra: 1,
  9454. bottom: 0.02
  9455. }
  9456. },
  9457. elemental: {
  9458. height: math.unit(3, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Elemental",
  9461. image: {
  9462. source: "./media/characters/vanrel/elemental.svg",
  9463. extra: 192.3/162.8,
  9464. bottom: 1.79/194.17
  9465. }
  9466. },
  9467. side: {
  9468. height: math.unit(4 + 7 / 12, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Side",
  9471. image: {
  9472. source: "./media/characters/vanrel/side.svg",
  9473. extra: 1,
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. tome: {
  9478. height: math.unit(1.35, "feet"),
  9479. weight: math.unit(10, "lb"),
  9480. name: "Vanrel's Tome",
  9481. rename: true,
  9482. image: {
  9483. source: "./media/characters/vanrel/tome.svg"
  9484. }
  9485. },
  9486. beans: {
  9487. height: math.unit(0.89, "feet"),
  9488. name: "Beans",
  9489. image: {
  9490. source: "./media/characters/vanrel/beans.svg"
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(4 + 7 / 12, "feet"),
  9498. default: true
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Kuiper Vanrel" },
  9504. {
  9505. front: {
  9506. height: math.unit(7 + 5 / 12, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/kuiper-vanrel/front.svg",
  9511. extra: 1118 / 1068,
  9512. bottom: 0.09
  9513. }
  9514. },
  9515. foot: {
  9516. height: math.unit(0.55, "meters"),
  9517. name: "Foot",
  9518. image: {
  9519. source: "./media/characters/kuiper-vanrel/foot.svg",
  9520. }
  9521. },
  9522. battle: {
  9523. height: math.unit(6.824, "feet"),
  9524. weight: math.unit(150, "lb"),
  9525. name: "Battle",
  9526. image: {
  9527. source: "./media/characters/kuiper-vanrel/battle.svg",
  9528. extra: 1466/1327,
  9529. bottom: 29/1492.5
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(7 + 5 / 12, "feet"),
  9537. default: true
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Keset Vanrel" },
  9543. {
  9544. front: {
  9545. height: math.unit(8 + 5 / 12, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/keset-vanrel/front.svg",
  9550. extra: 1150 / 1084,
  9551. bottom: 0.05
  9552. }
  9553. },
  9554. hand: {
  9555. height: math.unit(0.6, "meters"),
  9556. name: "Hand",
  9557. image: {
  9558. source: "./media/characters/keset-vanrel/hand.svg"
  9559. }
  9560. },
  9561. foot: {
  9562. height: math.unit(0.94978, "meters"),
  9563. name: "Foot",
  9564. image: {
  9565. source: "./media/characters/keset-vanrel/foot.svg"
  9566. }
  9567. },
  9568. battle: {
  9569. height: math.unit(7.408, "feet"),
  9570. weight: math.unit(150, "lb"),
  9571. name: "Battle",
  9572. image: {
  9573. source: "./media/characters/keset-vanrel/battle.svg",
  9574. extra: 1890/1386,
  9575. bottom: 73.28/1970
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(8 + 5 / 12, "feet"),
  9583. default: true
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Neos" },
  9589. {
  9590. front: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(150, "lb"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/neos/front.svg",
  9596. extra: 1696 / 992,
  9597. bottom: 0.14
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(54, "cm"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(100, "m")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(10, "km")
  9614. },
  9615. {
  9616. name: "Megamacro+",
  9617. height: math.unit(100, "km")
  9618. },
  9619. {
  9620. name: "Gigamacro",
  9621. height: math.unit(100, "Mm")
  9622. },
  9623. {
  9624. name: "Teramacro",
  9625. height: math.unit(100, "Gm")
  9626. },
  9627. {
  9628. name: "Examacro",
  9629. height: math.unit(100, "Em")
  9630. },
  9631. {
  9632. name: "Godly",
  9633. height: math.unit(10000, "Ym")
  9634. },
  9635. {
  9636. name: "Beyond Godly",
  9637. height: math.unit(10000000, "Ym")
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Sammy Mouse" },
  9643. {
  9644. feminine: {
  9645. height: math.unit(5, "feet"),
  9646. weight: math.unit(100, "lb"),
  9647. name: "Feminine",
  9648. image: {
  9649. source: "./media/characters/sammy-mouse/feminine.svg",
  9650. extra: 2526 / 2425,
  9651. bottom: 0.123
  9652. }
  9653. },
  9654. masculine: {
  9655. height: math.unit(5, "feet"),
  9656. weight: math.unit(100, "lb"),
  9657. name: "Masculine",
  9658. image: {
  9659. source: "./media/characters/sammy-mouse/masculine.svg",
  9660. extra: 2526 / 2425,
  9661. bottom: 0.123
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(5, "inches")
  9669. },
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(5, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(60, "feet")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Kole" },
  9683. {
  9684. front: {
  9685. height: math.unit(4, "feet"),
  9686. weight: math.unit(50, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/kole/front.svg",
  9690. extra: 1423 / 1303,
  9691. bottom: 0.025
  9692. }
  9693. },
  9694. back: {
  9695. height: math.unit(4, "feet"),
  9696. weight: math.unit(50, "lb"),
  9697. name: "Back",
  9698. image: {
  9699. source: "./media/characters/kole/back.svg",
  9700. extra: 1426 / 1280,
  9701. bottom: 0.02
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(4, "feet"),
  9709. default: true
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Rufran" },
  9715. {
  9716. front: {
  9717. height: math.unit(2 + 6 / 12, "feet"),
  9718. weight: math.unit(20, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/rufran/front.svg",
  9722. extra: 2041 / 1839,
  9723. bottom: 0.055
  9724. }
  9725. },
  9726. back: {
  9727. height: math.unit(2 + 6 / 12, "feet"),
  9728. weight: math.unit(20, "lb"),
  9729. name: "Back",
  9730. image: {
  9731. source: "./media/characters/rufran/back.svg",
  9732. extra: 2054 / 1839,
  9733. bottom: 0.01
  9734. }
  9735. },
  9736. hand: {
  9737. height: math.unit(0.2166, "meters"),
  9738. name: "Hand",
  9739. image: {
  9740. source: "./media/characters/rufran/hand.svg"
  9741. }
  9742. },
  9743. foot: {
  9744. height: math.unit(0.185, "meters"),
  9745. name: "Foot",
  9746. image: {
  9747. source: "./media/characters/rufran/foot.svg"
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(1, "inch")
  9755. },
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(2 + 6 / 12, "feet"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Big",
  9763. height: math.unit(60, "feet")
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(325, "feet")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Chip" },
  9773. {
  9774. front: {
  9775. height: math.unit(0.3, "meters"),
  9776. weight: math.unit(3.5, "kg"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/chip/front.svg",
  9780. extra: 748 / 674
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Micro",
  9787. height: math.unit(1, "inch"),
  9788. default: true
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Torvid" },
  9794. {
  9795. side: {
  9796. height: math.unit(2.3, "meters"),
  9797. weight: math.unit(3500, "lb"),
  9798. name: "Side",
  9799. image: {
  9800. source: "./media/characters/torvid/side.svg",
  9801. extra: 1972 / 722,
  9802. bottom: 0.035
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(2.3, "meters"),
  9810. default: true
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Susan" },
  9816. {
  9817. front: {
  9818. height: math.unit(2, "meters"),
  9819. weight: math.unit(150.5, "kg"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/susan/front.svg",
  9823. extra: 693 / 635,
  9824. bottom: 0.05
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Megamacro",
  9831. height: math.unit(505, "miles"),
  9832. default: true
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Raindrops" },
  9838. {
  9839. front: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(150, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/raindrops/front.svg",
  9845. extra: 2655 / 2461,
  9846. bottom: 0.02
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/raindrops/back.svg",
  9855. extra: 2574 / 2400,
  9856. bottom: 0.03
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(6, "inches")
  9864. },
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(6 + 2 / 12, "feet")
  9868. },
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(131, "feet"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Megamacro",
  9876. height: math.unit(15, "miles")
  9877. },
  9878. {
  9879. name: "Gigamacro",
  9880. height: math.unit(4000, "miles")
  9881. },
  9882. {
  9883. name: "Teramacro",
  9884. height: math.unit(315000, "miles")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Tezwa" },
  9890. {
  9891. front: {
  9892. height: math.unit(2.794, "meters"),
  9893. weight: math.unit(325, "kg"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/tezwa/front.svg",
  9897. extra: 2083 / 1906,
  9898. bottom: 0.031
  9899. }
  9900. },
  9901. foot: {
  9902. height: math.unit(0.687, "meters"),
  9903. name: "Foot",
  9904. image: {
  9905. source: "./media/characters/tezwa/foot.svg"
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(9 + 2 / 12, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Typhus" },
  9919. {
  9920. front: {
  9921. height: math.unit(58, "feet"),
  9922. weight: math.unit(89000, "lb"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/typhus/front.svg",
  9926. extra: 816 / 800,
  9927. bottom: 0.065
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(58, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Lyra Von Wulf" },
  9941. {
  9942. front: {
  9943. height: math.unit(12, "feet"),
  9944. weight: math.unit(6, "tonnes"),
  9945. name: "Front",
  9946. image: {
  9947. source: "./media/characters/lyra-von-wulf/front.svg",
  9948. extra: 1,
  9949. bottom: 0.10
  9950. }
  9951. },
  9952. frontMecha: {
  9953. height: math.unit(12, "feet"),
  9954. weight: math.unit(12, "tonnes"),
  9955. name: "Front (Mecha)",
  9956. image: {
  9957. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9958. extra: 1,
  9959. bottom: 0.042
  9960. }
  9961. },
  9962. maw: {
  9963. height: math.unit(2.2, "feet"),
  9964. name: "Maw",
  9965. image: {
  9966. source: "./media/characters/lyra-von-wulf/maw.svg"
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(12, "feet"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Classic",
  9978. height: math.unit(50, "feet")
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(500, "feet")
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(1, "mile")
  9987. },
  9988. {
  9989. name: "Gigamacro",
  9990. height: math.unit(400, "miles")
  9991. },
  9992. {
  9993. name: "Teramacro",
  9994. height: math.unit(22000, "miles")
  9995. },
  9996. {
  9997. name: "Solarmacro",
  9998. height: math.unit(8600000, "miles")
  9999. },
  10000. {
  10001. name: "Galactic",
  10002. height: math.unit(1057000, "lightyears")
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Dixon" },
  10008. {
  10009. front: {
  10010. height: math.unit(6 + 10 / 12, "feet"),
  10011. weight: math.unit(150, "lb"),
  10012. name: "Front",
  10013. image: {
  10014. source: "./media/characters/dixon/front.svg",
  10015. extra: 3361 / 3209,
  10016. bottom: 0.01
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(6 + 10 / 12, "feet"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Big",
  10028. height: math.unit(12, "meters")
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(500, "meters")
  10033. },
  10034. {
  10035. name: "Megamacro",
  10036. height: math.unit(2, "km")
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Kauko" },
  10042. {
  10043. front: {
  10044. height: math.unit(185, "cm"),
  10045. weight: math.unit(68, "kg"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/kauko/front.svg",
  10049. extra: 1455 / 1421,
  10050. bottom: 0.03
  10051. }
  10052. },
  10053. back: {
  10054. height: math.unit(185, "cm"),
  10055. weight: math.unit(68, "kg"),
  10056. name: "Back",
  10057. image: {
  10058. source: "./media/characters/kauko/back.svg",
  10059. extra: 1455 / 1421,
  10060. bottom: 0.004
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(185, "cm"),
  10068. default: true
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Varg" },
  10074. {
  10075. front: {
  10076. height: math.unit(6, "feet"),
  10077. weight: math.unit(150, "kg"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/varg/front.svg",
  10081. extra: 1108 / 1018,
  10082. bottom: 0.0375
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(5, "meters")
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(200, "meters")
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(20, "kilometers")
  10098. },
  10099. {
  10100. name: "True Size",
  10101. height: math.unit(211, "km"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Gigamacro",
  10106. height: math.unit(1000, "km")
  10107. },
  10108. {
  10109. name: "Gigamacro+",
  10110. height: math.unit(8000, "km")
  10111. },
  10112. {
  10113. name: "Teramacro",
  10114. height: math.unit(1000000, "km")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Dayza" },
  10120. {
  10121. front: {
  10122. height: math.unit(7 + 7 / 12, "feet"),
  10123. weight: math.unit(267, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/dayza/front.svg",
  10127. extra: 1262 / 1200,
  10128. bottom: 0.035
  10129. }
  10130. },
  10131. side: {
  10132. height: math.unit(7 + 7 / 12, "feet"),
  10133. weight: math.unit(267, "lb"),
  10134. name: "Side",
  10135. image: {
  10136. source: "./media/characters/dayza/side.svg",
  10137. extra: 1295 / 1245,
  10138. bottom: 0.05
  10139. }
  10140. },
  10141. back: {
  10142. height: math.unit(7 + 7 / 12, "feet"),
  10143. weight: math.unit(267, "lb"),
  10144. name: "Back",
  10145. image: {
  10146. source: "./media/characters/dayza/back.svg",
  10147. extra: 1241 / 1170
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(7 + 7 / 12, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(155, "feet")
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Xanthos" },
  10165. {
  10166. front: {
  10167. height: math.unit(6 + 5 / 12, "feet"),
  10168. weight: math.unit(160, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/xanthos/front.svg",
  10172. extra: 1,
  10173. bottom: 0.04
  10174. }
  10175. },
  10176. back: {
  10177. height: math.unit(6 + 5 / 12, "feet"),
  10178. weight: math.unit(160, "lb"),
  10179. name: "Back",
  10180. image: {
  10181. source: "./media/characters/xanthos/back.svg",
  10182. extra: 1,
  10183. bottom: 0.03
  10184. }
  10185. },
  10186. hand: {
  10187. height: math.unit(0.928, "feet"),
  10188. name: "Hand",
  10189. image: {
  10190. source: "./media/characters/xanthos/hand.svg"
  10191. }
  10192. },
  10193. foot: {
  10194. height: math.unit(1.286, "feet"),
  10195. name: "Foot",
  10196. image: {
  10197. source: "./media/characters/xanthos/foot.svg"
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(6 + 5 / 12, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Normal+",
  10209. height: math.unit(6, "meters")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(40, "feet")
  10214. },
  10215. {
  10216. name: "Macro+",
  10217. height: math.unit(200, "meters")
  10218. },
  10219. {
  10220. name: "Megamacro",
  10221. height: math.unit(20, "km")
  10222. },
  10223. {
  10224. name: "Megamacro+",
  10225. height: math.unit(100, "km")
  10226. },
  10227. ]
  10228. ))
  10229. characterMakers.push(() => makeCharacter(
  10230. { name: "Grynn" },
  10231. {
  10232. front: {
  10233. height: math.unit(6 + 3 / 12, "feet"),
  10234. weight: math.unit(215, "lb"),
  10235. name: "Front",
  10236. image: {
  10237. source: "./media/characters/grynn/front.svg",
  10238. extra: 4627 / 4209,
  10239. bottom: 0.047
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Micro",
  10246. height: math.unit(6, "inches")
  10247. },
  10248. {
  10249. name: "Normal",
  10250. height: math.unit(6 + 3 / 12, "feet"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Big",
  10255. height: math.unit(104, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(944, "feet")
  10260. },
  10261. {
  10262. name: "Macro+",
  10263. height: math.unit(9480, "feet")
  10264. },
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(78752, "feet")
  10268. },
  10269. {
  10270. name: "Megamacro+",
  10271. height: math.unit(630128, "feet")
  10272. },
  10273. {
  10274. name: "Megamacro++",
  10275. height: math.unit(3150695, "feet")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Mocha Aura" },
  10281. {
  10282. front: {
  10283. height: math.unit(7 + 5 / 12, "feet"),
  10284. weight: math.unit(450, "lb"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/mocha-aura/front.svg",
  10288. extra: 1907 / 1817,
  10289. bottom: 0.04
  10290. }
  10291. },
  10292. back: {
  10293. height: math.unit(7 + 5 / 12, "feet"),
  10294. weight: math.unit(450, "lb"),
  10295. name: "Back",
  10296. image: {
  10297. source: "./media/characters/mocha-aura/back.svg",
  10298. extra: 1900 / 1825,
  10299. bottom: 0.045
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Nano",
  10306. height: math.unit(1, "nm")
  10307. },
  10308. {
  10309. name: "Megamicro",
  10310. height: math.unit(1, "mm")
  10311. },
  10312. {
  10313. name: "Micro",
  10314. height: math.unit(3, "inches")
  10315. },
  10316. {
  10317. name: "Normal",
  10318. height: math.unit(7 + 5 / 12, "feet"),
  10319. default: true
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(30, "feet")
  10324. },
  10325. {
  10326. name: "Megamacro",
  10327. height: math.unit(3500, "feet")
  10328. },
  10329. {
  10330. name: "Teramacro",
  10331. height: math.unit(500000, "miles")
  10332. },
  10333. {
  10334. name: "Petamacro",
  10335. height: math.unit(50000000000000000, "parsecs")
  10336. },
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Ilisha Devya" },
  10341. {
  10342. front: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Front",
  10346. image: {
  10347. source: "./media/characters/ilisha-devya/front.svg",
  10348. extra: 1,
  10349. bottom: 0.175
  10350. }
  10351. },
  10352. back: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Back",
  10356. image: {
  10357. source: "./media/characters/ilisha-devya/back.svg",
  10358. extra: 1,
  10359. bottom: 0.015
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(500, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Megamacro",
  10371. height: math.unit(10, "miles")
  10372. },
  10373. {
  10374. name: "Gigamacro",
  10375. height: math.unit(100000, "miles")
  10376. },
  10377. {
  10378. name: "Examacro",
  10379. height: math.unit(1e9, "lightyears")
  10380. },
  10381. {
  10382. name: "Omniversal",
  10383. height: math.unit(1e33, "lightyears")
  10384. },
  10385. {
  10386. name: "Beyond Infinite",
  10387. height: math.unit(1e100, "lightyears")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Mira" },
  10393. {
  10394. Side: {
  10395. height: math.unit(6, "feet"),
  10396. weight: math.unit(150, "lb"),
  10397. name: "Side",
  10398. image: {
  10399. source: "./media/characters/mira/side.svg",
  10400. extra: 900 / 799,
  10401. bottom: 0.02
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Human Size",
  10408. height: math.unit(6, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(100, "feet"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Megamacro",
  10417. height: math.unit(10, "miles")
  10418. },
  10419. {
  10420. name: "Gigamacro",
  10421. height: math.unit(25000, "miles")
  10422. },
  10423. {
  10424. name: "Teramacro",
  10425. height: math.unit(300, "AU")
  10426. },
  10427. {
  10428. name: "Full Size",
  10429. height: math.unit(4.5e10, "lightyears")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Holly" },
  10435. {
  10436. front: {
  10437. height: math.unit(6, "feet"),
  10438. weight: math.unit(150, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/holly/front.svg",
  10442. extra: 639 / 606
  10443. }
  10444. },
  10445. back: {
  10446. height: math.unit(6, "feet"),
  10447. weight: math.unit(150, "lb"),
  10448. name: "Back",
  10449. image: {
  10450. source: "./media/characters/holly/back.svg",
  10451. extra: 623 / 598
  10452. }
  10453. },
  10454. frontWorking: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(150, "lb"),
  10457. name: "Front (Working)",
  10458. image: {
  10459. source: "./media/characters/holly/front-working.svg",
  10460. extra: 607 / 577,
  10461. bottom: 0.048
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(12 + 3 / 12, "feet"),
  10469. default: true
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Porter" },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(150, "lb"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/porter/front.svg",
  10482. extra: 1,
  10483. bottom: 0.01
  10484. }
  10485. },
  10486. frontRobes: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "lb"),
  10489. name: "Front (Robes)",
  10490. image: {
  10491. source: "./media/characters/porter/front-robes.svg",
  10492. extra: 1.01,
  10493. bottom: 0.01
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(11 + 9 / 12, "feet"),
  10501. default: true
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Lucy" },
  10507. {
  10508. legendary: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(150, "lb"),
  10511. name: "Legendary",
  10512. image: {
  10513. source: "./media/characters/lucy/legendary.svg",
  10514. extra: 1355 / 1100,
  10515. bottom: 0.045
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Legendary",
  10522. height: math.unit(86882 * 2, "miles"),
  10523. default: true
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Drusilla" },
  10529. {
  10530. front: {
  10531. height: math.unit(6, "feet"),
  10532. weight: math.unit(150, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/drusilla/front.svg",
  10536. extra: 678 / 635,
  10537. bottom: 0.03
  10538. }
  10539. },
  10540. back: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Back",
  10544. image: {
  10545. source: "./media/characters/drusilla/back.svg",
  10546. extra: 678 / 635,
  10547. bottom: 0.005
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Macro",
  10554. height: math.unit(100, "feet")
  10555. },
  10556. {
  10557. name: "Canon Height",
  10558. height: math.unit(2000, "feet"),
  10559. default: true
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Renard Thatch" },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(180, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/renard-thatch/front.svg",
  10572. extra: 2411 / 2275,
  10573. bottom: 0.01
  10574. }
  10575. },
  10576. frontPosing: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(180, "lb"),
  10579. name: "Front (Posing)",
  10580. image: {
  10581. source: "./media/characters/renard-thatch/front-posing.svg",
  10582. extra: 2381 / 2261,
  10583. bottom: 0.01
  10584. }
  10585. },
  10586. back: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(180, "lb"),
  10589. name: "Back",
  10590. image: {
  10591. source: "./media/characters/renard-thatch/back.svg",
  10592. extra: 2428 / 2288
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Micro",
  10599. height: math.unit(3, "inches")
  10600. },
  10601. {
  10602. name: "Default",
  10603. height: math.unit(6, "feet"),
  10604. default: true
  10605. },
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(75, "feet")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Sekvra" },
  10614. {
  10615. front: {
  10616. height: math.unit(1450, "feet"),
  10617. weight: math.unit(1.21e6, "tons"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/sekvra/front.svg",
  10621. extra: 1,
  10622. bottom: 0.03
  10623. }
  10624. },
  10625. frontClothed: {
  10626. height: math.unit(1450, "feet"),
  10627. weight: math.unit(1.21e6, "tons"),
  10628. name: "Front (Clothed)",
  10629. image: {
  10630. source: "./media/characters/sekvra/front-clothed.svg",
  10631. extra: 1,
  10632. bottom: 0.03
  10633. }
  10634. },
  10635. side: {
  10636. height: math.unit(1450, "feet"),
  10637. weight: math.unit(1.21e6, "tons"),
  10638. name: "Side",
  10639. image: {
  10640. source: "./media/characters/sekvra/side.svg",
  10641. extra: 1,
  10642. bottom: 0.025
  10643. }
  10644. },
  10645. back: {
  10646. height: math.unit(1450, "feet"),
  10647. weight: math.unit(1.21e6, "tons"),
  10648. name: "Back",
  10649. image: {
  10650. source: "./media/characters/sekvra/back.svg",
  10651. extra: 1,
  10652. bottom: 0.005
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(1450, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Megamacro",
  10664. height: math.unit(15000, "feet")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Carmine" },
  10670. {
  10671. front: {
  10672. height: math.unit(6, "feet"),
  10673. weight: math.unit(150, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/carmine/front.svg",
  10677. extra: 1,
  10678. bottom: 0.035
  10679. }
  10680. },
  10681. frontArmor: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(150, "lb"),
  10684. name: "Front (Armor)",
  10685. image: {
  10686. source: "./media/characters/carmine/front-armor.svg",
  10687. extra: 1,
  10688. bottom: 0.035
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Large",
  10695. height: math.unit(1, "mile")
  10696. },
  10697. {
  10698. name: "Huge",
  10699. height: math.unit(40, "miles"),
  10700. default: true
  10701. },
  10702. {
  10703. name: "Colossal",
  10704. height: math.unit(2500, "miles")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Elyssia" },
  10710. {
  10711. front: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(150, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/elyssia/front.svg",
  10717. extra: 2201 / 2035,
  10718. bottom: 0.05
  10719. }
  10720. },
  10721. frontClothed: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front (Clothed)",
  10725. image: {
  10726. source: "./media/characters/elyssia/front-clothed.svg",
  10727. extra: 2201 / 2035,
  10728. bottom: 0.05
  10729. }
  10730. },
  10731. back: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Back",
  10735. image: {
  10736. source: "./media/characters/elyssia/back.svg",
  10737. extra: 2201 / 2035,
  10738. bottom: 0.013
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Smaller",
  10745. height: math.unit(150, "feet")
  10746. },
  10747. {
  10748. name: "Standard",
  10749. height: math.unit(1400, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Distracted",
  10754. height: math.unit(15000, "feet")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Geno Maxwell" },
  10760. {
  10761. front: {
  10762. height: math.unit(7 + 4 / 12, "feet"),
  10763. weight: math.unit(500, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/geno-maxwell/front.svg",
  10767. extra: 2207 / 2040,
  10768. bottom: 0.015
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Micro",
  10775. height: math.unit(3, "inches")
  10776. },
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(7 + 4 / 12, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(220, "feet")
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(11, "miles")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Regena Maxwell" },
  10794. {
  10795. front: {
  10796. height: math.unit(7 + 4 / 12, "feet"),
  10797. weight: math.unit(500, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/regena-maxwell/front.svg",
  10801. extra: 3115 / 2770,
  10802. bottom: 0.02
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(7 + 4 / 12, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(220, "feet")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(11, "miles")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "XGlidingDragonX" },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(150, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10831. extra: 860 / 690,
  10832. bottom: 0.03
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(1.7, "meters"),
  10840. default: true
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Quilly" },
  10846. {
  10847. front: {
  10848. height: math.unit(6, "feet"),
  10849. weight: math.unit(150, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/quilly/front.svg",
  10853. extra: 890 / 776
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Gigamacro",
  10860. height: math.unit(404090, "miles"),
  10861. default: true
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Tempest" },
  10867. {
  10868. front: {
  10869. height: math.unit(7 + 8 / 12, "feet"),
  10870. weight: math.unit(350, "lb"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/tempest/front.svg",
  10874. extra: 1175 / 1086,
  10875. bottom: 0.02
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(7 + 8 / 12, "feet"),
  10883. default: true
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Rodger" },
  10889. {
  10890. side: {
  10891. height: math.unit(4 + 5 / 12, "feet"),
  10892. weight: math.unit(80, "lb"),
  10893. name: "Side",
  10894. image: {
  10895. source: "./media/characters/rodger/side.svg",
  10896. extra: 1235 / 1118
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Micro",
  10903. height: math.unit(1, "inch")
  10904. },
  10905. {
  10906. name: "Normal",
  10907. height: math.unit(4 + 5 / 12, "feet"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Macro",
  10912. height: math.unit(120, "feet")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Danyel" },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/danyel/front.svg",
  10925. extra: 1185 / 1123,
  10926. bottom: 0.05
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Shrunken",
  10933. height: math.unit(0.5, "mm")
  10934. },
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(1, "mm"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Upsized",
  10942. height: math.unit(5 + 5 / 12, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Vivian Bijoux" },
  10948. {
  10949. front: {
  10950. height: math.unit(5 + 6 / 12, "feet"),
  10951. weight: math.unit(200, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/vivian-bijoux/front.svg",
  10955. extra: 1,
  10956. bottom: 0.072
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(5 + 6 / 12, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Bad Dream",
  10968. height: math.unit(500, "feet")
  10969. },
  10970. {
  10971. name: "Nightmare",
  10972. height: math.unit(500, "miles")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Zeta" },
  10978. {
  10979. front: {
  10980. height: math.unit(6 + 1 / 12, "feet"),
  10981. weight: math.unit(260, "lb"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/zeta/front.svg",
  10985. extra: 1968 / 1889,
  10986. bottom: 0.06
  10987. }
  10988. },
  10989. back: {
  10990. height: math.unit(6 + 1 / 12, "feet"),
  10991. weight: math.unit(260, "lb"),
  10992. name: "Back",
  10993. image: {
  10994. source: "./media/characters/zeta/back.svg",
  10995. extra: 1944 / 1858,
  10996. bottom: 0.03
  10997. }
  10998. },
  10999. hand: {
  11000. height: math.unit(1.112, "feet"),
  11001. name: "Hand",
  11002. image: {
  11003. source: "./media/characters/zeta/hand.svg"
  11004. }
  11005. },
  11006. foot: {
  11007. height: math.unit(1.48, "feet"),
  11008. name: "Foot",
  11009. image: {
  11010. source: "./media/characters/zeta/foot.svg"
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Micro",
  11017. height: math.unit(6, "inches")
  11018. },
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(6 + 1 / 12, "feet"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Macro",
  11026. height: math.unit(20, "feet")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Jamie Larsen" },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/jamie-larsen/front.svg",
  11039. extra: 962 / 933,
  11040. bottom: 0.02
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/jamie-larsen/back.svg",
  11049. extra: 997 / 946
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(28 + 7 / 12, "feet"),
  11057. default: true
  11058. },
  11059. {
  11060. name: "Macro+",
  11061. height: math.unit(180, "feet")
  11062. },
  11063. {
  11064. name: "Megamacro",
  11065. height: math.unit(10, "miles")
  11066. },
  11067. {
  11068. name: "Gigamacro",
  11069. height: math.unit(200000, "miles")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Vance" },
  11075. {
  11076. front: {
  11077. height: math.unit(6, "feet"),
  11078. weight: math.unit(120, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/vance/front.svg",
  11082. extra: 1980 / 1890,
  11083. bottom: 0.09
  11084. }
  11085. },
  11086. back: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(120, "lb"),
  11089. name: "Back",
  11090. image: {
  11091. source: "./media/characters/vance/back.svg",
  11092. extra: 2081 / 1994,
  11093. bottom: 0.014
  11094. }
  11095. },
  11096. hand: {
  11097. height: math.unit(0.88, "feet"),
  11098. name: "Hand",
  11099. image: {
  11100. source: "./media/characters/vance/hand.svg"
  11101. }
  11102. },
  11103. foot: {
  11104. height: math.unit(0.64, "feet"),
  11105. name: "Foot",
  11106. image: {
  11107. source: "./media/characters/vance/foot.svg"
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Small",
  11114. height: math.unit(90, "feet"),
  11115. default: true
  11116. },
  11117. {
  11118. name: "Macro",
  11119. height: math.unit(100, "meters")
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(15, "miles")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Xochitl" },
  11129. {
  11130. front: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(180, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/xochitl/front.svg",
  11136. extra: 2297 / 2261,
  11137. bottom: 0.065
  11138. }
  11139. },
  11140. back: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(180, "lb"),
  11143. name: "Back",
  11144. image: {
  11145. source: "./media/characters/xochitl/back.svg",
  11146. extra: 2386 / 2354,
  11147. bottom: 0.01
  11148. }
  11149. },
  11150. foot: {
  11151. height: math.unit(6 / 5 * 1.15, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Foot",
  11154. image: {
  11155. source: "./media/characters/xochitl/foot.svg"
  11156. }
  11157. },
  11158. },
  11159. [
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(80, "feet")
  11163. },
  11164. {
  11165. name: "Macro+",
  11166. height: math.unit(400, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Gigamacro",
  11171. height: math.unit(80000, "miles")
  11172. },
  11173. {
  11174. name: "Gigamacro+",
  11175. height: math.unit(400000, "miles")
  11176. },
  11177. {
  11178. name: "Teramacro",
  11179. height: math.unit(300, "AU")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Vincent" },
  11185. {
  11186. front: {
  11187. height: math.unit(6, "feet"),
  11188. weight: math.unit(150, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/vincent/front.svg",
  11192. extra: 1130 / 1080,
  11193. bottom: 0.055
  11194. }
  11195. },
  11196. beak: {
  11197. height: math.unit(6 * 0.1, "feet"),
  11198. name: "Beak",
  11199. image: {
  11200. source: "./media/characters/vincent/beak.svg"
  11201. }
  11202. },
  11203. hand: {
  11204. height: math.unit(6 * 0.85, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Hand",
  11207. image: {
  11208. source: "./media/characters/vincent/hand.svg"
  11209. }
  11210. },
  11211. foot: {
  11212. height: math.unit(6 * 0.19, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Foot",
  11215. image: {
  11216. source: "./media/characters/vincent/foot.svg"
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Base",
  11223. height: math.unit(6 + 5 / 12, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(300, "feet")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(2, "miles")
  11233. },
  11234. {
  11235. name: "Gigamacro",
  11236. height: math.unit(1000, "miles")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Jay" },
  11242. {
  11243. front: {
  11244. height: math.unit(6 + 2 / 12, "feet"),
  11245. weight: math.unit(65, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/jay/front.svg",
  11249. extra: 1510 / 1430,
  11250. bottom: 0.042
  11251. }
  11252. },
  11253. back: {
  11254. height: math.unit(6 + 2 / 12, "feet"),
  11255. weight: math.unit(65, "lb"),
  11256. name: "Back",
  11257. image: {
  11258. source: "./media/characters/jay/back.svg",
  11259. extra: 1510 / 1430,
  11260. bottom: 0.025
  11261. }
  11262. },
  11263. clothed: {
  11264. height: math.unit(6 + 2 / 12, "feet"),
  11265. weight: math.unit(65, "lb"),
  11266. name: "Front (Clothed)",
  11267. image: {
  11268. source: "./media/characters/jay/clothed.svg",
  11269. extra: 744 / 699,
  11270. bottom: 0.043
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Micro",
  11277. height: math.unit(1, "inch")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(6 + 2 / 12, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(1, "mile")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(100, "miles")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Coatl" },
  11296. {
  11297. front: {
  11298. height: math.unit(2, "meters"),
  11299. weight: math.unit(500, "kg"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/coatl/front.svg",
  11303. extra: 3948 / 3500,
  11304. bottom: 0.082
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(4, "meters")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(100, "meters"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro+",
  11320. height: math.unit(300, "meters")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(3, "gigameters")
  11325. },
  11326. {
  11327. name: "Megamacro+",
  11328. height: math.unit(300, "terameters")
  11329. },
  11330. {
  11331. name: "Megamacro++",
  11332. height: math.unit(3, "lightyears")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Shiroryu" },
  11338. {
  11339. front: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(50, "kg"),
  11342. name: "front",
  11343. image: {
  11344. source: "./media/characters/shiroryu/front.svg",
  11345. extra: 1990 / 1935
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Mortal Mingling",
  11352. height: math.unit(3, "meters")
  11353. },
  11354. {
  11355. name: "Kaiju-ish",
  11356. height: math.unit(250, "meters")
  11357. },
  11358. {
  11359. name: "Somewhat Godly",
  11360. height: math.unit(400, "km"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Planetary",
  11365. height: math.unit(300, "megameters")
  11366. },
  11367. {
  11368. name: "Galaxy-dwarfing",
  11369. height: math.unit(450, "kiloparsecs")
  11370. },
  11371. {
  11372. name: "Universe Eater",
  11373. height: math.unit(150, "gigaparsecs")
  11374. },
  11375. {
  11376. name: "Almost Immeasurable",
  11377. height: math.unit(1.3e266, "yottaparsecs")
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Umeko" },
  11383. {
  11384. front: {
  11385. height: math.unit(6, "feet"),
  11386. weight: math.unit(150, "lb"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/umeko/front.svg",
  11390. extra: 1,
  11391. bottom: 0.019
  11392. }
  11393. },
  11394. frontArmored: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Front (Armored)",
  11398. image: {
  11399. source: "./media/characters/umeko/front-armored.svg",
  11400. extra: 1,
  11401. bottom: 0.021
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(220, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Guardian Dragon",
  11413. height: math.unit(50, "miles")
  11414. },
  11415. {
  11416. name: "Cosmic",
  11417. height: math.unit(800000, "miles")
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Cassidy" },
  11423. {
  11424. front: {
  11425. height: math.unit(6, "feet"),
  11426. weight: math.unit(150, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/cassidy/front.svg",
  11430. extra: 1,
  11431. bottom: 0.043
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Canon Height",
  11438. height: math.unit(120, "feet"),
  11439. default: true
  11440. },
  11441. {
  11442. name: "Macro+",
  11443. height: math.unit(400, "feet")
  11444. },
  11445. {
  11446. name: "Macro++",
  11447. height: math.unit(4000, "feet")
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(3, "miles")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Isaac" },
  11457. {
  11458. front: {
  11459. height: math.unit(6, "feet"),
  11460. weight: math.unit(150, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/isaac/front.svg",
  11464. extra: 896 / 815,
  11465. bottom: 0.11
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Human Size",
  11472. height: math.unit(8, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(400, "feet")
  11478. },
  11479. {
  11480. name: "Megamacro",
  11481. height: math.unit(50, "miles")
  11482. },
  11483. {
  11484. name: "Canon Height",
  11485. height: math.unit(200, "AU")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Sleekit" },
  11491. {
  11492. front: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(72, "kg"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/sleekit/front.svg",
  11498. extra: 4693 / 4487,
  11499. bottom: 0.012
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Minimum Height",
  11506. height: math.unit(10, "meters")
  11507. },
  11508. {
  11509. name: "Smaller",
  11510. height: math.unit(25, "meters")
  11511. },
  11512. {
  11513. name: "Larger",
  11514. height: math.unit(38, "meters"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Maximum height",
  11519. height: math.unit(100, "meters")
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Nillia" },
  11525. {
  11526. front: {
  11527. height: math.unit(6, "feet"),
  11528. weight: math.unit(150, "lb"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/nillia/front.svg",
  11532. extra: 2195 / 2037,
  11533. bottom: 0.005
  11534. }
  11535. },
  11536. back: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(150, "lb"),
  11539. name: "Back",
  11540. image: {
  11541. source: "./media/characters/nillia/back.svg",
  11542. extra: 2195 / 2037,
  11543. bottom: 0.005
  11544. }
  11545. },
  11546. },
  11547. [
  11548. {
  11549. name: "Canon Height",
  11550. height: math.unit(489, "feet"),
  11551. default: true
  11552. }
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Mesmyriza" },
  11557. {
  11558. front: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/mesmyriza/front.svg",
  11564. extra: 2067 / 1784,
  11565. bottom: 0.035
  11566. }
  11567. },
  11568. foot: {
  11569. height: math.unit(6 / (250 / 35), "feet"),
  11570. name: "Foot",
  11571. image: {
  11572. source: "./media/characters/mesmyriza/foot.svg"
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Macro",
  11579. height: math.unit(457, "meters"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(8, "megameters")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Saudade" },
  11590. {
  11591. front: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(250, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/saudade/front.svg",
  11597. extra: 1172 / 1139,
  11598. bottom: 0.035
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Micro",
  11605. height: math.unit(3, "inches")
  11606. },
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(6, "feet"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Macro",
  11614. height: math.unit(50, "feet")
  11615. },
  11616. {
  11617. name: "Megamacro",
  11618. height: math.unit(2800, "feet")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Keireer" },
  11624. {
  11625. front: {
  11626. height: math.unit(5 + 4 / 12, "feet"),
  11627. weight: math.unit(100, "lb"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/keireer/front.svg",
  11631. extra: 716 / 666,
  11632. bottom: 0.05
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(5 + 4 / 12, "feet"),
  11640. default: true
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Mirja" },
  11646. {
  11647. front: {
  11648. height: math.unit(6, "feet"),
  11649. weight: math.unit(90, "kg"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/mirja/front.svg",
  11653. extra: 1789 / 1683,
  11654. bottom: 0.05
  11655. }
  11656. },
  11657. frontDressed: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(90, "lb"),
  11660. name: "Front (Dressed)",
  11661. image: {
  11662. source: "./media/characters/mirja/front-dressed.svg",
  11663. extra: 1789 / 1683,
  11664. bottom: 0.05
  11665. }
  11666. },
  11667. back: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(90, "lb"),
  11670. name: "Back",
  11671. image: {
  11672. source: "./media/characters/mirja/back.svg",
  11673. extra: 953 / 917,
  11674. bottom: 0.017
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "\"Incognito\"",
  11681. height: math.unit(3, "meters")
  11682. },
  11683. {
  11684. name: "Strolling Size",
  11685. height: math.unit(15, "km")
  11686. },
  11687. {
  11688. name: "Larger Strolling Size",
  11689. height: math.unit(400, "km")
  11690. },
  11691. {
  11692. name: "Preferred Size",
  11693. height: math.unit(5000, "km")
  11694. },
  11695. {
  11696. name: "True Size",
  11697. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11698. default: true
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Nightraver" },
  11704. {
  11705. front: {
  11706. height: math.unit(15, "feet"),
  11707. weight: math.unit(880, "kg"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/nightraver/front.svg",
  11711. extra: 2444 / 2160,
  11712. bottom: 0.027
  11713. }
  11714. },
  11715. back: {
  11716. height: math.unit(15, "feet"),
  11717. weight: math.unit(880, "kg"),
  11718. name: "Back",
  11719. image: {
  11720. source: "./media/characters/nightraver/back.svg",
  11721. extra: 2309 / 2180,
  11722. bottom: 0.005
  11723. }
  11724. },
  11725. sole: {
  11726. height: math.unit(2.878, "feet"),
  11727. name: "Sole",
  11728. image: {
  11729. source: "./media/characters/nightraver/sole.svg"
  11730. }
  11731. },
  11732. foot: {
  11733. height: math.unit(2.285, "feet"),
  11734. name: "Foot",
  11735. image: {
  11736. source: "./media/characters/nightraver/foot.svg"
  11737. }
  11738. },
  11739. maw: {
  11740. height: math.unit(2.67, "feet"),
  11741. name: "Maw",
  11742. image: {
  11743. source: "./media/characters/nightraver/maw.svg"
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(1, "cm")
  11751. },
  11752. {
  11753. name: "Normal",
  11754. height: math.unit(15, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Macro",
  11759. height: math.unit(300, "feet")
  11760. },
  11761. {
  11762. name: "Megamacro",
  11763. height: math.unit(300, "miles")
  11764. },
  11765. {
  11766. name: "Gigamacro",
  11767. height: math.unit(10000, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Arc" },
  11773. {
  11774. side: {
  11775. height: math.unit(2, "inches"),
  11776. weight: math.unit(5, "grams"),
  11777. name: "Side",
  11778. image: {
  11779. source: "./media/characters/arc/side.svg"
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(2, "inches"),
  11787. default: true
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Nebula Shahar" },
  11793. {
  11794. front: {
  11795. height: math.unit(1.1938, "meters"),
  11796. weight: math.unit(54, "kg"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/nebula-shahar/front.svg",
  11800. extra: 1642 / 1436,
  11801. bottom: 0.06
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Megamicro",
  11808. height: math.unit(0.3, "mm")
  11809. },
  11810. {
  11811. name: "Micro",
  11812. height: math.unit(3, "cm")
  11813. },
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(138, "cm"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(30, "m")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Shayla" },
  11827. {
  11828. front: {
  11829. height: math.unit(5.24, "feet"),
  11830. weight: math.unit(150, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/shayla/front.svg",
  11834. extra: 1512 / 1414,
  11835. bottom: 0.01
  11836. }
  11837. },
  11838. back: {
  11839. height: math.unit(5.24, "feet"),
  11840. weight: math.unit(150, "lb"),
  11841. name: "Back",
  11842. image: {
  11843. source: "./media/characters/shayla/back.svg",
  11844. extra: 1512 / 1414
  11845. }
  11846. },
  11847. hand: {
  11848. height: math.unit(0.7781496062992126, "feet"),
  11849. name: "Hand",
  11850. image: {
  11851. source: "./media/characters/shayla/hand.svg"
  11852. }
  11853. },
  11854. foot: {
  11855. height: math.unit(1.4206036745406823, "feet"),
  11856. name: "Foot",
  11857. image: {
  11858. source: "./media/characters/shayla/foot.svg"
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(0.32, "feet")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(5.24, "feet"),
  11870. default: true
  11871. },
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(492.12, "feet")
  11875. },
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(186.41, "miles")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Pia Jr." },
  11884. {
  11885. front: {
  11886. height: math.unit(2.2, "m"),
  11887. weight: math.unit(120, "kg"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/pia-jr/front.svg",
  11891. extra: 1000 / 970,
  11892. bottom: 0.035
  11893. }
  11894. },
  11895. hand: {
  11896. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11897. name: "Hand",
  11898. image: {
  11899. source: "./media/characters/pia-jr/hand.svg"
  11900. }
  11901. },
  11902. paw: {
  11903. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11904. name: "Paw",
  11905. image: {
  11906. source: "./media/characters/pia-jr/paw.svg"
  11907. }
  11908. },
  11909. },
  11910. [
  11911. {
  11912. name: "Micro",
  11913. height: math.unit(1.2, "cm")
  11914. },
  11915. {
  11916. name: "Normal",
  11917. height: math.unit(2.2, "m"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(180, "m")
  11923. },
  11924. {
  11925. name: "Megamacro",
  11926. height: math.unit(420, "km")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Pia Sr." },
  11932. {
  11933. front: {
  11934. height: math.unit(2, "m"),
  11935. weight: math.unit(115, "kg"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/pia-sr/front.svg",
  11939. extra: 760 / 730,
  11940. bottom: 0.015
  11941. }
  11942. },
  11943. back: {
  11944. height: math.unit(2, "m"),
  11945. weight: math.unit(115, "kg"),
  11946. name: "Back",
  11947. image: {
  11948. source: "./media/characters/pia-sr/back.svg",
  11949. extra: 760 / 730,
  11950. bottom: 0.01
  11951. }
  11952. },
  11953. hand: {
  11954. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11955. name: "Hand",
  11956. image: {
  11957. source: "./media/characters/pia-sr/hand.svg"
  11958. }
  11959. },
  11960. foot: {
  11961. height: math.unit(1.83, "feet"),
  11962. name: "Foot",
  11963. image: {
  11964. source: "./media/characters/pia-sr/foot.svg"
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Micro",
  11971. height: math.unit(88, "mm")
  11972. },
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(2, "m"),
  11976. default: true
  11977. },
  11978. {
  11979. name: "Macro",
  11980. height: math.unit(200, "m")
  11981. },
  11982. {
  11983. name: "Megamacro",
  11984. height: math.unit(420, "km")
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "KIBIBYTE" },
  11990. {
  11991. front: {
  11992. height: math.unit(8 + 2 / 12, "feet"),
  11993. weight: math.unit(300, "lb"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/kibibyte/front.svg",
  11997. extra: 2221 / 2098,
  11998. bottom: 0.04
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Normal",
  12005. height: math.unit(8 + 2 / 12, "feet"),
  12006. default: true
  12007. },
  12008. {
  12009. name: "Socialable Macro",
  12010. height: math.unit(50, "feet")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(300, "feet")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(500, "miles")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Felix" },
  12024. {
  12025. front: {
  12026. height: math.unit(6, "feet"),
  12027. weight: math.unit(150, "lb"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/felix/front.svg",
  12031. extra: 762 / 722,
  12032. bottom: 0.02
  12033. }
  12034. },
  12035. frontClothed: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front (Clothed)",
  12039. image: {
  12040. source: "./media/characters/felix/front-clothed.svg",
  12041. extra: 762 / 722,
  12042. bottom: 0.02
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(6 + 8 / 12, "feet"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Macro",
  12054. height: math.unit(2600, "feet")
  12055. },
  12056. {
  12057. name: "Megamacro",
  12058. height: math.unit(450, "miles")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Tobo" },
  12064. {
  12065. front: {
  12066. height: math.unit(6 + 1 / 12, "feet"),
  12067. weight: math.unit(250, "lb"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/tobo/front.svg",
  12071. extra: 608 / 586,
  12072. bottom: 0.023
  12073. }
  12074. },
  12075. back: {
  12076. height: math.unit(6 + 1 / 12, "feet"),
  12077. weight: math.unit(250, "lb"),
  12078. name: "Back",
  12079. image: {
  12080. source: "./media/characters/tobo/back.svg",
  12081. extra: 608 / 586
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Nano",
  12088. height: math.unit(2, "nm")
  12089. },
  12090. {
  12091. name: "Megamicro",
  12092. height: math.unit(0.1, "mm")
  12093. },
  12094. {
  12095. name: "Micro",
  12096. height: math.unit(1, "inch"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Human-sized",
  12101. height: math.unit(6 + 1 / 12, "feet")
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(250, "feet")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(75, "miles")
  12110. },
  12111. {
  12112. name: "Texas-sized",
  12113. height: math.unit(750, "miles")
  12114. },
  12115. {
  12116. name: "Teramacro",
  12117. height: math.unit(50000, "miles")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Danny Kapowsky" },
  12123. {
  12124. front: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(269, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/danny-kapowsky/front.svg",
  12130. extra: 766 / 736,
  12131. bottom: 0.044
  12132. }
  12133. },
  12134. back: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(269, "lb"),
  12137. name: "Back",
  12138. image: {
  12139. source: "./media/characters/danny-kapowsky/back.svg",
  12140. extra: 797 / 760,
  12141. bottom: 0.025
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(150, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Macro+",
  12153. height: math.unit(200, "feet")
  12154. },
  12155. {
  12156. name: "Macro++",
  12157. height: math.unit(300, "feet")
  12158. },
  12159. {
  12160. name: "Macro+++",
  12161. height: math.unit(400, "feet")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Finn" },
  12167. {
  12168. side: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(170, "lb"),
  12171. name: "Side",
  12172. image: {
  12173. source: "./media/characters/finn/side.svg",
  12174. extra: 1953 / 1807,
  12175. bottom: 0.057
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(14445, "feet"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Roy" },
  12189. {
  12190. front: {
  12191. height: math.unit(5 + 6 / 12, "feet"),
  12192. weight: math.unit(125, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/roy/front.svg",
  12196. extra: 1,
  12197. bottom: 0.11
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Micro",
  12204. height: math.unit(3, "inches"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(5 + 6 / 12, "feet")
  12210. },
  12211. {
  12212. name: "Lesser Macro",
  12213. height: math.unit(60, "feet")
  12214. },
  12215. {
  12216. name: "Greater Macro",
  12217. height: math.unit(120, "feet")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Aevsivs" },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(100, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/aevsivs/front.svg",
  12230. extra: 1,
  12231. bottom: 0.03
  12232. }
  12233. },
  12234. back: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(100, "lb"),
  12237. name: "Back",
  12238. image: {
  12239. source: "./media/characters/aevsivs/back.svg"
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Micro",
  12246. height: math.unit(2, "inches"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(5, "feet")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Hildegard" },
  12257. {
  12258. front: {
  12259. height: math.unit(5 + 7 / 12, "feet"),
  12260. weight: math.unit(159, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/hildegard/front.svg",
  12264. extra: 312 / 286,
  12265. bottom: 0.005
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(5 + 7 / 12, "feet"),
  12273. default: true
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Bernard & Wilder" },
  12279. {
  12280. bernard: {
  12281. height: math.unit(2 + 7 / 12, "feet"),
  12282. weight: math.unit(66, "lb"),
  12283. name: "Bernard",
  12284. rename: true,
  12285. image: {
  12286. source: "./media/characters/bernard-wilder/bernard.svg",
  12287. extra: 192 / 128,
  12288. bottom: 0.05
  12289. }
  12290. },
  12291. wilder: {
  12292. height: math.unit(5 + 8 / 12, "feet"),
  12293. weight: math.unit(143, "lb"),
  12294. name: "Wilder",
  12295. rename: true,
  12296. image: {
  12297. source: "./media/characters/bernard-wilder/wilder.svg",
  12298. extra: 361 / 312,
  12299. bottom: 0.02
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(2 + 7 / 12, "feet"),
  12307. default: true
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Hearth" },
  12313. {
  12314. anthro: {
  12315. height: math.unit(6 + 1 / 12, "feet"),
  12316. weight: math.unit(155, "lb"),
  12317. name: "Anthro",
  12318. image: {
  12319. source: "./media/characters/hearth/anthro.svg",
  12320. extra: 260 / 250,
  12321. bottom: 0.02
  12322. }
  12323. },
  12324. feral: {
  12325. height: math.unit(3.78, "feet"),
  12326. weight: math.unit(35, "kg"),
  12327. name: "Feral",
  12328. image: {
  12329. source: "./media/characters/hearth/feral.svg",
  12330. extra: 153 / 135,
  12331. bottom: 0.03
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(6 + 1 / 12, "feet"),
  12339. default: true
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Ingrid" },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(182, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/ingrid/front.svg",
  12352. extra: 294 / 268,
  12353. bottom: 0.027
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(6, "feet"),
  12361. default: true
  12362. },
  12363. ]
  12364. ))
  12365. characterMakers.push(() => makeCharacter(
  12366. { name: "Malgam" },
  12367. {
  12368. eevee: {
  12369. height: math.unit(2 + 10 / 12, "feet"),
  12370. weight: math.unit(86, "lb"),
  12371. name: "Malgam",
  12372. image: {
  12373. source: "./media/characters/malgam/eevee.svg",
  12374. extra: 218 / 180,
  12375. bottom: 0.2
  12376. }
  12377. },
  12378. sylveon: {
  12379. height: math.unit(4, "feet"),
  12380. weight: math.unit(101, "lb"),
  12381. name: "Future Malgam",
  12382. rename: true,
  12383. image: {
  12384. source: "./media/characters/malgam/sylveon.svg",
  12385. extra: 371 / 325,
  12386. bottom: 0.015
  12387. }
  12388. },
  12389. gigantamax: {
  12390. height: math.unit(50, "feet"),
  12391. name: "Gigantamax Malgam",
  12392. rename: true,
  12393. image: {
  12394. source: "./media/characters/malgam/gigantamax.svg"
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(2 + 10 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Fleur" },
  12408. {
  12409. front: {
  12410. height: math.unit(5 + 11 / 12, "feet"),
  12411. weight: math.unit(188, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/fleur/front.svg",
  12415. extra: 309 / 283,
  12416. bottom: 0.007
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(5 + 11 / 12, "feet"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Jude" },
  12430. {
  12431. front: {
  12432. height: math.unit(5 + 4 / 12, "feet"),
  12433. weight: math.unit(122, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/jude/front.svg",
  12437. extra: 288 / 273,
  12438. bottom: 0.03
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(5 + 4 / 12, "feet"),
  12446. default: true
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Seara" },
  12452. {
  12453. front: {
  12454. height: math.unit(5 + 11 / 12, "feet"),
  12455. weight: math.unit(190, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/seara/front.svg",
  12459. extra: 1,
  12460. bottom: 0.05
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(5 + 11 / 12, "feet"),
  12468. default: true
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Caspian" },
  12474. {
  12475. front: {
  12476. height: math.unit(16 + 5 / 12, "feet"),
  12477. weight: math.unit(524, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/caspian/front.svg",
  12481. extra: 1,
  12482. bottom: 0.04
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(16 + 5 / 12, "feet"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Mika" },
  12496. {
  12497. front: {
  12498. height: math.unit(5 + 7 / 12, "feet"),
  12499. weight: math.unit(170, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/mika/front.svg",
  12503. extra: 1,
  12504. bottom: 0.016
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(5 + 7 / 12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Sol" },
  12518. {
  12519. front: {
  12520. height: math.unit(6 + 2 / 12, "feet"),
  12521. weight: math.unit(268, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/sol/front.svg",
  12525. extra: 247 / 231,
  12526. bottom: 0.05
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 2 / 12, "feet"),
  12534. default: true
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Umiko" },
  12540. {
  12541. buizel: {
  12542. height: math.unit(2 + 5 / 12, "feet"),
  12543. weight: math.unit(87, "lb"),
  12544. name: "Buizel",
  12545. image: {
  12546. source: "./media/characters/umiko/buizel.svg",
  12547. extra: 172 / 157,
  12548. bottom: 0.01
  12549. }
  12550. },
  12551. floatzel: {
  12552. height: math.unit(5 + 9 / 12, "feet"),
  12553. weight: math.unit(250, "lb"),
  12554. name: "Floatzel",
  12555. image: {
  12556. source: "./media/characters/umiko/floatzel.svg",
  12557. extra: 262 / 248
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(2 + 5 / 12, "feet"),
  12565. default: true
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Iliac" },
  12571. {
  12572. front: {
  12573. height: math.unit(6 + 2 / 12, "feet"),
  12574. weight: math.unit(146, "lb"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/iliac/front.svg",
  12578. extra: 389 / 365,
  12579. bottom: 0.035
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(6 + 2 / 12, "feet"),
  12587. default: true
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Topaz" },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(170, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/topaz/front.svg",
  12600. extra: 317 / 303,
  12601. bottom: 0.055
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(6, "feet"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Gabriel" },
  12615. {
  12616. front: {
  12617. height: math.unit(5 + 11 / 12, "feet"),
  12618. weight: math.unit(144, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/gabriel/front.svg",
  12622. extra: 285 / 262,
  12623. bottom: 0.004
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(5 + 11 / 12, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Tempest (Suicune)" },
  12637. {
  12638. side: {
  12639. height: math.unit(6 + 5 / 12, "feet"),
  12640. weight: math.unit(300, "lb"),
  12641. name: "Side",
  12642. image: {
  12643. source: "./media/characters/tempest-suicune/side.svg",
  12644. extra: 195 / 154,
  12645. bottom: 0.04
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(6 + 5 / 12, "feet"),
  12653. default: true
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Vulcan" },
  12659. {
  12660. front: {
  12661. height: math.unit(7 + 2 / 12, "feet"),
  12662. weight: math.unit(322, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/vulcan/front.svg",
  12666. extra: 154 / 147,
  12667. bottom: 0.04
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(7 + 2 / 12, "feet"),
  12675. default: true
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Gault" },
  12681. {
  12682. front: {
  12683. height: math.unit(5 + 10 / 12, "feet"),
  12684. weight: math.unit(264, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/gault/front.svg",
  12688. extra: 161 / 140,
  12689. bottom: 0.028
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(5 + 10 / 12, "feet"),
  12697. default: true
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Shard" },
  12703. {
  12704. front: {
  12705. height: math.unit(6, "feet"),
  12706. weight: math.unit(150, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/shard/front.svg",
  12710. extra: 273 / 238,
  12711. bottom: 0.02
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(3 + 6 / 12, "feet"),
  12719. default: true
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Ashe" },
  12725. {
  12726. front: {
  12727. height: math.unit(5 + 11 / 12, "feet"),
  12728. weight: math.unit(146, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/ashe/front.svg",
  12732. extra: 400 / 373,
  12733. bottom: 0.01
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(5 + 11 / 12, "feet"),
  12741. default: true
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Beatrix" },
  12747. {
  12748. front: {
  12749. height: math.unit(5 + 5 / 12, "feet"),
  12750. weight: math.unit(135, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/beatrix/front.svg",
  12754. extra: 392 / 379,
  12755. bottom: 0.01
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(6, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Ignatius" },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/ignatius/front.svg",
  12776. extra: 245 / 222,
  12777. bottom: 0.01
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(5 + 5 / 12, "feet"),
  12785. default: true
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Mei Li" },
  12791. {
  12792. front: {
  12793. height: math.unit(6 + 2 / 12, "feet"),
  12794. weight: math.unit(138, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/mei-li/front.svg",
  12798. extra: 237 / 229,
  12799. bottom: 0.03
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Normal",
  12806. height: math.unit(6 + 2 / 12, "feet"),
  12807. default: true
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Puru" },
  12813. {
  12814. front: {
  12815. height: math.unit(2 + 4 / 12, "feet"),
  12816. weight: math.unit(62, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/puru/front.svg",
  12820. extra: 206 / 149,
  12821. bottom: 0.06
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(2 + 4 / 12, "feet"),
  12829. default: true
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Kee" },
  12835. {
  12836. taur: {
  12837. height: math.unit(11, "feet"),
  12838. weight: math.unit(500, "lb"),
  12839. name: "Taur",
  12840. image: {
  12841. source: "./media/characters/kee/taur.svg",
  12842. extra: 1,
  12843. bottom: 0.04
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(11, "feet"),
  12851. default: true
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Cobalt (Dracha)" },
  12857. {
  12858. anthro: {
  12859. height: math.unit(7, "feet"),
  12860. weight: math.unit(190, "lb"),
  12861. name: "Anthro",
  12862. image: {
  12863. source: "./media/characters/cobalt-dracha/anthro.svg",
  12864. extra: 231 / 225,
  12865. bottom: 0.04
  12866. }
  12867. },
  12868. feral: {
  12869. height: math.unit(9 + 7 / 12, "feet"),
  12870. weight: math.unit(294, "lb"),
  12871. name: "Feral",
  12872. image: {
  12873. source: "./media/characters/cobalt-dracha/feral.svg",
  12874. extra: 692 / 633,
  12875. bottom: 0.05
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(7, "feet"),
  12883. default: true
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Java" },
  12889. {
  12890. fallen: {
  12891. height: math.unit(11 + 8 / 12, "feet"),
  12892. weight: math.unit(485, "lb"),
  12893. name: "Java (Fallen)",
  12894. rename: true,
  12895. image: {
  12896. source: "./media/characters/java/fallen.svg",
  12897. extra: 226 / 208,
  12898. bottom: 0.005
  12899. }
  12900. },
  12901. godkin: {
  12902. height: math.unit(10 + 6 / 12, "feet"),
  12903. weight: math.unit(328, "lb"),
  12904. name: "Java (Godkin)",
  12905. rename: true,
  12906. image: {
  12907. source: "./media/characters/java/godkin.svg",
  12908. extra: 270 / 262,
  12909. bottom: 0.02
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(11 + 8 / 12, "feet"),
  12917. default: true
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Skoll" },
  12923. {
  12924. front: {
  12925. height: math.unit(7 + 8 / 12, "feet"),
  12926. weight: math.unit(320, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/skoll/front.svg",
  12930. extra: 232 / 220,
  12931. bottom: 0.02
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(7 + 8 / 12, "feet"),
  12939. default: true
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Purna" },
  12945. {
  12946. front: {
  12947. height: math.unit(5 + 9 / 12, "feet"),
  12948. weight: math.unit(170, "lb"),
  12949. name: "Front",
  12950. image: {
  12951. source: "./media/characters/purna/front.svg",
  12952. extra: 239 / 229,
  12953. bottom: 0.01
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Normal",
  12960. height: math.unit(5 + 9 / 12, "feet"),
  12961. default: true
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Kuva" },
  12967. {
  12968. front: {
  12969. height: math.unit(5 + 9 / 12, "feet"),
  12970. weight: math.unit(142, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/kuva/front.svg",
  12974. extra: 281 / 271,
  12975. bottom: 0.006
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(5 + 9 / 12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Embra" },
  12989. {
  12990. anthro: {
  12991. height: math.unit(9 + 2 / 12, "feet"),
  12992. weight: math.unit(270, "lb"),
  12993. name: "Anthro",
  12994. image: {
  12995. source: "./media/characters/embra/anthro.svg",
  12996. extra: 200 / 187,
  12997. bottom: 0.02
  12998. }
  12999. },
  13000. feral: {
  13001. height: math.unit(18 + 8 / 12, "feet"),
  13002. weight: math.unit(576, "lb"),
  13003. name: "Feral",
  13004. image: {
  13005. source: "./media/characters/embra/feral.svg",
  13006. extra: 152 / 137,
  13007. bottom: 0.037
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Normal",
  13014. height: math.unit(9 + 2 / 12, "feet"),
  13015. default: true
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Grottos" },
  13021. {
  13022. anthro: {
  13023. height: math.unit(10 + 9 / 12, "feet"),
  13024. weight: math.unit(224, "lb"),
  13025. name: "Anthro",
  13026. image: {
  13027. source: "./media/characters/grottos/anthro.svg",
  13028. extra: 350 / 332,
  13029. bottom: 0.045
  13030. }
  13031. },
  13032. feral: {
  13033. height: math.unit(20 + 7 / 12, "feet"),
  13034. weight: math.unit(629, "lb"),
  13035. name: "Feral",
  13036. image: {
  13037. source: "./media/characters/grottos/feral.svg",
  13038. extra: 207 / 190,
  13039. bottom: 0.05
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(10 + 9 / 12, "feet"),
  13047. default: true
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Frifna" },
  13053. {
  13054. anthro: {
  13055. height: math.unit(9 + 6 / 12, "feet"),
  13056. weight: math.unit(298, "lb"),
  13057. name: "Anthro",
  13058. image: {
  13059. source: "./media/characters/frifna/anthro.svg",
  13060. extra: 282 / 269,
  13061. bottom: 0.015
  13062. }
  13063. },
  13064. feral: {
  13065. height: math.unit(16 + 2 / 12, "feet"),
  13066. weight: math.unit(624, "lb"),
  13067. name: "Feral",
  13068. image: {
  13069. source: "./media/characters/frifna/feral.svg"
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(9 + 6 / 12, "feet"),
  13077. default: true
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Elise" },
  13083. {
  13084. front: {
  13085. height: math.unit(6 + 2 / 12, "feet"),
  13086. weight: math.unit(168, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/elise/front.svg",
  13090. extra: 276 / 271
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(6 + 2 / 12, "feet"),
  13098. default: true
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Glade" },
  13104. {
  13105. front: {
  13106. height: math.unit(5 + 10 / 12, "feet"),
  13107. weight: math.unit(210, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/glade/front.svg",
  13111. extra: 258 / 247,
  13112. bottom: 0.008
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Normal",
  13119. height: math.unit(5 + 10 / 12, "feet"),
  13120. default: true
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Rina" },
  13126. {
  13127. front: {
  13128. height: math.unit(5 + 10 / 12, "feet"),
  13129. weight: math.unit(129, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/rina/front.svg",
  13133. extra: 266 / 255,
  13134. bottom: 0.005
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(5 + 10 / 12, "feet"),
  13142. default: true
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Veronica" },
  13148. {
  13149. front: {
  13150. height: math.unit(6 + 1 / 12, "feet"),
  13151. weight: math.unit(192, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/veronica/front.svg",
  13155. extra: 319 / 309,
  13156. bottom: 0.005
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(6 + 1 / 12, "feet"),
  13164. default: true
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Braxton" },
  13170. {
  13171. front: {
  13172. height: math.unit(9 + 3 / 12, "feet"),
  13173. weight: math.unit(1100, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/braxton/front.svg",
  13177. extra: 1057 / 984,
  13178. bottom: 0.05
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(9 + 3 / 12, "feet")
  13186. },
  13187. {
  13188. name: "Giant",
  13189. height: math.unit(300, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(700, "feet")
  13195. },
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(6000, "feet")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Blue Feyonics" },
  13204. {
  13205. front: {
  13206. height: math.unit(6 + 7 / 12, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/blue-feyonics/front.svg",
  13211. extra: 1403 / 1306,
  13212. bottom: 0.047
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(6 + 7 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Maxwell" },
  13226. {
  13227. front: {
  13228. height: math.unit(1.8, "meters"),
  13229. weight: math.unit(60, "kg"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/maxwell/front.svg",
  13233. extra: 2060 / 1873
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(1, "mm")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(1.8, "meter"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(30, "meters")
  13250. },
  13251. {
  13252. name: "Megamacro",
  13253. height: math.unit(10, "km")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Jack" },
  13259. {
  13260. front: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(150, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/jack/front.svg",
  13266. extra: 1754 / 1640,
  13267. bottom: 0.01
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(80000, "feet"),
  13275. default: true
  13276. },
  13277. {
  13278. name: "Max size",
  13279. height: math.unit(10, "lightyears")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Cafat" },
  13285. {
  13286. upright: {
  13287. height: math.unit(7, "feet"),
  13288. weight: math.unit(170, "lb"),
  13289. name: "Upright",
  13290. image: {
  13291. source: "./media/characters/cafat/upright.svg",
  13292. bottom: 0.01
  13293. }
  13294. },
  13295. uprightFull: {
  13296. height: math.unit(7, "feet"),
  13297. weight: math.unit(170, "lb"),
  13298. name: "Upright (Full)",
  13299. image: {
  13300. source: "./media/characters/cafat/upright-full.svg",
  13301. bottom: 0.01
  13302. }
  13303. },
  13304. side: {
  13305. height: math.unit(5, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Side",
  13308. image: {
  13309. source: "./media/characters/cafat/side.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Small",
  13316. height: math.unit(7, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Large",
  13321. height: math.unit(15.5, "feet")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Verin Raharra" },
  13327. {
  13328. front: {
  13329. height: math.unit(6, "feet"),
  13330. weight: math.unit(150, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/verin-raharra/front.svg",
  13334. extra: 5019 / 4835,
  13335. bottom: 0.023
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(7 + 5 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Upsized",
  13347. height: math.unit(20, "feet")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Nakata" },
  13353. {
  13354. front: {
  13355. height: math.unit(7, "feet"),
  13356. weight: math.unit(230, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/nakata/front.svg",
  13360. extra: 1.005,
  13361. bottom: 0.01
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(7, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Big",
  13373. height: math.unit(14, "feet")
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(400, "feet")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Lily" },
  13383. {
  13384. front: {
  13385. height: math.unit(4.91, "feet"),
  13386. weight: math.unit(100, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/lily/front.svg",
  13390. extra: 1585 / 1415,
  13391. bottom: 0.02
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(4.91, "feet"),
  13399. default: true
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Sheila" },
  13405. {
  13406. laying: {
  13407. height: math.unit(4 + 4 / 12, "feet"),
  13408. weight: math.unit(600, "lb"),
  13409. name: "Laying",
  13410. image: {
  13411. source: "./media/characters/sheila/laying.svg",
  13412. extra: 1333 / 1265,
  13413. bottom: 0.16
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(4 + 4 / 12, "feet"),
  13421. default: true
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Sax" },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(190, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/sax/front.svg",
  13434. extra: 1187 / 973,
  13435. bottom: 0.042
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Micro",
  13442. height: math.unit(4, "inches"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Pandora" },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/pandora/front.svg",
  13456. extra: 2720 / 2556,
  13457. bottom: 0.015
  13458. }
  13459. },
  13460. back: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Back",
  13464. image: {
  13465. source: "./media/characters/pandora/back.svg",
  13466. extra: 2720 / 2556,
  13467. bottom: 0.01
  13468. }
  13469. },
  13470. beans: {
  13471. height: math.unit(6 / 8, "feet"),
  13472. name: "Beans",
  13473. image: {
  13474. source: "./media/characters/pandora/beans.svg"
  13475. }
  13476. },
  13477. skirt: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Skirt",
  13481. image: {
  13482. source: "./media/characters/pandora/skirt.svg",
  13483. extra: 1622 / 1525,
  13484. bottom: 0.015
  13485. }
  13486. },
  13487. hoodie: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Hoodie",
  13491. image: {
  13492. source: "./media/characters/pandora/hoodie.svg",
  13493. extra: 1622 / 1525,
  13494. bottom: 0.015
  13495. }
  13496. },
  13497. casual: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Casual",
  13501. image: {
  13502. source: "./media/characters/pandora/casual.svg",
  13503. extra: 1622 / 1525,
  13504. bottom: 0.015
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(6, "feet")
  13512. },
  13513. {
  13514. name: "Big Steppy",
  13515. height: math.unit(1, "km"),
  13516. default: true
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Venio Darcony" },
  13522. {
  13523. side: {
  13524. height: math.unit(10, "feet"),
  13525. weight: math.unit(800, "kg"),
  13526. name: "Side",
  13527. image: {
  13528. source: "./media/characters/venio-darcony/side.svg",
  13529. extra: 1373 / 1003,
  13530. bottom: 0.037
  13531. }
  13532. },
  13533. front: {
  13534. height: math.unit(19, "feet"),
  13535. weight: math.unit(800, "kg"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/venio-darcony/front.svg"
  13539. }
  13540. },
  13541. back: {
  13542. height: math.unit(19, "feet"),
  13543. weight: math.unit(800, "kg"),
  13544. name: "Back",
  13545. image: {
  13546. source: "./media/characters/venio-darcony/back.svg"
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Normal",
  13553. height: math.unit(10, "feet")
  13554. },
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(130, "feet"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Macro+",
  13562. height: math.unit(240, "feet")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Veski" },
  13568. {
  13569. front: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/veski/front.svg",
  13575. extra: 1299 / 1225,
  13576. bottom: 0.04
  13577. }
  13578. },
  13579. back: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(150, "lb"),
  13582. name: "Back",
  13583. image: {
  13584. source: "./media/characters/veski/back.svg",
  13585. extra: 1299 / 1225,
  13586. bottom: 0.008
  13587. }
  13588. },
  13589. maw: {
  13590. height: math.unit(1.5 * 1.21, "feet"),
  13591. name: "Maw",
  13592. image: {
  13593. source: "./media/characters/veski/maw.svg"
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(2, "km"),
  13601. default: true
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Isabelle" },
  13607. {
  13608. front: {
  13609. height: math.unit(5 + 7 / 12, "feet"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/isabelle/front.svg",
  13613. extra: 2130 / 1976,
  13614. bottom: 0.05
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Supermicro",
  13621. height: math.unit(10, "micrometers")
  13622. },
  13623. {
  13624. name: "Micro",
  13625. height: math.unit(1, "inch")
  13626. },
  13627. {
  13628. name: "Tiny",
  13629. height: math.unit(5, "inches")
  13630. },
  13631. {
  13632. name: "Standard",
  13633. height: math.unit(5 + 7 / 12, "inches")
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(80, "meters"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(250, "meters")
  13643. },
  13644. {
  13645. name: "Gigamacro",
  13646. height: math.unit(5, "km")
  13647. },
  13648. {
  13649. name: "Cosmic",
  13650. height: math.unit(2.5e6, "miles")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Hanzo" },
  13656. {
  13657. front: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/hanzo/front.svg",
  13663. extra: 374 / 344,
  13664. bottom: 0.02
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(8, "feet"),
  13672. default: true
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Anna" },
  13678. {
  13679. front: {
  13680. height: math.unit(7, "feet"),
  13681. weight: math.unit(130, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/anna/front.svg",
  13685. extra: 169 / 145,
  13686. bottom: 0.06
  13687. }
  13688. },
  13689. full: {
  13690. height: math.unit(4.96, "feet"),
  13691. weight: math.unit(220, "lb"),
  13692. name: "Full",
  13693. image: {
  13694. source: "./media/characters/anna/full.svg",
  13695. extra: 138 / 114,
  13696. bottom: 0.15
  13697. }
  13698. },
  13699. tongue: {
  13700. height: math.unit(2.53, "feet"),
  13701. name: "Tongue",
  13702. image: {
  13703. source: "./media/characters/anna/tongue.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(7, "feet"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Ian Corvid" },
  13717. {
  13718. front: {
  13719. height: math.unit(7, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/ian-corvid/front.svg",
  13724. extra: 150 / 142,
  13725. bottom: 0.02
  13726. }
  13727. },
  13728. back: {
  13729. height: math.unit(7, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Back",
  13732. image: {
  13733. source: "./media/characters/ian-corvid/back.svg",
  13734. extra: 150 / 143,
  13735. bottom: 0.01
  13736. }
  13737. },
  13738. stomping: {
  13739. height: math.unit(7, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Stomping",
  13742. image: {
  13743. source: "./media/characters/ian-corvid/stomping.svg",
  13744. extra: 76 / 72
  13745. }
  13746. },
  13747. sitting: {
  13748. height: math.unit(7 / 1.8, "feet"),
  13749. weight: math.unit(150, "lb"),
  13750. name: "Sitting",
  13751. image: {
  13752. source: "./media/characters/ian-corvid/sitting.svg",
  13753. extra: 1400 / 1269,
  13754. bottom: 0.15
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Tiny Microw",
  13761. height: math.unit(1, "inch")
  13762. },
  13763. {
  13764. name: "Microw",
  13765. height: math.unit(6, "inches")
  13766. },
  13767. {
  13768. name: "Crow",
  13769. height: math.unit(7 + 1 / 12, "feet"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Macrow",
  13774. height: math.unit(176, "feet")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Natalie Kellon" },
  13780. {
  13781. front: {
  13782. height: math.unit(5 + 7 / 12, "feet"),
  13783. weight: math.unit(147, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/natalie-kellon/front.svg",
  13787. extra: 1214 / 1141,
  13788. bottom: 0.02
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Micro",
  13795. height: math.unit(1 / 16, "inch")
  13796. },
  13797. {
  13798. name: "Tiny",
  13799. height: math.unit(4, "inches")
  13800. },
  13801. {
  13802. name: "Normal",
  13803. height: math.unit(5 + 7 / 12, "feet"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Amazon",
  13808. height: math.unit(12, "feet")
  13809. },
  13810. {
  13811. name: "Giantess",
  13812. height: math.unit(160, "meters")
  13813. },
  13814. {
  13815. name: "Titaness",
  13816. height: math.unit(800, "meters")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Alluria" },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/alluria/front.svg",
  13829. extra: 806 / 738,
  13830. bottom: 0.01
  13831. }
  13832. },
  13833. side: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Side",
  13837. image: {
  13838. source: "./media/characters/alluria/side.svg",
  13839. extra: 800 / 750,
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/alluria/back.svg",
  13848. extra: 806 / 738,
  13849. }
  13850. },
  13851. frontMaid: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front (Maid)",
  13855. image: {
  13856. source: "./media/characters/alluria/front-maid.svg",
  13857. extra: 806 / 738,
  13858. bottom: 0.01
  13859. }
  13860. },
  13861. sideMaid: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Side (Maid)",
  13865. image: {
  13866. source: "./media/characters/alluria/side-maid.svg",
  13867. extra: 800 / 750,
  13868. bottom: 0.005
  13869. }
  13870. },
  13871. backMaid: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Back (Maid)",
  13875. image: {
  13876. source: "./media/characters/alluria/back-maid.svg",
  13877. extra: 806 / 738,
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Micro",
  13884. height: math.unit(6, "inches"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Kyle" },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/kyle/front.svg",
  13898. extra: 1069 / 962,
  13899. bottom: 77.228 / 1727.45
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(150, "feet"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Duncan" },
  13913. {
  13914. front: {
  13915. height: math.unit(6, "feet"),
  13916. weight: math.unit(300, "lb"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/duncan/front.svg",
  13920. extra: 1650 / 1482,
  13921. bottom: 0.05
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(100, "feet"),
  13929. default: true
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Memory" },
  13935. {
  13936. front: {
  13937. height: math.unit(5 + 4 / 12, "feet"),
  13938. weight: math.unit(220, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/memory/front.svg",
  13942. extra: 3641 / 3545,
  13943. bottom: 0.03
  13944. }
  13945. },
  13946. back: {
  13947. height: math.unit(5 + 4 / 12, "feet"),
  13948. weight: math.unit(220, "lb"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/memory/back.svg",
  13952. extra: 3641 / 3545,
  13953. bottom: 0.025
  13954. }
  13955. },
  13956. frontSkirt: {
  13957. height: math.unit(5 + 4 / 12, "feet"),
  13958. weight: math.unit(220, "lb"),
  13959. name: "Front (Skirt)",
  13960. image: {
  13961. source: "./media/characters/memory/front-skirt.svg",
  13962. extra: 3641 / 3545,
  13963. bottom: 0.03
  13964. }
  13965. },
  13966. frontDress: {
  13967. height: math.unit(5 + 4 / 12, "feet"),
  13968. weight: math.unit(220, "lb"),
  13969. name: "Front (Dress)",
  13970. image: {
  13971. source: "./media/characters/memory/front-dress.svg",
  13972. extra: 3641 / 3545,
  13973. bottom: 0.03
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Micro",
  13980. height: math.unit(6, "inches"),
  13981. default: true
  13982. },
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(5 + 4 / 12, "feet")
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Luno" },
  13991. {
  13992. front: {
  13993. height: math.unit(4 + 11 / 12, "feet"),
  13994. weight: math.unit(100, "lb"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/luno/front.svg",
  13998. extra: 1535 / 1487,
  13999. bottom: 0.03
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Micro",
  14006. height: math.unit(3, "inches")
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(4 + 11 / 12, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(300, "feet")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(700, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Jamesy" },
  14025. {
  14026. front: {
  14027. height: math.unit(6 + 2 / 12, "feet"),
  14028. weight: math.unit(170, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/jamesy/front.svg",
  14032. extra: 440 / 382,
  14033. bottom: 0.005
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Micro",
  14040. height: math.unit(3, "inches")
  14041. },
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(6 + 2 / 12, "feet"),
  14045. default: true
  14046. },
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(300, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(700, "miles")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Mark" },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(160, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/mark/front.svg",
  14066. extra: 3300 / 3100,
  14067. bottom: 136.42 / 3440.47
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(120, "meters")
  14075. },
  14076. {
  14077. name: "Bigger Macro",
  14078. height: math.unit(350, "meters")
  14079. },
  14080. {
  14081. name: "Megamacro",
  14082. height: math.unit(8, "km"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Continental",
  14087. height: math.unit(4550, "km")
  14088. },
  14089. {
  14090. name: "Planetary",
  14091. height: math.unit(65000, "km")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Mac" },
  14097. {
  14098. front: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(400, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/mac/front.svg",
  14104. extra: 1048 / 987.7,
  14105. bottom: 60 / 1107.6,
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(500, "feet"),
  14113. default: true
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Bari" },
  14119. {
  14120. front: {
  14121. height: math.unit(5 + 2 / 12, "feet"),
  14122. weight: math.unit(190, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/bari/front.svg",
  14126. extra: 3156 / 2880,
  14127. bottom: 0.03
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(5 + 2 / 12, "feet"),
  14132. weight: math.unit(190, "lb"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/bari/back.svg",
  14136. extra: 3260 / 2834,
  14137. bottom: 0.025
  14138. }
  14139. },
  14140. frontPlush: {
  14141. height: math.unit(5 + 2 / 12, "feet"),
  14142. weight: math.unit(190, "lb"),
  14143. name: "Front (Plush)",
  14144. image: {
  14145. source: "./media/characters/bari/front-plush.svg",
  14146. extra: 1112 / 1061,
  14147. bottom: 0.002
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Micro",
  14154. height: math.unit(3, "inches")
  14155. },
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(5 + 2 / 12, "feet"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Macro",
  14163. height: math.unit(20, "feet")
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Hunter Misha Raven" },
  14169. {
  14170. front: {
  14171. height: math.unit(6 + 1 / 12, "feet"),
  14172. weight: math.unit(275, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/hunter-misha-raven/front.svg"
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Mortal",
  14182. height: math.unit(6 + 1 / 12, "feet")
  14183. },
  14184. {
  14185. name: "Divine",
  14186. height: math.unit(1.12134e34, "parsecs"),
  14187. default: true
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Max Calore" },
  14193. {
  14194. front: {
  14195. height: math.unit(6 + 3 / 12, "feet"),
  14196. weight: math.unit(220, "lb"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/max-calore/front.svg",
  14200. extra: 1700 / 1648,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. back: {
  14205. height: math.unit(6 + 3 / 12, "feet"),
  14206. weight: math.unit(220, "lb"),
  14207. name: "Back",
  14208. image: {
  14209. source: "./media/characters/max-calore/back.svg",
  14210. extra: 1700 / 1648,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(6 + 3 / 12, "feet"),
  14219. default: true
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Aspen" },
  14225. {
  14226. side: {
  14227. height: math.unit(2 + 8 / 12, "feet"),
  14228. weight: math.unit(99, "lb"),
  14229. name: "Side",
  14230. image: {
  14231. source: "./media/characters/aspen/side.svg",
  14232. extra: 152 / 138,
  14233. bottom: 0.032
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(2 + 8 / 12, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Sheila (Feral Wolf)" },
  14247. {
  14248. side: {
  14249. height: math.unit(3 + 2 / 12, "feet"),
  14250. weight: math.unit(224, "lb"),
  14251. name: "Side",
  14252. image: {
  14253. source: "./media/characters/sheila-feral-wolf/side.svg",
  14254. extra: 179 / 166,
  14255. bottom: 0.03
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(3 + 2 / 12, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Michelle" },
  14269. {
  14270. side: {
  14271. height: math.unit(1 + 9 / 12, "feet"),
  14272. weight: math.unit(38, "lb"),
  14273. name: "Side",
  14274. image: {
  14275. source: "./media/characters/michelle/side.svg",
  14276. extra: 147 / 136.7,
  14277. bottom: 0.03
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(1 + 9 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Nino" },
  14291. {
  14292. front: {
  14293. height: math.unit(1 + 1 / 12, "feet"),
  14294. weight: math.unit(18, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/nino/front.svg"
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(1 + 1 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Viola" },
  14311. {
  14312. front: {
  14313. height: math.unit(1, "feet"),
  14314. weight: math.unit(16, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/viola/front.svg"
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(1, "feet"),
  14325. default: true
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Atlas" },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 5 / 12, "feet"),
  14334. weight: math.unit(580, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/atlas/front.svg",
  14338. extra: 298.5 / 290,
  14339. bottom: 0.015
  14340. }
  14341. },
  14342. },
  14343. [
  14344. {
  14345. name: "Normal",
  14346. height: math.unit(6 + 5 / 12, "feet"),
  14347. default: true
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Davy" },
  14353. {
  14354. side: {
  14355. height: math.unit(1 + 10 / 12, "feet"),
  14356. weight: math.unit(25, "lb"),
  14357. name: "Side",
  14358. image: {
  14359. source: "./media/characters/davy/side.svg",
  14360. extra: 200 / 170,
  14361. bottom: 0.01
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(1 + 10 / 12, "feet"),
  14369. default: true
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Fiona" },
  14375. {
  14376. side: {
  14377. height: math.unit(4 + 8 / 12, "feet"),
  14378. weight: math.unit(166, "lb"),
  14379. name: "Side",
  14380. image: {
  14381. source: "./media/characters/fiona/side.svg",
  14382. extra: 232 / 220,
  14383. bottom: 0.03
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(4 + 8 / 12, "feet"),
  14391. default: true
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Lyla" },
  14397. {
  14398. front: {
  14399. height: math.unit(2, "feet"),
  14400. weight: math.unit(62, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/lyla/front.svg",
  14404. bottom: 0.1
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(2, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Perseus" },
  14418. {
  14419. side: {
  14420. height: math.unit(1.8, "feet"),
  14421. weight: math.unit(44, "lb"),
  14422. name: "Side",
  14423. image: {
  14424. source: "./media/characters/perseus/side.svg",
  14425. bottom: 0.21
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(1.8, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Remus" },
  14439. {
  14440. side: {
  14441. height: math.unit(4 + 2 / 12, "feet"),
  14442. weight: math.unit(20, "lb"),
  14443. name: "Side",
  14444. image: {
  14445. source: "./media/characters/remus/side.svg"
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(4 + 2 / 12, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Raf" },
  14459. {
  14460. front: {
  14461. height: math.unit(4 + 11 / 12, "feet"),
  14462. weight: math.unit(114, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/raf/front.svg",
  14466. bottom: 0.01
  14467. }
  14468. },
  14469. side: {
  14470. height: math.unit(4 + 11 / 12, "feet"),
  14471. weight: math.unit(114, "lb"),
  14472. name: "Side",
  14473. image: {
  14474. source: "./media/characters/raf/side.svg",
  14475. bottom: 0.005
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Micro",
  14482. height: math.unit(2, "inches")
  14483. },
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(4 + 11 / 12, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(70, "feet")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Liam Einarr" },
  14497. {
  14498. front: {
  14499. height: math.unit(1.5, "meters"),
  14500. weight: math.unit(68, "kg"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/liam-einarr/front.svg",
  14504. extra: 2822 / 2666
  14505. }
  14506. },
  14507. back: {
  14508. height: math.unit(1.5, "meters"),
  14509. weight: math.unit(68, "kg"),
  14510. name: "Back",
  14511. image: {
  14512. source: "./media/characters/liam-einarr/back.svg",
  14513. extra: 2822 / 2666,
  14514. bottom: 0.015
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Normal",
  14521. height: math.unit(1.5, "meters"),
  14522. default: true
  14523. },
  14524. {
  14525. name: "Macro",
  14526. height: math.unit(150, "meters")
  14527. },
  14528. {
  14529. name: "Megamacro",
  14530. height: math.unit(35, "km")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Linda" },
  14536. {
  14537. front: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(75, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/linda/front.svg",
  14543. extra: 930 / 874,
  14544. bottom: 0.004
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(6, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Caylex" },
  14558. {
  14559. front: {
  14560. height: math.unit(6 + 8 / 12, "feet"),
  14561. weight: math.unit(220, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/caylex/front.svg",
  14565. extra: 821 / 772,
  14566. bottom: 0.07
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(6 + 8 / 12, "feet"),
  14571. weight: math.unit(220, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/caylex/back.svg",
  14575. extra: 821 / 772,
  14576. bottom: 0.022
  14577. }
  14578. },
  14579. hand: {
  14580. height: math.unit(1.25, "feet"),
  14581. name: "Hand",
  14582. image: {
  14583. source: "./media/characters/caylex/hand.svg"
  14584. }
  14585. },
  14586. foot: {
  14587. height: math.unit(1.6, "feet"),
  14588. name: "Foot",
  14589. image: {
  14590. source: "./media/characters/caylex/foot.svg"
  14591. }
  14592. },
  14593. armored: {
  14594. height: math.unit(6 + 8 / 12, "feet"),
  14595. weight: math.unit(250, "lb"),
  14596. name: "Armored",
  14597. image: {
  14598. source: "./media/characters/caylex/armored.svg",
  14599. extra: 1420 / 1310,
  14600. bottom: 0.045
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(6 + 8 / 12, "feet"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Normal+",
  14612. height: math.unit(12, "feet")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Alana" },
  14618. {
  14619. front: {
  14620. height: math.unit(7 + 6 / 12, "feet"),
  14621. weight: math.unit(288, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/alana/front.svg",
  14625. extra: 679 / 653,
  14626. bottom: 22.5 / 701
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(7 + 6 / 12, "feet")
  14634. },
  14635. {
  14636. name: "Large",
  14637. height: math.unit(50, "feet")
  14638. },
  14639. {
  14640. name: "Macro",
  14641. height: math.unit(100, "feet"),
  14642. default: true
  14643. },
  14644. {
  14645. name: "Macro+",
  14646. height: math.unit(200, "feet")
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Hasani" },
  14652. {
  14653. front: {
  14654. height: math.unit(6 + 1 / 12, "feet"),
  14655. weight: math.unit(210, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/hasani/front.svg",
  14659. extra: 244 / 232,
  14660. bottom: 0.01
  14661. }
  14662. },
  14663. back: {
  14664. height: math.unit(6 + 1 / 12, "feet"),
  14665. weight: math.unit(210, "lb"),
  14666. name: "Back",
  14667. image: {
  14668. source: "./media/characters/hasani/back.svg",
  14669. extra: 244 / 232,
  14670. bottom: 0.01
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(6 + 1 / 12, "feet")
  14678. },
  14679. {
  14680. name: "Macro",
  14681. height: math.unit(175, "feet"),
  14682. default: true
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Nita" },
  14688. {
  14689. front: {
  14690. height: math.unit(1.82, "meters"),
  14691. weight: math.unit(140, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/nita/front.svg",
  14695. extra: 2473 / 2363,
  14696. bottom: 0.01
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(1.82, "m")
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(300, "m")
  14708. },
  14709. {
  14710. name: "Mistake Canon",
  14711. height: math.unit(0.5, "miles"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Big Mistake",
  14716. height: math.unit(13, "miles")
  14717. },
  14718. {
  14719. name: "Playing God",
  14720. height: math.unit(2450, "miles")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Shiriko" },
  14726. {
  14727. front: {
  14728. height: math.unit(4, "feet"),
  14729. weight: math.unit(120, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/shiriko/front.svg",
  14733. extra: 195 / 188
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Normal",
  14740. height: math.unit(4, "feet"),
  14741. default: true
  14742. },
  14743. ]
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Deja" },
  14747. {
  14748. front: {
  14749. height: math.unit(6, "feet"),
  14750. name: "front",
  14751. image: {
  14752. source: "./media/characters/deja/front.svg",
  14753. extra: 926 / 840,
  14754. bottom: 0.07
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Planck Length",
  14761. height: math.unit(1.6e-35, "meters")
  14762. },
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(30.48, "meters"),
  14766. default: true
  14767. },
  14768. {
  14769. name: "Universal",
  14770. height: math.unit(8.8e26, "meters")
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Anima" },
  14776. {
  14777. side: {
  14778. height: math.unit(8, "feet"),
  14779. weight: math.unit(6300, "lb"),
  14780. name: "Side",
  14781. image: {
  14782. source: "./media/characters/anima/side.svg",
  14783. bottom: 0.035
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(8, "feet"),
  14791. default: true
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Bianca" },
  14797. {
  14798. front: {
  14799. height: math.unit(8, "feet"),
  14800. weight: math.unit(350, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/bianca/front.svg",
  14804. extra: 234 / 225,
  14805. bottom: 0.03
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(8, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Adinia" },
  14819. {
  14820. front: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(150, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/adinia/front.svg",
  14826. extra: 1845 / 1672,
  14827. bottom: 0.02
  14828. }
  14829. },
  14830. back: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Back",
  14834. image: {
  14835. source: "./media/characters/adinia/back.svg",
  14836. extra: 1845 / 1672,
  14837. bottom: 0.002
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(11 + 5 / 12, "feet"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Lykasa" },
  14851. {
  14852. front: {
  14853. height: math.unit(3, "meters"),
  14854. weight: math.unit(200, "kg"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/lykasa/front.svg",
  14858. extra: 1076 / 976,
  14859. bottom: 0.06
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(3, "meters")
  14867. },
  14868. {
  14869. name: "Kaiju",
  14870. height: math.unit(120, "meters"),
  14871. default: true
  14872. },
  14873. {
  14874. name: "Mega Kaiju",
  14875. height: math.unit(240, "km")
  14876. },
  14877. {
  14878. name: "Giga Kaiju",
  14879. height: math.unit(400, "megameters")
  14880. },
  14881. {
  14882. name: "Tera Kaiju",
  14883. height: math.unit(800, "gigameters")
  14884. },
  14885. {
  14886. name: "Kaiju Dragon Goddess",
  14887. height: math.unit(26, "zettaparsecs")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Malfaren" },
  14893. {
  14894. side: {
  14895. height: math.unit(283 / 124 * 6, "feet"),
  14896. weight: math.unit(35000, "lb"),
  14897. name: "Side",
  14898. image: {
  14899. source: "./media/characters/malfaren/side.svg",
  14900. extra: 2500 / 1010,
  14901. bottom: 0.01
  14902. }
  14903. },
  14904. front: {
  14905. height: math.unit(22.36, "feet"),
  14906. weight: math.unit(35000, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/malfaren/front.svg",
  14910. extra: 1631 / 1476,
  14911. bottom: 0.01
  14912. }
  14913. },
  14914. maw: {
  14915. height: math.unit(6.9, "feet"),
  14916. name: "Maw",
  14917. image: {
  14918. source: "./media/characters/malfaren/maw.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Big",
  14925. height: math.unit(283 / 162 * 6, "feet"),
  14926. },
  14927. {
  14928. name: "Bigger",
  14929. height: math.unit(283 / 124 * 6, "feet")
  14930. },
  14931. {
  14932. name: "Massive",
  14933. height: math.unit(283 / 92 * 6, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "👀💦",
  14938. height: math.unit(283 / 73 * 6, "feet"),
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Kernel" },
  14944. {
  14945. front: {
  14946. height: math.unit(1.7, "m"),
  14947. weight: math.unit(70, "kg"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/kernel/front.svg",
  14951. extra: 222 / 210,
  14952. bottom: 0.007
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Nano",
  14959. height: math.unit(17, "micrometers")
  14960. },
  14961. {
  14962. name: "Micro",
  14963. height: math.unit(1.7, "mm")
  14964. },
  14965. {
  14966. name: "Small",
  14967. height: math.unit(1.7, "cm")
  14968. },
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(1.7, "m"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Jayne Folest" },
  14978. {
  14979. front: {
  14980. height: math.unit(1.75, "meters"),
  14981. weight: math.unit(65, "kg"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/jayne-folest/front.svg",
  14985. extra: 2115 / 2007,
  14986. bottom: 0.02
  14987. }
  14988. },
  14989. back: {
  14990. height: math.unit(1.75, "meters"),
  14991. weight: math.unit(65, "kg"),
  14992. name: "Back",
  14993. image: {
  14994. source: "./media/characters/jayne-folest/back.svg",
  14995. extra: 2115 / 2007,
  14996. bottom: 0.005
  14997. }
  14998. },
  14999. frontClothed: {
  15000. height: math.unit(1.75, "meters"),
  15001. weight: math.unit(65, "kg"),
  15002. name: "Front (Clothed)",
  15003. image: {
  15004. source: "./media/characters/jayne-folest/front-clothed.svg",
  15005. extra: 2115 / 2007,
  15006. bottom: 0.035
  15007. }
  15008. },
  15009. hand: {
  15010. height: math.unit(1 / 1.260, "feet"),
  15011. name: "Hand",
  15012. image: {
  15013. source: "./media/characters/jayne-folest/hand.svg"
  15014. }
  15015. },
  15016. foot: {
  15017. height: math.unit(1 / 0.918, "feet"),
  15018. name: "Foot",
  15019. image: {
  15020. source: "./media/characters/jayne-folest/foot.svg"
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Micro",
  15027. height: math.unit(4, "cm")
  15028. },
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(1.75, "meters")
  15032. },
  15033. {
  15034. name: "Macro",
  15035. height: math.unit(47.5, "meters"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Algier" },
  15042. {
  15043. front: {
  15044. height: math.unit(180, "cm"),
  15045. weight: math.unit(70, "kg"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/algier/front.svg",
  15049. extra: 596 / 572,
  15050. bottom: 0.04
  15051. }
  15052. },
  15053. back: {
  15054. height: math.unit(180, "cm"),
  15055. weight: math.unit(70, "kg"),
  15056. name: "Back",
  15057. image: {
  15058. source: "./media/characters/algier/back.svg",
  15059. extra: 596 / 572,
  15060. bottom: 0.025
  15061. }
  15062. },
  15063. frontdressed: {
  15064. height: math.unit(180, "cm"),
  15065. weight: math.unit(150, "kg"),
  15066. name: "Front-dressed",
  15067. image: {
  15068. source: "./media/characters/algier/front-dressed.svg",
  15069. extra: 596 / 572,
  15070. bottom: 0.038
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Micro",
  15077. height: math.unit(5, "cm")
  15078. },
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(180, "cm"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Macro",
  15086. height: math.unit(64, "m")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Pretzel" },
  15092. {
  15093. upright: {
  15094. height: math.unit(7, "feet"),
  15095. weight: math.unit(300, "lb"),
  15096. name: "Upright",
  15097. image: {
  15098. source: "./media/characters/pretzel/upright.svg",
  15099. extra: 534 / 522,
  15100. bottom: 0.065
  15101. }
  15102. },
  15103. sprawling: {
  15104. height: math.unit(3.75, "feet"),
  15105. weight: math.unit(300, "lb"),
  15106. name: "Sprawling",
  15107. image: {
  15108. source: "./media/characters/pretzel/sprawling.svg",
  15109. extra: 314 / 281,
  15110. bottom: 0.1
  15111. }
  15112. },
  15113. tongue: {
  15114. height: math.unit(2, "feet"),
  15115. name: "Tongue",
  15116. image: {
  15117. source: "./media/characters/pretzel/tongue.svg"
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(7, "feet"),
  15125. default: true
  15126. },
  15127. {
  15128. name: "Oversized",
  15129. height: math.unit(15, "feet")
  15130. },
  15131. {
  15132. name: "Huge",
  15133. height: math.unit(30, "feet")
  15134. },
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(250, "feet")
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Roxi" },
  15143. {
  15144. sideFront: {
  15145. height: math.unit(5 + 2 / 12, "feet"),
  15146. weight: math.unit(120, "lb"),
  15147. name: "Front Side",
  15148. image: {
  15149. source: "./media/characters/roxi/side-front.svg",
  15150. extra: 2924 / 2717,
  15151. bottom: 0.08
  15152. }
  15153. },
  15154. sideBack: {
  15155. height: math.unit(5 + 2 / 12, "feet"),
  15156. weight: math.unit(120, "lb"),
  15157. name: "Back Side",
  15158. image: {
  15159. source: "./media/characters/roxi/side-back.svg",
  15160. extra: 2904 / 2693,
  15161. bottom: 0.06
  15162. }
  15163. },
  15164. front: {
  15165. height: math.unit(5 + 2 / 12, "feet"),
  15166. weight: math.unit(120, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/roxi/front.svg",
  15170. extra: 2028 / 1907,
  15171. bottom: 0.01
  15172. }
  15173. },
  15174. frontAlt: {
  15175. height: math.unit(5 + 2 / 12, "feet"),
  15176. weight: math.unit(120, "lb"),
  15177. name: "Front (Alt)",
  15178. image: {
  15179. source: "./media/characters/roxi/front-alt.svg",
  15180. extra: 1828 / 1798,
  15181. bottom: 0.01
  15182. }
  15183. },
  15184. sitting: {
  15185. height: math.unit(2.8, "feet"),
  15186. weight: math.unit(120, "lb"),
  15187. name: "Sitting",
  15188. image: {
  15189. source: "./media/characters/roxi/sitting.svg",
  15190. extra: 2660 / 2462,
  15191. bottom: 0.1
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(5 + 2 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Shadow" },
  15205. {
  15206. side: {
  15207. height: math.unit(55, "feet"),
  15208. weight: math.unit(153, "tons"),
  15209. name: "Side",
  15210. image: {
  15211. source: "./media/characters/shadow/side.svg",
  15212. extra: 701 / 628,
  15213. bottom: 0.02
  15214. }
  15215. },
  15216. flying: {
  15217. height: math.unit(145, "feet"),
  15218. weight: math.unit(153, "tons"),
  15219. name: "Flying",
  15220. image: {
  15221. source: "./media/characters/shadow/flying.svg"
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(55, "feet"),
  15229. default: true
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Marcie" },
  15235. {
  15236. front: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(200, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/marcie/front.svg",
  15242. extra: 960 / 876,
  15243. bottom: 58 / 1017.87
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(1, "mile"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Kachina" },
  15257. {
  15258. front: {
  15259. height: math.unit(7, "feet"),
  15260. weight: math.unit(200, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/kachina/front.svg",
  15264. extra: 1290.68 / 1119,
  15265. bottom: 36.5 / 1327.18
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(7, "feet"),
  15273. default: true
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Kash" },
  15279. {
  15280. looking: {
  15281. height: math.unit(2, "meters"),
  15282. weight: math.unit(300, "kg"),
  15283. name: "Looking",
  15284. image: {
  15285. source: "./media/characters/kash/looking.svg",
  15286. extra: 474 / 344,
  15287. bottom: 0.03
  15288. }
  15289. },
  15290. side: {
  15291. height: math.unit(2, "meters"),
  15292. weight: math.unit(300, "kg"),
  15293. name: "Side",
  15294. image: {
  15295. source: "./media/characters/kash/side.svg",
  15296. extra: 302 / 251,
  15297. bottom: 0.03
  15298. }
  15299. },
  15300. front: {
  15301. height: math.unit(2, "meters"),
  15302. weight: math.unit(300, "kg"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/kash/front.svg",
  15306. extra: 495 / 360,
  15307. bottom: 0.015
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(2, "meters"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Big",
  15319. height: math.unit(3, "meters")
  15320. },
  15321. {
  15322. name: "Large",
  15323. height: math.unit(5, "meters")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Lalim" },
  15329. {
  15330. feeding: {
  15331. height: math.unit(6.7, "feet"),
  15332. weight: math.unit(350, "lb"),
  15333. name: "Feeding",
  15334. image: {
  15335. source: "./media/characters/lalim/feeding.svg",
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(6.7, "feet"),
  15343. default: true
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "De'Vout" },
  15349. {
  15350. front: {
  15351. height: math.unit(9.5, "feet"),
  15352. weight: math.unit(600, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/de'vout/front.svg",
  15356. extra: 1443 / 1328,
  15357. bottom: 0.025
  15358. }
  15359. },
  15360. back: {
  15361. height: math.unit(9.5, "feet"),
  15362. weight: math.unit(600, "lb"),
  15363. name: "Back",
  15364. image: {
  15365. source: "./media/characters/de'vout/back.svg",
  15366. extra: 1443 / 1328
  15367. }
  15368. },
  15369. frontDressed: {
  15370. height: math.unit(9.5, "feet"),
  15371. weight: math.unit(600, "lb"),
  15372. name: "Front (Dressed",
  15373. image: {
  15374. source: "./media/characters/de'vout/front-dressed.svg",
  15375. extra: 1443 / 1328,
  15376. bottom: 0.025
  15377. }
  15378. },
  15379. backDressed: {
  15380. height: math.unit(9.5, "feet"),
  15381. weight: math.unit(600, "lb"),
  15382. name: "Back (Dressed",
  15383. image: {
  15384. source: "./media/characters/de'vout/back-dressed.svg",
  15385. extra: 1443 / 1328
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(9.5, "feet"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Talana" },
  15399. {
  15400. front: {
  15401. height: math.unit(8, "feet"),
  15402. weight: math.unit(225, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/talana/front.svg",
  15406. extra: 1410 / 1300,
  15407. bottom: 0.015
  15408. }
  15409. },
  15410. frontDressed: {
  15411. height: math.unit(8, "feet"),
  15412. weight: math.unit(225, "lb"),
  15413. name: "Front (Dressed",
  15414. image: {
  15415. source: "./media/characters/talana/front-dressed.svg",
  15416. extra: 1410 / 1300,
  15417. bottom: 0.015
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(8, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Xeauvok" },
  15431. {
  15432. side: {
  15433. height: math.unit(7.2, "feet"),
  15434. weight: math.unit(150, "lb"),
  15435. name: "Side",
  15436. image: {
  15437. source: "./media/characters/xeauvok/side.svg",
  15438. extra: 1975 / 1523,
  15439. bottom: 0.07
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(7.2, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Zara" },
  15453. {
  15454. side: {
  15455. height: math.unit(10, "feet"),
  15456. weight: math.unit(900, "kg"),
  15457. name: "Side",
  15458. image: {
  15459. source: "./media/characters/zara/side.svg",
  15460. extra: 504 / 498
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(10, "feet"),
  15468. default: true
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Richard (Dragon)" },
  15474. {
  15475. side: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Side",
  15479. image: {
  15480. source: "./media/characters/richard-dragon/side.svg",
  15481. extra: 845 / 340,
  15482. bottom: 0.017
  15483. }
  15484. },
  15485. maw: {
  15486. height: math.unit(2.97, "feet"),
  15487. name: "Maw",
  15488. image: {
  15489. source: "./media/characters/richard-dragon/maw.svg"
  15490. }
  15491. },
  15492. },
  15493. [
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Richard (Smeargle)" },
  15498. {
  15499. front: {
  15500. height: math.unit(4, "feet"),
  15501. weight: math.unit(100, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/richard-smeargle/front.svg",
  15505. extra: 2952 / 2820,
  15506. bottom: 0.028
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(4, "feet"),
  15514. default: true
  15515. },
  15516. {
  15517. name: "Dynamax",
  15518. height: math.unit(20, "meters")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Klay" },
  15524. {
  15525. front: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(110, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/klay/front.svg",
  15531. extra: 962 / 883,
  15532. bottom: 0.04
  15533. }
  15534. },
  15535. back: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(110, "lb"),
  15538. name: "Back",
  15539. image: {
  15540. source: "./media/characters/klay/back.svg",
  15541. extra: 962 / 883
  15542. }
  15543. },
  15544. beans: {
  15545. height: math.unit(1.15, "feet"),
  15546. name: "Beans",
  15547. image: {
  15548. source: "./media/characters/klay/beans.svg"
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Micro",
  15555. height: math.unit(6, "inches")
  15556. },
  15557. {
  15558. name: "Mini",
  15559. height: math.unit(3, "feet")
  15560. },
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(6, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Big",
  15568. height: math.unit(25, "feet")
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(100, "feet")
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(400, "feet")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Marcus" },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(160, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/marcus/front.svg",
  15589. extra: 734 / 676,
  15590. bottom: 0.03
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Little",
  15597. height: math.unit(6, "feet")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(110, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(250, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(1000, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Claude DelRoute" },
  15616. {
  15617. front: {
  15618. height: math.unit(7, "feet"),
  15619. weight: math.unit(275, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/claude-delroute/front.svg",
  15623. extra: 230 / 214,
  15624. bottom: 0.007
  15625. }
  15626. },
  15627. side: {
  15628. height: math.unit(7, "feet"),
  15629. weight: math.unit(275, "lb"),
  15630. name: "Side",
  15631. image: {
  15632. source: "./media/characters/claude-delroute/side.svg",
  15633. extra: 222 / 214,
  15634. bottom: 0.01
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(275, "lb"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/claude-delroute/back.svg",
  15643. extra: 230 / 214,
  15644. bottom: 0.015
  15645. }
  15646. },
  15647. maw: {
  15648. height: math.unit(0.6407, "meters"),
  15649. name: "Maw",
  15650. image: {
  15651. source: "./media/characters/claude-delroute/maw.svg"
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(7, "feet"),
  15659. default: true
  15660. },
  15661. {
  15662. name: "Lorge",
  15663. height: math.unit(20, "feet")
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Dragonien" },
  15669. {
  15670. front: {
  15671. height: math.unit(8 + 4 / 12, "feet"),
  15672. weight: math.unit(600, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/dragonien/front.svg",
  15676. extra: 100 / 94,
  15677. bottom: 3.3 / 103.3445
  15678. }
  15679. },
  15680. back: {
  15681. height: math.unit(8 + 4 / 12, "feet"),
  15682. weight: math.unit(600, "lb"),
  15683. name: "Back",
  15684. image: {
  15685. source: "./media/characters/dragonien/back.svg",
  15686. extra: 776 / 746,
  15687. bottom: 6.4 / 782.0616
  15688. }
  15689. },
  15690. foot: {
  15691. height: math.unit(1.54, "feet"),
  15692. name: "Foot",
  15693. image: {
  15694. source: "./media/characters/dragonien/foot.svg",
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(8 + 4 / 12, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Macro",
  15706. height: math.unit(200, "feet")
  15707. },
  15708. {
  15709. name: "Megamacro",
  15710. height: math.unit(1, "mile")
  15711. },
  15712. {
  15713. name: "Gigamacro",
  15714. height: math.unit(1000, "miles")
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Desta" },
  15720. {
  15721. front: {
  15722. height: math.unit(5 + 2 / 12, "feet"),
  15723. weight: math.unit(110, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/desta/front.svg",
  15727. extra: 1482 / 1417
  15728. }
  15729. },
  15730. side: {
  15731. height: math.unit(5 + 2 / 12, "feet"),
  15732. weight: math.unit(110, "lb"),
  15733. name: "Side",
  15734. image: {
  15735. source: "./media/characters/desta/side.svg",
  15736. extra: 2579 / 2491,
  15737. bottom: 0.053
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Micro",
  15744. height: math.unit(6, "inches")
  15745. },
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(5 + 2 / 12, "feet"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Macro",
  15753. height: math.unit(62, "feet")
  15754. },
  15755. {
  15756. name: "Megamacro",
  15757. height: math.unit(1800, "feet")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Storm Alystar" },
  15763. {
  15764. front: {
  15765. height: math.unit(10, "feet"),
  15766. weight: math.unit(700, "lb"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/storm-alystar/front.svg",
  15770. extra: 2112 / 1898,
  15771. bottom: 0.034
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Micro",
  15778. height: math.unit(3.5, "inches")
  15779. },
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(10, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(400, "feet")
  15788. },
  15789. {
  15790. name: "Deific",
  15791. height: math.unit(60, "miles")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Ilia" },
  15797. {
  15798. front: {
  15799. height: math.unit(2.35, "meters"),
  15800. weight: math.unit(119, "kg"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/ilia/front.svg",
  15804. extra: 1285 / 1255,
  15805. bottom: 0.06
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(2.35, "meters")
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(140, "meters"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Megamacro",
  15821. height: math.unit(100, "miles")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "KingDead" },
  15827. {
  15828. front: {
  15829. height: math.unit(6 + 5 / 12, "feet"),
  15830. weight: math.unit(190, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/kingdead/front.svg",
  15834. extra: 1228 / 1177
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Micro",
  15841. height: math.unit(7, "inches")
  15842. },
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6 + 5 / 12, "feet")
  15846. },
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(150, "feet"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Megamacro",
  15854. height: math.unit(200, "miles")
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Kyrehx" },
  15860. {
  15861. front: {
  15862. height: math.unit(8, "feet"),
  15863. weight: math.unit(600, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/kyrehx/front.svg",
  15867. extra: 1195 / 1095,
  15868. bottom: 0.034
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Micro",
  15875. height: math.unit(2, "inches")
  15876. },
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(8, "feet"),
  15880. default: true
  15881. },
  15882. {
  15883. name: "Macro",
  15884. height: math.unit(255, "feet")
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Xang" },
  15890. {
  15891. front: {
  15892. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15893. weight: math.unit(184, "lb"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/xang/front.svg",
  15897. extra: 845 / 755
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(0.935 * 146, "feet")
  15910. },
  15911. {
  15912. name: "Megamacro",
  15913. height: math.unit(0.935 * 3, "miles")
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Doc Weardno" },
  15919. {
  15920. frontDressed: {
  15921. height: math.unit(5 + 7 / 12, "feet"),
  15922. weight: math.unit(140, "lb"),
  15923. name: "Front (Dressed)",
  15924. image: {
  15925. source: "./media/characters/doc-weardno/front-dressed.svg",
  15926. extra: 263 / 234
  15927. }
  15928. },
  15929. backDressed: {
  15930. height: math.unit(5 + 7 / 12, "feet"),
  15931. weight: math.unit(140, "lb"),
  15932. name: "Back (Dressed)",
  15933. image: {
  15934. source: "./media/characters/doc-weardno/back-dressed.svg",
  15935. extra: 266 / 238
  15936. }
  15937. },
  15938. front: {
  15939. height: math.unit(5 + 7 / 12, "feet"),
  15940. weight: math.unit(140, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/doc-weardno/front.svg",
  15944. extra: 254 / 233
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Micro",
  15951. height: math.unit(3, "inches")
  15952. },
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(5 + 7 / 12, "feet"),
  15956. default: true
  15957. },
  15958. {
  15959. name: "Macro",
  15960. height: math.unit(25, "feet")
  15961. },
  15962. {
  15963. name: "Megamacro",
  15964. height: math.unit(2, "miles")
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Seth Whilst" },
  15970. {
  15971. front: {
  15972. height: math.unit(6 + 2 / 12, "feet"),
  15973. weight: math.unit(153, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/seth-whilst/front.svg",
  15977. bottom: 0.07
  15978. }
  15979. },
  15980. },
  15981. [
  15982. {
  15983. name: "Micro",
  15984. height: math.unit(5, "inches")
  15985. },
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(6 + 2 / 12, "feet"),
  15989. default: true
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Pocket Jabari" },
  15995. {
  15996. front: {
  15997. height: math.unit(3, "inches"),
  15998. weight: math.unit(8, "grams"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/pocket-jabari/front.svg",
  16002. extra: 1024 / 974,
  16003. bottom: 0.039
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Minimicro",
  16010. height: math.unit(8, "mm")
  16011. },
  16012. {
  16013. name: "Micro",
  16014. height: math.unit(3, "inches"),
  16015. default: true
  16016. },
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(3, "feet")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Sapphy" },
  16025. {
  16026. front: {
  16027. height: math.unit(15, "feet"),
  16028. weight: math.unit(3280, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/sapphy/front.svg",
  16032. extra: 671 / 577,
  16033. bottom: 0.085
  16034. }
  16035. },
  16036. back: {
  16037. height: math.unit(15, "feet"),
  16038. weight: math.unit(3280, "lb"),
  16039. name: "Back",
  16040. image: {
  16041. source: "./media/characters/sapphy/back.svg",
  16042. extra: 631 / 607,
  16043. bottom: 0.045
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(15, "feet")
  16051. },
  16052. {
  16053. name: "Casual Macro",
  16054. height: math.unit(120, "feet")
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(2150, "feet"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(8, "miles")
  16064. },
  16065. {
  16066. name: "Galaxy Mom",
  16067. height: math.unit(6, "megalightyears")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Kiro" },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(170, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/kiro/front.svg",
  16080. extra: 1064 / 1012,
  16081. bottom: 0.052
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Micro",
  16088. height: math.unit(6, "inches")
  16089. },
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6, "feet"),
  16093. default: true
  16094. },
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(72, "feet")
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Irishfox" },
  16103. {
  16104. front: {
  16105. height: math.unit(5 + 9 / 12, "feet"),
  16106. weight: math.unit(175, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/irishfox/front.svg",
  16110. extra: 1912 / 1680,
  16111. bottom: 0.02
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Nano",
  16118. height: math.unit(1, "mm")
  16119. },
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(2, "inches")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5 + 9 / 12, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(45, "feet")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Aronai Sieyes" },
  16137. {
  16138. front: {
  16139. height: math.unit(6 + 1 / 12, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/aronai-sieyes/front.svg",
  16144. extra: 1556 / 1480,
  16145. bottom: 0.015
  16146. }
  16147. },
  16148. side: {
  16149. height: math.unit(6 + 1 / 12, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Side",
  16152. image: {
  16153. source: "./media/characters/aronai-sieyes/side.svg",
  16154. extra: 1433 / 1390,
  16155. bottom: 0.0393
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(6 + 1 / 12, "feet"),
  16160. weight: math.unit(150, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/aronai-sieyes/back.svg",
  16164. extra: 1544 / 1494,
  16165. bottom: 0.02
  16166. }
  16167. },
  16168. frontClothed: {
  16169. height: math.unit(6 + 1 / 12, "feet"),
  16170. weight: math.unit(150, "lb"),
  16171. name: "Front (Clothed)",
  16172. image: {
  16173. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16174. extra: 1582 / 1527
  16175. }
  16176. },
  16177. feral: {
  16178. height: math.unit(18, "feet"),
  16179. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16180. name: "Feral",
  16181. image: {
  16182. source: "./media/characters/aronai-sieyes/feral.svg",
  16183. extra: 1530 / 1240,
  16184. bottom: 0.035
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Micro",
  16191. height: math.unit(2, "inches")
  16192. },
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(6 + 1 / 12, "feet"),
  16196. default: true
  16197. }
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Xuna" },
  16202. {
  16203. front: {
  16204. height: math.unit(12, "feet"),
  16205. weight: math.unit(410, "kg"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/xuna/front.svg",
  16209. extra: 2184 / 1980
  16210. }
  16211. },
  16212. side: {
  16213. height: math.unit(12, "feet"),
  16214. weight: math.unit(410, "kg"),
  16215. name: "Side",
  16216. image: {
  16217. source: "./media/characters/xuna/side.svg",
  16218. extra: 2184 / 1980
  16219. }
  16220. },
  16221. back: {
  16222. height: math.unit(12, "feet"),
  16223. weight: math.unit(410, "kg"),
  16224. name: "Back",
  16225. image: {
  16226. source: "./media/characters/xuna/back.svg",
  16227. extra: 2184 / 1980
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Nano glow",
  16234. height: math.unit(10, "nm")
  16235. },
  16236. {
  16237. name: "Micro floof",
  16238. height: math.unit(0.3, "m")
  16239. },
  16240. {
  16241. name: "Huggable softy boi",
  16242. height: math.unit(3.6576, "m"),
  16243. default: true
  16244. },
  16245. {
  16246. name: "Admirable floof",
  16247. height: math.unit(80, "meters")
  16248. },
  16249. {
  16250. name: "Gentle macro",
  16251. height: math.unit(300, "meters")
  16252. },
  16253. {
  16254. name: "Very careful floof",
  16255. height: math.unit(3200, "meters")
  16256. },
  16257. {
  16258. name: "The mega floof",
  16259. height: math.unit(36000, "meters")
  16260. },
  16261. {
  16262. name: "Giga-fur-Wicker",
  16263. height: math.unit(4800000, "meters")
  16264. },
  16265. {
  16266. name: "Licky world",
  16267. height: math.unit(20000000, "meters")
  16268. },
  16269. {
  16270. name: "Floofy cyan sun",
  16271. height: math.unit(1500000000, "meters")
  16272. },
  16273. {
  16274. name: "Milky Wicker",
  16275. height: math.unit(1000000000000000000000, "meters")
  16276. },
  16277. {
  16278. name: "The observing Wicker",
  16279. height: math.unit(999999999999999999999999999, "meters")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Arokha Sieyes" },
  16285. {
  16286. front: {
  16287. height: math.unit(5 + 9 / 12, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/arokha-sieyes/front.svg",
  16292. extra: 1425 / 1284,
  16293. bottom: 0.05
  16294. }
  16295. },
  16296. },
  16297. [
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(5 + 9 / 12, "feet")
  16301. },
  16302. {
  16303. name: "Macro",
  16304. height: math.unit(30, "meters"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Arokh Sieyes" },
  16311. {
  16312. front: {
  16313. height: math.unit(6, "feet"),
  16314. weight: math.unit(180, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/arokh-sieyes/front.svg",
  16318. extra: 1830 / 1769,
  16319. bottom: 0.01
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(6, "feet")
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(30, "meters"),
  16331. default: true
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Goldeneye" },
  16337. {
  16338. side: {
  16339. height: math.unit(13 + 1 / 12, "feet"),
  16340. weight: math.unit(8.5, "tonnes"),
  16341. name: "Side",
  16342. image: {
  16343. source: "./media/characters/goldeneye/side.svg",
  16344. extra: 1182 / 778,
  16345. bottom: 0.067
  16346. }
  16347. },
  16348. paw: {
  16349. height: math.unit(3.4, "feet"),
  16350. name: "Paw",
  16351. image: {
  16352. source: "./media/characters/goldeneye/paw.svg"
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(13 + 1 / 12, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Leonardo Lycheborne" },
  16366. {
  16367. front: {
  16368. height: math.unit(6 + 1 / 12, "feet"),
  16369. weight: math.unit(210, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/leonardo-lycheborne/front.svg",
  16373. extra: 390 / 365,
  16374. bottom: 0.032
  16375. }
  16376. },
  16377. side: {
  16378. height: math.unit(6 + 1 / 12, "feet"),
  16379. weight: math.unit(210, "lb"),
  16380. name: "Side",
  16381. image: {
  16382. source: "./media/characters/leonardo-lycheborne/side.svg",
  16383. extra: 390 / 365,
  16384. bottom: 0.005
  16385. }
  16386. },
  16387. back: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(210, "lb"),
  16390. name: "Back",
  16391. image: {
  16392. source: "./media/characters/leonardo-lycheborne/back.svg",
  16393. extra: 392 / 366,
  16394. bottom: 0.01
  16395. }
  16396. },
  16397. hand: {
  16398. height: math.unit(1.08, "feet"),
  16399. name: "Hand",
  16400. image: {
  16401. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16402. }
  16403. },
  16404. foot: {
  16405. height: math.unit(1.32, "feet"),
  16406. name: "Foot",
  16407. image: {
  16408. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16409. }
  16410. },
  16411. were: {
  16412. height: math.unit(20, "feet"),
  16413. weight: math.unit(7800, "lb"),
  16414. name: "Were",
  16415. image: {
  16416. source: "./media/characters/leonardo-lycheborne/were.svg",
  16417. extra: 308 / 294,
  16418. bottom: 0.048
  16419. }
  16420. },
  16421. feral: {
  16422. height: math.unit(7.5, "feet"),
  16423. weight: math.unit(600, "lb"),
  16424. name: "Feral",
  16425. image: {
  16426. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16427. extra: 210 / 186,
  16428. bottom: 0.108
  16429. }
  16430. },
  16431. taur: {
  16432. height: math.unit(11, "feet"),
  16433. weight: math.unit(3300, "lb"),
  16434. name: "Taur",
  16435. image: {
  16436. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16437. extra: 320 / 303,
  16438. bottom: 0.025
  16439. }
  16440. },
  16441. barghest: {
  16442. height: math.unit(11, "feet"),
  16443. weight: math.unit(1300, "lb"),
  16444. name: "Barghest",
  16445. image: {
  16446. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16447. extra: 323 / 302,
  16448. bottom: 0.027
  16449. }
  16450. },
  16451. dick: {
  16452. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16453. name: "Dick",
  16454. image: {
  16455. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16456. }
  16457. },
  16458. dickWere: {
  16459. height: math.unit((20) / 3.8, "feet"),
  16460. name: "Dick (Were)",
  16461. image: {
  16462. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(6 + 1 / 12, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Jet" },
  16476. {
  16477. front: {
  16478. height: math.unit(10, "feet"),
  16479. weight: math.unit(350, "lb"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/jet/front.svg",
  16483. extra: 2050 / 1980,
  16484. bottom: 0.013
  16485. }
  16486. },
  16487. back: {
  16488. height: math.unit(10, "feet"),
  16489. weight: math.unit(350, "lb"),
  16490. name: "Back",
  16491. image: {
  16492. source: "./media/characters/jet/back.svg",
  16493. extra: 2050 / 1980,
  16494. bottom: 0.013
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(6, "inches")
  16502. },
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(10, "feet"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(100, "feet")
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Tanarath" },
  16516. {
  16517. front: {
  16518. height: math.unit(15, "feet"),
  16519. weight: math.unit(2800, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/tanarath/front.svg",
  16523. extra: 2392 / 2220,
  16524. bottom: 0.03
  16525. }
  16526. },
  16527. back: {
  16528. height: math.unit(15, "feet"),
  16529. weight: math.unit(2800, "lb"),
  16530. name: "Back",
  16531. image: {
  16532. source: "./media/characters/tanarath/back.svg",
  16533. extra: 2392 / 2220,
  16534. bottom: 0.03
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(15, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Patty CattyBatty" },
  16548. {
  16549. front: {
  16550. height: math.unit(7 + 1 / 12, "feet"),
  16551. weight: math.unit(175, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/patty-cattybatty/front.svg",
  16555. extra: 908 / 874,
  16556. bottom: 0.025
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Micro",
  16563. height: math.unit(1, "inch")
  16564. },
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(7 + 1 / 12, "feet")
  16568. },
  16569. {
  16570. name: "Mini Macro",
  16571. height: math.unit(155, "feet")
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(1077, "feet")
  16576. },
  16577. {
  16578. name: "Mega Macro",
  16579. height: math.unit(47650, "feet"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Giga Macro",
  16584. height: math.unit(440, "miles")
  16585. },
  16586. {
  16587. name: "Tera Macro",
  16588. height: math.unit(8700, "miles")
  16589. },
  16590. {
  16591. name: "Planetary Macro",
  16592. height: math.unit(32700, "miles")
  16593. },
  16594. {
  16595. name: "Solar Macro",
  16596. height: math.unit(550000, "miles")
  16597. },
  16598. {
  16599. name: "Celestial Macro",
  16600. height: math.unit(2.5, "AU")
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Cappu" },
  16606. {
  16607. front: {
  16608. height: math.unit(4 + 5 / 12, "feet"),
  16609. weight: math.unit(90, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/cappu/front.svg",
  16613. extra: 1247 / 1152,
  16614. bottom: 0.012
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(4 + 5 / 12, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Sebi" },
  16628. {
  16629. frontDressed: {
  16630. height: math.unit(70, "cm"),
  16631. weight: math.unit(6, "kg"),
  16632. name: "Front (Dressed)",
  16633. image: {
  16634. source: "./media/characters/sebi/front-dressed.svg",
  16635. extra: 713.5 / 686.5,
  16636. bottom: 0.003
  16637. }
  16638. },
  16639. front: {
  16640. height: math.unit(70, "cm"),
  16641. weight: math.unit(5, "kg"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/sebi/front.svg",
  16645. extra: 713.5 / 686.5,
  16646. bottom: 0.003
  16647. }
  16648. }
  16649. },
  16650. [
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(70, "cm"),
  16654. default: true
  16655. },
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(8, "meters")
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Typhek" },
  16664. {
  16665. front: {
  16666. height: math.unit(6, "feet"),
  16667. weight: math.unit(150, "lb"),
  16668. name: "Front",
  16669. image: {
  16670. source: "./media/characters/typhek/front.svg",
  16671. extra: 1948 / 1929,
  16672. bottom: 0.025
  16673. }
  16674. },
  16675. side: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(150, "lb"),
  16678. name: "Side",
  16679. image: {
  16680. source: "./media/characters/typhek/side.svg",
  16681. extra: 2034 / 2010,
  16682. bottom: 0.003
  16683. }
  16684. },
  16685. back: {
  16686. height: math.unit(6, "feet"),
  16687. weight: math.unit(150, "lb"),
  16688. name: "Back",
  16689. image: {
  16690. source: "./media/characters/typhek/back.svg",
  16691. extra: 2005 / 1978,
  16692. bottom: 0.004
  16693. }
  16694. },
  16695. palm: {
  16696. height: math.unit(1.2, "feet"),
  16697. name: "Palm",
  16698. image: {
  16699. source: "./media/characters/typhek/palm.svg"
  16700. }
  16701. },
  16702. fist: {
  16703. height: math.unit(1.1, "feet"),
  16704. name: "Fist",
  16705. image: {
  16706. source: "./media/characters/typhek/fist.svg"
  16707. }
  16708. },
  16709. foot: {
  16710. height: math.unit(1.57, "feet"),
  16711. name: "Foot",
  16712. image: {
  16713. source: "./media/characters/typhek/foot.svg"
  16714. }
  16715. },
  16716. sole: {
  16717. height: math.unit(2.05, "feet"),
  16718. name: "Sole",
  16719. image: {
  16720. source: "./media/characters/typhek/sole.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(40, "stories"),
  16728. default: true
  16729. },
  16730. {
  16731. name: "Megamacro",
  16732. height: math.unit(1, "mile")
  16733. },
  16734. {
  16735. name: "Gigamacro",
  16736. height: math.unit(4000, "solarradii")
  16737. },
  16738. {
  16739. name: "Universal",
  16740. height: math.unit(1.1, "universes")
  16741. }
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Kassy" },
  16746. {
  16747. side: {
  16748. height: math.unit(5 + 7 / 12, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Side",
  16751. image: {
  16752. source: "./media/characters/kassy/side.svg",
  16753. extra: 1280 / 1225,
  16754. bottom: 0.002
  16755. }
  16756. },
  16757. front: {
  16758. height: math.unit(5 + 7 / 12, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/kassy/front.svg",
  16763. extra: 1280 / 1225,
  16764. bottom: 0.025
  16765. }
  16766. },
  16767. back: {
  16768. height: math.unit(5 + 7 / 12, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Back",
  16771. image: {
  16772. source: "./media/characters/kassy/back.svg",
  16773. extra: 1280 / 1225,
  16774. bottom: 0.002
  16775. }
  16776. },
  16777. foot: {
  16778. height: math.unit(1.266, "feet"),
  16779. name: "Foot",
  16780. image: {
  16781. source: "./media/characters/kassy/foot.svg"
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(5 + 7 / 12, "feet")
  16789. },
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(137, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Megamacro",
  16797. height: math.unit(1, "mile")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Neil" },
  16803. {
  16804. front: {
  16805. height: math.unit(6 + 1 / 12, "feet"),
  16806. weight: math.unit(200, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/neil/front.svg",
  16810. extra: 1326 / 1250,
  16811. bottom: 0.023
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 1 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(200, "feet")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Atticus" },
  16829. {
  16830. front: {
  16831. height: math.unit(5 + 9 / 12, "feet"),
  16832. weight: math.unit(190, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/atticus/front.svg",
  16836. extra: 2934 / 2785,
  16837. bottom: 0.025
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(5 + 9 / 12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(180, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Milo" },
  16855. {
  16856. side: {
  16857. height: math.unit(9, "feet"),
  16858. weight: math.unit(650, "lb"),
  16859. name: "Side",
  16860. image: {
  16861. source: "./media/characters/milo/side.svg",
  16862. extra: 2644 / 2310,
  16863. bottom: 0.032
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(9, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(300, "feet")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Ijzer" },
  16881. {
  16882. side: {
  16883. height: math.unit(8, "meters"),
  16884. weight: math.unit(90000, "kg"),
  16885. name: "Side",
  16886. image: {
  16887. source: "./media/characters/ijzer/side.svg",
  16888. extra: 2756 / 1600,
  16889. bottom: 0.01
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Small",
  16896. height: math.unit(3, "meters")
  16897. },
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(8, "meters"),
  16901. default: true
  16902. },
  16903. {
  16904. name: "Normal+",
  16905. height: math.unit(10, "meters")
  16906. },
  16907. {
  16908. name: "Bigger",
  16909. height: math.unit(24, "meters")
  16910. },
  16911. {
  16912. name: "Huge",
  16913. height: math.unit(80, "meters")
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Luca Cervicum" },
  16919. {
  16920. front: {
  16921. height: math.unit(6 + 2 / 12, "feet"),
  16922. weight: math.unit(153, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/luca-cervicum/front.svg",
  16926. extra: 370 / 327,
  16927. bottom: 0.015
  16928. }
  16929. },
  16930. back: {
  16931. height: math.unit(6 + 2 / 12, "feet"),
  16932. weight: math.unit(153, "lb"),
  16933. name: "Back",
  16934. image: {
  16935. source: "./media/characters/luca-cervicum/back.svg",
  16936. extra: 367 / 333,
  16937. bottom: 0.005
  16938. }
  16939. },
  16940. frontGear: {
  16941. height: math.unit(6 + 2 / 12, "feet"),
  16942. weight: math.unit(173, "lb"),
  16943. name: "Front (Gear)",
  16944. image: {
  16945. source: "./media/characters/luca-cervicum/front-gear.svg",
  16946. extra: 377 / 333,
  16947. bottom: 0.006
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(6 + 2 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Oliver" },
  16961. {
  16962. front: {
  16963. height: math.unit(6 + 1 / 12, "feet"),
  16964. weight: math.unit(304, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/oliver/front.svg",
  16968. extra: 157 / 143,
  16969. bottom: 0.08
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(6 + 1 / 12, "feet"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Shane" },
  16983. {
  16984. front: {
  16985. height: math.unit(5 + 7 / 12, "feet"),
  16986. weight: math.unit(140, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/shane/front.svg",
  16990. extra: 304 / 289,
  16991. bottom: 0.005
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(5 + 7 / 12, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Shin" },
  17005. {
  17006. front: {
  17007. height: math.unit(5 + 9 / 12, "feet"),
  17008. weight: math.unit(178, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/shin/front.svg",
  17012. extra: 159 / 151,
  17013. bottom: 0.015
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(5 + 9 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Xerxes" },
  17027. {
  17028. front: {
  17029. height: math.unit(5 + 10 / 12, "feet"),
  17030. weight: math.unit(168, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/xerxes/front.svg",
  17034. extra: 282 / 260,
  17035. bottom: 0.045
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(5 + 10 / 12, "feet"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Chaska" },
  17049. {
  17050. front: {
  17051. height: math.unit(6 + 7 / 12, "feet"),
  17052. weight: math.unit(208, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/chaska/front.svg",
  17056. extra: 332 / 319,
  17057. bottom: 0.015
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(6 + 7 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Enuk" },
  17071. {
  17072. front: {
  17073. height: math.unit(5 + 8 / 12, "feet"),
  17074. weight: math.unit(208, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/enuk/front.svg",
  17078. extra: 437 / 406,
  17079. bottom: 0.02
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(5 + 8 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Bruun" },
  17093. {
  17094. front: {
  17095. height: math.unit(5 + 10 / 12, "feet"),
  17096. weight: math.unit(252, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/bruun/front.svg",
  17100. extra: 197 / 187,
  17101. bottom: 0.012
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. default: true
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Alexeev" },
  17115. {
  17116. front: {
  17117. height: math.unit(6 + 10 / 12, "feet"),
  17118. weight: math.unit(255, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/alexeev/front.svg",
  17122. extra: 213 / 200,
  17123. bottom: 0.05
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(6 + 10 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Evelyn" },
  17137. {
  17138. front: {
  17139. height: math.unit(2 + 8 / 12, "feet"),
  17140. weight: math.unit(22, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/evelyn/front.svg",
  17144. extra: 208 / 180
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(2 + 8 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Inca" },
  17158. {
  17159. front: {
  17160. height: math.unit(5 + 9 / 12, "feet"),
  17161. weight: math.unit(139, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/inca/front.svg",
  17165. extra: 294 / 291,
  17166. bottom: 0.03
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(5 + 9 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Magdalene" },
  17180. {
  17181. front: {
  17182. height: math.unit(5 + 1 / 12, "feet"),
  17183. weight: math.unit(84, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/magdalene/front.svg",
  17187. extra: 293 / 273
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(5 + 1 / 12, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Mera" },
  17201. {
  17202. front: {
  17203. height: math.unit(6 + 3 / 12, "feet"),
  17204. weight: math.unit(185, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/mera/front.svg",
  17208. extra: 291 / 277,
  17209. bottom: 0.03
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(6 + 3 / 12, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Ceres" },
  17223. {
  17224. front: {
  17225. height: math.unit(6 + 7 / 12, "feet"),
  17226. weight: math.unit(160, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/ceres/front.svg",
  17230. extra: 1023 / 950,
  17231. bottom: 0.027
  17232. }
  17233. },
  17234. back: {
  17235. height: math.unit(6 + 7 / 12, "feet"),
  17236. weight: math.unit(160, "lb"),
  17237. name: "Back",
  17238. image: {
  17239. source: "./media/characters/ceres/back.svg",
  17240. extra: 1023 / 950
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 7 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Kris" },
  17254. {
  17255. front: {
  17256. height: math.unit(5 + 10 / 12, "feet"),
  17257. weight: math.unit(150, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/kris/front.svg",
  17261. extra: 885 / 803,
  17262. bottom: 0.03
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(5 + 10 / 12, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Taluthus" },
  17276. {
  17277. front: {
  17278. height: math.unit(7, "feet"),
  17279. weight: math.unit(120, "kg"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/taluthus/front.svg",
  17283. extra: 903 / 833,
  17284. bottom: 0.015
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(7, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(300, "feet")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Dawn" },
  17302. {
  17303. front: {
  17304. height: math.unit(5 + 9 / 12, "feet"),
  17305. weight: math.unit(145, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/dawn/front.svg",
  17309. extra: 2094 / 2016,
  17310. bottom: 0.025
  17311. }
  17312. },
  17313. back: {
  17314. height: math.unit(5 + 9 / 12, "feet"),
  17315. weight: math.unit(160, "lb"),
  17316. name: "Back",
  17317. image: {
  17318. source: "./media/characters/dawn/back.svg",
  17319. extra: 2112 / 2080,
  17320. bottom: 0.005
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(6 + 7 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Arador" },
  17334. {
  17335. anthro: {
  17336. height: math.unit(8 + 3 / 12, "feet"),
  17337. weight: math.unit(450, "lb"),
  17338. name: "Anthro",
  17339. image: {
  17340. source: "./media/characters/arador/anthro.svg",
  17341. extra: 1835 / 1718,
  17342. bottom: 0.025
  17343. }
  17344. },
  17345. feral: {
  17346. height: math.unit(4, "feet"),
  17347. weight: math.unit(200, "lb"),
  17348. name: "Feral",
  17349. image: {
  17350. source: "./media/characters/arador/feral.svg",
  17351. extra: 1683 / 1514,
  17352. bottom: 0.07
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(8 + 3 / 12, "feet")
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(82.5, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Dharsi" },
  17370. {
  17371. front: {
  17372. height: math.unit(5 + 10 / 12, "feet"),
  17373. weight: math.unit(125, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/dharsi/front.svg",
  17377. extra: 716 / 630,
  17378. bottom: 0.035
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Nano",
  17385. height: math.unit(100, "nm")
  17386. },
  17387. {
  17388. name: "Micro",
  17389. height: math.unit(2, "inches")
  17390. },
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(5 + 10 / 12, "feet"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(1000, "feet")
  17399. },
  17400. {
  17401. name: "Megamacro",
  17402. height: math.unit(10, "miles")
  17403. },
  17404. {
  17405. name: "Gigamacro",
  17406. height: math.unit(3000, "miles")
  17407. },
  17408. {
  17409. name: "Teramacro",
  17410. height: math.unit(500000, "miles")
  17411. },
  17412. {
  17413. name: "Teramacro+",
  17414. height: math.unit(30, "galaxies")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Deathy" },
  17420. {
  17421. front: {
  17422. height: math.unit(6, "feet"),
  17423. weight: math.unit(150, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/deathy/front.svg",
  17427. extra: 1552 / 1463,
  17428. bottom: 0.025
  17429. }
  17430. },
  17431. side: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(150, "lb"),
  17434. name: "Side",
  17435. image: {
  17436. source: "./media/characters/deathy/side.svg",
  17437. extra: 1604 / 1455,
  17438. bottom: 0.025
  17439. }
  17440. },
  17441. back: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(150, "lb"),
  17444. name: "Back",
  17445. image: {
  17446. source: "./media/characters/deathy/back.svg",
  17447. extra: 1580 / 1463,
  17448. bottom: 0.005
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Micro",
  17455. height: math.unit(5, "millimeters")
  17456. },
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(6 + 5 / 12, "feet"),
  17460. default: true
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Juniper" },
  17466. {
  17467. front: {
  17468. height: math.unit(16, "feet"),
  17469. weight: math.unit(4000, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/juniper/front.svg",
  17473. bottom: 0.04
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(16, "feet"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Hipster" },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/hipster/front.svg",
  17494. extra: 1312 / 1209,
  17495. bottom: 0.025
  17496. }
  17497. },
  17498. back: {
  17499. height: math.unit(6, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Back",
  17502. image: {
  17503. source: "./media/characters/hipster/back.svg",
  17504. extra: 1281 / 1196,
  17505. bottom: 0.01
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Micro",
  17512. height: math.unit(1, "mm")
  17513. },
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(4, "inches"),
  17517. default: true
  17518. },
  17519. {
  17520. name: "Macro",
  17521. height: math.unit(500, "feet")
  17522. },
  17523. {
  17524. name: "Megamacro",
  17525. height: math.unit(1000, "miles")
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Tendirmuldr" },
  17531. {
  17532. front: {
  17533. height: math.unit(6, "feet"),
  17534. weight: math.unit(150, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/tendirmuldr/front.svg",
  17538. extra: 1878 / 1772,
  17539. bottom: 0.015
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Megamacro",
  17546. height: math.unit(1500, "miles"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Mort" },
  17553. {
  17554. front: {
  17555. height: math.unit(14, "feet"),
  17556. weight: math.unit(12000, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/mort/front.svg",
  17560. extra: 365 / 318,
  17561. bottom: 0.01
  17562. }
  17563. },
  17564. side: {
  17565. height: math.unit(14, "feet"),
  17566. weight: math.unit(12000, "lb"),
  17567. name: "Side",
  17568. image: {
  17569. source: "./media/characters/mort/side.svg",
  17570. extra: 365 / 318,
  17571. bottom: 0.052
  17572. },
  17573. default: true
  17574. },
  17575. back: {
  17576. height: math.unit(14, "feet"),
  17577. weight: math.unit(12000, "lb"),
  17578. name: "Back",
  17579. image: {
  17580. source: "./media/characters/mort/back.svg",
  17581. extra: 371 / 332,
  17582. bottom: 0.18
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(14, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Lycoa" },
  17596. {
  17597. front: {
  17598. height: math.unit(8, "feet"),
  17599. weight: math.unit(1, "ton"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/lycoa/front.svg",
  17603. extra: 1875 / 1789,
  17604. bottom: 0.022
  17605. }
  17606. },
  17607. back: {
  17608. height: math.unit(8, "feet"),
  17609. weight: math.unit(1, "ton"),
  17610. name: "Back",
  17611. image: {
  17612. source: "./media/characters/lycoa/back.svg",
  17613. extra: 1835 / 1781,
  17614. bottom: 0.03
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(8, "feet"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Macro",
  17626. height: math.unit(30, "feet")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Naldara" },
  17632. {
  17633. front: {
  17634. height: math.unit(4 + 2 / 12, "feet"),
  17635. weight: math.unit(70, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/naldara/front.svg",
  17639. extra: 841 / 720,
  17640. bottom: 0.04
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(4 + 2 / 12, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Briar" },
  17654. {
  17655. front: {
  17656. height: math.unit(13 + 7 / 12, "feet"),
  17657. weight: math.unit(1500, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/briar/front.svg",
  17661. extra: 626 / 596,
  17662. bottom: 0.08
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(13 + 7 / 12, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Vanguard" },
  17676. {
  17677. side: {
  17678. height: math.unit(10, "feet"),
  17679. weight: math.unit(500, "lb"),
  17680. name: "Side",
  17681. image: {
  17682. source: "./media/characters/vanguard/side.svg",
  17683. extra: 502 / 425,
  17684. bottom: 0.087
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(10, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Artemis" },
  17698. {
  17699. front: {
  17700. height: math.unit(7.5, "feet"),
  17701. weight: math.unit(2, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/artemis/front.svg",
  17705. extra: 1192 / 1075,
  17706. bottom: 0.07
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(7.5, "feet"),
  17714. default: true
  17715. },
  17716. {
  17717. name: "Enlarged",
  17718. height: math.unit(12, "feet")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Kira" },
  17724. {
  17725. front: {
  17726. height: math.unit(5 + 3 / 12, "feet"),
  17727. weight: math.unit(160, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/kira/front.svg",
  17731. extra: 906 / 786,
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. back: {
  17736. height: math.unit(5 + 3 / 12, "feet"),
  17737. weight: math.unit(160, "lb"),
  17738. name: "Back",
  17739. image: {
  17740. source: "./media/characters/kira/back.svg",
  17741. extra: 882 / 757,
  17742. bottom: 0.005
  17743. }
  17744. },
  17745. frontDressed: {
  17746. height: math.unit(5 + 3 / 12, "feet"),
  17747. weight: math.unit(160, "lb"),
  17748. name: "Front (Dressed)",
  17749. image: {
  17750. source: "./media/characters/kira/front-dressed.svg",
  17751. extra: 906 / 786,
  17752. bottom: 0.01
  17753. }
  17754. },
  17755. beans: {
  17756. height: math.unit(0.92, "feet"),
  17757. name: "Beans",
  17758. image: {
  17759. source: "./media/characters/kira/beans.svg"
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(5 + 3 / 12, "feet"),
  17767. default: true
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Scramble" },
  17773. {
  17774. front: {
  17775. height: math.unit(5 + 4 / 12, "feet"),
  17776. weight: math.unit(145, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/scramble/front.svg",
  17780. extra: 763 / 727,
  17781. bottom: 0.05
  17782. }
  17783. },
  17784. back: {
  17785. height: math.unit(5 + 4 / 12, "feet"),
  17786. weight: math.unit(145, "lb"),
  17787. name: "Back",
  17788. image: {
  17789. source: "./media/characters/scramble/back.svg",
  17790. extra: 826 / 737,
  17791. bottom: 0.002
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(5 + 4 / 12, "feet"),
  17799. default: true
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Biscuit" },
  17805. {
  17806. side: {
  17807. height: math.unit(6 + 2 / 12, "feet"),
  17808. weight: math.unit(190, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/biscuit/side.svg",
  17812. extra: 858 / 791,
  17813. bottom: 0.044
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(6 + 2 / 12, "feet"),
  17821. default: true
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Poffin" },
  17827. {
  17828. front: {
  17829. height: math.unit(5 + 2 / 12, "feet"),
  17830. weight: math.unit(120, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/poffin/front.svg",
  17834. extra: 786 / 680,
  17835. bottom: 0.005
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(5 + 2 / 12, "feet"),
  17843. default: true
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Dhari" },
  17849. {
  17850. front: {
  17851. height: math.unit(6 + 3 / 12, "feet"),
  17852. weight: math.unit(519, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/dhari/front.svg",
  17856. extra: 1048 / 946,
  17857. bottom: 0.015
  17858. }
  17859. },
  17860. back: {
  17861. height: math.unit(6 + 3 / 12, "feet"),
  17862. weight: math.unit(519, "lb"),
  17863. name: "Back",
  17864. image: {
  17865. source: "./media/characters/dhari/back.svg",
  17866. extra: 1048 / 931,
  17867. bottom: 0.005
  17868. }
  17869. },
  17870. frontDressed: {
  17871. height: math.unit(6 + 3 / 12, "feet"),
  17872. weight: math.unit(519, "lb"),
  17873. name: "Front (Dressed)",
  17874. image: {
  17875. source: "./media/characters/dhari/front-dressed.svg",
  17876. extra: 1713 / 1546,
  17877. bottom: 0.02
  17878. }
  17879. },
  17880. backDressed: {
  17881. height: math.unit(6 + 3 / 12, "feet"),
  17882. weight: math.unit(519, "lb"),
  17883. name: "Back (Dressed)",
  17884. image: {
  17885. source: "./media/characters/dhari/back-dressed.svg",
  17886. extra: 1699 / 1537,
  17887. bottom: 0.01
  17888. }
  17889. },
  17890. maw: {
  17891. height: math.unit(0.95, "feet"),
  17892. name: "Maw",
  17893. image: {
  17894. source: "./media/characters/dhari/maw.svg"
  17895. }
  17896. },
  17897. wereFront: {
  17898. height: math.unit(12 + 8 / 12, "feet"),
  17899. weight: math.unit(4000, "lb"),
  17900. name: "Front (Were)",
  17901. image: {
  17902. source: "./media/characters/dhari/were-front.svg",
  17903. extra: 1065 / 969,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. wereBack: {
  17908. height: math.unit(12 + 8 / 12, "feet"),
  17909. weight: math.unit(4000, "lb"),
  17910. name: "Back (Were)",
  17911. image: {
  17912. source: "./media/characters/dhari/were-back.svg",
  17913. extra: 1065 / 969,
  17914. bottom: 0.012
  17915. }
  17916. },
  17917. wereMaw: {
  17918. height: math.unit(0.625, "meters"),
  17919. name: "Maw (Were)",
  17920. image: {
  17921. source: "./media/characters/dhari/were-maw.svg"
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(6 + 3 / 12, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Rena Dyne" },
  17935. {
  17936. anthro: {
  17937. height: math.unit(5 + 7 / 12, "feet"),
  17938. weight: math.unit(175, "lb"),
  17939. name: "Anthro",
  17940. image: {
  17941. source: "./media/characters/rena-dyne/anthro.svg",
  17942. extra: 1849 / 1785,
  17943. bottom: 0.005
  17944. }
  17945. },
  17946. taur: {
  17947. height: math.unit(15 + 6 / 12, "feet"),
  17948. weight: math.unit(8000, "lb"),
  17949. name: "Taur",
  17950. image: {
  17951. source: "./media/characters/rena-dyne/taur.svg",
  17952. extra: 2315 / 2234,
  17953. bottom: 0.033
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(5 + 7 / 12, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Weremeep" },
  17967. {
  17968. front: {
  17969. height: math.unit(8, "feet"),
  17970. weight: math.unit(600, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/weremeep/front.svg",
  17974. extra: 967 / 862,
  17975. bottom: 0.01
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(8, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Lorg",
  17987. height: math.unit(12, "feet")
  17988. },
  17989. {
  17990. name: "Oh Lawd She Comin'",
  17991. height: math.unit(20, "feet")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Reza" },
  17997. {
  17998. front: {
  17999. height: math.unit(4, "feet"),
  18000. weight: math.unit(90, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/reza/front.svg",
  18004. extra: 1183 / 1111,
  18005. bottom: 0.017
  18006. }
  18007. },
  18008. back: {
  18009. height: math.unit(4, "feet"),
  18010. weight: math.unit(90, "lb"),
  18011. name: "Back",
  18012. image: {
  18013. source: "./media/characters/reza/back.svg",
  18014. extra: 1183 / 1111,
  18015. bottom: 0.01
  18016. }
  18017. },
  18018. drake: {
  18019. height: math.unit(30, "feet"),
  18020. weight: math.unit(246960, "lb"),
  18021. name: "Drake",
  18022. image: {
  18023. source: "./media/characters/reza/drake.svg",
  18024. extra: 2350/2024,
  18025. bottom: 60.7/2403
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(4, "feet"),
  18033. default: true
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Athea" },
  18039. {
  18040. side: {
  18041. height: math.unit(15, "feet"),
  18042. weight: math.unit(14, "tons"),
  18043. name: "Side",
  18044. image: {
  18045. source: "./media/characters/athea/side.svg",
  18046. extra: 960 / 540,
  18047. bottom: 0.003
  18048. }
  18049. },
  18050. sitting: {
  18051. height: math.unit(6 * 2.85, "feet"),
  18052. weight: math.unit(14, "tons"),
  18053. name: "Sitting",
  18054. image: {
  18055. source: "./media/characters/athea/sitting.svg",
  18056. extra: 621 / 581,
  18057. bottom: 0.075
  18058. }
  18059. },
  18060. maw: {
  18061. height: math.unit(7.59498031496063, "feet"),
  18062. name: "Maw",
  18063. image: {
  18064. source: "./media/characters/athea/maw.svg"
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Lap Cat",
  18071. height: math.unit(2.5, "feet")
  18072. },
  18073. {
  18074. name: "Minimacro",
  18075. height: math.unit(15, "feet"),
  18076. default: true
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(120, "feet")
  18081. },
  18082. {
  18083. name: "Macro+",
  18084. height: math.unit(640, "feet")
  18085. },
  18086. {
  18087. name: "Colossus",
  18088. height: math.unit(2.2, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Seroko" },
  18094. {
  18095. front: {
  18096. height: math.unit(8 + 8 / 12, "feet"),
  18097. weight: math.unit(130, "kg"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/seroko/front.svg",
  18101. extra: 1385 / 1280,
  18102. bottom: 0.025
  18103. }
  18104. },
  18105. back: {
  18106. height: math.unit(8 + 8 / 12, "feet"),
  18107. weight: math.unit(130, "kg"),
  18108. name: "Back",
  18109. image: {
  18110. source: "./media/characters/seroko/back.svg",
  18111. extra: 1369 / 1238,
  18112. bottom: 0.018
  18113. }
  18114. },
  18115. frontDressed: {
  18116. height: math.unit(8 + 8 / 12, "feet"),
  18117. weight: math.unit(130, "kg"),
  18118. name: "Front (Dressed)",
  18119. image: {
  18120. source: "./media/characters/seroko/front-dressed.svg",
  18121. extra: 1366 / 1275,
  18122. bottom: 0.03
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(8 + 8 / 12, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Quatzi" },
  18136. {
  18137. front: {
  18138. height: math.unit(5.5, "feet"),
  18139. weight: math.unit(160, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/quatzi/front.svg",
  18143. extra: 2346 / 2242,
  18144. bottom: 0.015
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(5.5, "feet"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Big",
  18156. height: math.unit(7.7, "feet")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Sen" },
  18162. {
  18163. front: {
  18164. height: math.unit(5 + 11 / 12, "feet"),
  18165. weight: math.unit(180, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/sen/front.svg",
  18169. extra: 1321 / 1254,
  18170. bottom: 0.015
  18171. }
  18172. },
  18173. side: {
  18174. height: math.unit(5 + 11 / 12, "feet"),
  18175. weight: math.unit(180, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/sen/side.svg",
  18179. extra: 1321 / 1254,
  18180. bottom: 0.007
  18181. }
  18182. },
  18183. back: {
  18184. height: math.unit(5 + 11 / 12, "feet"),
  18185. weight: math.unit(180, "lb"),
  18186. name: "Back",
  18187. image: {
  18188. source: "./media/characters/sen/back.svg",
  18189. extra: 1321 / 1254
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(5 + 11 / 12, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Fruity" },
  18203. {
  18204. front: {
  18205. height: math.unit(166.6, "cm"),
  18206. weight: math.unit(66.6, "kg"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/fruity/front.svg",
  18210. extra: 1510 / 1386,
  18211. bottom: 0.04
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(166.6, "cm"),
  18216. weight: math.unit(66.6, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/fruity/back.svg",
  18220. extra: 1563 / 1435,
  18221. bottom: 0.005
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(166.6, "cm"),
  18229. default: true
  18230. },
  18231. {
  18232. name: "Demonic",
  18233. height: math.unit(166.6, "feet")
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Zost" },
  18239. {
  18240. side: {
  18241. height: math.unit(10, "feet"),
  18242. weight: math.unit(500, "lb"),
  18243. name: "Side",
  18244. image: {
  18245. source: "./media/characters/zost/side.svg",
  18246. extra: 966 / 880,
  18247. bottom: 0.075
  18248. }
  18249. },
  18250. mawFront: {
  18251. height: math.unit(1.08, "meters"),
  18252. name: "Maw (Front)",
  18253. image: {
  18254. source: "./media/characters/zost/maw-front.svg"
  18255. }
  18256. },
  18257. mawSide: {
  18258. height: math.unit(2.66, "feet"),
  18259. name: "Maw (Side)",
  18260. image: {
  18261. source: "./media/characters/zost/maw-side.svg"
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(10, "feet"),
  18269. default: true
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Luci" },
  18275. {
  18276. front: {
  18277. height: math.unit(5 + 4 / 12, "feet"),
  18278. weight: math.unit(120, "lb"),
  18279. name: "Front",
  18280. image: {
  18281. source: "./media/characters/luci/front.svg",
  18282. extra: 1985 / 1884,
  18283. bottom: 0.04
  18284. }
  18285. },
  18286. back: {
  18287. height: math.unit(5 + 4 / 12, "feet"),
  18288. weight: math.unit(120, "lb"),
  18289. name: "Back",
  18290. image: {
  18291. source: "./media/characters/luci/back.svg",
  18292. extra: 1892 / 1791,
  18293. bottom: 0.002
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(5 + 4 / 12, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "2th" },
  18307. {
  18308. front: {
  18309. height: math.unit(1500, "feet"),
  18310. weight: math.unit(3.8e6, "tons"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/2th/front.svg",
  18314. extra: 3489 / 3350,
  18315. bottom: 0.1
  18316. }
  18317. },
  18318. foot: {
  18319. height: math.unit(461, "feet"),
  18320. name: "Foot",
  18321. image: {
  18322. source: "./media/characters/2th/foot.svg"
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "\"Micro\"",
  18329. height: math.unit(15 + 7 / 12, "feet")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(1500, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(5000, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(15, "miles")
  18343. },
  18344. {
  18345. name: "Gigamacro",
  18346. height: math.unit(4000, "miles")
  18347. },
  18348. {
  18349. name: "Galactic",
  18350. height: math.unit(50, "AU")
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Amethyst" },
  18356. {
  18357. front: {
  18358. height: math.unit(5 + 6 / 12, "feet"),
  18359. weight: math.unit(220, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/amethyst/front.svg",
  18363. extra: 2078 / 2040,
  18364. bottom: 0.045
  18365. }
  18366. },
  18367. back: {
  18368. height: math.unit(5 + 6 / 12, "feet"),
  18369. weight: math.unit(220, "lb"),
  18370. name: "Back",
  18371. image: {
  18372. source: "./media/characters/amethyst/back.svg",
  18373. extra: 2021 / 1989,
  18374. bottom: 0.02
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(5 + 6 / 12, "feet"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Yumi Akiyama" },
  18388. {
  18389. front: {
  18390. height: math.unit(4 + 11 / 12, "feet"),
  18391. weight: math.unit(120, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/yumi-akiyama/front.svg",
  18395. extra: 1327 / 1235,
  18396. bottom: 0.02
  18397. }
  18398. },
  18399. back: {
  18400. height: math.unit(4 + 11 / 12, "feet"),
  18401. weight: math.unit(120, "lb"),
  18402. name: "Back",
  18403. image: {
  18404. source: "./media/characters/yumi-akiyama/back.svg",
  18405. extra: 1287 / 1245,
  18406. bottom: 0.002
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Galactic",
  18413. height: math.unit(50, "galaxies"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Universal",
  18418. height: math.unit(100, "universes")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Rifter Yrmori" },
  18424. {
  18425. front: {
  18426. height: math.unit(8, "feet"),
  18427. weight: math.unit(500, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/rifter-yrmori/front.svg",
  18431. extra: 1180 / 1125,
  18432. bottom: 0.02
  18433. }
  18434. },
  18435. back: {
  18436. height: math.unit(8, "feet"),
  18437. weight: math.unit(500, "lb"),
  18438. name: "Back",
  18439. image: {
  18440. source: "./media/characters/rifter-yrmori/back.svg",
  18441. extra: 1190 / 1145,
  18442. bottom: 0.001
  18443. }
  18444. },
  18445. wings: {
  18446. height: math.unit(7.75, "feet"),
  18447. weight: math.unit(500, "lb"),
  18448. name: "Wings",
  18449. image: {
  18450. source: "./media/characters/rifter-yrmori/wings.svg",
  18451. extra: 1357 / 1285
  18452. }
  18453. },
  18454. maw: {
  18455. height: math.unit(0.8, "feet"),
  18456. name: "Maw",
  18457. image: {
  18458. source: "./media/characters/rifter-yrmori/maw.svg"
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(8, "feet"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(42, "meters")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Tahajin" },
  18476. {
  18477. were: {
  18478. height: math.unit(25 + 6 / 12, "feet"),
  18479. weight: math.unit(10000, "lb"),
  18480. name: "Were",
  18481. image: {
  18482. source: "./media/characters/tahajin/were.svg",
  18483. extra: 801 / 770,
  18484. bottom: 0.042
  18485. }
  18486. },
  18487. aquatic: {
  18488. height: math.unit(6 + 4 / 12, "feet"),
  18489. weight: math.unit(160, "lb"),
  18490. name: "Aquatic",
  18491. image: {
  18492. source: "./media/characters/tahajin/aquatic.svg",
  18493. extra: 572 / 542,
  18494. bottom: 0.04
  18495. }
  18496. },
  18497. chow: {
  18498. height: math.unit(8 + 11 / 12, "feet"),
  18499. weight: math.unit(450, "lb"),
  18500. name: "Chow",
  18501. image: {
  18502. source: "./media/characters/tahajin/chow.svg",
  18503. extra: 660 / 640,
  18504. bottom: 0.015
  18505. }
  18506. },
  18507. demiNaga: {
  18508. height: math.unit(6 + 8 / 12, "feet"),
  18509. weight: math.unit(300, "lb"),
  18510. name: "Demi Naga",
  18511. image: {
  18512. source: "./media/characters/tahajin/demi-naga.svg",
  18513. extra: 643 / 615,
  18514. bottom: 0.1
  18515. }
  18516. },
  18517. data: {
  18518. height: math.unit(5, "inches"),
  18519. weight: math.unit(0.1, "lb"),
  18520. name: "Data",
  18521. image: {
  18522. source: "./media/characters/tahajin/data.svg"
  18523. }
  18524. },
  18525. fluu: {
  18526. height: math.unit(5 + 7 / 12, "feet"),
  18527. weight: math.unit(140, "lb"),
  18528. name: "Fluu",
  18529. image: {
  18530. source: "./media/characters/tahajin/fluu.svg",
  18531. extra: 628 / 592,
  18532. bottom: 0.02
  18533. }
  18534. },
  18535. starWarrior: {
  18536. height: math.unit(4 + 5 / 12, "feet"),
  18537. weight: math.unit(50, "lb"),
  18538. name: "Star Warrior",
  18539. image: {
  18540. source: "./media/characters/tahajin/star-warrior.svg"
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(25 + 6 / 12, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Gabira" },
  18554. {
  18555. front: {
  18556. height: math.unit(8, "feet"),
  18557. weight: math.unit(350, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/gabira/front.svg",
  18561. extra: 608 / 580,
  18562. bottom: 0.03
  18563. }
  18564. },
  18565. back: {
  18566. height: math.unit(8, "feet"),
  18567. weight: math.unit(350, "lb"),
  18568. name: "Back",
  18569. image: {
  18570. source: "./media/characters/gabira/back.svg",
  18571. extra: 608 / 580,
  18572. bottom: 0.03
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(8, "feet"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Sasha Katraine" },
  18586. {
  18587. front: {
  18588. height: math.unit(5 + 3 / 12, "feet"),
  18589. weight: math.unit(137, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/sasha-katraine/front.svg",
  18593. bottom: 0.045
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Micro",
  18600. height: math.unit(5, "inches")
  18601. },
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(5 + 3 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Der" },
  18611. {
  18612. side: {
  18613. height: math.unit(4, "inches"),
  18614. weight: math.unit(200, "grams"),
  18615. name: "Side",
  18616. image: {
  18617. source: "./media/characters/der/side.svg",
  18618. extra: 719 / 400,
  18619. bottom: 30.6 / 749.9187
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Micro",
  18626. height: math.unit(4, "inches"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Fixerdragon" },
  18633. {
  18634. side: {
  18635. height: math.unit(30, "meters"),
  18636. weight: math.unit(700, "tonnes"),
  18637. name: "Side",
  18638. image: {
  18639. source: "./media/characters/fixerdragon/side.svg",
  18640. extra: (1293.0514 - 116.03) / 1106.86,
  18641. bottom: 116.03 / 1293.0514
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Planck",
  18648. height: math.unit(1.6e-35, "meters")
  18649. },
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(0.4, "meters")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(30, "meters"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Megamacro",
  18661. height: math.unit(1.2, "megameters")
  18662. },
  18663. {
  18664. name: "Teramacro",
  18665. height: math.unit(130, "terameters")
  18666. },
  18667. {
  18668. name: "Yottamacro",
  18669. height: math.unit(6200, "yottameters")
  18670. },
  18671. ]
  18672. ));
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Kite" },
  18675. {
  18676. front: {
  18677. height: math.unit(8, "feet"),
  18678. weight: math.unit(250, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/kite/front.svg",
  18682. extra: 2796 / 2659,
  18683. bottom: 0.002
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(8, "feet"),
  18691. default: true
  18692. },
  18693. {
  18694. name: "Macro",
  18695. height: math.unit(360, "feet")
  18696. },
  18697. {
  18698. name: "Megamacro",
  18699. height: math.unit(1500, "feet")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Poojawa Vynar" },
  18705. {
  18706. front: {
  18707. height: math.unit(5 + 10 / 12, "feet"),
  18708. weight: math.unit(150, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/poojawa-vynar/front.svg",
  18712. extra: (1506.1547 - 55) / 1356.6,
  18713. bottom: 55 / 1506.1547
  18714. }
  18715. },
  18716. frontTailless: {
  18717. height: math.unit(5 + 10 / 12, "feet"),
  18718. weight: math.unit(150, "lb"),
  18719. name: "Front (Tailless)",
  18720. image: {
  18721. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18722. extra: (1506.1547 - 55) / 1356.6,
  18723. bottom: 55 / 1506.1547
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(5 + 10 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Violette" },
  18737. {
  18738. front: {
  18739. height: math.unit(293, "meters"),
  18740. weight: math.unit(70400, "tons"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/violette/front.svg",
  18744. extra: 1227 / 1180,
  18745. bottom: 0.005
  18746. }
  18747. },
  18748. back: {
  18749. height: math.unit(293, "meters"),
  18750. weight: math.unit(70400, "tons"),
  18751. name: "Back",
  18752. image: {
  18753. source: "./media/characters/violette/back.svg",
  18754. extra: 1227 / 1180,
  18755. bottom: 0.005
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(293, "meters"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Alessandra" },
  18769. {
  18770. front: {
  18771. height: math.unit(1050, "feet"),
  18772. weight: math.unit(200000, "tons"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/alessandra/front.svg",
  18776. extra: 960 / 912,
  18777. bottom: 0.06
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(1050, "feet")
  18785. },
  18786. {
  18787. name: "Macro+",
  18788. height: math.unit(900, "meters"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Person", species: "Catdragon" },
  18795. {
  18796. front: {
  18797. height: math.unit(5, "feet"),
  18798. weight: math.unit(187, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/person/front.svg",
  18802. extra: 3087 / 2945,
  18803. bottom: 91 / 3181
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Micro",
  18810. height: math.unit(3, "inches")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(5, "feet"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(90, "feet")
  18820. },
  18821. {
  18822. name: "Max Size",
  18823. height: math.unit(280, "feet")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Ty" },
  18829. {
  18830. front: {
  18831. height: math.unit(4.5, "meters"),
  18832. weight: math.unit(3200, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/ty/front.svg",
  18836. extra: 1038 / 960,
  18837. bottom: 31.156 / 1068
  18838. }
  18839. },
  18840. back: {
  18841. height: math.unit(4.5, "meters"),
  18842. weight: math.unit(3200, "lb"),
  18843. name: "Back",
  18844. image: {
  18845. source: "./media/characters/ty/back.svg",
  18846. extra: 1044 / 966,
  18847. bottom: 7.48 / 1049
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(4.5, "meters"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Rocky" },
  18861. {
  18862. front: {
  18863. height: math.unit(5 + 4 / 12, "feet"),
  18864. weight: math.unit(115, "lb"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/rocky/front.svg",
  18868. extra: 1012 / 975,
  18869. bottom: 54 / 1066
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(5 + 4 / 12, "feet"),
  18877. default: true
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Ruin" },
  18883. {
  18884. upright: {
  18885. height: math.unit(6, "meters"),
  18886. weight: math.unit(4000, "kg"),
  18887. name: "Upright",
  18888. image: {
  18889. source: "./media/characters/ruin/upright.svg",
  18890. extra: 668 / 661,
  18891. bottom: 42 / 799.8396
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(6, "meters"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Robin" },
  18905. {
  18906. front: {
  18907. height: math.unit(5, "feet"),
  18908. weight: math.unit(106, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/robin/front.svg",
  18912. extra: 862 / 799,
  18913. bottom: 42.4 / 914.8856
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(5, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Saian" },
  18927. {
  18928. side: {
  18929. height: math.unit(3, "feet"),
  18930. weight: math.unit(225, "lb"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/saian/side.svg",
  18934. extra: 566 / 356,
  18935. bottom: 79.7 / 643
  18936. }
  18937. },
  18938. maw: {
  18939. height: math.unit(2.85, "feet"),
  18940. name: "Maw",
  18941. image: {
  18942. source: "./media/characters/saian/maw.svg"
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(3, "feet"),
  18950. default: true
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Equus Silvermane" },
  18956. {
  18957. side: {
  18958. height: math.unit(8, "feet"),
  18959. weight: math.unit(300, "lb"),
  18960. name: "Side",
  18961. image: {
  18962. source: "./media/characters/equus-silvermane/side.svg",
  18963. extra: 2176 / 2050,
  18964. bottom: 65.7 / 2245
  18965. }
  18966. },
  18967. front: {
  18968. height: math.unit(8, "feet"),
  18969. weight: math.unit(300, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/equus-silvermane/front.svg",
  18973. extra: 4633 / 4400,
  18974. bottom: 71.3 / 4706.915
  18975. }
  18976. },
  18977. sideStepping: {
  18978. height: math.unit(8, "feet"),
  18979. weight: math.unit(300, "lb"),
  18980. name: "Side (Stepping)",
  18981. image: {
  18982. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18983. extra: 1968 / 1860,
  18984. bottom: 16.4 / 1989
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(8, "feet")
  18992. },
  18993. {
  18994. name: "Minimacro",
  18995. height: math.unit(75, "feet"),
  18996. default: true
  18997. },
  18998. {
  18999. name: "Macro",
  19000. height: math.unit(150, "feet")
  19001. },
  19002. {
  19003. name: "Macro+",
  19004. height: math.unit(1000, "feet")
  19005. },
  19006. {
  19007. name: "Megamacro",
  19008. height: math.unit(1, "mile")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Windar" },
  19014. {
  19015. side: {
  19016. height: math.unit(20, "feet"),
  19017. weight: math.unit(30000, "kg"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/windar/side.svg",
  19021. extra: 1491 / 1248,
  19022. bottom: 82.56 / 1568
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(20, "feet"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Melody" },
  19036. {
  19037. side: {
  19038. height: math.unit(15.66, "feet"),
  19039. weight: math.unit(150, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/melody/side.svg",
  19043. extra: 1097 / 944,
  19044. bottom: 11.8 / 1109
  19045. }
  19046. },
  19047. sideOutfit: {
  19048. height: math.unit(15.66, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Side (Outfit)",
  19051. image: {
  19052. source: "./media/characters/melody/side-outfit.svg",
  19053. extra: 1097 / 944,
  19054. bottom: 11.8 / 1109
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(15.66, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Windera" },
  19068. {
  19069. front: {
  19070. height: math.unit(8, "feet"),
  19071. weight: math.unit(325, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/windera/front.svg",
  19075. extra: 3180 / 2845,
  19076. bottom: 178 / 3365
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(8, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Sonear" },
  19090. {
  19091. front: {
  19092. height: math.unit(28.75, "feet"),
  19093. weight: math.unit(2000, "kg"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/sonear/front.svg",
  19097. extra: 1041.1 / 964.9,
  19098. bottom: 53.7 / 1096.6
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(28.75, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Kanara" },
  19112. {
  19113. side: {
  19114. height: math.unit(25.5, "feet"),
  19115. weight: math.unit(23000, "kg"),
  19116. name: "Side",
  19117. image: {
  19118. source: "./media/characters/kanara/side.svg"
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(25.5, "feet"),
  19126. default: true
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Ereus" },
  19132. {
  19133. side: {
  19134. height: math.unit(10, "feet"),
  19135. weight: math.unit(1000, "kg"),
  19136. name: "Side",
  19137. image: {
  19138. source: "./media/characters/ereus/side.svg",
  19139. extra: 1157 / 959,
  19140. bottom: 153 / 1312.5
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(10, "feet"),
  19148. default: true
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "E-ter" },
  19154. {
  19155. side: {
  19156. height: math.unit(4.5, "feet"),
  19157. weight: math.unit(500, "lb"),
  19158. name: "Side",
  19159. image: {
  19160. source: "./media/characters/e-ter/side.svg",
  19161. extra: 1550 / 1248,
  19162. bottom: 146 / 1694
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(4.5, "feet"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Yamie" },
  19176. {
  19177. side: {
  19178. height: math.unit(9.7, "feet"),
  19179. weight: math.unit(4000, "kg"),
  19180. name: "Side",
  19181. image: {
  19182. source: "./media/characters/yamie/side.svg"
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(9.7, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Anders" },
  19196. {
  19197. front: {
  19198. height: math.unit(50, "feet"),
  19199. weight: math.unit(50000, "kg"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/anders/front.svg",
  19203. extra: 570 / 539,
  19204. bottom: 14.7 / 586.7
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Large",
  19211. height: math.unit(50, "feet")
  19212. },
  19213. {
  19214. name: "Macro",
  19215. height: math.unit(2000, "feet"),
  19216. default: true
  19217. },
  19218. {
  19219. name: "Megamacro",
  19220. height: math.unit(12, "miles")
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Reban" },
  19226. {
  19227. front: {
  19228. height: math.unit(7 + 2 / 12, "feet"),
  19229. weight: math.unit(300, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/reban/front.svg",
  19233. extra: 516 / 487,
  19234. bottom: 42.82 / 558.356
  19235. }
  19236. },
  19237. dick: {
  19238. height: math.unit(7 / 5, "feet"),
  19239. name: "Dick",
  19240. image: {
  19241. source: "./media/characters/reban/dick.svg"
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Natural Height",
  19248. height: math.unit(7 + 2 / 12, "feet")
  19249. },
  19250. {
  19251. name: "Macro",
  19252. height: math.unit(500, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Canon Height",
  19257. height: math.unit(50, "AU")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Terrance Keayes" },
  19263. {
  19264. front: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/terrance-keayes/front.svg",
  19270. extra: 1.005,
  19271. bottom: 151 / 1615
  19272. }
  19273. },
  19274. side: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Side",
  19278. image: {
  19279. source: "./media/characters/terrance-keayes/side.svg",
  19280. extra: 1.005,
  19281. bottom: 129.4 / 1544
  19282. }
  19283. },
  19284. back: {
  19285. height: math.unit(6, "feet"),
  19286. weight: math.unit(150, "lb"),
  19287. name: "Back",
  19288. image: {
  19289. source: "./media/characters/terrance-keayes/back.svg",
  19290. extra: 1.005,
  19291. bottom: 58.4 / 1557.3
  19292. }
  19293. },
  19294. dick: {
  19295. height: math.unit(6 * 0.208, "feet"),
  19296. name: "Dick",
  19297. image: {
  19298. source: "./media/characters/terrance-keayes/dick.svg"
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Canon Height",
  19305. height: math.unit(35, "miles"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Ofelia" },
  19312. {
  19313. front: {
  19314. height: math.unit(6, "feet"),
  19315. weight: math.unit(150, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/ofelia/front.svg",
  19319. extra: 546 / 541,
  19320. bottom: 39 / 583
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(6, "feet"),
  19325. weight: math.unit(150, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/ofelia/back.svg",
  19329. extra: 564 / 559.5,
  19330. bottom: 8.69 / 573.02
  19331. }
  19332. },
  19333. maw: {
  19334. height: math.unit(1, "feet"),
  19335. name: "Maw",
  19336. image: {
  19337. source: "./media/characters/ofelia/maw.svg"
  19338. }
  19339. },
  19340. foot: {
  19341. height: math.unit(1.949, "feet"),
  19342. name: "Foot",
  19343. image: {
  19344. source: "./media/characters/ofelia/foot.svg"
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Canon Height",
  19351. height: math.unit(2000, "miles"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Samuel" },
  19358. {
  19359. front: {
  19360. height: math.unit(6, "feet"),
  19361. weight: math.unit(150, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/samuel/front.svg",
  19365. extra: 265 / 258,
  19366. bottom: 2 / 266.1566
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Macro",
  19373. height: math.unit(100, "feet"),
  19374. default: true
  19375. },
  19376. {
  19377. name: "Full Size",
  19378. height: math.unit(1000, "miles")
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Beishir Kiel" },
  19384. {
  19385. front: {
  19386. height: math.unit(6, "feet"),
  19387. weight: math.unit(300, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/beishir-kiel/front.svg",
  19391. extra: 569 / 547,
  19392. bottom: 41.9 / 609
  19393. }
  19394. },
  19395. maw: {
  19396. height: math.unit(6 * 0.202, "feet"),
  19397. name: "Maw",
  19398. image: {
  19399. source: "./media/characters/beishir-kiel/maw.svg"
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Macro",
  19406. height: math.unit(300, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Logan Grey" },
  19413. {
  19414. front: {
  19415. height: math.unit(5 + 8 / 12, "feet"),
  19416. weight: math.unit(120, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/logan-grey/front.svg",
  19420. extra: 2539 / 2393,
  19421. bottom: 97.6 / 2636.37
  19422. }
  19423. },
  19424. frontAlt: {
  19425. height: math.unit(5 + 8 / 12, "feet"),
  19426. weight: math.unit(120, "lb"),
  19427. name: "Front (Alt)",
  19428. image: {
  19429. source: "./media/characters/logan-grey/front-alt.svg",
  19430. extra: 958 / 893,
  19431. bottom: 15 / 970.768
  19432. }
  19433. },
  19434. back: {
  19435. height: math.unit(5 + 8 / 12, "feet"),
  19436. weight: math.unit(120, "lb"),
  19437. name: "Back",
  19438. image: {
  19439. source: "./media/characters/logan-grey/back.svg",
  19440. extra: 958 / 893,
  19441. bottom: 2.1881 / 970.9788
  19442. }
  19443. },
  19444. dick: {
  19445. height: math.unit(1.437, "feet"),
  19446. name: "Dick",
  19447. image: {
  19448. source: "./media/characters/logan-grey/dick.svg"
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(5 + 8 / 12, "feet")
  19456. },
  19457. {
  19458. name: "The 500 Foot Femboy",
  19459. height: math.unit(500, "feet"),
  19460. default: true
  19461. },
  19462. {
  19463. name: "Megmacro",
  19464. height: math.unit(20, "miles")
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Draganta" },
  19470. {
  19471. front: {
  19472. height: math.unit(8 + 2 / 12, "feet"),
  19473. weight: math.unit(275, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/draganta/front.svg",
  19477. extra: 1177 / 1135,
  19478. bottom: 33.46 / 1212.1
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(8 + 6 / 12, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Macro",
  19490. height: math.unit(150, "feet")
  19491. },
  19492. {
  19493. name: "Megamacro",
  19494. height: math.unit(1000, "miles")
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Voski", species: "Corvid" },
  19500. {
  19501. front: {
  19502. height: math.unit(1.72, "m"),
  19503. weight: math.unit(80, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/voski/front.svg",
  19507. extra: 2076.22 / 2022.4,
  19508. bottom: 102.7 / 2177.3866
  19509. }
  19510. },
  19511. frontNsfw: {
  19512. height: math.unit(1.72, "m"),
  19513. weight: math.unit(80, "lb"),
  19514. name: "Front (NSFW)",
  19515. image: {
  19516. source: "./media/characters/voski/front-nsfw.svg",
  19517. extra: 2076.22 / 2022.4,
  19518. bottom: 102.7 / 2177.3866
  19519. }
  19520. },
  19521. back: {
  19522. height: math.unit(1.72, "m"),
  19523. weight: math.unit(80, "lb"),
  19524. name: "Back",
  19525. image: {
  19526. source: "./media/characters/voski/back.svg",
  19527. extra: 2104 / 2051,
  19528. bottom: 10.45 / 2113.63
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(1.72, "m")
  19536. },
  19537. {
  19538. name: "Macro",
  19539. height: math.unit(55, "m"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro+",
  19544. height: math.unit(300, "m")
  19545. },
  19546. {
  19547. name: "Macro++",
  19548. height: math.unit(700, "m")
  19549. },
  19550. {
  19551. name: "Macro+++",
  19552. height: math.unit(4500, "m")
  19553. },
  19554. {
  19555. name: "Macro++++",
  19556. height: math.unit(45, "km")
  19557. },
  19558. {
  19559. name: "Macro+++++",
  19560. height: math.unit(1220, "km")
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Icowom Lee" },
  19566. {
  19567. front: {
  19568. height: math.unit(2.3, "m"),
  19569. weight: math.unit(304, "kg"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/icowom-lee/front.svg",
  19573. extra: 3076 / 2933,
  19574. bottom: 51.4 / 3125.1889
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(2.3, "meters"),
  19582. default: true
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(94, "meters"),
  19587. default: true
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19593. {
  19594. front: {
  19595. height: math.unit(22, "meters"),
  19596. weight: math.unit(21000, "kg"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/shock-diamond/front.svg",
  19600. extra: 2204 / 2053,
  19601. bottom: 65 / 2239.47
  19602. }
  19603. },
  19604. frontNude: {
  19605. height: math.unit(22, "meters"),
  19606. weight: math.unit(21000, "kg"),
  19607. name: "Front (Nude)",
  19608. image: {
  19609. source: "./media/characters/shock-diamond/front-nude.svg",
  19610. extra: 2514 / 2285,
  19611. bottom: 13 / 2527.56
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(3, "meters")
  19619. },
  19620. {
  19621. name: "Macro",
  19622. height: math.unit(22, "meters"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Rory" },
  19629. {
  19630. front: {
  19631. height: math.unit(5 + 4 / 12, "feet"),
  19632. weight: math.unit(120, "lb"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/rory/front.svg",
  19636. extra: 589 / 556,
  19637. bottom: 45.7 / 635.76
  19638. }
  19639. },
  19640. frontNude: {
  19641. height: math.unit(5 + 4 / 12, "feet"),
  19642. weight: math.unit(120, "lb"),
  19643. name: "Front (Nude)",
  19644. image: {
  19645. source: "./media/characters/rory/front-nude.svg",
  19646. extra: 589 / 556,
  19647. bottom: 45.7 / 635.76
  19648. }
  19649. },
  19650. side: {
  19651. height: math.unit(5 + 4 / 12, "feet"),
  19652. weight: math.unit(120, "lb"),
  19653. name: "Side",
  19654. image: {
  19655. source: "./media/characters/rory/side.svg",
  19656. extra: 597 / 564,
  19657. bottom: 55 / 653
  19658. }
  19659. },
  19660. back: {
  19661. height: math.unit(5 + 4 / 12, "feet"),
  19662. weight: math.unit(120, "lb"),
  19663. name: "Back",
  19664. image: {
  19665. source: "./media/characters/rory/back.svg",
  19666. extra: 620 / 585,
  19667. bottom: 8.86 / 630.43
  19668. }
  19669. },
  19670. dick: {
  19671. height: math.unit(0.86, "feet"),
  19672. name: "Dick",
  19673. image: {
  19674. source: "./media/characters/rory/dick.svg"
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(5 + 4 / 12, "feet"),
  19682. default: true
  19683. },
  19684. {
  19685. name: "Macro",
  19686. height: math.unit(100, "feet")
  19687. },
  19688. {
  19689. name: "Macro+",
  19690. height: math.unit(140, "feet")
  19691. },
  19692. {
  19693. name: "Macro++",
  19694. height: math.unit(300, "feet")
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Sprisk" },
  19700. {
  19701. front: {
  19702. height: math.unit(5 + 9 / 12, "feet"),
  19703. weight: math.unit(190, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/sprisk/front.svg",
  19707. extra: 1225 / 1180,
  19708. bottom: 42.7 / 1266.4
  19709. }
  19710. },
  19711. frontNsfw: {
  19712. height: math.unit(5 + 9 / 12, "feet"),
  19713. weight: math.unit(190, "lb"),
  19714. name: "Front (NSFW)",
  19715. image: {
  19716. source: "./media/characters/sprisk/front-nsfw.svg",
  19717. extra: 1225 / 1180,
  19718. bottom: 42.7 / 1266.4
  19719. }
  19720. },
  19721. back: {
  19722. height: math.unit(5 + 9 / 12, "feet"),
  19723. weight: math.unit(190, "lb"),
  19724. name: "Back",
  19725. image: {
  19726. source: "./media/characters/sprisk/back.svg",
  19727. extra: 1247 / 1200,
  19728. bottom: 5.6 / 1253.04
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Tiny",
  19735. height: math.unit(2, "inches")
  19736. },
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 9 / 12, "feet"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Mini Macro",
  19744. height: math.unit(18, "feet")
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(100, "feet")
  19749. },
  19750. {
  19751. name: "MACRO",
  19752. height: math.unit(50, "miles")
  19753. },
  19754. {
  19755. name: "M A C R O",
  19756. height: math.unit(300, "miles")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Bunsen" },
  19762. {
  19763. side: {
  19764. height: math.unit(15.6, "meters"),
  19765. weight: math.unit(700000, "kg"),
  19766. name: "Side",
  19767. image: {
  19768. source: "./media/characters/bunsen/side.svg",
  19769. extra: 1644 / 358
  19770. }
  19771. },
  19772. foot: {
  19773. height: math.unit(1.611 * 1644 / 358, "meter"),
  19774. name: "Foot",
  19775. image: {
  19776. source: "./media/characters/bunsen/foot.svg"
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Small",
  19783. height: math.unit(10, "feet")
  19784. },
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(15.6, "meters"),
  19788. default: true
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Sesh" },
  19794. {
  19795. front: {
  19796. height: math.unit(4 + 11 / 12, "feet"),
  19797. weight: math.unit(140, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/sesh/front.svg",
  19801. extra: 3420 / 3231,
  19802. bottom: 72 / 3949.5
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(4 + 11 / 12, "feet")
  19810. },
  19811. {
  19812. name: "Grown",
  19813. height: math.unit(15, "feet"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(1500, "feet")
  19819. },
  19820. {
  19821. name: "Megamacro",
  19822. height: math.unit(30, "miles")
  19823. },
  19824. {
  19825. name: "Continental",
  19826. height: math.unit(3000, "miles")
  19827. },
  19828. {
  19829. name: "Gravity Mass",
  19830. height: math.unit(300000, "miles")
  19831. },
  19832. {
  19833. name: "Planet Buster",
  19834. height: math.unit(30000000, "miles")
  19835. },
  19836. {
  19837. name: "Big",
  19838. height: math.unit(3000000000, "miles")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Pepper" },
  19844. {
  19845. front: {
  19846. height: math.unit(9, "feet"),
  19847. weight: math.unit(350, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/pepper/front.svg",
  19851. extra: 1448/1312,
  19852. bottom: 9.4/1457.88
  19853. }
  19854. },
  19855. back: {
  19856. height: math.unit(9, "feet"),
  19857. weight: math.unit(350, "lb"),
  19858. name: "Back",
  19859. image: {
  19860. source: "./media/characters/pepper/back.svg",
  19861. extra: 1423/1300,
  19862. bottom: 4.6/1429
  19863. }
  19864. },
  19865. maw: {
  19866. height: math.unit(0.932, "feet"),
  19867. name: "Maw",
  19868. image: {
  19869. source: "./media/characters/pepper/maw.svg"
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(9, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Maelstrom" },
  19883. {
  19884. front: {
  19885. height: math.unit(6, "feet"),
  19886. weight: math.unit(150, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/maelstrom/front.svg",
  19890. extra: 2100/1883,
  19891. bottom: 94/2196.7
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Less Kaiju",
  19898. height: math.unit(200, "feet")
  19899. },
  19900. {
  19901. name: "Kaiju",
  19902. height: math.unit(400, "feet"),
  19903. default: true
  19904. },
  19905. {
  19906. name: "Kaiju-er",
  19907. height: math.unit(600, "feet")
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Lexir" },
  19913. {
  19914. front: {
  19915. height: math.unit(6 + 5/12, "feet"),
  19916. weight: math.unit(180, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/lexir/front.svg",
  19920. extra: 180/172,
  19921. bottom: 12/192
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(6 + 5/12, "feet"),
  19926. weight: math.unit(180, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/lexir/back.svg",
  19930. extra: 183.84/175.5,
  19931. bottom: 3.1/187
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Very Smal",
  19938. height: math.unit(1, "nm")
  19939. },
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(6 + 5/12, "feet"),
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(1, "mile")
  19948. },
  19949. {
  19950. name: "Megamacro",
  19951. height: math.unit(50, "miles")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Maksio" },
  19957. {
  19958. front: {
  19959. height: math.unit(1.5, "meters"),
  19960. weight: math.unit(100, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/maksio/front.svg",
  19964. extra: 1549/1531,
  19965. bottom: 123.7/1674.5429
  19966. }
  19967. },
  19968. back: {
  19969. height: math.unit(1.5, "meters"),
  19970. weight: math.unit(100, "lb"),
  19971. name: "Back",
  19972. image: {
  19973. source: "./media/characters/maksio/back.svg",
  19974. extra: 1541/1509,
  19975. bottom: 97/1639
  19976. }
  19977. },
  19978. hand: {
  19979. height: math.unit(0.621, "feet"),
  19980. name: "Hand",
  19981. image: {
  19982. source: "./media/characters/maksio/hand.svg"
  19983. }
  19984. },
  19985. foot: {
  19986. height: math.unit(1.611, "feet"),
  19987. name: "Foot",
  19988. image: {
  19989. source: "./media/characters/maksio/foot.svg"
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Shrunken",
  19996. height: math.unit(10, "cm")
  19997. },
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(150, "cm"),
  20001. default: true
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Erza Bear" },
  20007. {
  20008. front: {
  20009. height: math.unit(100, "feet"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/erza-bear/front.svg",
  20013. extra: 2449/2390,
  20014. bottom: 46/2494
  20015. }
  20016. },
  20017. back: {
  20018. height: math.unit(100, "feet"),
  20019. name: "Back",
  20020. image: {
  20021. source: "./media/characters/erza-bear/back.svg",
  20022. extra: 2489/2430,
  20023. bottom: 85.4/2480
  20024. }
  20025. },
  20026. tail: {
  20027. height: math.unit(42, "feet"),
  20028. name: "Tail",
  20029. image: {
  20030. source: "./media/characters/erza-bear/tail.svg"
  20031. }
  20032. },
  20033. tongue: {
  20034. height: math.unit(8, "feet"),
  20035. name: "Tongue",
  20036. image: {
  20037. source: "./media/characters/erza-bear/tongue.svg"
  20038. }
  20039. },
  20040. dick: {
  20041. height: math.unit(10.5, "feet"),
  20042. name: "Dick",
  20043. image: {
  20044. source: "./media/characters/erza-bear/dick.svg"
  20045. }
  20046. },
  20047. dickVertical: {
  20048. height: math.unit(16.9, "feet"),
  20049. name: "Dick (Vertical)",
  20050. image: {
  20051. source: "./media/characters/erza-bear/dick-vertical.svg"
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Macro",
  20058. height: math.unit(100, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Violet Flor", species: "Skunk" },
  20065. {
  20066. front: {
  20067. height: math.unit(172, "cm"),
  20068. weight: math.unit(73, "kg"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/violet-flor/front.svg",
  20072. extra: 1530/1442,
  20073. bottom: 61.9/1588.8
  20074. }
  20075. },
  20076. back: {
  20077. height: math.unit(180, "cm"),
  20078. weight: math.unit(73, "kg"),
  20079. name: "Back",
  20080. image: {
  20081. source: "./media/characters/violet-flor/back.svg",
  20082. extra: 1692/1630,
  20083. bottom: 20/1712
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(172, "cm"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Lynn Rhea", species: "Shark" },
  20097. {
  20098. front: {
  20099. height: math.unit(6, "feet"),
  20100. weight: math.unit(220, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/lynn-rhea/front.svg",
  20104. extra: 310/273
  20105. }
  20106. },
  20107. back: {
  20108. height: math.unit(6, "feet"),
  20109. weight: math.unit(220, "lb"),
  20110. name: "Back",
  20111. image: {
  20112. source: "./media/characters/lynn-rhea/back.svg",
  20113. extra: 310/273
  20114. }
  20115. },
  20116. dicks: {
  20117. height: math.unit(0.9, "feet"),
  20118. name: "Dicks",
  20119. image: {
  20120. source: "./media/characters/lynn-rhea/dicks.svg"
  20121. }
  20122. },
  20123. slit: {
  20124. height: math.unit(0.4, "feet"),
  20125. name: "Slit",
  20126. image: {
  20127. source: "./media/characters/lynn-rhea/slit.svg"
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Micro",
  20134. height: math.unit(1, "inch")
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(60, "feet"),
  20139. default: true
  20140. },
  20141. {
  20142. name: "Megamacro",
  20143. height: math.unit(2, "miles")
  20144. },
  20145. {
  20146. name: "Gigamacro",
  20147. height: math.unit(3, "earths")
  20148. },
  20149. {
  20150. name: "Galactic",
  20151. height: math.unit(0.8, "galaxies")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Valathos" },
  20157. {
  20158. front: {
  20159. height: math.unit(1600, "feet"),
  20160. weight: math.unit(85758785169, "kg"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/valathos/front.svg",
  20164. extra: 1451/1339
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Macro",
  20171. height: math.unit(1600, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Azula" },
  20178. {
  20179. front: {
  20180. height: math.unit(7 + 5/12, "feet"),
  20181. weight: math.unit(300, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/azula/front.svg",
  20185. extra: 3208/2880,
  20186. bottom: 80.2/3277
  20187. }
  20188. },
  20189. back: {
  20190. height: math.unit(7 + 5/12, "feet"),
  20191. weight: math.unit(300, "lb"),
  20192. name: "Back",
  20193. image: {
  20194. source: "./media/characters/azula/back.svg",
  20195. extra: 3169/2822,
  20196. bottom: 150.6/3321
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(7 + 5/12, "feet"),
  20204. default: true
  20205. },
  20206. {
  20207. name: "Big",
  20208. height: math.unit(20, "feet")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Rupert" },
  20214. {
  20215. front: {
  20216. height: math.unit(5 + 1/12, "feet"),
  20217. weight: math.unit(110, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/rupert/front.svg",
  20221. extra: 1549/1495,
  20222. bottom: 54.2/1604.4
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(5 + 1/12, "feet"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Sheera Castellar" },
  20236. {
  20237. front: {
  20238. height: math.unit(8 + 4/12, "feet"),
  20239. weight: math.unit(350, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/sheera-castellar/front.svg",
  20243. extra: 1957/1894,
  20244. bottom: 26.97/1975.017
  20245. }
  20246. },
  20247. side: {
  20248. height: math.unit(8 + 4/12, "feet"),
  20249. weight: math.unit(350, "lb"),
  20250. name: "Side",
  20251. image: {
  20252. source: "./media/characters/sheera-castellar/side.svg",
  20253. extra: 1957/1894
  20254. }
  20255. },
  20256. back: {
  20257. height: math.unit(8 + 4/12, "feet"),
  20258. weight: math.unit(350, "lb"),
  20259. name: "Back",
  20260. image: {
  20261. source: "./media/characters/sheera-castellar/back.svg",
  20262. extra: 1957/1894
  20263. }
  20264. },
  20265. angled: {
  20266. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20267. weight: math.unit(350, "lb"),
  20268. name: "Angled",
  20269. image: {
  20270. source: "./media/characters/sheera-castellar/angled.svg",
  20271. extra: 1807/1707,
  20272. bottom: 68/1875
  20273. }
  20274. },
  20275. genitals: {
  20276. height: math.unit(2.2, "feet"),
  20277. name: "Genitals",
  20278. image: {
  20279. source: "./media/characters/sheera-castellar/genitals.svg"
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(8 + 4/12, "feet")
  20287. },
  20288. {
  20289. name: "Macro",
  20290. height: math.unit(150, "feet"),
  20291. default: true
  20292. },
  20293. {
  20294. name: "Macro+",
  20295. height: math.unit(800, "feet")
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Jaipur", species: "Black Panther" },
  20301. {
  20302. front: {
  20303. height: math.unit(6, "feet"),
  20304. weight: math.unit(150, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/jaipur/front.svg",
  20308. extra: 3860/3731,
  20309. bottom: 287/4140
  20310. }
  20311. },
  20312. back: {
  20313. height: math.unit(6, "feet"),
  20314. weight: math.unit(150, "lb"),
  20315. name: "Back",
  20316. image: {
  20317. source: "./media/characters/jaipur/back.svg",
  20318. extra: 4060/3930,
  20319. bottom: 151/4200
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(1.85, "meters"),
  20327. default: true
  20328. },
  20329. {
  20330. name: "Macro",
  20331. height: math.unit(150, "meters")
  20332. },
  20333. {
  20334. name: "Macro+",
  20335. height: math.unit(0.5, "miles")
  20336. },
  20337. {
  20338. name: "Macro++",
  20339. height: math.unit(2.5, "miles")
  20340. },
  20341. {
  20342. name: "Macro+++",
  20343. height: math.unit(12, "miles")
  20344. },
  20345. {
  20346. name: "Macro++++",
  20347. height: math.unit(120, "miles")
  20348. },
  20349. {
  20350. name: "Macro+++++",
  20351. height: math.unit(1200, "miles")
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Sheila (Wolf)" },
  20357. {
  20358. front: {
  20359. height: math.unit(6, "feet"),
  20360. weight: math.unit(150, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/sheila-wolf/front.svg",
  20364. extra: 1931/1808,
  20365. bottom: 29.5/1960
  20366. }
  20367. },
  20368. dick: {
  20369. height: math.unit(1.464, "feet"),
  20370. name: "Dick",
  20371. image: {
  20372. source: "./media/characters/sheila-wolf/dick.svg"
  20373. }
  20374. },
  20375. muzzle: {
  20376. height: math.unit(0.513, "feet"),
  20377. name: "Muzzle",
  20378. image: {
  20379. source: "./media/characters/sheila-wolf/muzzle.svg"
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Macro",
  20386. height: math.unit(70, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Almor", species: "Dragon" },
  20393. {
  20394. front: {
  20395. height: math.unit(32, "meters"),
  20396. weight: math.unit(300000, "kg"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/almor/front.svg",
  20400. extra: 1408/1322,
  20401. bottom: 94.6/1506.5
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Macro",
  20408. height: math.unit(32, "meters"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Silver" },
  20415. {
  20416. front: {
  20417. height: math.unit(7, "feet"),
  20418. weight: math.unit(200, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/silver/front.svg",
  20422. extra: 472.1/450.5,
  20423. bottom: 26.5/499.424
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(7, "feet"),
  20431. default: true
  20432. },
  20433. {
  20434. name: "Macro",
  20435. height: math.unit(800, "feet")
  20436. },
  20437. {
  20438. name: "Megamacro",
  20439. height: math.unit(250, "miles")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Pliskin" },
  20445. {
  20446. front: {
  20447. height: math.unit(6, "feet"),
  20448. weight: math.unit(150, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/pliskin/front.svg",
  20452. extra: 1469/1359,
  20453. bottom: 70/1540
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Micro",
  20460. height: math.unit(3, "inches")
  20461. },
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(5 + 11/12, "feet"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(120, "feet")
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Sammy" },
  20475. {
  20476. front: {
  20477. height: math.unit(6, "feet"),
  20478. weight: math.unit(150, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/sammy/front.svg",
  20482. extra: 1193/1089,
  20483. bottom: 30.5/1226
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Macro",
  20490. height: math.unit(1700, "feet"),
  20491. default: true
  20492. },
  20493. {
  20494. name: "Examacro",
  20495. height: math.unit(2.5e9, "lightyears")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Kuru", species: "Umbra" },
  20501. {
  20502. front: {
  20503. height: math.unit(21, "meters"),
  20504. weight: math.unit(12, "tonnes"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/kuru/front.svg",
  20508. extra: 4301/3785,
  20509. bottom: 371.3/4691
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Macro",
  20516. height: math.unit(21, "meters"),
  20517. default: true
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Rakka", species: "Umbra" },
  20523. {
  20524. front: {
  20525. height: math.unit(23, "meters"),
  20526. weight: math.unit(12.2, "tonnes"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/rakka/front.svg",
  20530. extra: 4670/4169,
  20531. bottom: 301/4968.7
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Macro",
  20538. height: math.unit(23, "meters"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Rhys (Feline)" },
  20545. {
  20546. front: {
  20547. height: math.unit(6, "feet"),
  20548. weight: math.unit(150, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/rhys-feline/front.svg",
  20552. extra: 2488/2308,
  20553. bottom: 35.67/2519.19
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Really Small",
  20560. height: math.unit(1, "nm")
  20561. },
  20562. {
  20563. name: "Micro",
  20564. height: math.unit(4, "inches")
  20565. },
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(4 + 10/12, "feet"),
  20569. default: true
  20570. },
  20571. {
  20572. name: "Macro",
  20573. height: math.unit(100, "feet")
  20574. },
  20575. {
  20576. name: "Megamacto",
  20577. height: math.unit(50, "miles")
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Alydar", species: "Raven/Snow Leopard" },
  20583. {
  20584. side: {
  20585. height: math.unit(30, "feet"),
  20586. weight: math.unit(35000, "kg"),
  20587. name: "Side",
  20588. image: {
  20589. source: "./media/characters/alydar/side.svg",
  20590. extra: 234/222,
  20591. bottom: 6.5/241
  20592. }
  20593. },
  20594. front: {
  20595. height: math.unit(30, "feet"),
  20596. weight: math.unit(35000, "kg"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/alydar/front.svg",
  20600. extra: 223.37/210.2,
  20601. bottom: 22.3/246.76
  20602. }
  20603. },
  20604. top: {
  20605. height: math.unit(64.54, "feet"),
  20606. weight: math.unit(35000, "kg"),
  20607. name: "Top",
  20608. image: {
  20609. source: "./media/characters/alydar/top.svg"
  20610. }
  20611. },
  20612. anthro: {
  20613. height: math.unit(30, "feet"),
  20614. weight: math.unit(9000, "kg"),
  20615. name: "Anthro",
  20616. image: {
  20617. source: "./media/characters/alydar/anthro.svg",
  20618. extra: 432/421,
  20619. bottom: 7.18/440
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(11.693, "feet"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/alydar/maw.svg"
  20627. }
  20628. },
  20629. head: {
  20630. height: math.unit(11.693, "feet"),
  20631. name: "Head",
  20632. image: {
  20633. source: "./media/characters/alydar/head.svg"
  20634. }
  20635. },
  20636. headAlt: {
  20637. height: math.unit(12.861, "feet"),
  20638. name: "Head (Alt)",
  20639. image: {
  20640. source: "./media/characters/alydar/head-alt.svg"
  20641. }
  20642. },
  20643. wing: {
  20644. height: math.unit(20.712, "feet"),
  20645. name: "Wing",
  20646. image: {
  20647. source: "./media/characters/alydar/wing.svg"
  20648. }
  20649. },
  20650. wingFeather: {
  20651. height: math.unit(9.662, "feet"),
  20652. name: "Wing Feather",
  20653. image: {
  20654. source: "./media/characters/alydar/wing-feather.svg"
  20655. }
  20656. },
  20657. countourFeather: {
  20658. height: math.unit(4.154, "feet"),
  20659. name: "Contour Feather",
  20660. image: {
  20661. source: "./media/characters/alydar/contour-feather.svg"
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Diplomatic",
  20668. height: math.unit(13, "feet"),
  20669. default: true
  20670. },
  20671. {
  20672. name: "Small",
  20673. height: math.unit(30, "feet")
  20674. },
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(95, "feet"),
  20678. default: true
  20679. },
  20680. {
  20681. name: "Large",
  20682. height: math.unit(285, "feet")
  20683. },
  20684. {
  20685. name: "Incomprehensible",
  20686. height: math.unit(450, "megameters")
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Selicia" },
  20692. {
  20693. side: {
  20694. height: math.unit(11, "feet"),
  20695. weight: math.unit(1750, "kg"),
  20696. name: "Side",
  20697. image: {
  20698. source: "./media/characters/selicia/side.svg",
  20699. extra: 440/396,
  20700. bottom: 24.8/465.979
  20701. }
  20702. },
  20703. maw: {
  20704. height: math.unit(4.665, "feet"),
  20705. name: "Maw",
  20706. image: {
  20707. source: "./media/characters/selicia/maw.svg"
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(11, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Layla" },
  20721. {
  20722. side: {
  20723. height: math.unit(2 + 6 /12, "feet"),
  20724. weight: math.unit(30, "lb"),
  20725. name: "Side",
  20726. image: {
  20727. source: "./media/characters/layla/side.svg",
  20728. extra: 244/188,
  20729. bottom: 18.2/262.1
  20730. }
  20731. },
  20732. back: {
  20733. height: math.unit(2 + 6 /12, "feet"),
  20734. weight: math.unit(30, "lb"),
  20735. name: "Back",
  20736. image: {
  20737. source: "./media/characters/layla/back.svg",
  20738. extra: 308/241.5,
  20739. bottom: 8.9/316.8
  20740. }
  20741. },
  20742. cumming: {
  20743. height: math.unit(2 + 6 /12, "feet"),
  20744. weight: math.unit(30, "lb"),
  20745. name: "Cumming",
  20746. image: {
  20747. source: "./media/characters/layla/cumming.svg",
  20748. extra: 342/279,
  20749. bottom: 595/938
  20750. }
  20751. },
  20752. dickFlaccid: {
  20753. height: math.unit(2.595, "feet"),
  20754. name: "Flaccid Genitals",
  20755. image: {
  20756. source: "./media/characters/layla/dick-flaccid.svg"
  20757. }
  20758. },
  20759. dickErect: {
  20760. height: math.unit(2.359, "feet"),
  20761. name: "Erect Genitals",
  20762. image: {
  20763. source: "./media/characters/layla/dick-erect.svg"
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Micro",
  20770. height: math.unit(1, "inch")
  20771. },
  20772. {
  20773. name: "Small",
  20774. height: math.unit(1, "foot")
  20775. },
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(2 + 6/12, "feet"),
  20779. default: true
  20780. },
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(200, "feet")
  20784. },
  20785. {
  20786. name: "Megamacro",
  20787. height: math.unit(1000, "miles")
  20788. },
  20789. {
  20790. name: "Planetary",
  20791. height: math.unit(8000, "miles")
  20792. },
  20793. {
  20794. name: "True Layla",
  20795. height: math.unit(200000*7, "multiverses")
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Knox" },
  20801. {
  20802. back: {
  20803. height: math.unit(10.5, "feet"),
  20804. weight: math.unit(800, "lb"),
  20805. name: "Back",
  20806. image: {
  20807. source: "./media/characters/knox/back.svg",
  20808. extra: 1486/1089,
  20809. bottom: 107/1601.4
  20810. }
  20811. },
  20812. side: {
  20813. height: math.unit(10.5, "feet"),
  20814. weight: math.unit(800, "lb"),
  20815. name: "Side",
  20816. image: {
  20817. source: "./media/characters/knox/side.svg",
  20818. extra: 244/218,
  20819. bottom: 14/260
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Compact",
  20826. height: math.unit(10.5, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Dynamax",
  20831. height: math.unit(210, "feet")
  20832. },
  20833. {
  20834. name: "Full Macro",
  20835. height: math.unit(850, "feet")
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Shin (Pikachu)" },
  20841. {
  20842. front: {
  20843. height: math.unit(6, "feet"),
  20844. weight: math.unit(152, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/shin-pikachu/front.svg",
  20848. extra: 1574/1480,
  20849. bottom: 53.3/1626
  20850. }
  20851. },
  20852. hand: {
  20853. height: math.unit(1.055, "feet"),
  20854. name: "Hand",
  20855. image: {
  20856. source: "./media/characters/shin-pikachu/hand.svg"
  20857. }
  20858. },
  20859. foot: {
  20860. height: math.unit(1.1, "feet"),
  20861. name: "Foot",
  20862. image: {
  20863. source: "./media/characters/shin-pikachu/foot.svg"
  20864. }
  20865. },
  20866. collar: {
  20867. height: math.unit(0.386, "feet"),
  20868. name: "Collar",
  20869. image: {
  20870. source: "./media/characters/shin-pikachu/collar.svg"
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Smallest",
  20877. height: math.unit(0.5, "inches")
  20878. },
  20879. {
  20880. name: "Micro",
  20881. height: math.unit(6, "inches")
  20882. },
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(6, "feet"),
  20886. default: true
  20887. },
  20888. {
  20889. name: "Macro",
  20890. height: math.unit(150, "feet")
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Kayda" },
  20896. {
  20897. front: {
  20898. height: math.unit(28, "feet"),
  20899. weight: math.unit(10500, "lb"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/kayda/front.svg",
  20903. extra: 1536/1428,
  20904. bottom: 68.7/1603
  20905. }
  20906. },
  20907. back: {
  20908. height: math.unit(28, "feet"),
  20909. weight: math.unit(10500, "lb"),
  20910. name: "Back",
  20911. image: {
  20912. source: "./media/characters/kayda/back.svg",
  20913. extra: 1557/1464,
  20914. bottom: 39.5/1597.49
  20915. }
  20916. },
  20917. dick: {
  20918. height: math.unit(3.858, "feet"),
  20919. name: "Dick",
  20920. image: {
  20921. source: "./media/characters/kayda/dick.svg"
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Macro",
  20928. height: math.unit(28, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Brian", species: "Barbary Lion" },
  20935. {
  20936. front: {
  20937. height: math.unit(10 + 11/12, "feet"),
  20938. weight: math.unit(1400, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/brian/front.svg",
  20942. extra: 737/692,
  20943. bottom: 55.4/785
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(10 + 11/12, "feet"),
  20951. default: true
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Khemri", species: "Jackal" },
  20957. {
  20958. front: {
  20959. height: math.unit(5 + 8/12, "feet"),
  20960. weight: math.unit(140, "lb"),
  20961. name: "Front",
  20962. image: {
  20963. source: "./media/characters/khemri/front.svg",
  20964. extra: 4780/4059,
  20965. bottom: 80.1/4859.25
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Micro",
  20972. height: math.unit(6, "inches")
  20973. },
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(5 + 8/12, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Felix Braveheart" },
  20983. {
  20984. front: {
  20985. height: math.unit(13, "feet"),
  20986. weight: math.unit(1700, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/felix-braveheart/front.svg",
  20990. extra: 1222/1157,
  20991. bottom: 53.2/1280
  20992. }
  20993. },
  20994. back: {
  20995. height: math.unit(13, "feet"),
  20996. weight: math.unit(1700, "lb"),
  20997. name: "Back",
  20998. image: {
  20999. source: "./media/characters/felix-braveheart/back.svg",
  21000. extra: 1277/1203,
  21001. bottom: 50.2/1327
  21002. }
  21003. },
  21004. feral: {
  21005. height: math.unit(6, "feet"),
  21006. weight: math.unit(400, "lb"),
  21007. name: "Feral",
  21008. image: {
  21009. source: "./media/characters/felix-braveheart/feral.svg",
  21010. extra: 682/625,
  21011. bottom: 6.9/688
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(13, "feet"),
  21019. default: true
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Shadow Blade" },
  21025. {
  21026. side: {
  21027. height: math.unit(5 + 11/12, "feet"),
  21028. weight: math.unit(1400, "lb"),
  21029. name: "Side",
  21030. image: {
  21031. source: "./media/characters/shadow-blade/side.svg",
  21032. extra: 1726/1267,
  21033. bottom: 58.4/1785
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(5 + 11/12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. //characters
  21046. function makeCharacters() {
  21047. const results = [];
  21048. characterMakers.forEach(character => {
  21049. results.push(character());
  21050. });
  21051. return results;
  21052. }