less copy protection, more size visualization
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

20804 rindas
496 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(30, "meter"),
  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, "meter"),
  103. info: {
  104. description: {
  105. mode: "append",
  106. text: "\n\nTOO DAMN BIG"
  107. }
  108. }
  109. },
  110. {
  111. name: "Macro+",
  112. height: math.unit(1000, "meter")
  113. },
  114. {
  115. name: "Megamacro",
  116. height: math.unit(10, "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: 639 / 626,
  450. bottom: 58.7 / 697.8
  451. }
  452. },
  453. side: {
  454. height: math.unit(1.65, "meters"),
  455. weight: math.unit(50, "kg"),
  456. name: "Side",
  457. image: {
  458. source: "./media/characters/elijah/side.svg",
  459. extra: 1840 / 1795,
  460. bottom: 106 / 1943
  461. }
  462. },
  463. back: {
  464. height: math.unit(1.65, "meters"),
  465. weight: math.unit(50, "kg"),
  466. name: "Back",
  467. image: {
  468. source: "./media/characters/elijah/back.svg",
  469. extra: 661.2 / 639.5,
  470. bottom: 21.2 / 682.5
  471. }
  472. },
  473. foot: {
  474. height: math.unit(1.4, "feet"),
  475. name: "Foot",
  476. image: {
  477. source: "./media/characters/elijah/foot.svg"
  478. }
  479. },
  480. footFlexing: {
  481. height: math.unit(1.243, "feet"),
  482. name: "Foot (Flexing)",
  483. image: {
  484. source: "./media/characters/elijah/foot-flexing.svg"
  485. }
  486. },
  487. footStepping: {
  488. height: math.unit(1.3, "feet"),
  489. name: "Foot (Stepping)",
  490. image: {
  491. source: "./media/characters/elijah/foot-stepping.svg"
  492. }
  493. },
  494. beak: {
  495. height: math.unit(0.666, "feet"),
  496. name: "Beak",
  497. image: {
  498. source: "./media/characters/elijah/beak.svg"
  499. }
  500. },
  501. dick: {
  502. height: math.unit(0.85, "feet"),
  503. name: "Dick",
  504. image: {
  505. source: "./media/characters/elijah/dick.svg"
  506. }
  507. },
  508. },
  509. [
  510. {
  511. name: "Normal",
  512. height: math.unit(1.65, "meters")
  513. },
  514. {
  515. name: "Macro",
  516. height: math.unit(55, "meters"),
  517. default: true
  518. },
  519. {
  520. name: "Macro+",
  521. height: math.unit(105, "meters")
  522. },
  523. ]
  524. ))
  525. characterMakers.push(() => makeCharacter(
  526. { name: "Rai" },
  527. {
  528. front: {
  529. height: math.unit(11, "feet"),
  530. weight: math.unit(80, "kg"),
  531. name: "Front",
  532. image: {
  533. source: "./media/characters/rai/front.svg",
  534. extra: 1,
  535. bottom: 0.03
  536. }
  537. },
  538. side: {
  539. height: math.unit(11, "feet"),
  540. weight: math.unit(80, "kg"),
  541. name: "Side",
  542. image: {
  543. source: "./media/characters/rai/side.svg"
  544. }
  545. },
  546. back: {
  547. height: math.unit(11, "feet"),
  548. weight: math.unit(80, "lb"),
  549. name: "Back",
  550. image: {
  551. source: "./media/characters/rai/back.svg",
  552. extra: 1,
  553. bottom: 0.01
  554. }
  555. },
  556. feral: {
  557. height: math.unit(11, "feet"),
  558. weight: math.unit(800, "lb"),
  559. name: "Feral",
  560. image: {
  561. source: "./media/characters/rai/feral.svg",
  562. extra: 1050 / 659,
  563. bottom: 0.07
  564. }
  565. },
  566. maw: {
  567. height: math.unit(6 / 3.81416, "feet"),
  568. name: "Maw",
  569. image: {
  570. source: "./media/characters/rai/maw.svg"
  571. }
  572. },
  573. },
  574. [
  575. {
  576. name: "Normal",
  577. height: math.unit(11, "feet")
  578. },
  579. {
  580. name: "Macro",
  581. height: math.unit(302, "feet"),
  582. default: true
  583. },
  584. ]
  585. ))
  586. characterMakers.push(() => makeCharacter(
  587. { name: "Jazzy" },
  588. {
  589. front: {
  590. height: math.unit(7, "feet"),
  591. weight: math.unit(80, "kg"),
  592. name: "Front",
  593. image: {
  594. source: "./media/characters/jazzy/front.svg",
  595. extra: 1,
  596. bottom: 0.01
  597. }
  598. },
  599. back: {
  600. height: math.unit(7, "feet"),
  601. weight: math.unit(80, "kg"),
  602. name: "Back",
  603. image: {
  604. source: "./media/characters/jazzy/back.svg",
  605. extra: 1,
  606. bottom: 0.01
  607. }
  608. },
  609. },
  610. [
  611. {
  612. name: "Macro",
  613. height: math.unit(216, "feet"),
  614. default: true
  615. },
  616. ]
  617. ))
  618. characterMakers.push(() => makeCharacter(
  619. { name: "Flamm" },
  620. {
  621. front: {
  622. height: math.unit(7, "feet"),
  623. weight: math.unit(80, "kg"),
  624. name: "Front",
  625. image: {
  626. source: "./media/characters/flamm/front.svg",
  627. extra: 1794 / 1677,
  628. bottom: 31.7 / 1828.5
  629. }
  630. },
  631. },
  632. [
  633. {
  634. name: "Normal",
  635. height: math.unit(9.5, "feet")
  636. },
  637. {
  638. name: "Macro",
  639. height: math.unit(200, "feet"),
  640. default: true
  641. },
  642. ]
  643. ))
  644. characterMakers.push(() => makeCharacter(
  645. { name: "Zephiro" },
  646. {
  647. front: {
  648. height: math.unit(7, "feet"),
  649. weight: math.unit(80, "kg"),
  650. name: "Front",
  651. image: {
  652. source: "./media/characters/zephiro/front.svg",
  653. extra: 2309 / 2162,
  654. bottom: 0.069
  655. }
  656. },
  657. side: {
  658. height: math.unit(7, "feet"),
  659. weight: math.unit(80, "kg"),
  660. name: "Side",
  661. image: {
  662. source: "./media/characters/zephiro/side.svg",
  663. extra: 2403 / 2279,
  664. bottom: 0.015
  665. }
  666. },
  667. back: {
  668. height: math.unit(7, "feet"),
  669. weight: math.unit(80, "kg"),
  670. name: "Back",
  671. image: {
  672. source: "./media/characters/zephiro/back.svg",
  673. extra: 2373 / 2244,
  674. bottom: 0.013
  675. }
  676. },
  677. },
  678. [
  679. {
  680. name: "Micro",
  681. height: math.unit(3, "inches")
  682. },
  683. {
  684. name: "Normal",
  685. height: math.unit(5 + 3 / 12, "feet"),
  686. default: true
  687. },
  688. {
  689. name: "Macro",
  690. height: math.unit(118, "feet")
  691. },
  692. ]
  693. ))
  694. characterMakers.push(() => makeCharacter(
  695. { name: "Fory" },
  696. {
  697. front: {
  698. height: math.unit(5, "feet"),
  699. weight: math.unit(90, "kg"),
  700. name: "Front",
  701. image: {
  702. source: "./media/characters/fory/front.svg",
  703. extra: 2862 / 2674,
  704. bottom: 180 / 3043.8
  705. }
  706. },
  707. back: {
  708. height: math.unit(5, "feet"),
  709. weight: math.unit(90, "kg"),
  710. name: "Back",
  711. image: {
  712. source: "./media/characters/fory/back.svg",
  713. extra: 2962 / 2791,
  714. bottom: 106 / 3071.8
  715. }
  716. },
  717. foot: {
  718. height: math.unit(2.14, "feet"),
  719. name: "Foot",
  720. image: {
  721. source: "./media/characters/fory/foot.svg"
  722. }
  723. },
  724. },
  725. [
  726. {
  727. name: "Normal",
  728. height: math.unit(5, "feet")
  729. },
  730. {
  731. name: "Macro",
  732. height: math.unit(50, "feet"),
  733. default: true
  734. },
  735. {
  736. name: "Megamacro",
  737. height: math.unit(10, "miles")
  738. },
  739. {
  740. name: "Gigamacro",
  741. height: math.unit(5, "earths")
  742. },
  743. ]
  744. ))
  745. characterMakers.push(() => makeCharacter(
  746. { name: "Kurrikage" },
  747. {
  748. front: {
  749. height: math.unit(7, "feet"),
  750. weight: math.unit(90, "kg"),
  751. name: "Front",
  752. image: {
  753. source: "./media/characters/kurrikage/front.svg",
  754. extra: 1,
  755. bottom: 0.035
  756. }
  757. },
  758. back: {
  759. height: math.unit(7, "feet"),
  760. weight: math.unit(90, "lb"),
  761. name: "Back",
  762. image: {
  763. source: "./media/characters/kurrikage/back.svg"
  764. }
  765. },
  766. paw: {
  767. height: math.unit(1.5, "feet"),
  768. name: "Paw",
  769. image: {
  770. source: "./media/characters/kurrikage/paw.svg"
  771. }
  772. },
  773. staff: {
  774. height: math.unit(6.7, "feet"),
  775. name: "Staff",
  776. image: {
  777. source: "./media/characters/kurrikage/staff.svg"
  778. }
  779. },
  780. peek: {
  781. height: math.unit(1.05, "feet"),
  782. name: "Peeking",
  783. image: {
  784. source: "./media/characters/kurrikage/peek.svg",
  785. bottom: 0.08
  786. }
  787. },
  788. },
  789. [
  790. {
  791. name: "Normal",
  792. height: math.unit(12, "feet"),
  793. default: true
  794. },
  795. {
  796. name: "Big",
  797. height: math.unit(20, "feet")
  798. },
  799. {
  800. name: "Macro",
  801. height: math.unit(500, "feet")
  802. },
  803. {
  804. name: "Megamacro",
  805. height: math.unit(20, "miles")
  806. },
  807. ]
  808. ))
  809. characterMakers.push(() => makeCharacter(
  810. { name: "Shingo" },
  811. {
  812. front: {
  813. height: math.unit(6, "feet"),
  814. weight: math.unit(75, "kg"),
  815. name: "Front",
  816. image: {
  817. source: "./media/characters/shingo/front.svg",
  818. extra: 3511 / 3338,
  819. bottom: 0.005
  820. }
  821. },
  822. },
  823. [
  824. {
  825. name: "Micro",
  826. height: math.unit(4, "inches")
  827. },
  828. {
  829. name: "Normal",
  830. height: math.unit(6, "feet"),
  831. default: true
  832. },
  833. {
  834. name: "Macro",
  835. height: math.unit(108, "feet")
  836. }
  837. ]
  838. ))
  839. characterMakers.push(() => makeCharacter(
  840. { name: "Aigey" },
  841. {
  842. side: {
  843. height: math.unit(6, "feet"),
  844. weight: math.unit(75, "kg"),
  845. name: "Side",
  846. image: {
  847. source: "./media/characters/aigey/side.svg"
  848. }
  849. },
  850. },
  851. [
  852. {
  853. name: "Macro",
  854. height: math.unit(200, "feet"),
  855. default: true
  856. },
  857. {
  858. name: "Megamacro",
  859. height: math.unit(100, "miles")
  860. },
  861. ]
  862. )
  863. )
  864. characterMakers.push(() => makeCharacter(
  865. { name: "Natasha" },
  866. {
  867. front: {
  868. height: math.unit(5 + 5 / 12, "feet"),
  869. weight: math.unit(75, "kg"),
  870. name: "Front",
  871. image: {
  872. source: "./media/characters/natasha/front.svg",
  873. extra: 859/824,
  874. bottom: 23/879.6
  875. }
  876. },
  877. frontNsfw: {
  878. height: math.unit(5 + 5 / 12, "feet"),
  879. weight: math.unit(75, "kg"),
  880. name: "Front (NSFW)",
  881. image: {
  882. source: "./media/characters/natasha/front-nsfw.svg",
  883. extra: 859/824,
  884. bottom: 23/879.6
  885. }
  886. },
  887. frontErect: {
  888. height: math.unit(5 + 5 / 12, "feet"),
  889. weight: math.unit(75, "kg"),
  890. name: "Front (Erect)",
  891. image: {
  892. source: "./media/characters/natasha/front-erect.svg",
  893. extra: 859/824,
  894. bottom: 23/879.6
  895. }
  896. },
  897. back: {
  898. height: math.unit(5 + 5 / 12, "feet"),
  899. weight: math.unit(75, "kg"),
  900. name: "Back",
  901. image: {
  902. source: "./media/characters/natasha/back.svg",
  903. extra: 887.9/852.6,
  904. bottom: 9.7/896.4
  905. }
  906. },
  907. backAlt: {
  908. height: math.unit(5 + 5 / 12, "feet"),
  909. weight: math.unit(75, "kg"),
  910. name: "Back (Alt)",
  911. image: {
  912. source: "./media/characters/natasha/back-alt.svg",
  913. extra: 1236.7/1192,
  914. bottom: 22.3/1258.2
  915. }
  916. },
  917. dick: {
  918. height: math.unit(1.772, "feet"),
  919. name: "Dick",
  920. image: {
  921. source: "./media/characters/natasha/dick.svg"
  922. }
  923. },
  924. },
  925. [
  926. {
  927. name: "Normal",
  928. height: math.unit(5 + 5 / 12, "feet")
  929. },
  930. {
  931. name: "Large",
  932. height: math.unit(12, "feet")
  933. },
  934. {
  935. name: "Macro",
  936. height: math.unit(100, "feet"),
  937. default: true
  938. },
  939. {
  940. name: "Macro+",
  941. height: math.unit(260, "feet")
  942. },
  943. {
  944. name: "Macro++",
  945. height: math.unit(1, "mile")
  946. },
  947. ]
  948. ))
  949. characterMakers.push(() => makeCharacter(
  950. { name: "Malik" },
  951. {
  952. front: {
  953. height: math.unit(6, "feet"),
  954. weight: math.unit(75, "kg"),
  955. name: "Front",
  956. image: {
  957. source: "./media/characters/malik/front.svg"
  958. }
  959. },
  960. side: {
  961. height: math.unit(6, "feet"),
  962. weight: math.unit(75, "kg"),
  963. name: "Side",
  964. image: {
  965. source: "./media/characters/malik/side.svg",
  966. extra: 1.1539
  967. }
  968. },
  969. back: {
  970. height: math.unit(6, "feet"),
  971. weight: math.unit(75, "kg"),
  972. name: "Back",
  973. image: {
  974. source: "./media/characters/malik/back.svg"
  975. }
  976. },
  977. },
  978. [
  979. {
  980. name: "Macro",
  981. height: math.unit(156, "feet"),
  982. default: true
  983. },
  984. {
  985. name: "Macro+",
  986. height: math.unit(1188, "feet")
  987. },
  988. ]
  989. ))
  990. characterMakers.push(() => makeCharacter(
  991. { name: "Sefer" },
  992. {
  993. front: {
  994. height: math.unit(6, "feet"),
  995. weight: math.unit(75, "kg"),
  996. name: "Front",
  997. image: {
  998. source: "./media/characters/sefer/front.svg"
  999. }
  1000. },
  1001. back: {
  1002. height: math.unit(6, "feet"),
  1003. weight: math.unit(75, "kg"),
  1004. name: "Back",
  1005. image: {
  1006. source: "./media/characters/sefer/back.svg"
  1007. }
  1008. },
  1009. },
  1010. [
  1011. {
  1012. name: "Normal",
  1013. height: math.unit(6, "feet"),
  1014. default: true
  1015. },
  1016. ]
  1017. ))
  1018. characterMakers.push(() => makeCharacter(
  1019. { name: "North" },
  1020. {
  1021. body: {
  1022. height: math.unit(2.2428, "meter"),
  1023. weight: math.unit(124.738, "kg"),
  1024. name: "Body",
  1025. image: {
  1026. extra: 1225 / 1050,
  1027. source: "./media/characters/north/front.svg"
  1028. }
  1029. }
  1030. },
  1031. [
  1032. {
  1033. name: "Micro",
  1034. height: math.unit(4, "inches")
  1035. },
  1036. {
  1037. name: "Macro",
  1038. height: math.unit(63, "meters")
  1039. },
  1040. {
  1041. name: "Megamacro",
  1042. height: math.unit(101, "miles"),
  1043. default: true
  1044. }
  1045. ]
  1046. ))
  1047. characterMakers.push(() => makeCharacter(
  1048. { name: "Talan" },
  1049. {
  1050. angled: {
  1051. height: math.unit(4, "meter"),
  1052. weight: math.unit(150, "kg"),
  1053. name: "Angled",
  1054. image: {
  1055. source: "./media/characters/talan/angled-sfw.svg",
  1056. bottom: 29 / 3734
  1057. }
  1058. },
  1059. angledNsfw: {
  1060. height: math.unit(4, "meter"),
  1061. weight: math.unit(150, "kg"),
  1062. name: "Angled (NSFW)",
  1063. image: {
  1064. source: "./media/characters/talan/angled-nsfw.svg",
  1065. bottom: 29 / 3734
  1066. }
  1067. },
  1068. frontNsfw: {
  1069. height: math.unit(4, "meter"),
  1070. weight: math.unit(150, "kg"),
  1071. name: "Front (NSFW)",
  1072. image: {
  1073. source: "./media/characters/talan/front-nsfw.svg",
  1074. bottom: 29 / 3734
  1075. }
  1076. },
  1077. sideNsfw: {
  1078. height: math.unit(4, "meter"),
  1079. weight: math.unit(150, "kg"),
  1080. name: "Side (NSFW)",
  1081. image: {
  1082. source: "./media/characters/talan/side-nsfw.svg",
  1083. bottom: 29 / 3734
  1084. }
  1085. },
  1086. back: {
  1087. height: math.unit(4, "meter"),
  1088. weight: math.unit(150, "kg"),
  1089. name: "Back",
  1090. image: {
  1091. source: "./media/characters/talan/back.svg"
  1092. }
  1093. },
  1094. dickBottom: {
  1095. height: math.unit(0.621, "meter"),
  1096. name: "Dick (Bottom)",
  1097. image: {
  1098. source: "./media/characters/talan/dick-bottom.svg"
  1099. }
  1100. },
  1101. dickTop: {
  1102. height: math.unit(0.621, "meter"),
  1103. name: "Dick (Top)",
  1104. image: {
  1105. source: "./media/characters/talan/dick-top.svg"
  1106. }
  1107. },
  1108. dickSide: {
  1109. height: math.unit(0.305, "meter"),
  1110. name: "Dick (Side)",
  1111. image: {
  1112. source: "./media/characters/talan/dick-side.svg"
  1113. }
  1114. },
  1115. dickFront: {
  1116. height: math.unit(0.305, "meter"),
  1117. name: "Dick (Front)",
  1118. image: {
  1119. source: "./media/characters/talan/dick-front.svg"
  1120. }
  1121. },
  1122. },
  1123. [
  1124. {
  1125. name: "Normal",
  1126. height: math.unit(4, "meters")
  1127. },
  1128. {
  1129. name: "Macro",
  1130. height: math.unit(100, "meters")
  1131. },
  1132. {
  1133. name: "Megamacro",
  1134. height: math.unit(2, "miles"),
  1135. default: true
  1136. },
  1137. {
  1138. name: "Gigamacro",
  1139. height: math.unit(5000, "miles")
  1140. },
  1141. {
  1142. name: "Teramacro",
  1143. height: math.unit(100, "parsecs")
  1144. }
  1145. ]
  1146. ))
  1147. characterMakers.push(() => makeCharacter(
  1148. { name: "Gael'Rathus" },
  1149. {
  1150. front: {
  1151. height: math.unit(2, "meter"),
  1152. weight: math.unit(90, "kg"),
  1153. name: "Front",
  1154. image: {
  1155. source: "./media/characters/gael'rathus/front.svg"
  1156. }
  1157. },
  1158. frontAlt: {
  1159. height: math.unit(2, "meter"),
  1160. weight: math.unit(90, "kg"),
  1161. name: "Front (alt)",
  1162. image: {
  1163. source: "./media/characters/gael'rathus/front-alt.svg"
  1164. }
  1165. },
  1166. frontAlt2: {
  1167. height: math.unit(2, "meter"),
  1168. weight: math.unit(90, "kg"),
  1169. name: "Front (alt 2)",
  1170. image: {
  1171. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1172. }
  1173. }
  1174. },
  1175. [
  1176. {
  1177. name: "Normal",
  1178. height: math.unit(9, "feet"),
  1179. default: true
  1180. },
  1181. {
  1182. name: "Large",
  1183. height: math.unit(25, "feet")
  1184. },
  1185. {
  1186. name: "Macro",
  1187. height: math.unit(0.25, "miles")
  1188. },
  1189. {
  1190. name: "Megamacro",
  1191. height: math.unit(10, "miles")
  1192. }
  1193. ]
  1194. ))
  1195. characterMakers.push(() => makeCharacter(
  1196. { name: "Sosha" },
  1197. {
  1198. side: {
  1199. height: math.unit(2, "meter"),
  1200. weight: math.unit(140, "kg"),
  1201. name: "Side",
  1202. image: {
  1203. source: "./media/characters/sosha/side.svg",
  1204. bottom: 0.042
  1205. }
  1206. },
  1207. },
  1208. [
  1209. {
  1210. name: "Normal",
  1211. height: math.unit(12, "feet"),
  1212. default: true
  1213. }
  1214. ]
  1215. ))
  1216. characterMakers.push(() => makeCharacter(
  1217. { name: "RuNNoLa" },
  1218. {
  1219. side: {
  1220. height: math.unit(5 + 5 / 12, "feet"),
  1221. weight: math.unit(170, "kg"),
  1222. name: "Side",
  1223. image: {
  1224. source: "./media/characters/runnola/side.svg",
  1225. extra: 741 / 448,
  1226. bottom: 0.05
  1227. }
  1228. },
  1229. },
  1230. [
  1231. {
  1232. name: "Small",
  1233. height: math.unit(3, "feet")
  1234. },
  1235. {
  1236. name: "Normal",
  1237. height: math.unit(5 + 5 / 12, "feet"),
  1238. default: true
  1239. },
  1240. {
  1241. name: "Big",
  1242. height: math.unit(10, "feet")
  1243. },
  1244. ]
  1245. ))
  1246. characterMakers.push(() => makeCharacter(
  1247. { name: "Kurribird" },
  1248. {
  1249. front: {
  1250. height: math.unit(2, "meter"),
  1251. weight: math.unit(50, "kg"),
  1252. name: "Front",
  1253. image: {
  1254. source: "./media/characters/kurribird/front.svg",
  1255. bottom: 0.015
  1256. }
  1257. },
  1258. frontAlt: {
  1259. height: math.unit(1.5, "meter"),
  1260. weight: math.unit(50, "kg"),
  1261. name: "Front (Alt)",
  1262. image: {
  1263. source: "./media/characters/kurribird/front-alt.svg",
  1264. extra: 1.45
  1265. }
  1266. },
  1267. },
  1268. [
  1269. {
  1270. name: "Normal",
  1271. height: math.unit(7, "feet")
  1272. },
  1273. {
  1274. name: "Big",
  1275. height: math.unit(12, "feet"),
  1276. default: true
  1277. },
  1278. {
  1279. name: "Macro",
  1280. height: math.unit(1500, "feet")
  1281. },
  1282. {
  1283. name: "Megamacro",
  1284. height: math.unit(2, "miles")
  1285. }
  1286. ]
  1287. ))
  1288. characterMakers.push(() => makeCharacter(
  1289. { name: "Elbial" },
  1290. {
  1291. front: {
  1292. height: math.unit(2, "meter"),
  1293. weight: math.unit(80, "kg"),
  1294. name: "Front",
  1295. image: {
  1296. source: "./media/characters/elbial/front.svg",
  1297. extra: 1643 / 1556,
  1298. bottom: 60.2 / 1696
  1299. }
  1300. },
  1301. side: {
  1302. height: math.unit(2, "meter"),
  1303. weight: math.unit(80, "kg"),
  1304. name: "Side",
  1305. image: {
  1306. source: "./media/characters/elbial/side.svg",
  1307. extra: 1630 / 1565,
  1308. bottom: 71.5 / 1697
  1309. }
  1310. },
  1311. back: {
  1312. height: math.unit(2, "meter"),
  1313. weight: math.unit(80, "kg"),
  1314. name: "Back",
  1315. image: {
  1316. source: "./media/characters/elbial/back.svg",
  1317. extra: 1668 / 1595,
  1318. bottom: 5.6 / 1672
  1319. }
  1320. },
  1321. frontDressed: {
  1322. height: math.unit(2, "meter"),
  1323. weight: math.unit(80, "kg"),
  1324. name: "Front (Dressed)",
  1325. image: {
  1326. source: "./media/characters/elbial/front-dressed.svg",
  1327. extra: 1653 / 1584,
  1328. bottom: 57 / 1708
  1329. }
  1330. },
  1331. genitals: {
  1332. height: math.unit(2 / 3.367, "meter"),
  1333. name: "Genitals",
  1334. image: {
  1335. source: "./media/characters/elbial/genitals.svg"
  1336. }
  1337. },
  1338. },
  1339. [
  1340. {
  1341. name: "Large",
  1342. height: math.unit(100, "feet")
  1343. },
  1344. {
  1345. name: "Macro",
  1346. height: math.unit(500, "feet"),
  1347. default: true
  1348. },
  1349. {
  1350. name: "Megamacro",
  1351. height: math.unit(10, "miles")
  1352. },
  1353. {
  1354. name: "Gigamacro",
  1355. height: math.unit(25000, "miles")
  1356. },
  1357. {
  1358. name: "Full-Size",
  1359. height: math.unit(8000000, "gigaparsecs")
  1360. }
  1361. ]
  1362. ))
  1363. characterMakers.push(() => makeCharacter(
  1364. { name: "Noah" },
  1365. {
  1366. front: {
  1367. height: math.unit(2, "meter"),
  1368. weight: math.unit(60, "kg"),
  1369. name: "Front",
  1370. image: {
  1371. source: "./media/characters/noah/front.svg"
  1372. }
  1373. },
  1374. talons: {
  1375. height: math.unit(0.315, "meter"),
  1376. name: "Talons",
  1377. image: {
  1378. source: "./media/characters/noah/talons.svg"
  1379. }
  1380. }
  1381. },
  1382. [
  1383. {
  1384. name: "Large",
  1385. height: math.unit(50, "feet")
  1386. },
  1387. {
  1388. name: "Macro",
  1389. height: math.unit(750, "feet"),
  1390. default: true
  1391. },
  1392. {
  1393. name: "Megamacro",
  1394. height: math.unit(50, "miles")
  1395. },
  1396. {
  1397. name: "Gigamacro",
  1398. height: math.unit(100000, "miles")
  1399. },
  1400. {
  1401. name: "Full-Size",
  1402. height: math.unit(3000000000, "miles")
  1403. }
  1404. ]
  1405. ))
  1406. characterMakers.push(() => makeCharacter(
  1407. { name: "Natalya" },
  1408. {
  1409. front: {
  1410. height: math.unit(2, "meter"),
  1411. weight: math.unit(80, "kg"),
  1412. name: "Front",
  1413. image: {
  1414. source: "./media/characters/natalya/front.svg"
  1415. }
  1416. },
  1417. back: {
  1418. height: math.unit(2, "meter"),
  1419. weight: math.unit(80, "kg"),
  1420. name: "Back",
  1421. image: {
  1422. source: "./media/characters/natalya/back.svg"
  1423. }
  1424. }
  1425. },
  1426. [
  1427. {
  1428. name: "Normal",
  1429. height: math.unit(150, "feet"),
  1430. default: true
  1431. },
  1432. {
  1433. name: "Megamacro",
  1434. height: math.unit(5, "miles")
  1435. },
  1436. {
  1437. name: "Full-Size",
  1438. height: math.unit(600, "kiloparsecs")
  1439. }
  1440. ]
  1441. ))
  1442. characterMakers.push(() => makeCharacter(
  1443. { name: "Erestrebah" },
  1444. {
  1445. front: {
  1446. height: math.unit(2, "meter"),
  1447. weight: math.unit(50, "kg"),
  1448. name: "Front",
  1449. image: {
  1450. source: "./media/characters/erestrebah/front.svg",
  1451. extra: 208 / 193,
  1452. bottom: 0.055
  1453. }
  1454. },
  1455. back: {
  1456. height: math.unit(2, "meter"),
  1457. weight: math.unit(50, "kg"),
  1458. name: "Back",
  1459. image: {
  1460. source: "./media/characters/erestrebah/back.svg",
  1461. extra: 1.3
  1462. }
  1463. }
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(10, "feet")
  1469. },
  1470. {
  1471. name: "Large",
  1472. height: math.unit(50, "feet"),
  1473. default: true
  1474. },
  1475. {
  1476. name: "Macro",
  1477. height: math.unit(300, "feet")
  1478. },
  1479. {
  1480. name: "Macro+",
  1481. height: math.unit(750, "feet")
  1482. },
  1483. {
  1484. name: "Megamacro",
  1485. height: math.unit(3, "miles")
  1486. }
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "Jennifer" },
  1491. {
  1492. front: {
  1493. height: math.unit(2, "meter"),
  1494. weight: math.unit(80, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/jennifer/front.svg",
  1498. bottom: 0.11,
  1499. extra: 1.16
  1500. }
  1501. },
  1502. frontAlt: {
  1503. height: math.unit(2, "meter"),
  1504. weight: math.unit(80, "kg"),
  1505. name: "Front (Alt)",
  1506. image: {
  1507. source: "./media/characters/jennifer/front-alt.svg"
  1508. }
  1509. }
  1510. },
  1511. [
  1512. {
  1513. name: "Canon Height",
  1514. height: math.unit(120, "feet"),
  1515. default: true
  1516. },
  1517. {
  1518. name: "Macro+",
  1519. height: math.unit(300, "feet")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(20000, "feet")
  1524. }
  1525. ]
  1526. ))
  1527. characterMakers.push(() => makeCharacter(
  1528. { name: "Kalista" },
  1529. {
  1530. front: {
  1531. height: math.unit(2, "meter"),
  1532. weight: math.unit(50, "kg"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/kalista/front.svg",
  1536. extra: 1947 / 1700
  1537. }
  1538. },
  1539. back: {
  1540. height: math.unit(2, "meter"),
  1541. weight: math.unit(50, "kg"),
  1542. name: "Back",
  1543. image: {
  1544. source: "./media/characters/kalista/back.svg",
  1545. extra: 1366 / 1156
  1546. }
  1547. }
  1548. },
  1549. [
  1550. {
  1551. name: "Uncomfortably Small",
  1552. height: math.unit(10, "feet")
  1553. },
  1554. {
  1555. name: "Small",
  1556. height: math.unit(30, "feet")
  1557. },
  1558. {
  1559. name: "Macro",
  1560. height: math.unit(100, "feet"),
  1561. default: true
  1562. },
  1563. {
  1564. name: "Macro+",
  1565. height: math.unit(2000, "feet")
  1566. },
  1567. {
  1568. name: "True Form",
  1569. height: math.unit(8924, "miles")
  1570. }
  1571. ]
  1572. ))
  1573. characterMakers.push(() => makeCharacter(
  1574. { name: "GiantGrowingVixen" },
  1575. {
  1576. front: {
  1577. height: math.unit(2, "meter"),
  1578. weight: math.unit(120, "kg"),
  1579. name: "Front",
  1580. image: {
  1581. source: "./media/characters/ggv/front.svg"
  1582. }
  1583. },
  1584. side: {
  1585. height: math.unit(2, "meter"),
  1586. weight: math.unit(120, "kg"),
  1587. name: "Side",
  1588. image: {
  1589. source: "./media/characters/ggv/side.svg"
  1590. }
  1591. }
  1592. },
  1593. [
  1594. {
  1595. name: "Extremely Puny",
  1596. height: math.unit(9 + 5 / 12, "feet")
  1597. },
  1598. {
  1599. name: "Horribly Small",
  1600. height: math.unit(47.7, "miles"),
  1601. default: true
  1602. },
  1603. {
  1604. name: "Reasonably Sized",
  1605. height: math.unit(25000, "parsecs")
  1606. },
  1607. {
  1608. name: "Slightly Uncompressed",
  1609. height: math.unit(7.77e31, "parsecs")
  1610. },
  1611. {
  1612. name: "Omniversal",
  1613. height: math.unit(1e300, "meters")
  1614. },
  1615. ]
  1616. ))
  1617. characterMakers.push(() => makeCharacter(
  1618. { name: "Napalm" },
  1619. {
  1620. front: {
  1621. height: math.unit(2, "meter"),
  1622. weight: math.unit(75, "lb"),
  1623. name: "Front",
  1624. image: {
  1625. source: "./media/characters/napalm/front.svg"
  1626. }
  1627. },
  1628. back: {
  1629. height: math.unit(2, "meter"),
  1630. weight: math.unit(75, "lb"),
  1631. name: "Back",
  1632. image: {
  1633. source: "./media/characters/napalm/back.svg"
  1634. }
  1635. }
  1636. },
  1637. [
  1638. {
  1639. name: "Standard",
  1640. height: math.unit(55, "feet"),
  1641. default: true
  1642. }
  1643. ]
  1644. ))
  1645. characterMakers.push(() => makeCharacter(
  1646. { name: "Asana" },
  1647. {
  1648. front: {
  1649. height: math.unit(7 + 5 / 6, "feet"),
  1650. weight: math.unit(325, "lb"),
  1651. name: "Front",
  1652. image: {
  1653. source: "./media/characters/asana/front.svg",
  1654. extra: 1128 / 1068
  1655. }
  1656. },
  1657. back: {
  1658. height: math.unit(7 + 5 / 6, "feet"),
  1659. weight: math.unit(325, "lb"),
  1660. name: "Back",
  1661. image: {
  1662. source: "./media/characters/asana/back.svg",
  1663. extra: 1128 / 1068
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Standard",
  1670. height: math.unit(7 + 5 / 6, "feet"),
  1671. default: true
  1672. },
  1673. {
  1674. name: "Large",
  1675. height: math.unit(10, "meters")
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(2500, "meters")
  1680. },
  1681. {
  1682. name: "Megamacro",
  1683. height: math.unit(5e6, "meters")
  1684. },
  1685. {
  1686. name: "Examacro",
  1687. height: math.unit(5e12, "lightyears")
  1688. },
  1689. {
  1690. name: "Max Size",
  1691. height: math.unit(1e31, "lightyears")
  1692. }
  1693. ]
  1694. ))
  1695. characterMakers.push(() => makeCharacter(
  1696. { name: "Ebony" },
  1697. {
  1698. front: {
  1699. height: math.unit(2, "meter"),
  1700. weight: math.unit(60, "kg"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/ebony/front.svg",
  1704. bottom: 0.03,
  1705. extra: 1045 / 810 + 0.03
  1706. }
  1707. },
  1708. side: {
  1709. height: math.unit(2, "meter"),
  1710. weight: math.unit(60, "kg"),
  1711. name: "Side",
  1712. image: {
  1713. source: "./media/characters/ebony/side.svg",
  1714. bottom: 0.03,
  1715. extra: 1045 / 810 + 0.03
  1716. }
  1717. },
  1718. back: {
  1719. height: math.unit(2, "meter"),
  1720. weight: math.unit(60, "kg"),
  1721. name: "Back",
  1722. image: {
  1723. source: "./media/characters/ebony/back.svg",
  1724. bottom: 0.01,
  1725. extra: 1045 / 810 + 0.01
  1726. }
  1727. },
  1728. },
  1729. [
  1730. // TODO check why I did this lol
  1731. {
  1732. name: "Standard",
  1733. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1734. default: true
  1735. },
  1736. {
  1737. name: "Macro",
  1738. height: math.unit(200, "feet")
  1739. },
  1740. {
  1741. name: "Gigamacro",
  1742. height: math.unit(13000, "km")
  1743. }
  1744. ]
  1745. ))
  1746. characterMakers.push(() => makeCharacter(
  1747. { name: "Mountain" },
  1748. {
  1749. front: {
  1750. height: math.unit(6, "feet"),
  1751. weight: math.unit(175, "lb"),
  1752. name: "Front",
  1753. image: {
  1754. source: "./media/characters/mountain/front.svg"
  1755. }
  1756. },
  1757. back: {
  1758. height: math.unit(6, "feet"),
  1759. weight: math.unit(175, "lb"),
  1760. name: "Back",
  1761. image: {
  1762. source: "./media/characters/mountain/back.svg"
  1763. }
  1764. },
  1765. },
  1766. [
  1767. {
  1768. name: "Large",
  1769. height: math.unit(20, "meters")
  1770. },
  1771. {
  1772. name: "Macro",
  1773. height: math.unit(300, "meters")
  1774. },
  1775. {
  1776. name: "Gigamacro",
  1777. height: math.unit(10000, "km"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Examacro",
  1782. height: math.unit(10e9, "lightyears")
  1783. }
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "Rick" },
  1788. {
  1789. front: {
  1790. height: math.unit(8, "feet"),
  1791. weight: math.unit(500, "lb"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/rick/front.svg"
  1795. }
  1796. }
  1797. },
  1798. [
  1799. {
  1800. name: "Normal",
  1801. height: math.unit(8, "feet"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(5, "km")
  1807. }
  1808. ]
  1809. ))
  1810. characterMakers.push(() => makeCharacter(
  1811. { name: "Ona" },
  1812. {
  1813. front: {
  1814. height: math.unit(8, "feet"),
  1815. weight: math.unit(120, "lb"),
  1816. name: "Front",
  1817. image: {
  1818. source: "./media/characters/ona/front.svg"
  1819. }
  1820. },
  1821. frontAlt: {
  1822. height: math.unit(8, "feet"),
  1823. weight: math.unit(120, "lb"),
  1824. name: "Front (Alt)",
  1825. image: {
  1826. source: "./media/characters/ona/front-alt.svg"
  1827. }
  1828. },
  1829. back: {
  1830. height: math.unit(8, "feet"),
  1831. weight: math.unit(120, "lb"),
  1832. name: "Back",
  1833. image: {
  1834. source: "./media/characters/ona/back.svg"
  1835. }
  1836. },
  1837. foot: {
  1838. height: math.unit(1.1, "feet"),
  1839. name: "Foot",
  1840. image: {
  1841. source: "./media/characters/ona/foot.svg"
  1842. }
  1843. }
  1844. },
  1845. [
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(70, "km"),
  1849. default: true
  1850. },
  1851. {
  1852. name: "Gigamacro",
  1853. height: math.unit(681818, "miles")
  1854. },
  1855. {
  1856. name: "Examacro",
  1857. height: math.unit(3800000, "lightyears")
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Mech" },
  1863. {
  1864. front: {
  1865. height: math.unit(12, "feet"),
  1866. weight: math.unit(3000, "lb"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/mech/front.svg",
  1870. bottom: 0.025,
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(12, "feet"),
  1875. weight: math.unit(3000, "lb"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/mech/back.svg",
  1879. bottom: 0.03,
  1880. }
  1881. }
  1882. },
  1883. [
  1884. {
  1885. name: "Normal",
  1886. height: math.unit(12, "feet")
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(300, "feet"),
  1891. default: true
  1892. },
  1893. {
  1894. name: "Macro+",
  1895. height: math.unit(1500, "feet")
  1896. },
  1897. ]
  1898. ))
  1899. characterMakers.push(() => makeCharacter(
  1900. { name: "Gregory" },
  1901. {
  1902. front: {
  1903. height: math.unit(1.3, "meter"),
  1904. weight: math.unit(30, "kg"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/gregory/front.svg",
  1908. }
  1909. }
  1910. },
  1911. [
  1912. {
  1913. name: "Normal",
  1914. height: math.unit(1.3, "meter"),
  1915. default: true
  1916. },
  1917. {
  1918. name: "Macro",
  1919. height: math.unit(20, "meter")
  1920. }
  1921. ]
  1922. ))
  1923. characterMakers.push(() => makeCharacter(
  1924. { name: "Elory" },
  1925. {
  1926. front: {
  1927. height: math.unit(2.8, "meter"),
  1928. weight: math.unit(200, "kg"),
  1929. name: "Front",
  1930. image: {
  1931. source: "./media/characters/elory/front.svg",
  1932. }
  1933. }
  1934. },
  1935. [
  1936. {
  1937. name: "Normal",
  1938. height: math.unit(2.8, "meter"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Macro",
  1943. height: math.unit(38, "meter")
  1944. }
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Angelpatamon" },
  1949. {
  1950. front: {
  1951. height: math.unit(470, "feet"),
  1952. weight: math.unit(924, "tons"),
  1953. name: "Front",
  1954. image: {
  1955. source: "./media/characters/angelpatamon/front.svg",
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(470, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Deity Size I",
  1967. height: math.unit(28651.2, "km")
  1968. },
  1969. {
  1970. name: "Deity Size II",
  1971. height: math.unit(171907.2, "km")
  1972. }
  1973. ]
  1974. ))
  1975. characterMakers.push(() => makeCharacter(
  1976. { name: "Cryae" },
  1977. {
  1978. side: {
  1979. height: math.unit(7.2, "meter"),
  1980. weight: math.unit(8.2, "tons"),
  1981. name: "Side",
  1982. image: {
  1983. source: "./media/characters/cryae/side.svg",
  1984. extra: 3500 / 1500
  1985. }
  1986. }
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(7.2, "meter"),
  1992. default: true
  1993. }
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Xera" },
  1998. {
  1999. front: {
  2000. height: math.unit(6, "feet"),
  2001. weight: math.unit(175, "lb"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/xera/front.svg",
  2005. extra: 2300 / 2061
  2006. }
  2007. },
  2008. side: {
  2009. height: math.unit(6, "feet"),
  2010. weight: math.unit(175, "lb"),
  2011. name: "Side",
  2012. image: {
  2013. source: "./media/characters/xera/side.svg",
  2014. extra: 2300 / 2061
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(6, "feet"),
  2019. weight: math.unit(175, "lb"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/xera/back.svg"
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Small",
  2029. height: math.unit(10, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(500, "meters"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Macro+",
  2038. height: math.unit(10, "km")
  2039. },
  2040. {
  2041. name: "Gigamacro",
  2042. height: math.unit(25000, "km")
  2043. },
  2044. {
  2045. name: "Teramacro",
  2046. height: math.unit(3e6, "km")
  2047. }
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Nebula" },
  2052. {
  2053. front: {
  2054. height: math.unit(6, "feet"),
  2055. weight: math.unit(175, "lb"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/nebula/front.svg",
  2059. extra: 2600 / 2450
  2060. }
  2061. }
  2062. },
  2063. [
  2064. {
  2065. name: "Small",
  2066. height: math.unit(4.5, "meters")
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(1500, "meters"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Megamacro",
  2075. height: math.unit(150, "km")
  2076. },
  2077. {
  2078. name: "Gigamacro",
  2079. height: math.unit(27000, "km")
  2080. }
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Abysgar" },
  2085. {
  2086. front: {
  2087. height: math.unit(6, "feet"),
  2088. weight: math.unit(225, "lb"),
  2089. name: "Front",
  2090. image: {
  2091. source: "./media/characters/abysgar/front.svg"
  2092. }
  2093. }
  2094. },
  2095. [
  2096. {
  2097. name: "Small",
  2098. height: math.unit(4.5, "meters")
  2099. },
  2100. {
  2101. name: "Macro",
  2102. height: math.unit(1250, "meters"),
  2103. default: true
  2104. },
  2105. {
  2106. name: "Megamacro",
  2107. height: math.unit(125, "km")
  2108. },
  2109. {
  2110. name: "Gigamacro",
  2111. height: math.unit(26000, "km")
  2112. }
  2113. ]
  2114. ))
  2115. characterMakers.push(() => makeCharacter(
  2116. { name: "Yakuz" },
  2117. {
  2118. front: {
  2119. height: math.unit(6, "feet"),
  2120. weight: math.unit(180, "lb"),
  2121. name: "Front",
  2122. image: {
  2123. source: "./media/characters/yakuz/front.svg"
  2124. }
  2125. }
  2126. },
  2127. [
  2128. {
  2129. name: "Small",
  2130. height: math.unit(5, "meters")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(1500, "meters"),
  2135. default: true
  2136. },
  2137. {
  2138. name: "Megamacro",
  2139. height: math.unit(200, "km")
  2140. },
  2141. {
  2142. name: "Gigamacro",
  2143. height: math.unit(100000, "km")
  2144. }
  2145. ]
  2146. ))
  2147. characterMakers.push(() => makeCharacter(
  2148. { name: "Mirova" },
  2149. {
  2150. front: {
  2151. height: math.unit(6, "feet"),
  2152. weight: math.unit(175, "lb"),
  2153. name: "Front",
  2154. image: {
  2155. source: "./media/characters/mirova/front.svg"
  2156. }
  2157. }
  2158. },
  2159. [
  2160. {
  2161. name: "Small",
  2162. height: math.unit(5, "meters")
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(900, "meters"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Megamacro",
  2171. height: math.unit(135, "km")
  2172. },
  2173. {
  2174. name: "Gigamacro",
  2175. height: math.unit(20000, "km")
  2176. }
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Asana (Mech)" },
  2181. {
  2182. side: {
  2183. height: math.unit(28.35, "feet"),
  2184. weight: math.unit(99.75, "tons"),
  2185. name: "Side",
  2186. image: {
  2187. source: "./media/characters/asana-mech/side.svg"
  2188. }
  2189. }
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(28.35, "feet"),
  2195. default: true
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(2500, "feet")
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(25, "miles")
  2204. },
  2205. {
  2206. name: "Examacro",
  2207. height: math.unit(6e8, "lightyears")
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Ashtrek" },
  2213. {
  2214. front: {
  2215. height: math.unit(2, "meters"),
  2216. weight: math.unit(70, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/ashtrek/front.svg",
  2220. extra: 560 / 524,
  2221. bottom: 0.01
  2222. }
  2223. },
  2224. frontArmor: {
  2225. height: math.unit(2, "meters"),
  2226. weight: math.unit(76, "kg"),
  2227. name: "Front (Armor)",
  2228. image: {
  2229. source: "./media/characters/ashtrek/front-armor.svg",
  2230. extra: 561 / 527,
  2231. bottom: 0.01
  2232. }
  2233. },
  2234. side: {
  2235. height: math.unit(2, "meters"),
  2236. weight: math.unit(70, "kg"),
  2237. name: "Side",
  2238. image: {
  2239. source: "./media/characters/ashtrek/side.svg",
  2240. extra: 1717 / 1609,
  2241. bottom: 0.005
  2242. }
  2243. },
  2244. back: {
  2245. height: math.unit(2, "meters"),
  2246. weight: math.unit(70, "kg"),
  2247. name: "Back",
  2248. image: {
  2249. source: "./media/characters/ashtrek/back.svg",
  2250. extra: 1570 / 1501
  2251. }
  2252. },
  2253. },
  2254. [
  2255. {
  2256. name: "DEFCON 5",
  2257. height: math.unit(5, "meters")
  2258. },
  2259. {
  2260. name: "DEFCON 4",
  2261. height: math.unit(500, "meters"),
  2262. default: true
  2263. },
  2264. {
  2265. name: "DEFCON 3",
  2266. height: math.unit(5, "km")
  2267. },
  2268. {
  2269. name: "DEFCON 2",
  2270. height: math.unit(500, "km")
  2271. },
  2272. {
  2273. name: "DEFCON 1",
  2274. height: math.unit(500000, "km")
  2275. },
  2276. {
  2277. name: "DEFCON 0",
  2278. height: math.unit(3, "gigaparsecs")
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Gale" },
  2284. {
  2285. front: {
  2286. height: math.unit(2, "meters"),
  2287. weight: math.unit(76, "kg"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/gale/front.svg"
  2291. }
  2292. },
  2293. frontAlt1: {
  2294. height: math.unit(2, "meters"),
  2295. weight: math.unit(76, "kg"),
  2296. name: "Front (Alt 1)",
  2297. image: {
  2298. source: "./media/characters/gale/front-alt-1.svg"
  2299. }
  2300. },
  2301. frontAlt2: {
  2302. height: math.unit(2, "meters"),
  2303. weight: math.unit(76, "kg"),
  2304. name: "Front (Alt 2)",
  2305. image: {
  2306. source: "./media/characters/gale/front-alt-2.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Normal",
  2313. height: math.unit(7, "feet")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(150, "feet"),
  2318. default: true
  2319. },
  2320. {
  2321. name: "Macro+",
  2322. height: math.unit(300, "feet")
  2323. },
  2324. ]
  2325. ))
  2326. characterMakers.push(() => makeCharacter(
  2327. { name: "Draylen" },
  2328. {
  2329. front: {
  2330. height: math.unit(2, "meters"),
  2331. weight: math.unit(76, "kg"),
  2332. name: "Front",
  2333. image: {
  2334. source: "./media/characters/draylen/front.svg"
  2335. }
  2336. }
  2337. },
  2338. [
  2339. {
  2340. name: "Macro",
  2341. height: math.unit(150, "feet"),
  2342. default: true
  2343. }
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "Chez" },
  2348. {
  2349. front: {
  2350. height: math.unit(7 + 9 / 12, "feet"),
  2351. weight: math.unit(379, "lbs"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/chez/front.svg"
  2355. }
  2356. },
  2357. side: {
  2358. height: math.unit(7 + 9 / 12, "feet"),
  2359. weight: math.unit(379, "lbs"),
  2360. name: "Side",
  2361. image: {
  2362. source: "./media/characters/chez/side.svg"
  2363. }
  2364. }
  2365. },
  2366. [
  2367. {
  2368. name: "Normal",
  2369. height: math.unit(7 + 9 / 12, "feet"),
  2370. default: true
  2371. },
  2372. {
  2373. name: "God King",
  2374. height: math.unit(9750000, "meters")
  2375. }
  2376. ]
  2377. ))
  2378. characterMakers.push(() => makeCharacter(
  2379. { name: "Kaylum" },
  2380. {
  2381. front: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(275, "lbs"),
  2384. name: "Front",
  2385. image: {
  2386. source: "./media/characters/kaylum/front.svg",
  2387. bottom: 0.01,
  2388. extra: 1166 / 1031
  2389. }
  2390. },
  2391. frontWingless: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(275, "lbs"),
  2394. name: "Front (Wingless)",
  2395. image: {
  2396. source: "./media/characters/kaylum/front-wingless.svg",
  2397. bottom: 0.01,
  2398. extra: 1117 / 1031
  2399. }
  2400. }
  2401. },
  2402. [
  2403. {
  2404. name: "Normal",
  2405. height: math.unit(3.05, "meters")
  2406. },
  2407. {
  2408. name: "Master",
  2409. height: math.unit(5.5, "meters")
  2410. },
  2411. {
  2412. name: "Rampage",
  2413. height: math.unit(19, "meters")
  2414. },
  2415. {
  2416. name: "Macro Lite",
  2417. height: math.unit(37, "meters")
  2418. },
  2419. {
  2420. name: "Hyper Predator",
  2421. height: math.unit(61, "meters")
  2422. },
  2423. {
  2424. name: "Macro",
  2425. height: math.unit(138, "meters"),
  2426. default: true
  2427. }
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "Geta" },
  2432. {
  2433. front: {
  2434. height: math.unit(6, "feet"),
  2435. weight: math.unit(150, "lbs"),
  2436. name: "Front",
  2437. image: {
  2438. source: "./media/characters/geta/front.svg"
  2439. }
  2440. }
  2441. },
  2442. [
  2443. {
  2444. name: "Micro",
  2445. height: math.unit(3, "inches"),
  2446. default: true
  2447. },
  2448. {
  2449. name: "Normal",
  2450. height: math.unit(5 + 5 / 12, "feet")
  2451. }
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Tyrnn" },
  2456. {
  2457. front: {
  2458. height: math.unit(6, "feet"),
  2459. weight: math.unit(300, "lbs"),
  2460. name: "Front",
  2461. image: {
  2462. source: "./media/characters/tyrnn/front.svg"
  2463. }
  2464. }
  2465. },
  2466. [
  2467. {
  2468. name: "Main Height",
  2469. height: math.unit(355, "feet"),
  2470. default: true
  2471. },
  2472. {
  2473. name: "Fave. Height",
  2474. height: math.unit(2400, "feet")
  2475. }
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Apple" },
  2480. {
  2481. front: {
  2482. height: math.unit(6, "feet"),
  2483. weight: math.unit(300, "lbs"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/appledectomy/front.svg"
  2487. }
  2488. }
  2489. },
  2490. [
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(2500, "feet")
  2494. },
  2495. {
  2496. name: "Megamacro",
  2497. height: math.unit(50, "miles"),
  2498. default: true
  2499. },
  2500. {
  2501. name: "Gigamacro",
  2502. height: math.unit(5000, "miles")
  2503. },
  2504. {
  2505. name: "Teramacro",
  2506. height: math.unit(250000, "miles")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Vulpes" },
  2512. {
  2513. front: {
  2514. height: math.unit(6, "feet"),
  2515. weight: math.unit(200, "lbs"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/vulpes/front.svg",
  2519. extra: 573 / 543,
  2520. bottom: 0.033
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(6, "feet"),
  2525. weight: math.unit(200, "lbs"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/vulpes/side.svg",
  2529. extra: 573 / 543,
  2530. bottom: 0.01
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(200, "lbs"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/vulpes/back.svg",
  2539. extra: 573 / 543,
  2540. }
  2541. },
  2542. feet: {
  2543. height: math.unit(1.276, "feet"),
  2544. name: "Feet",
  2545. image: {
  2546. source: "./media/characters/vulpes/feet.svg"
  2547. }
  2548. },
  2549. maw: {
  2550. height: math.unit(1.18, "feet"),
  2551. name: "Maw",
  2552. image: {
  2553. source: "./media/characters/vulpes/maw.svg"
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Micro",
  2560. height: math.unit(2, "inches")
  2561. },
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(6.3, "feet")
  2565. },
  2566. {
  2567. name: "Macro",
  2568. height: math.unit(850, "feet")
  2569. },
  2570. {
  2571. name: "Megamacro",
  2572. height: math.unit(7500, "feet"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Gigamacro",
  2577. height: math.unit(570000, "miles")
  2578. }
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Rain Fallen" },
  2583. {
  2584. front: {
  2585. height: math.unit(6, "feet"),
  2586. weight: math.unit(210, "lbs"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/rain-fallen/front.svg"
  2590. }
  2591. },
  2592. side: {
  2593. height: math.unit(6, "feet"),
  2594. weight: math.unit(210, "lbs"),
  2595. name: "Side",
  2596. image: {
  2597. source: "./media/characters/rain-fallen/side.svg"
  2598. }
  2599. },
  2600. back: {
  2601. height: math.unit(6, "feet"),
  2602. weight: math.unit(210, "lbs"),
  2603. name: "Back",
  2604. image: {
  2605. source: "./media/characters/rain-fallen/back.svg"
  2606. }
  2607. },
  2608. feral: {
  2609. height: math.unit(9, "feet"),
  2610. weight: math.unit(700, "lbs"),
  2611. name: "Feral",
  2612. image: {
  2613. source: "./media/characters/rain-fallen/feral.svg"
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(5, "meter")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(150, "meter"),
  2625. default: true
  2626. },
  2627. {
  2628. name: "Megamacro",
  2629. height: math.unit(278e6, "meter")
  2630. },
  2631. {
  2632. name: "Gigamacro",
  2633. height: math.unit(2e9, "meter")
  2634. },
  2635. {
  2636. name: "Teramacro",
  2637. height: math.unit(8e12, "meter")
  2638. },
  2639. {
  2640. name: "Devourer",
  2641. height: math.unit(14, "zettameters")
  2642. },
  2643. {
  2644. name: "Scarlet King",
  2645. height: math.unit(18, "yottameters")
  2646. },
  2647. {
  2648. name: "Void",
  2649. height: math.unit(6.66e66, "yottameters")
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Zaakira" },
  2655. {
  2656. standing: {
  2657. height: math.unit(6, "feet"),
  2658. weight: math.unit(180, "lbs"),
  2659. name: "Standing",
  2660. image: {
  2661. source: "./media/characters/zaakira/standing.svg"
  2662. }
  2663. },
  2664. laying: {
  2665. height: math.unit(3, "feet"),
  2666. weight: math.unit(180, "lbs"),
  2667. name: "Laying",
  2668. image: {
  2669. source: "./media/characters/zaakira/laying.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(12, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(279, "feet"),
  2681. default: true
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Sigvald" },
  2687. {
  2688. front: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(250, "lbs"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/sigvald/front.svg",
  2694. extra: 1000 / 850
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(6, "feet"),
  2699. weight: math.unit(250, "lbs"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/sigvald/back.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(8, "feet")
  2710. },
  2711. {
  2712. name: "Large",
  2713. height: math.unit(12, "feet")
  2714. },
  2715. {
  2716. name: "Larger",
  2717. height: math.unit(20, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(150, "feet")
  2722. },
  2723. {
  2724. name: "Macro+",
  2725. height: math.unit(200, "feet"),
  2726. default: true
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Scott" },
  2732. {
  2733. side: {
  2734. height: math.unit(12, "feet"),
  2735. weight: math.unit(3000, "lbs"),
  2736. name: "Side",
  2737. image: {
  2738. source: "./media/characters/scott/side.svg",
  2739. extra: 1,
  2740. bottom: 0.069
  2741. }
  2742. },
  2743. upright: {
  2744. height: math.unit(12, "feet"),
  2745. weight: math.unit(3000, "lbs"),
  2746. name: "Upright",
  2747. image: {
  2748. source: "./media/characters/scott/upright.svg",
  2749. extra: 1,
  2750. bottom: 0.05
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Tobias" },
  2764. {
  2765. side: {
  2766. height: math.unit(8, "meters"),
  2767. weight: math.unit(84755, "lbs"),
  2768. name: "Side",
  2769. image: {
  2770. source: "./media/characters/tobias/side.svg",
  2771. extra: 1474 / 1096,
  2772. bottom: 38.9 / 1513.1235
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(8, "meters"),
  2780. default: true
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kieran" },
  2786. {
  2787. front: {
  2788. height: math.unit(5.5, "feet"),
  2789. weight: math.unit(400, "lbs"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kieran/front.svg",
  2793. extra: 2694/2364,
  2794. bottom: 217/2908
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(5.5, "feet"),
  2799. weight: math.unit(400, "lbs"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/kieran/side.svg",
  2803. extra: 875/777,
  2804. bottom: 84.6/959
  2805. }
  2806. },
  2807. },
  2808. [
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(5.5, "feet"),
  2812. default: true
  2813. },
  2814. ]
  2815. ))
  2816. characterMakers.push(() => makeCharacter(
  2817. { name: "Sanya" },
  2818. {
  2819. side: {
  2820. height: math.unit(2, "meters"),
  2821. weight: math.unit(70, "kg"),
  2822. name: "Side",
  2823. image: {
  2824. source: "./media/characters/sanya/side.svg",
  2825. bottom: 0.02,
  2826. extra: 1.02
  2827. }
  2828. },
  2829. },
  2830. [
  2831. {
  2832. name: "Small",
  2833. height: math.unit(2, "meters")
  2834. },
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(3, "meters")
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(16, "meters"),
  2842. default: true
  2843. },
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Miranda" },
  2848. {
  2849. side: {
  2850. height: math.unit(2, "meters"),
  2851. weight: math.unit(120, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/miranda/front.svg",
  2855. extra: 10.6 / 10
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(10, "feet"),
  2863. default: true
  2864. }
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "James" },
  2869. {
  2870. side: {
  2871. height: math.unit(2, "meters"),
  2872. weight: math.unit(100, "kg"),
  2873. name: "Front",
  2874. image: {
  2875. source: "./media/characters/james/front.svg",
  2876. extra: 10 / 8.5
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(8.5, "feet"),
  2884. default: true
  2885. }
  2886. ]
  2887. ))
  2888. characterMakers.push(() => makeCharacter(
  2889. { name: "Heather" },
  2890. {
  2891. side: {
  2892. height: math.unit(9.5, "feet"),
  2893. weight: math.unit(2500, "lbs"),
  2894. name: "Side",
  2895. image: {
  2896. source: "./media/characters/heather/side.svg"
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(9.5, "feet"),
  2904. default: true
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Lukas" },
  2910. {
  2911. side: {
  2912. height: math.unit(6.5, "feet"),
  2913. weight: math.unit(400, "lbs"),
  2914. name: "Side",
  2915. image: {
  2916. source: "./media/characters/lukas/side.svg",
  2917. extra: 7.25 / 6.5
  2918. }
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(6.5, "feet"),
  2925. default: true
  2926. }
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Louise" },
  2931. {
  2932. side: {
  2933. height: math.unit(5, "feet"),
  2934. weight: math.unit(3000, "lbs"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/louise/side.svg"
  2938. }
  2939. },
  2940. },
  2941. [
  2942. {
  2943. name: "Normal",
  2944. height: math.unit(5, "feet"),
  2945. default: true
  2946. }
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Ramona" },
  2951. {
  2952. side: {
  2953. height: math.unit(6, "feet"),
  2954. weight: math.unit(150, "lbs"),
  2955. name: "Side",
  2956. image: {
  2957. source: "./media/characters/ramona/side.svg"
  2958. }
  2959. },
  2960. },
  2961. [
  2962. {
  2963. name: "Normal",
  2964. height: math.unit(5.3, "meters"),
  2965. default: true
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(20, "stories")
  2970. },
  2971. {
  2972. name: "Macro+",
  2973. height: math.unit(50, "stories")
  2974. },
  2975. ]
  2976. ))
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Deerpuff" },
  2979. {
  2980. standing: {
  2981. height: math.unit(5.75, "feet"),
  2982. weight: math.unit(160, "lbs"),
  2983. name: "Standing",
  2984. image: {
  2985. source: "./media/characters/deerpuff/standing.svg",
  2986. extra: 682 / 624
  2987. }
  2988. },
  2989. sitting: {
  2990. height: math.unit(5.75 / 1.79, "feet"),
  2991. weight: math.unit(160, "lbs"),
  2992. name: "Sitting",
  2993. image: {
  2994. source: "./media/characters/deerpuff/sitting.svg",
  2995. bottom: 44 / 400,
  2996. extra: 1
  2997. }
  2998. },
  2999. taurLaying: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(400, "lbs"),
  3002. name: "Taur (Laying)",
  3003. image: {
  3004. source: "./media/characters/deerpuff/taur-laying.svg"
  3005. }
  3006. },
  3007. },
  3008. [
  3009. {
  3010. name: "Puffball",
  3011. height: math.unit(6, "inches")
  3012. },
  3013. {
  3014. name: "Normalpuff",
  3015. height: math.unit(5.75, "feet")
  3016. },
  3017. {
  3018. name: "Macropuff",
  3019. height: math.unit(1500, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megapuff",
  3024. height: math.unit(500, "miles")
  3025. },
  3026. {
  3027. name: "Gigapuff",
  3028. height: math.unit(250000, "miles")
  3029. },
  3030. {
  3031. name: "Omegapuff",
  3032. height: math.unit(1000, "lightyears")
  3033. },
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Vivian" },
  3038. {
  3039. stomping: {
  3040. height: math.unit(6, "feet"),
  3041. weight: math.unit(170, "lbs"),
  3042. name: "Stomping",
  3043. image: {
  3044. source: "./media/characters/vivian/stomping.svg"
  3045. }
  3046. },
  3047. sitting: {
  3048. height: math.unit(6 / 1.75, "feet"),
  3049. weight: math.unit(170, "lbs"),
  3050. name: "Sitting",
  3051. image: {
  3052. source: "./media/characters/vivian/sitting.svg",
  3053. bottom: 1 / 6.4,
  3054. extra: 1,
  3055. }
  3056. },
  3057. },
  3058. [
  3059. {
  3060. name: "Normal",
  3061. height: math.unit(7, "feet"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(10, "stories")
  3067. },
  3068. {
  3069. name: "Macro+",
  3070. height: math.unit(30, "stories")
  3071. },
  3072. {
  3073. name: "Megamacro",
  3074. height: math.unit(10, "miles")
  3075. },
  3076. {
  3077. name: "Megamacro+",
  3078. height: math.unit(2750000, "meters")
  3079. },
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Prince" },
  3084. {
  3085. front: {
  3086. height: math.unit(6, "feet"),
  3087. weight: math.unit(160, "lbs"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/prince/front.svg",
  3091. extra: 3400 / 3000
  3092. }
  3093. },
  3094. jumping: {
  3095. height: math.unit(6, "feet"),
  3096. weight: math.unit(160, "lbs"),
  3097. name: "Jumping",
  3098. image: {
  3099. source: "./media/characters/prince/jump.svg",
  3100. extra: 2555 / 2134
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(7.75, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Not cute",
  3112. height: math.unit(17, "feet")
  3113. },
  3114. {
  3115. name: "I said NOT",
  3116. height: math.unit(91, "feet")
  3117. },
  3118. {
  3119. name: "Please stop",
  3120. height: math.unit(560, "feet")
  3121. },
  3122. {
  3123. name: "What have you done",
  3124. height: math.unit(2200, "feet")
  3125. },
  3126. {
  3127. name: "Deer God",
  3128. height: math.unit(3.6, "miles")
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Psymon" },
  3134. {
  3135. standing: {
  3136. height: math.unit(6, "feet"),
  3137. weight: math.unit(300, "lbs"),
  3138. name: "Standing",
  3139. image: {
  3140. source: "./media/characters/psymon/standing.svg",
  3141. extra: 1888 / 1810,
  3142. bottom: 0.05
  3143. }
  3144. },
  3145. slithering: {
  3146. height: math.unit(6, "feet"),
  3147. weight: math.unit(300, "lbs"),
  3148. name: "Slithering",
  3149. image: {
  3150. source: "./media/characters/psymon/slithering.svg",
  3151. extra: 1330 / 1224
  3152. }
  3153. },
  3154. slitheringAlt: {
  3155. height: math.unit(6, "feet"),
  3156. weight: math.unit(300, "lbs"),
  3157. name: "Slithering (Alt)",
  3158. image: {
  3159. source: "./media/characters/psymon/slithering-alt.svg",
  3160. extra: 1330 / 1224
  3161. }
  3162. },
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(11.25, "feet"),
  3168. default: true
  3169. },
  3170. {
  3171. name: "Large",
  3172. height: math.unit(27, "feet")
  3173. },
  3174. {
  3175. name: "Giant",
  3176. height: math.unit(87, "feet")
  3177. },
  3178. {
  3179. name: "Macro",
  3180. height: math.unit(365, "feet")
  3181. },
  3182. {
  3183. name: "Megamacro",
  3184. height: math.unit(3, "miles")
  3185. },
  3186. {
  3187. name: "World Serpent",
  3188. height: math.unit(8000, "miles")
  3189. },
  3190. ]
  3191. ))
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Daimos" },
  3194. {
  3195. front: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(180, "lbs"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/daimos/front.svg",
  3201. extra: 4160 / 3897,
  3202. bottom: 0.021
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Normal",
  3209. height: math.unit(8, "feet"),
  3210. default: true
  3211. },
  3212. {
  3213. name: "Big Dog",
  3214. height: math.unit(22, "feet")
  3215. },
  3216. {
  3217. name: "Macro",
  3218. height: math.unit(127, "feet")
  3219. },
  3220. {
  3221. name: "Megamacro",
  3222. height: math.unit(3600, "feet")
  3223. },
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Blake" },
  3228. {
  3229. side: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(180, "lbs"),
  3232. name: "Side",
  3233. image: {
  3234. source: "./media/characters/blake/side.svg",
  3235. extra: 1212 / 1120,
  3236. bottom: 0.05
  3237. }
  3238. },
  3239. crouched: {
  3240. height: math.unit(6 * 0.57, "feet"),
  3241. weight: math.unit(180, "lbs"),
  3242. name: "Crouched",
  3243. image: {
  3244. source: "./media/characters/blake/crouched.svg",
  3245. extra: 840 / 587,
  3246. bottom: 0.04
  3247. }
  3248. },
  3249. bent: {
  3250. height: math.unit(6 * 0.75, "feet"),
  3251. weight: math.unit(180, "lbs"),
  3252. name: "Bent",
  3253. image: {
  3254. source: "./media/characters/blake/bent.svg",
  3255. extra: 592 / 544,
  3256. bottom: 0.035
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Normal",
  3263. height: math.unit(8 + 1 / 6, "feet"),
  3264. default: true
  3265. },
  3266. {
  3267. name: "Big Backside",
  3268. height: math.unit(37, "feet")
  3269. },
  3270. {
  3271. name: "Subway Shredder",
  3272. height: math.unit(72, "feet")
  3273. },
  3274. {
  3275. name: "City Carver",
  3276. height: math.unit(1675, "feet")
  3277. },
  3278. {
  3279. name: "Tectonic Tweaker",
  3280. height: math.unit(2300, "miles")
  3281. },
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Guisetto" },
  3286. {
  3287. front: {
  3288. height: math.unit(6, "feet"),
  3289. weight: math.unit(180, "lbs"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/guisetto/front.svg",
  3293. extra: 856 / 817,
  3294. bottom: 0.06
  3295. }
  3296. },
  3297. airborne: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(180, "lbs"),
  3300. name: "Airborne",
  3301. image: {
  3302. source: "./media/characters/guisetto/airborne.svg",
  3303. extra: 584 / 525
  3304. }
  3305. },
  3306. },
  3307. [
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(10 + 11 / 12, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Large",
  3315. height: math.unit(35, "feet")
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(475, "feet")
  3320. },
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Luxor" },
  3325. {
  3326. front: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(180, "lbs"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/luxor/front.svg",
  3332. extra: 2940 / 2152
  3333. }
  3334. },
  3335. back: {
  3336. height: math.unit(6, "feet"),
  3337. weight: math.unit(180, "lbs"),
  3338. name: "Back",
  3339. image: {
  3340. source: "./media/characters/luxor/back.svg",
  3341. extra: 1083 / 960
  3342. }
  3343. },
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(5 + 5 / 6, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Lamp",
  3353. height: math.unit(50, "feet")
  3354. },
  3355. {
  3356. name: "Lämp",
  3357. height: math.unit(300, "feet")
  3358. },
  3359. {
  3360. name: "The sun is a lamp",
  3361. height: math.unit(250000, "miles")
  3362. },
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Huoyan" },
  3367. {
  3368. front: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(50, "lbs"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/huoyan/front.svg"
  3374. }
  3375. },
  3376. side: {
  3377. height: math.unit(6, "feet"),
  3378. weight: math.unit(180, "lbs"),
  3379. name: "Side",
  3380. image: {
  3381. source: "./media/characters/huoyan/side.svg"
  3382. }
  3383. },
  3384. },
  3385. [
  3386. {
  3387. name: "Chef",
  3388. height: math.unit(9, "feet")
  3389. },
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(65, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Macro",
  3397. height: math.unit(780, "feet")
  3398. },
  3399. {
  3400. name: "Flaming Mountain",
  3401. height: math.unit(4.8, "miles")
  3402. },
  3403. {
  3404. name: "Celestial",
  3405. height: math.unit(765000, "miles")
  3406. },
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Tails" },
  3411. {
  3412. front: {
  3413. height: math.unit(5 + 3 / 4, "feet"),
  3414. weight: math.unit(120, "lbs"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/tails/front.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(5 + 3 / 4, "feet"),
  3425. default: true
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Rainy" },
  3431. {
  3432. front: {
  3433. height: math.unit(4, "feet"),
  3434. weight: math.unit(50, "lbs"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/rainy/front.svg"
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Macro",
  3444. height: math.unit(800, "feet"),
  3445. default: true
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Rainier" },
  3451. {
  3452. front: {
  3453. height: math.unit(6, "feet"),
  3454. weight: math.unit(150, "lbs"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/rainier/front.svg"
  3458. }
  3459. }
  3460. },
  3461. [
  3462. {
  3463. name: "Micro",
  3464. height: math.unit(2, "mm"),
  3465. default: true
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Andy" },
  3471. {
  3472. front: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(180, "lbs"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/andy/front.svg"
  3478. }
  3479. }
  3480. },
  3481. [
  3482. {
  3483. name: "Normal",
  3484. height: math.unit(8, "feet"),
  3485. default: true
  3486. },
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(1000, "feet")
  3490. },
  3491. {
  3492. name: "Megamacro",
  3493. height: math.unit(5, "miles")
  3494. },
  3495. {
  3496. name: "Gigamacro",
  3497. height: math.unit(5000, "miles")
  3498. },
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "Cimmaron" },
  3503. {
  3504. front: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(210, "lbs"),
  3507. name: "Front",
  3508. image: {
  3509. source: "./media/characters/cimmaron/front-sfw.svg",
  3510. extra: 701 / 676,
  3511. bottom: 0.046
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(210, "lbs"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/cimmaron/back-sfw.svg",
  3520. extra: 701 / 676,
  3521. bottom: 0.046
  3522. }
  3523. },
  3524. frontNsfw: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(210, "lbs"),
  3527. name: "Front (NSFW)",
  3528. image: {
  3529. source: "./media/characters/cimmaron/front-nsfw.svg",
  3530. extra: 701 / 676,
  3531. bottom: 0.046
  3532. }
  3533. },
  3534. backNsfw: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(210, "lbs"),
  3537. name: "Back (NSFW)",
  3538. image: {
  3539. source: "./media/characters/cimmaron/back-nsfw.svg",
  3540. extra: 701 / 676,
  3541. bottom: 0.046
  3542. }
  3543. },
  3544. dick: {
  3545. height: math.unit(1.714, "feet"),
  3546. name: "Dick",
  3547. image: {
  3548. source: "./media/characters/cimmaron/dick.svg"
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(6, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Macro Mayor",
  3560. height: math.unit(350, "meters")
  3561. },
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Akari Kaen" },
  3566. {
  3567. front: {
  3568. height: math.unit(6, "feet"),
  3569. weight: math.unit(200, "lbs"),
  3570. name: "Front",
  3571. image: {
  3572. source: "./media/characters/akari/front.svg",
  3573. extra: 962 / 901,
  3574. bottom: 0.04
  3575. }
  3576. }
  3577. },
  3578. [
  3579. {
  3580. name: "Micro",
  3581. height: math.unit(5, "inches"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Normal",
  3586. height: math.unit(7, "feet")
  3587. },
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Cynosura" },
  3592. {
  3593. front: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(140, "lbs"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/cynosura/front.svg",
  3599. extra: 896 / 847
  3600. }
  3601. },
  3602. back: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(140, "lbs"),
  3605. name: "Back",
  3606. image: {
  3607. source: "./media/characters/cynosura/back.svg",
  3608. extra: 1365 / 1250
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Micro",
  3615. height: math.unit(4, "inches")
  3616. },
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(5.75, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Tall",
  3624. height: math.unit(10, "feet")
  3625. },
  3626. {
  3627. name: "Big",
  3628. height: math.unit(20, "feet")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(50, "feet")
  3633. },
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Gin" },
  3638. {
  3639. front: {
  3640. height: math.unit(6, "feet"),
  3641. weight: math.unit(170, "lbs"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/gin/front.svg",
  3645. extra: 1.053,
  3646. bottom: 0.025
  3647. }
  3648. },
  3649. foot: {
  3650. height: math.unit(6 / 4.25, "feet"),
  3651. name: "Foot",
  3652. image: {
  3653. source: "./media/characters/gin/foot.svg"
  3654. }
  3655. },
  3656. sole: {
  3657. height: math.unit(6 / 4.40, "feet"),
  3658. name: "Sole",
  3659. image: {
  3660. source: "./media/characters/gin/sole.svg"
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(9 + 4 / 12, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(1500, "feet")
  3672. },
  3673. {
  3674. name: "Megamacro",
  3675. height: math.unit(200, "miles"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(500, "megameters")
  3681. },
  3682. {
  3683. name: "Teramacro",
  3684. height: math.unit(15, "lightyears")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Guy" },
  3690. {
  3691. front: {
  3692. height: math.unit(6 + 1 / 6, "feet"),
  3693. weight: math.unit(178, "lbs"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/guy/front.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(6 + 1 / 6, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Large",
  3708. height: math.unit(25 + 7 / 12, "feet")
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(60 + 9 / 12, "feet")
  3713. },
  3714. {
  3715. name: "Macro+",
  3716. height: math.unit(246, "feet")
  3717. },
  3718. {
  3719. name: "Macro++",
  3720. height: math.unit(878, "feet")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Tiberius" },
  3726. {
  3727. front: {
  3728. height: math.unit(9, "feet"),
  3729. weight: math.unit(800, "lbs"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/tiberius/front.svg",
  3733. extra: 2295 / 2071
  3734. }
  3735. },
  3736. back: {
  3737. height: math.unit(9, "feet"),
  3738. weight: math.unit(800, "lbs"),
  3739. name: "Back",
  3740. image: {
  3741. source: "./media/characters/tiberius/back.svg",
  3742. extra: 2373 / 2160
  3743. }
  3744. },
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(9, "feet"),
  3750. default: true
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Surgo" },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(600, "lbs"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/surgo/front.svg",
  3763. extra: 3591 / 2227
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(600, "lbs"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/surgo/back.svg",
  3772. extra: 3557 / 2228
  3773. }
  3774. },
  3775. laying: {
  3776. height: math.unit(6 * 0.85, "feet"),
  3777. weight: math.unit(600, "lbs"),
  3778. name: "Laying",
  3779. image: {
  3780. source: "./media/characters/surgo/laying.svg"
  3781. }
  3782. },
  3783. },
  3784. [
  3785. {
  3786. name: "Normal",
  3787. height: math.unit(6, "feet"),
  3788. default: true
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Cibus" },
  3794. {
  3795. side: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(150, "lbs"),
  3798. name: "Side",
  3799. image: {
  3800. source: "./media/characters/cibus/side.svg",
  3801. extra: 800 / 400
  3802. }
  3803. },
  3804. },
  3805. [
  3806. {
  3807. name: "Normal",
  3808. height: math.unit(6, "feet"),
  3809. default: true
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Nibbles" },
  3815. {
  3816. front: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(240, "lbs"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/nibbles/front.svg"
  3822. }
  3823. },
  3824. side: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(240, "lbs"),
  3827. name: "Side",
  3828. image: {
  3829. source: "./media/characters/nibbles/side.svg"
  3830. }
  3831. },
  3832. },
  3833. [
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(9, "feet"),
  3837. default: true
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Rikky" },
  3843. {
  3844. side: {
  3845. height: math.unit(5 + 1 / 6, "feet"),
  3846. weight: math.unit(130, "lbs"),
  3847. name: "Side",
  3848. image: {
  3849. source: "./media/characters/rikky/side.svg"
  3850. }
  3851. },
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(5 + 1 / 6, "feet")
  3857. },
  3858. {
  3859. name: "Macro",
  3860. height: math.unit(152, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(7, "miles")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Malfressa" },
  3871. {
  3872. side: {
  3873. height: math.unit(370, "cm"),
  3874. weight: math.unit(350, "lbs"),
  3875. name: "Side",
  3876. image: {
  3877. source: "./media/characters/malfressa/side.svg"
  3878. }
  3879. },
  3880. walking: {
  3881. height: math.unit(370, "cm"),
  3882. weight: math.unit(350, "lbs"),
  3883. name: "Walking",
  3884. image: {
  3885. source: "./media/characters/malfressa/walking.svg"
  3886. }
  3887. },
  3888. feral: {
  3889. height: math.unit(2500, "cm"),
  3890. weight: math.unit(100000, "lbs"),
  3891. name: "Feral",
  3892. image: {
  3893. source: "./media/characters/malfressa/feral.svg",
  3894. extra: 2108 / 837,
  3895. bottom: 0.02
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(370, "cm")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(300, "meters"),
  3907. default: true
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Jaro" },
  3913. {
  3914. front: {
  3915. height: math.unit(6, "feet"),
  3916. weight: math.unit(60, "kg"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/jaro/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(6, "feet"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/jaro/back.svg"
  3928. }
  3929. },
  3930. },
  3931. [
  3932. {
  3933. name: "Micro",
  3934. height: math.unit(7, "inches")
  3935. },
  3936. {
  3937. name: "Normal",
  3938. height: math.unit(5.5, "feet"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Minimacro",
  3943. height: math.unit(20, "feet")
  3944. },
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(200, "meters")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Rogue" },
  3953. {
  3954. front: {
  3955. height: math.unit(6, "feet"),
  3956. weight: math.unit(195, "lb"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/rogue/front.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(90, "feet"),
  3967. default: true
  3968. },
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Piper" },
  3973. {
  3974. front: {
  3975. height: math.unit(5 + 8 / 12, "feet"),
  3976. weight: math.unit(140, "lb"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/piper/front.svg",
  3980. extra: 3928 / 3681
  3981. }
  3982. },
  3983. },
  3984. [
  3985. {
  3986. name: "Micro",
  3987. height: math.unit(2, "inches")
  3988. },
  3989. {
  3990. name: "Normal",
  3991. height: math.unit(5 + 8 / 12, "feet")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(250, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Megamacro",
  4000. height: math.unit(7, "miles")
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Gemini" },
  4006. {
  4007. front: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(220, "lb"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/gemini/front.svg"
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(220, "lb"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/gemini/back.svg"
  4021. }
  4022. },
  4023. kneeling: {
  4024. height: math.unit(6 / 1.5, "feet"),
  4025. weight: math.unit(220, "lb"),
  4026. name: "Kneeling",
  4027. image: {
  4028. source: "./media/characters/gemini/kneeling.svg",
  4029. bottom: 0.02
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Macro",
  4036. height: math.unit(300, "meters"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(6900, "meters")
  4042. },
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Alicia" },
  4047. {
  4048. anthro: {
  4049. height: math.unit(2.35, "meters"),
  4050. weight: math.unit(73, "kg"),
  4051. name: "Anthro",
  4052. image: {
  4053. source: "./media/characters/alicia/anthro.svg"
  4054. }
  4055. },
  4056. feral: {
  4057. height: math.unit(1.69, "meters"),
  4058. weight: math.unit(73, "kg"),
  4059. name: "Feral",
  4060. image: {
  4061. source: "./media/characters/alicia/feral.svg"
  4062. }
  4063. },
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(2.35, "meters")
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(60, "meters"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(10000, "kilometers")
  4078. },
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Archy" },
  4083. {
  4084. front: {
  4085. height: math.unit(7, "feet"),
  4086. weight: math.unit(250, "lbs"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/archy/front.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Micro",
  4096. height: math.unit(1, "inch")
  4097. },
  4098. {
  4099. name: "Shorty",
  4100. height: math.unit(5, "feet")
  4101. },
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(7, "feet")
  4105. },
  4106. {
  4107. name: "Macro",
  4108. height: math.unit(600, "meters"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(1, "mile")
  4114. },
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Berri" },
  4119. {
  4120. front: {
  4121. height: math.unit(1.65, "meters"),
  4122. weight: math.unit(74, "kg"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/berri/front.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Normal",
  4132. height: math.unit(1.65, "meters")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(60, "m"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(9.213, "km")
  4142. },
  4143. {
  4144. name: "Planet Eater",
  4145. height: math.unit(489, "megameters")
  4146. },
  4147. {
  4148. name: "Teramacro",
  4149. height: math.unit(2471635000000, "meters")
  4150. },
  4151. {
  4152. name: "Examacro",
  4153. height: math.unit(8.0624e+26, "meters")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Lexi" },
  4159. {
  4160. front: {
  4161. height: math.unit(1.72, "meters"),
  4162. weight: math.unit(68, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/lexi/front.svg"
  4166. }
  4167. }
  4168. },
  4169. [
  4170. {
  4171. name: "Very Smol",
  4172. height: math.unit(10, "mm")
  4173. },
  4174. {
  4175. name: "Micro",
  4176. height: math.unit(6.8, "cm"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(1.72, "m")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Martin" },
  4187. {
  4188. front: {
  4189. height: math.unit(1.69, "meters"),
  4190. weight: math.unit(68, "kg"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/martin/front.svg",
  4194. extra: 596 / 581
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Micro",
  4201. height: math.unit(6.85, "cm"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(1.69, "m")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Juno" },
  4212. {
  4213. front: {
  4214. height: math.unit(1.69, "meters"),
  4215. weight: math.unit(68, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/juno/front.svg"
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Micro",
  4225. height: math.unit(7, "cm")
  4226. },
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(1.89, "m")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(353, "meters"),
  4234. default: true
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Samantha" },
  4240. {
  4241. front: {
  4242. height: math.unit(1.93, "meters"),
  4243. weight: math.unit(83, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/samantha/front.svg"
  4247. }
  4248. },
  4249. frontClothed: {
  4250. height: math.unit(1.93, "meters"),
  4251. weight: math.unit(83, "kg"),
  4252. name: "Front (Clothed)",
  4253. image: {
  4254. source: "./media/characters/samantha/front-clothed.svg"
  4255. }
  4256. },
  4257. back: {
  4258. height: math.unit(1.93, "meters"),
  4259. weight: math.unit(83, "kg"),
  4260. name: "Back",
  4261. image: {
  4262. source: "./media/characters/samantha/back.svg"
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(1.93, "m")
  4270. },
  4271. {
  4272. name: "Macro",
  4273. height: math.unit(74, "meters"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Macro+",
  4278. height: math.unit(223, "meters"),
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(8381, "meters"),
  4283. },
  4284. {
  4285. name: "Megamacro+",
  4286. height: math.unit(12000, "kilometers")
  4287. },
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Dr. Clay" },
  4292. {
  4293. front: {
  4294. height: math.unit(1.92, "meters"),
  4295. weight: math.unit(80, "kg"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/dr-clay/front.svg"
  4299. }
  4300. },
  4301. frontClothed: {
  4302. height: math.unit(1.92, "meters"),
  4303. weight: math.unit(80, "kg"),
  4304. name: "Front (Clothed)",
  4305. image: {
  4306. source: "./media/characters/dr-clay/front-clothed.svg"
  4307. }
  4308. }
  4309. },
  4310. [
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(1.92, "m")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(214, "meters"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Macro+",
  4322. height: math.unit(12.237, "meters"),
  4323. },
  4324. {
  4325. name: "Megamacro",
  4326. height: math.unit(557, "megameters"),
  4327. },
  4328. {
  4329. name: "Unimaginable",
  4330. height: math.unit(120e9, "lightyears")
  4331. },
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Wyvrn Ripsnarl" },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meters"),
  4339. weight: math.unit(80, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Teramacro",
  4349. height: math.unit(500000, "lightyears"),
  4350. default: true
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Vemus" },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meters"),
  4359. weight: math.unit(150, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/vemus/front.svg",
  4363. extra: 2384 / 2084,
  4364. bottom: 0.0123
  4365. }
  4366. }
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(3.75, "meters"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Big",
  4376. height: math.unit(8, "meters")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(100, "meters")
  4381. },
  4382. {
  4383. name: "Macro+",
  4384. height: math.unit(1500, "meters")
  4385. },
  4386. {
  4387. name: "Stellar",
  4388. height: math.unit(14e8, "meters")
  4389. },
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Beherit" },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meters"),
  4397. weight: math.unit(70, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/beherit/front.svg",
  4401. extra: 1408 / 1242
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(6, "feet")
  4409. },
  4410. {
  4411. name: "Lorg",
  4412. height: math.unit(25, "feet"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Lorger",
  4417. height: math.unit(75, "feet")
  4418. },
  4419. {
  4420. name: "Macro",
  4421. height: math.unit(200, "meters")
  4422. },
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Everett" },
  4427. {
  4428. front: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(150, "kg"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/everett/front.svg",
  4434. extra: 2038 / 1737,
  4435. bottom: 0.03
  4436. }
  4437. },
  4438. paw: {
  4439. height: math.unit(2 / 3.6, "meters"),
  4440. name: "Paw",
  4441. image: {
  4442. source: "./media/characters/everett/paw.svg"
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(15, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Lorg",
  4454. height: math.unit(70, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Lorger",
  4459. height: math.unit(250, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(500, "meters")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Rose Lion" },
  4469. {
  4470. front: {
  4471. height: math.unit(2, "meters"),
  4472. weight: math.unit(86, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/rose-lion/front.svg"
  4476. }
  4477. },
  4478. bent: {
  4479. height: math.unit(2 / 1.4288, "meters"),
  4480. weight: math.unit(86, "kg"),
  4481. name: "Bent",
  4482. image: {
  4483. source: "./media/characters/rose-lion/bent.svg"
  4484. }
  4485. }
  4486. },
  4487. [
  4488. {
  4489. name: "Mini-Micro",
  4490. height: math.unit(1, "cm")
  4491. },
  4492. {
  4493. name: "Micro",
  4494. height: math.unit(3.5, "inches"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(6 + 1 / 6, "feet")
  4500. },
  4501. {
  4502. name: "Mini-Macro",
  4503. height: math.unit(9 + 10 / 12, "feet")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Regal" },
  4509. {
  4510. front: {
  4511. height: math.unit(2, "meters"),
  4512. weight: math.unit(350, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/regal/front.svg"
  4516. }
  4517. },
  4518. back: {
  4519. height: math.unit(2, "meters"),
  4520. weight: math.unit(350, "lbs"),
  4521. name: "Back",
  4522. image: {
  4523. source: "./media/characters/regal/back.svg"
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Macro",
  4530. height: math.unit(350, "feet"),
  4531. default: true
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Opal" },
  4537. {
  4538. front: {
  4539. height: math.unit(4 + 11 / 12, "feet"),
  4540. weight: math.unit(100, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/opal/front.svg"
  4544. }
  4545. },
  4546. frontAlt: {
  4547. height: math.unit(4 + 11 / 12, "feet"),
  4548. weight: math.unit(100, "lbs"),
  4549. name: "Front (Alt)",
  4550. image: {
  4551. source: "./media/characters/opal/front-alt.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Small",
  4558. height: math.unit(4 + 11 / 12, "feet")
  4559. },
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(20, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(120, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(80, "miles")
  4572. },
  4573. {
  4574. name: "True Size",
  4575. height: math.unit(100000, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Vector Wuff" },
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(200, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/vector-wuff/front.svg"
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(2.8, "meters")
  4595. },
  4596. {
  4597. name: "Macro",
  4598. height: math.unit(450, "meters"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Megamacro",
  4603. height: math.unit(15, "kilometers")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Dannik" },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(256, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/dannik/front.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(69.57, "meters"),
  4623. default: true
  4624. },
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Azura Saharah" },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(120, "lbs"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/azura-saharah/front.svg"
  4636. }
  4637. },
  4638. back: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(120, "lbs"),
  4641. name: "Back",
  4642. image: {
  4643. source: "./media/characters/azura-saharah/back.svg"
  4644. }
  4645. },
  4646. },
  4647. [
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(100, "feet"),
  4651. default: true
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Kennedy" },
  4657. {
  4658. side: {
  4659. height: math.unit(5 + 4 / 12, "feet"),
  4660. weight: math.unit(163, "lbs"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/kennedy/side.svg"
  4664. }
  4665. }
  4666. },
  4667. [
  4668. {
  4669. name: "Standard Doggo",
  4670. height: math.unit(5 + 4 / 12, "feet")
  4671. },
  4672. {
  4673. name: "Big Doggo",
  4674. height: math.unit(25 + 3 / 12, "feet"),
  4675. default: true
  4676. },
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Odi Lunar" },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(90, "lbs"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/odi-lunar/front.svg"
  4688. }
  4689. }
  4690. },
  4691. [
  4692. {
  4693. name: "Micro",
  4694. height: math.unit(3, "inches"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(5.5, "feet")
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Mandake" },
  4705. {
  4706. back: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(220, "lbs"),
  4709. name: "Back",
  4710. image: {
  4711. source: "./media/characters/mandake/back.svg"
  4712. }
  4713. }
  4714. },
  4715. [
  4716. {
  4717. name: "Normal",
  4718. height: math.unit(7, "feet"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(78, "feet")
  4724. },
  4725. {
  4726. name: "Macro+",
  4727. height: math.unit(300, "meters")
  4728. },
  4729. {
  4730. name: "Macro++",
  4731. height: math.unit(2400, "feet")
  4732. },
  4733. {
  4734. name: "Megamacro",
  4735. height: math.unit(5167, "meters")
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(41769, "miles")
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Yozey" },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(120, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/yozey/front.svg"
  4752. }
  4753. },
  4754. frontAlt: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(120, "lbs"),
  4757. name: "Front (Alt)",
  4758. image: {
  4759. source: "./media/characters/yozey/front-alt.svg"
  4760. }
  4761. },
  4762. side: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(120, "lbs"),
  4765. name: "Side",
  4766. image: {
  4767. source: "./media/characters/yozey/side.svg"
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Micro",
  4774. height: math.unit(3, "inches"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(6, "feet")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Valeska Voss" },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(103, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/valeska-voss/front.svg"
  4792. }
  4793. }
  4794. },
  4795. [
  4796. {
  4797. name: "Mini-Sized Sub",
  4798. height: math.unit(3.1, "inches")
  4799. },
  4800. {
  4801. name: "Mid-Sized Sub",
  4802. height: math.unit(6.2, "inches")
  4803. },
  4804. {
  4805. name: "Full-Sized Sub",
  4806. height: math.unit(9.3, "inches")
  4807. },
  4808. {
  4809. name: "Normal",
  4810. height: math.unit(5 + 2 / 12, "foot"),
  4811. default: true
  4812. },
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Gene Zeta" },
  4817. {
  4818. front: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(160, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/gene-zeta/front.svg",
  4824. bottom: 0.03,
  4825. extra: 1
  4826. }
  4827. }
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(6.25, "foot"),
  4833. default: true
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Razinox" },
  4839. {
  4840. front: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(350, "lbs"),
  4843. name: "Front",
  4844. image: {
  4845. source: "./media/characters/razinox/front.svg",
  4846. extra: 1686 / 1548
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(350, "lbs"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/razinox/back.svg",
  4855. extra: 1660 / 1590
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(10 + 8 / 12, "foot")
  4863. },
  4864. {
  4865. name: "Minimacro",
  4866. height: math.unit(15, "foot")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(60, "foot"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Megamacro",
  4875. height: math.unit(5, "miles")
  4876. },
  4877. {
  4878. name: "Gigamacro",
  4879. height: math.unit(6000, "miles")
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Cobalt" },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(150, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/cobalt/front.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(8 + 1 / 12, "foot")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(111, "foot"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Supracosmic",
  4907. height: math.unit(1e42, "feet")
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Amanda" },
  4913. {
  4914. front: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(140, "lbs"),
  4917. name: "Front",
  4918. image: {
  4919. source: "./media/characters/amanda/front.svg"
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Micro",
  4926. height: math.unit(5, "inches"),
  4927. default: true
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Teal" },
  4933. {
  4934. front: {
  4935. height: math.unit(5.59, "feet"),
  4936. weight: math.unit(250, "lbs"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/teal/front.svg"
  4940. }
  4941. },
  4942. frontAlt: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(250, "lbs"),
  4945. name: "Front (Alt)",
  4946. image: {
  4947. source: "./media/characters/teal/front-alt.svg",
  4948. bottom: 0.04,
  4949. extra: 1
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(12, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Macro",
  4961. height: math.unit(300, "feet")
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Ravin Amulet" },
  4967. {
  4968. frontCat: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(180, "lbs"),
  4971. name: "Front (Cat)",
  4972. image: {
  4973. source: "./media/characters/ravin-amulet/front-cat.svg"
  4974. }
  4975. },
  4976. frontCatAlt: {
  4977. height: math.unit(6, "feet"),
  4978. weight: math.unit(180, "lbs"),
  4979. name: "Front (Alt, Cat)",
  4980. image: {
  4981. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4982. }
  4983. },
  4984. frontWerewolf: {
  4985. height: math.unit(6 * 1.2, "feet"),
  4986. weight: math.unit(225, "lbs"),
  4987. name: "Front (Werewolf)",
  4988. image: {
  4989. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4990. }
  4991. },
  4992. backWerewolf: {
  4993. height: math.unit(6 * 1.2, "feet"),
  4994. weight: math.unit(225, "lbs"),
  4995. name: "Back (Werewolf)",
  4996. image: {
  4997. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Nano",
  5004. height: math.unit(1, "micrometer")
  5005. },
  5006. {
  5007. name: "Micro",
  5008. height: math.unit(1, "inch")
  5009. },
  5010. {
  5011. name: "Normal",
  5012. height: math.unit(6, "feet"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(60, "feet")
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Fluoresce" },
  5023. {
  5024. front: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(165, "lbs"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/fluoresce/front.svg"
  5030. }
  5031. }
  5032. },
  5033. [
  5034. {
  5035. name: "Micro",
  5036. height: math.unit(6, "cm")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5 + 7 / 12, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(56, "feet")
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(1.9, "miles")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Aurora" },
  5055. {
  5056. front: {
  5057. height: math.unit(9 + 6 / 12, "feet"),
  5058. weight: math.unit(523, "lbs"),
  5059. name: "Side",
  5060. image: {
  5061. source: "./media/characters/aurora/side.svg"
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(9 + 6 / 12, "feet")
  5069. },
  5070. {
  5071. name: "Macro",
  5072. height: math.unit(96, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Macro+",
  5077. height: math.unit(243, "feet")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Ranek" },
  5083. {
  5084. front: {
  5085. height: math.unit(194, "cm"),
  5086. weight: math.unit(90, "kg"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/ranek/front.svg"
  5090. }
  5091. },
  5092. side: {
  5093. height: math.unit(194, "cm"),
  5094. weight: math.unit(90, "kg"),
  5095. name: "Side",
  5096. image: {
  5097. source: "./media/characters/ranek/side.svg"
  5098. }
  5099. },
  5100. back: {
  5101. height: math.unit(194, "cm"),
  5102. weight: math.unit(90, "kg"),
  5103. name: "Back",
  5104. image: {
  5105. source: "./media/characters/ranek/back.svg"
  5106. }
  5107. },
  5108. feral: {
  5109. height: math.unit(30, "cm"),
  5110. weight: math.unit(1.6, "lbs"),
  5111. name: "Feral",
  5112. image: {
  5113. source: "./media/characters/ranek/feral.svg"
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(194, "cm"),
  5121. default: true
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(100, "meters")
  5126. },
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Andrew Cooper" },
  5131. {
  5132. front: {
  5133. height: math.unit(5 + 6 / 12, "feet"),
  5134. weight: math.unit(153, "lbs"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/andrew-cooper/front.svg"
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Nano",
  5144. height: math.unit(1, "mm")
  5145. },
  5146. {
  5147. name: "Micro",
  5148. height: math.unit(2, "inches")
  5149. },
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(5 + 6 / 12, "feet"),
  5153. default: true
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Akane Sato" },
  5159. {
  5160. front: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/akane-sato/front.svg",
  5166. extra: 1219 / 1140
  5167. }
  5168. },
  5169. back: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(180, "lbs"),
  5172. name: "Back",
  5173. image: {
  5174. source: "./media/characters/akane-sato/back.svg",
  5175. extra: 1219 / 1170
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(2.5, "meters")
  5183. },
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(250, "meters"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(25, "km")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Rook" },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(65, "kg"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/rook/front.svg",
  5204. extra: 960/950
  5205. }
  5206. }
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(8.8, "feet")
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(88, "feet"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(8, "miles")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Prodigy" },
  5226. {
  5227. front: {
  5228. height: math.unit(12 + 2 / 12, "feet"),
  5229. weight: math.unit(808, "lbs"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/prodigy/front.svg"
  5233. }
  5234. }
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(12 + 2 / 12, "feet"),
  5240. default: true
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(143, "feet")
  5245. },
  5246. {
  5247. name: "Macro+",
  5248. height: math.unit(400, "feet")
  5249. },
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Daniel" },
  5254. {
  5255. front: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(225, "lbs"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/daniel/front.svg"
  5261. }
  5262. },
  5263. leaning: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(225, "lbs"),
  5266. name: "Leaning",
  5267. image: {
  5268. source: "./media/characters/daniel/leaning.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1000, "feet"),
  5276. default: true
  5277. },
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Chiros" },
  5282. {
  5283. front: {
  5284. height: math.unit(6, "feet"),
  5285. weight: math.unit(88, "lbs"),
  5286. name: "Front",
  5287. image: {
  5288. source: "./media/characters/chiros/front.svg",
  5289. extra: 306 / 226
  5290. }
  5291. },
  5292. side: {
  5293. height: math.unit(6, "feet"),
  5294. weight: math.unit(88, "lbs"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/chiros/side.svg",
  5298. extra: 306 / 226
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(6, "cm"),
  5306. default: true
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Selka" },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(100, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/selka/front.svg",
  5319. extra: 947 / 887
  5320. }
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(5, "cm"),
  5327. default: true
  5328. },
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Verin" },
  5333. {
  5334. front: {
  5335. height: math.unit(8 + 3 / 12, "feet"),
  5336. weight: math.unit(424, "lbs"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/verin/front.svg",
  5340. extra: 1845 / 1550
  5341. }
  5342. },
  5343. frontArmored: {
  5344. height: math.unit(8 + 3 / 12, "feet"),
  5345. weight: math.unit(424, "lbs"),
  5346. name: "Front (Armored)",
  5347. image: {
  5348. source: "./media/characters/verin/front-armor.svg",
  5349. extra: 1845 / 1550,
  5350. bottom: 0.01
  5351. }
  5352. },
  5353. back: {
  5354. height: math.unit(8 + 3 / 12, "feet"),
  5355. weight: math.unit(424, "lbs"),
  5356. name: "Back",
  5357. image: {
  5358. source: "./media/characters/verin/back.svg",
  5359. bottom: 0.1,
  5360. extra: 1
  5361. }
  5362. },
  5363. foot: {
  5364. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5365. name: "Foot",
  5366. image: {
  5367. source: "./media/characters/verin/foot.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(8 + 3 / 12, "feet")
  5375. },
  5376. {
  5377. name: "Minimacro",
  5378. height: math.unit(21, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(626, "feet")
  5384. },
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Sovrim Terraquian" },
  5389. {
  5390. front: {
  5391. height: math.unit(2.718, "meters"),
  5392. weight: math.unit(150, "lbs"),
  5393. name: "Front",
  5394. image: {
  5395. source: "./media/characters/sovrim-terraquian/front.svg"
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(2.718, "meters"),
  5400. weight: math.unit(150, "lbs"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/sovrim-terraquian/back.svg"
  5404. }
  5405. }
  5406. },
  5407. [
  5408. {
  5409. name: "Micro",
  5410. height: math.unit(2, "inches")
  5411. },
  5412. {
  5413. name: "Small",
  5414. height: math.unit(1, "meter")
  5415. },
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(Math.E, "meters"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(20, "meters")
  5424. },
  5425. {
  5426. name: "Macro+",
  5427. height: math.unit(400, "meters")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Reece Silvermane" },
  5433. {
  5434. front: {
  5435. height: math.unit(7, "feet"),
  5436. weight: math.unit(489, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/reece-silvermane/front.svg",
  5440. bottom: 0.02,
  5441. extra: 1
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(1.5, "miles"),
  5449. default: true
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Kane" },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(78, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/kane/front.svg",
  5462. extra: 978 / 899
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(2.1, "m"),
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(1, "km"),
  5474. default: true
  5475. },
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Tegon" },
  5480. {
  5481. front: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(200, "kg"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/tegon/front.svg",
  5487. bottom: 0.01,
  5488. extra: 1
  5489. }
  5490. },
  5491. },
  5492. [
  5493. {
  5494. name: "Micro",
  5495. height: math.unit(1, "inch")
  5496. },
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(6 + 3 / 12, "feet"),
  5500. default: true
  5501. },
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(300, "feet")
  5505. },
  5506. {
  5507. name: "Megamacro",
  5508. height: math.unit(69, "miles")
  5509. },
  5510. ]
  5511. ))
  5512. characterMakers.push(() => makeCharacter(
  5513. { name: "Arcturax" },
  5514. {
  5515. side: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(2304, "lbs"),
  5518. name: "Side",
  5519. image: {
  5520. source: "./media/characters/arcturax/side.svg",
  5521. extra: 790 / 376,
  5522. bottom: 0.01
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "Micro",
  5529. height: math.unit(2, "inch")
  5530. },
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(6, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(39, "feet"),
  5538. default: true
  5539. },
  5540. {
  5541. name: "Megamacro",
  5542. height: math.unit(7, "miles")
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Sentri" },
  5548. {
  5549. front: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(50, "lbs"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/sentri/front.svg",
  5555. extra: 1750 / 1570,
  5556. bottom: 0.025
  5557. }
  5558. },
  5559. frontAlt: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(50, "lbs"),
  5562. name: "Front (Alt)",
  5563. image: {
  5564. source: "./media/characters/sentri/front-alt.svg",
  5565. extra: 1750 / 1570,
  5566. bottom: 0.025
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(15, "feet"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "Macro",
  5578. height: math.unit(2500, "feet")
  5579. }
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Corvin" },
  5584. {
  5585. front: {
  5586. height: math.unit(5 + 8 / 12, "feet"),
  5587. weight: math.unit(130, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/corvin/front.svg",
  5591. extra: 1803 / 1629
  5592. }
  5593. },
  5594. frontShirt: {
  5595. height: math.unit(5 + 8 / 12, "feet"),
  5596. weight: math.unit(130, "lbs"),
  5597. name: "Front (Shirt)",
  5598. image: {
  5599. source: "./media/characters/corvin/front-shirt.svg",
  5600. extra: 1803 / 1629
  5601. }
  5602. },
  5603. frontPoncho: {
  5604. height: math.unit(5 + 8 / 12, "feet"),
  5605. weight: math.unit(130, "lbs"),
  5606. name: "Front (Poncho)",
  5607. image: {
  5608. source: "./media/characters/corvin/front-poncho.svg",
  5609. extra: 1803 / 1629
  5610. }
  5611. },
  5612. side: {
  5613. height: math.unit(5 + 8 / 12, "feet"),
  5614. weight: math.unit(130, "lbs"),
  5615. name: "Side",
  5616. image: {
  5617. source: "./media/characters/corvin/side.svg",
  5618. extra: 1012 / 945
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(5 + 8 / 12, "feet"),
  5623. weight: math.unit(130, "lbs"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/corvin/back.svg",
  5627. extra: 1803 / 1629
  5628. }
  5629. },
  5630. },
  5631. [
  5632. {
  5633. name: "Micro",
  5634. height: math.unit(3, "inches")
  5635. },
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 8 / 12, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(300, "feet"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(500, "miles")
  5648. }
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Q" },
  5653. {
  5654. front: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(135, "lbs"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/q/front.svg",
  5660. extra: 854 / 752,
  5661. bottom: 0.005
  5662. }
  5663. },
  5664. back: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(130, "lbs"),
  5667. name: "Back",
  5668. image: {
  5669. source: "./media/characters/q/back.svg",
  5670. extra: 854 / 752
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(90, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Extra Macro",
  5682. height: math.unit(300, "feet"),
  5683. },
  5684. {
  5685. name: "BIG WALF",
  5686. height: math.unit(750, "feet"),
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Carley" },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(150, "lbs"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/carley/front.svg",
  5699. extra: 3927 / 3540,
  5700. bottom: 0.03
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(6 + 3 / 12, "feet")
  5708. },
  5709. {
  5710. name: "Macro",
  5711. height: math.unit(185, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Megamacro",
  5716. height: math.unit(8, "miles"),
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Citrine" },
  5722. {
  5723. front: {
  5724. height: math.unit(3, "feet"),
  5725. weight: math.unit(28, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/citrine/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3, "feet"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Aura Starwind" },
  5742. {
  5743. front: {
  5744. height: math.unit(14, "feet"),
  5745. weight: math.unit(1450, "kg"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/aura-starwind/front.svg",
  5749. extra: 1455 / 1335
  5750. }
  5751. },
  5752. side: {
  5753. height: math.unit(14, "feet"),
  5754. weight: math.unit(1450, "kg"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/aura-starwind/side.svg",
  5758. extra: 1654 / 1497
  5759. }
  5760. },
  5761. taur: {
  5762. height: math.unit(18, "feet"),
  5763. weight: math.unit(5500, "kg"),
  5764. name: "Taur",
  5765. image: {
  5766. source: "./media/characters/aura-starwind/taur.svg",
  5767. extra: 1760 / 1650
  5768. }
  5769. },
  5770. feral: {
  5771. height: math.unit(46, "feet"),
  5772. weight: math.unit(25000, "kg"),
  5773. name: "Feral",
  5774. image: {
  5775. source: "./media/characters/aura-starwind/feral.svg"
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(14, "feet"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Macro",
  5787. height: math.unit(50, "meters")
  5788. },
  5789. {
  5790. name: "Megamacro",
  5791. height: math.unit(5000, "meters")
  5792. },
  5793. {
  5794. name: "Gigamacro",
  5795. height: math.unit(100000, "kilometers")
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Rivet" },
  5801. {
  5802. front: {
  5803. height: math.unit(2 + 7 / 12, "feet"),
  5804. weight: math.unit(32, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/rivet/front.svg",
  5808. extra: 1716 / 1658,
  5809. bottom: 0.03
  5810. }
  5811. },
  5812. foot: {
  5813. height: math.unit(0.551, "feet"),
  5814. name: "Rivet's Foot",
  5815. image: {
  5816. source: "./media/characters/rivet/foot.svg"
  5817. },
  5818. rename: true
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(1.5, "inches"),
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(2 + 7 / 12, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(85, "feet")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(2.2, "km")
  5838. }
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Coffee" },
  5843. {
  5844. front: {
  5845. height: math.unit(5 + 9 / 12, "feet"),
  5846. weight: math.unit(150, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/coffee/front.svg",
  5850. extra: 3666 / 3032,
  5851. bottom: 0.04
  5852. }
  5853. },
  5854. foot: {
  5855. height: math.unit(1.29, "feet"),
  5856. name: "Foot",
  5857. image: {
  5858. source: "./media/characters/coffee/foot.svg"
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "inches"),
  5866. },
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(5 + 9 / 12, "feet"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(800, "feet")
  5875. },
  5876. {
  5877. name: "Megamacro",
  5878. height: math.unit(25, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Chari-Gal" },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(200, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/chari-gal/front.svg",
  5891. extra: 1568 / 1385,
  5892. bottom: 0.047
  5893. }
  5894. },
  5895. gigantamax: {
  5896. height: math.unit(6 * 16, "feet"),
  5897. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5898. name: "Gigantamax",
  5899. image: {
  5900. source: "./media/characters/chari-gal/gigantamax.svg",
  5901. extra: 1124 / 888,
  5902. bottom: 0.03
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(5 + 7 / 12, "feet")
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(200, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Nova" },
  5920. {
  5921. front: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(150, "lbs"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/nova/front.svg",
  5927. extra: 5000 / 4722,
  5928. bottom: 0.02
  5929. }
  5930. }
  5931. },
  5932. [
  5933. {
  5934. name: "Micro-",
  5935. height: math.unit(0.8, "inches")
  5936. },
  5937. {
  5938. name: "Micro",
  5939. height: math.unit(2, "inches"),
  5940. default: true
  5941. },
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Argent" },
  5946. {
  5947. front: {
  5948. height: math.unit(3 + 1 / 12, "feet"),
  5949. weight: math.unit(21.7, "lbs"),
  5950. name: "Front",
  5951. image: {
  5952. source: "./media/characters/argent/front.svg",
  5953. extra: 1565 / 1416,
  5954. bottom: 0.01
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Micro",
  5961. height: math.unit(2, "inches")
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(3 + 1 / 12, "feet"),
  5966. default: true
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(120, "feet")
  5971. },
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Mira al-Cul" },
  5976. {
  5977. lamp: {
  5978. height: math.unit(7 * 1559 / 989, "feet"),
  5979. name: "Magic Lamp",
  5980. image: {
  5981. source: "./media/characters/mira-al-cul/lamp.svg",
  5982. extra: 1617 / 1559
  5983. }
  5984. },
  5985. front: {
  5986. height: math.unit(7, "feet"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/mira-al-cul/front.svg",
  5990. extra: 1044 / 990
  5991. }
  5992. },
  5993. },
  5994. [
  5995. {
  5996. name: "Heavily Restricted",
  5997. height: math.unit(7 * 1559 / 989, "feet")
  5998. },
  5999. {
  6000. name: "Freshly Freed",
  6001. height: math.unit(50 * 1559 / 989, "feet")
  6002. },
  6003. {
  6004. name: "World Encompassing",
  6005. height: math.unit(10000 * 1559 / 989, "miles")
  6006. },
  6007. {
  6008. name: "Galactic",
  6009. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6010. },
  6011. {
  6012. name: "Palmed Universe",
  6013. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Multiversal Matriarch",
  6018. height: math.unit(8.87e10, "yottameters")
  6019. },
  6020. {
  6021. name: "Void Mother",
  6022. height: math.unit(3.14e110, "yottaparsecs")
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Kuro-shi Uchū" },
  6028. {
  6029. front: {
  6030. height: math.unit(17 + 1 / 12, "feet"),
  6031. weight: math.unit(476.2 * 5, "lbs"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/kuro-shi-uchū/front.svg",
  6035. extra: 2329 / 1835,
  6036. bottom: 0.02
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Micro",
  6043. height: math.unit(2, "inches")
  6044. },
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(12, "meters")
  6048. },
  6049. {
  6050. name: "Planetary",
  6051. height: math.unit(0.00929, "AU"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Universal",
  6056. height: math.unit(20, "gigaparsecs")
  6057. },
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Katherine" },
  6062. {
  6063. front: {
  6064. height: math.unit(5 + 2 / 12, "feet"),
  6065. weight: math.unit(120, "lbs"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/katherine/front.svg",
  6069. extra: 2075 / 1969
  6070. }
  6071. },
  6072. dress: {
  6073. height: math.unit(5 + 2 / 12, "feet"),
  6074. weight: math.unit(120, "lbs"),
  6075. name: "Dress",
  6076. image: {
  6077. source: "./media/characters/katherine/dress.svg",
  6078. extra: 2258 / 2064
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Micro",
  6085. height: math.unit(1, "inches"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(5 + 2 / 12, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(100, "meters")
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(80, "miles")
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Yevis" },
  6104. {
  6105. front: {
  6106. height: math.unit(7 + 8 / 12, "feet"),
  6107. weight: math.unit(250, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/yevis/front.svg",
  6111. extra: 1938 / 1755
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Mortal",
  6118. height: math.unit(7 + 8 / 12, "feet")
  6119. },
  6120. {
  6121. name: "Battle",
  6122. height: math.unit(25 + 11 / 12, "feet")
  6123. },
  6124. {
  6125. name: "Wrath",
  6126. height: math.unit(1654 + 11 / 12, "feet")
  6127. },
  6128. {
  6129. name: "Planet Destroyer",
  6130. height: math.unit(12000, "miles")
  6131. },
  6132. {
  6133. name: "Galaxy Conqueror",
  6134. height: math.unit(1.45, "zettameters"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Universal War",
  6139. height: math.unit(184, "gigaparsecs")
  6140. },
  6141. {
  6142. name: "Eternity War",
  6143. height: math.unit(1.98e55, "yottaparsecs")
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Xavier" },
  6149. {
  6150. front: {
  6151. height: math.unit(5 + 8 / 12, "feet"),
  6152. weight: math.unit(63, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/xavier/front.svg",
  6156. extra: 944 / 883
  6157. }
  6158. },
  6159. frontStretch: {
  6160. height: math.unit(5 + 8 / 12, "feet"),
  6161. weight: math.unit(63, "kg"),
  6162. name: "Stretching",
  6163. image: {
  6164. source: "./media/characters/xavier/front-stretch.svg",
  6165. extra: 962 / 820
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(5 + 8 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Macro",
  6176. height: math.unit(100, "meters"),
  6177. default: true
  6178. },
  6179. {
  6180. name: "McLargeHuge",
  6181. height: math.unit(10, "miles")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Joshii" },
  6187. {
  6188. front: {
  6189. height: math.unit(5 + 5 / 12, "feet"),
  6190. weight: math.unit(150, "lb"),
  6191. name: "Front",
  6192. image: {
  6193. source: "./media/characters/joshii/front.svg"
  6194. }
  6195. },
  6196. foot: {
  6197. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6198. name: "Foot",
  6199. image: {
  6200. source: "./media/characters/joshii/foot.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(2, "inches")
  6208. },
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(5 + 5 / 12, "feet"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(785, "feet")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(24.5, "miles")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Goddess Elizabeth" },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(150, "lb"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/goddess-elizabeth/front.svg",
  6233. extra: 1800 / 1525,
  6234. bottom: 0.005
  6235. }
  6236. },
  6237. foot: {
  6238. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6239. name: "Foot",
  6240. image: {
  6241. source: "./media/characters/goddess-elizabeth/foot.svg"
  6242. }
  6243. },
  6244. mouth: {
  6245. height: math.unit(6, "feet"),
  6246. name: "Mouth",
  6247. image: {
  6248. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(12, "feet")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(80, "miles"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(15000, "parsecs")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Kara" },
  6270. {
  6271. front: {
  6272. height: math.unit(5 + 9 / 12, "feet"),
  6273. weight: math.unit(144, "lb"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/kara/front.svg"
  6277. }
  6278. },
  6279. feet: {
  6280. height: math.unit(6 / 6.765, "feet"),
  6281. name: "Kara's Feet",
  6282. rename: true,
  6283. image: {
  6284. source: "./media/characters/kara/feet.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(5 + 9 / 12, "feet")
  6292. },
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(174, "feet"),
  6296. default: true
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Tyrone" },
  6302. {
  6303. front: {
  6304. height: math.unit(18, "feet"),
  6305. weight: math.unit(4050, "lb"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/tyrone/front.svg",
  6309. extra: 2520 / 2402,
  6310. bottom: 0.025
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(18, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(300, "feet")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Danny" },
  6328. {
  6329. front: {
  6330. height: math.unit(7 + 8 / 12, "feet"),
  6331. weight: math.unit(120, "lb"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/danny/front.svg",
  6335. extra: 1490 / 1350
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(7 + 8 / 12, "feet"),
  6340. weight: math.unit(120, "lb"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/danny/back.svg",
  6344. extra: 1490 / 1350
  6345. }
  6346. },
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(7 + 8 / 12, "feet"),
  6352. default: true
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Mallow" },
  6358. {
  6359. front: {
  6360. height: math.unit(3.5, "inches"),
  6361. weight: math.unit(19, "grams"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/mallow/front.svg",
  6365. extra: 471 / 431
  6366. }
  6367. },
  6368. back: {
  6369. height: math.unit(3.5, "inches"),
  6370. weight: math.unit(19, "grams"),
  6371. name: "Back",
  6372. image: {
  6373. source: "./media/characters/mallow/back.svg",
  6374. extra: 471 / 431
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(3.5, "inches"),
  6382. default: true
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Starry Aqua" },
  6388. {
  6389. front: {
  6390. height: math.unit(9, "feet"),
  6391. weight: math.unit(230, "kg"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/starry-aqua/front.svg"
  6395. }
  6396. },
  6397. back: {
  6398. height: math.unit(9, "feet"),
  6399. weight: math.unit(230, "kg"),
  6400. name: "Back",
  6401. image: {
  6402. source: "./media/characters/starry-aqua/back.svg"
  6403. }
  6404. },
  6405. hand: {
  6406. height: math.unit(9 * 0.1168, "feet"),
  6407. name: "Hand",
  6408. image: {
  6409. source: "./media/characters/starry-aqua/hand.svg"
  6410. }
  6411. },
  6412. foot: {
  6413. height: math.unit(9 * 0.18, "feet"),
  6414. name: "Foot",
  6415. image: {
  6416. source: "./media/characters/starry-aqua/foot.svg"
  6417. }
  6418. }
  6419. },
  6420. [
  6421. {
  6422. name: "Micro",
  6423. height: math.unit(3, "inches")
  6424. },
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(9, "feet")
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(300, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Megamacro",
  6436. height: math.unit(3200, "feet")
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Luka" },
  6442. {
  6443. front: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(230, "lb"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/luka/front.svg",
  6449. extra: 1,
  6450. bottom: 0.025
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(12 + 8 / 12, "feet"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Minimacro",
  6462. height: math.unit(20, "feet")
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(250, "feet")
  6467. },
  6468. {
  6469. name: "Megamacro",
  6470. height: math.unit(5, "miles")
  6471. },
  6472. {
  6473. name: "Gigamacro",
  6474. height: math.unit(8000, "miles")
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Natalie Nightring" },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(150, "lb"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/natalie-nightring/front.svg",
  6487. extra: 1,
  6488. bottom: 0.06
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Uh Oh",
  6495. height: math.unit(0.1, "mm")
  6496. },
  6497. {
  6498. name: "Small",
  6499. height: math.unit(3, "inches")
  6500. },
  6501. {
  6502. name: "Human Scale",
  6503. height: math.unit(6, "feet")
  6504. },
  6505. {
  6506. name: "Librarian",
  6507. height: math.unit(50, "feet"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Immense",
  6512. height: math.unit(200, "miles")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Danni Rosie" },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(180, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/danni-rosie/front.svg",
  6525. extra: 1260 / 1128,
  6526. bottom: 0.022
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Micro",
  6533. height: math.unit(2, "inches"),
  6534. default: true
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Samantha Kruse" },
  6540. {
  6541. front: {
  6542. height: math.unit(5 + 9 / 12, "feet"),
  6543. weight: math.unit(220, "lb"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/samantha-kruse/front.svg",
  6547. extra: (985 / 935),
  6548. bottom: 0.03
  6549. }
  6550. },
  6551. frontUndressed: {
  6552. height: math.unit(5 + 9 / 12, "feet"),
  6553. weight: math.unit(220, "lb"),
  6554. name: "Front (Undressed)",
  6555. image: {
  6556. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6557. extra: (973 / 923),
  6558. bottom: 0.025
  6559. }
  6560. },
  6561. fat: {
  6562. height: math.unit(5 + 9 / 12, "feet"),
  6563. weight: math.unit(900, "lb"),
  6564. name: "Front (Fat)",
  6565. image: {
  6566. source: "./media/characters/samantha-kruse/fat.svg",
  6567. extra: 2688 / 2561
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(5 + 9 / 12, "feet"),
  6575. default: true
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Amelia Rosie" },
  6581. {
  6582. back: {
  6583. height: math.unit(5 + 4 / 12, "feet"),
  6584. weight: math.unit(4963, "lb"),
  6585. name: "Back",
  6586. image: {
  6587. source: "./media/characters/amelia-rosie/back.svg",
  6588. extra: 1113 / 963,
  6589. bottom: 0.01
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Level 0",
  6596. height: math.unit(5 + 4 / 12, "feet")
  6597. },
  6598. {
  6599. name: "Level 1",
  6600. height: math.unit(164597, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Level 2",
  6605. height: math.unit(956243, "miles")
  6606. },
  6607. {
  6608. name: "Level 3",
  6609. height: math.unit(29421709423, "miles")
  6610. },
  6611. {
  6612. name: "Level 4",
  6613. height: math.unit(154, "lightyears")
  6614. },
  6615. {
  6616. name: "Level 5",
  6617. height: math.unit(4738272, "lightyears")
  6618. },
  6619. {
  6620. name: "Level 6",
  6621. height: math.unit(145787152896, "lightyears")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Rook Kitara" },
  6627. {
  6628. front: {
  6629. height: math.unit(5 + 11 / 12, "feet"),
  6630. weight: math.unit(65, "kg"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/rook-kitara/front.svg",
  6634. extra: 1347 / 1274,
  6635. bottom: 0.005
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Totally Unfair",
  6642. height: math.unit(1.8, "mm")
  6643. },
  6644. {
  6645. name: "Lap Rookie",
  6646. height: math.unit(1.4, "feet")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(5 + 11 / 12, "feet"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "How Did This Happen",
  6655. height: math.unit(80, "miles")
  6656. }
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Pisces" },
  6661. {
  6662. front: {
  6663. height: math.unit(7, "feet"),
  6664. weight: math.unit(300, "lb"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/pisces/front.svg",
  6668. extra: 2255 / 2115,
  6669. bottom: 0.03
  6670. }
  6671. },
  6672. back: {
  6673. height: math.unit(7, "feet"),
  6674. weight: math.unit(300, "lb"),
  6675. name: "Back",
  6676. image: {
  6677. source: "./media/characters/pisces/back.svg",
  6678. extra: 2146 / 2055,
  6679. bottom: 0.04
  6680. }
  6681. },
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(7, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Swimming Pool",
  6691. height: math.unit(12.2, "meters")
  6692. },
  6693. {
  6694. name: "Olympic Swimming Pool",
  6695. height: math.unit(56.3, "meters")
  6696. },
  6697. {
  6698. name: "Lake Superior",
  6699. height: math.unit(93900, "meters")
  6700. },
  6701. {
  6702. name: "Mediterranean Sea",
  6703. height: math.unit(644457, "meters")
  6704. },
  6705. {
  6706. name: "World's Oceans",
  6707. height: math.unit(4567491, "meters")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Zelas" },
  6713. {
  6714. front: {
  6715. height: math.unit(2.3, "meters"),
  6716. weight: math.unit(120, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/zelas/front.svg"
  6720. }
  6721. },
  6722. side: {
  6723. height: math.unit(2.3, "meters"),
  6724. weight: math.unit(120, "kg"),
  6725. name: "Side",
  6726. image: {
  6727. source: "./media/characters/zelas/side.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(2.3, "meters"),
  6732. weight: math.unit(120, "kg"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/zelas/back.svg"
  6736. }
  6737. },
  6738. foot: {
  6739. height: math.unit(1.116, "feet"),
  6740. name: "Foot",
  6741. image: {
  6742. source: "./media/characters/zelas/foot.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(2.3, "meters")
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(30, "meters"),
  6754. default: true
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Talbot" },
  6760. {
  6761. front: {
  6762. height: math.unit(1, "inch"),
  6763. weight: math.unit(0.21, "grams"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/talbot/front.svg",
  6767. extra: 594 / 544
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(1, "inch"),
  6775. default: true
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Fliss" },
  6781. {
  6782. front: {
  6783. height: math.unit(3 + 3 / 12, "feet"),
  6784. weight: math.unit(51.8, "lb"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/fliss/front.svg",
  6788. extra: 840 / 640
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Teeny Tiny",
  6795. height: math.unit(1, "mm")
  6796. },
  6797. {
  6798. name: "Small",
  6799. height: math.unit(1, "inch"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Standard Sylveon",
  6804. height: math.unit(3 + 3 / 12, "feet")
  6805. },
  6806. {
  6807. name: "Large Nuisance",
  6808. height: math.unit(33, "feet")
  6809. },
  6810. {
  6811. name: "City Filler",
  6812. height: math.unit(3000, "feet")
  6813. },
  6814. {
  6815. name: "New Horizon",
  6816. height: math.unit(6000, "miles")
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Fleta" },
  6822. {
  6823. front: {
  6824. height: math.unit(5, "cm"),
  6825. weight: math.unit(1.94, "g"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/fleta/front.svg",
  6829. extra: 835 / 803
  6830. }
  6831. },
  6832. back: {
  6833. height: math.unit(5, "cm"),
  6834. weight: math.unit(1.94, "g"),
  6835. name: "Back",
  6836. image: {
  6837. source: "./media/characters/fleta/back.svg",
  6838. extra: 835 / 803
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Micro",
  6845. height: math.unit(5, "cm"),
  6846. default: true
  6847. },
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Dominic" },
  6852. {
  6853. front: {
  6854. height: math.unit(6, "feet"),
  6855. weight: math.unit(225, "lb"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/dominic/front.svg",
  6859. extra: 1770 / 1620,
  6860. bottom: 0.025
  6861. }
  6862. },
  6863. back: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(225, "lb"),
  6866. name: "Back",
  6867. image: {
  6868. source: "./media/characters/dominic/back.svg",
  6869. extra: 1745 / 1620,
  6870. bottom: 0.065
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Nano",
  6877. height: math.unit(0.1, "mm")
  6878. },
  6879. {
  6880. name: "Micro-",
  6881. height: math.unit(1, "mm")
  6882. },
  6883. {
  6884. name: "Micro",
  6885. height: math.unit(4, "inches")
  6886. },
  6887. {
  6888. name: "Normal",
  6889. height: math.unit(6 + 4 / 12, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(115, "feet")
  6895. },
  6896. {
  6897. name: "Macro+",
  6898. height: math.unit(955, "feet")
  6899. },
  6900. {
  6901. name: "Megamacro",
  6902. height: math.unit(8990, "feet")
  6903. },
  6904. {
  6905. name: "Gigmacro",
  6906. height: math.unit(9310, "miles")
  6907. },
  6908. {
  6909. name: "Teramacro",
  6910. height: math.unit(1567005010, "miles")
  6911. },
  6912. {
  6913. name: "Examacro",
  6914. height: math.unit(1425, "parsecs")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Major Colonel" },
  6920. {
  6921. front: {
  6922. height: math.unit(400, "feet"),
  6923. weight: math.unit(44444444, "lb"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/major-colonel/front.svg"
  6927. }
  6928. },
  6929. back: {
  6930. height: math.unit(400, "feet"),
  6931. weight: math.unit(44444444, "lb"),
  6932. name: "Back",
  6933. image: {
  6934. source: "./media/characters/major-colonel/back.svg"
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Macro",
  6941. height: math.unit(400, "feet"),
  6942. default: true
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Axel Lycan" },
  6948. {
  6949. front: {
  6950. height: math.unit(6, "feet"),
  6951. weight: math.unit(120, "lb"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/axel-lycan/front.svg",
  6955. extra: 1,
  6956. bottom: 0.08
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(1, "km"),
  6964. default: true
  6965. },
  6966. ]
  6967. ))
  6968. characterMakers.push(() => makeCharacter(
  6969. { name: "Vanrel (Hyena)" },
  6970. {
  6971. front: {
  6972. height: math.unit(5 + 9 / 12, "feet"),
  6973. weight: math.unit(175, "lb"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/vanrel-hyena/front.svg",
  6977. extra: 1086 / 1010,
  6978. bottom: 0.04
  6979. }
  6980. },
  6981. },
  6982. [
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(5 + 9 / 12, "feet"),
  6986. default: true
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Abbott Absol" },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(103, "lb"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/abbott-absol/front.svg",
  6999. extra: 2010 / 1842
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Megamicro",
  7006. height: math.unit(0.1, "mm")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(1, "inch")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(6, "feet"),
  7015. default: true
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Hector" },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(264, "lb"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/hector/front.svg",
  7028. extra: 2280 / 2130,
  7029. bottom: 0.07
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(12.25, "foot"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(160, "feet")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Sal" },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(150, "lb"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/sal/front.svg",
  7054. extra: 1846 / 1699,
  7055. bottom: 0.04
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Megamacro",
  7062. height: math.unit(10, "miles"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Ranger" },
  7069. {
  7070. front: {
  7071. height: math.unit(3, "meters"),
  7072. weight: math.unit(450, "kg"),
  7073. name: "front",
  7074. image: {
  7075. source: "./media/characters/ranger/front.svg",
  7076. extra: 2401 / 2243,
  7077. bottom: 0.05
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(3, "meters"),
  7085. default: true
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Theresa" },
  7091. {
  7092. front: {
  7093. height: math.unit(14, "feet"),
  7094. weight: math.unit(800, "kg"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/theresa/front.svg",
  7098. extra: 3575 / 3346,
  7099. bottom: 0.03
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(14, "feet"),
  7107. default: true
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Ine" },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(3, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/ine/front.svg",
  7120. extra: 678 / 539,
  7121. bottom: 0.023
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(2.265, "feet"),
  7129. default: true
  7130. },
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Vial" },
  7135. {
  7136. front: {
  7137. height: math.unit(5, "feet"),
  7138. weight: math.unit(30, "kg"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/vial/front.svg",
  7142. extra: 1365 / 1277,
  7143. bottom: 0.04
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5, "feet"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Rovoska" },
  7157. {
  7158. side: {
  7159. height: math.unit(3.4, "meters"),
  7160. weight: math.unit(1000, "lb"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/rovoska/side.svg",
  7164. extra: 4403 / 1515
  7165. }
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(3.4, "meters"),
  7172. default: true
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Gunner Rotthbauer" },
  7178. {
  7179. front: {
  7180. height: math.unit(8, "feet"),
  7181. weight: math.unit(315, "lb"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/gunner-rotthbauer/front.svg"
  7185. }
  7186. },
  7187. back: {
  7188. height: math.unit(8, "feet"),
  7189. weight: math.unit(315, "lb"),
  7190. name: "Back",
  7191. image: {
  7192. source: "./media/characters/gunner-rotthbauer/back.svg"
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(3.5, "inches")
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(8, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(250, "feet")
  7209. },
  7210. {
  7211. name: "Megamacro",
  7212. height: math.unit(1, "AU")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Allatia" },
  7218. {
  7219. front: {
  7220. height: math.unit(5 + 5 / 12, "feet"),
  7221. weight: math.unit(140, "lb"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/allatia/front.svg",
  7225. extra: 1227 / 1180,
  7226. bottom: 0.027
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(5 + 5 / 12, "feet")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(250, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8, "miles")
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Tene" },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(120, "lb"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/tene/front.svg",
  7255. extra: 1728 / 1578,
  7256. bottom: 0.022
  7257. }
  7258. },
  7259. stomping: {
  7260. height: math.unit(2.025, "meters"),
  7261. weight: math.unit(120, "lb"),
  7262. name: "Stomping",
  7263. image: {
  7264. source: "./media/characters/tene/stomping.svg",
  7265. extra: 938 / 873,
  7266. bottom: 0.01
  7267. }
  7268. },
  7269. sitting: {
  7270. height: math.unit(1, "meter"),
  7271. weight: math.unit(120, "lb"),
  7272. name: "Sitting",
  7273. image: {
  7274. source: "./media/characters/tene/sitting.svg",
  7275. extra: 437 / 415,
  7276. bottom: 0.1
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(3.9, "feet"),
  7281. weight: math.unit(250, "lb"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/tene/feral.svg",
  7285. extra: 717 / 458,
  7286. bottom: 0.179
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(6, "feet")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(300, "feet"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(5, "miles")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Evander" },
  7308. {
  7309. side: {
  7310. height: math.unit(6, "feet"),
  7311. name: "Side",
  7312. image: {
  7313. source: "./media/characters/evander/side.svg",
  7314. extra: 877 / 477
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(0.83, "meters"),
  7322. default: true
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7328. {
  7329. front: {
  7330. height: math.unit(12, "feet"),
  7331. weight: math.unit(1000, "lb"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7335. extra: 1762 / 1611
  7336. }
  7337. },
  7338. back: {
  7339. height: math.unit(12, "feet"),
  7340. weight: math.unit(1000, "lb"),
  7341. name: "Back",
  7342. image: {
  7343. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7344. extra: 1762 / 1611
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(12, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Kaiju",
  7356. height: math.unit(150, "feet")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Zero Alurus" },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(150, "lb"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/zero-alurus/front.svg"
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(150, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/zero-alurus/back.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(5 + 10 / 12, "feet")
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(60, "feet"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Macro+",
  7392. height: math.unit(450, "feet")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Mega Shi" },
  7398. {
  7399. front: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(200, "lb"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/mega-shi/front.svg",
  7405. extra: 1279 / 1250,
  7406. bottom: 0.02
  7407. }
  7408. },
  7409. back: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(200, "lb"),
  7412. name: "Back",
  7413. image: {
  7414. source: "./media/characters/mega-shi/back.svg",
  7415. extra: 1279 / 1250,
  7416. bottom: 0.02
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Micro",
  7423. height: math.unit(16 + 6 / 12, "feet")
  7424. },
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(660, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(10, "miles")
  7433. },
  7434. {
  7435. name: "Planetary Launch",
  7436. height: math.unit(500, "miles")
  7437. },
  7438. {
  7439. name: "Interstellar",
  7440. height: math.unit(1e9, "miles")
  7441. },
  7442. {
  7443. name: "Leaving the Universe",
  7444. height: math.unit(1, "gigaparsec")
  7445. },
  7446. {
  7447. name: "Travelling Universes",
  7448. height: math.unit(30e15, "parsecs")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Odyssey" },
  7454. {
  7455. front: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(150, "lb"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/odyssey/front.svg",
  7461. extra: 1782 / 1582,
  7462. bottom: 0.01
  7463. }
  7464. },
  7465. side: {
  7466. height: math.unit(5.7, "feet"),
  7467. weight: math.unit(140, "lb"),
  7468. name: "Side",
  7469. image: {
  7470. source: "./media/characters/odyssey/side.svg",
  7471. extra: 6462 / 5700
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5 + 4 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(1, "km")
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(3000, "km")
  7487. },
  7488. {
  7489. name: "Gigamacro",
  7490. height: math.unit(1, "AU"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Omniversal",
  7495. height: math.unit(100e14, "lightyears")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Mekuto" },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(300, "lb"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/mekuto/front.svg",
  7508. extra: 921 / 832,
  7509. bottom: 0.03
  7510. }
  7511. },
  7512. hand: {
  7513. height: math.unit(6 / 10.24, "feet"),
  7514. name: "Hand",
  7515. image: {
  7516. source: "./media/characters/mekuto/hand.svg"
  7517. }
  7518. },
  7519. foot: {
  7520. height: math.unit(6 / 5.05, "feet"),
  7521. name: "Foot",
  7522. image: {
  7523. source: "./media/characters/mekuto/foot.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Minimicro",
  7530. height: math.unit(0.2, "inches")
  7531. },
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(1.5, "inches")
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(5 + 11 / 12, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Minimacro",
  7543. height: math.unit(17 + 9 / 12, "feet")
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(177.5, "feet")
  7548. },
  7549. {
  7550. name: "Megamacro",
  7551. height: math.unit(152, "miles")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Dafydd Tomos" },
  7557. {
  7558. front: {
  7559. height: math.unit(6.5, "inches"),
  7560. weight: math.unit(13, "oz"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/dafydd-tomos/front.svg",
  7564. extra: 2990 / 2603,
  7565. bottom: 0.03
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(6.5, "inches"),
  7573. default: true
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Splinter" },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(150, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/splinter/front.svg",
  7586. extra: 2990 / 2882,
  7587. bottom: 0.04
  7588. }
  7589. },
  7590. back: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(150, "lb"),
  7593. name: "Back",
  7594. image: {
  7595. source: "./media/characters/splinter/back.svg",
  7596. extra: 2990 / 2882,
  7597. bottom: 0.04
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(6, "feet")
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(230, "meters"),
  7609. default: true
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "SnowGabumon" },
  7615. {
  7616. front: {
  7617. height: math.unit(4 + 10 / 12, "feet"),
  7618. weight: math.unit(480, "lb"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/snow-gabumon/front.svg",
  7622. extra: 1140 / 963,
  7623. bottom: 0.058
  7624. }
  7625. },
  7626. back: {
  7627. height: math.unit(4 + 10 / 12, "feet"),
  7628. weight: math.unit(480, "lb"),
  7629. name: "Back",
  7630. image: {
  7631. source: "./media/characters/snow-gabumon/back.svg",
  7632. extra: 1115 / 962,
  7633. bottom: 0.041
  7634. }
  7635. },
  7636. frontUndresed: {
  7637. height: math.unit(4 + 10 / 12, "feet"),
  7638. weight: math.unit(480, "lb"),
  7639. name: "Front (Undressed)",
  7640. image: {
  7641. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7642. extra: 1061 / 960,
  7643. bottom: 0.045
  7644. }
  7645. },
  7646. },
  7647. [
  7648. {
  7649. name: "Micro",
  7650. height: math.unit(1, "inch")
  7651. },
  7652. {
  7653. name: "Normal",
  7654. height: math.unit(4 + 10 / 12, "feet"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(200, "feet")
  7660. },
  7661. {
  7662. name: "Megamacro",
  7663. height: math.unit(120, "miles")
  7664. },
  7665. {
  7666. name: "Gigamacro",
  7667. height: math.unit(9800, "miles")
  7668. },
  7669. ]
  7670. ))
  7671. characterMakers.push(() => makeCharacter(
  7672. { name: "Moody" },
  7673. {
  7674. front: {
  7675. height: math.unit(1.7, "meters"),
  7676. weight: math.unit(140, "lb"),
  7677. name: "Front",
  7678. image: {
  7679. source: "./media/characters/moody/front.svg",
  7680. extra: 3226 / 3007,
  7681. bottom: 0.087
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Micro",
  7688. height: math.unit(1, "mm")
  7689. },
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(1.7, "meters"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(80, "meters")
  7698. },
  7699. {
  7700. name: "Macro+",
  7701. height: math.unit(500, "meters")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Zyas" },
  7707. {
  7708. front: {
  7709. height: math.unit(6, "feet"),
  7710. weight: math.unit(150, "lb"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/zyas/front.svg",
  7714. extra: 1180 / 1120,
  7715. bottom: 0.045
  7716. }
  7717. },
  7718. },
  7719. [
  7720. {
  7721. name: "Normal",
  7722. height: math.unit(10, "feet"),
  7723. default: true
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(500, "feet")
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(5, "miles")
  7732. },
  7733. {
  7734. name: "Teramacro",
  7735. height: math.unit(150000, "miles")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Cuon" },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(150, "lb"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/cuon/front.svg",
  7748. extra: 1390 / 1320,
  7749. bottom: 0.008
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Micro",
  7756. height: math.unit(3, "inches")
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(18 + 9 / 12, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(360, "feet")
  7766. },
  7767. {
  7768. name: "Megamacro",
  7769. height: math.unit(360, "miles")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Nyanuxk" },
  7775. {
  7776. front: {
  7777. height: math.unit(2.4, "meters"),
  7778. weight: math.unit(70, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/nyanuxk/front.svg",
  7782. extra: 1172 / 1084,
  7783. bottom: 0.065
  7784. }
  7785. },
  7786. side: {
  7787. height: math.unit(2.4, "meters"),
  7788. weight: math.unit(70, "kg"),
  7789. name: "Side",
  7790. image: {
  7791. source: "./media/characters/nyanuxk/side.svg",
  7792. extra: 1190 / 1132,
  7793. bottom: 0.007
  7794. }
  7795. },
  7796. back: {
  7797. height: math.unit(2.4, "meters"),
  7798. weight: math.unit(70, "kg"),
  7799. name: "Back",
  7800. image: {
  7801. source: "./media/characters/nyanuxk/back.svg",
  7802. extra: 1200 / 1141,
  7803. bottom: 0.015
  7804. }
  7805. },
  7806. foot: {
  7807. height: math.unit(0.52, "meters"),
  7808. name: "Foot",
  7809. image: {
  7810. source: "./media/characters/nyanuxk/foot.svg"
  7811. }
  7812. },
  7813. },
  7814. [
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(2, "cm")
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(2.4, "meters"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Smaller Macro",
  7826. height: math.unit(120, "meters")
  7827. },
  7828. {
  7829. name: "Bigger Macro",
  7830. height: math.unit(1.2, "km")
  7831. },
  7832. {
  7833. name: "Megamacro",
  7834. height: math.unit(15, "kilometers")
  7835. },
  7836. {
  7837. name: "Gigamacro",
  7838. height: math.unit(2000, "km")
  7839. },
  7840. {
  7841. name: "Teramacro",
  7842. height: math.unit(500000, "km")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Ailbhe" },
  7848. {
  7849. side: {
  7850. height: math.unit(6, "feet"),
  7851. name: "Side",
  7852. image: {
  7853. source: "./media/characters/ailbhe/side.svg",
  7854. extra: 757 / 464,
  7855. bottom: 0.041
  7856. }
  7857. },
  7858. },
  7859. [
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(1.07, "meters"),
  7863. default: true
  7864. },
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Zevulfius" },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(120, "kg"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/zevulfius/front.svg",
  7876. extra: 965 / 903
  7877. }
  7878. },
  7879. side: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(120, "kg"),
  7882. name: "Side",
  7883. image: {
  7884. source: "./media/characters/zevulfius/side.svg",
  7885. extra: 939 / 900
  7886. }
  7887. },
  7888. back: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(120, "kg"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/zevulfius/back.svg",
  7894. extra: 918 / 854,
  7895. bottom: 0.005
  7896. }
  7897. },
  7898. foot: {
  7899. height: math.unit(6 / 3.72, "feet"),
  7900. name: "Foot",
  7901. image: {
  7902. source: "./media/characters/zevulfius/foot.svg"
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(750, "meters")
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(20, "km"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Gigamacro",
  7918. height: math.unit(2000, "km")
  7919. },
  7920. {
  7921. name: "Teramacro",
  7922. height: math.unit(250000, "km")
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Rikes" },
  7928. {
  7929. front: {
  7930. height: math.unit(100, "feet"),
  7931. weight: math.unit(350, "kg"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/rikes/front.svg",
  7935. extra: 1565 / 1483,
  7936. bottom: 0.017
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(100, "feet"),
  7944. default: true
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Adam Silver-Mane" },
  7950. {
  7951. anthro: {
  7952. height: math.unit(8, "feet"),
  7953. weight: math.unit(120, "kg"),
  7954. name: "Anthro",
  7955. image: {
  7956. source: "./media/characters/adam-silver-mane/anthro.svg",
  7957. extra: 5743 / 5339,
  7958. bottom: 0.07
  7959. }
  7960. },
  7961. taur: {
  7962. height: math.unit(16, "feet"),
  7963. weight: math.unit(1500, "kg"),
  7964. name: "Taur",
  7965. image: {
  7966. source: "./media/characters/adam-silver-mane/taur.svg",
  7967. extra: 1713 / 1571,
  7968. bottom: 0.01
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(8, "feet")
  7976. },
  7977. {
  7978. name: "Minimacro",
  7979. height: math.unit(80, "feet")
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(800, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Megamacro",
  7988. height: math.unit(8000, "feet")
  7989. },
  7990. {
  7991. name: "Gigamacro",
  7992. height: math.unit(800, "miles")
  7993. },
  7994. {
  7995. name: "Teramacro",
  7996. height: math.unit(80000, "miles")
  7997. },
  7998. {
  7999. name: "Celestial",
  8000. height: math.unit(8e6, "miles")
  8001. },
  8002. {
  8003. name: "Star Dragon",
  8004. height: math.unit(800000, "parsecs")
  8005. },
  8006. {
  8007. name: "Godly",
  8008. height: math.unit(800, "teraparsecs")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Ky'owin" },
  8014. {
  8015. front: {
  8016. height: math.unit(6, "feet"),
  8017. weight: math.unit(150, "lb"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/ky'owin/front.svg",
  8021. extra: 3888 / 3068,
  8022. bottom: 0.015
  8023. }
  8024. },
  8025. },
  8026. [
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(6 + 8 / 12, "feet")
  8030. },
  8031. {
  8032. name: "Large",
  8033. height: math.unit(68, "feet")
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(132, "feet")
  8038. },
  8039. {
  8040. name: "Macro+",
  8041. height: math.unit(340, "feet")
  8042. },
  8043. {
  8044. name: "Macro++",
  8045. height: math.unit(680, "feet"),
  8046. default: true
  8047. },
  8048. {
  8049. name: "Megamacro",
  8050. height: math.unit(1, "mile")
  8051. },
  8052. {
  8053. name: "Megamacro+",
  8054. height: math.unit(10, "miles")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Mal" },
  8060. {
  8061. front: {
  8062. height: math.unit(4, "feet"),
  8063. weight: math.unit(50, "lb"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/mal/front.svg",
  8067. extra: 785 / 724,
  8068. bottom: 0.07
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(4, "inches")
  8076. },
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(4, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(200, "feet")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Jordan Deware" },
  8090. {
  8091. front: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(150, "lb"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/jordan-deware/front.svg",
  8097. extra: 1191 / 1012
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Nano",
  8104. height: math.unit(0.01, "mm")
  8105. },
  8106. {
  8107. name: "Minimicro",
  8108. height: math.unit(1, "mm")
  8109. },
  8110. {
  8111. name: "Micro",
  8112. height: math.unit(0.5, "inches")
  8113. },
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(4, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Minimacro",
  8121. height: math.unit(40, "meters")
  8122. },
  8123. {
  8124. name: "Small Macro",
  8125. height: math.unit(400, "meters")
  8126. },
  8127. {
  8128. name: "Macro",
  8129. height: math.unit(4, "miles")
  8130. },
  8131. {
  8132. name: "Megamacro",
  8133. height: math.unit(40, "miles")
  8134. },
  8135. {
  8136. name: "Megamacro+",
  8137. height: math.unit(400, "miles")
  8138. },
  8139. {
  8140. name: "Gigamacro",
  8141. height: math.unit(400000, "miles")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Kimiko" },
  8147. {
  8148. side: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Side",
  8152. image: {
  8153. source: "./media/characters/kimiko/side.svg",
  8154. extra: 600 / 358
  8155. }
  8156. },
  8157. },
  8158. [
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(15, "feet"),
  8162. default: true
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(220, "feet")
  8167. },
  8168. {
  8169. name: "Macro+",
  8170. height: math.unit(1450, "feet")
  8171. },
  8172. {
  8173. name: "Megamacro",
  8174. height: math.unit(11500, "feet")
  8175. },
  8176. {
  8177. name: "Gigamacro",
  8178. height: math.unit(9500, "miles")
  8179. },
  8180. {
  8181. name: "Teramacro",
  8182. height: math.unit(2208005005, "miles")
  8183. },
  8184. {
  8185. name: "Examacro",
  8186. height: math.unit(2750, "parsecs")
  8187. },
  8188. {
  8189. name: "Zettamacro",
  8190. height: math.unit(101500, "parsecs")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Andrew Sleepy" },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(70, "kg"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/andrew-sleepy/front.svg"
  8203. }
  8204. },
  8205. side: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(70, "kg"),
  8208. name: "Side",
  8209. image: {
  8210. source: "./media/characters/andrew-sleepy/side.svg"
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Micro",
  8217. height: math.unit(1, "mm"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Judio" },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lb"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/judio/front.svg",
  8231. extra: 1258 / 1110
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 6 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(1000, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(10, "miles")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Nomaxice" },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(68, "kg"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/nomaxice/front.svg",
  8260. extra: 1498 / 1073,
  8261. bottom: 0.075
  8262. }
  8263. },
  8264. foot: {
  8265. height: math.unit(1.1, "feet"),
  8266. name: "Foot",
  8267. image: {
  8268. source: "./media/characters/nomaxice/foot.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(8, "cm")
  8276. },
  8277. {
  8278. name: "Norm",
  8279. height: math.unit(1.82, "m")
  8280. },
  8281. {
  8282. name: "Norm+",
  8283. height: math.unit(8.8, "feet")
  8284. },
  8285. {
  8286. name: "Big",
  8287. height: math.unit(8, "meters"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(18, "meters")
  8293. },
  8294. {
  8295. name: "Macro+",
  8296. height: math.unit(88, "meters")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Dydros" },
  8302. {
  8303. front: {
  8304. height: math.unit(12, "feet"),
  8305. weight: math.unit(1.5, "tons"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/dydros/front.svg",
  8309. extra: 863 / 800,
  8310. bottom: 0.015
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(12, "feet"),
  8315. weight: math.unit(1.5, "tons"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/dydros/back.svg",
  8319. extra: 900 / 843,
  8320. bottom: 0.005
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(12, "feet"),
  8328. default: true
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Riggi" },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(100, "kg"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/riggi/front.svg",
  8341. extra: 5787 / 5303
  8342. }
  8343. },
  8344. hyper: {
  8345. height: math.unit(6 * 5 / 3, "feet"),
  8346. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8347. name: "Hyper",
  8348. image: {
  8349. source: "./media/characters/riggi/hyper.svg",
  8350. extra: 3595 / 3485
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Small Macro",
  8357. height: math.unit(50, "feet")
  8358. },
  8359. {
  8360. name: "Default",
  8361. height: math.unit(200, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Loom",
  8366. height: math.unit(10000, "feet")
  8367. },
  8368. {
  8369. name: "Cruising Altitude",
  8370. height: math.unit(30000, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(100, "miles")
  8375. },
  8376. {
  8377. name: "Continent Sized",
  8378. height: math.unit(2800, "miles")
  8379. },
  8380. {
  8381. name: "Earth Sized",
  8382. height: math.unit(8000, "miles")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Alexi" },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(250, "lb"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/alexi/front.svg",
  8395. extra: 3483 / 3291,
  8396. bottom: 0.04
  8397. }
  8398. },
  8399. back: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(250, "lb"),
  8402. name: "Back",
  8403. image: {
  8404. source: "./media/characters/alexi/back.svg",
  8405. extra: 3533 / 3356,
  8406. bottom: 0.021
  8407. }
  8408. },
  8409. frontTransformed: {
  8410. height: math.unit(12.5, "feet"),
  8411. weight: math.unit(4000, "lb"),
  8412. name: "Front (Transformed)",
  8413. image: {
  8414. source: "./media/characters/alexi/front-transformed.svg",
  8415. extra: 5345 / 5100,
  8416. bottom: 0.03
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(3, "meters"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Minimacro",
  8428. height: math.unit(30, "meters")
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(500, "meters")
  8433. },
  8434. {
  8435. name: "Megamacro",
  8436. height: math.unit(9000, "km")
  8437. },
  8438. {
  8439. name: "Teramacro",
  8440. height: math.unit(384000, "km")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Kayroo" },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(150, "lb"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/kayroo/front.svg",
  8453. extra: 1153 / 1038,
  8454. bottom: 0.06
  8455. }
  8456. },
  8457. foot: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(150, "lb"),
  8460. name: "Foot",
  8461. image: {
  8462. source: "./media/characters/kayroo/foot.svg"
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(8, "feet"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Minimacro",
  8474. height: math.unit(250, "feet")
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(2800, "feet")
  8479. },
  8480. {
  8481. name: "Megamacro",
  8482. height: math.unit(5200, "feet")
  8483. },
  8484. {
  8485. name: "Gigamacro",
  8486. height: math.unit(27000, "feet")
  8487. },
  8488. {
  8489. name: "Omega",
  8490. height: math.unit(45000, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Rhys" },
  8496. {
  8497. front: {
  8498. height: math.unit(18, "feet"),
  8499. weight: math.unit(5800, "lb"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/rhys/front.svg",
  8503. extra: 3386 / 3090,
  8504. bottom: 0.07
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(18, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Working Size",
  8516. height: math.unit(200, "feet")
  8517. },
  8518. {
  8519. name: "Demolition Size",
  8520. height: math.unit(2000, "feet")
  8521. },
  8522. {
  8523. name: "Maximum Licensed Size",
  8524. height: math.unit(5, "miles")
  8525. },
  8526. {
  8527. name: "Maximum Observed Size",
  8528. height: math.unit(10, "yottameters")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Toto" },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(250, "lb"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/toto/front.svg",
  8541. extra: 527 / 479,
  8542. bottom: 0.05
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(3, "feet")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(10, "feet")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(150, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(1200, "feet")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "King" },
  8568. {
  8569. back: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(150, "lb"),
  8572. name: "Back",
  8573. image: {
  8574. source: "./media/characters/king/back.svg"
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Micro",
  8581. height: math.unit(2, "inches")
  8582. },
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(8, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(200, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Megamacro",
  8594. height: math.unit(50, "miles")
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Cordite" },
  8600. {
  8601. anthro: {
  8602. height: math.unit(6 + 5 / 12, "feet"),
  8603. weight: math.unit(280, "lb"),
  8604. name: "Anthro",
  8605. image: {
  8606. source: "./media/characters/cordite/anthro.svg",
  8607. extra: 1986 / 1905,
  8608. bottom: 0.025
  8609. }
  8610. },
  8611. feral: {
  8612. height: math.unit(2, "feet"),
  8613. weight: math.unit(90, "lb"),
  8614. name: "Feral",
  8615. image: {
  8616. source: "./media/characters/cordite/feral.svg",
  8617. extra: 1260 / 755,
  8618. bottom: 0.05
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6 + 5 / 12, "feet"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Pianostrong" },
  8632. {
  8633. front: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(150, "lb"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/pianostrong/front.svg",
  8639. extra: 6577 / 6254,
  8640. bottom: 0.02
  8641. }
  8642. },
  8643. side: {
  8644. height: math.unit(6, "feet"),
  8645. weight: math.unit(150, "lb"),
  8646. name: "Side",
  8647. image: {
  8648. source: "./media/characters/pianostrong/side.svg",
  8649. extra: 6106 / 5730
  8650. }
  8651. },
  8652. back: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(150, "lb"),
  8655. name: "Back",
  8656. image: {
  8657. source: "./media/characters/pianostrong/back.svg",
  8658. extra: 6085 / 5733,
  8659. bottom: 0.01
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(100, "feet")
  8667. },
  8668. {
  8669. name: "Macro+",
  8670. height: math.unit(300, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro++",
  8675. height: math.unit(1000, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Kona" },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(150, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/kona/front.svg",
  8688. extra: 2960 / 2629,
  8689. bottom: 0.005
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(11 + 8 / 12, "feet")
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(850, "feet"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Macro+",
  8705. height: math.unit(1.5, "km"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(80, "miles")
  8711. },
  8712. {
  8713. name: "Gigamacro",
  8714. height: math.unit(3500, "miles")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Levi" },
  8720. {
  8721. side: {
  8722. height: math.unit(1.9, "meters"),
  8723. weight: math.unit(326, "kg"),
  8724. name: "Side",
  8725. image: {
  8726. source: "./media/characters/levi/side.svg",
  8727. extra: 1704 / 1334,
  8728. bottom: 0.02
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(1.9, "meters"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(20, "meters")
  8741. },
  8742. {
  8743. name: "Macro+",
  8744. height: math.unit(200, "meters")
  8745. },
  8746. {
  8747. name: "Megamacro",
  8748. height: math.unit(2, "km")
  8749. },
  8750. {
  8751. name: "Megamacro+",
  8752. height: math.unit(20, "km")
  8753. },
  8754. {
  8755. name: "Gigamacro",
  8756. height: math.unit(2500, "km")
  8757. },
  8758. {
  8759. name: "Gigamacro+",
  8760. height: math.unit(120000, "km")
  8761. },
  8762. {
  8763. name: "Teramacro",
  8764. height: math.unit(7.77e6, "km")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "BMC" },
  8770. {
  8771. front: {
  8772. height: math.unit(6 + 4 / 12, "feet"),
  8773. weight: math.unit(188, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/bmc/front.svg",
  8777. extra: 1067 / 1022,
  8778. bottom: 0.047
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Human-sized",
  8785. height: math.unit(6 + 4 / 12, "feet")
  8786. },
  8787. {
  8788. name: "Small",
  8789. height: math.unit(250, "feet")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(1250, "feet"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Good Day",
  8798. height: math.unit(88, "miles")
  8799. },
  8800. {
  8801. name: "Largest Measured Size",
  8802. height: math.unit(11.2e6, "lightyears")
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Sven the Kaiju" },
  8808. {
  8809. front: {
  8810. height: math.unit(20, "feet"),
  8811. weight: math.unit(2016, "kg"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/sven-the-kaiju/front.svg",
  8815. extra: 1479 / 1449,
  8816. bottom: 0.05
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Fairy",
  8823. height: math.unit(6, "inches")
  8824. },
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(20, "feet"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Rampage",
  8832. height: math.unit(200, "feet")
  8833. },
  8834. {
  8835. name: "Archfey Forest Guardian",
  8836. height: math.unit(1, "mile")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Marik" },
  8842. {
  8843. front: {
  8844. height: math.unit(4, "meters"),
  8845. weight: math.unit(2, "tons"),
  8846. name: "Front",
  8847. image: {
  8848. source: "./media/characters/marik/front.svg",
  8849. extra: 1057 / 1003,
  8850. bottom: 0.08
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(4, "meters"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(20, "meters")
  8863. },
  8864. {
  8865. name: "Megamacro",
  8866. height: math.unit(50, "km")
  8867. },
  8868. {
  8869. name: "Gigamacro",
  8870. height: math.unit(100, "km")
  8871. },
  8872. {
  8873. name: "Alpha Macro",
  8874. height: math.unit(7.88e7, "yottameters")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Mel" },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(110, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/mel/front.svg",
  8887. extra: 736 / 617,
  8888. bottom: 0.017
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Pico",
  8895. height: math.unit(3, "pm")
  8896. },
  8897. {
  8898. name: "Nano",
  8899. height: math.unit(3, "nm")
  8900. },
  8901. {
  8902. name: "Micro",
  8903. height: math.unit(0.3, "mm"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Micro+",
  8908. height: math.unit(3, "mm")
  8909. },
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(5 + 10.5 / 12, "feet")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Lykonous" },
  8918. {
  8919. kaiju: {
  8920. height: math.unit(1.75, "meters"),
  8921. weight: math.unit(55, "kg"),
  8922. name: "Kaiju",
  8923. image: {
  8924. source: "./media/characters/lykonous/kaiju.svg",
  8925. extra: 1055 / 946,
  8926. bottom: 0.135
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(2.5, "meters"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Kaiju Dragon",
  8938. height: math.unit(60, "meters")
  8939. },
  8940. {
  8941. name: "Mega Kaiju",
  8942. height: math.unit(120, "km")
  8943. },
  8944. {
  8945. name: "Giga Kaiju",
  8946. height: math.unit(200, "megameters")
  8947. },
  8948. {
  8949. name: "Terra Kaiju",
  8950. height: math.unit(400, "gigameters")
  8951. },
  8952. {
  8953. name: "Kaiju Dragon God",
  8954. height: math.unit(13000, "exaparsecs")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Blü" },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/blü/front.svg",
  8967. extra: 1883 / 1564,
  8968. bottom: 0.031
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(13, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Big Boi",
  8980. height: math.unit(150, "meters")
  8981. },
  8982. {
  8983. name: "Mini Stomper",
  8984. height: math.unit(300, "meters")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(1000, "meters")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(11000, "meters")
  8993. },
  8994. {
  8995. name: "Gigamacro",
  8996. height: math.unit(11000, "km")
  8997. },
  8998. {
  8999. name: "Teramacro",
  9000. height: math.unit(420000, "km")
  9001. },
  9002. {
  9003. name: "Examacro",
  9004. height: math.unit(120, "parsecs")
  9005. },
  9006. {
  9007. name: "God Tho",
  9008. height: math.unit(98000000000, "parsecs")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Scales" },
  9014. {
  9015. taurFront: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(200, "lb"),
  9018. name: "Taur (Front)",
  9019. image: {
  9020. source: "./media/characters/scales/taur-front.svg",
  9021. extra: 1,
  9022. bottom: 0.05
  9023. }
  9024. },
  9025. taurBack: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(200, "lb"),
  9028. name: "Taur (Back)",
  9029. image: {
  9030. source: "./media/characters/scales/taur-back.svg",
  9031. extra: 1,
  9032. bottom: 0.08
  9033. }
  9034. },
  9035. anthro: {
  9036. height: math.unit(6 * 7 / 12, "feet"),
  9037. weight: math.unit(100, "lb"),
  9038. name: "Anthro",
  9039. image: {
  9040. source: "./media/characters/scales/anthro.svg",
  9041. extra: 1,
  9042. bottom: 0.06
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(12, "feet"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Koragos" },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(150, "lb"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/koragos/front.svg",
  9063. extra: 841 / 794,
  9064. bottom: 0.035
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(150, "lb"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/koragos/back.svg",
  9073. extra: 841 / 810,
  9074. bottom: 0.022
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(6 + 11 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(490, "feet")
  9087. },
  9088. {
  9089. name: "Megamacro",
  9090. height: math.unit(10, "miles")
  9091. },
  9092. {
  9093. name: "Gigamacro",
  9094. height: math.unit(50, "miles")
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Xylrem" },
  9100. {
  9101. front: {
  9102. height: math.unit(6, "feet"),
  9103. weight: math.unit(250, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/xylrem/front.svg",
  9107. extra: 3323 / 3050,
  9108. bottom: 0.065
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(4, "feet")
  9116. },
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(16, "feet"),
  9120. default: true
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(2720, "feet")
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(25000, "miles")
  9129. },
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Ikideru" },
  9134. {
  9135. front: {
  9136. height: math.unit(8, "feet"),
  9137. weight: math.unit(250, "kg"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/ikideru/front.svg",
  9141. extra: 930 / 870,
  9142. bottom: 0.087
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(8, "feet"),
  9147. weight: math.unit(250, "kg"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/ikideru/back.svg",
  9151. extra: 919 / 852,
  9152. bottom: 0.055
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Rare",
  9159. height: math.unit(8, "feet"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Playful Loom",
  9164. height: math.unit(80, "feet")
  9165. },
  9166. {
  9167. name: "City Leaner",
  9168. height: math.unit(230, "feet")
  9169. },
  9170. {
  9171. name: "Megamacro",
  9172. height: math.unit(2500, "feet")
  9173. },
  9174. {
  9175. name: "Gigamacro",
  9176. height: math.unit(26400, "feet")
  9177. },
  9178. {
  9179. name: "Tectonic Shifter",
  9180. height: math.unit(1.7, "megameters")
  9181. },
  9182. {
  9183. name: "Planet Carer",
  9184. height: math.unit(21, "megameters")
  9185. },
  9186. {
  9187. name: "God",
  9188. height: math.unit(11157.22, "parsecs")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Neo" },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(120, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/neo/front.svg"
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Micro",
  9207. height: math.unit(2, "inches"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Human Size",
  9212. height: math.unit(5 + 8 / 12, "feet")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Chauncey (Chantz)" },
  9218. {
  9219. front: {
  9220. height: math.unit(13 + 10 / 12, "feet"),
  9221. weight: math.unit(5320, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/chauncey-chantz/front.svg",
  9225. extra: 1587 / 1435,
  9226. bottom: 0.02
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(13 + 10 / 12, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(45, "feet")
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(250, "miles")
  9243. },
  9244. {
  9245. name: "Planetary",
  9246. height: math.unit(10000, "miles")
  9247. },
  9248. {
  9249. name: "Galactic",
  9250. height: math.unit(40000, "parsecs")
  9251. },
  9252. {
  9253. name: "Universal",
  9254. height: math.unit(1, "yottameter")
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Epifox" },
  9260. {
  9261. front: {
  9262. height: math.unit(6, "feet"),
  9263. weight: math.unit(150, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/epifox/front.svg",
  9267. extra: 1,
  9268. bottom: 0.075
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Micro",
  9275. height: math.unit(6, "inches")
  9276. },
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(12, "feet"),
  9280. default: true
  9281. },
  9282. {
  9283. name: "Macro",
  9284. height: math.unit(3810, "feet")
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(500, "miles")
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Colin T." },
  9294. {
  9295. front: {
  9296. height: math.unit(1.8796, "m"),
  9297. weight: math.unit(230, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/colin-t/front.svg",
  9301. extra: 1272 / 1193,
  9302. bottom: 0.07
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(0.571, "meters")
  9310. },
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(1.8796, "meters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Tall",
  9318. height: math.unit(4, "meters")
  9319. },
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(67.241, "meters")
  9323. },
  9324. {
  9325. name: "Megamacro",
  9326. height: math.unit(371.856, "meters")
  9327. },
  9328. {
  9329. name: "Planetary",
  9330. height: math.unit(12631.5689, "km")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Matvei" },
  9336. {
  9337. front: {
  9338. height: math.unit(1.85, "meters"),
  9339. weight: math.unit(80, "kg"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/matvei/front.svg",
  9343. extra: 614 / 594,
  9344. bottom: 0.01
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(1.85, "meters"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Quincy" },
  9358. {
  9359. front: {
  9360. height: math.unit(5 + 9 / 12, "feet"),
  9361. weight: math.unit(70, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/quincy/front.svg",
  9365. extra: 3041 / 2751
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(5 + 9 / 12, "feet"),
  9370. weight: math.unit(70, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/quincy/back.svg",
  9374. extra: 3041 / 2751
  9375. }
  9376. },
  9377. flying: {
  9378. height: math.unit(5 + 4 / 12, "feet"),
  9379. weight: math.unit(70, "lb"),
  9380. name: "Flying",
  9381. image: {
  9382. source: "./media/characters/quincy/flying.svg",
  9383. extra: 1044 / 930
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Micro",
  9390. height: math.unit(3, "cm")
  9391. },
  9392. {
  9393. name: "Normal",
  9394. height: math.unit(5 + 9 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(200, "meters"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Megamacro",
  9403. height: math.unit(1000, "meters")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Vanrel" },
  9409. {
  9410. front: {
  9411. height: math.unit(4 + 7 / 12, "feet"),
  9412. weight: math.unit(150, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/vanrel/front.svg",
  9416. extra: 1,
  9417. bottom: 0.02
  9418. }
  9419. },
  9420. elemental: {
  9421. height: math.unit(3, "feet"),
  9422. weight: math.unit(150, "lb"),
  9423. name: "Elemental",
  9424. image: {
  9425. source: "./media/characters/vanrel/elemental.svg",
  9426. extra: 192.3/162.8,
  9427. bottom: 1.79/194.17
  9428. }
  9429. },
  9430. side: {
  9431. height: math.unit(4 + 7 / 12, "feet"),
  9432. weight: math.unit(150, "lb"),
  9433. name: "Side",
  9434. image: {
  9435. source: "./media/characters/vanrel/side.svg",
  9436. extra: 1,
  9437. bottom: 0.025
  9438. }
  9439. },
  9440. tome: {
  9441. height: math.unit(1.35, "feet"),
  9442. weight: math.unit(10, "lb"),
  9443. name: "Vanrel's Tome",
  9444. rename: true,
  9445. image: {
  9446. source: "./media/characters/vanrel/tome.svg"
  9447. }
  9448. },
  9449. beans: {
  9450. height: math.unit(0.89, "feet"),
  9451. name: "Beans",
  9452. image: {
  9453. source: "./media/characters/vanrel/beans.svg"
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Normal",
  9460. height: math.unit(4 + 7 / 12, "feet"),
  9461. default: true
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Kuiper Vanrel" },
  9467. {
  9468. front: {
  9469. height: math.unit(7 + 5 / 12, "feet"),
  9470. weight: math.unit(150, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/kuiper-vanrel/front.svg",
  9474. extra: 1118 / 1068,
  9475. bottom: 0.09
  9476. }
  9477. },
  9478. foot: {
  9479. height: math.unit(0.55, "meters"),
  9480. name: "Foot",
  9481. image: {
  9482. source: "./media/characters/kuiper-vanrel/foot.svg",
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(7 + 5 / 12, "feet"),
  9490. default: true
  9491. },
  9492. ]
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Keset Vanrel" },
  9496. {
  9497. front: {
  9498. height: math.unit(8 + 5 / 12, "feet"),
  9499. weight: math.unit(150, "lb"),
  9500. name: "Front",
  9501. image: {
  9502. source: "./media/characters/keset-vanrel/front.svg",
  9503. extra: 1150 / 1084,
  9504. bottom: 0.05
  9505. }
  9506. },
  9507. hand: {
  9508. height: math.unit(0.6, "meters"),
  9509. name: "Hand",
  9510. image: {
  9511. source: "./media/characters/keset-vanrel/hand.svg"
  9512. }
  9513. },
  9514. foot: {
  9515. height: math.unit(0.94978, "meters"),
  9516. name: "Foot",
  9517. image: {
  9518. source: "./media/characters/keset-vanrel/foot.svg"
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(8 + 5 / 12, "feet"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Neos" },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/neos/front.svg",
  9539. extra: 1696 / 992,
  9540. bottom: 0.14
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(54, "cm"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(100, "m")
  9553. },
  9554. {
  9555. name: "Megamacro",
  9556. height: math.unit(10, "km")
  9557. },
  9558. {
  9559. name: "Megamacro+",
  9560. height: math.unit(100, "km")
  9561. },
  9562. {
  9563. name: "Gigamacro",
  9564. height: math.unit(100, "Mm")
  9565. },
  9566. {
  9567. name: "Teramacro",
  9568. height: math.unit(100, "Gm")
  9569. },
  9570. {
  9571. name: "Examacro",
  9572. height: math.unit(100, "Em")
  9573. },
  9574. {
  9575. name: "Godly",
  9576. height: math.unit(10000, "Ym")
  9577. },
  9578. {
  9579. name: "Beyond Godly",
  9580. height: math.unit(10000000, "Ym")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Sammy Mouse" },
  9586. {
  9587. feminine: {
  9588. height: math.unit(5, "feet"),
  9589. weight: math.unit(100, "lb"),
  9590. name: "Feminine",
  9591. image: {
  9592. source: "./media/characters/sammy-mouse/feminine.svg",
  9593. extra: 2526 / 2425,
  9594. bottom: 0.123
  9595. }
  9596. },
  9597. masculine: {
  9598. height: math.unit(5, "feet"),
  9599. weight: math.unit(100, "lb"),
  9600. name: "Masculine",
  9601. image: {
  9602. source: "./media/characters/sammy-mouse/masculine.svg",
  9603. extra: 2526 / 2425,
  9604. bottom: 0.123
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Micro",
  9611. height: math.unit(5, "inches")
  9612. },
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(5, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(60, "feet")
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Kole" },
  9626. {
  9627. front: {
  9628. height: math.unit(4, "feet"),
  9629. weight: math.unit(50, "lb"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/kole/front.svg",
  9633. extra: 1423 / 1303,
  9634. bottom: 0.025
  9635. }
  9636. },
  9637. back: {
  9638. height: math.unit(4, "feet"),
  9639. weight: math.unit(50, "lb"),
  9640. name: "Back",
  9641. image: {
  9642. source: "./media/characters/kole/back.svg",
  9643. extra: 1426 / 1280,
  9644. bottom: 0.02
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(4, "feet"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Rufran" },
  9658. {
  9659. front: {
  9660. height: math.unit(2 + 6 / 12, "feet"),
  9661. weight: math.unit(20, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/rufran/front.svg",
  9665. extra: 2041 / 1839,
  9666. bottom: 0.055
  9667. }
  9668. },
  9669. back: {
  9670. height: math.unit(2 + 6 / 12, "feet"),
  9671. weight: math.unit(20, "lb"),
  9672. name: "Back",
  9673. image: {
  9674. source: "./media/characters/rufran/back.svg",
  9675. extra: 2054 / 1839,
  9676. bottom: 0.01
  9677. }
  9678. },
  9679. hand: {
  9680. height: math.unit(0.2166, "meters"),
  9681. name: "Hand",
  9682. image: {
  9683. source: "./media/characters/rufran/hand.svg"
  9684. }
  9685. },
  9686. foot: {
  9687. height: math.unit(0.185, "meters"),
  9688. name: "Foot",
  9689. image: {
  9690. source: "./media/characters/rufran/foot.svg"
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Micro",
  9697. height: math.unit(1, "inch")
  9698. },
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(2 + 6 / 12, "feet"),
  9702. default: true
  9703. },
  9704. {
  9705. name: "Big",
  9706. height: math.unit(60, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(325, "feet")
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Chip" },
  9716. {
  9717. front: {
  9718. height: math.unit(0.3, "meters"),
  9719. weight: math.unit(3.5, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/chip/front.svg",
  9723. extra: 748 / 674
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Micro",
  9730. height: math.unit(1, "inch"),
  9731. default: true
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Torvid" },
  9737. {
  9738. side: {
  9739. height: math.unit(2.3, "meters"),
  9740. weight: math.unit(3500, "lb"),
  9741. name: "Side",
  9742. image: {
  9743. source: "./media/characters/torvid/side.svg",
  9744. extra: 1972 / 722,
  9745. bottom: 0.035
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(2.3, "meters"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Susan" },
  9759. {
  9760. front: {
  9761. height: math.unit(2, "meters"),
  9762. weight: math.unit(150.5, "kg"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/susan/front.svg",
  9766. extra: 693 / 635,
  9767. bottom: 0.05
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Megamacro",
  9774. height: math.unit(505, "miles"),
  9775. default: true
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Raindrops" },
  9781. {
  9782. front: {
  9783. height: math.unit(6, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/raindrops/front.svg",
  9788. extra: 2655 / 2461,
  9789. bottom: 0.02
  9790. }
  9791. },
  9792. back: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(150, "lb"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/raindrops/back.svg",
  9798. extra: 2574 / 2400,
  9799. bottom: 0.03
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(6, "inches")
  9807. },
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(6 + 2 / 12, "feet")
  9811. },
  9812. {
  9813. name: "Macro",
  9814. height: math.unit(131, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Megamacro",
  9819. height: math.unit(15, "miles")
  9820. },
  9821. {
  9822. name: "Gigamacro",
  9823. height: math.unit(4000, "miles")
  9824. },
  9825. {
  9826. name: "Teramacro",
  9827. height: math.unit(315000, "miles")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Tezwa" },
  9833. {
  9834. front: {
  9835. height: math.unit(2.794, "meters"),
  9836. weight: math.unit(325, "kg"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/tezwa/front.svg",
  9840. extra: 2083 / 1906,
  9841. bottom: 0.031
  9842. }
  9843. },
  9844. foot: {
  9845. height: math.unit(0.687, "meters"),
  9846. name: "Foot",
  9847. image: {
  9848. source: "./media/characters/tezwa/foot.svg"
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(9 + 2 / 12, "feet"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Typhus" },
  9862. {
  9863. front: {
  9864. height: math.unit(58, "feet"),
  9865. weight: math.unit(89000, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/typhus/front.svg",
  9869. extra: 816 / 800,
  9870. bottom: 0.065
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Macro",
  9877. height: math.unit(58, "feet"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Lyra Von Wulf" },
  9884. {
  9885. front: {
  9886. height: math.unit(12, "feet"),
  9887. weight: math.unit(6, "tonnes"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/lyra-von-wulf/front.svg",
  9891. extra: 1,
  9892. bottom: 0.10
  9893. }
  9894. },
  9895. frontMecha: {
  9896. height: math.unit(12, "feet"),
  9897. weight: math.unit(12, "tonnes"),
  9898. name: "Front (Mecha)",
  9899. image: {
  9900. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9901. extra: 1,
  9902. bottom: 0.042
  9903. }
  9904. },
  9905. maw: {
  9906. height: math.unit(2.2, "feet"),
  9907. name: "Maw",
  9908. image: {
  9909. source: "./media/characters/lyra-von-wulf/maw.svg"
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Normal",
  9916. height: math.unit(12, "feet"),
  9917. default: true
  9918. },
  9919. {
  9920. name: "Classic",
  9921. height: math.unit(50, "feet")
  9922. },
  9923. {
  9924. name: "Macro",
  9925. height: math.unit(500, "feet")
  9926. },
  9927. {
  9928. name: "Megamacro",
  9929. height: math.unit(1, "mile")
  9930. },
  9931. {
  9932. name: "Gigamacro",
  9933. height: math.unit(400, "miles")
  9934. },
  9935. {
  9936. name: "Teramacro",
  9937. height: math.unit(22000, "miles")
  9938. },
  9939. {
  9940. name: "Solarmacro",
  9941. height: math.unit(8600000, "miles")
  9942. },
  9943. {
  9944. name: "Galactic",
  9945. height: math.unit(1057000, "lightyears")
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Dixon" },
  9951. {
  9952. front: {
  9953. height: math.unit(6 + 10 / 12, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/dixon/front.svg",
  9958. extra: 3361 / 3209,
  9959. bottom: 0.01
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(6 + 10 / 12, "feet"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Big",
  9971. height: math.unit(12, "meters")
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(500, "meters")
  9976. },
  9977. {
  9978. name: "Megamacro",
  9979. height: math.unit(2, "km")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Kauko" },
  9985. {
  9986. front: {
  9987. height: math.unit(185, "cm"),
  9988. weight: math.unit(68, "kg"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/kauko/front.svg",
  9992. extra: 1455 / 1421,
  9993. bottom: 0.03
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(185, "cm"),
  9998. weight: math.unit(68, "kg"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/kauko/back.svg",
  10002. extra: 1455 / 1421,
  10003. bottom: 0.004
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(185, "cm"),
  10011. default: true
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Varg" },
  10017. {
  10018. front: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(150, "kg"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/varg/front.svg",
  10024. extra: 1108 / 1018,
  10025. bottom: 0.0375
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(5, "meters")
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(200, "meters")
  10037. },
  10038. {
  10039. name: "Megamacro",
  10040. height: math.unit(20, "kilometers")
  10041. },
  10042. {
  10043. name: "True Size",
  10044. height: math.unit(211, "km"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Gigamacro",
  10049. height: math.unit(1000, "km")
  10050. },
  10051. {
  10052. name: "Gigamacro+",
  10053. height: math.unit(8000, "km")
  10054. },
  10055. {
  10056. name: "Teramacro",
  10057. height: math.unit(1000000, "km")
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Dayza" },
  10063. {
  10064. front: {
  10065. height: math.unit(7 + 7 / 12, "feet"),
  10066. weight: math.unit(267, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/dayza/front.svg",
  10070. extra: 1262 / 1200,
  10071. bottom: 0.035
  10072. }
  10073. },
  10074. side: {
  10075. height: math.unit(7 + 7 / 12, "feet"),
  10076. weight: math.unit(267, "lb"),
  10077. name: "Side",
  10078. image: {
  10079. source: "./media/characters/dayza/side.svg",
  10080. extra: 1295 / 1245,
  10081. bottom: 0.05
  10082. }
  10083. },
  10084. back: {
  10085. height: math.unit(7 + 7 / 12, "feet"),
  10086. weight: math.unit(267, "lb"),
  10087. name: "Back",
  10088. image: {
  10089. source: "./media/characters/dayza/back.svg",
  10090. extra: 1241 / 1170
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(7 + 7 / 12, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(155, "feet")
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Xanthos" },
  10108. {
  10109. front: {
  10110. height: math.unit(6 + 5 / 12, "feet"),
  10111. weight: math.unit(160, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/xanthos/front.svg",
  10115. extra: 1,
  10116. bottom: 0.04
  10117. }
  10118. },
  10119. back: {
  10120. height: math.unit(6 + 5 / 12, "feet"),
  10121. weight: math.unit(160, "lb"),
  10122. name: "Back",
  10123. image: {
  10124. source: "./media/characters/xanthos/back.svg",
  10125. extra: 1,
  10126. bottom: 0.03
  10127. }
  10128. },
  10129. hand: {
  10130. height: math.unit(0.928, "feet"),
  10131. name: "Hand",
  10132. image: {
  10133. source: "./media/characters/xanthos/hand.svg"
  10134. }
  10135. },
  10136. foot: {
  10137. height: math.unit(1.286, "feet"),
  10138. name: "Foot",
  10139. image: {
  10140. source: "./media/characters/xanthos/foot.svg"
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(6 + 5 / 12, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Normal+",
  10152. height: math.unit(6, "meters")
  10153. },
  10154. {
  10155. name: "Macro",
  10156. height: math.unit(40, "feet")
  10157. },
  10158. {
  10159. name: "Macro+",
  10160. height: math.unit(200, "meters")
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(20, "km")
  10165. },
  10166. {
  10167. name: "Megamacro+",
  10168. height: math.unit(100, "km")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Grynn" },
  10174. {
  10175. front: {
  10176. height: math.unit(6 + 3 / 12, "feet"),
  10177. weight: math.unit(215, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/grynn/front.svg",
  10181. extra: 4627 / 4209,
  10182. bottom: 0.047
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Micro",
  10189. height: math.unit(6, "inches")
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(6 + 3 / 12, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Big",
  10198. height: math.unit(104, "feet")
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(944, "feet")
  10203. },
  10204. {
  10205. name: "Macro+",
  10206. height: math.unit(9480, "feet")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(78752, "feet")
  10211. },
  10212. {
  10213. name: "Megamacro+",
  10214. height: math.unit(630128, "feet")
  10215. },
  10216. {
  10217. name: "Megamacro++",
  10218. height: math.unit(3150695, "feet")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Mocha Aura" },
  10224. {
  10225. front: {
  10226. height: math.unit(7 + 5 / 12, "feet"),
  10227. weight: math.unit(450, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/mocha-aura/front.svg",
  10231. extra: 1907 / 1817,
  10232. bottom: 0.04
  10233. }
  10234. },
  10235. back: {
  10236. height: math.unit(7 + 5 / 12, "feet"),
  10237. weight: math.unit(450, "lb"),
  10238. name: "Back",
  10239. image: {
  10240. source: "./media/characters/mocha-aura/back.svg",
  10241. extra: 1900 / 1825,
  10242. bottom: 0.045
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Nano",
  10249. height: math.unit(1, "nm")
  10250. },
  10251. {
  10252. name: "Megamicro",
  10253. height: math.unit(1, "mm")
  10254. },
  10255. {
  10256. name: "Micro",
  10257. height: math.unit(3, "inches")
  10258. },
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(7 + 5 / 12, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(30, "feet")
  10267. },
  10268. {
  10269. name: "Megamacro",
  10270. height: math.unit(3500, "feet")
  10271. },
  10272. {
  10273. name: "Teramacro",
  10274. height: math.unit(500000, "miles")
  10275. },
  10276. {
  10277. name: "Petamacro",
  10278. height: math.unit(50000000000000000, "parsecs")
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Ilisha Devya" },
  10284. {
  10285. front: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(150, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/ilisha-devya/front.svg",
  10291. extra: 1,
  10292. bottom: 0.175
  10293. }
  10294. },
  10295. back: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(150, "lb"),
  10298. name: "Back",
  10299. image: {
  10300. source: "./media/characters/ilisha-devya/back.svg",
  10301. extra: 1,
  10302. bottom: 0.015
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(500, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Megamacro",
  10314. height: math.unit(10, "miles")
  10315. },
  10316. {
  10317. name: "Gigamacro",
  10318. height: math.unit(100000, "miles")
  10319. },
  10320. {
  10321. name: "Examacro",
  10322. height: math.unit(1e9, "lightyears")
  10323. },
  10324. {
  10325. name: "Omniversal",
  10326. height: math.unit(1e33, "lightyears")
  10327. },
  10328. {
  10329. name: "Beyond Infinite",
  10330. height: math.unit(1e100, "lightyears")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Mira" },
  10336. {
  10337. Side: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Side",
  10341. image: {
  10342. source: "./media/characters/mira/side.svg",
  10343. extra: 900 / 799,
  10344. bottom: 0.02
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Human Size",
  10351. height: math.unit(6, "feet")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(100, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Megamacro",
  10360. height: math.unit(10, "miles")
  10361. },
  10362. {
  10363. name: "Gigamacro",
  10364. height: math.unit(25000, "miles")
  10365. },
  10366. {
  10367. name: "Teramacro",
  10368. height: math.unit(300, "AU")
  10369. },
  10370. {
  10371. name: "Full Size",
  10372. height: math.unit(4.5e10, "lightyears")
  10373. },
  10374. ]
  10375. ))
  10376. characterMakers.push(() => makeCharacter(
  10377. { name: "Holly" },
  10378. {
  10379. front: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(150, "lb"),
  10382. name: "Front",
  10383. image: {
  10384. source: "./media/characters/holly/front.svg",
  10385. extra: 639 / 606
  10386. }
  10387. },
  10388. back: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(150, "lb"),
  10391. name: "Back",
  10392. image: {
  10393. source: "./media/characters/holly/back.svg",
  10394. extra: 623 / 598
  10395. }
  10396. },
  10397. frontWorking: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front (Working)",
  10401. image: {
  10402. source: "./media/characters/holly/front-working.svg",
  10403. extra: 607 / 577,
  10404. bottom: 0.048
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(12 + 3 / 12, "feet"),
  10412. default: true
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Porter" },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/porter/front.svg",
  10425. extra: 1,
  10426. bottom: 0.01
  10427. }
  10428. },
  10429. frontRobes: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(150, "lb"),
  10432. name: "Front (Robes)",
  10433. image: {
  10434. source: "./media/characters/porter/front-robes.svg",
  10435. extra: 1.01,
  10436. bottom: 0.01
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(11 + 9 / 12, "feet"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Lucy" },
  10450. {
  10451. legendary: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(150, "lb"),
  10454. name: "Legendary",
  10455. image: {
  10456. source: "./media/characters/lucy/legendary.svg",
  10457. extra: 1355 / 1100,
  10458. bottom: 0.045
  10459. }
  10460. },
  10461. },
  10462. [
  10463. {
  10464. name: "Legendary",
  10465. height: math.unit(86882 * 2, "miles"),
  10466. default: true
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Drusilla" },
  10472. {
  10473. front: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(150, "lb"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/drusilla/front.svg",
  10479. extra: 678 / 635,
  10480. bottom: 0.03
  10481. }
  10482. },
  10483. back: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/drusilla/back.svg",
  10489. extra: 678 / 635,
  10490. bottom: 0.005
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(100, "feet")
  10498. },
  10499. {
  10500. name: "Canon Height",
  10501. height: math.unit(2000, "feet"),
  10502. default: true
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Renard Thatch" },
  10508. {
  10509. front: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(180, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/renard-thatch/front.svg",
  10515. extra: 2411 / 2275,
  10516. bottom: 0.01
  10517. }
  10518. },
  10519. frontPosing: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(180, "lb"),
  10522. name: "Front (Posing)",
  10523. image: {
  10524. source: "./media/characters/renard-thatch/front-posing.svg",
  10525. extra: 2381 / 2261,
  10526. bottom: 0.01
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(180, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/renard-thatch/back.svg",
  10535. extra: 2428 / 2288
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Micro",
  10542. height: math.unit(3, "inches")
  10543. },
  10544. {
  10545. name: "Default",
  10546. height: math.unit(6, "feet"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Macro",
  10551. height: math.unit(75, "feet")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Sekvra" },
  10557. {
  10558. front: {
  10559. height: math.unit(1450, "feet"),
  10560. weight: math.unit(1.21e6, "tons"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/sekvra/front.svg",
  10564. extra: 1,
  10565. bottom: 0.03
  10566. }
  10567. },
  10568. frontClothed: {
  10569. height: math.unit(1450, "feet"),
  10570. weight: math.unit(1.21e6, "tons"),
  10571. name: "Front (Clothed)",
  10572. image: {
  10573. source: "./media/characters/sekvra/front-clothed.svg",
  10574. extra: 1,
  10575. bottom: 0.03
  10576. }
  10577. },
  10578. side: {
  10579. height: math.unit(1450, "feet"),
  10580. weight: math.unit(1.21e6, "tons"),
  10581. name: "Side",
  10582. image: {
  10583. source: "./media/characters/sekvra/side.svg",
  10584. extra: 1,
  10585. bottom: 0.025
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(1450, "feet"),
  10590. weight: math.unit(1.21e6, "tons"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/sekvra/back.svg",
  10594. extra: 1,
  10595. bottom: 0.005
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(1450, "feet"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Megamacro",
  10607. height: math.unit(15000, "feet")
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Carmine" },
  10613. {
  10614. front: {
  10615. height: math.unit(6, "feet"),
  10616. weight: math.unit(150, "lb"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/carmine/front.svg",
  10620. extra: 1,
  10621. bottom: 0.035
  10622. }
  10623. },
  10624. frontArmor: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front (Armor)",
  10628. image: {
  10629. source: "./media/characters/carmine/front-armor.svg",
  10630. extra: 1,
  10631. bottom: 0.035
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Large",
  10638. height: math.unit(1, "mile")
  10639. },
  10640. {
  10641. name: "Huge",
  10642. height: math.unit(40, "miles"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Colossal",
  10647. height: math.unit(2500, "miles")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Elyssia" },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(150, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/elyssia/front.svg",
  10660. extra: 2201 / 2035,
  10661. bottom: 0.05
  10662. }
  10663. },
  10664. frontClothed: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(150, "lb"),
  10667. name: "Front (Clothed)",
  10668. image: {
  10669. source: "./media/characters/elyssia/front-clothed.svg",
  10670. extra: 2201 / 2035,
  10671. bottom: 0.05
  10672. }
  10673. },
  10674. back: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(150, "lb"),
  10677. name: "Back",
  10678. image: {
  10679. source: "./media/characters/elyssia/back.svg",
  10680. extra: 2201 / 2035,
  10681. bottom: 0.013
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Smaller",
  10688. height: math.unit(150, "feet")
  10689. },
  10690. {
  10691. name: "Standard",
  10692. height: math.unit(1400, "feet"),
  10693. default: true
  10694. },
  10695. {
  10696. name: "Distracted",
  10697. height: math.unit(15000, "feet")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Geno Maxwell" },
  10703. {
  10704. front: {
  10705. height: math.unit(7 + 4 / 12, "feet"),
  10706. weight: math.unit(500, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/geno-maxwell/front.svg",
  10710. extra: 2207 / 2040,
  10711. bottom: 0.015
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Micro",
  10718. height: math.unit(3, "inches")
  10719. },
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(7 + 4 / 12, "feet"),
  10723. default: true
  10724. },
  10725. {
  10726. name: "Macro",
  10727. height: math.unit(220, "feet")
  10728. },
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(11, "miles")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Regena Maxwell" },
  10737. {
  10738. front: {
  10739. height: math.unit(7 + 4 / 12, "feet"),
  10740. weight: math.unit(500, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/regena-maxwell/front.svg",
  10744. extra: 3115 / 2770,
  10745. bottom: 0.02
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(7 + 4 / 12, "feet"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(220, "feet")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(11, "miles")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "XGlidingDragonX" },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(150, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10774. extra: 860 / 690,
  10775. bottom: 0.03
  10776. }
  10777. },
  10778. },
  10779. [
  10780. {
  10781. name: "Normal",
  10782. height: math.unit(1.7, "meters"),
  10783. default: true
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Quilly" },
  10789. {
  10790. front: {
  10791. height: math.unit(6, "feet"),
  10792. weight: math.unit(150, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/quilly/front.svg",
  10796. extra: 890 / 776
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Gigamacro",
  10803. height: math.unit(404090, "miles"),
  10804. default: true
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Tempest" },
  10810. {
  10811. front: {
  10812. height: math.unit(7 + 8 / 12, "feet"),
  10813. weight: math.unit(350, "lb"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/tempest/front.svg",
  10817. extra: 1175 / 1086,
  10818. bottom: 0.02
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(7 + 8 / 12, "feet"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Rodger" },
  10832. {
  10833. side: {
  10834. height: math.unit(4 + 5 / 12, "feet"),
  10835. weight: math.unit(80, "lb"),
  10836. name: "Side",
  10837. image: {
  10838. source: "./media/characters/rodger/side.svg",
  10839. extra: 1235 / 1118
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(1, "inch")
  10847. },
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(4 + 5 / 12, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Macro",
  10855. height: math.unit(120, "feet")
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Danyel" },
  10861. {
  10862. front: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(150, "lb"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/danyel/front.svg",
  10868. extra: 1185 / 1123,
  10869. bottom: 0.05
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Shrunken",
  10876. height: math.unit(0.5, "mm")
  10877. },
  10878. {
  10879. name: "Micro",
  10880. height: math.unit(1, "mm"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Upsized",
  10885. height: math.unit(5 + 5 / 12, "feet")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Vivian Bijoux" },
  10891. {
  10892. front: {
  10893. height: math.unit(5 + 6 / 12, "feet"),
  10894. weight: math.unit(200, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/vivian-bijoux/front.svg",
  10898. extra: 1,
  10899. bottom: 0.072
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(5 + 6 / 12, "feet"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Bad Dream",
  10911. height: math.unit(500, "feet")
  10912. },
  10913. {
  10914. name: "Nightmare",
  10915. height: math.unit(500, "miles")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Zeta" },
  10921. {
  10922. front: {
  10923. height: math.unit(6 + 1 / 12, "feet"),
  10924. weight: math.unit(260, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/zeta/front.svg",
  10928. extra: 1968 / 1889,
  10929. bottom: 0.06
  10930. }
  10931. },
  10932. back: {
  10933. height: math.unit(6 + 1 / 12, "feet"),
  10934. weight: math.unit(260, "lb"),
  10935. name: "Back",
  10936. image: {
  10937. source: "./media/characters/zeta/back.svg",
  10938. extra: 1944 / 1858,
  10939. bottom: 0.03
  10940. }
  10941. },
  10942. hand: {
  10943. height: math.unit(1.112, "feet"),
  10944. name: "Hand",
  10945. image: {
  10946. source: "./media/characters/zeta/hand.svg"
  10947. }
  10948. },
  10949. foot: {
  10950. height: math.unit(1.48, "feet"),
  10951. name: "Foot",
  10952. image: {
  10953. source: "./media/characters/zeta/foot.svg"
  10954. }
  10955. },
  10956. },
  10957. [
  10958. {
  10959. name: "Micro",
  10960. height: math.unit(6, "inches")
  10961. },
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(6 + 1 / 12, "feet"),
  10965. default: true
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(20, "feet")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Jamie Larsen" },
  10975. {
  10976. front: {
  10977. height: math.unit(6, "feet"),
  10978. weight: math.unit(150, "lb"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/jamie-larsen/front.svg",
  10982. extra: 962 / 933,
  10983. bottom: 0.02
  10984. }
  10985. },
  10986. back: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(150, "lb"),
  10989. name: "Back",
  10990. image: {
  10991. source: "./media/characters/jamie-larsen/back.svg",
  10992. extra: 997 / 946
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Macro",
  10999. height: math.unit(28 + 7 / 12, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro+",
  11004. height: math.unit(180, "feet")
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(10, "miles")
  11009. },
  11010. {
  11011. name: "Gigamacro",
  11012. height: math.unit(200000, "miles")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Vance" },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(120, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/vance/front.svg",
  11025. extra: 1980 / 1890,
  11026. bottom: 0.09
  11027. }
  11028. },
  11029. back: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(120, "lb"),
  11032. name: "Back",
  11033. image: {
  11034. source: "./media/characters/vance/back.svg",
  11035. extra: 2081 / 1994,
  11036. bottom: 0.014
  11037. }
  11038. },
  11039. hand: {
  11040. height: math.unit(0.88, "feet"),
  11041. name: "Hand",
  11042. image: {
  11043. source: "./media/characters/vance/hand.svg"
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(0.64, "feet"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/vance/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Small",
  11057. height: math.unit(90, "feet"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(100, "meters")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(15, "miles")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Xochitl" },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(180, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/xochitl/front.svg",
  11079. extra: 2297 / 2261,
  11080. bottom: 0.065
  11081. }
  11082. },
  11083. back: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(180, "lb"),
  11086. name: "Back",
  11087. image: {
  11088. source: "./media/characters/xochitl/back.svg",
  11089. extra: 2386 / 2354,
  11090. bottom: 0.01
  11091. }
  11092. },
  11093. foot: {
  11094. height: math.unit(6 / 5 * 1.15, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Foot",
  11097. image: {
  11098. source: "./media/characters/xochitl/foot.svg"
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Macro",
  11105. height: math.unit(80, "feet")
  11106. },
  11107. {
  11108. name: "Macro+",
  11109. height: math.unit(400, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Gigamacro",
  11114. height: math.unit(80000, "miles")
  11115. },
  11116. {
  11117. name: "Gigamacro+",
  11118. height: math.unit(400000, "miles")
  11119. },
  11120. {
  11121. name: "Teramacro",
  11122. height: math.unit(300, "AU")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Vincent" },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/vincent/front.svg",
  11135. extra: 1130 / 1080,
  11136. bottom: 0.055
  11137. }
  11138. },
  11139. beak: {
  11140. height: math.unit(6 * 0.1, "feet"),
  11141. name: "Beak",
  11142. image: {
  11143. source: "./media/characters/vincent/beak.svg"
  11144. }
  11145. },
  11146. hand: {
  11147. height: math.unit(6 * 0.85, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Hand",
  11150. image: {
  11151. source: "./media/characters/vincent/hand.svg"
  11152. }
  11153. },
  11154. foot: {
  11155. height: math.unit(6 * 0.19, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Foot",
  11158. image: {
  11159. source: "./media/characters/vincent/foot.svg"
  11160. }
  11161. },
  11162. },
  11163. [
  11164. {
  11165. name: "Base",
  11166. height: math.unit(6 + 5 / 12, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Macro",
  11171. height: math.unit(300, "feet")
  11172. },
  11173. {
  11174. name: "Megamacro",
  11175. height: math.unit(2, "miles")
  11176. },
  11177. {
  11178. name: "Gigamacro",
  11179. height: math.unit(1000, "miles")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Jay" },
  11185. {
  11186. front: {
  11187. height: math.unit(6 + 2 / 12, "feet"),
  11188. weight: math.unit(65, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/jay/front.svg",
  11192. extra: 1510 / 1430,
  11193. bottom: 0.042
  11194. }
  11195. },
  11196. back: {
  11197. height: math.unit(6 + 2 / 12, "feet"),
  11198. weight: math.unit(65, "lb"),
  11199. name: "Back",
  11200. image: {
  11201. source: "./media/characters/jay/back.svg",
  11202. extra: 1510 / 1430,
  11203. bottom: 0.025
  11204. }
  11205. },
  11206. clothed: {
  11207. height: math.unit(6 + 2 / 12, "feet"),
  11208. weight: math.unit(65, "lb"),
  11209. name: "Front (Clothed)",
  11210. image: {
  11211. source: "./media/characters/jay/clothed.svg",
  11212. extra: 744 / 699,
  11213. bottom: 0.043
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Micro",
  11220. height: math.unit(1, "inch")
  11221. },
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(6 + 2 / 12, "feet"),
  11225. default: true
  11226. },
  11227. {
  11228. name: "Macro",
  11229. height: math.unit(1, "mile")
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(100, "miles")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Coatl" },
  11239. {
  11240. front: {
  11241. height: math.unit(2, "meters"),
  11242. weight: math.unit(500, "kg"),
  11243. name: "Front",
  11244. image: {
  11245. source: "./media/characters/coatl/front.svg",
  11246. extra: 3948 / 3500,
  11247. bottom: 0.082
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(4, "meters")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(100, "meters"),
  11259. default: true
  11260. },
  11261. {
  11262. name: "Macro+",
  11263. height: math.unit(300, "meters")
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(3, "gigameters")
  11268. },
  11269. {
  11270. name: "Megamacro+",
  11271. height: math.unit(300, "terameters")
  11272. },
  11273. {
  11274. name: "Megamacro++",
  11275. height: math.unit(3, "lightyears")
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Shiroryu" },
  11281. {
  11282. front: {
  11283. height: math.unit(6, "feet"),
  11284. weight: math.unit(50, "kg"),
  11285. name: "front",
  11286. image: {
  11287. source: "./media/characters/shiroryu/front.svg",
  11288. extra: 1990 / 1935
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Mortal Mingling",
  11295. height: math.unit(3, "meters")
  11296. },
  11297. {
  11298. name: "Kaiju-ish",
  11299. height: math.unit(250, "meters")
  11300. },
  11301. {
  11302. name: "Somewhat Godly",
  11303. height: math.unit(400, "km"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Planetary",
  11308. height: math.unit(300, "megameters")
  11309. },
  11310. {
  11311. name: "Galaxy-dwarfing",
  11312. height: math.unit(450, "kiloparsecs")
  11313. },
  11314. {
  11315. name: "Universe Eater",
  11316. height: math.unit(150, "gigaparsecs")
  11317. },
  11318. {
  11319. name: "Almost Immeasurable",
  11320. height: math.unit(1.3e266, "yottaparsecs")
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Umeko" },
  11326. {
  11327. front: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(150, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/umeko/front.svg",
  11333. extra: 1,
  11334. bottom: 0.019
  11335. }
  11336. },
  11337. frontArmored: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(150, "lb"),
  11340. name: "Front (Armored)",
  11341. image: {
  11342. source: "./media/characters/umeko/front-armored.svg",
  11343. extra: 1,
  11344. bottom: 0.021
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(220, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Guardian Dragon",
  11356. height: math.unit(50, "miles")
  11357. },
  11358. {
  11359. name: "Cosmic",
  11360. height: math.unit(800000, "miles")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Cassidy" },
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(150, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/cassidy/front.svg",
  11373. extra: 1,
  11374. bottom: 0.043
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Canon Height",
  11381. height: math.unit(120, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro+",
  11386. height: math.unit(400, "feet")
  11387. },
  11388. {
  11389. name: "Macro++",
  11390. height: math.unit(4000, "feet")
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(3, "miles")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Isaac" },
  11400. {
  11401. front: {
  11402. height: math.unit(6, "feet"),
  11403. weight: math.unit(150, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/isaac/front.svg",
  11407. extra: 896 / 815,
  11408. bottom: 0.11
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Human Size",
  11415. height: math.unit(8, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(400, "feet")
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(50, "miles")
  11425. },
  11426. {
  11427. name: "Canon Height",
  11428. height: math.unit(200, "AU")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Sleekit" },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(72, "kg"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/sleekit/front.svg",
  11441. extra: 4693 / 4487,
  11442. bottom: 0.012
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Minimum Height",
  11449. height: math.unit(10, "meters")
  11450. },
  11451. {
  11452. name: "Smaller",
  11453. height: math.unit(25, "meters")
  11454. },
  11455. {
  11456. name: "Larger",
  11457. height: math.unit(38, "meters"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Maximum height",
  11462. height: math.unit(100, "meters")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Nillia" },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/nillia/front.svg",
  11475. extra: 2195 / 2037,
  11476. bottom: 0.005
  11477. }
  11478. },
  11479. back: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(150, "lb"),
  11482. name: "Back",
  11483. image: {
  11484. source: "./media/characters/nillia/back.svg",
  11485. extra: 2195 / 2037,
  11486. bottom: 0.005
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Canon Height",
  11493. height: math.unit(489, "feet"),
  11494. default: true
  11495. }
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Mesmyriza" },
  11500. {
  11501. front: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(150, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/mesmyriza/front.svg",
  11507. extra: 2067 / 1784,
  11508. bottom: 0.035
  11509. }
  11510. },
  11511. foot: {
  11512. height: math.unit(6 / (250 / 35), "feet"),
  11513. name: "Foot",
  11514. image: {
  11515. source: "./media/characters/mesmyriza/foot.svg"
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(457, "meters"),
  11523. default: true
  11524. },
  11525. {
  11526. name: "Megamacro",
  11527. height: math.unit(8, "megameters")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Saudade" },
  11533. {
  11534. front: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(250, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/saudade/front.svg",
  11540. extra: 1172 / 1139,
  11541. bottom: 0.035
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(3, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(6, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(50, "feet")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(2800, "feet")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Keireer" },
  11567. {
  11568. front: {
  11569. height: math.unit(5 + 4 / 12, "feet"),
  11570. weight: math.unit(100, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/keireer/front.svg",
  11574. extra: 716 / 666,
  11575. bottom: 0.05
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Normal",
  11582. height: math.unit(5 + 4 / 12, "feet"),
  11583. default: true
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Mirja" },
  11589. {
  11590. front: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(90, "kg"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/mirja/front.svg",
  11596. extra: 1789 / 1683,
  11597. bottom: 0.05
  11598. }
  11599. },
  11600. frontDressed: {
  11601. height: math.unit(6, "feet"),
  11602. weight: math.unit(90, "lb"),
  11603. name: "Front (Dressed)",
  11604. image: {
  11605. source: "./media/characters/mirja/front-dressed.svg",
  11606. extra: 1789 / 1683,
  11607. bottom: 0.05
  11608. }
  11609. },
  11610. back: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(90, "lb"),
  11613. name: "Back",
  11614. image: {
  11615. source: "./media/characters/mirja/back.svg",
  11616. extra: 953 / 917,
  11617. bottom: 0.017
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "\"Incognito\"",
  11624. height: math.unit(3, "meters")
  11625. },
  11626. {
  11627. name: "Strolling Size",
  11628. height: math.unit(15, "km")
  11629. },
  11630. {
  11631. name: "Larger Strolling Size",
  11632. height: math.unit(400, "km")
  11633. },
  11634. {
  11635. name: "Preferred Size",
  11636. height: math.unit(5000, "km")
  11637. },
  11638. {
  11639. name: "True Size",
  11640. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11641. default: true
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Nightraver" },
  11647. {
  11648. front: {
  11649. height: math.unit(15, "feet"),
  11650. weight: math.unit(880, "kg"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/nightraver/front.svg",
  11654. extra: 2444 / 2160,
  11655. bottom: 0.027
  11656. }
  11657. },
  11658. back: {
  11659. height: math.unit(15, "feet"),
  11660. weight: math.unit(880, "kg"),
  11661. name: "Back",
  11662. image: {
  11663. source: "./media/characters/nightraver/back.svg",
  11664. extra: 2309 / 2180,
  11665. bottom: 0.005
  11666. }
  11667. },
  11668. sole: {
  11669. height: math.unit(2.878, "feet"),
  11670. name: "Sole",
  11671. image: {
  11672. source: "./media/characters/nightraver/sole.svg"
  11673. }
  11674. },
  11675. foot: {
  11676. height: math.unit(2.285, "feet"),
  11677. name: "Foot",
  11678. image: {
  11679. source: "./media/characters/nightraver/foot.svg"
  11680. }
  11681. },
  11682. maw: {
  11683. height: math.unit(2.67, "feet"),
  11684. name: "Maw",
  11685. image: {
  11686. source: "./media/characters/nightraver/maw.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(1, "cm")
  11694. },
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(15, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(300, "feet")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(300, "miles")
  11707. },
  11708. {
  11709. name: "Gigamacro",
  11710. height: math.unit(10000, "miles")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Arc" },
  11716. {
  11717. side: {
  11718. height: math.unit(2, "inches"),
  11719. weight: math.unit(5, "grams"),
  11720. name: "Side",
  11721. image: {
  11722. source: "./media/characters/arc/side.svg"
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Micro",
  11729. height: math.unit(2, "inches"),
  11730. default: true
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Nebula Shahar" },
  11736. {
  11737. front: {
  11738. height: math.unit(1.1938, "meters"),
  11739. weight: math.unit(54, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/nebula-shahar/front.svg",
  11743. extra: 1642 / 1436,
  11744. bottom: 0.06
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Megamicro",
  11751. height: math.unit(0.3, "mm")
  11752. },
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(3, "cm")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(138, "cm"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(30, "m")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Shayla" },
  11770. {
  11771. front: {
  11772. height: math.unit(5.24, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/shayla/front.svg",
  11777. extra: 1512 / 1414,
  11778. bottom: 0.01
  11779. }
  11780. },
  11781. back: {
  11782. height: math.unit(5.24, "feet"),
  11783. weight: math.unit(150, "lb"),
  11784. name: "Back",
  11785. image: {
  11786. source: "./media/characters/shayla/back.svg",
  11787. extra: 1512 / 1414
  11788. }
  11789. },
  11790. hand: {
  11791. height: math.unit(0.7781496062992126, "feet"),
  11792. name: "Hand",
  11793. image: {
  11794. source: "./media/characters/shayla/hand.svg"
  11795. }
  11796. },
  11797. foot: {
  11798. height: math.unit(1.4206036745406823, "feet"),
  11799. name: "Foot",
  11800. image: {
  11801. source: "./media/characters/shayla/foot.svg"
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(0.32, "feet")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(5.24, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(492.12, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(186.41, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Pia Jr." },
  11827. {
  11828. front: {
  11829. height: math.unit(2.2, "m"),
  11830. weight: math.unit(120, "kg"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/pia-jr/front.svg",
  11834. extra: 1000 / 970,
  11835. bottom: 0.035
  11836. }
  11837. },
  11838. hand: {
  11839. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11840. name: "Hand",
  11841. image: {
  11842. source: "./media/characters/pia-jr/hand.svg"
  11843. }
  11844. },
  11845. paw: {
  11846. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11847. name: "Paw",
  11848. image: {
  11849. source: "./media/characters/pia-jr/paw.svg"
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Micro",
  11856. height: math.unit(1.2, "cm")
  11857. },
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(2.2, "m"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(180, "m")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(420, "km")
  11870. },
  11871. ]
  11872. ))
  11873. characterMakers.push(() => makeCharacter(
  11874. { name: "Pia Sr." },
  11875. {
  11876. front: {
  11877. height: math.unit(2, "m"),
  11878. weight: math.unit(115, "kg"),
  11879. name: "Front",
  11880. image: {
  11881. source: "./media/characters/pia-sr/front.svg",
  11882. extra: 760 / 730,
  11883. bottom: 0.015
  11884. }
  11885. },
  11886. back: {
  11887. height: math.unit(2, "m"),
  11888. weight: math.unit(115, "kg"),
  11889. name: "Back",
  11890. image: {
  11891. source: "./media/characters/pia-sr/back.svg",
  11892. extra: 760 / 730,
  11893. bottom: 0.01
  11894. }
  11895. },
  11896. hand: {
  11897. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11898. name: "Hand",
  11899. image: {
  11900. source: "./media/characters/pia-sr/hand.svg"
  11901. }
  11902. },
  11903. foot: {
  11904. height: math.unit(1.83, "feet"),
  11905. name: "Foot",
  11906. image: {
  11907. source: "./media/characters/pia-sr/foot.svg"
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(88, "mm")
  11915. },
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(2, "m"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Macro",
  11923. height: math.unit(200, "m")
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(420, "km")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "KIBIBYTE" },
  11933. {
  11934. front: {
  11935. height: math.unit(8 + 2 / 12, "feet"),
  11936. weight: math.unit(300, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/kibibyte/front.svg",
  11940. extra: 2221 / 2098,
  11941. bottom: 0.04
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(8 + 2 / 12, "feet"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Socialable Macro",
  11953. height: math.unit(50, "feet")
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(300, "feet")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(500, "miles")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Felix" },
  11967. {
  11968. front: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/felix/front.svg",
  11974. extra: 762 / 722,
  11975. bottom: 0.02
  11976. }
  11977. },
  11978. frontClothed: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front (Clothed)",
  11982. image: {
  11983. source: "./media/characters/felix/front-clothed.svg",
  11984. extra: 762 / 722,
  11985. bottom: 0.02
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(6 + 8 / 12, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Macro",
  11997. height: math.unit(2600, "feet")
  11998. },
  11999. {
  12000. name: "Megamacro",
  12001. height: math.unit(450, "miles")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Tobo" },
  12007. {
  12008. front: {
  12009. height: math.unit(6 + 1 / 12, "feet"),
  12010. weight: math.unit(250, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/tobo/front.svg",
  12014. extra: 608 / 586,
  12015. bottom: 0.023
  12016. }
  12017. },
  12018. back: {
  12019. height: math.unit(6 + 1 / 12, "feet"),
  12020. weight: math.unit(250, "lb"),
  12021. name: "Back",
  12022. image: {
  12023. source: "./media/characters/tobo/back.svg",
  12024. extra: 608 / 586
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Nano",
  12031. height: math.unit(2, "nm")
  12032. },
  12033. {
  12034. name: "Megamicro",
  12035. height: math.unit(0.1, "mm")
  12036. },
  12037. {
  12038. name: "Micro",
  12039. height: math.unit(1, "inch"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Human-sized",
  12044. height: math.unit(6 + 1 / 12, "feet")
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(250, "feet")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(75, "miles")
  12053. },
  12054. {
  12055. name: "Texas-sized",
  12056. height: math.unit(750, "miles")
  12057. },
  12058. {
  12059. name: "Teramacro",
  12060. height: math.unit(50000, "miles")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Danny Kapowsky" },
  12066. {
  12067. front: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(269, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/danny-kapowsky/front.svg",
  12073. extra: 766 / 736,
  12074. bottom: 0.044
  12075. }
  12076. },
  12077. back: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(269, "lb"),
  12080. name: "Back",
  12081. image: {
  12082. source: "./media/characters/danny-kapowsky/back.svg",
  12083. extra: 797 / 760,
  12084. bottom: 0.025
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(150, "feet"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Macro+",
  12096. height: math.unit(200, "feet")
  12097. },
  12098. {
  12099. name: "Macro++",
  12100. height: math.unit(300, "feet")
  12101. },
  12102. {
  12103. name: "Macro+++",
  12104. height: math.unit(400, "feet")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Finn" },
  12110. {
  12111. side: {
  12112. height: math.unit(6, "feet"),
  12113. weight: math.unit(170, "lb"),
  12114. name: "Side",
  12115. image: {
  12116. source: "./media/characters/finn/side.svg",
  12117. extra: 1953 / 1807,
  12118. bottom: 0.057
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(14445, "feet"),
  12126. default: true
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Roy" },
  12132. {
  12133. front: {
  12134. height: math.unit(5 + 6 / 12, "feet"),
  12135. weight: math.unit(125, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/roy/front.svg",
  12139. extra: 1,
  12140. bottom: 0.11
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Micro",
  12147. height: math.unit(3, "inches"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(5 + 6 / 12, "feet")
  12153. },
  12154. {
  12155. name: "Lesser Macro",
  12156. height: math.unit(60, "feet")
  12157. },
  12158. {
  12159. name: "Greater Macro",
  12160. height: math.unit(120, "feet")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Aevsivs" },
  12166. {
  12167. front: {
  12168. height: math.unit(6, "feet"),
  12169. weight: math.unit(100, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/aevsivs/front.svg",
  12173. extra: 1,
  12174. bottom: 0.03
  12175. }
  12176. },
  12177. back: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(100, "lb"),
  12180. name: "Back",
  12181. image: {
  12182. source: "./media/characters/aevsivs/back.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(2, "inches"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(5, "feet")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Hildegard" },
  12200. {
  12201. front: {
  12202. height: math.unit(5 + 7 / 12, "feet"),
  12203. weight: math.unit(159, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/hildegard/front.svg",
  12207. extra: 312 / 286,
  12208. bottom: 0.005
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(5 + 7 / 12, "feet"),
  12216. default: true
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Bernard & Wilder" },
  12222. {
  12223. bernard: {
  12224. height: math.unit(2 + 7 / 12, "feet"),
  12225. weight: math.unit(66, "lb"),
  12226. name: "Bernard",
  12227. rename: true,
  12228. image: {
  12229. source: "./media/characters/bernard-wilder/bernard.svg",
  12230. extra: 192 / 128,
  12231. bottom: 0.05
  12232. }
  12233. },
  12234. wilder: {
  12235. height: math.unit(5 + 8 / 12, "feet"),
  12236. weight: math.unit(143, "lb"),
  12237. name: "Wilder",
  12238. rename: true,
  12239. image: {
  12240. source: "./media/characters/bernard-wilder/wilder.svg",
  12241. extra: 361 / 312,
  12242. bottom: 0.02
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(2 + 7 / 12, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Hearth" },
  12256. {
  12257. anthro: {
  12258. height: math.unit(6 + 1 / 12, "feet"),
  12259. weight: math.unit(155, "lb"),
  12260. name: "Anthro",
  12261. image: {
  12262. source: "./media/characters/hearth/anthro.svg",
  12263. extra: 260 / 250,
  12264. bottom: 0.02
  12265. }
  12266. },
  12267. feral: {
  12268. height: math.unit(3.78, "feet"),
  12269. weight: math.unit(35, "kg"),
  12270. name: "Feral",
  12271. image: {
  12272. source: "./media/characters/hearth/feral.svg",
  12273. extra: 153 / 135,
  12274. bottom: 0.03
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(6 + 1 / 12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Ingrid" },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(182, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/ingrid/front.svg",
  12295. extra: 294 / 268,
  12296. bottom: 0.027
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(6, "feet"),
  12304. default: true
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Malgam" },
  12310. {
  12311. eevee: {
  12312. height: math.unit(2 + 10 / 12, "feet"),
  12313. weight: math.unit(86, "lb"),
  12314. name: "Malgam",
  12315. image: {
  12316. source: "./media/characters/malgam/eevee.svg",
  12317. extra: 218 / 180,
  12318. bottom: 0.2
  12319. }
  12320. },
  12321. sylveon: {
  12322. height: math.unit(4, "feet"),
  12323. weight: math.unit(101, "lb"),
  12324. name: "Future Malgam",
  12325. rename: true,
  12326. image: {
  12327. source: "./media/characters/malgam/sylveon.svg",
  12328. extra: 371 / 325,
  12329. bottom: 0.015
  12330. }
  12331. },
  12332. gigantamax: {
  12333. height: math.unit(50, "feet"),
  12334. name: "Gigantamax Malgam",
  12335. rename: true,
  12336. image: {
  12337. source: "./media/characters/malgam/gigantamax.svg"
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(2 + 10 / 12, "feet"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Fleur" },
  12351. {
  12352. front: {
  12353. height: math.unit(5 + 11 / 12, "feet"),
  12354. weight: math.unit(188, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/fleur/front.svg",
  12358. extra: 309 / 283,
  12359. bottom: 0.007
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(5 + 11 / 12, "feet"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Jude" },
  12373. {
  12374. front: {
  12375. height: math.unit(5 + 4 / 12, "feet"),
  12376. weight: math.unit(122, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/jude/front.svg",
  12380. extra: 288 / 273,
  12381. bottom: 0.03
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(5 + 4 / 12, "feet"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Seara" },
  12395. {
  12396. front: {
  12397. height: math.unit(5 + 11 / 12, "feet"),
  12398. weight: math.unit(190, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/seara/front.svg",
  12402. extra: 1,
  12403. bottom: 0.05
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5 + 11 / 12, "feet"),
  12411. default: true
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Caspian" },
  12417. {
  12418. front: {
  12419. height: math.unit(16 + 5 / 12, "feet"),
  12420. weight: math.unit(524, "lb"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/caspian/front.svg",
  12424. extra: 1,
  12425. bottom: 0.04
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(16 + 5 / 12, "feet"),
  12433. default: true
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Mika" },
  12439. {
  12440. front: {
  12441. height: math.unit(5 + 7 / 12, "feet"),
  12442. weight: math.unit(170, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/mika/front.svg",
  12446. extra: 1,
  12447. bottom: 0.016
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(5 + 7 / 12, "feet"),
  12455. default: true
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Sol" },
  12461. {
  12462. front: {
  12463. height: math.unit(6 + 2 / 12, "feet"),
  12464. weight: math.unit(268, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/sol/front.svg",
  12468. extra: 247 / 231,
  12469. bottom: 0.05
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(6 + 2 / 12, "feet"),
  12477. default: true
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Umiko" },
  12483. {
  12484. buizel: {
  12485. height: math.unit(2 + 5 / 12, "feet"),
  12486. weight: math.unit(87, "lb"),
  12487. name: "Buizel",
  12488. image: {
  12489. source: "./media/characters/umiko/buizel.svg",
  12490. extra: 172 / 157,
  12491. bottom: 0.01
  12492. }
  12493. },
  12494. floatzel: {
  12495. height: math.unit(5 + 9 / 12, "feet"),
  12496. weight: math.unit(250, "lb"),
  12497. name: "Floatzel",
  12498. image: {
  12499. source: "./media/characters/umiko/floatzel.svg",
  12500. extra: 262 / 248
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(2 + 5 / 12, "feet"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Iliac" },
  12514. {
  12515. front: {
  12516. height: math.unit(6 + 2 / 12, "feet"),
  12517. weight: math.unit(146, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/iliac/front.svg",
  12521. extra: 389 / 365,
  12522. bottom: 0.035
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Normal",
  12529. height: math.unit(6 + 2 / 12, "feet"),
  12530. default: true
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Topaz" },
  12536. {
  12537. front: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(170, "lb"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/topaz/front.svg",
  12543. extra: 317 / 303,
  12544. bottom: 0.055
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(6, "feet"),
  12552. default: true
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Gabriel" },
  12558. {
  12559. front: {
  12560. height: math.unit(5 + 11 / 12, "feet"),
  12561. weight: math.unit(144, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/gabriel/front.svg",
  12565. extra: 285 / 262,
  12566. bottom: 0.004
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(5 + 11 / 12, "feet"),
  12574. default: true
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Tempest (Suicune)" },
  12580. {
  12581. side: {
  12582. height: math.unit(6 + 5 / 12, "feet"),
  12583. weight: math.unit(300, "lb"),
  12584. name: "Side",
  12585. image: {
  12586. source: "./media/characters/tempest-suicune/side.svg",
  12587. extra: 195 / 154,
  12588. bottom: 0.04
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(6 + 5 / 12, "feet"),
  12596. default: true
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Vulcan" },
  12602. {
  12603. front: {
  12604. height: math.unit(7 + 2 / 12, "feet"),
  12605. weight: math.unit(322, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/vulcan/front.svg",
  12609. extra: 154 / 147,
  12610. bottom: 0.04
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(7 + 2 / 12, "feet"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Gault" },
  12624. {
  12625. front: {
  12626. height: math.unit(5 + 10 / 12, "feet"),
  12627. weight: math.unit(264, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/gault/front.svg",
  12631. extra: 161 / 140,
  12632. bottom: 0.028
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(5 + 10 / 12, "feet"),
  12640. default: true
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Shard" },
  12646. {
  12647. front: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/shard/front.svg",
  12653. extra: 273 / 238,
  12654. bottom: 0.02
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(3 + 6 / 12, "feet"),
  12662. default: true
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Ashe" },
  12668. {
  12669. front: {
  12670. height: math.unit(5 + 11 / 12, "feet"),
  12671. weight: math.unit(146, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/ashe/front.svg",
  12675. extra: 400 / 373,
  12676. bottom: 0.01
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(5 + 11 / 12, "feet"),
  12684. default: true
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Beatrix" },
  12690. {
  12691. front: {
  12692. height: math.unit(5 + 5 / 12, "feet"),
  12693. weight: math.unit(135, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/beatrix/front.svg",
  12697. extra: 392 / 379,
  12698. bottom: 0.01
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(6, "feet"),
  12706. default: true
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Ignatius" },
  12712. {
  12713. front: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(150, "lb"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/ignatius/front.svg",
  12719. extra: 245 / 222,
  12720. bottom: 0.01
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Normal",
  12727. height: math.unit(5 + 5 / 12, "feet"),
  12728. default: true
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Mei Li" },
  12734. {
  12735. front: {
  12736. height: math.unit(6 + 2 / 12, "feet"),
  12737. weight: math.unit(138, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/mei-li/front.svg",
  12741. extra: 237 / 229,
  12742. bottom: 0.03
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Normal",
  12749. height: math.unit(6 + 2 / 12, "feet"),
  12750. default: true
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Puru" },
  12756. {
  12757. front: {
  12758. height: math.unit(2 + 4 / 12, "feet"),
  12759. weight: math.unit(62, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/puru/front.svg",
  12763. extra: 206 / 149,
  12764. bottom: 0.06
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(2 + 4 / 12, "feet"),
  12772. default: true
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Kee" },
  12778. {
  12779. taur: {
  12780. height: math.unit(11, "feet"),
  12781. weight: math.unit(500, "lb"),
  12782. name: "Taur",
  12783. image: {
  12784. source: "./media/characters/kee/taur.svg",
  12785. extra: 1,
  12786. bottom: 0.04
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(11, "feet"),
  12794. default: true
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Cobalt (Dracha)" },
  12800. {
  12801. anthro: {
  12802. height: math.unit(7, "feet"),
  12803. weight: math.unit(190, "lb"),
  12804. name: "Anthro",
  12805. image: {
  12806. source: "./media/characters/cobalt-dracha/anthro.svg",
  12807. extra: 231 / 225,
  12808. bottom: 0.04
  12809. }
  12810. },
  12811. feral: {
  12812. height: math.unit(9 + 7 / 12, "feet"),
  12813. weight: math.unit(294, "lb"),
  12814. name: "Feral",
  12815. image: {
  12816. source: "./media/characters/cobalt-dracha/feral.svg",
  12817. extra: 692 / 633,
  12818. bottom: 0.05
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(7, "feet"),
  12826. default: true
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Java" },
  12832. {
  12833. fallen: {
  12834. height: math.unit(11 + 8 / 12, "feet"),
  12835. weight: math.unit(485, "lb"),
  12836. name: "Java (Fallen)",
  12837. rename: true,
  12838. image: {
  12839. source: "./media/characters/java/fallen.svg",
  12840. extra: 226 / 208,
  12841. bottom: 0.005
  12842. }
  12843. },
  12844. godkin: {
  12845. height: math.unit(10 + 6 / 12, "feet"),
  12846. weight: math.unit(328, "lb"),
  12847. name: "Java (Godkin)",
  12848. rename: true,
  12849. image: {
  12850. source: "./media/characters/java/godkin.svg",
  12851. extra: 270 / 262,
  12852. bottom: 0.02
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Normal",
  12859. height: math.unit(11 + 8 / 12, "feet"),
  12860. default: true
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Skoll" },
  12866. {
  12867. front: {
  12868. height: math.unit(7 + 8 / 12, "feet"),
  12869. weight: math.unit(320, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/skoll/front.svg",
  12873. extra: 232 / 220,
  12874. bottom: 0.02
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Normal",
  12881. height: math.unit(7 + 8 / 12, "feet"),
  12882. default: true
  12883. },
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Purna" },
  12888. {
  12889. front: {
  12890. height: math.unit(5 + 9 / 12, "feet"),
  12891. weight: math.unit(170, "lb"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/purna/front.svg",
  12895. extra: 239 / 229,
  12896. bottom: 0.01
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(5 + 9 / 12, "feet"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Kuva" },
  12910. {
  12911. front: {
  12912. height: math.unit(5 + 9 / 12, "feet"),
  12913. weight: math.unit(142, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/kuva/front.svg",
  12917. extra: 281 / 271,
  12918. bottom: 0.006
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(5 + 9 / 12, "feet"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Embra" },
  12932. {
  12933. anthro: {
  12934. height: math.unit(9 + 2 / 12, "feet"),
  12935. weight: math.unit(270, "lb"),
  12936. name: "Anthro",
  12937. image: {
  12938. source: "./media/characters/embra/anthro.svg",
  12939. extra: 200 / 187,
  12940. bottom: 0.02
  12941. }
  12942. },
  12943. feral: {
  12944. height: math.unit(18 + 8 / 12, "feet"),
  12945. weight: math.unit(576, "lb"),
  12946. name: "Feral",
  12947. image: {
  12948. source: "./media/characters/embra/feral.svg",
  12949. extra: 152 / 137,
  12950. bottom: 0.037
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(9 + 2 / 12, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Grottos" },
  12964. {
  12965. anthro: {
  12966. height: math.unit(10 + 9 / 12, "feet"),
  12967. weight: math.unit(224, "lb"),
  12968. name: "Anthro",
  12969. image: {
  12970. source: "./media/characters/grottos/anthro.svg",
  12971. extra: 350 / 332,
  12972. bottom: 0.045
  12973. }
  12974. },
  12975. feral: {
  12976. height: math.unit(20 + 7 / 12, "feet"),
  12977. weight: math.unit(629, "lb"),
  12978. name: "Feral",
  12979. image: {
  12980. source: "./media/characters/grottos/feral.svg",
  12981. extra: 207 / 190,
  12982. bottom: 0.05
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(10 + 9 / 12, "feet"),
  12990. default: true
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Frifna" },
  12996. {
  12997. anthro: {
  12998. height: math.unit(9 + 6 / 12, "feet"),
  12999. weight: math.unit(298, "lb"),
  13000. name: "Anthro",
  13001. image: {
  13002. source: "./media/characters/frifna/anthro.svg",
  13003. extra: 282 / 269,
  13004. bottom: 0.015
  13005. }
  13006. },
  13007. feral: {
  13008. height: math.unit(16 + 2 / 12, "feet"),
  13009. weight: math.unit(624, "lb"),
  13010. name: "Feral",
  13011. image: {
  13012. source: "./media/characters/frifna/feral.svg"
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(9 + 6 / 12, "feet"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Elise" },
  13026. {
  13027. front: {
  13028. height: math.unit(6 + 2 / 12, "feet"),
  13029. weight: math.unit(168, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/elise/front.svg",
  13033. extra: 276 / 271
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(6 + 2 / 12, "feet"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Glade" },
  13047. {
  13048. front: {
  13049. height: math.unit(5 + 10 / 12, "feet"),
  13050. weight: math.unit(210, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/glade/front.svg",
  13054. extra: 258 / 247,
  13055. bottom: 0.008
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(5 + 10 / 12, "feet"),
  13063. default: true
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Rina" },
  13069. {
  13070. front: {
  13071. height: math.unit(5 + 10 / 12, "feet"),
  13072. weight: math.unit(129, "lb"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/rina/front.svg",
  13076. extra: 266 / 255,
  13077. bottom: 0.005
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Normal",
  13084. height: math.unit(5 + 10 / 12, "feet"),
  13085. default: true
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Veronica" },
  13091. {
  13092. front: {
  13093. height: math.unit(6 + 1 / 12, "feet"),
  13094. weight: math.unit(192, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/veronica/front.svg",
  13098. extra: 319 / 309,
  13099. bottom: 0.005
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(6 + 1 / 12, "feet"),
  13107. default: true
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Braxton" },
  13113. {
  13114. front: {
  13115. height: math.unit(9 + 3 / 12, "feet"),
  13116. weight: math.unit(1100, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/braxton/front.svg",
  13120. extra: 1057 / 984,
  13121. bottom: 0.05
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(9 + 3 / 12, "feet")
  13129. },
  13130. {
  13131. name: "Giant",
  13132. height: math.unit(300, "feet"),
  13133. default: true
  13134. },
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(700, "feet")
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(6000, "feet")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Blue Feyonics" },
  13147. {
  13148. front: {
  13149. height: math.unit(6 + 7 / 12, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/blue-feyonics/front.svg",
  13154. extra: 1403 / 1306,
  13155. bottom: 0.047
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(6 + 7 / 12, "feet"),
  13163. default: true
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Maxwell" },
  13169. {
  13170. front: {
  13171. height: math.unit(1.8, "meters"),
  13172. weight: math.unit(60, "kg"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/maxwell/front.svg",
  13176. extra: 2060 / 1873
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Micro",
  13183. height: math.unit(1, "mm")
  13184. },
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(1.8, "meter"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Macro",
  13192. height: math.unit(30, "meters")
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(10, "km")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Jack" },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/jack/front.svg",
  13209. extra: 1754 / 1640,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(80000, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Max size",
  13222. height: math.unit(10, "lightyears")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Cafat" },
  13228. {
  13229. upright: {
  13230. height: math.unit(7, "feet"),
  13231. weight: math.unit(170, "lb"),
  13232. name: "Upright",
  13233. image: {
  13234. source: "./media/characters/cafat/upright.svg",
  13235. bottom: 0.01
  13236. }
  13237. },
  13238. uprightFull: {
  13239. height: math.unit(7, "feet"),
  13240. weight: math.unit(170, "lb"),
  13241. name: "Upright (Full)",
  13242. image: {
  13243. source: "./media/characters/cafat/upright-full.svg",
  13244. bottom: 0.01
  13245. }
  13246. },
  13247. side: {
  13248. height: math.unit(5, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Side",
  13251. image: {
  13252. source: "./media/characters/cafat/side.svg"
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Small",
  13259. height: math.unit(7, "feet"),
  13260. default: true
  13261. },
  13262. {
  13263. name: "Large",
  13264. height: math.unit(15.5, "feet")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Verin Raharra" },
  13270. {
  13271. front: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/verin-raharra/front.svg",
  13277. extra: 5019 / 4835,
  13278. bottom: 0.023
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(7 + 5 / 12, "feet"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Upsized",
  13290. height: math.unit(20, "feet")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Nakata" },
  13296. {
  13297. front: {
  13298. height: math.unit(7, "feet"),
  13299. weight: math.unit(230, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/nakata/front.svg",
  13303. extra: 1.005,
  13304. bottom: 0.01
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(7, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Big",
  13316. height: math.unit(14, "feet")
  13317. },
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(400, "feet")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Lily" },
  13326. {
  13327. front: {
  13328. height: math.unit(4.91, "feet"),
  13329. weight: math.unit(100, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/lily/front.svg",
  13333. extra: 1585 / 1415,
  13334. bottom: 0.02
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(4.91, "feet"),
  13342. default: true
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Sheila" },
  13348. {
  13349. laying: {
  13350. height: math.unit(4 + 4 / 12, "feet"),
  13351. weight: math.unit(600, "lb"),
  13352. name: "Laying",
  13353. image: {
  13354. source: "./media/characters/sheila/laying.svg",
  13355. extra: 1333 / 1265,
  13356. bottom: 0.16
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(4 + 4 / 12, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Sax" },
  13370. {
  13371. front: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(190, "lb"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/sax/front.svg",
  13377. extra: 1187 / 973,
  13378. bottom: 0.042
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Micro",
  13385. height: math.unit(4, "inches"),
  13386. default: true
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Pandora" },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/pandora/front.svg",
  13399. extra: 2720 / 2556,
  13400. bottom: 0.015
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/pandora/back.svg",
  13409. extra: 2720 / 2556,
  13410. bottom: 0.01
  13411. }
  13412. },
  13413. beans: {
  13414. height: math.unit(6 / 8, "feet"),
  13415. name: "Beans",
  13416. image: {
  13417. source: "./media/characters/pandora/beans.svg"
  13418. }
  13419. },
  13420. skirt: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Skirt",
  13424. image: {
  13425. source: "./media/characters/pandora/skirt.svg",
  13426. extra: 1622 / 1525,
  13427. bottom: 0.015
  13428. }
  13429. },
  13430. hoodie: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Hoodie",
  13434. image: {
  13435. source: "./media/characters/pandora/hoodie.svg",
  13436. extra: 1622 / 1525,
  13437. bottom: 0.015
  13438. }
  13439. },
  13440. casual: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Casual",
  13444. image: {
  13445. source: "./media/characters/pandora/casual.svg",
  13446. extra: 1622 / 1525,
  13447. bottom: 0.015
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(6, "feet")
  13455. },
  13456. {
  13457. name: "Big Steppy",
  13458. height: math.unit(1, "km"),
  13459. default: true
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Venio Darcony" },
  13465. {
  13466. side: {
  13467. height: math.unit(10, "feet"),
  13468. weight: math.unit(800, "kg"),
  13469. name: "Side",
  13470. image: {
  13471. source: "./media/characters/venio-darcony/side.svg",
  13472. extra: 1373 / 1003,
  13473. bottom: 0.037
  13474. }
  13475. },
  13476. front: {
  13477. height: math.unit(19, "feet"),
  13478. weight: math.unit(800, "kg"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/venio-darcony/front.svg"
  13482. }
  13483. },
  13484. back: {
  13485. height: math.unit(19, "feet"),
  13486. weight: math.unit(800, "kg"),
  13487. name: "Back",
  13488. image: {
  13489. source: "./media/characters/venio-darcony/back.svg"
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Normal",
  13496. height: math.unit(10, "feet")
  13497. },
  13498. {
  13499. name: "Macro",
  13500. height: math.unit(130, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Macro+",
  13505. height: math.unit(240, "feet")
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Veski" },
  13511. {
  13512. front: {
  13513. height: math.unit(6, "feet"),
  13514. weight: math.unit(150, "lb"),
  13515. name: "Front",
  13516. image: {
  13517. source: "./media/characters/veski/front.svg",
  13518. extra: 1299 / 1225,
  13519. bottom: 0.04
  13520. }
  13521. },
  13522. back: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Back",
  13526. image: {
  13527. source: "./media/characters/veski/back.svg",
  13528. extra: 1299 / 1225,
  13529. bottom: 0.008
  13530. }
  13531. },
  13532. maw: {
  13533. height: math.unit(1.5 * 1.21, "feet"),
  13534. name: "Maw",
  13535. image: {
  13536. source: "./media/characters/veski/maw.svg"
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Macro",
  13543. height: math.unit(2, "km"),
  13544. default: true
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Isabelle" },
  13550. {
  13551. front: {
  13552. height: math.unit(5 + 7 / 12, "feet"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/isabelle/front.svg",
  13556. extra: 2130 / 1976,
  13557. bottom: 0.05
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Supermicro",
  13564. height: math.unit(10, "micrometers")
  13565. },
  13566. {
  13567. name: "Micro",
  13568. height: math.unit(1, "inch")
  13569. },
  13570. {
  13571. name: "Tiny",
  13572. height: math.unit(5, "inches")
  13573. },
  13574. {
  13575. name: "Standard",
  13576. height: math.unit(5 + 7 / 12, "inches")
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(80, "meters"),
  13581. default: true
  13582. },
  13583. {
  13584. name: "Megamacro",
  13585. height: math.unit(250, "meters")
  13586. },
  13587. {
  13588. name: "Gigamacro",
  13589. height: math.unit(5, "km")
  13590. },
  13591. {
  13592. name: "Cosmic",
  13593. height: math.unit(2.5e6, "miles")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Hanzo" },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/hanzo/front.svg",
  13606. extra: 374 / 344,
  13607. bottom: 0.02
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(8, "feet"),
  13615. default: true
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Anna" },
  13621. {
  13622. front: {
  13623. height: math.unit(7, "feet"),
  13624. weight: math.unit(130, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/anna/front.svg",
  13628. extra: 169 / 145,
  13629. bottom: 0.06
  13630. }
  13631. },
  13632. full: {
  13633. height: math.unit(4.96, "feet"),
  13634. weight: math.unit(220, "lb"),
  13635. name: "Full",
  13636. image: {
  13637. source: "./media/characters/anna/full.svg",
  13638. extra: 138 / 114,
  13639. bottom: 0.15
  13640. }
  13641. },
  13642. tongue: {
  13643. height: math.unit(2.53, "feet"),
  13644. name: "Tongue",
  13645. image: {
  13646. source: "./media/characters/anna/tongue.svg"
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Normal",
  13653. height: math.unit(7, "feet"),
  13654. default: true
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Ian Corvid" },
  13660. {
  13661. front: {
  13662. height: math.unit(7, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/ian-corvid/front.svg",
  13667. extra: 150 / 142,
  13668. bottom: 0.02
  13669. }
  13670. },
  13671. back: {
  13672. height: math.unit(7, "feet"),
  13673. weight: math.unit(150, "lb"),
  13674. name: "Back",
  13675. image: {
  13676. source: "./media/characters/ian-corvid/back.svg",
  13677. extra: 150 / 143,
  13678. bottom: 0.01
  13679. }
  13680. },
  13681. stomping: {
  13682. height: math.unit(7, "feet"),
  13683. weight: math.unit(150, "lb"),
  13684. name: "Stomping",
  13685. image: {
  13686. source: "./media/characters/ian-corvid/stomping.svg",
  13687. extra: 76 / 72
  13688. }
  13689. },
  13690. sitting: {
  13691. height: math.unit(7 / 1.8, "feet"),
  13692. weight: math.unit(150, "lb"),
  13693. name: "Sitting",
  13694. image: {
  13695. source: "./media/characters/ian-corvid/sitting.svg",
  13696. extra: 1400 / 1269,
  13697. bottom: 0.15
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Tiny Microw",
  13704. height: math.unit(1, "inch")
  13705. },
  13706. {
  13707. name: "Microw",
  13708. height: math.unit(6, "inches")
  13709. },
  13710. {
  13711. name: "Crow",
  13712. height: math.unit(7 + 1 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Macrow",
  13717. height: math.unit(176, "feet")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Natalie Kellon" },
  13723. {
  13724. front: {
  13725. height: math.unit(5 + 7 / 12, "feet"),
  13726. weight: math.unit(147, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/natalie-kellon/front.svg",
  13730. extra: 1214 / 1141,
  13731. bottom: 0.02
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(1 / 16, "inch")
  13739. },
  13740. {
  13741. name: "Tiny",
  13742. height: math.unit(4, "inches")
  13743. },
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(5 + 7 / 12, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Amazon",
  13751. height: math.unit(12, "feet")
  13752. },
  13753. {
  13754. name: "Giantess",
  13755. height: math.unit(160, "meters")
  13756. },
  13757. {
  13758. name: "Titaness",
  13759. height: math.unit(800, "meters")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Alluria" },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/alluria/front.svg",
  13772. extra: 806 / 738,
  13773. bottom: 0.01
  13774. }
  13775. },
  13776. side: {
  13777. height: math.unit(6, "feet"),
  13778. weight: math.unit(150, "lb"),
  13779. name: "Side",
  13780. image: {
  13781. source: "./media/characters/alluria/side.svg",
  13782. extra: 800 / 750,
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/alluria/back.svg",
  13791. extra: 806 / 738,
  13792. }
  13793. },
  13794. frontMaid: {
  13795. height: math.unit(6, "feet"),
  13796. weight: math.unit(150, "lb"),
  13797. name: "Front (Maid)",
  13798. image: {
  13799. source: "./media/characters/alluria/front-maid.svg",
  13800. extra: 806 / 738,
  13801. bottom: 0.01
  13802. }
  13803. },
  13804. sideMaid: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(150, "lb"),
  13807. name: "Side (Maid)",
  13808. image: {
  13809. source: "./media/characters/alluria/side-maid.svg",
  13810. extra: 800 / 750,
  13811. bottom: 0.005
  13812. }
  13813. },
  13814. backMaid: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(150, "lb"),
  13817. name: "Back (Maid)",
  13818. image: {
  13819. source: "./media/characters/alluria/back-maid.svg",
  13820. extra: 806 / 738,
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(6, "inches"),
  13828. default: true
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Kyle" },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/kyle/front.svg",
  13841. extra: 1069 / 962,
  13842. bottom: 77.228 / 1727.45
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Macro",
  13849. height: math.unit(150, "feet"),
  13850. default: true
  13851. },
  13852. ]
  13853. ))
  13854. characterMakers.push(() => makeCharacter(
  13855. { name: "Duncan" },
  13856. {
  13857. front: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(300, "lb"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/duncan/front.svg",
  13863. extra: 1650 / 1482,
  13864. bottom: 0.05
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(100, "feet"),
  13872. default: true
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Memory" },
  13878. {
  13879. front: {
  13880. height: math.unit(5 + 4 / 12, "feet"),
  13881. weight: math.unit(220, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/memory/front.svg",
  13885. extra: 3641 / 3545,
  13886. bottom: 0.03
  13887. }
  13888. },
  13889. back: {
  13890. height: math.unit(5 + 4 / 12, "feet"),
  13891. weight: math.unit(220, "lb"),
  13892. name: "Back",
  13893. image: {
  13894. source: "./media/characters/memory/back.svg",
  13895. extra: 3641 / 3545,
  13896. bottom: 0.025
  13897. }
  13898. },
  13899. frontSkirt: {
  13900. height: math.unit(5 + 4 / 12, "feet"),
  13901. weight: math.unit(220, "lb"),
  13902. name: "Front (Skirt)",
  13903. image: {
  13904. source: "./media/characters/memory/front-skirt.svg",
  13905. extra: 3641 / 3545,
  13906. bottom: 0.03
  13907. }
  13908. },
  13909. frontDress: {
  13910. height: math.unit(5 + 4 / 12, "feet"),
  13911. weight: math.unit(220, "lb"),
  13912. name: "Front (Dress)",
  13913. image: {
  13914. source: "./media/characters/memory/front-dress.svg",
  13915. extra: 3641 / 3545,
  13916. bottom: 0.03
  13917. }
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Micro",
  13923. height: math.unit(6, "inches"),
  13924. default: true
  13925. },
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(5 + 4 / 12, "feet")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Luno" },
  13934. {
  13935. front: {
  13936. height: math.unit(4 + 11 / 12, "feet"),
  13937. weight: math.unit(100, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/luno/front.svg",
  13941. extra: 1535 / 1487,
  13942. bottom: 0.03
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(3, "inches")
  13950. },
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(4 + 11 / 12, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(300, "feet")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(700, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Jamesy" },
  13968. {
  13969. front: {
  13970. height: math.unit(6 + 2 / 12, "feet"),
  13971. weight: math.unit(170, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/jamesy/front.svg",
  13975. extra: 440 / 382,
  13976. bottom: 0.005
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Micro",
  13983. height: math.unit(3, "inches")
  13984. },
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(6 + 2 / 12, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Macro",
  13992. height: math.unit(300, "feet")
  13993. },
  13994. {
  13995. name: "Megamacro",
  13996. height: math.unit(700, "miles")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Mark" },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(160, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/mark/front.svg",
  14009. extra: 3300 / 3100,
  14010. bottom: 136.42 / 3440.47
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Macro",
  14017. height: math.unit(120, "meters")
  14018. },
  14019. {
  14020. name: "Bigger Macro",
  14021. height: math.unit(350, "meters")
  14022. },
  14023. {
  14024. name: "Megamacro",
  14025. height: math.unit(8, "km"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Continental",
  14030. height: math.unit(4550, "km")
  14031. },
  14032. {
  14033. name: "Planetary",
  14034. height: math.unit(65000, "km")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Mac" },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(400, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/mac/front.svg",
  14047. extra: 1048 / 987.7,
  14048. bottom: 60 / 1107.6,
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(500, "feet"),
  14056. default: true
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Bari" },
  14062. {
  14063. front: {
  14064. height: math.unit(5 + 2 / 12, "feet"),
  14065. weight: math.unit(190, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/bari/front.svg",
  14069. extra: 3156 / 2880,
  14070. bottom: 0.03
  14071. }
  14072. },
  14073. back: {
  14074. height: math.unit(5 + 2 / 12, "feet"),
  14075. weight: math.unit(190, "lb"),
  14076. name: "Back",
  14077. image: {
  14078. source: "./media/characters/bari/back.svg",
  14079. extra: 3260 / 2834,
  14080. bottom: 0.025
  14081. }
  14082. },
  14083. frontPlush: {
  14084. height: math.unit(5 + 2 / 12, "feet"),
  14085. weight: math.unit(190, "lb"),
  14086. name: "Front (Plush)",
  14087. image: {
  14088. source: "./media/characters/bari/front-plush.svg",
  14089. extra: 1112 / 1061,
  14090. bottom: 0.002
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Micro",
  14097. height: math.unit(3, "inches")
  14098. },
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(5 + 2 / 12, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(20, "feet")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Hunter Misha Raven" },
  14112. {
  14113. front: {
  14114. height: math.unit(6 + 1 / 12, "feet"),
  14115. weight: math.unit(275, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/hunter-misha-raven/front.svg"
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Mortal",
  14125. height: math.unit(6 + 1 / 12, "feet")
  14126. },
  14127. {
  14128. name: "Divine",
  14129. height: math.unit(1.12134e34, "parsecs"),
  14130. default: true
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Max Calore" },
  14136. {
  14137. front: {
  14138. height: math.unit(6 + 3 / 12, "feet"),
  14139. weight: math.unit(220, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/max-calore/front.svg",
  14143. extra: 1700 / 1648,
  14144. bottom: 0.01
  14145. }
  14146. },
  14147. back: {
  14148. height: math.unit(6 + 3 / 12, "feet"),
  14149. weight: math.unit(220, "lb"),
  14150. name: "Back",
  14151. image: {
  14152. source: "./media/characters/max-calore/back.svg",
  14153. extra: 1700 / 1648,
  14154. bottom: 0.01
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Normal",
  14161. height: math.unit(6 + 3 / 12, "feet"),
  14162. default: true
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Aspen" },
  14168. {
  14169. side: {
  14170. height: math.unit(2 + 8 / 12, "feet"),
  14171. weight: math.unit(99, "lb"),
  14172. name: "Side",
  14173. image: {
  14174. source: "./media/characters/aspen/side.svg",
  14175. extra: 152 / 138,
  14176. bottom: 0.032
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Normal",
  14183. height: math.unit(2 + 8 / 12, "feet"),
  14184. default: true
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Sheila (Wolf)" },
  14190. {
  14191. side: {
  14192. height: math.unit(3 + 2 / 12, "feet"),
  14193. weight: math.unit(224, "lb"),
  14194. name: "Side",
  14195. image: {
  14196. source: "./media/characters/sheila-wolf/side.svg",
  14197. extra: 179 / 166,
  14198. bottom: 0.03
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(3 + 2 / 12, "feet"),
  14206. default: true
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Michelle" },
  14212. {
  14213. side: {
  14214. height: math.unit(1 + 9 / 12, "feet"),
  14215. weight: math.unit(38, "lb"),
  14216. name: "Side",
  14217. image: {
  14218. source: "./media/characters/michelle/side.svg",
  14219. extra: 147 / 136.7,
  14220. bottom: 0.03
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(1 + 9 / 12, "feet"),
  14228. default: true
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Nino" },
  14234. {
  14235. front: {
  14236. height: math.unit(1 + 1 / 12, "feet"),
  14237. weight: math.unit(18, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/nino/front.svg"
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(1 + 1 / 12, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Viola" },
  14254. {
  14255. front: {
  14256. height: math.unit(1, "feet"),
  14257. weight: math.unit(16, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/viola/front.svg"
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(1, "feet"),
  14268. default: true
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Atlas" },
  14274. {
  14275. front: {
  14276. height: math.unit(6 + 5 / 12, "feet"),
  14277. weight: math.unit(580, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/atlas/front.svg",
  14281. extra: 298.5 / 290,
  14282. bottom: 0.015
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(6 + 5 / 12, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Davy" },
  14296. {
  14297. side: {
  14298. height: math.unit(1 + 10 / 12, "feet"),
  14299. weight: math.unit(25, "lb"),
  14300. name: "Side",
  14301. image: {
  14302. source: "./media/characters/davy/side.svg",
  14303. extra: 200 / 170,
  14304. bottom: 0.01
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(1 + 10 / 12, "feet"),
  14312. default: true
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Fiona" },
  14318. {
  14319. side: {
  14320. height: math.unit(4 + 8 / 12, "feet"),
  14321. weight: math.unit(166, "lb"),
  14322. name: "Side",
  14323. image: {
  14324. source: "./media/characters/fiona/side.svg",
  14325. extra: 232 / 220,
  14326. bottom: 0.03
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(4 + 8 / 12, "feet"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Lyla" },
  14340. {
  14341. front: {
  14342. height: math.unit(2, "feet"),
  14343. weight: math.unit(62, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/lyla/front.svg",
  14347. bottom: 0.1
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(2, "feet"),
  14355. default: true
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Perseus" },
  14361. {
  14362. side: {
  14363. height: math.unit(1.8, "feet"),
  14364. weight: math.unit(44, "lb"),
  14365. name: "Side",
  14366. image: {
  14367. source: "./media/characters/perseus/side.svg",
  14368. bottom: 0.21
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(1.8, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Remus" },
  14382. {
  14383. side: {
  14384. height: math.unit(4 + 2 / 12, "feet"),
  14385. weight: math.unit(20, "lb"),
  14386. name: "Side",
  14387. image: {
  14388. source: "./media/characters/remus/side.svg"
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(4 + 2 / 12, "feet"),
  14396. default: true
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Raf" },
  14402. {
  14403. front: {
  14404. height: math.unit(4 + 11 / 12, "feet"),
  14405. weight: math.unit(114, "lb"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/raf/front.svg",
  14409. bottom: 0.01
  14410. }
  14411. },
  14412. side: {
  14413. height: math.unit(4 + 11 / 12, "feet"),
  14414. weight: math.unit(114, "lb"),
  14415. name: "Side",
  14416. image: {
  14417. source: "./media/characters/raf/side.svg",
  14418. bottom: 0.005
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Micro",
  14425. height: math.unit(2, "inches")
  14426. },
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(4 + 11 / 12, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Macro",
  14434. height: math.unit(70, "feet")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Liam Einarr" },
  14440. {
  14441. front: {
  14442. height: math.unit(1.5, "meters"),
  14443. weight: math.unit(68, "kg"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/liam-einarr/front.svg",
  14447. extra: 2822 / 2666
  14448. }
  14449. },
  14450. back: {
  14451. height: math.unit(1.5, "meters"),
  14452. weight: math.unit(68, "kg"),
  14453. name: "Back",
  14454. image: {
  14455. source: "./media/characters/liam-einarr/back.svg",
  14456. extra: 2822 / 2666,
  14457. bottom: 0.015
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(1.5, "meters"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(150, "meters")
  14470. },
  14471. {
  14472. name: "Megamacro",
  14473. height: math.unit(35, "km")
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Linda" },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(75, "kg"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/linda/front.svg",
  14486. extra: 930 / 874,
  14487. bottom: 0.004
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Caylex" },
  14501. {
  14502. front: {
  14503. height: math.unit(6 + 8 / 12, "feet"),
  14504. weight: math.unit(220, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/caylex/front.svg",
  14508. extra: 821 / 772,
  14509. bottom: 0.07
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(6 + 8 / 12, "feet"),
  14514. weight: math.unit(220, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/caylex/back.svg",
  14518. extra: 821 / 772,
  14519. bottom: 0.022
  14520. }
  14521. },
  14522. hand: {
  14523. height: math.unit(1.25, "feet"),
  14524. name: "Hand",
  14525. image: {
  14526. source: "./media/characters/caylex/hand.svg"
  14527. }
  14528. },
  14529. foot: {
  14530. height: math.unit(1.6, "feet"),
  14531. name: "Foot",
  14532. image: {
  14533. source: "./media/characters/caylex/foot.svg"
  14534. }
  14535. },
  14536. armored: {
  14537. height: math.unit(6 + 8 / 12, "feet"),
  14538. weight: math.unit(250, "lb"),
  14539. name: "Armored",
  14540. image: {
  14541. source: "./media/characters/caylex/armored.svg",
  14542. extra: 1420 / 1310,
  14543. bottom: 0.045
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(6 + 8 / 12, "feet"),
  14551. default: true
  14552. },
  14553. {
  14554. name: "Normal+",
  14555. height: math.unit(12, "feet")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Alana" },
  14561. {
  14562. front: {
  14563. height: math.unit(7 + 6 / 12, "feet"),
  14564. weight: math.unit(288, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/alana/front.svg",
  14568. extra: 679 / 653,
  14569. bottom: 22.5 / 701
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(7 + 6 / 12, "feet")
  14577. },
  14578. {
  14579. name: "Large",
  14580. height: math.unit(50, "feet")
  14581. },
  14582. {
  14583. name: "Macro",
  14584. height: math.unit(100, "feet"),
  14585. default: true
  14586. },
  14587. {
  14588. name: "Macro+",
  14589. height: math.unit(200, "feet")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Hasani" },
  14595. {
  14596. front: {
  14597. height: math.unit(6 + 1 / 12, "feet"),
  14598. weight: math.unit(210, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/hasani/front.svg",
  14602. extra: 244 / 232,
  14603. bottom: 0.01
  14604. }
  14605. },
  14606. back: {
  14607. height: math.unit(6 + 1 / 12, "feet"),
  14608. weight: math.unit(210, "lb"),
  14609. name: "Back",
  14610. image: {
  14611. source: "./media/characters/hasani/back.svg",
  14612. extra: 244 / 232,
  14613. bottom: 0.01
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(6 + 1 / 12, "feet")
  14621. },
  14622. {
  14623. name: "Macro",
  14624. height: math.unit(175, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Nita" },
  14631. {
  14632. front: {
  14633. height: math.unit(1.82, "meters"),
  14634. weight: math.unit(140, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/nita/front.svg",
  14638. extra: 2473 / 2363,
  14639. bottom: 0.01
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(1.82, "m")
  14647. },
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(300, "m")
  14651. },
  14652. {
  14653. name: "Mistake Canon",
  14654. height: math.unit(0.5, "miles"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Big Mistake",
  14659. height: math.unit(13, "miles")
  14660. },
  14661. {
  14662. name: "Playing God",
  14663. height: math.unit(2450, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Shiriko" },
  14669. {
  14670. front: {
  14671. height: math.unit(4, "feet"),
  14672. weight: math.unit(120, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/shiriko/front.svg",
  14676. extra: 195 / 188
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(4, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Deja" },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. name: "front",
  14694. image: {
  14695. source: "./media/characters/deja/front.svg",
  14696. extra: 926 / 840,
  14697. bottom: 0.07
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Planck Length",
  14704. height: math.unit(1.6e-35, "meters")
  14705. },
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(30.48, "meters"),
  14709. default: true
  14710. },
  14711. {
  14712. name: "Universal",
  14713. height: math.unit(8.8e26, "meters")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Anima" },
  14719. {
  14720. side: {
  14721. height: math.unit(8, "feet"),
  14722. weight: math.unit(6300, "lb"),
  14723. name: "Side",
  14724. image: {
  14725. source: "./media/characters/anima/side.svg",
  14726. bottom: 0.035
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(8, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Bianca" },
  14740. {
  14741. front: {
  14742. height: math.unit(8, "feet"),
  14743. weight: math.unit(350, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/bianca/front.svg",
  14747. extra: 234 / 225,
  14748. bottom: 0.03
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(8, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Adinia" },
  14762. {
  14763. front: {
  14764. height: math.unit(6, "feet"),
  14765. weight: math.unit(150, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/adinia/front.svg",
  14769. extra: 1845 / 1672,
  14770. bottom: 0.02
  14771. }
  14772. },
  14773. back: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(150, "lb"),
  14776. name: "Back",
  14777. image: {
  14778. source: "./media/characters/adinia/back.svg",
  14779. extra: 1845 / 1672,
  14780. bottom: 0.002
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(11 + 5 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Lykasa" },
  14794. {
  14795. front: {
  14796. height: math.unit(3, "meters"),
  14797. weight: math.unit(200, "kg"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/lykasa/front.svg",
  14801. extra: 1076 / 976,
  14802. bottom: 0.06
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(3, "meters")
  14810. },
  14811. {
  14812. name: "Kaiku",
  14813. height: math.unit(120, "meters"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Mega Kaiju",
  14818. height: math.unit(240, "km")
  14819. },
  14820. {
  14821. name: "Giga Kaiju",
  14822. height: math.unit(400, "megameters")
  14823. },
  14824. {
  14825. name: "Tera Kaiju",
  14826. height: math.unit(800, "gigameters")
  14827. },
  14828. {
  14829. name: "Kaiju Dragon Goddess",
  14830. height: math.unit(26, "zettaparsecs")
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Malfaren" },
  14836. {
  14837. side: {
  14838. height: math.unit(283 / 124 * 6, "feet"),
  14839. weight: math.unit(35000, "lb"),
  14840. name: "Side",
  14841. image: {
  14842. source: "./media/characters/malfaren/side.svg",
  14843. extra: 2500 / 1010,
  14844. bottom: 0.01
  14845. }
  14846. },
  14847. front: {
  14848. height: math.unit(22.36, "feet"),
  14849. weight: math.unit(35000, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/malfaren/front.svg",
  14853. extra: 1631 / 1476,
  14854. bottom: 0.01
  14855. }
  14856. },
  14857. maw: {
  14858. height: math.unit(6.9, "feet"),
  14859. name: "Maw",
  14860. image: {
  14861. source: "./media/characters/malfaren/maw.svg"
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Big",
  14868. height: math.unit(283 / 162 * 6, "feet"),
  14869. },
  14870. {
  14871. name: "Bigger",
  14872. height: math.unit(283 / 124 * 6, "feet")
  14873. },
  14874. {
  14875. name: "Massive",
  14876. height: math.unit(283 / 92 * 6, "feet"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "👀💦",
  14881. height: math.unit(283 / 73 * 6, "feet"),
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Kernel" },
  14887. {
  14888. front: {
  14889. height: math.unit(1.7, "m"),
  14890. weight: math.unit(70, "kg"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/kernel/front.svg",
  14894. extra: 222 / 210,
  14895. bottom: 0.007
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Nano",
  14902. height: math.unit(17, "micrometers")
  14903. },
  14904. {
  14905. name: "Micro",
  14906. height: math.unit(1.7, "mm")
  14907. },
  14908. {
  14909. name: "Small",
  14910. height: math.unit(1.7, "cm")
  14911. },
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(1.7, "m"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Jayne Folest" },
  14921. {
  14922. front: {
  14923. height: math.unit(1.75, "meters"),
  14924. weight: math.unit(65, "kg"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/jayne-folest/front.svg",
  14928. extra: 2115 / 2007,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. back: {
  14933. height: math.unit(1.75, "meters"),
  14934. weight: math.unit(65, "kg"),
  14935. name: "Back",
  14936. image: {
  14937. source: "./media/characters/jayne-folest/back.svg",
  14938. extra: 2115 / 2007,
  14939. bottom: 0.005
  14940. }
  14941. },
  14942. frontClothed: {
  14943. height: math.unit(1.75, "meters"),
  14944. weight: math.unit(65, "kg"),
  14945. name: "Front (Clothed)",
  14946. image: {
  14947. source: "./media/characters/jayne-folest/front-clothed.svg",
  14948. extra: 2115 / 2007,
  14949. bottom: 0.035
  14950. }
  14951. },
  14952. hand: {
  14953. height: math.unit(1 / 1.260, "feet"),
  14954. name: "Hand",
  14955. image: {
  14956. source: "./media/characters/jayne-folest/hand.svg"
  14957. }
  14958. },
  14959. foot: {
  14960. height: math.unit(1 / 0.918, "feet"),
  14961. name: "Foot",
  14962. image: {
  14963. source: "./media/characters/jayne-folest/foot.svg"
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Micro",
  14970. height: math.unit(4, "cm")
  14971. },
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(1.75, "meters")
  14975. },
  14976. {
  14977. name: "Macro",
  14978. height: math.unit(47.5, "meters"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Algier" },
  14985. {
  14986. front: {
  14987. height: math.unit(180, "cm"),
  14988. weight: math.unit(70, "kg"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/algier/front.svg",
  14992. extra: 596 / 572,
  14993. bottom: 0.04
  14994. }
  14995. },
  14996. back: {
  14997. height: math.unit(180, "cm"),
  14998. weight: math.unit(70, "kg"),
  14999. name: "Back",
  15000. image: {
  15001. source: "./media/characters/algier/back.svg",
  15002. extra: 596 / 572,
  15003. bottom: 0.025
  15004. }
  15005. },
  15006. frontdressed: {
  15007. height: math.unit(180, "cm"),
  15008. weight: math.unit(150, "kg"),
  15009. name: "Front-dressed",
  15010. image: {
  15011. source: "./media/characters/algier/front-dressed.svg",
  15012. extra: 596 / 572,
  15013. bottom: 0.038
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Micro",
  15020. height: math.unit(5, "cm")
  15021. },
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(180, "cm"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Macro",
  15029. height: math.unit(64, "m")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Pretzel" },
  15035. {
  15036. upright: {
  15037. height: math.unit(7, "feet"),
  15038. weight: math.unit(300, "lb"),
  15039. name: "Upright",
  15040. image: {
  15041. source: "./media/characters/pretzel/upright.svg",
  15042. extra: 534 / 522,
  15043. bottom: 0.065
  15044. }
  15045. },
  15046. sprawling: {
  15047. height: math.unit(3.75, "feet"),
  15048. weight: math.unit(300, "lb"),
  15049. name: "Sprawling",
  15050. image: {
  15051. source: "./media/characters/pretzel/sprawling.svg",
  15052. extra: 314 / 281,
  15053. bottom: 0.1
  15054. }
  15055. },
  15056. tongue: {
  15057. height: math.unit(2, "feet"),
  15058. name: "Tongue",
  15059. image: {
  15060. source: "./media/characters/pretzel/tongue.svg"
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(7, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Oversized",
  15072. height: math.unit(15, "feet")
  15073. },
  15074. {
  15075. name: "Huge",
  15076. height: math.unit(30, "feet")
  15077. },
  15078. {
  15079. name: "Macro",
  15080. height: math.unit(250, "feet")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Roxi" },
  15086. {
  15087. sideFront: {
  15088. height: math.unit(5 + 2 / 12, "feet"),
  15089. weight: math.unit(120, "lb"),
  15090. name: "Front Side",
  15091. image: {
  15092. source: "./media/characters/roxi/side-front.svg",
  15093. extra: 2924 / 2717,
  15094. bottom: 0.08
  15095. }
  15096. },
  15097. sideBack: {
  15098. height: math.unit(5 + 2 / 12, "feet"),
  15099. weight: math.unit(120, "lb"),
  15100. name: "Back Side",
  15101. image: {
  15102. source: "./media/characters/roxi/side-back.svg",
  15103. extra: 2904 / 2693,
  15104. bottom: 0.06
  15105. }
  15106. },
  15107. front: {
  15108. height: math.unit(5 + 2 / 12, "feet"),
  15109. weight: math.unit(120, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/roxi/front.svg",
  15113. extra: 2028 / 1907,
  15114. bottom: 0.01
  15115. }
  15116. },
  15117. frontAlt: {
  15118. height: math.unit(5 + 2 / 12, "feet"),
  15119. weight: math.unit(120, "lb"),
  15120. name: "Front (Alt)",
  15121. image: {
  15122. source: "./media/characters/roxi/front-alt.svg",
  15123. extra: 1828 / 1798,
  15124. bottom: 0.01
  15125. }
  15126. },
  15127. sitting: {
  15128. height: math.unit(2.8, "feet"),
  15129. weight: math.unit(120, "lb"),
  15130. name: "Sitting",
  15131. image: {
  15132. source: "./media/characters/roxi/sitting.svg",
  15133. extra: 2660 / 2462,
  15134. bottom: 0.1
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(5 + 2 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Shadow" },
  15148. {
  15149. side: {
  15150. height: math.unit(55, "feet"),
  15151. weight: math.unit(153, "tons"),
  15152. name: "Side",
  15153. image: {
  15154. source: "./media/characters/shadow/side.svg",
  15155. extra: 701 / 628,
  15156. bottom: 0.02
  15157. }
  15158. },
  15159. flying: {
  15160. height: math.unit(145, "feet"),
  15161. weight: math.unit(153, "tons"),
  15162. name: "Flying",
  15163. image: {
  15164. source: "./media/characters/shadow/flying.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(55, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Marcie" },
  15178. {
  15179. front: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(200, "lb"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/marcie/front.svg",
  15185. extra: 960 / 876,
  15186. bottom: 58 / 1017.87
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Macro",
  15193. height: math.unit(1, "mile"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Kachina" },
  15200. {
  15201. front: {
  15202. height: math.unit(7, "feet"),
  15203. weight: math.unit(200, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/kachina/front.svg",
  15207. extra: 1290.68 / 1119,
  15208. bottom: 36.5 / 1327.18
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(7, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Kash" },
  15222. {
  15223. looking: {
  15224. height: math.unit(2, "meters"),
  15225. weight: math.unit(300, "kg"),
  15226. name: "Looking",
  15227. image: {
  15228. source: "./media/characters/kash/looking.svg",
  15229. extra: 474 / 344,
  15230. bottom: 0.03
  15231. }
  15232. },
  15233. side: {
  15234. height: math.unit(2, "meters"),
  15235. weight: math.unit(300, "kg"),
  15236. name: "Side",
  15237. image: {
  15238. source: "./media/characters/kash/side.svg",
  15239. extra: 302 / 251,
  15240. bottom: 0.03
  15241. }
  15242. },
  15243. front: {
  15244. height: math.unit(2, "meters"),
  15245. weight: math.unit(300, "kg"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/kash/front.svg",
  15249. extra: 495 / 360,
  15250. bottom: 0.015
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(2, "meters"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Big",
  15262. height: math.unit(3, "meters")
  15263. },
  15264. {
  15265. name: "Large",
  15266. height: math.unit(5, "meters")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Lalim" },
  15272. {
  15273. feeding: {
  15274. height: math.unit(6.7, "feet"),
  15275. weight: math.unit(350, "lb"),
  15276. name: "Feeding",
  15277. image: {
  15278. source: "./media/characters/lalim/feeding.svg",
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(6.7, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "De'Vout" },
  15292. {
  15293. front: {
  15294. height: math.unit(9.5, "feet"),
  15295. weight: math.unit(600, "lb"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/de'vout/front.svg",
  15299. extra: 1443 / 1328,
  15300. bottom: 0.025
  15301. }
  15302. },
  15303. back: {
  15304. height: math.unit(9.5, "feet"),
  15305. weight: math.unit(600, "lb"),
  15306. name: "Back",
  15307. image: {
  15308. source: "./media/characters/de'vout/back.svg",
  15309. extra: 1443 / 1328
  15310. }
  15311. },
  15312. frontDressed: {
  15313. height: math.unit(9.5, "feet"),
  15314. weight: math.unit(600, "lb"),
  15315. name: "Front (Dressed",
  15316. image: {
  15317. source: "./media/characters/de'vout/front-dressed.svg",
  15318. extra: 1443 / 1328,
  15319. bottom: 0.025
  15320. }
  15321. },
  15322. backDressed: {
  15323. height: math.unit(9.5, "feet"),
  15324. weight: math.unit(600, "lb"),
  15325. name: "Back (Dressed",
  15326. image: {
  15327. source: "./media/characters/de'vout/back-dressed.svg",
  15328. extra: 1443 / 1328
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(9.5, "feet"),
  15336. default: true
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Talana" },
  15342. {
  15343. front: {
  15344. height: math.unit(8, "feet"),
  15345. weight: math.unit(225, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/talana/front.svg",
  15349. extra: 1410 / 1300,
  15350. bottom: 0.015
  15351. }
  15352. },
  15353. frontDressed: {
  15354. height: math.unit(8, "feet"),
  15355. weight: math.unit(225, "lb"),
  15356. name: "Front (Dressed",
  15357. image: {
  15358. source: "./media/characters/talana/front-dressed.svg",
  15359. extra: 1410 / 1300,
  15360. bottom: 0.015
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(8, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Xeauvok" },
  15374. {
  15375. side: {
  15376. height: math.unit(7.2, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Side",
  15379. image: {
  15380. source: "./media/characters/xeauvok/side.svg",
  15381. extra: 1975 / 1523,
  15382. bottom: 0.07
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(7.2, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Zara" },
  15396. {
  15397. side: {
  15398. height: math.unit(10, "feet"),
  15399. weight: math.unit(900, "kg"),
  15400. name: "Side",
  15401. image: {
  15402. source: "./media/characters/zara/side.svg",
  15403. extra: 504 / 498
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(10, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Richard (Dragon)" },
  15417. {
  15418. side: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Side",
  15422. image: {
  15423. source: "./media/characters/richard-dragon/side.svg",
  15424. extra: 845 / 340,
  15425. bottom: 0.017
  15426. }
  15427. },
  15428. maw: {
  15429. height: math.unit(2.97, "feet"),
  15430. name: "Maw",
  15431. image: {
  15432. source: "./media/characters/richard-dragon/maw.svg"
  15433. }
  15434. },
  15435. },
  15436. [
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Richard (Smeargle)" },
  15441. {
  15442. front: {
  15443. height: math.unit(4, "feet"),
  15444. weight: math.unit(100, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/richard-smeargle/front.svg",
  15448. extra: 2952 / 2820,
  15449. bottom: 0.028
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(4, "feet"),
  15457. default: true
  15458. },
  15459. {
  15460. name: "Dynamax",
  15461. height: math.unit(20, "meters")
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Klay" },
  15467. {
  15468. front: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(110, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/klay/front.svg",
  15474. extra: 962 / 883,
  15475. bottom: 0.04
  15476. }
  15477. },
  15478. back: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(110, "lb"),
  15481. name: "Back",
  15482. image: {
  15483. source: "./media/characters/klay/back.svg",
  15484. extra: 962 / 883
  15485. }
  15486. },
  15487. beans: {
  15488. height: math.unit(1.15, "feet"),
  15489. name: "Beans",
  15490. image: {
  15491. source: "./media/characters/klay/beans.svg"
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Micro",
  15498. height: math.unit(6, "inches")
  15499. },
  15500. {
  15501. name: "Mini",
  15502. height: math.unit(3, "feet")
  15503. },
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(6, "feet"),
  15507. default: true
  15508. },
  15509. {
  15510. name: "Big",
  15511. height: math.unit(25, "feet")
  15512. },
  15513. {
  15514. name: "Macro",
  15515. height: math.unit(100, "feet")
  15516. },
  15517. {
  15518. name: "Megamacro",
  15519. height: math.unit(400, "feet")
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Marcus" },
  15525. {
  15526. front: {
  15527. height: math.unit(6, "feet"),
  15528. weight: math.unit(160, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/marcus/front.svg",
  15532. extra: 734 / 676,
  15533. bottom: 0.03
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Little",
  15540. height: math.unit(6, "feet")
  15541. },
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(110, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Macro",
  15549. height: math.unit(250, "feet")
  15550. },
  15551. {
  15552. name: "Megamacro",
  15553. height: math.unit(1000, "feet")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Claude DelRoute" },
  15559. {
  15560. front: {
  15561. height: math.unit(7, "feet"),
  15562. weight: math.unit(275, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/claude-delroute/front.svg",
  15566. extra: 230 / 214,
  15567. bottom: 0.007
  15568. }
  15569. },
  15570. side: {
  15571. height: math.unit(7, "feet"),
  15572. weight: math.unit(275, "lb"),
  15573. name: "Side",
  15574. image: {
  15575. source: "./media/characters/claude-delroute/side.svg",
  15576. extra: 222 / 214,
  15577. bottom: 0.01
  15578. }
  15579. },
  15580. back: {
  15581. height: math.unit(7, "feet"),
  15582. weight: math.unit(275, "lb"),
  15583. name: "Back",
  15584. image: {
  15585. source: "./media/characters/claude-delroute/back.svg",
  15586. extra: 230 / 214,
  15587. bottom: 0.015
  15588. }
  15589. },
  15590. maw: {
  15591. height: math.unit(0.6407, "meters"),
  15592. name: "Maw",
  15593. image: {
  15594. source: "./media/characters/claude-delroute/maw.svg"
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(7, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Lorge",
  15606. height: math.unit(20, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Dragonien" },
  15612. {
  15613. front: {
  15614. height: math.unit(8 + 4 / 12, "feet"),
  15615. weight: math.unit(600, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/dragonien/front.svg",
  15619. extra: 100 / 94,
  15620. bottom: 3.3 / 103.3445
  15621. }
  15622. },
  15623. back: {
  15624. height: math.unit(8 + 4 / 12, "feet"),
  15625. weight: math.unit(600, "lb"),
  15626. name: "Back",
  15627. image: {
  15628. source: "./media/characters/dragonien/back.svg",
  15629. extra: 776 / 746,
  15630. bottom: 6.4 / 782.0616
  15631. }
  15632. },
  15633. foot: {
  15634. height: math.unit(1.54, "feet"),
  15635. name: "Foot",
  15636. image: {
  15637. source: "./media/characters/dragonien/foot.svg",
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(8 + 4 / 12, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro",
  15649. height: math.unit(200, "feet")
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(1, "mile")
  15654. },
  15655. {
  15656. name: "Gigamacro",
  15657. height: math.unit(1000, "miles")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Desta" },
  15663. {
  15664. front: {
  15665. height: math.unit(5 + 2 / 12, "feet"),
  15666. weight: math.unit(110, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/desta/front.svg",
  15670. extra: 1482 / 1417
  15671. }
  15672. },
  15673. side: {
  15674. height: math.unit(5 + 2 / 12, "feet"),
  15675. weight: math.unit(110, "lb"),
  15676. name: "Side",
  15677. image: {
  15678. source: "./media/characters/desta/side.svg",
  15679. extra: 2579 / 2491,
  15680. bottom: 0.053
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Micro",
  15687. height: math.unit(6, "inches")
  15688. },
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(5 + 2 / 12, "feet"),
  15692. default: true
  15693. },
  15694. {
  15695. name: "Macro",
  15696. height: math.unit(62, "feet")
  15697. },
  15698. {
  15699. name: "Megamacro",
  15700. height: math.unit(1800, "feet")
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Storm Alystar" },
  15706. {
  15707. front: {
  15708. height: math.unit(10, "feet"),
  15709. weight: math.unit(700, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/storm-alystar/front.svg",
  15713. extra: 2112 / 1898,
  15714. bottom: 0.034
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Micro",
  15721. height: math.unit(3.5, "inches")
  15722. },
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(10, "feet"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Macro",
  15730. height: math.unit(400, "feet")
  15731. },
  15732. {
  15733. name: "Deific",
  15734. height: math.unit(60, "miles")
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Ilia" },
  15740. {
  15741. front: {
  15742. height: math.unit(2.35, "meters"),
  15743. weight: math.unit(119, "kg"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/ilia/front.svg",
  15747. extra: 1285 / 1255,
  15748. bottom: 0.06
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(2.35, "meters")
  15756. },
  15757. {
  15758. name: "Macro",
  15759. height: math.unit(140, "meters"),
  15760. default: true
  15761. },
  15762. {
  15763. name: "Megamacro",
  15764. height: math.unit(100, "miles")
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "KingDead" },
  15770. {
  15771. front: {
  15772. height: math.unit(6 + 5 / 12, "feet"),
  15773. weight: math.unit(190, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/kingdead/front.svg",
  15777. extra: 1228 / 1177
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Micro",
  15784. height: math.unit(7, "inches")
  15785. },
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(6 + 5 / 12, "feet")
  15789. },
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(150, "feet"),
  15793. default: true
  15794. },
  15795. {
  15796. name: "Megamacro",
  15797. height: math.unit(200, "miles")
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Kyrehx" },
  15803. {
  15804. front: {
  15805. height: math.unit(8, "feet"),
  15806. weight: math.unit(600, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/kyrehx/front.svg",
  15810. extra: 1195 / 1095,
  15811. bottom: 0.034
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(2, "inches")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(8, "feet"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(255, "feet")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Xang" },
  15833. {
  15834. front: {
  15835. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15836. weight: math.unit(184, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/xang/front.svg",
  15840. extra: 845 / 755
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15848. default: true
  15849. },
  15850. {
  15851. name: "Macro",
  15852. height: math.unit(0.935 * 146, "feet")
  15853. },
  15854. {
  15855. name: "Megamacro",
  15856. height: math.unit(0.935 * 3, "miles")
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Doc Weardno" },
  15862. {
  15863. frontDressed: {
  15864. height: math.unit(5 + 7 / 12, "feet"),
  15865. weight: math.unit(140, "lb"),
  15866. name: "Front (Dressed)",
  15867. image: {
  15868. source: "./media/characters/doc-weardno/front-dressed.svg",
  15869. extra: 263 / 234
  15870. }
  15871. },
  15872. backDressed: {
  15873. height: math.unit(5 + 7 / 12, "feet"),
  15874. weight: math.unit(140, "lb"),
  15875. name: "Back (Dressed)",
  15876. image: {
  15877. source: "./media/characters/doc-weardno/back-dressed.svg",
  15878. extra: 266 / 238
  15879. }
  15880. },
  15881. front: {
  15882. height: math.unit(5 + 7 / 12, "feet"),
  15883. weight: math.unit(140, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/doc-weardno/front.svg",
  15887. extra: 254 / 233
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Micro",
  15894. height: math.unit(3, "inches")
  15895. },
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 7 / 12, "feet"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(25, "feet")
  15904. },
  15905. {
  15906. name: "Megamacro",
  15907. height: math.unit(2, "miles")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Seth Whilst" },
  15913. {
  15914. front: {
  15915. height: math.unit(6 + 2 / 12, "feet"),
  15916. weight: math.unit(153, "lb"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/seth-whilst/front.svg",
  15920. bottom: 0.07
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Micro",
  15927. height: math.unit(5, "inches")
  15928. },
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(6 + 2 / 12, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Pocket Jabari" },
  15938. {
  15939. front: {
  15940. height: math.unit(3, "inches"),
  15941. weight: math.unit(8, "grams"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/pocket-jabari/front.svg",
  15945. extra: 1024 / 974,
  15946. bottom: 0.039
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Minimicro",
  15953. height: math.unit(8, "mm")
  15954. },
  15955. {
  15956. name: "Micro",
  15957. height: math.unit(3, "inches"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(3, "feet")
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Sapphy" },
  15968. {
  15969. front: {
  15970. height: math.unit(15, "feet"),
  15971. weight: math.unit(3280, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/sapphy/front.svg",
  15975. extra: 671 / 577,
  15976. bottom: 0.085
  15977. }
  15978. },
  15979. back: {
  15980. height: math.unit(15, "feet"),
  15981. weight: math.unit(3280, "lb"),
  15982. name: "Back",
  15983. image: {
  15984. source: "./media/characters/sapphy/back.svg",
  15985. extra: 631 / 607,
  15986. bottom: 0.045
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(15, "feet")
  15994. },
  15995. {
  15996. name: "Casual Macro",
  15997. height: math.unit(120, "feet")
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(2150, "feet"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Megamacro",
  16006. height: math.unit(8, "miles")
  16007. },
  16008. {
  16009. name: "Galaxy Mom",
  16010. height: math.unit(6, "megalightyears")
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Kiro" },
  16016. {
  16017. front: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(170, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/kiro/front.svg",
  16023. extra: 1064 / 1012,
  16024. bottom: 0.052
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Micro",
  16031. height: math.unit(6, "inches")
  16032. },
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(6, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro",
  16040. height: math.unit(72, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Irishfox" },
  16046. {
  16047. front: {
  16048. height: math.unit(5 + 9 / 12, "feet"),
  16049. weight: math.unit(175, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/irishfox/front.svg",
  16053. extra: 1912 / 1680,
  16054. bottom: 0.02
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Nano",
  16061. height: math.unit(1, "mm")
  16062. },
  16063. {
  16064. name: "Micro",
  16065. height: math.unit(2, "inches")
  16066. },
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(5 + 9 / 12, "feet"),
  16070. default: true
  16071. },
  16072. {
  16073. name: "Macro",
  16074. height: math.unit(45, "feet")
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Aronai Sieyes" },
  16080. {
  16081. front: {
  16082. height: math.unit(6 + 1 / 12, "feet"),
  16083. weight: math.unit(150, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/aronai-sieyes/front.svg",
  16087. extra: 1556 / 1480,
  16088. bottom: 0.015
  16089. }
  16090. },
  16091. side: {
  16092. height: math.unit(6 + 1 / 12, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Side",
  16095. image: {
  16096. source: "./media/characters/aronai-sieyes/side.svg",
  16097. extra: 1433 / 1390,
  16098. bottom: 0.0393
  16099. }
  16100. },
  16101. back: {
  16102. height: math.unit(6 + 1 / 12, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Back",
  16105. image: {
  16106. source: "./media/characters/aronai-sieyes/back.svg",
  16107. extra: 1544 / 1494,
  16108. bottom: 0.02
  16109. }
  16110. },
  16111. frontClothed: {
  16112. height: math.unit(6 + 1 / 12, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Front (Clothed)",
  16115. image: {
  16116. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16117. extra: 1582 / 1527
  16118. }
  16119. },
  16120. feral: {
  16121. height: math.unit(18, "feet"),
  16122. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16123. name: "Feral",
  16124. image: {
  16125. source: "./media/characters/aronai-sieyes/feral.svg",
  16126. extra: 1530 / 1240,
  16127. bottom: 0.035
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Micro",
  16134. height: math.unit(2, "inches")
  16135. },
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6 + 1 / 12, "feet"),
  16139. default: true
  16140. }
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Xuna" },
  16145. {
  16146. front: {
  16147. height: math.unit(12, "feet"),
  16148. weight: math.unit(410, "kg"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/xuna/front.svg",
  16152. extra: 2184 / 1980
  16153. }
  16154. },
  16155. side: {
  16156. height: math.unit(12, "feet"),
  16157. weight: math.unit(410, "kg"),
  16158. name: "Side",
  16159. image: {
  16160. source: "./media/characters/xuna/side.svg",
  16161. extra: 2184 / 1980
  16162. }
  16163. },
  16164. back: {
  16165. height: math.unit(12, "feet"),
  16166. weight: math.unit(410, "kg"),
  16167. name: "Back",
  16168. image: {
  16169. source: "./media/characters/xuna/back.svg",
  16170. extra: 2184 / 1980
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Nano glow",
  16177. height: math.unit(10, "nm")
  16178. },
  16179. {
  16180. name: "Micro floof",
  16181. height: math.unit(0.3, "m")
  16182. },
  16183. {
  16184. name: "Huggable softy boi",
  16185. height: math.unit(3.6576, "m"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Admirable floof",
  16190. height: math.unit(80, "meters")
  16191. },
  16192. {
  16193. name: "Gentle macro",
  16194. height: math.unit(300, "meters")
  16195. },
  16196. {
  16197. name: "Very careful floof",
  16198. height: math.unit(3200, "meters")
  16199. },
  16200. {
  16201. name: "The mega floof",
  16202. height: math.unit(36000, "meters")
  16203. },
  16204. {
  16205. name: "Giga-fur-Wicker",
  16206. height: math.unit(4800000, "meters")
  16207. },
  16208. {
  16209. name: "Licky world",
  16210. height: math.unit(20000000, "meters")
  16211. },
  16212. {
  16213. name: "Floofy cyan sun",
  16214. height: math.unit(1500000000, "meters")
  16215. },
  16216. {
  16217. name: "Milky Wicker",
  16218. height: math.unit(1000000000000000000000, "meters")
  16219. },
  16220. {
  16221. name: "The observing Wicker",
  16222. height: math.unit(999999999999999999999999999, "meters")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Arokha Sieyes" },
  16228. {
  16229. front: {
  16230. height: math.unit(5 + 9 / 12, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/arokha-sieyes/front.svg",
  16235. extra: 1425 / 1284,
  16236. bottom: 0.05
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(5 + 9 / 12, "feet")
  16244. },
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(30, "meters"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Arokh Sieyes" },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(180, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/arokh-sieyes/front.svg",
  16261. extra: 1830 / 1769,
  16262. bottom: 0.01
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6, "feet")
  16270. },
  16271. {
  16272. name: "Macro",
  16273. height: math.unit(30, "meters"),
  16274. default: true
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Goldeneye" },
  16280. {
  16281. side: {
  16282. height: math.unit(13 + 1 / 12, "feet"),
  16283. weight: math.unit(8.5, "tonnes"),
  16284. name: "Side",
  16285. image: {
  16286. source: "./media/characters/goldeneye/side.svg",
  16287. extra: 1182 / 778,
  16288. bottom: 0.067
  16289. }
  16290. },
  16291. paw: {
  16292. height: math.unit(3.4, "feet"),
  16293. name: "Paw",
  16294. image: {
  16295. source: "./media/characters/goldeneye/paw.svg"
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(13 + 1 / 12, "feet"),
  16303. default: true
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Leonardo Lycheborne" },
  16309. {
  16310. front: {
  16311. height: math.unit(6 + 1 / 12, "feet"),
  16312. weight: math.unit(210, "lb"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/leonardo-lycheborne/front.svg",
  16316. extra: 390 / 365,
  16317. bottom: 0.032
  16318. }
  16319. },
  16320. side: {
  16321. height: math.unit(6 + 1 / 12, "feet"),
  16322. weight: math.unit(210, "lb"),
  16323. name: "Side",
  16324. image: {
  16325. source: "./media/characters/leonardo-lycheborne/side.svg",
  16326. extra: 390 / 365,
  16327. bottom: 0.005
  16328. }
  16329. },
  16330. back: {
  16331. height: math.unit(6 + 1 / 12, "feet"),
  16332. weight: math.unit(210, "lb"),
  16333. name: "Back",
  16334. image: {
  16335. source: "./media/characters/leonardo-lycheborne/back.svg",
  16336. extra: 392 / 366,
  16337. bottom: 0.01
  16338. }
  16339. },
  16340. hand: {
  16341. height: math.unit(1.08, "feet"),
  16342. name: "Hand",
  16343. image: {
  16344. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16345. }
  16346. },
  16347. foot: {
  16348. height: math.unit(1.32, "feet"),
  16349. name: "Foot",
  16350. image: {
  16351. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16352. }
  16353. },
  16354. were: {
  16355. height: math.unit(20, "feet"),
  16356. weight: math.unit(7800, "lb"),
  16357. name: "Were",
  16358. image: {
  16359. source: "./media/characters/leonardo-lycheborne/were.svg",
  16360. extra: 308 / 294,
  16361. bottom: 0.048
  16362. }
  16363. },
  16364. feral: {
  16365. height: math.unit(7.5, "feet"),
  16366. weight: math.unit(600, "lb"),
  16367. name: "Feral",
  16368. image: {
  16369. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16370. extra: 210 / 186,
  16371. bottom: 0.108
  16372. }
  16373. },
  16374. taur: {
  16375. height: math.unit(11, "feet"),
  16376. weight: math.unit(3300, "lb"),
  16377. name: "Taur",
  16378. image: {
  16379. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16380. extra: 320 / 303,
  16381. bottom: 0.025
  16382. }
  16383. },
  16384. barghest: {
  16385. height: math.unit(11, "feet"),
  16386. weight: math.unit(1300, "lb"),
  16387. name: "Barghest",
  16388. image: {
  16389. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16390. extra: 323 / 302,
  16391. bottom: 0.027
  16392. }
  16393. },
  16394. dick: {
  16395. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16396. name: "Dick",
  16397. image: {
  16398. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16399. }
  16400. },
  16401. dickWere: {
  16402. height: math.unit((20) / 3.8, "feet"),
  16403. name: "Dick (Were)",
  16404. image: {
  16405. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(6 + 1 / 12, "feet"),
  16413. default: true
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Jet" },
  16419. {
  16420. front: {
  16421. height: math.unit(10, "feet"),
  16422. weight: math.unit(350, "lb"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/jet/front.svg",
  16426. extra: 2050 / 1980,
  16427. bottom: 0.013
  16428. }
  16429. },
  16430. back: {
  16431. height: math.unit(10, "feet"),
  16432. weight: math.unit(350, "lb"),
  16433. name: "Back",
  16434. image: {
  16435. source: "./media/characters/jet/back.svg",
  16436. extra: 2050 / 1980,
  16437. bottom: 0.013
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Micro",
  16444. height: math.unit(6, "inches")
  16445. },
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(10, "feet"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(100, "feet")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Tanarath" },
  16459. {
  16460. front: {
  16461. height: math.unit(15, "feet"),
  16462. weight: math.unit(2800, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/tanarath/front.svg",
  16466. extra: 2392 / 2220,
  16467. bottom: 0.03
  16468. }
  16469. },
  16470. back: {
  16471. height: math.unit(15, "feet"),
  16472. weight: math.unit(2800, "lb"),
  16473. name: "Back",
  16474. image: {
  16475. source: "./media/characters/tanarath/back.svg",
  16476. extra: 2392 / 2220,
  16477. bottom: 0.03
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(15, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Patty CattyBatty" },
  16491. {
  16492. front: {
  16493. height: math.unit(7 + 1 / 12, "feet"),
  16494. weight: math.unit(175, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/patty-cattybatty/front.svg",
  16498. extra: 908 / 874,
  16499. bottom: 0.025
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Micro",
  16506. height: math.unit(1, "inch")
  16507. },
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(7 + 1 / 12, "feet")
  16511. },
  16512. {
  16513. name: "Mini Macro",
  16514. height: math.unit(155, "feet")
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(1077, "feet")
  16519. },
  16520. {
  16521. name: "Mega Macro",
  16522. height: math.unit(47650, "feet"),
  16523. default: true
  16524. },
  16525. {
  16526. name: "Giga Macro",
  16527. height: math.unit(440, "miles")
  16528. },
  16529. {
  16530. name: "Tera Macro",
  16531. height: math.unit(8700, "miles")
  16532. },
  16533. {
  16534. name: "Planetary Macro",
  16535. height: math.unit(32700, "miles")
  16536. },
  16537. {
  16538. name: "Solar Macro",
  16539. height: math.unit(550000, "miles")
  16540. },
  16541. {
  16542. name: "Celestial Macro",
  16543. height: math.unit(2.5, "AU")
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Cappu" },
  16549. {
  16550. front: {
  16551. height: math.unit(4 + 5 / 12, "feet"),
  16552. weight: math.unit(90, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/cappu/front.svg",
  16556. extra: 1247 / 1152,
  16557. bottom: 0.012
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(4 + 5 / 12, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Sebi" },
  16571. {
  16572. frontDressed: {
  16573. height: math.unit(70, "cm"),
  16574. weight: math.unit(6, "kg"),
  16575. name: "Front (Dressed)",
  16576. image: {
  16577. source: "./media/characters/sebi/front-dressed.svg",
  16578. extra: 713.5 / 686.5,
  16579. bottom: 0.003
  16580. }
  16581. },
  16582. front: {
  16583. height: math.unit(70, "cm"),
  16584. weight: math.unit(5, "kg"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/sebi/front.svg",
  16588. extra: 713.5 / 686.5,
  16589. bottom: 0.003
  16590. }
  16591. }
  16592. },
  16593. [
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(70, "cm"),
  16597. default: true
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(8, "meters")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Typhek" },
  16607. {
  16608. front: {
  16609. height: math.unit(6, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/typhek/front.svg",
  16614. extra: 1948 / 1929,
  16615. bottom: 0.025
  16616. }
  16617. },
  16618. side: {
  16619. height: math.unit(6, "feet"),
  16620. weight: math.unit(150, "lb"),
  16621. name: "Side",
  16622. image: {
  16623. source: "./media/characters/typhek/side.svg",
  16624. extra: 2034 / 2010,
  16625. bottom: 0.003
  16626. }
  16627. },
  16628. back: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(150, "lb"),
  16631. name: "Back",
  16632. image: {
  16633. source: "./media/characters/typhek/back.svg",
  16634. extra: 2005 / 1978,
  16635. bottom: 0.004
  16636. }
  16637. },
  16638. palm: {
  16639. height: math.unit(1.2, "feet"),
  16640. name: "Palm",
  16641. image: {
  16642. source: "./media/characters/typhek/palm.svg"
  16643. }
  16644. },
  16645. fist: {
  16646. height: math.unit(1.1, "feet"),
  16647. name: "Fist",
  16648. image: {
  16649. source: "./media/characters/typhek/fist.svg"
  16650. }
  16651. },
  16652. foot: {
  16653. height: math.unit(1.57, "feet"),
  16654. name: "Foot",
  16655. image: {
  16656. source: "./media/characters/typhek/foot.svg"
  16657. }
  16658. },
  16659. sole: {
  16660. height: math.unit(2.05, "feet"),
  16661. name: "Sole",
  16662. image: {
  16663. source: "./media/characters/typhek/sole.svg"
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(40, "stories"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Megamacro",
  16675. height: math.unit(1, "mile")
  16676. },
  16677. {
  16678. name: "Gigamacro",
  16679. height: math.unit(4000, "solarradii")
  16680. },
  16681. {
  16682. name: "Universal",
  16683. height: math.unit(1.1, "universes")
  16684. }
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Kassy" },
  16689. {
  16690. side: {
  16691. height: math.unit(5 + 7 / 12, "feet"),
  16692. weight: math.unit(150, "lb"),
  16693. name: "Side",
  16694. image: {
  16695. source: "./media/characters/kassy/side.svg",
  16696. extra: 1280 / 1225,
  16697. bottom: 0.002
  16698. }
  16699. },
  16700. front: {
  16701. height: math.unit(5 + 7 / 12, "feet"),
  16702. weight: math.unit(150, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/kassy/front.svg",
  16706. extra: 1280 / 1225,
  16707. bottom: 0.025
  16708. }
  16709. },
  16710. back: {
  16711. height: math.unit(5 + 7 / 12, "feet"),
  16712. weight: math.unit(150, "lb"),
  16713. name: "Back",
  16714. image: {
  16715. source: "./media/characters/kassy/back.svg",
  16716. extra: 1280 / 1225,
  16717. bottom: 0.002
  16718. }
  16719. },
  16720. foot: {
  16721. height: math.unit(1.266, "feet"),
  16722. name: "Foot",
  16723. image: {
  16724. source: "./media/characters/kassy/foot.svg"
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(5 + 7 / 12, "feet")
  16732. },
  16733. {
  16734. name: "Macro",
  16735. height: math.unit(137, "feet"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Megamacro",
  16740. height: math.unit(1, "mile")
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Neil" },
  16746. {
  16747. front: {
  16748. height: math.unit(6 + 1 / 12, "feet"),
  16749. weight: math.unit(200, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/neil/front.svg",
  16753. extra: 1326 / 1250,
  16754. bottom: 0.023
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(6 + 1 / 12, "feet"),
  16762. default: true
  16763. },
  16764. {
  16765. name: "Macro",
  16766. height: math.unit(200, "feet")
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Atticus" },
  16772. {
  16773. front: {
  16774. height: math.unit(5 + 9 / 12, "feet"),
  16775. weight: math.unit(190, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/atticus/front.svg",
  16779. extra: 2934 / 2785,
  16780. bottom: 0.025
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(5 + 9 / 12, "feet"),
  16788. default: true
  16789. },
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(180, "feet")
  16793. },
  16794. ]
  16795. ))
  16796. characterMakers.push(() => makeCharacter(
  16797. { name: "Milo" },
  16798. {
  16799. side: {
  16800. height: math.unit(9, "feet"),
  16801. weight: math.unit(650, "lb"),
  16802. name: "Side",
  16803. image: {
  16804. source: "./media/characters/milo/side.svg",
  16805. extra: 2644 / 2310,
  16806. bottom: 0.032
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(9, "feet"),
  16814. default: true
  16815. },
  16816. {
  16817. name: "Macro",
  16818. height: math.unit(300, "feet")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Ijzer" },
  16824. {
  16825. side: {
  16826. height: math.unit(8, "meters"),
  16827. weight: math.unit(90000, "kg"),
  16828. name: "Side",
  16829. image: {
  16830. source: "./media/characters/ijzer/side.svg",
  16831. extra: 2756 / 1600,
  16832. bottom: 0.01
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Small",
  16839. height: math.unit(3, "meters")
  16840. },
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(8, "meters"),
  16844. default: true
  16845. },
  16846. {
  16847. name: "Normal+",
  16848. height: math.unit(10, "meters")
  16849. },
  16850. {
  16851. name: "Bigger",
  16852. height: math.unit(24, "meters")
  16853. },
  16854. {
  16855. name: "Huge",
  16856. height: math.unit(80, "meters")
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Luca Cervicum" },
  16862. {
  16863. front: {
  16864. height: math.unit(6 + 2 / 12, "feet"),
  16865. weight: math.unit(153, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/luca-cervicum/front.svg",
  16869. extra: 370 / 327,
  16870. bottom: 0.015
  16871. }
  16872. },
  16873. back: {
  16874. height: math.unit(6 + 2 / 12, "feet"),
  16875. weight: math.unit(153, "lb"),
  16876. name: "Back",
  16877. image: {
  16878. source: "./media/characters/luca-cervicum/back.svg",
  16879. extra: 367 / 333,
  16880. bottom: 0.005
  16881. }
  16882. },
  16883. frontGear: {
  16884. height: math.unit(6 + 2 / 12, "feet"),
  16885. weight: math.unit(173, "lb"),
  16886. name: "Front (Gear)",
  16887. image: {
  16888. source: "./media/characters/luca-cervicum/front-gear.svg",
  16889. extra: 377 / 333,
  16890. bottom: 0.006
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(6 + 2 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Oliver" },
  16904. {
  16905. front: {
  16906. height: math.unit(6 + 1 / 12, "feet"),
  16907. weight: math.unit(304, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/oliver/front.svg",
  16911. extra: 157 / 143,
  16912. bottom: 0.08
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(6 + 1 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Shane" },
  16926. {
  16927. front: {
  16928. height: math.unit(5 + 7 / 12, "feet"),
  16929. weight: math.unit(140, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/shane/front.svg",
  16933. extra: 304 / 289,
  16934. bottom: 0.005
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(5 + 7 / 12, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Shin" },
  16948. {
  16949. front: {
  16950. height: math.unit(5 + 9 / 12, "feet"),
  16951. weight: math.unit(178, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/shin/front.svg",
  16955. extra: 159 / 151,
  16956. bottom: 0.015
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(5 + 9 / 12, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Xerxes" },
  16970. {
  16971. front: {
  16972. height: math.unit(5 + 10 / 12, "feet"),
  16973. weight: math.unit(168, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/xerxes/front.svg",
  16977. extra: 282 / 260,
  16978. bottom: 0.045
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(5 + 10 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Chaska" },
  16992. {
  16993. front: {
  16994. height: math.unit(6 + 7 / 12, "feet"),
  16995. weight: math.unit(208, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/chaska/front.svg",
  16999. extra: 332 / 319,
  17000. bottom: 0.015
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(6 + 7 / 12, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Enuk" },
  17014. {
  17015. front: {
  17016. height: math.unit(5 + 8 / 12, "feet"),
  17017. weight: math.unit(208, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/enuk/front.svg",
  17021. extra: 437 / 406,
  17022. bottom: 0.02
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(5 + 8 / 12, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Bruun" },
  17036. {
  17037. front: {
  17038. height: math.unit(5 + 10 / 12, "feet"),
  17039. weight: math.unit(252, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/bruun/front.svg",
  17043. extra: 197 / 187,
  17044. bottom: 0.012
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(5 + 10 / 12, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Alexeev" },
  17058. {
  17059. front: {
  17060. height: math.unit(6 + 10 / 12, "feet"),
  17061. weight: math.unit(255, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/alexeev/front.svg",
  17065. extra: 213 / 200,
  17066. bottom: 0.05
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(6 + 10 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Evelyn" },
  17080. {
  17081. front: {
  17082. height: math.unit(2 + 8 / 12, "feet"),
  17083. weight: math.unit(22, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/evelyn/front.svg",
  17087. extra: 208 / 180
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(2 + 8 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Inca" },
  17101. {
  17102. front: {
  17103. height: math.unit(5 + 9 / 12, "feet"),
  17104. weight: math.unit(139, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/inca/front.svg",
  17108. extra: 294 / 291,
  17109. bottom: 0.03
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(5 + 9 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Magdalene" },
  17123. {
  17124. front: {
  17125. height: math.unit(5 + 1 / 12, "feet"),
  17126. weight: math.unit(84, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/magdalene/front.svg",
  17130. extra: 293 / 273
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 1 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Mera" },
  17144. {
  17145. front: {
  17146. height: math.unit(6 + 3 / 12, "feet"),
  17147. weight: math.unit(185, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/mera/front.svg",
  17151. extra: 291 / 277,
  17152. bottom: 0.03
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(6 + 3 / 12, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Ceres" },
  17166. {
  17167. front: {
  17168. height: math.unit(6 + 7 / 12, "feet"),
  17169. weight: math.unit(160, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/ceres/front.svg",
  17173. extra: 1023 / 950,
  17174. bottom: 0.027
  17175. }
  17176. },
  17177. back: {
  17178. height: math.unit(6 + 7 / 12, "feet"),
  17179. weight: math.unit(160, "lb"),
  17180. name: "Back",
  17181. image: {
  17182. source: "./media/characters/ceres/back.svg",
  17183. extra: 1023 / 950
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(6 + 7 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Kris" },
  17197. {
  17198. front: {
  17199. height: math.unit(5 + 10 / 12, "feet"),
  17200. weight: math.unit(150, "lb"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/kris/front.svg",
  17204. extra: 885 / 803,
  17205. bottom: 0.03
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 10 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Taluthus" },
  17219. {
  17220. front: {
  17221. height: math.unit(7, "feet"),
  17222. weight: math.unit(120, "kg"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/taluthus/front.svg",
  17226. extra: 903 / 833,
  17227. bottom: 0.015
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(7, "feet"),
  17235. default: true
  17236. },
  17237. {
  17238. name: "Macro",
  17239. height: math.unit(300, "feet")
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Dawn" },
  17245. {
  17246. front: {
  17247. height: math.unit(5 + 9 / 12, "feet"),
  17248. weight: math.unit(145, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/dawn/front.svg",
  17252. extra: 2094 / 2016,
  17253. bottom: 0.025
  17254. }
  17255. },
  17256. back: {
  17257. height: math.unit(5 + 9 / 12, "feet"),
  17258. weight: math.unit(160, "lb"),
  17259. name: "Back",
  17260. image: {
  17261. source: "./media/characters/dawn/back.svg",
  17262. extra: 2112 / 2080,
  17263. bottom: 0.005
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(6 + 7 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Arador" },
  17277. {
  17278. anthro: {
  17279. height: math.unit(8 + 3 / 12, "feet"),
  17280. weight: math.unit(450, "lb"),
  17281. name: "Anthro",
  17282. image: {
  17283. source: "./media/characters/arador/anthro.svg",
  17284. extra: 1835 / 1718,
  17285. bottom: 0.025
  17286. }
  17287. },
  17288. feral: {
  17289. height: math.unit(4, "feet"),
  17290. weight: math.unit(200, "lb"),
  17291. name: "Feral",
  17292. image: {
  17293. source: "./media/characters/arador/feral.svg",
  17294. extra: 1683 / 1514,
  17295. bottom: 0.07
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(8 + 3 / 12, "feet")
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(82.5, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Dharsi" },
  17313. {
  17314. front: {
  17315. height: math.unit(5 + 10 / 12, "feet"),
  17316. weight: math.unit(125, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/dharsi/front.svg",
  17320. extra: 716 / 630,
  17321. bottom: 0.035
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Nano",
  17328. height: math.unit(100, "nm")
  17329. },
  17330. {
  17331. name: "Micro",
  17332. height: math.unit(2, "inches")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(5 + 10 / 12, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(1000, "feet")
  17342. },
  17343. {
  17344. name: "Megamacro",
  17345. height: math.unit(10, "miles")
  17346. },
  17347. {
  17348. name: "Gigamacro",
  17349. height: math.unit(3000, "miles")
  17350. },
  17351. {
  17352. name: "Teramacro",
  17353. height: math.unit(500000, "miles")
  17354. },
  17355. {
  17356. name: "Teramacro+",
  17357. height: math.unit(30, "galaxies")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Deathy" },
  17363. {
  17364. front: {
  17365. height: math.unit(6, "feet"),
  17366. weight: math.unit(150, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/deathy/front.svg",
  17370. extra: 1552 / 1463,
  17371. bottom: 0.025
  17372. }
  17373. },
  17374. side: {
  17375. height: math.unit(6, "feet"),
  17376. weight: math.unit(150, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/deathy/side.svg",
  17380. extra: 1604 / 1455,
  17381. bottom: 0.025
  17382. }
  17383. },
  17384. back: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(150, "lb"),
  17387. name: "Back",
  17388. image: {
  17389. source: "./media/characters/deathy/back.svg",
  17390. extra: 1580 / 1463,
  17391. bottom: 0.005
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Micro",
  17398. height: math.unit(5, "millimeters")
  17399. },
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(6 + 5 / 12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Juniper" },
  17409. {
  17410. front: {
  17411. height: math.unit(16, "feet"),
  17412. weight: math.unit(4000, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/juniper/front.svg",
  17416. bottom: 0.04
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(16, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Hipster" },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(150, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/hipster/front.svg",
  17437. extra: 1312 / 1209,
  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/hipster/back.svg",
  17447. extra: 1281 / 1196,
  17448. bottom: 0.01
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Micro",
  17455. height: math.unit(1, "mm")
  17456. },
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(4, "inches"),
  17460. default: true
  17461. },
  17462. {
  17463. name: "Macro",
  17464. height: math.unit(500, "feet")
  17465. },
  17466. {
  17467. name: "Megamacro",
  17468. height: math.unit(1000, "miles")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Tendirmuldr" },
  17474. {
  17475. front: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/tendirmuldr/front.svg",
  17481. extra: 1878 / 1772,
  17482. bottom: 0.015
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Megamacro",
  17489. height: math.unit(1500, "miles"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Mort" },
  17496. {
  17497. front: {
  17498. height: math.unit(14, "feet"),
  17499. weight: math.unit(12000, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/mort/front.svg",
  17503. extra: 365 / 318,
  17504. bottom: 0.01
  17505. }
  17506. },
  17507. side: {
  17508. height: math.unit(14, "feet"),
  17509. weight: math.unit(12000, "lb"),
  17510. name: "Side",
  17511. image: {
  17512. source: "./media/characters/mort/side.svg",
  17513. extra: 365 / 318,
  17514. bottom: 0.052
  17515. },
  17516. default: true
  17517. },
  17518. back: {
  17519. height: math.unit(14, "feet"),
  17520. weight: math.unit(12000, "lb"),
  17521. name: "Back",
  17522. image: {
  17523. source: "./media/characters/mort/back.svg",
  17524. extra: 371 / 332,
  17525. bottom: 0.18
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(14, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Lycoa" },
  17539. {
  17540. front: {
  17541. height: math.unit(8, "feet"),
  17542. weight: math.unit(1, "ton"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/lycoa/front.svg",
  17546. extra: 1875 / 1789,
  17547. bottom: 0.022
  17548. }
  17549. },
  17550. back: {
  17551. height: math.unit(8, "feet"),
  17552. weight: math.unit(1, "ton"),
  17553. name: "Back",
  17554. image: {
  17555. source: "./media/characters/lycoa/back.svg",
  17556. extra: 1835 / 1781,
  17557. bottom: 0.03
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(8, "feet"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(30, "feet")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Naldara" },
  17575. {
  17576. front: {
  17577. height: math.unit(4 + 2 / 12, "feet"),
  17578. weight: math.unit(70, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/naldara/front.svg",
  17582. extra: 841 / 720,
  17583. bottom: 0.04
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(4 + 2 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Briar" },
  17597. {
  17598. front: {
  17599. height: math.unit(13 + 7 / 12, "feet"),
  17600. weight: math.unit(1500, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/briar/front.svg",
  17604. extra: 626 / 596,
  17605. bottom: 0.08
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(13 + 7 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Vanguard" },
  17619. {
  17620. side: {
  17621. height: math.unit(10, "feet"),
  17622. weight: math.unit(500, "lb"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/vanguard/side.svg",
  17626. extra: 502 / 425,
  17627. bottom: 0.087
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(10, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Artemis" },
  17641. {
  17642. front: {
  17643. height: math.unit(7.5, "feet"),
  17644. weight: math.unit(2, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/artemis/front.svg",
  17648. extra: 1192 / 1075,
  17649. bottom: 0.07
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(7.5, "feet"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Enlarged",
  17661. height: math.unit(12, "feet")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Kira" },
  17667. {
  17668. front: {
  17669. height: math.unit(5 + 3 / 12, "feet"),
  17670. weight: math.unit(160, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/kira/front.svg",
  17674. extra: 906 / 786,
  17675. bottom: 0.01
  17676. }
  17677. },
  17678. back: {
  17679. height: math.unit(5 + 3 / 12, "feet"),
  17680. weight: math.unit(160, "lb"),
  17681. name: "Back",
  17682. image: {
  17683. source: "./media/characters/kira/back.svg",
  17684. extra: 882 / 757,
  17685. bottom: 0.005
  17686. }
  17687. },
  17688. frontDressed: {
  17689. height: math.unit(5 + 3 / 12, "feet"),
  17690. weight: math.unit(160, "lb"),
  17691. name: "Front (Dressed)",
  17692. image: {
  17693. source: "./media/characters/kira/front-dressed.svg",
  17694. extra: 906 / 786,
  17695. bottom: 0.01
  17696. }
  17697. },
  17698. beans: {
  17699. height: math.unit(0.92, "feet"),
  17700. name: "Beans",
  17701. image: {
  17702. source: "./media/characters/kira/beans.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 3 / 12, "feet"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Scramble" },
  17716. {
  17717. front: {
  17718. height: math.unit(5 + 4 / 12, "feet"),
  17719. weight: math.unit(145, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/scramble/front.svg",
  17723. extra: 763 / 727,
  17724. bottom: 0.05
  17725. }
  17726. },
  17727. back: {
  17728. height: math.unit(5 + 4 / 12, "feet"),
  17729. weight: math.unit(145, "lb"),
  17730. name: "Back",
  17731. image: {
  17732. source: "./media/characters/scramble/back.svg",
  17733. extra: 826 / 737,
  17734. bottom: 0.002
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(5 + 4 / 12, "feet"),
  17742. default: true
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Biscuit" },
  17748. {
  17749. side: {
  17750. height: math.unit(6 + 2 / 12, "feet"),
  17751. weight: math.unit(190, "lb"),
  17752. name: "Side",
  17753. image: {
  17754. source: "./media/characters/biscuit/side.svg",
  17755. extra: 858 / 791,
  17756. bottom: 0.044
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(6 + 2 / 12, "feet"),
  17764. default: true
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Poffin" },
  17770. {
  17771. front: {
  17772. height: math.unit(5 + 2 / 12, "feet"),
  17773. weight: math.unit(120, "lb"),
  17774. name: "Front",
  17775. image: {
  17776. source: "./media/characters/poffin/front.svg",
  17777. extra: 786 / 680,
  17778. bottom: 0.005
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(5 + 2 / 12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Dhari" },
  17792. {
  17793. front: {
  17794. height: math.unit(6 + 3 / 12, "feet"),
  17795. weight: math.unit(519, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/dhari/front.svg",
  17799. extra: 1048 / 946,
  17800. bottom: 0.015
  17801. }
  17802. },
  17803. back: {
  17804. height: math.unit(6 + 3 / 12, "feet"),
  17805. weight: math.unit(519, "lb"),
  17806. name: "Back",
  17807. image: {
  17808. source: "./media/characters/dhari/back.svg",
  17809. extra: 1048 / 931,
  17810. bottom: 0.005
  17811. }
  17812. },
  17813. frontDressed: {
  17814. height: math.unit(6 + 3 / 12, "feet"),
  17815. weight: math.unit(519, "lb"),
  17816. name: "Front (Dressed)",
  17817. image: {
  17818. source: "./media/characters/dhari/front-dressed.svg",
  17819. extra: 1713 / 1546,
  17820. bottom: 0.02
  17821. }
  17822. },
  17823. backDressed: {
  17824. height: math.unit(6 + 3 / 12, "feet"),
  17825. weight: math.unit(519, "lb"),
  17826. name: "Back (Dressed)",
  17827. image: {
  17828. source: "./media/characters/dhari/back-dressed.svg",
  17829. extra: 1699 / 1537,
  17830. bottom: 0.01
  17831. }
  17832. },
  17833. maw: {
  17834. height: math.unit(0.95, "feet"),
  17835. name: "Maw",
  17836. image: {
  17837. source: "./media/characters/dhari/maw.svg"
  17838. }
  17839. },
  17840. wereFront: {
  17841. height: math.unit(12 + 8 / 12, "feet"),
  17842. weight: math.unit(4000, "lb"),
  17843. name: "Front (Were)",
  17844. image: {
  17845. source: "./media/characters/dhari/were-front.svg",
  17846. extra: 1065 / 969,
  17847. bottom: 0.015
  17848. }
  17849. },
  17850. wereBack: {
  17851. height: math.unit(12 + 8 / 12, "feet"),
  17852. weight: math.unit(4000, "lb"),
  17853. name: "Back (Were)",
  17854. image: {
  17855. source: "./media/characters/dhari/were-back.svg",
  17856. extra: 1065 / 969,
  17857. bottom: 0.012
  17858. }
  17859. },
  17860. wereMaw: {
  17861. height: math.unit(0.625, "meters"),
  17862. name: "Maw (Were)",
  17863. image: {
  17864. source: "./media/characters/dhari/were-maw.svg"
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(6 + 3 / 12, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Rena Dyne" },
  17878. {
  17879. anthro: {
  17880. height: math.unit(5 + 7 / 12, "feet"),
  17881. weight: math.unit(175, "lb"),
  17882. name: "Anthro",
  17883. image: {
  17884. source: "./media/characters/rena-dyne/anthro.svg",
  17885. extra: 1849 / 1785,
  17886. bottom: 0.005
  17887. }
  17888. },
  17889. taur: {
  17890. height: math.unit(15 + 6 / 12, "feet"),
  17891. weight: math.unit(8000, "lb"),
  17892. name: "Taur",
  17893. image: {
  17894. source: "./media/characters/rena-dyne/taur.svg",
  17895. extra: 2315 / 2234,
  17896. bottom: 0.033
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(5 + 7 / 12, "feet"),
  17904. default: true
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Weremeep" },
  17910. {
  17911. front: {
  17912. height: math.unit(8, "feet"),
  17913. weight: math.unit(600, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/weremeep/front.svg",
  17917. extra: 967 / 862,
  17918. bottom: 0.01
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(8, "feet"),
  17926. default: true
  17927. },
  17928. {
  17929. name: "Lorg",
  17930. height: math.unit(12, "feet")
  17931. },
  17932. {
  17933. name: "Oh Lawd She Comin'",
  17934. height: math.unit(20, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Reza" },
  17940. {
  17941. front: {
  17942. height: math.unit(4, "feet"),
  17943. weight: math.unit(90, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/reza/front.svg",
  17947. extra: 1183 / 1111,
  17948. bottom: 0.017
  17949. }
  17950. },
  17951. back: {
  17952. height: math.unit(4, "feet"),
  17953. weight: math.unit(90, "lb"),
  17954. name: "Back",
  17955. image: {
  17956. source: "./media/characters/reza/back.svg",
  17957. extra: 1183 / 1111,
  17958. bottom: 0.01
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(4, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Athea" },
  17972. {
  17973. side: {
  17974. height: math.unit(15, "feet"),
  17975. weight: math.unit(14, "tons"),
  17976. name: "Side",
  17977. image: {
  17978. source: "./media/characters/athea/side.svg",
  17979. extra: 960 / 540,
  17980. bottom: 0.003
  17981. }
  17982. },
  17983. sitting: {
  17984. height: math.unit(6 * 2.85, "feet"),
  17985. weight: math.unit(14, "tons"),
  17986. name: "Sitting",
  17987. image: {
  17988. source: "./media/characters/athea/sitting.svg",
  17989. extra: 621 / 581,
  17990. bottom: 0.075
  17991. }
  17992. },
  17993. maw: {
  17994. height: math.unit(7.59498031496063, "feet"),
  17995. name: "Maw",
  17996. image: {
  17997. source: "./media/characters/athea/maw.svg"
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Lap Cat",
  18004. height: math.unit(2.5, "feet")
  18005. },
  18006. {
  18007. name: "Minimacro",
  18008. height: math.unit(15, "feet"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Macro",
  18013. height: math.unit(120, "feet")
  18014. },
  18015. {
  18016. name: "Macro+",
  18017. height: math.unit(640, "feet")
  18018. },
  18019. {
  18020. name: "Colossus",
  18021. height: math.unit(2.2, "miles")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Seroko" },
  18027. {
  18028. front: {
  18029. height: math.unit(8 + 8 / 12, "feet"),
  18030. weight: math.unit(130, "kg"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/seroko/front.svg",
  18034. extra: 1385 / 1280,
  18035. bottom: 0.025
  18036. }
  18037. },
  18038. back: {
  18039. height: math.unit(8 + 8 / 12, "feet"),
  18040. weight: math.unit(130, "kg"),
  18041. name: "Back",
  18042. image: {
  18043. source: "./media/characters/seroko/back.svg",
  18044. extra: 1369 / 1238,
  18045. bottom: 0.018
  18046. }
  18047. },
  18048. frontDressed: {
  18049. height: math.unit(8 + 8 / 12, "feet"),
  18050. weight: math.unit(130, "kg"),
  18051. name: "Front (Dressed)",
  18052. image: {
  18053. source: "./media/characters/seroko/front-dressed.svg",
  18054. extra: 1366 / 1275,
  18055. bottom: 0.03
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(8 + 8 / 12, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Quatzi" },
  18069. {
  18070. front: {
  18071. height: math.unit(5.5, "feet"),
  18072. weight: math.unit(160, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/quatzi/front.svg",
  18076. extra: 2346 / 2242,
  18077. bottom: 0.015
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(5.5, "feet"),
  18085. default: true
  18086. },
  18087. {
  18088. name: "Big",
  18089. height: math.unit(7.7, "feet")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Sen" },
  18095. {
  18096. front: {
  18097. height: math.unit(5 + 11 / 12, "feet"),
  18098. weight: math.unit(180, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/sen/front.svg",
  18102. extra: 1321 / 1254,
  18103. bottom: 0.015
  18104. }
  18105. },
  18106. side: {
  18107. height: math.unit(5 + 11 / 12, "feet"),
  18108. weight: math.unit(180, "lb"),
  18109. name: "Side",
  18110. image: {
  18111. source: "./media/characters/sen/side.svg",
  18112. extra: 1321 / 1254,
  18113. bottom: 0.007
  18114. }
  18115. },
  18116. back: {
  18117. height: math.unit(5 + 11 / 12, "feet"),
  18118. weight: math.unit(180, "lb"),
  18119. name: "Back",
  18120. image: {
  18121. source: "./media/characters/sen/back.svg",
  18122. extra: 1321 / 1254
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(5 + 11 / 12, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Fruity" },
  18136. {
  18137. front: {
  18138. height: math.unit(166.6, "cm"),
  18139. weight: math.unit(66.6, "kg"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/fruity/front.svg",
  18143. extra: 1510 / 1386,
  18144. bottom: 0.04
  18145. }
  18146. },
  18147. back: {
  18148. height: math.unit(166.6, "cm"),
  18149. weight: math.unit(66.6, "lb"),
  18150. name: "Back",
  18151. image: {
  18152. source: "./media/characters/fruity/back.svg",
  18153. extra: 1563 / 1435,
  18154. bottom: 0.005
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(166.6, "cm"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Demonic",
  18166. height: math.unit(166.6, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Zost" },
  18172. {
  18173. side: {
  18174. height: math.unit(10, "feet"),
  18175. weight: math.unit(500, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/zost/side.svg",
  18179. extra: 966 / 880,
  18180. bottom: 0.075
  18181. }
  18182. },
  18183. mawFront: {
  18184. height: math.unit(1.08, "meters"),
  18185. name: "Maw (Front)",
  18186. image: {
  18187. source: "./media/characters/zost/maw-front.svg"
  18188. }
  18189. },
  18190. mawSide: {
  18191. height: math.unit(2.66, "feet"),
  18192. name: "Maw (Side)",
  18193. image: {
  18194. source: "./media/characters/zost/maw-side.svg"
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(10, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Luci" },
  18208. {
  18209. front: {
  18210. height: math.unit(5 + 4 / 12, "feet"),
  18211. weight: math.unit(120, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/luci/front.svg",
  18215. extra: 1985 / 1884,
  18216. bottom: 0.04
  18217. }
  18218. },
  18219. back: {
  18220. height: math.unit(5 + 4 / 12, "feet"),
  18221. weight: math.unit(120, "lb"),
  18222. name: "Back",
  18223. image: {
  18224. source: "./media/characters/luci/back.svg",
  18225. extra: 1892 / 1791,
  18226. bottom: 0.002
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(5 + 4 / 12, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "2th" },
  18240. {
  18241. front: {
  18242. height: math.unit(1500, "feet"),
  18243. weight: math.unit(3.8e6, "tons"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/2th/front.svg",
  18247. extra: 3489 / 3350,
  18248. bottom: 0.1
  18249. }
  18250. },
  18251. foot: {
  18252. height: math.unit(461, "feet"),
  18253. name: "Foot",
  18254. image: {
  18255. source: "./media/characters/2th/foot.svg"
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "\"Micro\"",
  18262. height: math.unit(15 + 7 / 12, "feet")
  18263. },
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(1500, "feet"),
  18267. default: true
  18268. },
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(5000, "feet")
  18272. },
  18273. {
  18274. name: "Megamacro",
  18275. height: math.unit(15, "miles")
  18276. },
  18277. {
  18278. name: "Gigamacro",
  18279. height: math.unit(4000, "miles")
  18280. },
  18281. {
  18282. name: "Galactic",
  18283. height: math.unit(50, "AU")
  18284. },
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "Amethyst" },
  18289. {
  18290. front: {
  18291. height: math.unit(5 + 6 / 12, "feet"),
  18292. weight: math.unit(220, "lb"),
  18293. name: "Front",
  18294. image: {
  18295. source: "./media/characters/amethyst/front.svg",
  18296. extra: 2078 / 2040,
  18297. bottom: 0.045
  18298. }
  18299. },
  18300. back: {
  18301. height: math.unit(5 + 6 / 12, "feet"),
  18302. weight: math.unit(220, "lb"),
  18303. name: "Back",
  18304. image: {
  18305. source: "./media/characters/amethyst/back.svg",
  18306. extra: 2021 / 1989,
  18307. bottom: 0.02
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(5 + 6 / 12, "feet"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Yumi Akiyama" },
  18321. {
  18322. front: {
  18323. height: math.unit(4 + 11 / 12, "feet"),
  18324. weight: math.unit(120, "lb"),
  18325. name: "Front",
  18326. image: {
  18327. source: "./media/characters/yumi-akiyama/front.svg",
  18328. extra: 1327 / 1235,
  18329. bottom: 0.02
  18330. }
  18331. },
  18332. back: {
  18333. height: math.unit(4 + 11 / 12, "feet"),
  18334. weight: math.unit(120, "lb"),
  18335. name: "Back",
  18336. image: {
  18337. source: "./media/characters/yumi-akiyama/back.svg",
  18338. extra: 1287 / 1245,
  18339. bottom: 0.002
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Galactic",
  18346. height: math.unit(50, "galaxies"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Universal",
  18351. height: math.unit(100, "universes")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Rifter Yrmori" },
  18357. {
  18358. front: {
  18359. height: math.unit(8, "feet"),
  18360. weight: math.unit(500, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/rifter-yrmori/front.svg",
  18364. extra: 1180 / 1125,
  18365. bottom: 0.02
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(8, "feet"),
  18370. weight: math.unit(500, "lb"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/rifter-yrmori/back.svg",
  18374. extra: 1190 / 1145,
  18375. bottom: 0.001
  18376. }
  18377. },
  18378. wings: {
  18379. height: math.unit(7.75, "feet"),
  18380. weight: math.unit(500, "lb"),
  18381. name: "Wings",
  18382. image: {
  18383. source: "./media/characters/rifter-yrmori/wings.svg",
  18384. extra: 1357 / 1285
  18385. }
  18386. },
  18387. maw: {
  18388. height: math.unit(0.8, "feet"),
  18389. name: "Maw",
  18390. image: {
  18391. source: "./media/characters/rifter-yrmori/maw.svg"
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(8, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Macro",
  18403. height: math.unit(42, "meters")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Tahajin" },
  18409. {
  18410. were: {
  18411. height: math.unit(25 + 6 / 12, "feet"),
  18412. weight: math.unit(10000, "lb"),
  18413. name: "Were",
  18414. image: {
  18415. source: "./media/characters/tahajin/were.svg",
  18416. extra: 801 / 770,
  18417. bottom: 0.042
  18418. }
  18419. },
  18420. aquatic: {
  18421. height: math.unit(6 + 4 / 12, "feet"),
  18422. weight: math.unit(160, "lb"),
  18423. name: "Aquatic",
  18424. image: {
  18425. source: "./media/characters/tahajin/aquatic.svg",
  18426. extra: 572 / 542,
  18427. bottom: 0.04
  18428. }
  18429. },
  18430. chow: {
  18431. height: math.unit(8 + 11 / 12, "feet"),
  18432. weight: math.unit(450, "lb"),
  18433. name: "Chow",
  18434. image: {
  18435. source: "./media/characters/tahajin/chow.svg",
  18436. extra: 660 / 640,
  18437. bottom: 0.015
  18438. }
  18439. },
  18440. demiNaga: {
  18441. height: math.unit(6 + 8 / 12, "feet"),
  18442. weight: math.unit(300, "lb"),
  18443. name: "Demi Naga",
  18444. image: {
  18445. source: "./media/characters/tahajin/demi-naga.svg",
  18446. extra: 643 / 615,
  18447. bottom: 0.1
  18448. }
  18449. },
  18450. data: {
  18451. height: math.unit(5, "inches"),
  18452. weight: math.unit(0.1, "lb"),
  18453. name: "Data",
  18454. image: {
  18455. source: "./media/characters/tahajin/data.svg"
  18456. }
  18457. },
  18458. fluu: {
  18459. height: math.unit(5 + 7 / 12, "feet"),
  18460. weight: math.unit(140, "lb"),
  18461. name: "Fluu",
  18462. image: {
  18463. source: "./media/characters/tahajin/fluu.svg",
  18464. extra: 628 / 592,
  18465. bottom: 0.02
  18466. }
  18467. },
  18468. starWarrior: {
  18469. height: math.unit(4 + 5 / 12, "feet"),
  18470. weight: math.unit(50, "lb"),
  18471. name: "Star Warrior",
  18472. image: {
  18473. source: "./media/characters/tahajin/star-warrior.svg"
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(25 + 6 / 12, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Gabira" },
  18487. {
  18488. front: {
  18489. height: math.unit(8, "feet"),
  18490. weight: math.unit(350, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/gabira/front.svg",
  18494. extra: 608 / 580,
  18495. bottom: 0.03
  18496. }
  18497. },
  18498. back: {
  18499. height: math.unit(8, "feet"),
  18500. weight: math.unit(350, "lb"),
  18501. name: "Back",
  18502. image: {
  18503. source: "./media/characters/gabira/back.svg",
  18504. extra: 608 / 580,
  18505. bottom: 0.03
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(8, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Sasha Katraine" },
  18519. {
  18520. front: {
  18521. height: math.unit(5 + 3 / 12, "feet"),
  18522. weight: math.unit(137, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/sasha-katraine/front.svg",
  18526. bottom: 0.045
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Micro",
  18533. height: math.unit(5, "inches")
  18534. },
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(5 + 3 / 12, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Der" },
  18544. {
  18545. side: {
  18546. height: math.unit(4, "inches"),
  18547. weight: math.unit(200, "grams"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/der/side.svg",
  18551. extra: 719 / 400,
  18552. bottom: 30.6 / 749.9187
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Micro",
  18559. height: math.unit(4, "inches"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Fixerdragon" },
  18566. {
  18567. side: {
  18568. height: math.unit(30, "meters"),
  18569. weight: math.unit(700, "tonnes"),
  18570. name: "Side",
  18571. image: {
  18572. source: "./media/characters/fixerdragon/side.svg",
  18573. extra: (1293.0514 - 116.03) / 1106.86,
  18574. bottom: 116.03 / 1293.0514
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Planck",
  18581. height: math.unit(1.6e-35, "meters")
  18582. },
  18583. {
  18584. name: "Micro",
  18585. height: math.unit(0.4, "meters")
  18586. },
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(30, "meters"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Megamacro",
  18594. height: math.unit(1.2, "megameters")
  18595. },
  18596. {
  18597. name: "Teramacro",
  18598. height: math.unit(130, "terameters")
  18599. },
  18600. {
  18601. name: "Yottamacro",
  18602. height: math.unit(6200, "yottameters")
  18603. },
  18604. ]
  18605. ));
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Kite" },
  18608. {
  18609. front: {
  18610. height: math.unit(8, "feet"),
  18611. weight: math.unit(250, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/kite/front.svg",
  18615. extra: 2796 / 2659,
  18616. bottom: 0.002
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(8, "feet"),
  18624. default: true
  18625. },
  18626. {
  18627. name: "Macro",
  18628. height: math.unit(360, "feet")
  18629. },
  18630. {
  18631. name: "Megamacro",
  18632. height: math.unit(1500, "feet")
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Poojawa Vynar" },
  18638. {
  18639. front: {
  18640. height: math.unit(5 + 10 / 12, "feet"),
  18641. weight: math.unit(150, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/poojawa-vynar/front.svg",
  18645. extra: (1506.1547 - 55) / 1356.6,
  18646. bottom: 55 / 1506.1547
  18647. }
  18648. },
  18649. frontTailless: {
  18650. height: math.unit(5 + 10 / 12, "feet"),
  18651. weight: math.unit(150, "lb"),
  18652. name: "Front (Tailless)",
  18653. image: {
  18654. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18655. extra: (1506.1547 - 55) / 1356.6,
  18656. bottom: 55 / 1506.1547
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(5 + 10 / 12, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Violette" },
  18670. {
  18671. front: {
  18672. height: math.unit(293, "meters"),
  18673. weight: math.unit(70400, "tons"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/violette/front.svg",
  18677. extra: 1227 / 1180,
  18678. bottom: 0.005
  18679. }
  18680. },
  18681. back: {
  18682. height: math.unit(293, "meters"),
  18683. weight: math.unit(70400, "tons"),
  18684. name: "Back",
  18685. image: {
  18686. source: "./media/characters/violette/back.svg",
  18687. extra: 1227 / 1180,
  18688. bottom: 0.005
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Macro",
  18695. height: math.unit(293, "meters"),
  18696. default: true
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Alessandra" },
  18702. {
  18703. front: {
  18704. height: math.unit(1050, "feet"),
  18705. weight: math.unit(200000, "tons"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/alessandra/front.svg",
  18709. extra: 960 / 912,
  18710. bottom: 0.06
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(1050, "feet")
  18718. },
  18719. {
  18720. name: "Macro+",
  18721. height: math.unit(900, "meters"),
  18722. default: true
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Person", species: "Catdragon" },
  18728. {
  18729. front: {
  18730. height: math.unit(5, "feet"),
  18731. weight: math.unit(187, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/person/front.svg",
  18735. extra: 3087 / 2945,
  18736. bottom: 91 / 3181
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Micro",
  18743. height: math.unit(3, "inches")
  18744. },
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(5, "feet"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Macro",
  18752. height: math.unit(90, "feet")
  18753. },
  18754. {
  18755. name: "Max Size",
  18756. height: math.unit(280, "feet")
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Ty" },
  18762. {
  18763. front: {
  18764. height: math.unit(4.5, "meters"),
  18765. weight: math.unit(3200, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/ty/front.svg",
  18769. extra: 1038 / 960,
  18770. bottom: 31.156 / 1068
  18771. }
  18772. },
  18773. back: {
  18774. height: math.unit(4.5, "meters"),
  18775. weight: math.unit(3200, "lb"),
  18776. name: "Back",
  18777. image: {
  18778. source: "./media/characters/ty/back.svg",
  18779. extra: 1044 / 966,
  18780. bottom: 7.48 / 1049
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(4.5, "meters"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Rocky" },
  18794. {
  18795. front: {
  18796. height: math.unit(5 + 4 / 12, "feet"),
  18797. weight: math.unit(115, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/rocky/front.svg",
  18801. extra: 1012 / 975,
  18802. bottom: 54 / 1066
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(5 + 4 / 12, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Ruin" },
  18816. {
  18817. upright: {
  18818. height: math.unit(6, "meters"),
  18819. weight: math.unit(4000, "kg"),
  18820. name: "Upright",
  18821. image: {
  18822. source: "./media/characters/ruin/upright.svg",
  18823. extra: 668 / 661,
  18824. bottom: 42 / 799.8396
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(6, "meters"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Robin" },
  18838. {
  18839. front: {
  18840. height: math.unit(5, "feet"),
  18841. weight: math.unit(106, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/robin/front.svg",
  18845. extra: 862 / 799,
  18846. bottom: 42.4 / 914.8856
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(5, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Saian" },
  18860. {
  18861. side: {
  18862. height: math.unit(3, "feet"),
  18863. weight: math.unit(225, "lb"),
  18864. name: "Side",
  18865. image: {
  18866. source: "./media/characters/saian/side.svg",
  18867. extra: 566 / 356,
  18868. bottom: 79.7 / 643
  18869. }
  18870. },
  18871. maw: {
  18872. height: math.unit(2.85, "feet"),
  18873. name: "Maw",
  18874. image: {
  18875. source: "./media/characters/saian/maw.svg"
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(3, "feet"),
  18883. default: true
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Equus Silvermane" },
  18889. {
  18890. side: {
  18891. height: math.unit(8, "feet"),
  18892. weight: math.unit(300, "lb"),
  18893. name: "Side",
  18894. image: {
  18895. source: "./media/characters/equus-silvermane/side.svg",
  18896. extra: 2176 / 2050,
  18897. bottom: 65.7 / 2245
  18898. }
  18899. },
  18900. front: {
  18901. height: math.unit(8, "feet"),
  18902. weight: math.unit(300, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/equus-silvermane/front.svg",
  18906. extra: 4633 / 4400,
  18907. bottom: 71.3 / 4706.915
  18908. }
  18909. },
  18910. sideStepping: {
  18911. height: math.unit(8, "feet"),
  18912. weight: math.unit(300, "lb"),
  18913. name: "Side (Stepping)",
  18914. image: {
  18915. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18916. extra: 1968 / 1860,
  18917. bottom: 16.4 / 1989
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(8, "feet")
  18925. },
  18926. {
  18927. name: "Minimacro",
  18928. height: math.unit(75, "feet"),
  18929. default: true
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(150, "feet")
  18934. },
  18935. {
  18936. name: "Macro+",
  18937. height: math.unit(1000, "feet")
  18938. },
  18939. {
  18940. name: "Megamacro",
  18941. height: math.unit(1, "mile")
  18942. },
  18943. ]
  18944. ))
  18945. characterMakers.push(() => makeCharacter(
  18946. { name: "Windar" },
  18947. {
  18948. side: {
  18949. height: math.unit(20, "feet"),
  18950. weight: math.unit(30000, "kg"),
  18951. name: "Side",
  18952. image: {
  18953. source: "./media/characters/windar/side.svg",
  18954. extra: 1491 / 1248,
  18955. bottom: 82.56 / 1568
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Normal",
  18962. height: math.unit(20, "feet"),
  18963. default: true
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Melody" },
  18969. {
  18970. side: {
  18971. height: math.unit(15.66, "feet"),
  18972. weight: math.unit(150, "lb"),
  18973. name: "Side",
  18974. image: {
  18975. source: "./media/characters/melody/side.svg",
  18976. extra: 1097 / 944,
  18977. bottom: 11.8 / 1109
  18978. }
  18979. },
  18980. sideOutfit: {
  18981. height: math.unit(15.66, "feet"),
  18982. weight: math.unit(150, "lb"),
  18983. name: "Side (Outfit)",
  18984. image: {
  18985. source: "./media/characters/melody/side-outfit.svg",
  18986. extra: 1097 / 944,
  18987. bottom: 11.8 / 1109
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Normal",
  18994. height: math.unit(15.66, "feet"),
  18995. default: true
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Windera" },
  19001. {
  19002. front: {
  19003. height: math.unit(8, "feet"),
  19004. weight: math.unit(325, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/windera/front.svg",
  19008. extra: 3180 / 2845,
  19009. bottom: 178 / 3365
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(8, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Sonear" },
  19023. {
  19024. front: {
  19025. height: math.unit(28.75, "feet"),
  19026. weight: math.unit(2000, "kg"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/sonear/front.svg",
  19030. extra: 1041.1 / 964.9,
  19031. bottom: 53.7 / 1096.6
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(28.75, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Kanara" },
  19045. {
  19046. side: {
  19047. height: math.unit(25.5, "feet"),
  19048. weight: math.unit(23000, "kg"),
  19049. name: "Side",
  19050. image: {
  19051. source: "./media/characters/kanara/side.svg"
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(25.5, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Ereus" },
  19065. {
  19066. side: {
  19067. height: math.unit(10, "feet"),
  19068. weight: math.unit(1000, "kg"),
  19069. name: "Side",
  19070. image: {
  19071. source: "./media/characters/ereus/side.svg",
  19072. extra: 1157 / 959,
  19073. bottom: 153 / 1312.5
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(10, "feet"),
  19081. default: true
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "E-ter" },
  19087. {
  19088. side: {
  19089. height: math.unit(4.5, "feet"),
  19090. weight: math.unit(500, "lb"),
  19091. name: "Side",
  19092. image: {
  19093. source: "./media/characters/e-ter/side.svg",
  19094. extra: 1550 / 1248,
  19095. bottom: 146 / 1694
  19096. }
  19097. },
  19098. },
  19099. [
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(4.5, "feet"),
  19103. default: true
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Yamie" },
  19109. {
  19110. side: {
  19111. height: math.unit(9.7, "feet"),
  19112. weight: math.unit(4000, "kg"),
  19113. name: "Side",
  19114. image: {
  19115. source: "./media/characters/yamie/side.svg"
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(9.7, "feet"),
  19123. default: true
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Anders" },
  19129. {
  19130. front: {
  19131. height: math.unit(50, "feet"),
  19132. weight: math.unit(50000, "kg"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/anders/front.svg",
  19136. extra: 570 / 539,
  19137. bottom: 14.7 / 586.7
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Large",
  19144. height: math.unit(50, "feet")
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(2000, "feet"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Megamacro",
  19153. height: math.unit(12, "miles")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Reban" },
  19159. {
  19160. front: {
  19161. height: math.unit(7 + 2 / 12, "feet"),
  19162. weight: math.unit(300, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/reban/front.svg",
  19166. extra: 516 / 487,
  19167. bottom: 42.82 / 558.356
  19168. }
  19169. },
  19170. dick: {
  19171. height: math.unit(7 / 5, "feet"),
  19172. name: "Dick",
  19173. image: {
  19174. source: "./media/characters/reban/dick.svg"
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Natural Height",
  19181. height: math.unit(7 + 2 / 12, "feet")
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(500, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Canon Height",
  19190. height: math.unit(50, "AU")
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Terrance Keayes" },
  19196. {
  19197. front: {
  19198. height: math.unit(6, "feet"),
  19199. weight: math.unit(150, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/terrance-keayes/front.svg",
  19203. extra: 1.005,
  19204. bottom: 151 / 1615
  19205. }
  19206. },
  19207. side: {
  19208. height: math.unit(6, "feet"),
  19209. weight: math.unit(150, "lb"),
  19210. name: "Side",
  19211. image: {
  19212. source: "./media/characters/terrance-keayes/side.svg",
  19213. extra: 1.005,
  19214. bottom: 129.4 / 1544
  19215. }
  19216. },
  19217. back: {
  19218. height: math.unit(6, "feet"),
  19219. weight: math.unit(150, "lb"),
  19220. name: "Back",
  19221. image: {
  19222. source: "./media/characters/terrance-keayes/back.svg",
  19223. extra: 1.005,
  19224. bottom: 58.4 / 1557.3
  19225. }
  19226. },
  19227. dick: {
  19228. height: math.unit(6 * 0.208, "feet"),
  19229. name: "Dick",
  19230. image: {
  19231. source: "./media/characters/terrance-keayes/dick.svg"
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Canon Height",
  19238. height: math.unit(35, "miles"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Ofelia" },
  19245. {
  19246. front: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/ofelia/front.svg",
  19252. extra: 546 / 541,
  19253. bottom: 39 / 583
  19254. }
  19255. },
  19256. back: {
  19257. height: math.unit(6, "feet"),
  19258. weight: math.unit(150, "lb"),
  19259. name: "Back",
  19260. image: {
  19261. source: "./media/characters/ofelia/back.svg",
  19262. extra: 564 / 559.5,
  19263. bottom: 8.69 / 573.02
  19264. }
  19265. },
  19266. maw: {
  19267. height: math.unit(1, "feet"),
  19268. name: "Maw",
  19269. image: {
  19270. source: "./media/characters/ofelia/maw.svg"
  19271. }
  19272. },
  19273. foot: {
  19274. height: math.unit(1.949, "feet"),
  19275. name: "Foot",
  19276. image: {
  19277. source: "./media/characters/ofelia/foot.svg"
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Canon Height",
  19284. height: math.unit(2000, "miles"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Samuel" },
  19291. {
  19292. front: {
  19293. height: math.unit(6, "feet"),
  19294. weight: math.unit(150, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/samuel/front.svg",
  19298. extra: 265 / 258,
  19299. bottom: 2 / 266.1566
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(100, "feet"),
  19307. default: true
  19308. },
  19309. {
  19310. name: "Full Size",
  19311. height: math.unit(1000, "miles")
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Beishir Kiel" },
  19317. {
  19318. front: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(300, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/beishir-kiel/front.svg",
  19324. extra: 569 / 547,
  19325. bottom: 41.9 / 609
  19326. }
  19327. },
  19328. maw: {
  19329. height: math.unit(6 * 0.202, "feet"),
  19330. name: "Maw",
  19331. image: {
  19332. source: "./media/characters/beishir-kiel/maw.svg"
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Macro",
  19339. height: math.unit(300, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Logan Grey" },
  19346. {
  19347. front: {
  19348. height: math.unit(5 + 8 / 12, "feet"),
  19349. weight: math.unit(120, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/logan-grey/front.svg",
  19353. extra: 2539 / 2393,
  19354. bottom: 97.6 / 2636.37
  19355. }
  19356. },
  19357. frontAlt: {
  19358. height: math.unit(5 + 8 / 12, "feet"),
  19359. weight: math.unit(120, "lb"),
  19360. name: "Front (Alt)",
  19361. image: {
  19362. source: "./media/characters/logan-grey/front-alt.svg",
  19363. extra: 958 / 893,
  19364. bottom: 15 / 970.768
  19365. }
  19366. },
  19367. back: {
  19368. height: math.unit(5 + 8 / 12, "feet"),
  19369. weight: math.unit(120, "lb"),
  19370. name: "Back",
  19371. image: {
  19372. source: "./media/characters/logan-grey/back.svg",
  19373. extra: 958 / 893,
  19374. bottom: 2.1881 / 970.9788
  19375. }
  19376. },
  19377. dick: {
  19378. height: math.unit(1.437, "feet"),
  19379. name: "Dick",
  19380. image: {
  19381. source: "./media/characters/logan-grey/dick.svg"
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(5 + 8 / 12, "feet")
  19389. },
  19390. {
  19391. name: "The 500 Foot Femboy",
  19392. height: math.unit(500, "feet"),
  19393. default: true
  19394. },
  19395. {
  19396. name: "Megmacro",
  19397. height: math.unit(20, "miles")
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Draganta" },
  19403. {
  19404. front: {
  19405. height: math.unit(8 + 2 / 12, "feet"),
  19406. weight: math.unit(275, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/draganta/front.svg",
  19410. extra: 1177 / 1135,
  19411. bottom: 33.46 / 1212.1
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(8 + 6 / 12, "feet"),
  19419. default: true
  19420. },
  19421. {
  19422. name: "Macro",
  19423. height: math.unit(150, "feet")
  19424. },
  19425. {
  19426. name: "Megamacro",
  19427. height: math.unit(1000, "miles")
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Voski", species: "Corvid" },
  19433. {
  19434. front: {
  19435. height: math.unit(1.72, "m"),
  19436. weight: math.unit(80, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/voski/front.svg",
  19440. extra: 2076.22 / 2022.4,
  19441. bottom: 102.7 / 2177.3866
  19442. }
  19443. },
  19444. back: {
  19445. height: math.unit(1.72, "m"),
  19446. weight: math.unit(80, "lb"),
  19447. name: "Back",
  19448. image: {
  19449. source: "./media/characters/voski/back.svg",
  19450. extra: 2104 / 2051,
  19451. bottom: 10.45 / 2113.63
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(1.72, "m")
  19459. },
  19460. {
  19461. name: "Macro",
  19462. height: math.unit(55, "m"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Macro+",
  19467. height: math.unit(300, "m")
  19468. },
  19469. {
  19470. name: "Macro++",
  19471. height: math.unit(700, "m")
  19472. },
  19473. {
  19474. name: "Macro+++",
  19475. height: math.unit(4500, "m")
  19476. },
  19477. {
  19478. name: "Macro++++",
  19479. height: math.unit(45, "km")
  19480. },
  19481. {
  19482. name: "Macro+++++",
  19483. height: math.unit(1220, "km")
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Icowom Lee" },
  19489. {
  19490. front: {
  19491. height: math.unit(2.3, "m"),
  19492. weight: math.unit(304, "kg"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/icowom-lee/front.svg",
  19496. extra: 3076 / 2933,
  19497. bottom: 51.4 / 3125.1889
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(2.3, "meters"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(94, "meters"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19516. {
  19517. front: {
  19518. height: math.unit(22, "meters"),
  19519. weight: math.unit(21000, "kg"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/shock-diamond/front.svg",
  19523. extra: 2204 / 2053,
  19524. bottom: 65 / 2239.47
  19525. }
  19526. },
  19527. frontNude: {
  19528. height: math.unit(22, "meters"),
  19529. weight: math.unit(21000, "kg"),
  19530. name: "Front (Nude)",
  19531. image: {
  19532. source: "./media/characters/shock-diamond/front-nude.svg",
  19533. extra: 2514 / 2285,
  19534. bottom: 13 / 2527.56
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(3, "meters")
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(22, "meters"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Rory" },
  19552. {
  19553. front: {
  19554. height: math.unit(5 + 4 / 12, "feet"),
  19555. weight: math.unit(120, "lb"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/rory/front.svg",
  19559. extra: 589 / 556,
  19560. bottom: 45.7 / 635.76
  19561. }
  19562. },
  19563. frontNude: {
  19564. height: math.unit(5 + 4 / 12, "feet"),
  19565. weight: math.unit(120, "lb"),
  19566. name: "Front (Nude)",
  19567. image: {
  19568. source: "./media/characters/rory/front-nude.svg",
  19569. extra: 589 / 556,
  19570. bottom: 45.7 / 635.76
  19571. }
  19572. },
  19573. side: {
  19574. height: math.unit(5 + 4 / 12, "feet"),
  19575. weight: math.unit(120, "lb"),
  19576. name: "Side",
  19577. image: {
  19578. source: "./media/characters/rory/side.svg",
  19579. extra: 597 / 564,
  19580. bottom: 55 / 653
  19581. }
  19582. },
  19583. back: {
  19584. height: math.unit(5 + 4 / 12, "feet"),
  19585. weight: math.unit(120, "lb"),
  19586. name: "Back",
  19587. image: {
  19588. source: "./media/characters/rory/back.svg",
  19589. extra: 620 / 585,
  19590. bottom: 8.86 / 630.43
  19591. }
  19592. },
  19593. dick: {
  19594. height: math.unit(0.86, "feet"),
  19595. name: "Dick",
  19596. image: {
  19597. source: "./media/characters/rory/dick.svg"
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(5 + 4 / 12, "feet"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(100, "feet")
  19610. },
  19611. {
  19612. name: "Macro+",
  19613. height: math.unit(140, "feet")
  19614. },
  19615. {
  19616. name: "Macro++",
  19617. height: math.unit(300, "feet")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Sprisk" },
  19623. {
  19624. front: {
  19625. height: math.unit(5 + 9 / 12, "feet"),
  19626. weight: math.unit(190, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/sprisk/front.svg",
  19630. extra: 1225 / 1180,
  19631. bottom: 42.7 / 1266.4
  19632. }
  19633. },
  19634. frontNsfw: {
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. weight: math.unit(190, "lb"),
  19637. name: "Front (NSFW)",
  19638. image: {
  19639. source: "./media/characters/sprisk/front-nsfw.svg",
  19640. extra: 1225 / 1180,
  19641. bottom: 42.7 / 1266.4
  19642. }
  19643. },
  19644. back: {
  19645. height: math.unit(5 + 9 / 12, "feet"),
  19646. weight: math.unit(190, "lb"),
  19647. name: "Back",
  19648. image: {
  19649. source: "./media/characters/sprisk/back.svg",
  19650. extra: 1247 / 1200,
  19651. bottom: 5.6 / 1253.04
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Tiny",
  19658. height: math.unit(2, "inches")
  19659. },
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(5 + 9 / 12, "feet"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Mini Macro",
  19667. height: math.unit(18, "feet")
  19668. },
  19669. {
  19670. name: "Macro",
  19671. height: math.unit(100, "feet")
  19672. },
  19673. {
  19674. name: "MACRO",
  19675. height: math.unit(50, "miles")
  19676. },
  19677. {
  19678. name: "M A C R O",
  19679. height: math.unit(300, "miles")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Bunsen" },
  19685. {
  19686. side: {
  19687. height: math.unit(15.6, "meters"),
  19688. weight: math.unit(700000, "kg"),
  19689. name: "Side",
  19690. image: {
  19691. source: "./media/characters/bunsen/side.svg",
  19692. extra: 1644 / 358
  19693. }
  19694. },
  19695. foot: {
  19696. height: math.unit(1.611 * 1644 / 358, "meter"),
  19697. name: "Foot",
  19698. image: {
  19699. source: "./media/characters/bunsen/foot.svg"
  19700. }
  19701. },
  19702. },
  19703. [
  19704. {
  19705. name: "Small",
  19706. height: math.unit(10, "feet")
  19707. },
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(15.6, "meters"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Sesh" },
  19717. {
  19718. front: {
  19719. height: math.unit(4 + 11 / 12, "feet"),
  19720. weight: math.unit(140, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/sesh/front.svg",
  19724. extra: 3420 / 3231,
  19725. bottom: 72 / 3949.5
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(4 + 11 / 12, "feet")
  19733. },
  19734. {
  19735. name: "Grown",
  19736. height: math.unit(15, "feet"),
  19737. default: true
  19738. },
  19739. {
  19740. name: "Macro",
  19741. height: math.unit(1500, "feet")
  19742. },
  19743. {
  19744. name: "Megamacro",
  19745. height: math.unit(30, "miles")
  19746. },
  19747. {
  19748. name: "Continental",
  19749. height: math.unit(3000, "miles")
  19750. },
  19751. {
  19752. name: "Gravity Mass",
  19753. height: math.unit(300000, "miles")
  19754. },
  19755. {
  19756. name: "Planet Buster",
  19757. height: math.unit(30000000, "miles")
  19758. },
  19759. {
  19760. name: "Big",
  19761. height: math.unit(3000000000, "miles")
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Pepper" },
  19767. {
  19768. front: {
  19769. height: math.unit(9, "feet"),
  19770. weight: math.unit(350, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/pepper/front.svg",
  19774. extra: 1448/1312,
  19775. bottom: 9.4/1457.88
  19776. }
  19777. },
  19778. back: {
  19779. height: math.unit(9, "feet"),
  19780. weight: math.unit(350, "lb"),
  19781. name: "Back",
  19782. image: {
  19783. source: "./media/characters/pepper/back.svg",
  19784. extra: 1423/1300,
  19785. bottom: 4.6/1429
  19786. }
  19787. },
  19788. maw: {
  19789. height: math.unit(0.932, "feet"),
  19790. name: "Maw",
  19791. image: {
  19792. source: "./media/characters/pepper/maw.svg"
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Normal",
  19799. height: math.unit(9, "feet"),
  19800. default: true
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Maelstrom" },
  19806. {
  19807. front: {
  19808. height: math.unit(6, "feet"),
  19809. weight: math.unit(150, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/maelstrom/front.svg",
  19813. extra: 2100/1883,
  19814. bottom: 94/2196.7
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Less Kaiju",
  19821. height: math.unit(200, "feet")
  19822. },
  19823. {
  19824. name: "Kaiju",
  19825. height: math.unit(400, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Kaiju-er",
  19830. height: math.unit(600, "feet")
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Lexir" },
  19836. {
  19837. front: {
  19838. height: math.unit(6 + 5/12, "feet"),
  19839. weight: math.unit(180, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/lexir/front.svg",
  19843. extra: 180/172,
  19844. bottom: 12/192
  19845. }
  19846. },
  19847. back: {
  19848. height: math.unit(6 + 5/12, "feet"),
  19849. weight: math.unit(180, "lb"),
  19850. name: "Back",
  19851. image: {
  19852. source: "./media/characters/lexir/back.svg",
  19853. extra: 183.84/175.5,
  19854. bottom: 3.1/187
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Very Smal",
  19861. height: math.unit(1, "nm")
  19862. },
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6 + 5/12, "feet"),
  19866. default: true
  19867. },
  19868. {
  19869. name: "Macro",
  19870. height: math.unit(1, "mile")
  19871. },
  19872. {
  19873. name: "Megamacro",
  19874. height: math.unit(50, "miles")
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Maksio" },
  19880. {
  19881. front: {
  19882. height: math.unit(1.5, "meters"),
  19883. weight: math.unit(100, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/maksio/front.svg",
  19887. extra: 1549/1531,
  19888. bottom: 123.7/1674.5429
  19889. }
  19890. },
  19891. back: {
  19892. height: math.unit(1.5, "meters"),
  19893. weight: math.unit(100, "lb"),
  19894. name: "Back",
  19895. image: {
  19896. source: "./media/characters/maksio/back.svg",
  19897. extra: 1541/1509,
  19898. bottom: 97/1639
  19899. }
  19900. },
  19901. hand: {
  19902. height: math.unit(0.621, "feet"),
  19903. name: "Hand",
  19904. image: {
  19905. source: "./media/characters/maksio/hand.svg"
  19906. }
  19907. },
  19908. foot: {
  19909. height: math.unit(1.611, "feet"),
  19910. name: "Foot",
  19911. image: {
  19912. source: "./media/characters/maksio/foot.svg"
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Shrunken",
  19919. height: math.unit(10, "cm")
  19920. },
  19921. {
  19922. name: "Normal",
  19923. height: math.unit(150, "cm"),
  19924. default: true
  19925. },
  19926. ]
  19927. ))
  19928. characterMakers.push(() => makeCharacter(
  19929. { name: "Erza Bear" },
  19930. {
  19931. front: {
  19932. height: math.unit(100, "feet"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/erza-bear/front.svg",
  19936. extra: 2449/2390,
  19937. bottom: 46/2494
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(100, "feet"),
  19942. name: "Back",
  19943. image: {
  19944. source: "./media/characters/erza-bear/back.svg",
  19945. extra: 2489/2430,
  19946. bottom: 85.4/2480
  19947. }
  19948. },
  19949. tail: {
  19950. height: math.unit(42, "feet"),
  19951. name: "Tail",
  19952. image: {
  19953. source: "./media/characters/erza-bear/tail.svg"
  19954. }
  19955. },
  19956. tongue: {
  19957. height: math.unit(8, "feet"),
  19958. name: "Tongue",
  19959. image: {
  19960. source: "./media/characters/erza-bear/tongue.svg"
  19961. }
  19962. },
  19963. dick: {
  19964. height: math.unit(10.5, "feet"),
  19965. name: "Dick",
  19966. image: {
  19967. source: "./media/characters/erza-bear/dick.svg"
  19968. }
  19969. },
  19970. dickVertical: {
  19971. height: math.unit(16.9, "feet"),
  19972. name: "Dick (Vertical)",
  19973. image: {
  19974. source: "./media/characters/erza-bear/dick-vertical.svg"
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Macro",
  19981. height: math.unit(100, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Violet Flor", species: "Skunk" },
  19988. {
  19989. front: {
  19990. height: math.unit(172, "cm"),
  19991. weight: math.unit(73, "kg"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/violet-flor/front.svg",
  19995. extra: 1530/1442,
  19996. bottom: 61.9/1588.8
  19997. }
  19998. },
  19999. back: {
  20000. height: math.unit(180, "cm"),
  20001. weight: math.unit(73, "kg"),
  20002. name: "Back",
  20003. image: {
  20004. source: "./media/characters/violet-flor/back.svg",
  20005. extra: 1692/1630,
  20006. bottom: 20/1712
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(172, "cm"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Lynn Rhea", species: "Shark" },
  20020. {
  20021. front: {
  20022. height: math.unit(6, "feet"),
  20023. weight: math.unit(220, "lb"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/lynn-rhea/front.svg",
  20027. extra: 310/273
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(6, "feet"),
  20032. weight: math.unit(220, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/lynn-rhea/back.svg",
  20036. extra: 310/273
  20037. }
  20038. },
  20039. dicks: {
  20040. height: math.unit(0.9, "feet"),
  20041. name: "Dicks",
  20042. image: {
  20043. source: "./media/characters/lynn-rhea/dicks.svg"
  20044. }
  20045. },
  20046. slit: {
  20047. height: math.unit(0.4, "feet"),
  20048. name: "Slit",
  20049. image: {
  20050. source: "./media/characters/lynn-rhea/slit.svg"
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Micro",
  20057. height: math.unit(1, "inch")
  20058. },
  20059. {
  20060. name: "Macro",
  20061. height: math.unit(60, "feet"),
  20062. default: true
  20063. },
  20064. {
  20065. name: "Megamacro",
  20066. height: math.unit(2, "miles")
  20067. },
  20068. {
  20069. name: "Gigamacro",
  20070. height: math.unit(3, "earths")
  20071. },
  20072. {
  20073. name: "Galactic",
  20074. height: math.unit(0.8, "galaxies")
  20075. },
  20076. ]
  20077. ))
  20078. characterMakers.push(() => makeCharacter(
  20079. { name: "Valathos" },
  20080. {
  20081. front: {
  20082. height: math.unit(1600, "feet"),
  20083. weight: math.unit(85758785169, "kg"),
  20084. name: "Front",
  20085. image: {
  20086. source: "./media/characters/valathos/front.svg",
  20087. extra: 1451/1339
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Macro",
  20094. height: math.unit(1600, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Azula" },
  20101. {
  20102. front: {
  20103. height: math.unit(7 + 5/12, "feet"),
  20104. weight: math.unit(300, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/azula/front.svg",
  20108. extra: 3208/2880,
  20109. bottom: 80.2/3277
  20110. }
  20111. },
  20112. back: {
  20113. height: math.unit(7 + 5/12, "feet"),
  20114. weight: math.unit(300, "lb"),
  20115. name: "Back",
  20116. image: {
  20117. source: "./media/characters/azula/back.svg",
  20118. extra: 3169/2822,
  20119. bottom: 150.6/3321
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(7 + 5/12, "feet"),
  20127. default: true
  20128. },
  20129. {
  20130. name: "Big",
  20131. height: math.unit(20, "feet")
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Rupert" },
  20137. {
  20138. front: {
  20139. height: math.unit(5 + 1/12, "feet"),
  20140. weight: math.unit(110, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/rupert/front.svg",
  20144. extra: 1549/1495,
  20145. bottom: 54.2/1604.4
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(5 + 1/12, "feet"),
  20153. default: true
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Sheera Castellar" },
  20159. {
  20160. front: {
  20161. height: math.unit(8 + 4/12, "feet"),
  20162. weight: math.unit(350, "lb"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/sheera-castellar/front.svg",
  20166. extra: 1957/1894,
  20167. bottom: 26.97/1975.017
  20168. }
  20169. },
  20170. side: {
  20171. height: math.unit(8 + 4/12, "feet"),
  20172. weight: math.unit(350, "lb"),
  20173. name: "Side",
  20174. image: {
  20175. source: "./media/characters/sheera-castellar/side.svg",
  20176. extra: 1957/1894
  20177. }
  20178. },
  20179. back: {
  20180. height: math.unit(8 + 4/12, "feet"),
  20181. weight: math.unit(350, "lb"),
  20182. name: "Back",
  20183. image: {
  20184. source: "./media/characters/sheera-castellar/back.svg",
  20185. extra: 1957/1894
  20186. }
  20187. },
  20188. angled: {
  20189. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20190. weight: math.unit(350, "lb"),
  20191. name: "Angled",
  20192. image: {
  20193. source: "./media/characters/sheera-castellar/angled.svg",
  20194. extra: 1807/1707,
  20195. bottom: 68/1875
  20196. }
  20197. },
  20198. genitals: {
  20199. height: math.unit(2.2, "feet"),
  20200. name: "Genitals",
  20201. image: {
  20202. source: "./media/characters/sheera-castellar/genitals.svg"
  20203. }
  20204. },
  20205. },
  20206. [
  20207. {
  20208. name: "Normal",
  20209. height: math.unit(8 + 4/12, "feet")
  20210. },
  20211. {
  20212. name: "Macro",
  20213. height: math.unit(150, "feet"),
  20214. default: true
  20215. },
  20216. {
  20217. name: "Macro+",
  20218. height: math.unit(800, "feet")
  20219. },
  20220. ]
  20221. ))
  20222. //characters
  20223. function makeCharacters() {
  20224. const results = [];
  20225. characterMakers.forEach(character => {
  20226. results.push(character());
  20227. });
  20228. return results;
  20229. }