less copy protection, more size visualization
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

22944 行
550 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. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. characterMakers.push(() => makeCharacter(
  40. {
  41. name: "Fen",
  42. species: "Crux",
  43. description: {
  44. title: "Bio",
  45. text: "Very furry. Sheds on everything."
  46. }
  47. },
  48. {
  49. back: {
  50. height: math.unit(2.2428, "meter"),
  51. weight: math.unit(124.738, "kg"),
  52. name: "Back",
  53. image: {
  54. source: "./media/characters/fen/back.svg",
  55. extra: 1025 / 935,
  56. bottom: 0.01
  57. },
  58. info: {
  59. description: {
  60. mode: "append",
  61. text: "\n\nHe is not currently looking at you."
  62. }
  63. }
  64. },
  65. full: {
  66. height: math.unit(1.34, "meter"),
  67. weight: math.unit(225, "kg"),
  68. name: "Full",
  69. image: {
  70. source: "./media/characters/fen/full.svg"
  71. },
  72. info: {
  73. description: {
  74. mode: "append",
  75. text: "\n\nMunch."
  76. }
  77. }
  78. },
  79. kneeling: {
  80. height: math.unit(5.4, "feet"),
  81. weight: math.unit(124.738, "kg"),
  82. name: "Kneeling",
  83. image: {
  84. source: "./media/characters/fen/kneeling.svg",
  85. extra: 563 / 507
  86. }
  87. },
  88. goo: {
  89. height: math.unit(2.8, "feet"),
  90. weight: math.unit(125, "kg"),
  91. capacity: math.unit(1, "people"),
  92. name: "Goo",
  93. image: {
  94. source: "./media/characters/fen/goo.svg",
  95. bottom: 116/613
  96. }
  97. },
  98. lounging: {
  99. height: math.unit(6.5, "feet"),
  100. weight: math.unit(125, "kg"),
  101. name: "Lounging",
  102. image: {
  103. source: "./media/characters/fen/lounging.svg"
  104. }
  105. },
  106. },
  107. [
  108. {
  109. name: "Normal",
  110. height: math.unit(2.2428, "meter")
  111. },
  112. {
  113. name: "Big",
  114. height: math.unit(12, "feet")
  115. },
  116. {
  117. name: "Minimacro",
  118. height: math.unit(40, "feet"),
  119. default: true,
  120. info: {
  121. description: {
  122. mode: "append",
  123. text: "\n\nTOO DAMN BIG"
  124. }
  125. }
  126. },
  127. {
  128. name: "Macro",
  129. height: math.unit(100, "feet"),
  130. info: {
  131. description: {
  132. mode: "append",
  133. text: "\n\nTOO DAMN BIG"
  134. }
  135. }
  136. },
  137. {
  138. name: "Macro+",
  139. height: math.unit(300, "feet")
  140. },
  141. {
  142. name: "Megamacro",
  143. height: math.unit(2, "miles")
  144. }
  145. ]
  146. ))
  147. characterMakers.push(() => makeCharacter(
  148. { name: "Sofia Fluttertail" },
  149. {
  150. front: {
  151. height: math.unit(183, "cm"),
  152. weight: math.unit(80, "kg"),
  153. name: "Front",
  154. image: {
  155. source: "./media/characters/sofia-fluttertail/front.svg",
  156. bottom: 0.01,
  157. extra: 2154 / 2081
  158. }
  159. },
  160. frontAlt: {
  161. height: math.unit(183, "cm"),
  162. weight: math.unit(80, "kg"),
  163. name: "Front (alt)",
  164. image: {
  165. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  166. }
  167. },
  168. back: {
  169. height: math.unit(183, "cm"),
  170. weight: math.unit(80, "kg"),
  171. name: "Back",
  172. image: {
  173. source: "./media/characters/sofia-fluttertail/back.svg"
  174. }
  175. },
  176. kneeling: {
  177. height: math.unit(125, "cm"),
  178. weight: math.unit(80, "kg"),
  179. name: "Kneeling",
  180. image: {
  181. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  182. extra: 1033/977,
  183. bottom: 23.7/1057
  184. }
  185. },
  186. maw: {
  187. height: math.unit(183 / 5, "cm"),
  188. name: "Maw",
  189. image: {
  190. source: "./media/characters/sofia-fluttertail/maw.svg"
  191. }
  192. },
  193. mawcloseup: {
  194. height: math.unit(183 / 5 * 0.41, "cm"),
  195. name: "Maw (Closeup)",
  196. image: {
  197. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  198. }
  199. },
  200. },
  201. [
  202. {
  203. name: "Normal",
  204. height: math.unit(1.83, "meter")
  205. },
  206. {
  207. name: "Size Thief",
  208. height: math.unit(18, "feet")
  209. },
  210. {
  211. name: "50 Foot Collie",
  212. height: math.unit(50, "feet")
  213. },
  214. {
  215. name: "Macro",
  216. height: math.unit(96, "feet"),
  217. default: true
  218. },
  219. {
  220. name: "Megamerger",
  221. height: math.unit(650, "feet")
  222. },
  223. ]
  224. ))
  225. characterMakers.push(() => makeCharacter(
  226. { name: "March" },
  227. {
  228. front: {
  229. height: math.unit(7, "feet"),
  230. weight: math.unit(100, "kg"),
  231. name: "Front",
  232. image: {
  233. source: "./media/characters/march/front.svg",
  234. extra: 1,
  235. bottom: 0.015
  236. }
  237. },
  238. foot: {
  239. height: math.unit(0.9, "feet"),
  240. name: "Foot",
  241. image: {
  242. source: "./media/characters/march/foot.svg"
  243. }
  244. },
  245. },
  246. [
  247. {
  248. name: "Normal",
  249. height: math.unit(7.9, "feet")
  250. },
  251. {
  252. name: "Macro",
  253. height: math.unit(220, "meters")
  254. },
  255. {
  256. name: "Megamacro",
  257. height: math.unit(2.98, "km"),
  258. default: true
  259. },
  260. {
  261. name: "Gigamacro",
  262. height: math.unit(15963, "km")
  263. },
  264. {
  265. name: "Teramacro",
  266. height: math.unit(2980000000, "km")
  267. },
  268. {
  269. name: "Examacro",
  270. height: math.unit(250, "parsecs")
  271. },
  272. ]
  273. ))
  274. characterMakers.push(() => makeCharacter(
  275. { name: "Noir" },
  276. {
  277. front: {
  278. height: math.unit(6, "feet"),
  279. weight: math.unit(60, "kg"),
  280. name: "Front",
  281. image: {
  282. source: "./media/characters/noir/front.svg",
  283. extra: 1,
  284. bottom: 0.032
  285. }
  286. },
  287. },
  288. [
  289. {
  290. name: "Normal",
  291. height: math.unit(6.6, "feet")
  292. },
  293. {
  294. name: "Macro",
  295. height: math.unit(500, "feet")
  296. },
  297. {
  298. name: "Megamacro",
  299. height: math.unit(2.5, "km"),
  300. default: true
  301. },
  302. {
  303. name: "Gigamacro",
  304. height: math.unit(22500, "km")
  305. },
  306. {
  307. name: "Teramacro",
  308. height: math.unit(2500000000, "km")
  309. },
  310. {
  311. name: "Examacro",
  312. height: math.unit(200, "parsecs")
  313. },
  314. ]
  315. ))
  316. characterMakers.push(() => makeCharacter(
  317. { name: "Okuri" },
  318. {
  319. front: {
  320. height: math.unit(7, "feet"),
  321. weight: math.unit(100, "kg"),
  322. name: "Front",
  323. image: {
  324. source: "./media/characters/okuri/front.svg",
  325. extra: 1,
  326. bottom: 0.037
  327. }
  328. },
  329. back: {
  330. height: math.unit(7, "feet"),
  331. weight: math.unit(100, "kg"),
  332. name: "Back",
  333. image: {
  334. source: "./media/characters/okuri/back.svg",
  335. extra: 1,
  336. bottom: 0.007
  337. }
  338. },
  339. },
  340. [
  341. {
  342. name: "Megamacro",
  343. height: math.unit(100, "miles"),
  344. default: true
  345. },
  346. ]
  347. ))
  348. characterMakers.push(() => makeCharacter(
  349. { name: "Manny" },
  350. {
  351. front: {
  352. height: math.unit(7, "feet"),
  353. weight: math.unit(100, "kg"),
  354. name: "Front",
  355. image: {
  356. source: "./media/characters/manny/front.svg",
  357. extra: 1,
  358. bottom: 0.06
  359. }
  360. },
  361. back: {
  362. height: math.unit(7, "feet"),
  363. weight: math.unit(100, "kg"),
  364. name: "Back",
  365. image: {
  366. source: "./media/characters/manny/back.svg",
  367. extra: 1,
  368. bottom: 0.014
  369. }
  370. },
  371. },
  372. [
  373. {
  374. name: "Normal",
  375. height: math.unit(7, "feet"),
  376. },
  377. {
  378. name: "Macro",
  379. height: math.unit(78, "feet"),
  380. default: true
  381. },
  382. {
  383. name: "Macro+",
  384. height: math.unit(300, "meters")
  385. },
  386. {
  387. name: "Macro++",
  388. height: math.unit(2400, "meters")
  389. },
  390. {
  391. name: "Megamacro",
  392. height: math.unit(5167, "meters")
  393. },
  394. {
  395. name: "Gigamacro",
  396. height: math.unit(41769, "miles")
  397. },
  398. ]
  399. ))
  400. characterMakers.push(() => makeCharacter(
  401. { name: "Adake" },
  402. {
  403. front: {
  404. height: math.unit(7, "feet"),
  405. weight: math.unit(100, "kg"),
  406. name: "Front",
  407. image: {
  408. source: "./media/characters/adake/front-1.svg"
  409. }
  410. },
  411. frontAlt: {
  412. height: math.unit(7, "feet"),
  413. weight: math.unit(100, "kg"),
  414. name: "Front (Alt)",
  415. image: {
  416. source: "./media/characters/adake/front-2.svg",
  417. extra: 1,
  418. bottom: 0.01
  419. }
  420. },
  421. back: {
  422. height: math.unit(7, "feet"),
  423. weight: math.unit(100, "kg"),
  424. name: "Back",
  425. image: {
  426. source: "./media/characters/adake/back.svg",
  427. }
  428. },
  429. kneel: {
  430. height: math.unit(5.385, "feet"),
  431. weight: math.unit(100, "kg"),
  432. name: "Kneeling",
  433. image: {
  434. source: "./media/characters/adake/kneel.svg",
  435. bottom: 0.052
  436. }
  437. },
  438. },
  439. [
  440. {
  441. name: "Normal",
  442. height: math.unit(7, "feet"),
  443. },
  444. {
  445. name: "Macro",
  446. height: math.unit(78, "feet"),
  447. default: true
  448. },
  449. {
  450. name: "Macro+",
  451. height: math.unit(300, "meters")
  452. },
  453. {
  454. name: "Macro++",
  455. height: math.unit(2400, "meters")
  456. },
  457. {
  458. name: "Megamacro",
  459. height: math.unit(5167, "meters")
  460. },
  461. {
  462. name: "Gigamacro",
  463. height: math.unit(41769, "miles")
  464. },
  465. ]
  466. ))
  467. characterMakers.push(() => makeCharacter(
  468. { name: "Elijah" },
  469. {
  470. front: {
  471. height: math.unit(1.65, "meters"),
  472. weight: math.unit(50, "kg"),
  473. name: "Front",
  474. image: {
  475. source: "./media/characters/elijah/front.svg",
  476. extra: 858/830,
  477. bottom: 95.5/953.8559
  478. }
  479. },
  480. back: {
  481. height: math.unit(1.65, "meters"),
  482. weight: math.unit(50, "kg"),
  483. name: "Back",
  484. image: {
  485. source: "./media/characters/elijah/back.svg",
  486. extra: 895/850,
  487. bottom: 5.3/897.956
  488. }
  489. },
  490. frontNsfw: {
  491. height: math.unit(1.65, "meters"),
  492. weight: math.unit(50, "kg"),
  493. name: "Front (NSFW)",
  494. image: {
  495. source: "./media/characters/elijah/front-nsfw.svg",
  496. extra: 858/830,
  497. bottom: 95.5/953.8559
  498. }
  499. },
  500. backNsfw: {
  501. height: math.unit(1.65, "meters"),
  502. weight: math.unit(50, "kg"),
  503. name: "Back (NSFW)",
  504. image: {
  505. source: "./media/characters/elijah/back-nsfw.svg",
  506. extra: 895/850,
  507. bottom: 5.3/897.956
  508. }
  509. },
  510. dick: {
  511. height: math.unit(1, "feet"),
  512. name: "Dick",
  513. image: {
  514. source: "./media/characters/elijah/dick.svg"
  515. }
  516. },
  517. beakOpen: {
  518. height: math.unit(1.25, "feet"),
  519. name: "Beak (Open)",
  520. image: {
  521. source: "./media/characters/elijah/beak-open.svg"
  522. }
  523. },
  524. beakShut: {
  525. height: math.unit(1.25, "feet"),
  526. name: "Beak (Shut)",
  527. image: {
  528. source: "./media/characters/elijah/beak-shut.svg"
  529. }
  530. },
  531. footFlexing: {
  532. height: math.unit(1.61, "feet"),
  533. name: "Foot (Flexing)",
  534. image: {
  535. source: "./media/characters/elijah/foot-flexing.svg"
  536. }
  537. },
  538. footStepping: {
  539. height: math.unit(1.44, "feet"),
  540. name: "Foot (Stepping)",
  541. image: {
  542. source: "./media/characters/elijah/foot-stepping.svg"
  543. }
  544. },
  545. plantigradeLeg: {
  546. height: math.unit(2.34, "feet"),
  547. name: "Plantigrade Leg",
  548. image: {
  549. source: "./media/characters/elijah/plantigrade-leg.svg"
  550. }
  551. },
  552. plantigradeFootLeft: {
  553. height: math.unit(0.9, "feet"),
  554. name: "Plantigrade Foot (Left)",
  555. image: {
  556. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  557. }
  558. },
  559. plantigradeFootRight: {
  560. height: math.unit(0.9, "feet"),
  561. name: "Plantigrade Foot (Right)",
  562. image: {
  563. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  564. }
  565. },
  566. },
  567. [
  568. {
  569. name: "Normal",
  570. height: math.unit(1.65, "meters")
  571. },
  572. {
  573. name: "Macro",
  574. height: math.unit(55, "meters"),
  575. default: true
  576. },
  577. {
  578. name: "Macro+",
  579. height: math.unit(105, "meters")
  580. },
  581. ]
  582. ))
  583. characterMakers.push(() => makeCharacter(
  584. { name: "Rai" },
  585. {
  586. front: {
  587. height: math.unit(11, "feet"),
  588. weight: math.unit(80, "kg"),
  589. name: "Front",
  590. image: {
  591. source: "./media/characters/rai/front.svg",
  592. extra: 1,
  593. bottom: 0.03
  594. }
  595. },
  596. side: {
  597. height: math.unit(11, "feet"),
  598. weight: math.unit(80, "kg"),
  599. name: "Side",
  600. image: {
  601. source: "./media/characters/rai/side.svg"
  602. }
  603. },
  604. back: {
  605. height: math.unit(11, "feet"),
  606. weight: math.unit(80, "lb"),
  607. name: "Back",
  608. image: {
  609. source: "./media/characters/rai/back.svg",
  610. extra: 1,
  611. bottom: 0.01
  612. }
  613. },
  614. feral: {
  615. height: math.unit(11, "feet"),
  616. weight: math.unit(800, "lb"),
  617. name: "Feral",
  618. image: {
  619. source: "./media/characters/rai/feral.svg",
  620. extra: 1050 / 659,
  621. bottom: 0.07
  622. }
  623. },
  624. dragon: {
  625. height: math.unit(23, "feet"),
  626. weight: math.unit(50000, "lb"),
  627. name: "Dragon",
  628. image: {
  629. source: "./media/characters/rai/dragon.svg",
  630. extra: 2498/2030,
  631. bottom: 85.2/2584
  632. }
  633. },
  634. maw: {
  635. height: math.unit(6 / 3.81416, "feet"),
  636. name: "Maw",
  637. image: {
  638. source: "./media/characters/rai/maw.svg"
  639. }
  640. },
  641. },
  642. [
  643. {
  644. name: "Normal",
  645. height: math.unit(11, "feet")
  646. },
  647. {
  648. name: "Macro",
  649. height: math.unit(302, "feet"),
  650. default: true
  651. },
  652. ]
  653. ))
  654. characterMakers.push(() => makeCharacter(
  655. { name: "Jazzy" },
  656. {
  657. front: {
  658. height: math.unit(7, "feet"),
  659. weight: math.unit(80, "kg"),
  660. name: "Front",
  661. image: {
  662. source: "./media/characters/jazzy/front.svg",
  663. extra: 1,
  664. bottom: 0.01
  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/jazzy/back.svg",
  673. extra: 1,
  674. bottom: 0.01
  675. }
  676. },
  677. },
  678. [
  679. {
  680. name: "Macro",
  681. height: math.unit(216, "feet"),
  682. default: true
  683. },
  684. ]
  685. ))
  686. characterMakers.push(() => makeCharacter(
  687. { name: "Flamm" },
  688. {
  689. front: {
  690. height: math.unit(7, "feet"),
  691. weight: math.unit(80, "kg"),
  692. name: "Front",
  693. image: {
  694. source: "./media/characters/flamm/front.svg",
  695. extra: 1794 / 1677,
  696. bottom: 31.7 / 1828.5
  697. }
  698. },
  699. },
  700. [
  701. {
  702. name: "Normal",
  703. height: math.unit(9.5, "feet")
  704. },
  705. {
  706. name: "Macro",
  707. height: math.unit(200, "feet"),
  708. default: true
  709. },
  710. ]
  711. ))
  712. characterMakers.push(() => makeCharacter(
  713. { name: "Zephiro" },
  714. {
  715. front: {
  716. height: math.unit(7, "feet"),
  717. weight: math.unit(80, "kg"),
  718. name: "Front",
  719. image: {
  720. source: "./media/characters/zephiro/front.svg",
  721. extra: 2309 / 2162,
  722. bottom: 0.069
  723. }
  724. },
  725. side: {
  726. height: math.unit(7, "feet"),
  727. weight: math.unit(80, "kg"),
  728. name: "Side",
  729. image: {
  730. source: "./media/characters/zephiro/side.svg",
  731. extra: 2403 / 2279,
  732. bottom: 0.015
  733. }
  734. },
  735. back: {
  736. height: math.unit(7, "feet"),
  737. weight: math.unit(80, "kg"),
  738. name: "Back",
  739. image: {
  740. source: "./media/characters/zephiro/back.svg",
  741. extra: 2373 / 2244,
  742. bottom: 0.013
  743. }
  744. },
  745. },
  746. [
  747. {
  748. name: "Micro",
  749. height: math.unit(3, "inches")
  750. },
  751. {
  752. name: "Normal",
  753. height: math.unit(5 + 3 / 12, "feet"),
  754. default: true
  755. },
  756. {
  757. name: "Macro",
  758. height: math.unit(118, "feet")
  759. },
  760. ]
  761. ))
  762. characterMakers.push(() => makeCharacter(
  763. { name: "Fory" },
  764. {
  765. front: {
  766. height: math.unit(5, "feet"),
  767. weight: math.unit(90, "kg"),
  768. name: "Front",
  769. image: {
  770. source: "./media/characters/fory/front.svg",
  771. extra: 2862 / 2674,
  772. bottom: 180 / 3043.8
  773. }
  774. },
  775. back: {
  776. height: math.unit(5, "feet"),
  777. weight: math.unit(90, "kg"),
  778. name: "Back",
  779. image: {
  780. source: "./media/characters/fory/back.svg",
  781. extra: 2962 / 2791,
  782. bottom: 106 / 3071.8
  783. }
  784. },
  785. foot: {
  786. height: math.unit(2.14, "feet"),
  787. name: "Foot",
  788. image: {
  789. source: "./media/characters/fory/foot.svg"
  790. }
  791. },
  792. },
  793. [
  794. {
  795. name: "Normal",
  796. height: math.unit(5, "feet")
  797. },
  798. {
  799. name: "Macro",
  800. height: math.unit(50, "feet"),
  801. default: true
  802. },
  803. {
  804. name: "Megamacro",
  805. height: math.unit(10, "miles")
  806. },
  807. {
  808. name: "Gigamacro",
  809. height: math.unit(5, "earths")
  810. },
  811. ]
  812. ))
  813. characterMakers.push(() => makeCharacter(
  814. { name: "Kurrikage" },
  815. {
  816. front: {
  817. height: math.unit(7, "feet"),
  818. weight: math.unit(90, "kg"),
  819. name: "Front",
  820. image: {
  821. source: "./media/characters/kurrikage/front.svg",
  822. extra: 1,
  823. bottom: 0.035
  824. }
  825. },
  826. back: {
  827. height: math.unit(7, "feet"),
  828. weight: math.unit(90, "lb"),
  829. name: "Back",
  830. image: {
  831. source: "./media/characters/kurrikage/back.svg"
  832. }
  833. },
  834. paw: {
  835. height: math.unit(1.5, "feet"),
  836. name: "Paw",
  837. image: {
  838. source: "./media/characters/kurrikage/paw.svg"
  839. }
  840. },
  841. staff: {
  842. height: math.unit(6.7, "feet"),
  843. name: "Staff",
  844. image: {
  845. source: "./media/characters/kurrikage/staff.svg"
  846. }
  847. },
  848. peek: {
  849. height: math.unit(1.05, "feet"),
  850. name: "Peeking",
  851. image: {
  852. source: "./media/characters/kurrikage/peek.svg",
  853. bottom: 0.08
  854. }
  855. },
  856. },
  857. [
  858. {
  859. name: "Normal",
  860. height: math.unit(12, "feet"),
  861. default: true
  862. },
  863. {
  864. name: "Big",
  865. height: math.unit(20, "feet")
  866. },
  867. {
  868. name: "Macro",
  869. height: math.unit(500, "feet")
  870. },
  871. {
  872. name: "Megamacro",
  873. height: math.unit(20, "miles")
  874. },
  875. ]
  876. ))
  877. characterMakers.push(() => makeCharacter(
  878. { name: "Shingo" },
  879. {
  880. front: {
  881. height: math.unit(6, "feet"),
  882. weight: math.unit(75, "kg"),
  883. name: "Front",
  884. image: {
  885. source: "./media/characters/shingo/front.svg",
  886. extra: 3511 / 3338,
  887. bottom: 0.005
  888. }
  889. },
  890. },
  891. [
  892. {
  893. name: "Micro",
  894. height: math.unit(4, "inches")
  895. },
  896. {
  897. name: "Normal",
  898. height: math.unit(6, "feet"),
  899. default: true
  900. },
  901. {
  902. name: "Macro",
  903. height: math.unit(108, "feet")
  904. }
  905. ]
  906. ))
  907. characterMakers.push(() => makeCharacter(
  908. { name: "Aigey" },
  909. {
  910. side: {
  911. height: math.unit(6, "feet"),
  912. weight: math.unit(75, "kg"),
  913. name: "Side",
  914. image: {
  915. source: "./media/characters/aigey/side.svg"
  916. }
  917. },
  918. },
  919. [
  920. {
  921. name: "Macro",
  922. height: math.unit(200, "feet"),
  923. default: true
  924. },
  925. {
  926. name: "Megamacro",
  927. height: math.unit(100, "miles")
  928. },
  929. ]
  930. )
  931. )
  932. characterMakers.push(() => makeCharacter(
  933. { name: "Natasha" },
  934. {
  935. front: {
  936. height: math.unit(5 + 5 / 12, "feet"),
  937. weight: math.unit(75, "kg"),
  938. name: "Front",
  939. image: {
  940. source: "./media/characters/natasha/front.svg",
  941. extra: 859/824,
  942. bottom: 23/879.6
  943. }
  944. },
  945. frontNsfw: {
  946. height: math.unit(5 + 5 / 12, "feet"),
  947. weight: math.unit(75, "kg"),
  948. name: "Front (NSFW)",
  949. image: {
  950. source: "./media/characters/natasha/front-nsfw.svg",
  951. extra: 859/824,
  952. bottom: 23/879.6
  953. }
  954. },
  955. frontErect: {
  956. height: math.unit(5 + 5 / 12, "feet"),
  957. weight: math.unit(75, "kg"),
  958. name: "Front (Erect)",
  959. image: {
  960. source: "./media/characters/natasha/front-erect.svg",
  961. extra: 859/824,
  962. bottom: 23/879.6
  963. }
  964. },
  965. back: {
  966. height: math.unit(5 + 5 / 12, "feet"),
  967. weight: math.unit(75, "kg"),
  968. name: "Back",
  969. image: {
  970. source: "./media/characters/natasha/back.svg",
  971. extra: 887.9/852.6,
  972. bottom: 9.7/896.4
  973. }
  974. },
  975. backAlt: {
  976. height: math.unit(5 + 5 / 12, "feet"),
  977. weight: math.unit(75, "kg"),
  978. name: "Back (Alt)",
  979. image: {
  980. source: "./media/characters/natasha/back-alt.svg",
  981. extra: 1236.7/1192,
  982. bottom: 22.3/1258.2
  983. }
  984. },
  985. dick: {
  986. height: math.unit(1.772, "feet"),
  987. name: "Dick",
  988. image: {
  989. source: "./media/characters/natasha/dick.svg"
  990. }
  991. },
  992. },
  993. [
  994. {
  995. name: "Normal",
  996. height: math.unit(5 + 5 / 12, "feet")
  997. },
  998. {
  999. name: "Large",
  1000. height: math.unit(12, "feet")
  1001. },
  1002. {
  1003. name: "Macro",
  1004. height: math.unit(100, "feet"),
  1005. default: true
  1006. },
  1007. {
  1008. name: "Macro+",
  1009. height: math.unit(260, "feet")
  1010. },
  1011. {
  1012. name: "Macro++",
  1013. height: math.unit(1, "mile")
  1014. },
  1015. ]
  1016. ))
  1017. characterMakers.push(() => makeCharacter(
  1018. { name: "Malik" },
  1019. {
  1020. front: {
  1021. height: math.unit(6, "feet"),
  1022. weight: math.unit(75, "kg"),
  1023. name: "Front",
  1024. image: {
  1025. source: "./media/characters/malik/front.svg"
  1026. }
  1027. },
  1028. side: {
  1029. height: math.unit(6, "feet"),
  1030. weight: math.unit(75, "kg"),
  1031. name: "Side",
  1032. image: {
  1033. source: "./media/characters/malik/side.svg",
  1034. extra: 1.1539
  1035. }
  1036. },
  1037. back: {
  1038. height: math.unit(6, "feet"),
  1039. weight: math.unit(75, "kg"),
  1040. name: "Back",
  1041. image: {
  1042. source: "./media/characters/malik/back.svg"
  1043. }
  1044. },
  1045. },
  1046. [
  1047. {
  1048. name: "Macro",
  1049. height: math.unit(156, "feet"),
  1050. default: true
  1051. },
  1052. {
  1053. name: "Macro+",
  1054. height: math.unit(1188, "feet")
  1055. },
  1056. ]
  1057. ))
  1058. characterMakers.push(() => makeCharacter(
  1059. { name: "Sefer" },
  1060. {
  1061. front: {
  1062. height: math.unit(6, "feet"),
  1063. weight: math.unit(75, "kg"),
  1064. name: "Front",
  1065. image: {
  1066. source: "./media/characters/sefer/front.svg"
  1067. }
  1068. },
  1069. back: {
  1070. height: math.unit(6, "feet"),
  1071. weight: math.unit(75, "kg"),
  1072. name: "Back",
  1073. image: {
  1074. source: "./media/characters/sefer/back.svg"
  1075. }
  1076. },
  1077. },
  1078. [
  1079. {
  1080. name: "Normal",
  1081. height: math.unit(6, "feet"),
  1082. default: true
  1083. },
  1084. ]
  1085. ))
  1086. characterMakers.push(() => makeCharacter(
  1087. { name: "North" },
  1088. {
  1089. body: {
  1090. height: math.unit(2.2428, "meter"),
  1091. weight: math.unit(124.738, "kg"),
  1092. name: "Body",
  1093. image: {
  1094. extra: 1225 / 1050,
  1095. source: "./media/characters/north/front.svg"
  1096. }
  1097. }
  1098. },
  1099. [
  1100. {
  1101. name: "Micro",
  1102. height: math.unit(4, "inches")
  1103. },
  1104. {
  1105. name: "Macro",
  1106. height: math.unit(63, "meters")
  1107. },
  1108. {
  1109. name: "Megamacro",
  1110. height: math.unit(101, "miles"),
  1111. default: true
  1112. }
  1113. ]
  1114. ))
  1115. characterMakers.push(() => makeCharacter(
  1116. { name: "Talan" },
  1117. {
  1118. angled: {
  1119. height: math.unit(4, "meter"),
  1120. weight: math.unit(150, "kg"),
  1121. name: "Angled",
  1122. image: {
  1123. source: "./media/characters/talan/angled-sfw.svg",
  1124. bottom: 29 / 3734
  1125. }
  1126. },
  1127. angledNsfw: {
  1128. height: math.unit(4, "meter"),
  1129. weight: math.unit(150, "kg"),
  1130. name: "Angled (NSFW)",
  1131. image: {
  1132. source: "./media/characters/talan/angled-nsfw.svg",
  1133. bottom: 29 / 3734
  1134. }
  1135. },
  1136. frontNsfw: {
  1137. height: math.unit(4, "meter"),
  1138. weight: math.unit(150, "kg"),
  1139. name: "Front (NSFW)",
  1140. image: {
  1141. source: "./media/characters/talan/front-nsfw.svg",
  1142. bottom: 29 / 3734
  1143. }
  1144. },
  1145. sideNsfw: {
  1146. height: math.unit(4, "meter"),
  1147. weight: math.unit(150, "kg"),
  1148. name: "Side (NSFW)",
  1149. image: {
  1150. source: "./media/characters/talan/side-nsfw.svg",
  1151. bottom: 29 / 3734
  1152. }
  1153. },
  1154. back: {
  1155. height: math.unit(4, "meter"),
  1156. weight: math.unit(150, "kg"),
  1157. name: "Back",
  1158. image: {
  1159. source: "./media/characters/talan/back.svg"
  1160. }
  1161. },
  1162. dickBottom: {
  1163. height: math.unit(0.621, "meter"),
  1164. name: "Dick (Bottom)",
  1165. image: {
  1166. source: "./media/characters/talan/dick-bottom.svg"
  1167. }
  1168. },
  1169. dickTop: {
  1170. height: math.unit(0.621, "meter"),
  1171. name: "Dick (Top)",
  1172. image: {
  1173. source: "./media/characters/talan/dick-top.svg"
  1174. }
  1175. },
  1176. dickSide: {
  1177. height: math.unit(0.305, "meter"),
  1178. name: "Dick (Side)",
  1179. image: {
  1180. source: "./media/characters/talan/dick-side.svg"
  1181. }
  1182. },
  1183. dickFront: {
  1184. height: math.unit(0.305, "meter"),
  1185. name: "Dick (Front)",
  1186. image: {
  1187. source: "./media/characters/talan/dick-front.svg"
  1188. }
  1189. },
  1190. },
  1191. [
  1192. {
  1193. name: "Normal",
  1194. height: math.unit(4, "meters")
  1195. },
  1196. {
  1197. name: "Macro",
  1198. height: math.unit(100, "meters")
  1199. },
  1200. {
  1201. name: "Megamacro",
  1202. height: math.unit(2, "miles"),
  1203. default: true
  1204. },
  1205. {
  1206. name: "Gigamacro",
  1207. height: math.unit(5000, "miles")
  1208. },
  1209. {
  1210. name: "Teramacro",
  1211. height: math.unit(100, "parsecs")
  1212. }
  1213. ]
  1214. ))
  1215. characterMakers.push(() => makeCharacter(
  1216. { name: "Gael'Rathus" },
  1217. {
  1218. front: {
  1219. height: math.unit(2, "meter"),
  1220. weight: math.unit(90, "kg"),
  1221. name: "Front",
  1222. image: {
  1223. source: "./media/characters/gael'rathus/front.svg"
  1224. }
  1225. },
  1226. frontAlt: {
  1227. height: math.unit(2, "meter"),
  1228. weight: math.unit(90, "kg"),
  1229. name: "Front (alt)",
  1230. image: {
  1231. source: "./media/characters/gael'rathus/front-alt.svg"
  1232. }
  1233. },
  1234. frontAlt2: {
  1235. height: math.unit(2, "meter"),
  1236. weight: math.unit(90, "kg"),
  1237. name: "Front (alt 2)",
  1238. image: {
  1239. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1240. }
  1241. }
  1242. },
  1243. [
  1244. {
  1245. name: "Normal",
  1246. height: math.unit(9, "feet"),
  1247. default: true
  1248. },
  1249. {
  1250. name: "Large",
  1251. height: math.unit(25, "feet")
  1252. },
  1253. {
  1254. name: "Macro",
  1255. height: math.unit(0.25, "miles")
  1256. },
  1257. {
  1258. name: "Megamacro",
  1259. height: math.unit(10, "miles")
  1260. }
  1261. ]
  1262. ))
  1263. characterMakers.push(() => makeCharacter(
  1264. { name: "Sosha" },
  1265. {
  1266. side: {
  1267. height: math.unit(2, "meter"),
  1268. weight: math.unit(140, "kg"),
  1269. name: "Side",
  1270. image: {
  1271. source: "./media/characters/sosha/side.svg",
  1272. bottom: 0.042
  1273. }
  1274. },
  1275. },
  1276. [
  1277. {
  1278. name: "Normal",
  1279. height: math.unit(12, "feet"),
  1280. default: true
  1281. }
  1282. ]
  1283. ))
  1284. characterMakers.push(() => makeCharacter(
  1285. { name: "RuNNoLa" },
  1286. {
  1287. side: {
  1288. height: math.unit(5 + 5 / 12, "feet"),
  1289. weight: math.unit(170, "kg"),
  1290. name: "Side",
  1291. image: {
  1292. source: "./media/characters/runnola/side.svg",
  1293. extra: 741 / 448,
  1294. bottom: 0.05
  1295. }
  1296. },
  1297. },
  1298. [
  1299. {
  1300. name: "Small",
  1301. height: math.unit(3, "feet")
  1302. },
  1303. {
  1304. name: "Normal",
  1305. height: math.unit(5 + 5 / 12, "feet"),
  1306. default: true
  1307. },
  1308. {
  1309. name: "Big",
  1310. height: math.unit(10, "feet")
  1311. },
  1312. ]
  1313. ))
  1314. characterMakers.push(() => makeCharacter(
  1315. { name: "Kurribird" },
  1316. {
  1317. front: {
  1318. height: math.unit(2, "meter"),
  1319. weight: math.unit(50, "kg"),
  1320. name: "Front",
  1321. image: {
  1322. source: "./media/characters/kurribird/front.svg",
  1323. bottom: 0.015
  1324. }
  1325. },
  1326. frontAlt: {
  1327. height: math.unit(1.5, "meter"),
  1328. weight: math.unit(50, "kg"),
  1329. name: "Front (Alt)",
  1330. image: {
  1331. source: "./media/characters/kurribird/front-alt.svg",
  1332. extra: 1.45
  1333. }
  1334. },
  1335. },
  1336. [
  1337. {
  1338. name: "Normal",
  1339. height: math.unit(7, "feet")
  1340. },
  1341. {
  1342. name: "Big",
  1343. height: math.unit(12, "feet"),
  1344. default: true
  1345. },
  1346. {
  1347. name: "Macro",
  1348. height: math.unit(1500, "feet")
  1349. },
  1350. {
  1351. name: "Megamacro",
  1352. height: math.unit(2, "miles")
  1353. }
  1354. ]
  1355. ))
  1356. characterMakers.push(() => makeCharacter(
  1357. { name: "Elbial" },
  1358. {
  1359. front: {
  1360. height: math.unit(2, "meter"),
  1361. weight: math.unit(80, "kg"),
  1362. name: "Front",
  1363. image: {
  1364. source: "./media/characters/elbial/front.svg",
  1365. extra: 1643 / 1556,
  1366. bottom: 60.2 / 1696
  1367. }
  1368. },
  1369. side: {
  1370. height: math.unit(2, "meter"),
  1371. weight: math.unit(80, "kg"),
  1372. name: "Side",
  1373. image: {
  1374. source: "./media/characters/elbial/side.svg",
  1375. extra: 1630 / 1565,
  1376. bottom: 71.5 / 1697
  1377. }
  1378. },
  1379. back: {
  1380. height: math.unit(2, "meter"),
  1381. weight: math.unit(80, "kg"),
  1382. name: "Back",
  1383. image: {
  1384. source: "./media/characters/elbial/back.svg",
  1385. extra: 1668 / 1595,
  1386. bottom: 5.6 / 1672
  1387. }
  1388. },
  1389. frontDressed: {
  1390. height: math.unit(2, "meter"),
  1391. weight: math.unit(80, "kg"),
  1392. name: "Front (Dressed)",
  1393. image: {
  1394. source: "./media/characters/elbial/front-dressed.svg",
  1395. extra: 1653 / 1584,
  1396. bottom: 57 / 1708
  1397. }
  1398. },
  1399. genitals: {
  1400. height: math.unit(2 / 3.367, "meter"),
  1401. name: "Genitals",
  1402. image: {
  1403. source: "./media/characters/elbial/genitals.svg"
  1404. }
  1405. },
  1406. },
  1407. [
  1408. {
  1409. name: "Large",
  1410. height: math.unit(100, "feet")
  1411. },
  1412. {
  1413. name: "Macro",
  1414. height: math.unit(500, "feet"),
  1415. default: true
  1416. },
  1417. {
  1418. name: "Megamacro",
  1419. height: math.unit(10, "miles")
  1420. },
  1421. {
  1422. name: "Gigamacro",
  1423. height: math.unit(25000, "miles")
  1424. },
  1425. {
  1426. name: "Full-Size",
  1427. height: math.unit(8000000, "gigaparsecs")
  1428. }
  1429. ]
  1430. ))
  1431. characterMakers.push(() => makeCharacter(
  1432. { name: "Noah" },
  1433. {
  1434. front: {
  1435. height: math.unit(2, "meter"),
  1436. weight: math.unit(60, "kg"),
  1437. name: "Front",
  1438. image: {
  1439. source: "./media/characters/noah/front.svg"
  1440. }
  1441. },
  1442. talons: {
  1443. height: math.unit(0.315, "meter"),
  1444. name: "Talons",
  1445. image: {
  1446. source: "./media/characters/noah/talons.svg"
  1447. }
  1448. }
  1449. },
  1450. [
  1451. {
  1452. name: "Large",
  1453. height: math.unit(50, "feet")
  1454. },
  1455. {
  1456. name: "Macro",
  1457. height: math.unit(750, "feet"),
  1458. default: true
  1459. },
  1460. {
  1461. name: "Megamacro",
  1462. height: math.unit(50, "miles")
  1463. },
  1464. {
  1465. name: "Gigamacro",
  1466. height: math.unit(100000, "miles")
  1467. },
  1468. {
  1469. name: "Full-Size",
  1470. height: math.unit(3000000000, "miles")
  1471. }
  1472. ]
  1473. ))
  1474. characterMakers.push(() => makeCharacter(
  1475. { name: "Natalya" },
  1476. {
  1477. front: {
  1478. height: math.unit(2, "meter"),
  1479. weight: math.unit(80, "kg"),
  1480. name: "Front",
  1481. image: {
  1482. source: "./media/characters/natalya/front.svg"
  1483. }
  1484. },
  1485. back: {
  1486. height: math.unit(2, "meter"),
  1487. weight: math.unit(80, "kg"),
  1488. name: "Back",
  1489. image: {
  1490. source: "./media/characters/natalya/back.svg"
  1491. }
  1492. }
  1493. },
  1494. [
  1495. {
  1496. name: "Normal",
  1497. height: math.unit(150, "feet"),
  1498. default: true
  1499. },
  1500. {
  1501. name: "Megamacro",
  1502. height: math.unit(5, "miles")
  1503. },
  1504. {
  1505. name: "Full-Size",
  1506. height: math.unit(600, "kiloparsecs")
  1507. }
  1508. ]
  1509. ))
  1510. characterMakers.push(() => makeCharacter(
  1511. { name: "Erestrebah" },
  1512. {
  1513. front: {
  1514. height: math.unit(2, "meter"),
  1515. weight: math.unit(50, "kg"),
  1516. name: "Front",
  1517. image: {
  1518. source: "./media/characters/erestrebah/front.svg",
  1519. extra: 208 / 193,
  1520. bottom: 0.055
  1521. }
  1522. },
  1523. back: {
  1524. height: math.unit(2, "meter"),
  1525. weight: math.unit(50, "kg"),
  1526. name: "Back",
  1527. image: {
  1528. source: "./media/characters/erestrebah/back.svg",
  1529. extra: 1.3
  1530. }
  1531. }
  1532. },
  1533. [
  1534. {
  1535. name: "Normal",
  1536. height: math.unit(10, "feet")
  1537. },
  1538. {
  1539. name: "Large",
  1540. height: math.unit(50, "feet"),
  1541. default: true
  1542. },
  1543. {
  1544. name: "Macro",
  1545. height: math.unit(300, "feet")
  1546. },
  1547. {
  1548. name: "Macro+",
  1549. height: math.unit(750, "feet")
  1550. },
  1551. {
  1552. name: "Megamacro",
  1553. height: math.unit(3, "miles")
  1554. }
  1555. ]
  1556. ))
  1557. characterMakers.push(() => makeCharacter(
  1558. { name: "Jennifer" },
  1559. {
  1560. front: {
  1561. height: math.unit(2, "meter"),
  1562. weight: math.unit(80, "kg"),
  1563. name: "Front",
  1564. image: {
  1565. source: "./media/characters/jennifer/front.svg",
  1566. bottom: 0.11,
  1567. extra: 1.16
  1568. }
  1569. },
  1570. frontAlt: {
  1571. height: math.unit(2, "meter"),
  1572. weight: math.unit(80, "kg"),
  1573. name: "Front (Alt)",
  1574. image: {
  1575. source: "./media/characters/jennifer/front-alt.svg"
  1576. }
  1577. }
  1578. },
  1579. [
  1580. {
  1581. name: "Canon Height",
  1582. height: math.unit(120, "feet"),
  1583. default: true
  1584. },
  1585. {
  1586. name: "Macro+",
  1587. height: math.unit(300, "feet")
  1588. },
  1589. {
  1590. name: "Megamacro",
  1591. height: math.unit(20000, "feet")
  1592. }
  1593. ]
  1594. ))
  1595. characterMakers.push(() => makeCharacter(
  1596. { name: "Kalista" },
  1597. {
  1598. front: {
  1599. height: math.unit(2, "meter"),
  1600. weight: math.unit(50, "kg"),
  1601. name: "Front",
  1602. image: {
  1603. source: "./media/characters/kalista/front.svg",
  1604. extra: 1947 / 1700,
  1605. bottom: 76.6/1412.98
  1606. }
  1607. },
  1608. back: {
  1609. height: math.unit(2, "meter"),
  1610. weight: math.unit(50, "kg"),
  1611. name: "Back",
  1612. image: {
  1613. source: "./media/characters/kalista/back.svg",
  1614. extra: 1366 / 1156,
  1615. bottom: 33.9/1362.78
  1616. }
  1617. }
  1618. },
  1619. [
  1620. {
  1621. name: "Uncomfortably Small",
  1622. height: math.unit(10, "feet")
  1623. },
  1624. {
  1625. name: "Small",
  1626. height: math.unit(30, "feet")
  1627. },
  1628. {
  1629. name: "Macro",
  1630. height: math.unit(100, "feet"),
  1631. default: true
  1632. },
  1633. {
  1634. name: "Macro+",
  1635. height: math.unit(2000, "feet")
  1636. },
  1637. {
  1638. name: "True Form",
  1639. height: math.unit(8924, "miles")
  1640. }
  1641. ]
  1642. ))
  1643. characterMakers.push(() => makeCharacter(
  1644. { name: "GiantGrowingVixen" },
  1645. {
  1646. front: {
  1647. height: math.unit(2, "meter"),
  1648. weight: math.unit(120, "kg"),
  1649. name: "Front",
  1650. image: {
  1651. source: "./media/characters/ggv/front.svg"
  1652. }
  1653. },
  1654. side: {
  1655. height: math.unit(2, "meter"),
  1656. weight: math.unit(120, "kg"),
  1657. name: "Side",
  1658. image: {
  1659. source: "./media/characters/ggv/side.svg"
  1660. }
  1661. }
  1662. },
  1663. [
  1664. {
  1665. name: "Extremely Puny",
  1666. height: math.unit(9 + 5 / 12, "feet")
  1667. },
  1668. {
  1669. name: "Horribly Small",
  1670. height: math.unit(47.7, "miles"),
  1671. default: true
  1672. },
  1673. {
  1674. name: "Reasonably Sized",
  1675. height: math.unit(25000, "parsecs")
  1676. },
  1677. {
  1678. name: "Slightly Uncompressed",
  1679. height: math.unit(7.77e31, "parsecs")
  1680. },
  1681. {
  1682. name: "Omniversal",
  1683. height: math.unit(1e300, "meters")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Napalm" },
  1689. {
  1690. front: {
  1691. height: math.unit(2, "meter"),
  1692. weight: math.unit(75, "lb"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/napalm/front.svg"
  1696. }
  1697. },
  1698. back: {
  1699. height: math.unit(2, "meter"),
  1700. weight: math.unit(75, "lb"),
  1701. name: "Back",
  1702. image: {
  1703. source: "./media/characters/napalm/back.svg"
  1704. }
  1705. }
  1706. },
  1707. [
  1708. {
  1709. name: "Standard",
  1710. height: math.unit(55, "feet"),
  1711. default: true
  1712. }
  1713. ]
  1714. ))
  1715. characterMakers.push(() => makeCharacter(
  1716. { name: "Asana" },
  1717. {
  1718. front: {
  1719. height: math.unit(7 + 5 / 6, "feet"),
  1720. weight: math.unit(325, "lb"),
  1721. name: "Front",
  1722. image: {
  1723. source: "./media/characters/asana/front.svg",
  1724. extra: 1128 / 1068
  1725. }
  1726. },
  1727. back: {
  1728. height: math.unit(7 + 5 / 6, "feet"),
  1729. weight: math.unit(325, "lb"),
  1730. name: "Back",
  1731. image: {
  1732. source: "./media/characters/asana/back.svg",
  1733. extra: 1128 / 1068
  1734. }
  1735. },
  1736. },
  1737. [
  1738. {
  1739. name: "Standard",
  1740. height: math.unit(7 + 5 / 6, "feet"),
  1741. default: true
  1742. },
  1743. {
  1744. name: "Large",
  1745. height: math.unit(10, "meters")
  1746. },
  1747. {
  1748. name: "Macro",
  1749. height: math.unit(2500, "meters")
  1750. },
  1751. {
  1752. name: "Megamacro",
  1753. height: math.unit(5e6, "meters")
  1754. },
  1755. {
  1756. name: "Examacro",
  1757. height: math.unit(5e12, "lightyears")
  1758. },
  1759. {
  1760. name: "Max Size",
  1761. height: math.unit(1e31, "lightyears")
  1762. }
  1763. ]
  1764. ))
  1765. characterMakers.push(() => makeCharacter(
  1766. { name: "Ebony" },
  1767. {
  1768. front: {
  1769. height: math.unit(2, "meter"),
  1770. weight: math.unit(60, "kg"),
  1771. name: "Front",
  1772. image: {
  1773. source: "./media/characters/ebony/front.svg",
  1774. bottom: 0.03,
  1775. extra: 1045 / 810 + 0.03
  1776. }
  1777. },
  1778. side: {
  1779. height: math.unit(2, "meter"),
  1780. weight: math.unit(60, "kg"),
  1781. name: "Side",
  1782. image: {
  1783. source: "./media/characters/ebony/side.svg",
  1784. bottom: 0.03,
  1785. extra: 1045 / 810 + 0.03
  1786. }
  1787. },
  1788. back: {
  1789. height: math.unit(2, "meter"),
  1790. weight: math.unit(60, "kg"),
  1791. name: "Back",
  1792. image: {
  1793. source: "./media/characters/ebony/back.svg",
  1794. bottom: 0.01,
  1795. extra: 1045 / 810 + 0.01
  1796. }
  1797. },
  1798. },
  1799. [
  1800. // TODO check why I did this lol
  1801. {
  1802. name: "Standard",
  1803. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1804. default: true
  1805. },
  1806. {
  1807. name: "Macro",
  1808. height: math.unit(200, "feet")
  1809. },
  1810. {
  1811. name: "Gigamacro",
  1812. height: math.unit(13000, "km")
  1813. }
  1814. ]
  1815. ))
  1816. characterMakers.push(() => makeCharacter(
  1817. { name: "Mountain" },
  1818. {
  1819. front: {
  1820. height: math.unit(6, "feet"),
  1821. weight: math.unit(175, "lb"),
  1822. name: "Front",
  1823. image: {
  1824. source: "./media/characters/mountain/front.svg"
  1825. }
  1826. },
  1827. back: {
  1828. height: math.unit(6, "feet"),
  1829. weight: math.unit(175, "lb"),
  1830. name: "Back",
  1831. image: {
  1832. source: "./media/characters/mountain/back.svg"
  1833. }
  1834. },
  1835. },
  1836. [
  1837. {
  1838. name: "Large",
  1839. height: math.unit(20, "meters")
  1840. },
  1841. {
  1842. name: "Macro",
  1843. height: math.unit(300, "meters")
  1844. },
  1845. {
  1846. name: "Gigamacro",
  1847. height: math.unit(10000, "km"),
  1848. default: true
  1849. },
  1850. {
  1851. name: "Examacro",
  1852. height: math.unit(10e9, "lightyears")
  1853. }
  1854. ]
  1855. ))
  1856. characterMakers.push(() => makeCharacter(
  1857. { name: "Rick" },
  1858. {
  1859. front: {
  1860. height: math.unit(8, "feet"),
  1861. weight: math.unit(500, "lb"),
  1862. name: "Front",
  1863. image: {
  1864. source: "./media/characters/rick/front.svg"
  1865. }
  1866. }
  1867. },
  1868. [
  1869. {
  1870. name: "Normal",
  1871. height: math.unit(8, "feet"),
  1872. default: true
  1873. },
  1874. {
  1875. name: "Macro",
  1876. height: math.unit(5, "km")
  1877. }
  1878. ]
  1879. ))
  1880. characterMakers.push(() => makeCharacter(
  1881. { name: "Ona" },
  1882. {
  1883. front: {
  1884. height: math.unit(8, "feet"),
  1885. weight: math.unit(120, "lb"),
  1886. name: "Front",
  1887. image: {
  1888. source: "./media/characters/ona/front.svg"
  1889. }
  1890. },
  1891. frontAlt: {
  1892. height: math.unit(8, "feet"),
  1893. weight: math.unit(120, "lb"),
  1894. name: "Front (Alt)",
  1895. image: {
  1896. source: "./media/characters/ona/front-alt.svg"
  1897. }
  1898. },
  1899. back: {
  1900. height: math.unit(8, "feet"),
  1901. weight: math.unit(120, "lb"),
  1902. name: "Back",
  1903. image: {
  1904. source: "./media/characters/ona/back.svg"
  1905. }
  1906. },
  1907. foot: {
  1908. height: math.unit(1.1, "feet"),
  1909. name: "Foot",
  1910. image: {
  1911. source: "./media/characters/ona/foot.svg"
  1912. }
  1913. }
  1914. },
  1915. [
  1916. {
  1917. name: "Megamacro",
  1918. height: math.unit(70, "km"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Gigamacro",
  1923. height: math.unit(681818, "miles")
  1924. },
  1925. {
  1926. name: "Examacro",
  1927. height: math.unit(3800000, "lightyears")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "Mech" },
  1933. {
  1934. front: {
  1935. height: math.unit(12, "feet"),
  1936. weight: math.unit(3000, "lb"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/mech/front.svg",
  1940. bottom: 0.025,
  1941. }
  1942. },
  1943. back: {
  1944. height: math.unit(12, "feet"),
  1945. weight: math.unit(3000, "lb"),
  1946. name: "Back",
  1947. image: {
  1948. source: "./media/characters/mech/back.svg",
  1949. bottom: 0.03,
  1950. }
  1951. }
  1952. },
  1953. [
  1954. {
  1955. name: "Normal",
  1956. height: math.unit(12, "feet")
  1957. },
  1958. {
  1959. name: "Macro",
  1960. height: math.unit(300, "feet"),
  1961. default: true
  1962. },
  1963. {
  1964. name: "Macro+",
  1965. height: math.unit(1500, "feet")
  1966. },
  1967. ]
  1968. ))
  1969. characterMakers.push(() => makeCharacter(
  1970. { name: "Gregory" },
  1971. {
  1972. front: {
  1973. height: math.unit(1.3, "meter"),
  1974. weight: math.unit(30, "kg"),
  1975. name: "Front",
  1976. image: {
  1977. source: "./media/characters/gregory/front.svg",
  1978. }
  1979. }
  1980. },
  1981. [
  1982. {
  1983. name: "Normal",
  1984. height: math.unit(1.3, "meter"),
  1985. default: true
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(20, "meter")
  1990. }
  1991. ]
  1992. ))
  1993. characterMakers.push(() => makeCharacter(
  1994. { name: "Elory" },
  1995. {
  1996. front: {
  1997. height: math.unit(2.8, "meter"),
  1998. weight: math.unit(200, "kg"),
  1999. name: "Front",
  2000. image: {
  2001. source: "./media/characters/elory/front.svg",
  2002. }
  2003. }
  2004. },
  2005. [
  2006. {
  2007. name: "Normal",
  2008. height: math.unit(2.8, "meter"),
  2009. default: true
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(38, "meter")
  2014. }
  2015. ]
  2016. ))
  2017. characterMakers.push(() => makeCharacter(
  2018. { name: "Angelpatamon" },
  2019. {
  2020. front: {
  2021. height: math.unit(470, "feet"),
  2022. weight: math.unit(924, "tons"),
  2023. name: "Front",
  2024. image: {
  2025. source: "./media/characters/angelpatamon/front.svg",
  2026. }
  2027. }
  2028. },
  2029. [
  2030. {
  2031. name: "Normal",
  2032. height: math.unit(470, "feet"),
  2033. default: true
  2034. },
  2035. {
  2036. name: "Deity Size I",
  2037. height: math.unit(28651.2, "km")
  2038. },
  2039. {
  2040. name: "Deity Size II",
  2041. height: math.unit(171907.2, "km")
  2042. }
  2043. ]
  2044. ))
  2045. characterMakers.push(() => makeCharacter(
  2046. { name: "Cryae" },
  2047. {
  2048. side: {
  2049. height: math.unit(7.2, "meter"),
  2050. weight: math.unit(8.2, "tons"),
  2051. name: "Side",
  2052. image: {
  2053. source: "./media/characters/cryae/side.svg",
  2054. extra: 3500 / 1500
  2055. }
  2056. }
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(7.2, "meter"),
  2062. default: true
  2063. }
  2064. ]
  2065. ))
  2066. characterMakers.push(() => makeCharacter(
  2067. { name: "Xera" },
  2068. {
  2069. front: {
  2070. height: math.unit(6, "feet"),
  2071. weight: math.unit(175, "lb"),
  2072. name: "Front",
  2073. image: {
  2074. source: "./media/characters/xera/front.svg",
  2075. extra: 2300 / 2061
  2076. }
  2077. },
  2078. side: {
  2079. height: math.unit(6, "feet"),
  2080. weight: math.unit(175, "lb"),
  2081. name: "Side",
  2082. image: {
  2083. source: "./media/characters/xera/side.svg",
  2084. extra: 2300 / 2061
  2085. }
  2086. },
  2087. back: {
  2088. height: math.unit(6, "feet"),
  2089. weight: math.unit(175, "lb"),
  2090. name: "Back",
  2091. image: {
  2092. source: "./media/characters/xera/back.svg"
  2093. }
  2094. },
  2095. },
  2096. [
  2097. {
  2098. name: "Small",
  2099. height: math.unit(10, "feet")
  2100. },
  2101. {
  2102. name: "Macro",
  2103. height: math.unit(500, "meters"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Macro+",
  2108. height: math.unit(10, "km")
  2109. },
  2110. {
  2111. name: "Gigamacro",
  2112. height: math.unit(25000, "km")
  2113. },
  2114. {
  2115. name: "Teramacro",
  2116. height: math.unit(3e6, "km")
  2117. }
  2118. ]
  2119. ))
  2120. characterMakers.push(() => makeCharacter(
  2121. { name: "Nebula" },
  2122. {
  2123. front: {
  2124. height: math.unit(6, "feet"),
  2125. weight: math.unit(175, "lb"),
  2126. name: "Front",
  2127. image: {
  2128. source: "./media/characters/nebula/front.svg",
  2129. extra: 2600 / 2450
  2130. }
  2131. }
  2132. },
  2133. [
  2134. {
  2135. name: "Small",
  2136. height: math.unit(4.5, "meters")
  2137. },
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(1500, "meters"),
  2141. default: true
  2142. },
  2143. {
  2144. name: "Megamacro",
  2145. height: math.unit(150, "km")
  2146. },
  2147. {
  2148. name: "Gigamacro",
  2149. height: math.unit(27000, "km")
  2150. }
  2151. ]
  2152. ))
  2153. characterMakers.push(() => makeCharacter(
  2154. { name: "Abysgar" },
  2155. {
  2156. front: {
  2157. height: math.unit(6, "feet"),
  2158. weight: math.unit(225, "lb"),
  2159. name: "Front",
  2160. image: {
  2161. source: "./media/characters/abysgar/front.svg"
  2162. }
  2163. }
  2164. },
  2165. [
  2166. {
  2167. name: "Small",
  2168. height: math.unit(4.5, "meters")
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(1250, "meters"),
  2173. default: true
  2174. },
  2175. {
  2176. name: "Megamacro",
  2177. height: math.unit(125, "km")
  2178. },
  2179. {
  2180. name: "Gigamacro",
  2181. height: math.unit(26000, "km")
  2182. }
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Yakuz" },
  2187. {
  2188. front: {
  2189. height: math.unit(6, "feet"),
  2190. weight: math.unit(180, "lb"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/yakuz/front.svg"
  2194. }
  2195. }
  2196. },
  2197. [
  2198. {
  2199. name: "Small",
  2200. height: math.unit(5, "meters")
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(1500, "meters"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(200, "km")
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(100000, "km")
  2214. }
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Mirova" },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(175, "lb"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/mirova/front.svg"
  2226. }
  2227. }
  2228. },
  2229. [
  2230. {
  2231. name: "Small",
  2232. height: math.unit(5, "meters")
  2233. },
  2234. {
  2235. name: "Macro",
  2236. height: math.unit(900, "meters"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Megamacro",
  2241. height: math.unit(135, "km")
  2242. },
  2243. {
  2244. name: "Gigamacro",
  2245. height: math.unit(20000, "km")
  2246. }
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Asana (Mech)" },
  2251. {
  2252. side: {
  2253. height: math.unit(28.35, "feet"),
  2254. weight: math.unit(99.75, "tons"),
  2255. name: "Side",
  2256. image: {
  2257. source: "./media/characters/asana-mech/side.svg"
  2258. }
  2259. }
  2260. },
  2261. [
  2262. {
  2263. name: "Normal",
  2264. height: math.unit(28.35, "feet"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro",
  2269. height: math.unit(2500, "feet")
  2270. },
  2271. {
  2272. name: "Megamacro",
  2273. height: math.unit(25, "miles")
  2274. },
  2275. {
  2276. name: "Examacro",
  2277. height: math.unit(6e8, "lightyears")
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Ashtrek" },
  2283. {
  2284. front: {
  2285. height: math.unit(2, "meters"),
  2286. weight: math.unit(70, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/ashtrek/front.svg",
  2290. extra: 560 / 524,
  2291. bottom: 0.01
  2292. }
  2293. },
  2294. frontArmor: {
  2295. height: math.unit(2, "meters"),
  2296. weight: math.unit(76, "kg"),
  2297. name: "Front (Armor)",
  2298. image: {
  2299. source: "./media/characters/ashtrek/front-armor.svg",
  2300. extra: 561 / 527,
  2301. bottom: 0.01
  2302. }
  2303. },
  2304. side: {
  2305. height: math.unit(2, "meters"),
  2306. weight: math.unit(70, "kg"),
  2307. name: "Side",
  2308. image: {
  2309. source: "./media/characters/ashtrek/side.svg",
  2310. extra: 1717 / 1609,
  2311. bottom: 0.005
  2312. }
  2313. },
  2314. back: {
  2315. height: math.unit(2, "meters"),
  2316. weight: math.unit(70, "kg"),
  2317. name: "Back",
  2318. image: {
  2319. source: "./media/characters/ashtrek/back.svg",
  2320. extra: 1570 / 1501
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "DEFCON 5",
  2327. height: math.unit(5, "meters")
  2328. },
  2329. {
  2330. name: "DEFCON 4",
  2331. height: math.unit(500, "meters"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "DEFCON 3",
  2336. height: math.unit(5, "km")
  2337. },
  2338. {
  2339. name: "DEFCON 2",
  2340. height: math.unit(500, "km")
  2341. },
  2342. {
  2343. name: "DEFCON 1",
  2344. height: math.unit(500000, "km")
  2345. },
  2346. {
  2347. name: "DEFCON 0",
  2348. height: math.unit(3, "gigaparsecs")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Gale" },
  2354. {
  2355. front: {
  2356. height: math.unit(2, "meters"),
  2357. weight: math.unit(76, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/gale/front.svg"
  2361. }
  2362. },
  2363. frontAlt1: {
  2364. height: math.unit(2, "meters"),
  2365. weight: math.unit(76, "kg"),
  2366. name: "Front (Alt 1)",
  2367. image: {
  2368. source: "./media/characters/gale/front-alt-1.svg"
  2369. }
  2370. },
  2371. frontAlt2: {
  2372. height: math.unit(2, "meters"),
  2373. weight: math.unit(76, "kg"),
  2374. name: "Front (Alt 2)",
  2375. image: {
  2376. source: "./media/characters/gale/front-alt-2.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(7, "feet")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(150, "feet"),
  2388. default: true
  2389. },
  2390. {
  2391. name: "Macro+",
  2392. height: math.unit(300, "feet")
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Draylen" },
  2398. {
  2399. front: {
  2400. height: math.unit(2, "meters"),
  2401. weight: math.unit(76, "kg"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/draylen/front.svg"
  2405. }
  2406. }
  2407. },
  2408. [
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(150, "feet"),
  2412. default: true
  2413. }
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Chez" },
  2418. {
  2419. front: {
  2420. height: math.unit(7 + 9 / 12, "feet"),
  2421. weight: math.unit(379, "lbs"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/chez/front.svg"
  2425. }
  2426. },
  2427. side: {
  2428. height: math.unit(7 + 9 / 12, "feet"),
  2429. weight: math.unit(379, "lbs"),
  2430. name: "Side",
  2431. image: {
  2432. source: "./media/characters/chez/side.svg"
  2433. }
  2434. }
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7 + 9 / 12, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "God King",
  2444. height: math.unit(9750000, "meters")
  2445. }
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Kaylum" },
  2450. {
  2451. front: {
  2452. height: math.unit(6, "feet"),
  2453. weight: math.unit(275, "lbs"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/kaylum/front.svg",
  2457. bottom: 0.01,
  2458. extra: 1166 / 1031
  2459. }
  2460. },
  2461. frontWingless: {
  2462. height: math.unit(6, "feet"),
  2463. weight: math.unit(275, "lbs"),
  2464. name: "Front (Wingless)",
  2465. image: {
  2466. source: "./media/characters/kaylum/front-wingless.svg",
  2467. bottom: 0.01,
  2468. extra: 1117 / 1031
  2469. }
  2470. }
  2471. },
  2472. [
  2473. {
  2474. name: "Normal",
  2475. height: math.unit(3.05, "meters")
  2476. },
  2477. {
  2478. name: "Master",
  2479. height: math.unit(5.5, "meters")
  2480. },
  2481. {
  2482. name: "Rampage",
  2483. height: math.unit(19, "meters")
  2484. },
  2485. {
  2486. name: "Macro Lite",
  2487. height: math.unit(37, "meters")
  2488. },
  2489. {
  2490. name: "Hyper Predator",
  2491. height: math.unit(61, "meters")
  2492. },
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(138, "meters"),
  2496. default: true
  2497. }
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Geta" },
  2502. {
  2503. front: {
  2504. height: math.unit(6, "feet"),
  2505. weight: math.unit(150, "lbs"),
  2506. name: "Front",
  2507. image: {
  2508. source: "./media/characters/geta/front.svg"
  2509. }
  2510. }
  2511. },
  2512. [
  2513. {
  2514. name: "Micro",
  2515. height: math.unit(3, "inches"),
  2516. default: true
  2517. },
  2518. {
  2519. name: "Normal",
  2520. height: math.unit(5 + 5 / 12, "feet")
  2521. }
  2522. ]
  2523. ))
  2524. characterMakers.push(() => makeCharacter(
  2525. { name: "Tyrnn" },
  2526. {
  2527. front: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(300, "lbs"),
  2530. name: "Front",
  2531. image: {
  2532. source: "./media/characters/tyrnn/front.svg"
  2533. }
  2534. }
  2535. },
  2536. [
  2537. {
  2538. name: "Main Height",
  2539. height: math.unit(355, "feet"),
  2540. default: true
  2541. },
  2542. {
  2543. name: "Fave. Height",
  2544. height: math.unit(2400, "feet")
  2545. }
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Apple" },
  2550. {
  2551. front: {
  2552. height: math.unit(6, "feet"),
  2553. weight: math.unit(300, "lbs"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/appledectomy/front.svg"
  2557. }
  2558. }
  2559. },
  2560. [
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(2500, "feet")
  2564. },
  2565. {
  2566. name: "Megamacro",
  2567. height: math.unit(50, "miles"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Gigamacro",
  2572. height: math.unit(5000, "miles")
  2573. },
  2574. {
  2575. name: "Teramacro",
  2576. height: math.unit(250000, "miles")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Vulpes" },
  2582. {
  2583. front: {
  2584. height: math.unit(6, "feet"),
  2585. weight: math.unit(200, "lbs"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/vulpes/front.svg",
  2589. extra: 573 / 543,
  2590. bottom: 0.033
  2591. }
  2592. },
  2593. side: {
  2594. height: math.unit(6, "feet"),
  2595. weight: math.unit(200, "lbs"),
  2596. name: "Side",
  2597. image: {
  2598. source: "./media/characters/vulpes/side.svg",
  2599. extra: 573 / 543,
  2600. bottom: 0.01
  2601. }
  2602. },
  2603. back: {
  2604. height: math.unit(6, "feet"),
  2605. weight: math.unit(200, "lbs"),
  2606. name: "Back",
  2607. image: {
  2608. source: "./media/characters/vulpes/back.svg",
  2609. extra: 573 / 543,
  2610. }
  2611. },
  2612. feet: {
  2613. height: math.unit(1.276, "feet"),
  2614. name: "Feet",
  2615. image: {
  2616. source: "./media/characters/vulpes/feet.svg"
  2617. }
  2618. },
  2619. maw: {
  2620. height: math.unit(1.18, "feet"),
  2621. name: "Maw",
  2622. image: {
  2623. source: "./media/characters/vulpes/maw.svg"
  2624. }
  2625. },
  2626. },
  2627. [
  2628. {
  2629. name: "Micro",
  2630. height: math.unit(2, "inches")
  2631. },
  2632. {
  2633. name: "Normal",
  2634. height: math.unit(6.3, "feet")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(850, "feet")
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(7500, "feet"),
  2643. default: true
  2644. },
  2645. {
  2646. name: "Gigamacro",
  2647. height: math.unit(570000, "miles")
  2648. }
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Rain Fallen" },
  2653. {
  2654. front: {
  2655. height: math.unit(6, "feet"),
  2656. weight: math.unit(210, "lbs"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/rain-fallen/front.svg"
  2660. }
  2661. },
  2662. side: {
  2663. height: math.unit(6, "feet"),
  2664. weight: math.unit(210, "lbs"),
  2665. name: "Side",
  2666. image: {
  2667. source: "./media/characters/rain-fallen/side.svg"
  2668. }
  2669. },
  2670. back: {
  2671. height: math.unit(6, "feet"),
  2672. weight: math.unit(210, "lbs"),
  2673. name: "Back",
  2674. image: {
  2675. source: "./media/characters/rain-fallen/back.svg"
  2676. }
  2677. },
  2678. feral: {
  2679. height: math.unit(9, "feet"),
  2680. weight: math.unit(700, "lbs"),
  2681. name: "Feral",
  2682. image: {
  2683. source: "./media/characters/rain-fallen/feral.svg"
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(5, "meter")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(150, "meter"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Megamacro",
  2699. height: math.unit(278e6, "meter")
  2700. },
  2701. {
  2702. name: "Gigamacro",
  2703. height: math.unit(2e9, "meter")
  2704. },
  2705. {
  2706. name: "Teramacro",
  2707. height: math.unit(8e12, "meter")
  2708. },
  2709. {
  2710. name: "Devourer",
  2711. height: math.unit(14, "zettameters")
  2712. },
  2713. {
  2714. name: "Scarlet King",
  2715. height: math.unit(18, "yottameters")
  2716. },
  2717. {
  2718. name: "Void",
  2719. height: math.unit(6.66e66, "yottameters")
  2720. }
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Zaakira" },
  2725. {
  2726. standing: {
  2727. height: math.unit(6, "feet"),
  2728. weight: math.unit(180, "lbs"),
  2729. name: "Standing",
  2730. image: {
  2731. source: "./media/characters/zaakira/standing.svg"
  2732. }
  2733. },
  2734. laying: {
  2735. height: math.unit(3, "feet"),
  2736. weight: math.unit(180, "lbs"),
  2737. name: "Laying",
  2738. image: {
  2739. source: "./media/characters/zaakira/laying.svg"
  2740. }
  2741. },
  2742. },
  2743. [
  2744. {
  2745. name: "Normal",
  2746. height: math.unit(12, "feet")
  2747. },
  2748. {
  2749. name: "Macro",
  2750. height: math.unit(279, "feet"),
  2751. default: true
  2752. }
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Sigvald" },
  2757. {
  2758. front: {
  2759. height: math.unit(6, "feet"),
  2760. weight: math.unit(250, "lbs"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/sigvald/front.svg",
  2764. extra: 1000 / 850
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(250, "lbs"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/sigvald/back.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(8, "feet")
  2780. },
  2781. {
  2782. name: "Large",
  2783. height: math.unit(12, "feet")
  2784. },
  2785. {
  2786. name: "Larger",
  2787. height: math.unit(20, "feet")
  2788. },
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(150, "feet")
  2792. },
  2793. {
  2794. name: "Macro+",
  2795. height: math.unit(200, "feet"),
  2796. default: true
  2797. },
  2798. ]
  2799. ))
  2800. characterMakers.push(() => makeCharacter(
  2801. { name: "Scott" },
  2802. {
  2803. side: {
  2804. height: math.unit(12, "feet"),
  2805. weight: math.unit(2000, "kg"),
  2806. name: "Side",
  2807. image: {
  2808. source: "./media/characters/scott/side.svg",
  2809. extra: 754/724,
  2810. bottom: 0.069
  2811. }
  2812. },
  2813. upright: {
  2814. height: math.unit(12, "feet"),
  2815. weight: math.unit(2000, "kg"),
  2816. name: "Upright",
  2817. image: {
  2818. source: "./media/characters/scott/upright.svg",
  2819. extra: 3881/3722,
  2820. bottom: 0.05
  2821. }
  2822. },
  2823. },
  2824. [
  2825. {
  2826. name: "Normal",
  2827. height: math.unit(12, "feet"),
  2828. default: true
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Tobias" },
  2834. {
  2835. side: {
  2836. height: math.unit(8, "meters"),
  2837. weight: math.unit(84755, "lbs"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/tobias/side.svg",
  2841. extra: 1474 / 1096,
  2842. bottom: 38.9 / 1513.1235
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(8, "meters"),
  2850. default: true
  2851. },
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Kieran" },
  2856. {
  2857. front: {
  2858. height: math.unit(5.5, "feet"),
  2859. weight: math.unit(400, "lbs"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/kieran/front.svg",
  2863. extra: 2694/2364,
  2864. bottom: 217/2908
  2865. }
  2866. },
  2867. side: {
  2868. height: math.unit(5.5, "feet"),
  2869. weight: math.unit(400, "lbs"),
  2870. name: "Side",
  2871. image: {
  2872. source: "./media/characters/kieran/side.svg",
  2873. extra: 875/777,
  2874. bottom: 84.6/959
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(5.5, "feet"),
  2882. default: true
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Sanya" },
  2888. {
  2889. side: {
  2890. height: math.unit(2, "meters"),
  2891. weight: math.unit(70, "kg"),
  2892. name: "Side",
  2893. image: {
  2894. source: "./media/characters/sanya/side.svg",
  2895. bottom: 0.02,
  2896. extra: 1.02
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Small",
  2903. height: math.unit(2, "meters")
  2904. },
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(3, "meters")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(16, "meters"),
  2912. default: true
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Miranda" },
  2918. {
  2919. side: {
  2920. height: math.unit(2, "meters"),
  2921. weight: math.unit(120, "kg"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/miranda/front.svg",
  2925. extra: 10.6 / 10
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(10, "feet"),
  2933. default: true
  2934. }
  2935. ]
  2936. ))
  2937. characterMakers.push(() => makeCharacter(
  2938. { name: "James" },
  2939. {
  2940. side: {
  2941. height: math.unit(2, "meters"),
  2942. weight: math.unit(100, "kg"),
  2943. name: "Front",
  2944. image: {
  2945. source: "./media/characters/james/front.svg",
  2946. extra: 10 / 8.5
  2947. }
  2948. },
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(8.5, "feet"),
  2954. default: true
  2955. }
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "Heather" },
  2960. {
  2961. side: {
  2962. height: math.unit(9.5, "feet"),
  2963. weight: math.unit(2500, "lbs"),
  2964. name: "Side",
  2965. image: {
  2966. source: "./media/characters/heather/side.svg"
  2967. }
  2968. },
  2969. },
  2970. [
  2971. {
  2972. name: "Normal",
  2973. height: math.unit(9.5, "feet"),
  2974. default: true
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Lukas" },
  2980. {
  2981. side: {
  2982. height: math.unit(6.5, "feet"),
  2983. weight: math.unit(400, "lbs"),
  2984. name: "Side",
  2985. image: {
  2986. source: "./media/characters/lukas/side.svg",
  2987. extra: 7.25 / 6.5
  2988. }
  2989. },
  2990. },
  2991. [
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(6.5, "feet"),
  2995. default: true
  2996. }
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "Louise" },
  3001. {
  3002. side: {
  3003. height: math.unit(5, "feet"),
  3004. weight: math.unit(3000, "lbs"),
  3005. name: "Side",
  3006. image: {
  3007. source: "./media/characters/louise/side.svg"
  3008. }
  3009. },
  3010. },
  3011. [
  3012. {
  3013. name: "Normal",
  3014. height: math.unit(5, "feet"),
  3015. default: true
  3016. }
  3017. ]
  3018. ))
  3019. characterMakers.push(() => makeCharacter(
  3020. { name: "Ramona" },
  3021. {
  3022. side: {
  3023. height: math.unit(6, "feet"),
  3024. weight: math.unit(150, "lbs"),
  3025. name: "Side",
  3026. image: {
  3027. source: "./media/characters/ramona/side.svg"
  3028. }
  3029. },
  3030. },
  3031. [
  3032. {
  3033. name: "Normal",
  3034. height: math.unit(5.3, "meters"),
  3035. default: true
  3036. },
  3037. {
  3038. name: "Macro",
  3039. height: math.unit(20, "stories")
  3040. },
  3041. {
  3042. name: "Macro+",
  3043. height: math.unit(50, "stories")
  3044. },
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Deerpuff" },
  3049. {
  3050. standing: {
  3051. height: math.unit(5.75, "feet"),
  3052. weight: math.unit(160, "lbs"),
  3053. name: "Standing",
  3054. image: {
  3055. source: "./media/characters/deerpuff/standing.svg",
  3056. extra: 682 / 624
  3057. }
  3058. },
  3059. sitting: {
  3060. height: math.unit(5.75 / 1.79, "feet"),
  3061. weight: math.unit(160, "lbs"),
  3062. name: "Sitting",
  3063. image: {
  3064. source: "./media/characters/deerpuff/sitting.svg",
  3065. bottom: 44 / 400,
  3066. extra: 1
  3067. }
  3068. },
  3069. taurLaying: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(400, "lbs"),
  3072. name: "Taur (Laying)",
  3073. image: {
  3074. source: "./media/characters/deerpuff/taur-laying.svg"
  3075. }
  3076. },
  3077. },
  3078. [
  3079. {
  3080. name: "Puffball",
  3081. height: math.unit(6, "inches")
  3082. },
  3083. {
  3084. name: "Normalpuff",
  3085. height: math.unit(5.75, "feet")
  3086. },
  3087. {
  3088. name: "Macropuff",
  3089. height: math.unit(1500, "feet"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Megapuff",
  3094. height: math.unit(500, "miles")
  3095. },
  3096. {
  3097. name: "Gigapuff",
  3098. height: math.unit(250000, "miles")
  3099. },
  3100. {
  3101. name: "Omegapuff",
  3102. height: math.unit(1000, "lightyears")
  3103. },
  3104. ]
  3105. ))
  3106. characterMakers.push(() => makeCharacter(
  3107. { name: "Vivian" },
  3108. {
  3109. stomping: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(170, "lbs"),
  3112. name: "Stomping",
  3113. image: {
  3114. source: "./media/characters/vivian/stomping.svg"
  3115. }
  3116. },
  3117. sitting: {
  3118. height: math.unit(6 / 1.75, "feet"),
  3119. weight: math.unit(170, "lbs"),
  3120. name: "Sitting",
  3121. image: {
  3122. source: "./media/characters/vivian/sitting.svg",
  3123. bottom: 1 / 6.4,
  3124. extra: 1,
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(7, "feet"),
  3132. default: true
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(10, "stories")
  3137. },
  3138. {
  3139. name: "Macro+",
  3140. height: math.unit(30, "stories")
  3141. },
  3142. {
  3143. name: "Megamacro",
  3144. height: math.unit(10, "miles")
  3145. },
  3146. {
  3147. name: "Megamacro+",
  3148. height: math.unit(2750000, "meters")
  3149. },
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Prince" },
  3154. {
  3155. front: {
  3156. height: math.unit(6, "feet"),
  3157. weight: math.unit(160, "lbs"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/prince/front.svg",
  3161. extra: 3400 / 3000
  3162. }
  3163. },
  3164. jumping: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(160, "lbs"),
  3167. name: "Jumping",
  3168. image: {
  3169. source: "./media/characters/prince/jump.svg",
  3170. extra: 2555 / 2134
  3171. }
  3172. },
  3173. },
  3174. [
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(7.75, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Not cute",
  3182. height: math.unit(17, "feet")
  3183. },
  3184. {
  3185. name: "I said NOT",
  3186. height: math.unit(91, "feet")
  3187. },
  3188. {
  3189. name: "Please stop",
  3190. height: math.unit(560, "feet")
  3191. },
  3192. {
  3193. name: "What have you done",
  3194. height: math.unit(2200, "feet")
  3195. },
  3196. {
  3197. name: "Deer God",
  3198. height: math.unit(3.6, "miles")
  3199. },
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Psymon" },
  3204. {
  3205. standing: {
  3206. height: math.unit(6, "feet"),
  3207. weight: math.unit(300, "lbs"),
  3208. name: "Standing",
  3209. image: {
  3210. source: "./media/characters/psymon/standing.svg",
  3211. extra: 1888 / 1810,
  3212. bottom: 0.05
  3213. }
  3214. },
  3215. slithering: {
  3216. height: math.unit(6, "feet"),
  3217. weight: math.unit(300, "lbs"),
  3218. name: "Slithering",
  3219. image: {
  3220. source: "./media/characters/psymon/slithering.svg",
  3221. extra: 1330 / 1224
  3222. }
  3223. },
  3224. slitheringAlt: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(300, "lbs"),
  3227. name: "Slithering (Alt)",
  3228. image: {
  3229. source: "./media/characters/psymon/slithering-alt.svg",
  3230. extra: 1330 / 1224
  3231. }
  3232. },
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(11.25, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Large",
  3242. height: math.unit(27, "feet")
  3243. },
  3244. {
  3245. name: "Giant",
  3246. height: math.unit(87, "feet")
  3247. },
  3248. {
  3249. name: "Macro",
  3250. height: math.unit(365, "feet")
  3251. },
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(3, "miles")
  3255. },
  3256. {
  3257. name: "World Serpent",
  3258. height: math.unit(8000, "miles")
  3259. },
  3260. ]
  3261. ))
  3262. characterMakers.push(() => makeCharacter(
  3263. { name: "Daimos" },
  3264. {
  3265. front: {
  3266. height: math.unit(6, "feet"),
  3267. weight: math.unit(180, "lbs"),
  3268. name: "Front",
  3269. image: {
  3270. source: "./media/characters/daimos/front.svg",
  3271. extra: 4160 / 3897,
  3272. bottom: 0.021
  3273. }
  3274. }
  3275. },
  3276. [
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(8, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Big Dog",
  3284. height: math.unit(22, "feet")
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(127, "feet")
  3289. },
  3290. {
  3291. name: "Megamacro",
  3292. height: math.unit(3600, "feet")
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "Blake" },
  3298. {
  3299. side: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(180, "lbs"),
  3302. name: "Side",
  3303. image: {
  3304. source: "./media/characters/blake/side.svg",
  3305. extra: 1212 / 1120,
  3306. bottom: 0.05
  3307. }
  3308. },
  3309. crouched: {
  3310. height: math.unit(6 * 0.57, "feet"),
  3311. weight: math.unit(180, "lbs"),
  3312. name: "Crouched",
  3313. image: {
  3314. source: "./media/characters/blake/crouched.svg",
  3315. extra: 840 / 587,
  3316. bottom: 0.04
  3317. }
  3318. },
  3319. bent: {
  3320. height: math.unit(6 * 0.75, "feet"),
  3321. weight: math.unit(180, "lbs"),
  3322. name: "Bent",
  3323. image: {
  3324. source: "./media/characters/blake/bent.svg",
  3325. extra: 592 / 544,
  3326. bottom: 0.035
  3327. }
  3328. },
  3329. },
  3330. [
  3331. {
  3332. name: "Normal",
  3333. height: math.unit(8 + 1 / 6, "feet"),
  3334. default: true
  3335. },
  3336. {
  3337. name: "Big Backside",
  3338. height: math.unit(37, "feet")
  3339. },
  3340. {
  3341. name: "Subway Shredder",
  3342. height: math.unit(72, "feet")
  3343. },
  3344. {
  3345. name: "City Carver",
  3346. height: math.unit(1675, "feet")
  3347. },
  3348. {
  3349. name: "Tectonic Tweaker",
  3350. height: math.unit(2300, "miles")
  3351. },
  3352. ]
  3353. ))
  3354. characterMakers.push(() => makeCharacter(
  3355. { name: "Guisetto" },
  3356. {
  3357. front: {
  3358. height: math.unit(6, "feet"),
  3359. weight: math.unit(180, "lbs"),
  3360. name: "Front",
  3361. image: {
  3362. source: "./media/characters/guisetto/front.svg",
  3363. extra: 856 / 817,
  3364. bottom: 0.06
  3365. }
  3366. },
  3367. airborne: {
  3368. height: math.unit(6, "feet"),
  3369. weight: math.unit(180, "lbs"),
  3370. name: "Airborne",
  3371. image: {
  3372. source: "./media/characters/guisetto/airborne.svg",
  3373. extra: 584 / 525
  3374. }
  3375. },
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(10 + 11 / 12, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Large",
  3385. height: math.unit(35, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(475, "feet")
  3390. },
  3391. ]
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Luxor" },
  3395. {
  3396. front: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(180, "lbs"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/luxor/front.svg",
  3402. extra: 2940 / 2152
  3403. }
  3404. },
  3405. back: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(180, "lbs"),
  3408. name: "Back",
  3409. image: {
  3410. source: "./media/characters/luxor/back.svg",
  3411. extra: 1083 / 960
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(5 + 5 / 6, "feet"),
  3419. default: true
  3420. },
  3421. {
  3422. name: "Lamp",
  3423. height: math.unit(50, "feet")
  3424. },
  3425. {
  3426. name: "Lämp",
  3427. height: math.unit(300, "feet")
  3428. },
  3429. {
  3430. name: "The sun is a lamp",
  3431. height: math.unit(250000, "miles")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Huoyan" },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(50, "lbs"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/huoyan/front.svg"
  3444. }
  3445. },
  3446. side: {
  3447. height: math.unit(6, "feet"),
  3448. weight: math.unit(180, "lbs"),
  3449. name: "Side",
  3450. image: {
  3451. source: "./media/characters/huoyan/side.svg"
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Chef",
  3458. height: math.unit(9, "feet")
  3459. },
  3460. {
  3461. name: "Normal",
  3462. height: math.unit(65, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(780, "feet")
  3468. },
  3469. {
  3470. name: "Flaming Mountain",
  3471. height: math.unit(4.8, "miles")
  3472. },
  3473. {
  3474. name: "Celestial",
  3475. height: math.unit(765000, "miles")
  3476. },
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Tails" },
  3481. {
  3482. front: {
  3483. height: math.unit(5 + 3 / 4, "feet"),
  3484. weight: math.unit(120, "lbs"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/tails/front.svg"
  3488. }
  3489. }
  3490. },
  3491. [
  3492. {
  3493. name: "Normal",
  3494. height: math.unit(5 + 3 / 4, "feet"),
  3495. default: true
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Rainy" },
  3501. {
  3502. front: {
  3503. height: math.unit(4, "feet"),
  3504. weight: math.unit(50, "lbs"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/rainy/front.svg"
  3508. }
  3509. }
  3510. },
  3511. [
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(800, "feet"),
  3515. default: true
  3516. }
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Rainier" },
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lbs"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/rainier/front.svg"
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Micro",
  3534. height: math.unit(2, "mm"),
  3535. default: true
  3536. }
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Andy" },
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(180, "lbs"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/andy/front.svg"
  3548. }
  3549. }
  3550. },
  3551. [
  3552. {
  3553. name: "Normal",
  3554. height: math.unit(8, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(1000, "feet")
  3560. },
  3561. {
  3562. name: "Megamacro",
  3563. height: math.unit(5, "miles")
  3564. },
  3565. {
  3566. name: "Gigamacro",
  3567. height: math.unit(5000, "miles")
  3568. },
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Cimmaron" },
  3573. {
  3574. front: {
  3575. height: math.unit(6, "feet"),
  3576. weight: math.unit(210, "lbs"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/cimmaron/front-sfw.svg",
  3580. extra: 701 / 676,
  3581. bottom: 0.046
  3582. }
  3583. },
  3584. back: {
  3585. height: math.unit(6, "feet"),
  3586. weight: math.unit(210, "lbs"),
  3587. name: "Back",
  3588. image: {
  3589. source: "./media/characters/cimmaron/back-sfw.svg",
  3590. extra: 701 / 676,
  3591. bottom: 0.046
  3592. }
  3593. },
  3594. frontNsfw: {
  3595. height: math.unit(6, "feet"),
  3596. weight: math.unit(210, "lbs"),
  3597. name: "Front (NSFW)",
  3598. image: {
  3599. source: "./media/characters/cimmaron/front-nsfw.svg",
  3600. extra: 701 / 676,
  3601. bottom: 0.046
  3602. }
  3603. },
  3604. backNsfw: {
  3605. height: math.unit(6, "feet"),
  3606. weight: math.unit(210, "lbs"),
  3607. name: "Back (NSFW)",
  3608. image: {
  3609. source: "./media/characters/cimmaron/back-nsfw.svg",
  3610. extra: 701 / 676,
  3611. bottom: 0.046
  3612. }
  3613. },
  3614. dick: {
  3615. height: math.unit(1.714, "feet"),
  3616. name: "Dick",
  3617. image: {
  3618. source: "./media/characters/cimmaron/dick.svg"
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(6, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Macro Mayor",
  3630. height: math.unit(350, "meters")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Akari Kaen" },
  3636. {
  3637. front: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(200, "lbs"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/akari/front.svg",
  3643. extra: 962 / 901,
  3644. bottom: 0.04
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Micro",
  3651. height: math.unit(5, "inches"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(7, "feet")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Cynosura" },
  3662. {
  3663. front: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(140, "lbs"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/cynosura/front.svg",
  3669. extra: 896 / 847
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(140, "lbs"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/cynosura/back.svg",
  3678. extra: 1365 / 1250
  3679. }
  3680. },
  3681. },
  3682. [
  3683. {
  3684. name: "Micro",
  3685. height: math.unit(4, "inches")
  3686. },
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(5.75, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Tall",
  3694. height: math.unit(10, "feet")
  3695. },
  3696. {
  3697. name: "Big",
  3698. height: math.unit(20, "feet")
  3699. },
  3700. {
  3701. name: "Macro",
  3702. height: math.unit(50, "feet")
  3703. },
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Gin" },
  3708. {
  3709. front: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(170, "lbs"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/gin/front.svg",
  3715. extra: 1.053,
  3716. bottom: 0.025
  3717. }
  3718. },
  3719. foot: {
  3720. height: math.unit(6 / 4.25, "feet"),
  3721. name: "Foot",
  3722. image: {
  3723. source: "./media/characters/gin/foot.svg"
  3724. }
  3725. },
  3726. sole: {
  3727. height: math.unit(6 / 4.40, "feet"),
  3728. name: "Sole",
  3729. image: {
  3730. source: "./media/characters/gin/sole.svg"
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(13 + 2/12, "feet")
  3738. },
  3739. {
  3740. name: "Macro",
  3741. height: math.unit(1500, "feet")
  3742. },
  3743. {
  3744. name: "Megamacro",
  3745. height: math.unit(200, "miles"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Gigamacro",
  3750. height: math.unit(500, "megameters")
  3751. },
  3752. {
  3753. name: "Teramacro",
  3754. height: math.unit(15, "lightyears")
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Guy" },
  3760. {
  3761. front: {
  3762. height: math.unit(6 + 1 / 6, "feet"),
  3763. weight: math.unit(178, "lbs"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/guy/front.svg"
  3767. }
  3768. }
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(6 + 1 / 6, "feet"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Large",
  3778. height: math.unit(25 + 7 / 12, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(60 + 9 / 12, "feet")
  3783. },
  3784. {
  3785. name: "Macro+",
  3786. height: math.unit(246, "feet")
  3787. },
  3788. {
  3789. name: "Macro++",
  3790. height: math.unit(878, "feet")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Tiberius" },
  3796. {
  3797. front: {
  3798. height: math.unit(9, "feet"),
  3799. weight: math.unit(800, "lbs"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/tiberius/front.svg",
  3803. extra: 2295 / 2071
  3804. }
  3805. },
  3806. back: {
  3807. height: math.unit(9, "feet"),
  3808. weight: math.unit(800, "lbs"),
  3809. name: "Back",
  3810. image: {
  3811. source: "./media/characters/tiberius/back.svg",
  3812. extra: 2373 / 2160
  3813. }
  3814. },
  3815. },
  3816. [
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(9, "feet"),
  3820. default: true
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Surgo" },
  3826. {
  3827. front: {
  3828. height: math.unit(6, "feet"),
  3829. weight: math.unit(600, "lbs"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/surgo/front.svg",
  3833. extra: 3591 / 2227
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(600, "lbs"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/surgo/back.svg",
  3842. extra: 3557 / 2228
  3843. }
  3844. },
  3845. laying: {
  3846. height: math.unit(6 * 0.85, "feet"),
  3847. weight: math.unit(600, "lbs"),
  3848. name: "Laying",
  3849. image: {
  3850. source: "./media/characters/surgo/laying.svg"
  3851. }
  3852. },
  3853. },
  3854. [
  3855. {
  3856. name: "Normal",
  3857. height: math.unit(6, "feet"),
  3858. default: true
  3859. }
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Cibus" },
  3864. {
  3865. side: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(150, "lbs"),
  3868. name: "Side",
  3869. image: {
  3870. source: "./media/characters/cibus/side.svg",
  3871. extra: 800 / 400
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(6, "feet"),
  3879. default: true
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Nibbles" },
  3885. {
  3886. front: {
  3887. height: math.unit(6, "feet"),
  3888. weight: math.unit(240, "lbs"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/nibbles/front.svg"
  3892. }
  3893. },
  3894. side: {
  3895. height: math.unit(6, "feet"),
  3896. weight: math.unit(240, "lbs"),
  3897. name: "Side",
  3898. image: {
  3899. source: "./media/characters/nibbles/side.svg"
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Normal",
  3906. height: math.unit(9, "feet"),
  3907. default: true
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Rikky" },
  3913. {
  3914. side: {
  3915. height: math.unit(5 + 1 / 6, "feet"),
  3916. weight: math.unit(130, "lbs"),
  3917. name: "Side",
  3918. image: {
  3919. source: "./media/characters/rikky/side.svg"
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Normal",
  3926. height: math.unit(5 + 1 / 6, "feet")
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(152, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Megamacro",
  3935. height: math.unit(7, "miles")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Malfressa" },
  3941. {
  3942. side: {
  3943. height: math.unit(370, "cm"),
  3944. weight: math.unit(350, "lbs"),
  3945. name: "Side",
  3946. image: {
  3947. source: "./media/characters/malfressa/side.svg"
  3948. }
  3949. },
  3950. walking: {
  3951. height: math.unit(370, "cm"),
  3952. weight: math.unit(350, "lbs"),
  3953. name: "Walking",
  3954. image: {
  3955. source: "./media/characters/malfressa/walking.svg"
  3956. }
  3957. },
  3958. feral: {
  3959. height: math.unit(2500, "cm"),
  3960. weight: math.unit(100000, "lbs"),
  3961. name: "Feral",
  3962. image: {
  3963. source: "./media/characters/malfressa/feral.svg",
  3964. extra: 2108 / 837,
  3965. bottom: 0.02
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(370, "cm")
  3973. },
  3974. {
  3975. name: "Macro",
  3976. height: math.unit(300, "meters"),
  3977. default: true
  3978. }
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Jaro" },
  3983. {
  3984. front: {
  3985. height: math.unit(6, "feet"),
  3986. weight: math.unit(60, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/jaro/front.svg"
  3990. }
  3991. },
  3992. back: {
  3993. height: math.unit(6, "feet"),
  3994. weight: math.unit(60, "kg"),
  3995. name: "Back",
  3996. image: {
  3997. source: "./media/characters/jaro/back.svg"
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Micro",
  4004. height: math.unit(7, "inches")
  4005. },
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(5.5, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Minimacro",
  4013. height: math.unit(20, "feet")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(200, "meters")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Rogue" },
  4023. {
  4024. front: {
  4025. height: math.unit(6, "feet"),
  4026. weight: math.unit(195, "lb"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/rogue/front.svg"
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Macro",
  4036. height: math.unit(90, "feet"),
  4037. default: true
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Piper" },
  4043. {
  4044. front: {
  4045. height: math.unit(5 + 8 / 12, "feet"),
  4046. weight: math.unit(140, "lb"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/piper/front.svg",
  4050. extra: 3928 / 3681
  4051. }
  4052. },
  4053. },
  4054. [
  4055. {
  4056. name: "Micro",
  4057. height: math.unit(2, "inches")
  4058. },
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(5 + 8 / 12, "feet")
  4062. },
  4063. {
  4064. name: "Macro",
  4065. height: math.unit(250, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Megamacro",
  4070. height: math.unit(7, "miles")
  4071. },
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Gemini" },
  4076. {
  4077. front: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(220, "lb"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/gemini/front.svg"
  4083. }
  4084. },
  4085. back: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(220, "lb"),
  4088. name: "Back",
  4089. image: {
  4090. source: "./media/characters/gemini/back.svg"
  4091. }
  4092. },
  4093. kneeling: {
  4094. height: math.unit(6 / 1.5, "feet"),
  4095. weight: math.unit(220, "lb"),
  4096. name: "Kneeling",
  4097. image: {
  4098. source: "./media/characters/gemini/kneeling.svg",
  4099. bottom: 0.02
  4100. }
  4101. },
  4102. },
  4103. [
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(300, "meters"),
  4107. default: true
  4108. },
  4109. {
  4110. name: "Megamacro",
  4111. height: math.unit(6900, "meters")
  4112. },
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Alicia" },
  4117. {
  4118. anthro: {
  4119. height: math.unit(2.35, "meters"),
  4120. weight: math.unit(73, "kg"),
  4121. name: "Anthro",
  4122. image: {
  4123. source: "./media/characters/alicia/anthro.svg"
  4124. }
  4125. },
  4126. feral: {
  4127. height: math.unit(1.69, "meters"),
  4128. weight: math.unit(73, "kg"),
  4129. name: "Feral",
  4130. image: {
  4131. source: "./media/characters/alicia/feral.svg"
  4132. }
  4133. },
  4134. },
  4135. [
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(2.35, "meters")
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(60, "meters"),
  4143. default: true
  4144. },
  4145. {
  4146. name: "Megamacro",
  4147. height: math.unit(10000, "kilometers")
  4148. },
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Archy" },
  4153. {
  4154. front: {
  4155. height: math.unit(7, "feet"),
  4156. weight: math.unit(250, "lbs"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/archy/front.svg"
  4160. }
  4161. }
  4162. },
  4163. [
  4164. {
  4165. name: "Micro",
  4166. height: math.unit(1, "inch")
  4167. },
  4168. {
  4169. name: "Shorty",
  4170. height: math.unit(5, "feet")
  4171. },
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7, "feet")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(600, "meters"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(1, "mile")
  4184. },
  4185. ]
  4186. ))
  4187. characterMakers.push(() => makeCharacter(
  4188. { name: "Berri" },
  4189. {
  4190. front: {
  4191. height: math.unit(1.65, "meters"),
  4192. weight: math.unit(74, "kg"),
  4193. name: "Front",
  4194. image: {
  4195. source: "./media/characters/berri/front.svg"
  4196. }
  4197. }
  4198. },
  4199. [
  4200. {
  4201. name: "Normal",
  4202. height: math.unit(1.65, "meters")
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(60, "m"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(9.213, "km")
  4212. },
  4213. {
  4214. name: "Planet Eater",
  4215. height: math.unit(489, "megameters")
  4216. },
  4217. {
  4218. name: "Teramacro",
  4219. height: math.unit(2471635000000, "meters")
  4220. },
  4221. {
  4222. name: "Examacro",
  4223. height: math.unit(8.0624e+26, "meters")
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Lexi" },
  4229. {
  4230. front: {
  4231. height: math.unit(1.72, "meters"),
  4232. weight: math.unit(68, "kg"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/lexi/front.svg"
  4236. }
  4237. }
  4238. },
  4239. [
  4240. {
  4241. name: "Very Smol",
  4242. height: math.unit(10, "mm")
  4243. },
  4244. {
  4245. name: "Micro",
  4246. height: math.unit(6.8, "cm"),
  4247. default: true
  4248. },
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(1.72, "m")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Martin" },
  4257. {
  4258. front: {
  4259. height: math.unit(1.69, "meters"),
  4260. weight: math.unit(68, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/martin/front.svg",
  4264. extra: 596 / 581
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Micro",
  4271. height: math.unit(6.85, "cm"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(1.69, "m")
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Juno" },
  4282. {
  4283. front: {
  4284. height: math.unit(1.69, "meters"),
  4285. weight: math.unit(68, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/juno/front.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Micro",
  4295. height: math.unit(7, "cm")
  4296. },
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(1.89, "m")
  4300. },
  4301. {
  4302. name: "Macro",
  4303. height: math.unit(353, "meters"),
  4304. default: true
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Samantha" },
  4310. {
  4311. front: {
  4312. height: math.unit(1.93, "meters"),
  4313. weight: math.unit(83, "kg"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/samantha/front.svg"
  4317. }
  4318. },
  4319. frontClothed: {
  4320. height: math.unit(1.93, "meters"),
  4321. weight: math.unit(83, "kg"),
  4322. name: "Front (Clothed)",
  4323. image: {
  4324. source: "./media/characters/samantha/front-clothed.svg"
  4325. }
  4326. },
  4327. back: {
  4328. height: math.unit(1.93, "meters"),
  4329. weight: math.unit(83, "kg"),
  4330. name: "Back",
  4331. image: {
  4332. source: "./media/characters/samantha/back.svg"
  4333. }
  4334. },
  4335. },
  4336. [
  4337. {
  4338. name: "Normal",
  4339. height: math.unit(1.93, "m")
  4340. },
  4341. {
  4342. name: "Macro",
  4343. height: math.unit(74, "meters"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro+",
  4348. height: math.unit(223, "meters"),
  4349. },
  4350. {
  4351. name: "Megamacro",
  4352. height: math.unit(8381, "meters"),
  4353. },
  4354. {
  4355. name: "Megamacro+",
  4356. height: math.unit(12000, "kilometers")
  4357. },
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Dr. Clay" },
  4362. {
  4363. front: {
  4364. height: math.unit(1.92, "meters"),
  4365. weight: math.unit(80, "kg"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/dr-clay/front.svg"
  4369. }
  4370. },
  4371. frontClothed: {
  4372. height: math.unit(1.92, "meters"),
  4373. weight: math.unit(80, "kg"),
  4374. name: "Front (Clothed)",
  4375. image: {
  4376. source: "./media/characters/dr-clay/front-clothed.svg"
  4377. }
  4378. }
  4379. },
  4380. [
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(1.92, "m")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(214, "meters"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Macro+",
  4392. height: math.unit(12.237, "meters"),
  4393. },
  4394. {
  4395. name: "Megamacro",
  4396. height: math.unit(557, "megameters"),
  4397. },
  4398. {
  4399. name: "Unimaginable",
  4400. height: math.unit(120e9, "lightyears")
  4401. },
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Wyvrn Ripsnarl" },
  4406. {
  4407. front: {
  4408. height: math.unit(2, "meters"),
  4409. weight: math.unit(80, "kg"),
  4410. name: "Front",
  4411. image: {
  4412. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4413. }
  4414. }
  4415. },
  4416. [
  4417. {
  4418. name: "Teramacro",
  4419. height: math.unit(500000, "lightyears"),
  4420. default: true
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Vemus" },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meters"),
  4429. weight: math.unit(150, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/vemus/front.svg",
  4433. extra: 2384 / 2084,
  4434. bottom: 0.0123
  4435. }
  4436. }
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(3.75, "meters"),
  4442. default: true
  4443. },
  4444. {
  4445. name: "Big",
  4446. height: math.unit(8, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(100, "meters")
  4451. },
  4452. {
  4453. name: "Macro+",
  4454. height: math.unit(1500, "meters")
  4455. },
  4456. {
  4457. name: "Stellar",
  4458. height: math.unit(14e8, "meters")
  4459. },
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Beherit" },
  4464. {
  4465. front: {
  4466. height: math.unit(2, "meters"),
  4467. weight: math.unit(70, "kg"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/beherit/front.svg",
  4471. extra: 1408 / 1242
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(6, "feet")
  4479. },
  4480. {
  4481. name: "Lorg",
  4482. height: math.unit(25, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Lorger",
  4487. height: math.unit(75, "feet")
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(200, "meters")
  4492. },
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Everett" },
  4497. {
  4498. front: {
  4499. height: math.unit(2, "meters"),
  4500. weight: math.unit(150, "kg"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/everett/front.svg",
  4504. extra: 2038 / 1737,
  4505. bottom: 0.03
  4506. }
  4507. },
  4508. paw: {
  4509. height: math.unit(2 / 3.6, "meters"),
  4510. name: "Paw",
  4511. image: {
  4512. source: "./media/characters/everett/paw.svg"
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(15, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Lorg",
  4524. height: math.unit(70, "feet"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Lorger",
  4529. height: math.unit(250, "feet")
  4530. },
  4531. {
  4532. name: "Macro",
  4533. height: math.unit(500, "meters")
  4534. },
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Rose Lion" },
  4539. {
  4540. front: {
  4541. height: math.unit(2, "meters"),
  4542. weight: math.unit(86, "kg"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/rose-lion/front.svg"
  4546. }
  4547. },
  4548. bent: {
  4549. height: math.unit(2 / 1.4288, "meters"),
  4550. weight: math.unit(86, "kg"),
  4551. name: "Bent",
  4552. image: {
  4553. source: "./media/characters/rose-lion/bent.svg"
  4554. }
  4555. }
  4556. },
  4557. [
  4558. {
  4559. name: "Mini-Micro",
  4560. height: math.unit(1, "cm")
  4561. },
  4562. {
  4563. name: "Micro",
  4564. height: math.unit(3.5, "inches"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(6 + 1 / 6, "feet")
  4570. },
  4571. {
  4572. name: "Mini-Macro",
  4573. height: math.unit(9 + 10 / 12, "feet")
  4574. },
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Regal" },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meters"),
  4582. weight: math.unit(350, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/regal/front.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(2, "meters"),
  4590. weight: math.unit(350, "lbs"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/regal/back.svg"
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(350, "feet"),
  4601. default: true
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Opal" },
  4607. {
  4608. front: {
  4609. height: math.unit(4 + 11 / 12, "feet"),
  4610. weight: math.unit(100, "lbs"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/opal/front.svg"
  4614. }
  4615. },
  4616. frontAlt: {
  4617. height: math.unit(4 + 11 / 12, "feet"),
  4618. weight: math.unit(100, "lbs"),
  4619. name: "Front (Alt)",
  4620. image: {
  4621. source: "./media/characters/opal/front-alt.svg"
  4622. }
  4623. },
  4624. },
  4625. [
  4626. {
  4627. name: "Small",
  4628. height: math.unit(4 + 11 / 12, "feet")
  4629. },
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(20, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Macro",
  4637. height: math.unit(120, "feet")
  4638. },
  4639. {
  4640. name: "Megamacro",
  4641. height: math.unit(80, "miles")
  4642. },
  4643. {
  4644. name: "True Size",
  4645. height: math.unit(100000, "lightyears")
  4646. },
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Vector Wuff" },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(200, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/vector-wuff/front.svg"
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(2.8, "meters")
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(450, "meters"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Megamacro",
  4673. height: math.unit(15, "kilometers")
  4674. }
  4675. ]
  4676. ))
  4677. characterMakers.push(() => makeCharacter(
  4678. { name: "Dannik" },
  4679. {
  4680. front: {
  4681. height: math.unit(6, "feet"),
  4682. weight: math.unit(256, "lbs"),
  4683. name: "Front",
  4684. image: {
  4685. source: "./media/characters/dannik/front.svg"
  4686. }
  4687. }
  4688. },
  4689. [
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(69.57, "meters"),
  4693. default: true
  4694. },
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Azura Saharah" },
  4699. {
  4700. front: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(120, "lbs"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/azura-saharah/front.svg"
  4706. }
  4707. },
  4708. back: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(120, "lbs"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/azura-saharah/back.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(100, "feet"),
  4721. default: true
  4722. },
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Kennedy" },
  4727. {
  4728. side: {
  4729. height: math.unit(5 + 4 / 12, "feet"),
  4730. weight: math.unit(163, "lbs"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/kennedy/side.svg"
  4734. }
  4735. }
  4736. },
  4737. [
  4738. {
  4739. name: "Standard Doggo",
  4740. height: math.unit(5 + 4 / 12, "feet")
  4741. },
  4742. {
  4743. name: "Big Doggo",
  4744. height: math.unit(25 + 3 / 12, "feet"),
  4745. default: true
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Odi Lunar" },
  4751. {
  4752. front: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(90, "lbs"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/odi-lunar/front.svg"
  4758. }
  4759. }
  4760. },
  4761. [
  4762. {
  4763. name: "Micro",
  4764. height: math.unit(3, "inches"),
  4765. default: true
  4766. },
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5.5, "feet")
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Mandake" },
  4775. {
  4776. back: {
  4777. height: math.unit(6, "feet"),
  4778. weight: math.unit(220, "lbs"),
  4779. name: "Back",
  4780. image: {
  4781. source: "./media/characters/mandake/back.svg"
  4782. }
  4783. }
  4784. },
  4785. [
  4786. {
  4787. name: "Normal",
  4788. height: math.unit(7, "feet"),
  4789. default: true
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(78, "feet")
  4794. },
  4795. {
  4796. name: "Macro+",
  4797. height: math.unit(300, "meters")
  4798. },
  4799. {
  4800. name: "Macro++",
  4801. height: math.unit(2400, "feet")
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(5167, "meters")
  4806. },
  4807. {
  4808. name: "Gigamacro",
  4809. height: math.unit(41769, "miles")
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Yozey" },
  4815. {
  4816. front: {
  4817. height: math.unit(6, "feet"),
  4818. weight: math.unit(120, "lbs"),
  4819. name: "Front",
  4820. image: {
  4821. source: "./media/characters/yozey/front.svg"
  4822. }
  4823. },
  4824. frontAlt: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(120, "lbs"),
  4827. name: "Front (Alt)",
  4828. image: {
  4829. source: "./media/characters/yozey/front-alt.svg"
  4830. }
  4831. },
  4832. side: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(120, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/yozey/side.svg"
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Micro",
  4844. height: math.unit(3, "inches"),
  4845. default: true
  4846. },
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(6, "feet")
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Valeska Voss" },
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(103, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/valeska-voss/front.svg"
  4862. }
  4863. }
  4864. },
  4865. [
  4866. {
  4867. name: "Mini-Sized Sub",
  4868. height: math.unit(3.1, "inches")
  4869. },
  4870. {
  4871. name: "Mid-Sized Sub",
  4872. height: math.unit(6.2, "inches")
  4873. },
  4874. {
  4875. name: "Full-Sized Sub",
  4876. height: math.unit(9.3, "inches")
  4877. },
  4878. {
  4879. name: "Normal",
  4880. height: math.unit(5 + 2 / 12, "foot"),
  4881. default: true
  4882. },
  4883. ]
  4884. ))
  4885. characterMakers.push(() => makeCharacter(
  4886. { name: "Gene Zeta" },
  4887. {
  4888. front: {
  4889. height: math.unit(6, "feet"),
  4890. weight: math.unit(160, "lbs"),
  4891. name: "Front",
  4892. image: {
  4893. source: "./media/characters/gene-zeta/front.svg",
  4894. bottom: 0.03,
  4895. extra: 1
  4896. }
  4897. }
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(6.25, "foot"),
  4903. default: true
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Razinox" },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(350, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/razinox/front.svg",
  4916. extra: 1686 / 1548,
  4917. bottom: 28.2/1868
  4918. }
  4919. },
  4920. back: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(350, "lbs"),
  4923. name: "Back",
  4924. image: {
  4925. source: "./media/characters/razinox/back.svg",
  4926. extra: 1660 / 1590,
  4927. bottom: 15/1665
  4928. }
  4929. },
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(10 + 8 / 12, "foot")
  4935. },
  4936. {
  4937. name: "Minimacro",
  4938. height: math.unit(15, "foot")
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(60, "foot"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Megamacro",
  4947. height: math.unit(5, "miles")
  4948. },
  4949. {
  4950. name: "Gigamacro",
  4951. height: math.unit(6000, "miles")
  4952. },
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Cobalt" },
  4957. {
  4958. front: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(150, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/cobalt/front.svg"
  4964. }
  4965. }
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(8 + 1 / 12, "foot")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(111, "foot"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Supracosmic",
  4979. height: math.unit(1e42, "feet")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Amanda" },
  4985. {
  4986. front: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(140, "lbs"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/amanda/front.svg"
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Micro",
  4998. height: math.unit(5, "inches"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Teal" },
  5005. {
  5006. front: {
  5007. height: math.unit(5.59, "feet"),
  5008. weight: math.unit(250, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/teal/front.svg"
  5012. }
  5013. },
  5014. frontAlt: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(250, "lbs"),
  5017. name: "Front (Alt)",
  5018. image: {
  5019. source: "./media/characters/teal/front-alt.svg",
  5020. bottom: 0.04,
  5021. extra: 1
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(12, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(300, "feet")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Ravin Amulet" },
  5039. {
  5040. frontCat: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Front (Cat)",
  5044. image: {
  5045. source: "./media/characters/ravin-amulet/front-cat.svg"
  5046. }
  5047. },
  5048. frontCatAlt: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(180, "lbs"),
  5051. name: "Front (Alt, Cat)",
  5052. image: {
  5053. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5054. }
  5055. },
  5056. frontWerewolf: {
  5057. height: math.unit(6 * 1.2, "feet"),
  5058. weight: math.unit(225, "lbs"),
  5059. name: "Front (Werewolf)",
  5060. image: {
  5061. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5062. }
  5063. },
  5064. backWerewolf: {
  5065. height: math.unit(6 * 1.2, "feet"),
  5066. weight: math.unit(225, "lbs"),
  5067. name: "Back (Werewolf)",
  5068. image: {
  5069. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Nano",
  5076. height: math.unit(1, "micrometer")
  5077. },
  5078. {
  5079. name: "Micro",
  5080. height: math.unit(1, "inch")
  5081. },
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(6, "feet"),
  5085. default: true
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(60, "feet")
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Fluoresce" },
  5095. {
  5096. front: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(165, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/fluoresce/front.svg"
  5102. }
  5103. }
  5104. },
  5105. [
  5106. {
  5107. name: "Micro",
  5108. height: math.unit(6, "cm")
  5109. },
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(5 + 7 / 12, "feet"),
  5113. default: true
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(56, "feet")
  5118. },
  5119. {
  5120. name: "Megamacro",
  5121. height: math.unit(1.9, "miles")
  5122. },
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Aurora" },
  5127. {
  5128. front: {
  5129. height: math.unit(9 + 6 / 12, "feet"),
  5130. weight: math.unit(523, "lbs"),
  5131. name: "Side",
  5132. image: {
  5133. source: "./media/characters/aurora/side.svg"
  5134. }
  5135. }
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(9 + 6 / 12, "feet")
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(96, "feet"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Macro+",
  5149. height: math.unit(243, "feet")
  5150. },
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Ranek" },
  5155. {
  5156. front: {
  5157. height: math.unit(194, "cm"),
  5158. weight: math.unit(90, "kg"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/ranek/front.svg"
  5162. }
  5163. },
  5164. side: {
  5165. height: math.unit(194, "cm"),
  5166. weight: math.unit(90, "kg"),
  5167. name: "Side",
  5168. image: {
  5169. source: "./media/characters/ranek/side.svg"
  5170. }
  5171. },
  5172. back: {
  5173. height: math.unit(194, "cm"),
  5174. weight: math.unit(90, "kg"),
  5175. name: "Back",
  5176. image: {
  5177. source: "./media/characters/ranek/back.svg"
  5178. }
  5179. },
  5180. feral: {
  5181. height: math.unit(30, "cm"),
  5182. weight: math.unit(1.6, "lbs"),
  5183. name: "Feral",
  5184. image: {
  5185. source: "./media/characters/ranek/feral.svg"
  5186. }
  5187. },
  5188. },
  5189. [
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(194, "cm"),
  5193. default: true
  5194. },
  5195. {
  5196. name: "Macro",
  5197. height: math.unit(100, "meters")
  5198. },
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Andrew Cooper" },
  5203. {
  5204. front: {
  5205. height: math.unit(5 + 6 / 12, "feet"),
  5206. weight: math.unit(153, "lbs"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/andrew-cooper/front.svg"
  5210. }
  5211. },
  5212. },
  5213. [
  5214. {
  5215. name: "Nano",
  5216. height: math.unit(1, "mm")
  5217. },
  5218. {
  5219. name: "Micro",
  5220. height: math.unit(2, "inches")
  5221. },
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(5 + 6 / 12, "feet"),
  5225. default: true
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Akane Sato" },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(180, "lbs"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/akane-sato/front.svg",
  5238. extra: 1219 / 1140
  5239. }
  5240. },
  5241. back: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(180, "lbs"),
  5244. name: "Back",
  5245. image: {
  5246. source: "./media/characters/akane-sato/back.svg",
  5247. extra: 1219 / 1170
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(2.5, "meters")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(250, "meters"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Megamacro",
  5263. height: math.unit(25, "km")
  5264. },
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Rook" },
  5269. {
  5270. front: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(65, "kg"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/rook/front.svg",
  5276. extra: 960/950
  5277. }
  5278. }
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(8.8, "feet")
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(88, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Megamacro",
  5292. height: math.unit(8, "miles")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Prodigy" },
  5298. {
  5299. front: {
  5300. height: math.unit(12 + 2 / 12, "feet"),
  5301. weight: math.unit(808, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/prodigy/front.svg"
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(12 + 2 / 12, "feet"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Macro",
  5316. height: math.unit(143, "feet")
  5317. },
  5318. {
  5319. name: "Macro+",
  5320. height: math.unit(400, "feet")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Daniel" },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(225, "lbs"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/daniel/front.svg"
  5333. }
  5334. },
  5335. leaning: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(225, "lbs"),
  5338. name: "Leaning",
  5339. image: {
  5340. source: "./media/characters/daniel/leaning.svg"
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(1000, "feet"),
  5348. default: true
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Chiros" },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(88, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/chiros/front.svg",
  5361. extra: 306 / 226
  5362. }
  5363. },
  5364. side: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(88, "lbs"),
  5367. name: "Side",
  5368. image: {
  5369. source: "./media/characters/chiros/side.svg",
  5370. extra: 306 / 226
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(6, "cm"),
  5378. default: true
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Selka" },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(100, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/selka/front.svg",
  5391. extra: 947 / 887
  5392. }
  5393. }
  5394. },
  5395. [
  5396. {
  5397. name: "Normal",
  5398. height: math.unit(5, "cm"),
  5399. default: true
  5400. },
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Verin" },
  5405. {
  5406. front: {
  5407. height: math.unit(8 + 3 / 12, "feet"),
  5408. weight: math.unit(424, "lbs"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/verin/front.svg",
  5412. extra: 1845 / 1550
  5413. }
  5414. },
  5415. frontArmored: {
  5416. height: math.unit(8 + 3 / 12, "feet"),
  5417. weight: math.unit(424, "lbs"),
  5418. name: "Front (Armored)",
  5419. image: {
  5420. source: "./media/characters/verin/front-armor.svg",
  5421. extra: 1845 / 1550,
  5422. bottom: 0.01
  5423. }
  5424. },
  5425. back: {
  5426. height: math.unit(8 + 3 / 12, "feet"),
  5427. weight: math.unit(424, "lbs"),
  5428. name: "Back",
  5429. image: {
  5430. source: "./media/characters/verin/back.svg",
  5431. bottom: 0.1,
  5432. extra: 1
  5433. }
  5434. },
  5435. foot: {
  5436. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5437. name: "Foot",
  5438. image: {
  5439. source: "./media/characters/verin/foot.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(8 + 3 / 12, "feet")
  5447. },
  5448. {
  5449. name: "Minimacro",
  5450. height: math.unit(21, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(626, "feet")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Sovrim Terraquian" },
  5461. {
  5462. front: {
  5463. height: math.unit(2.718, "meters"),
  5464. weight: math.unit(150, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/sovrim-terraquian/front.svg"
  5468. }
  5469. },
  5470. back: {
  5471. height: math.unit(2.718, "meters"),
  5472. weight: math.unit(150, "lbs"),
  5473. name: "Back",
  5474. image: {
  5475. source: "./media/characters/sovrim-terraquian/back.svg"
  5476. }
  5477. }
  5478. },
  5479. [
  5480. {
  5481. name: "Micro",
  5482. height: math.unit(2, "inches")
  5483. },
  5484. {
  5485. name: "Small",
  5486. height: math.unit(1, "meter")
  5487. },
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(Math.E, "meters"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(20, "meters")
  5496. },
  5497. {
  5498. name: "Macro+",
  5499. height: math.unit(400, "meters")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Reece Silvermane" },
  5505. {
  5506. front: {
  5507. height: math.unit(7, "feet"),
  5508. weight: math.unit(489, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/reece-silvermane/front.svg",
  5512. bottom: 0.02,
  5513. extra: 1
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Macro",
  5520. height: math.unit(1.5, "miles"),
  5521. default: true
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Kane" },
  5527. {
  5528. front: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(78, "kg"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/kane/front.svg",
  5534. extra: 978 / 899
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(2.1, "m"),
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(1, "km"),
  5546. default: true
  5547. },
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Tegon" },
  5552. {
  5553. front: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(200, "kg"),
  5556. name: "Front",
  5557. image: {
  5558. source: "./media/characters/tegon/front.svg",
  5559. bottom: 0.01,
  5560. extra: 1
  5561. }
  5562. },
  5563. },
  5564. [
  5565. {
  5566. name: "Micro",
  5567. height: math.unit(1, "inch")
  5568. },
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(6 + 3 / 12, "feet"),
  5572. default: true
  5573. },
  5574. {
  5575. name: "Macro",
  5576. height: math.unit(300, "feet")
  5577. },
  5578. {
  5579. name: "Megamacro",
  5580. height: math.unit(69, "miles")
  5581. },
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Arcturax" },
  5586. {
  5587. side: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(2304, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/arcturax/side.svg",
  5593. extra: 790 / 376,
  5594. bottom: 0.01
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Micro",
  5601. height: math.unit(2, "inch")
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(6, "feet")
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(39, "feet"),
  5610. default: true
  5611. },
  5612. {
  5613. name: "Megamacro",
  5614. height: math.unit(7, "miles")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Sentri" },
  5620. {
  5621. front: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(50, "lbs"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/sentri/front.svg",
  5627. extra: 1750 / 1570,
  5628. bottom: 0.025
  5629. }
  5630. },
  5631. frontAlt: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(50, "lbs"),
  5634. name: "Front (Alt)",
  5635. image: {
  5636. source: "./media/characters/sentri/front-alt.svg",
  5637. extra: 1750 / 1570,
  5638. bottom: 0.025
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(15, "feet"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Macro",
  5650. height: math.unit(2500, "feet")
  5651. }
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Corvin" },
  5656. {
  5657. front: {
  5658. height: math.unit(5 + 8 / 12, "feet"),
  5659. weight: math.unit(130, "lbs"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/corvin/front.svg",
  5663. extra: 1803 / 1629
  5664. }
  5665. },
  5666. frontShirt: {
  5667. height: math.unit(5 + 8 / 12, "feet"),
  5668. weight: math.unit(130, "lbs"),
  5669. name: "Front (Shirt)",
  5670. image: {
  5671. source: "./media/characters/corvin/front-shirt.svg",
  5672. extra: 1803 / 1629
  5673. }
  5674. },
  5675. frontPoncho: {
  5676. height: math.unit(5 + 8 / 12, "feet"),
  5677. weight: math.unit(130, "lbs"),
  5678. name: "Front (Poncho)",
  5679. image: {
  5680. source: "./media/characters/corvin/front-poncho.svg",
  5681. extra: 1803 / 1629
  5682. }
  5683. },
  5684. side: {
  5685. height: math.unit(5 + 8 / 12, "feet"),
  5686. weight: math.unit(130, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/corvin/side.svg",
  5690. extra: 1012 / 945
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(5 + 8 / 12, "feet"),
  5695. weight: math.unit(130, "lbs"),
  5696. name: "Back",
  5697. image: {
  5698. source: "./media/characters/corvin/back.svg",
  5699. extra: 1803 / 1629
  5700. }
  5701. },
  5702. },
  5703. [
  5704. {
  5705. name: "Micro",
  5706. height: math.unit(3, "inches")
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 8 / 12, "feet")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(300, "feet"),
  5715. default: true
  5716. },
  5717. {
  5718. name: "Megamacro",
  5719. height: math.unit(500, "miles")
  5720. }
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Q" },
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(135, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/q/front.svg",
  5732. extra: 854 / 752,
  5733. bottom: 0.005
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(130, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/q/back.svg",
  5742. extra: 854 / 752
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Macro",
  5749. height: math.unit(90, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Extra Macro",
  5754. height: math.unit(300, "feet"),
  5755. },
  5756. {
  5757. name: "BIG WALF",
  5758. height: math.unit(750, "feet"),
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Carley" },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(150, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/carley/front.svg",
  5771. extra: 3927 / 3540,
  5772. bottom: 0.03
  5773. }
  5774. }
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(6 + 3 / 12, "feet")
  5780. },
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(185, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Megamacro",
  5788. height: math.unit(8, "miles"),
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Citrine" },
  5794. {
  5795. front: {
  5796. height: math.unit(3, "feet"),
  5797. weight: math.unit(28, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/citrine/front.svg"
  5801. }
  5802. }
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(3, "feet"),
  5808. default: true
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Aura Starwind" },
  5814. {
  5815. front: {
  5816. height: math.unit(14, "feet"),
  5817. weight: math.unit(1450, "kg"),
  5818. capacity: math.unit(15, "people"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/aura-starwind/front.svg",
  5822. extra: 1455 / 1335
  5823. }
  5824. },
  5825. side: {
  5826. height: math.unit(14, "feet"),
  5827. weight: math.unit(1450, "kg"),
  5828. capacity: math.unit(15, "people"),
  5829. name: "Side",
  5830. image: {
  5831. source: "./media/characters/aura-starwind/side.svg",
  5832. extra: 1654 / 1497
  5833. }
  5834. },
  5835. taur: {
  5836. height: math.unit(18, "feet"),
  5837. weight: math.unit(5500, "kg"),
  5838. capacity: math.unit(50, "people"),
  5839. name: "Taur",
  5840. image: {
  5841. source: "./media/characters/aura-starwind/taur.svg",
  5842. extra: 1760 / 1650
  5843. }
  5844. },
  5845. feral: {
  5846. height: math.unit(46, "feet"),
  5847. weight: math.unit(25000, "kg"),
  5848. capacity: math.unit(120, "people"),
  5849. name: "Feral",
  5850. image: {
  5851. source: "./media/characters/aura-starwind/feral.svg"
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(14, "feet"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Macro",
  5863. height: math.unit(50, "meters")
  5864. },
  5865. {
  5866. name: "Megamacro",
  5867. height: math.unit(5000, "meters")
  5868. },
  5869. {
  5870. name: "Gigamacro",
  5871. height: math.unit(100000, "kilometers")
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Rivet" },
  5877. {
  5878. front: {
  5879. height: math.unit(2 + 7 / 12, "feet"),
  5880. weight: math.unit(32, "lbs"),
  5881. name: "Front",
  5882. image: {
  5883. source: "./media/characters/rivet/front.svg",
  5884. extra: 1716 / 1658,
  5885. bottom: 0.03
  5886. }
  5887. },
  5888. foot: {
  5889. height: math.unit(0.551, "feet"),
  5890. name: "Rivet's Foot",
  5891. image: {
  5892. source: "./media/characters/rivet/foot.svg"
  5893. },
  5894. rename: true
  5895. }
  5896. },
  5897. [
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(1.5, "inches"),
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(2 + 7 / 12, "feet"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Macro",
  5909. height: math.unit(85, "feet")
  5910. },
  5911. {
  5912. name: "Megamacro",
  5913. height: math.unit(2.2, "km")
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Coffee" },
  5919. {
  5920. front: {
  5921. height: math.unit(5 + 9 / 12, "feet"),
  5922. weight: math.unit(150, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/coffee/front.svg",
  5926. extra: 3666 / 3032,
  5927. bottom: 0.04
  5928. }
  5929. },
  5930. foot: {
  5931. height: math.unit(1.29, "feet"),
  5932. name: "Foot",
  5933. image: {
  5934. source: "./media/characters/coffee/foot.svg"
  5935. }
  5936. },
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(2, "inches"),
  5942. },
  5943. {
  5944. name: "Normal",
  5945. height: math.unit(5 + 9 / 12, "feet"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(800, "feet")
  5951. },
  5952. {
  5953. name: "Megamacro",
  5954. height: math.unit(25, "miles")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Chari-Gal" },
  5960. {
  5961. front: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(200, "lbs"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/chari-gal/front.svg",
  5967. extra: 1568 / 1385,
  5968. bottom: 0.047
  5969. }
  5970. },
  5971. gigantamax: {
  5972. height: math.unit(6 * 16, "feet"),
  5973. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5974. name: "Gigantamax",
  5975. image: {
  5976. source: "./media/characters/chari-gal/gigantamax.svg",
  5977. extra: 1124 / 888,
  5978. bottom: 0.03
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Normal",
  5985. height: math.unit(5 + 7 / 12, "feet")
  5986. },
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(200, "feet"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Nova" },
  5996. {
  5997. front: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(150, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/nova/front.svg",
  6003. extra: 5000 / 4722,
  6004. bottom: 0.02
  6005. }
  6006. }
  6007. },
  6008. [
  6009. {
  6010. name: "Micro-",
  6011. height: math.unit(0.8, "inches")
  6012. },
  6013. {
  6014. name: "Micro",
  6015. height: math.unit(2, "inches"),
  6016. default: true
  6017. },
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Argent" },
  6022. {
  6023. front: {
  6024. height: math.unit(3 + 1 / 12, "feet"),
  6025. weight: math.unit(21.7, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/argent/front.svg",
  6029. extra: 1565 / 1416,
  6030. bottom: 0.01
  6031. }
  6032. }
  6033. },
  6034. [
  6035. {
  6036. name: "Micro",
  6037. height: math.unit(2, "inches")
  6038. },
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(3 + 1 / 12, "feet"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(120, "feet")
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Mira al-Cul" },
  6052. {
  6053. lamp: {
  6054. height: math.unit(7 * 1559 / 989, "feet"),
  6055. name: "Magic Lamp",
  6056. image: {
  6057. source: "./media/characters/mira-al-cul/lamp.svg",
  6058. extra: 1617 / 1559
  6059. }
  6060. },
  6061. front: {
  6062. height: math.unit(7, "feet"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/mira-al-cul/front.svg",
  6066. extra: 1044 / 990
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Heavily Restricted",
  6073. height: math.unit(7 * 1559 / 989, "feet")
  6074. },
  6075. {
  6076. name: "Freshly Freed",
  6077. height: math.unit(50 * 1559 / 989, "feet")
  6078. },
  6079. {
  6080. name: "World Encompassing",
  6081. height: math.unit(10000 * 1559 / 989, "miles")
  6082. },
  6083. {
  6084. name: "Galactic",
  6085. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6086. },
  6087. {
  6088. name: "Palmed Universe",
  6089. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Multiversal Matriarch",
  6094. height: math.unit(8.87e10, "yottameters")
  6095. },
  6096. {
  6097. name: "Void Mother",
  6098. height: math.unit(3.14e110, "yottaparsecs")
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Kuro-shi Uchū" },
  6104. {
  6105. front: {
  6106. height: math.unit(17 + 1 / 12, "feet"),
  6107. weight: math.unit(476.2 * 5, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/kuro-shi-uchū/front.svg",
  6111. extra: 2329 / 1835,
  6112. bottom: 0.02
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(2, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(12, "meters")
  6124. },
  6125. {
  6126. name: "Planetary",
  6127. height: math.unit(0.00929, "AU"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Universal",
  6132. height: math.unit(20, "gigaparsecs")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Katherine" },
  6138. {
  6139. front: {
  6140. height: math.unit(5 + 2 / 12, "feet"),
  6141. weight: math.unit(120, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/katherine/front.svg",
  6145. extra: 2075 / 1969
  6146. }
  6147. },
  6148. dress: {
  6149. height: math.unit(5 + 2 / 12, "feet"),
  6150. weight: math.unit(120, "lbs"),
  6151. name: "Dress",
  6152. image: {
  6153. source: "./media/characters/katherine/dress.svg",
  6154. extra: 2258 / 2064
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Micro",
  6161. height: math.unit(1, "inches"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(5 + 2 / 12, "feet")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(100, "meters")
  6171. },
  6172. {
  6173. name: "Megamacro",
  6174. height: math.unit(80, "miles")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Yevis" },
  6180. {
  6181. front: {
  6182. height: math.unit(7 + 8 / 12, "feet"),
  6183. weight: math.unit(250, "lbs"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/yevis/front.svg",
  6187. extra: 1938 / 1755
  6188. }
  6189. }
  6190. },
  6191. [
  6192. {
  6193. name: "Mortal",
  6194. height: math.unit(7 + 8 / 12, "feet")
  6195. },
  6196. {
  6197. name: "Battle",
  6198. height: math.unit(25 + 11 / 12, "feet")
  6199. },
  6200. {
  6201. name: "Wrath",
  6202. height: math.unit(1654 + 11 / 12, "feet")
  6203. },
  6204. {
  6205. name: "Planet Destroyer",
  6206. height: math.unit(12000, "miles")
  6207. },
  6208. {
  6209. name: "Galaxy Conqueror",
  6210. height: math.unit(1.45, "zettameters"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Universal War",
  6215. height: math.unit(184, "gigaparsecs")
  6216. },
  6217. {
  6218. name: "Eternity War",
  6219. height: math.unit(1.98e55, "yottaparsecs")
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Xavier" },
  6225. {
  6226. front: {
  6227. height: math.unit(5 + 8 / 12, "feet"),
  6228. weight: math.unit(63, "kg"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/xavier/front.svg",
  6232. extra: 944 / 883
  6233. }
  6234. },
  6235. frontStretch: {
  6236. height: math.unit(5 + 8 / 12, "feet"),
  6237. weight: math.unit(63, "kg"),
  6238. name: "Stretching",
  6239. image: {
  6240. source: "./media/characters/xavier/front-stretch.svg",
  6241. extra: 962 / 820
  6242. }
  6243. },
  6244. },
  6245. [
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(5 + 8 / 12, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(100, "meters"),
  6253. default: true
  6254. },
  6255. {
  6256. name: "McLargeHuge",
  6257. height: math.unit(10, "miles")
  6258. },
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Joshii" },
  6263. {
  6264. front: {
  6265. height: math.unit(5 + 5 / 12, "feet"),
  6266. weight: math.unit(150, "lb"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/joshii/front.svg"
  6270. }
  6271. },
  6272. foot: {
  6273. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6274. name: "Foot",
  6275. image: {
  6276. source: "./media/characters/joshii/foot.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(2, "inches")
  6284. },
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(5 + 5 / 12, "feet"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(785, "feet")
  6293. },
  6294. {
  6295. name: "Megamacro",
  6296. height: math.unit(24.5, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Goddess Elizabeth" },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(150, "lb"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/goddess-elizabeth/front.svg",
  6309. extra: 1800 / 1525,
  6310. bottom: 0.005
  6311. }
  6312. },
  6313. foot: {
  6314. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6315. name: "Foot",
  6316. image: {
  6317. source: "./media/characters/goddess-elizabeth/foot.svg"
  6318. }
  6319. },
  6320. mouth: {
  6321. height: math.unit(6, "feet"),
  6322. name: "Mouth",
  6323. image: {
  6324. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Micro",
  6331. height: math.unit(12, "feet")
  6332. },
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(80, "miles"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(15000, "parsecs")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Kara" },
  6346. {
  6347. front: {
  6348. height: math.unit(5 + 9 / 12, "feet"),
  6349. weight: math.unit(144, "lb"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/kara/front.svg"
  6353. }
  6354. },
  6355. feet: {
  6356. height: math.unit(6 / 6.765, "feet"),
  6357. name: "Kara's Feet",
  6358. rename: true,
  6359. image: {
  6360. source: "./media/characters/kara/feet.svg"
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(5 + 9 / 12, "feet")
  6368. },
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(174, "feet"),
  6372. default: true
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Tyrone" },
  6378. {
  6379. front: {
  6380. height: math.unit(18, "feet"),
  6381. weight: math.unit(4050, "lb"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/tyrone/front.svg",
  6385. extra: 2520 / 2402,
  6386. bottom: 0.025
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(18, "feet"),
  6394. default: true
  6395. },
  6396. {
  6397. name: "Macro",
  6398. height: math.unit(300, "feet")
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Danny" },
  6404. {
  6405. front: {
  6406. height: math.unit(7 + 8 / 12, "feet"),
  6407. weight: math.unit(120, "lb"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/danny/front.svg",
  6411. extra: 1490 / 1350
  6412. }
  6413. },
  6414. back: {
  6415. height: math.unit(7 + 8 / 12, "feet"),
  6416. weight: math.unit(120, "lb"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/danny/back.svg",
  6420. extra: 1490 / 1350
  6421. }
  6422. },
  6423. },
  6424. [
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(7 + 8 / 12, "feet"),
  6428. default: true
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Mallow" },
  6434. {
  6435. front: {
  6436. height: math.unit(3.5, "inches"),
  6437. weight: math.unit(19, "grams"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/mallow/front.svg",
  6441. extra: 471 / 431
  6442. }
  6443. },
  6444. back: {
  6445. height: math.unit(3.5, "inches"),
  6446. weight: math.unit(19, "grams"),
  6447. name: "Back",
  6448. image: {
  6449. source: "./media/characters/mallow/back.svg",
  6450. extra: 471 / 431
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(3.5, "inches"),
  6458. default: true
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Starry Aqua" },
  6464. {
  6465. front: {
  6466. height: math.unit(9, "feet"),
  6467. weight: math.unit(230, "kg"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/starry-aqua/front.svg"
  6471. }
  6472. },
  6473. back: {
  6474. height: math.unit(9, "feet"),
  6475. weight: math.unit(230, "kg"),
  6476. name: "Back",
  6477. image: {
  6478. source: "./media/characters/starry-aqua/back.svg"
  6479. }
  6480. },
  6481. hand: {
  6482. height: math.unit(9 * 0.1168, "feet"),
  6483. name: "Hand",
  6484. image: {
  6485. source: "./media/characters/starry-aqua/hand.svg"
  6486. }
  6487. },
  6488. foot: {
  6489. height: math.unit(9 * 0.18, "feet"),
  6490. name: "Foot",
  6491. image: {
  6492. source: "./media/characters/starry-aqua/foot.svg"
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Micro",
  6499. height: math.unit(3, "inches")
  6500. },
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(9, "feet")
  6504. },
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(300, "feet"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Megamacro",
  6512. height: math.unit(3200, "feet")
  6513. }
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Luka" },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(230, "lb"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/luka/front.svg",
  6525. extra: 1,
  6526. bottom: 0.025
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(12 + 8 / 12, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Minimacro",
  6538. height: math.unit(20, "feet")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(250, "feet")
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(5, "miles")
  6547. },
  6548. {
  6549. name: "Gigamacro",
  6550. height: math.unit(8000, "miles")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Natalie Nightring" },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(150, "lb"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/natalie-nightring/front.svg",
  6563. extra: 1,
  6564. bottom: 0.06
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Uh Oh",
  6571. height: math.unit(0.1, "mm")
  6572. },
  6573. {
  6574. name: "Small",
  6575. height: math.unit(3, "inches")
  6576. },
  6577. {
  6578. name: "Human Scale",
  6579. height: math.unit(6, "feet")
  6580. },
  6581. {
  6582. name: "Librarian",
  6583. height: math.unit(50, "feet"),
  6584. default: true
  6585. },
  6586. {
  6587. name: "Immense",
  6588. height: math.unit(200, "miles")
  6589. },
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Danni Rosie" },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(180, "lbs"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/danni-rosie/front.svg",
  6601. extra: 1260 / 1128,
  6602. bottom: 0.022
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(2, "inches"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Samantha Kruse" },
  6616. {
  6617. front: {
  6618. height: math.unit(5 + 9 / 12, "feet"),
  6619. weight: math.unit(220, "lb"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/samantha-kruse/front.svg",
  6623. extra: (985 / 935),
  6624. bottom: 0.03
  6625. }
  6626. },
  6627. frontUndressed: {
  6628. height: math.unit(5 + 9 / 12, "feet"),
  6629. weight: math.unit(220, "lb"),
  6630. name: "Front (Undressed)",
  6631. image: {
  6632. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6633. extra: (973 / 923),
  6634. bottom: 0.025
  6635. }
  6636. },
  6637. fat: {
  6638. height: math.unit(5 + 9 / 12, "feet"),
  6639. weight: math.unit(900, "lb"),
  6640. name: "Front (Fat)",
  6641. image: {
  6642. source: "./media/characters/samantha-kruse/fat.svg",
  6643. extra: 2688 / 2561
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(5 + 9 / 12, "feet"),
  6651. default: true
  6652. }
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Amelia Rosie" },
  6657. {
  6658. back: {
  6659. height: math.unit(5 + 4 / 12, "feet"),
  6660. weight: math.unit(4963, "lb"),
  6661. name: "Back",
  6662. image: {
  6663. source: "./media/characters/amelia-rosie/back.svg",
  6664. extra: 1113 / 963,
  6665. bottom: 0.01
  6666. }
  6667. },
  6668. },
  6669. [
  6670. {
  6671. name: "Level 0",
  6672. height: math.unit(5 + 4 / 12, "feet")
  6673. },
  6674. {
  6675. name: "Level 1",
  6676. height: math.unit(164597, "feet"),
  6677. default: true
  6678. },
  6679. {
  6680. name: "Level 2",
  6681. height: math.unit(956243, "miles")
  6682. },
  6683. {
  6684. name: "Level 3",
  6685. height: math.unit(29421709423, "miles")
  6686. },
  6687. {
  6688. name: "Level 4",
  6689. height: math.unit(154, "lightyears")
  6690. },
  6691. {
  6692. name: "Level 5",
  6693. height: math.unit(4738272, "lightyears")
  6694. },
  6695. {
  6696. name: "Level 6",
  6697. height: math.unit(145787152896, "lightyears")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Rook Kitara" },
  6703. {
  6704. front: {
  6705. height: math.unit(5 + 11 / 12, "feet"),
  6706. weight: math.unit(65, "kg"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/rook-kitara/front.svg",
  6710. extra: 1347 / 1274,
  6711. bottom: 0.005
  6712. }
  6713. },
  6714. },
  6715. [
  6716. {
  6717. name: "Totally Unfair",
  6718. height: math.unit(1.8, "mm")
  6719. },
  6720. {
  6721. name: "Lap Rookie",
  6722. height: math.unit(1.4, "feet")
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(5 + 11 / 12, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "How Did This Happen",
  6731. height: math.unit(80, "miles")
  6732. }
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Pisces" },
  6737. {
  6738. front: {
  6739. height: math.unit(7, "feet"),
  6740. weight: math.unit(300, "lb"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/pisces/front.svg",
  6744. extra: 2255 / 2115,
  6745. bottom: 0.03
  6746. }
  6747. },
  6748. back: {
  6749. height: math.unit(7, "feet"),
  6750. weight: math.unit(300, "lb"),
  6751. name: "Back",
  6752. image: {
  6753. source: "./media/characters/pisces/back.svg",
  6754. extra: 2146 / 2055,
  6755. bottom: 0.04
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(7, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Swimming Pool",
  6767. height: math.unit(12.2, "meters")
  6768. },
  6769. {
  6770. name: "Olympic Swimming Pool",
  6771. height: math.unit(56.3, "meters")
  6772. },
  6773. {
  6774. name: "Lake Superior",
  6775. height: math.unit(93900, "meters")
  6776. },
  6777. {
  6778. name: "Mediterranean Sea",
  6779. height: math.unit(644457, "meters")
  6780. },
  6781. {
  6782. name: "World's Oceans",
  6783. height: math.unit(4567491, "meters")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Zelas" },
  6789. {
  6790. front: {
  6791. height: math.unit(2.3, "meters"),
  6792. weight: math.unit(120, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/zelas/front.svg"
  6796. }
  6797. },
  6798. side: {
  6799. height: math.unit(2.3, "meters"),
  6800. weight: math.unit(120, "kg"),
  6801. name: "Side",
  6802. image: {
  6803. source: "./media/characters/zelas/side.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(2.3, "meters"),
  6808. weight: math.unit(120, "kg"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/zelas/back.svg"
  6812. }
  6813. },
  6814. foot: {
  6815. height: math.unit(1.116, "feet"),
  6816. name: "Foot",
  6817. image: {
  6818. source: "./media/characters/zelas/foot.svg"
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(2.3, "meters")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(30, "meters"),
  6830. default: true
  6831. },
  6832. ]
  6833. ))
  6834. characterMakers.push(() => makeCharacter(
  6835. { name: "Talbot" },
  6836. {
  6837. front: {
  6838. height: math.unit(1, "inch"),
  6839. weight: math.unit(0.21, "grams"),
  6840. name: "Front",
  6841. image: {
  6842. source: "./media/characters/talbot/front.svg",
  6843. extra: 594 / 544
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Micro",
  6850. height: math.unit(1, "inch"),
  6851. default: true
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Fliss" },
  6857. {
  6858. front: {
  6859. height: math.unit(3 + 3 / 12, "feet"),
  6860. weight: math.unit(51.8, "lb"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/fliss/front.svg",
  6864. extra: 840 / 640
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Teeny Tiny",
  6871. height: math.unit(1, "mm")
  6872. },
  6873. {
  6874. name: "Small",
  6875. height: math.unit(1, "inch"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Standard Sylveon",
  6880. height: math.unit(3 + 3 / 12, "feet")
  6881. },
  6882. {
  6883. name: "Large Nuisance",
  6884. height: math.unit(33, "feet")
  6885. },
  6886. {
  6887. name: "City Filler",
  6888. height: math.unit(3000, "feet")
  6889. },
  6890. {
  6891. name: "New Horizon",
  6892. height: math.unit(6000, "miles")
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Fleta" },
  6898. {
  6899. front: {
  6900. height: math.unit(5, "cm"),
  6901. weight: math.unit(1.94, "g"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/fleta/front.svg",
  6905. extra: 835 / 803
  6906. }
  6907. },
  6908. back: {
  6909. height: math.unit(5, "cm"),
  6910. weight: math.unit(1.94, "g"),
  6911. name: "Back",
  6912. image: {
  6913. source: "./media/characters/fleta/back.svg",
  6914. extra: 835 / 803
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(5, "cm"),
  6922. default: true
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Dominic" },
  6928. {
  6929. front: {
  6930. height: math.unit(6, "feet"),
  6931. weight: math.unit(225, "lb"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/dominic/front.svg",
  6935. extra: 1770 / 1620,
  6936. bottom: 0.025
  6937. }
  6938. },
  6939. back: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(225, "lb"),
  6942. name: "Back",
  6943. image: {
  6944. source: "./media/characters/dominic/back.svg",
  6945. extra: 1745 / 1620,
  6946. bottom: 0.065
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Nano",
  6953. height: math.unit(0.1, "mm")
  6954. },
  6955. {
  6956. name: "Micro-",
  6957. height: math.unit(1, "mm")
  6958. },
  6959. {
  6960. name: "Micro",
  6961. height: math.unit(4, "inches")
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(6 + 4 / 12, "feet"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(115, "feet")
  6971. },
  6972. {
  6973. name: "Macro+",
  6974. height: math.unit(955, "feet")
  6975. },
  6976. {
  6977. name: "Megamacro",
  6978. height: math.unit(8990, "feet")
  6979. },
  6980. {
  6981. name: "Gigmacro",
  6982. height: math.unit(9310, "miles")
  6983. },
  6984. {
  6985. name: "Teramacro",
  6986. height: math.unit(1567005010, "miles")
  6987. },
  6988. {
  6989. name: "Examacro",
  6990. height: math.unit(1425, "parsecs")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Major Colonel" },
  6996. {
  6997. front: {
  6998. height: math.unit(400, "feet"),
  6999. weight: math.unit(44444444, "lb"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/major-colonel/front.svg"
  7003. }
  7004. },
  7005. back: {
  7006. height: math.unit(400, "feet"),
  7007. weight: math.unit(44444444, "lb"),
  7008. name: "Back",
  7009. image: {
  7010. source: "./media/characters/major-colonel/back.svg"
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(400, "feet"),
  7018. default: true
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Axel Lycan" },
  7024. {
  7025. front: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(120, "lb"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/axel-lycan/front.svg",
  7031. extra: 1,
  7032. bottom: 0.08
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(1, "km"),
  7040. default: true
  7041. },
  7042. ]
  7043. ))
  7044. characterMakers.push(() => makeCharacter(
  7045. { name: "Vanrel (Hyena)" },
  7046. {
  7047. front: {
  7048. height: math.unit(5 + 9 / 12, "feet"),
  7049. weight: math.unit(175, "lb"),
  7050. name: "Front",
  7051. image: {
  7052. source: "./media/characters/vanrel-hyena/front.svg",
  7053. extra: 1086 / 1010,
  7054. bottom: 0.04
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(5 + 9 / 12, "feet"),
  7062. default: true
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Abbott Absol" },
  7068. {
  7069. front: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(103, "lb"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/abbott-absol/front.svg",
  7075. extra: 2010 / 1842
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Megamicro",
  7082. height: math.unit(0.1, "mm")
  7083. },
  7084. {
  7085. name: "Micro",
  7086. height: math.unit(1, "inch")
  7087. },
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(6, "feet"),
  7091. default: true
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Hector" },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(264, "lb"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/hector/front.svg",
  7104. extra: 2280 / 2130,
  7105. bottom: 0.07
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(12.25, "foot"),
  7113. default: true
  7114. },
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(160, "feet")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Sal" },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(150, "lb"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/sal/front.svg",
  7130. extra: 1846 / 1699,
  7131. bottom: 0.04
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Megamacro",
  7138. height: math.unit(10, "miles"),
  7139. default: true
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Ranger" },
  7145. {
  7146. front: {
  7147. height: math.unit(3, "meters"),
  7148. weight: math.unit(450, "kg"),
  7149. name: "front",
  7150. image: {
  7151. source: "./media/characters/ranger/front.svg",
  7152. extra: 2401 / 2243,
  7153. bottom: 0.05
  7154. }
  7155. },
  7156. },
  7157. [
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(3, "meters"),
  7161. default: true
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Theresa" },
  7167. {
  7168. front: {
  7169. height: math.unit(14, "feet"),
  7170. weight: math.unit(800, "kg"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/theresa/front.svg",
  7174. extra: 3575 / 3346,
  7175. bottom: 0.03
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(14, "feet"),
  7183. default: true
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Ine" },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(3, "kg"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/ine/front.svg",
  7196. extra: 678 / 539,
  7197. bottom: 0.023
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(2.265, "feet"),
  7205. default: true
  7206. },
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Vial" },
  7211. {
  7212. front: {
  7213. height: math.unit(5, "feet"),
  7214. weight: math.unit(30, "kg"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/vial/front.svg",
  7218. extra: 1365 / 1277,
  7219. bottom: 0.04
  7220. }
  7221. },
  7222. },
  7223. [
  7224. {
  7225. name: "Normal",
  7226. height: math.unit(5, "feet"),
  7227. default: true
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Rovoska" },
  7233. {
  7234. side: {
  7235. height: math.unit(3.4, "meters"),
  7236. weight: math.unit(1000, "lb"),
  7237. name: "Side",
  7238. image: {
  7239. source: "./media/characters/rovoska/side.svg",
  7240. extra: 4403 / 1515
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(3.4, "meters"),
  7248. default: true
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Gunner Rotthbauer" },
  7254. {
  7255. front: {
  7256. height: math.unit(8, "feet"),
  7257. weight: math.unit(315, "lb"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/gunner-rotthbauer/front.svg"
  7261. }
  7262. },
  7263. back: {
  7264. height: math.unit(8, "feet"),
  7265. weight: math.unit(315, "lb"),
  7266. name: "Back",
  7267. image: {
  7268. source: "./media/characters/gunner-rotthbauer/back.svg"
  7269. }
  7270. },
  7271. },
  7272. [
  7273. {
  7274. name: "Micro",
  7275. height: math.unit(3.5, "inches")
  7276. },
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(8, "feet"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(250, "feet")
  7285. },
  7286. {
  7287. name: "Megamacro",
  7288. height: math.unit(1, "AU")
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Allatia" },
  7294. {
  7295. front: {
  7296. height: math.unit(5 + 5 / 12, "feet"),
  7297. weight: math.unit(140, "lb"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/allatia/front.svg",
  7301. extra: 1227 / 1180,
  7302. bottom: 0.027
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(5 + 5 / 12, "feet")
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(250, "feet"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(8, "miles")
  7319. }
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Tene" },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(120, "lb"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/tene/front.svg",
  7331. extra: 1728 / 1578,
  7332. bottom: 0.022
  7333. }
  7334. },
  7335. stomping: {
  7336. height: math.unit(2.025, "meters"),
  7337. weight: math.unit(120, "lb"),
  7338. name: "Stomping",
  7339. image: {
  7340. source: "./media/characters/tene/stomping.svg",
  7341. extra: 938 / 873,
  7342. bottom: 0.01
  7343. }
  7344. },
  7345. sitting: {
  7346. height: math.unit(1, "meter"),
  7347. weight: math.unit(120, "lb"),
  7348. name: "Sitting",
  7349. image: {
  7350. source: "./media/characters/tene/sitting.svg",
  7351. extra: 437 / 415,
  7352. bottom: 0.1
  7353. }
  7354. },
  7355. feral: {
  7356. height: math.unit(3.9, "feet"),
  7357. weight: math.unit(250, "lb"),
  7358. name: "Feral",
  7359. image: {
  7360. source: "./media/characters/tene/feral.svg",
  7361. extra: 717 / 458,
  7362. bottom: 0.179
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(6, "feet")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(300, "feet"),
  7374. default: true
  7375. },
  7376. {
  7377. name: "Megamacro",
  7378. height: math.unit(5, "miles")
  7379. },
  7380. ]
  7381. ))
  7382. characterMakers.push(() => makeCharacter(
  7383. { name: "Evander" },
  7384. {
  7385. side: {
  7386. height: math.unit(6, "feet"),
  7387. name: "Side",
  7388. image: {
  7389. source: "./media/characters/evander/side.svg",
  7390. extra: 877 / 477
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(0.83, "meters"),
  7398. default: true
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7404. {
  7405. front: {
  7406. height: math.unit(12, "feet"),
  7407. weight: math.unit(1000, "lb"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7411. extra: 1762 / 1611
  7412. }
  7413. },
  7414. back: {
  7415. height: math.unit(12, "feet"),
  7416. weight: math.unit(1000, "lb"),
  7417. name: "Back",
  7418. image: {
  7419. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7420. extra: 1762 / 1611
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(12, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Kaiju",
  7432. height: math.unit(150, "feet")
  7433. },
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Zero Alurus" },
  7438. {
  7439. front: {
  7440. height: math.unit(6, "feet"),
  7441. weight: math.unit(150, "lb"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/zero-alurus/front.svg"
  7445. }
  7446. },
  7447. back: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(150, "lb"),
  7450. name: "Back",
  7451. image: {
  7452. source: "./media/characters/zero-alurus/back.svg"
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(5 + 10 / 12, "feet")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(60, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Macro+",
  7468. height: math.unit(450, "feet")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Mega Shi" },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(200, "lb"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/mega-shi/front.svg",
  7481. extra: 1279 / 1250,
  7482. bottom: 0.02
  7483. }
  7484. },
  7485. back: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(200, "lb"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/mega-shi/back.svg",
  7491. extra: 1279 / 1250,
  7492. bottom: 0.02
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Micro",
  7499. height: math.unit(16 + 6 / 12, "feet")
  7500. },
  7501. {
  7502. name: "Third Dimension",
  7503. height: math.unit(40, "meters")
  7504. },
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(660, "feet"),
  7508. default: true
  7509. },
  7510. {
  7511. name: "Megamacro",
  7512. height: math.unit(10, "miles")
  7513. },
  7514. {
  7515. name: "Planetary Launch",
  7516. height: math.unit(500, "miles")
  7517. },
  7518. {
  7519. name: "Interstellar",
  7520. height: math.unit(1e9, "miles")
  7521. },
  7522. {
  7523. name: "Leaving the Universe",
  7524. height: math.unit(1, "gigaparsec")
  7525. },
  7526. {
  7527. name: "Travelling Universes",
  7528. height: math.unit(30e15, "parsecs")
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Odyssey" },
  7534. {
  7535. front: {
  7536. height: math.unit(6, "feet"),
  7537. weight: math.unit(150, "lb"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/odyssey/front.svg",
  7541. extra: 1782 / 1582,
  7542. bottom: 0.01
  7543. }
  7544. },
  7545. side: {
  7546. height: math.unit(5.7, "feet"),
  7547. weight: math.unit(140, "lb"),
  7548. name: "Side",
  7549. image: {
  7550. source: "./media/characters/odyssey/side.svg",
  7551. extra: 6462 / 5700
  7552. }
  7553. },
  7554. },
  7555. [
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(5 + 4 / 12, "feet")
  7559. },
  7560. {
  7561. name: "Macro",
  7562. height: math.unit(1, "km")
  7563. },
  7564. {
  7565. name: "Megamacro",
  7566. height: math.unit(3000, "km")
  7567. },
  7568. {
  7569. name: "Gigamacro",
  7570. height: math.unit(1, "AU"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Omniversal",
  7575. height: math.unit(100e14, "lightyears")
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Mekuto" },
  7581. {
  7582. front: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(300, "lb"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/mekuto/front.svg",
  7588. extra: 921 / 832,
  7589. bottom: 0.03
  7590. }
  7591. },
  7592. hand: {
  7593. height: math.unit(6 / 10.24, "feet"),
  7594. name: "Hand",
  7595. image: {
  7596. source: "./media/characters/mekuto/hand.svg"
  7597. }
  7598. },
  7599. foot: {
  7600. height: math.unit(6 / 5.05, "feet"),
  7601. name: "Foot",
  7602. image: {
  7603. source: "./media/characters/mekuto/foot.svg"
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Minimicro",
  7610. height: math.unit(0.2, "inches")
  7611. },
  7612. {
  7613. name: "Micro",
  7614. height: math.unit(1.5, "inches")
  7615. },
  7616. {
  7617. name: "Normal",
  7618. height: math.unit(5 + 11 / 12, "feet"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "Minimacro",
  7623. height: math.unit(17 + 9 / 12, "feet")
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(177.5, "feet")
  7628. },
  7629. {
  7630. name: "Megamacro",
  7631. height: math.unit(152, "miles")
  7632. },
  7633. ]
  7634. ))
  7635. characterMakers.push(() => makeCharacter(
  7636. { name: "Dafydd Tomos" },
  7637. {
  7638. front: {
  7639. height: math.unit(6.5, "inches"),
  7640. weight: math.unit(13, "oz"),
  7641. name: "Front",
  7642. image: {
  7643. source: "./media/characters/dafydd-tomos/front.svg",
  7644. extra: 2990 / 2603,
  7645. bottom: 0.03
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(6.5, "inches"),
  7653. default: true
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Splinter" },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(150, "lb"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/splinter/front.svg",
  7666. extra: 2990 / 2882,
  7667. bottom: 0.04
  7668. }
  7669. },
  7670. back: {
  7671. height: math.unit(6, "feet"),
  7672. weight: math.unit(150, "lb"),
  7673. name: "Back",
  7674. image: {
  7675. source: "./media/characters/splinter/back.svg",
  7676. extra: 2990 / 2882,
  7677. bottom: 0.04
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(6, "feet")
  7685. },
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(230, "meters"),
  7689. default: true
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "SnowGabumon" },
  7695. {
  7696. front: {
  7697. height: math.unit(4 + 10 / 12, "feet"),
  7698. weight: math.unit(480, "lb"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/snow-gabumon/front.svg",
  7702. extra: 1140 / 963,
  7703. bottom: 0.058
  7704. }
  7705. },
  7706. back: {
  7707. height: math.unit(4 + 10 / 12, "feet"),
  7708. weight: math.unit(480, "lb"),
  7709. name: "Back",
  7710. image: {
  7711. source: "./media/characters/snow-gabumon/back.svg",
  7712. extra: 1115 / 962,
  7713. bottom: 0.041
  7714. }
  7715. },
  7716. frontUndresed: {
  7717. height: math.unit(4 + 10 / 12, "feet"),
  7718. weight: math.unit(480, "lb"),
  7719. name: "Front (Undressed)",
  7720. image: {
  7721. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7722. extra: 1061 / 960,
  7723. bottom: 0.045
  7724. }
  7725. },
  7726. },
  7727. [
  7728. {
  7729. name: "Micro",
  7730. height: math.unit(1, "inch")
  7731. },
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(4 + 10 / 12, "feet"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(200, "feet")
  7740. },
  7741. {
  7742. name: "Megamacro",
  7743. height: math.unit(120, "miles")
  7744. },
  7745. {
  7746. name: "Gigamacro",
  7747. height: math.unit(9800, "miles")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Moody" },
  7753. {
  7754. front: {
  7755. height: math.unit(1.7, "meters"),
  7756. weight: math.unit(140, "lb"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/moody/front.svg",
  7760. extra: 3226 / 3007,
  7761. bottom: 0.087
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(1, "mm")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(1.7, "meters"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(80, "meters")
  7778. },
  7779. {
  7780. name: "Macro+",
  7781. height: math.unit(500, "meters")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Zyas" },
  7787. {
  7788. front: {
  7789. height: math.unit(6, "feet"),
  7790. weight: math.unit(150, "lb"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/zyas/front.svg",
  7794. extra: 1180 / 1120,
  7795. bottom: 0.045
  7796. }
  7797. },
  7798. },
  7799. [
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(10, "feet"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(500, "feet")
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(5, "miles")
  7812. },
  7813. {
  7814. name: "Teramacro",
  7815. height: math.unit(150000, "miles")
  7816. },
  7817. ]
  7818. ))
  7819. characterMakers.push(() => makeCharacter(
  7820. { name: "Cuon" },
  7821. {
  7822. front: {
  7823. height: math.unit(6, "feet"),
  7824. weight: math.unit(150, "lb"),
  7825. name: "Front",
  7826. image: {
  7827. source: "./media/characters/cuon/front.svg",
  7828. extra: 1390 / 1320,
  7829. bottom: 0.008
  7830. }
  7831. },
  7832. },
  7833. [
  7834. {
  7835. name: "Micro",
  7836. height: math.unit(3, "inches")
  7837. },
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(18 + 9 / 12, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(360, "feet")
  7846. },
  7847. {
  7848. name: "Megamacro",
  7849. height: math.unit(360, "miles")
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Nyanuxk" },
  7855. {
  7856. front: {
  7857. height: math.unit(2.4, "meters"),
  7858. weight: math.unit(70, "kg"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/nyanuxk/front.svg",
  7862. extra: 1172 / 1084,
  7863. bottom: 0.065
  7864. }
  7865. },
  7866. side: {
  7867. height: math.unit(2.4, "meters"),
  7868. weight: math.unit(70, "kg"),
  7869. name: "Side",
  7870. image: {
  7871. source: "./media/characters/nyanuxk/side.svg",
  7872. extra: 1190 / 1132,
  7873. bottom: 0.007
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(2.4, "meters"),
  7878. weight: math.unit(70, "kg"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/nyanuxk/back.svg",
  7882. extra: 1200 / 1141,
  7883. bottom: 0.015
  7884. }
  7885. },
  7886. foot: {
  7887. height: math.unit(0.52, "meters"),
  7888. name: "Foot",
  7889. image: {
  7890. source: "./media/characters/nyanuxk/foot.svg"
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Micro",
  7897. height: math.unit(2, "cm")
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(2.4, "meters"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Smaller Macro",
  7906. height: math.unit(120, "meters")
  7907. },
  7908. {
  7909. name: "Bigger Macro",
  7910. height: math.unit(1.2, "km")
  7911. },
  7912. {
  7913. name: "Megamacro",
  7914. height: math.unit(15, "kilometers")
  7915. },
  7916. {
  7917. name: "Gigamacro",
  7918. height: math.unit(2000, "km")
  7919. },
  7920. {
  7921. name: "Teramacro",
  7922. height: math.unit(500000, "km")
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Ailbhe" },
  7928. {
  7929. side: {
  7930. height: math.unit(6, "feet"),
  7931. name: "Side",
  7932. image: {
  7933. source: "./media/characters/ailbhe/side.svg",
  7934. extra: 757 / 464,
  7935. bottom: 0.041
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(1.07, "meters"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Zevulfius" },
  7949. {
  7950. front: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(120, "kg"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/zevulfius/front.svg",
  7956. extra: 965 / 903
  7957. }
  7958. },
  7959. side: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(120, "kg"),
  7962. name: "Side",
  7963. image: {
  7964. source: "./media/characters/zevulfius/side.svg",
  7965. extra: 939 / 900
  7966. }
  7967. },
  7968. back: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(120, "kg"),
  7971. name: "Back",
  7972. image: {
  7973. source: "./media/characters/zevulfius/back.svg",
  7974. extra: 918 / 854,
  7975. bottom: 0.005
  7976. }
  7977. },
  7978. foot: {
  7979. height: math.unit(6 / 3.72, "feet"),
  7980. name: "Foot",
  7981. image: {
  7982. source: "./media/characters/zevulfius/foot.svg"
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(750, "meters")
  7990. },
  7991. {
  7992. name: "Megamacro",
  7993. height: math.unit(20, "km"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Gigamacro",
  7998. height: math.unit(2000, "km")
  7999. },
  8000. {
  8001. name: "Teramacro",
  8002. height: math.unit(250000, "km")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Rikes" },
  8008. {
  8009. front: {
  8010. height: math.unit(100, "feet"),
  8011. weight: math.unit(350, "kg"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/rikes/front.svg",
  8015. extra: 1565 / 1483,
  8016. bottom: 0.017
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(100, "feet"),
  8024. default: true
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Adam Silver-Mane" },
  8030. {
  8031. anthro: {
  8032. height: math.unit(8, "feet"),
  8033. weight: math.unit(120, "kg"),
  8034. name: "Anthro",
  8035. image: {
  8036. source: "./media/characters/adam-silver-mane/anthro.svg",
  8037. extra: 5743 / 5339,
  8038. bottom: 0.07
  8039. }
  8040. },
  8041. taur: {
  8042. height: math.unit(16, "feet"),
  8043. weight: math.unit(1500, "kg"),
  8044. name: "Taur",
  8045. image: {
  8046. source: "./media/characters/adam-silver-mane/taur.svg",
  8047. extra: 1713 / 1571,
  8048. bottom: 0.01
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(8, "feet")
  8056. },
  8057. {
  8058. name: "Minimacro",
  8059. height: math.unit(80, "feet")
  8060. },
  8061. {
  8062. name: "Macro",
  8063. height: math.unit(800, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Megamacro",
  8068. height: math.unit(8000, "feet")
  8069. },
  8070. {
  8071. name: "Gigamacro",
  8072. height: math.unit(800, "miles")
  8073. },
  8074. {
  8075. name: "Teramacro",
  8076. height: math.unit(80000, "miles")
  8077. },
  8078. {
  8079. name: "Celestial",
  8080. height: math.unit(8e6, "miles")
  8081. },
  8082. {
  8083. name: "Star Dragon",
  8084. height: math.unit(800000, "parsecs")
  8085. },
  8086. {
  8087. name: "Godly",
  8088. height: math.unit(800, "teraparsecs")
  8089. },
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Ky'owin" },
  8094. {
  8095. front: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(150, "lb"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/ky'owin/front.svg",
  8101. extra: 3888 / 3068,
  8102. bottom: 0.015
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(6 + 8 / 12, "feet")
  8110. },
  8111. {
  8112. name: "Large",
  8113. height: math.unit(68, "feet")
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(132, "feet")
  8118. },
  8119. {
  8120. name: "Macro+",
  8121. height: math.unit(340, "feet")
  8122. },
  8123. {
  8124. name: "Macro++",
  8125. height: math.unit(680, "feet"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Megamacro",
  8130. height: math.unit(1, "mile")
  8131. },
  8132. {
  8133. name: "Megamacro+",
  8134. height: math.unit(10, "miles")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Mal" },
  8140. {
  8141. front: {
  8142. height: math.unit(4, "feet"),
  8143. weight: math.unit(50, "lb"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/mal/front.svg",
  8147. extra: 785 / 724,
  8148. bottom: 0.07
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Micro",
  8155. height: math.unit(4, "inches")
  8156. },
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(4, "feet"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Macro",
  8164. height: math.unit(200, "feet")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Jordan Deware" },
  8170. {
  8171. front: {
  8172. height: math.unit(6, "feet"),
  8173. weight: math.unit(150, "lb"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/jordan-deware/front.svg",
  8177. extra: 1191 / 1012
  8178. }
  8179. },
  8180. },
  8181. [
  8182. {
  8183. name: "Nano",
  8184. height: math.unit(0.01, "mm")
  8185. },
  8186. {
  8187. name: "Minimicro",
  8188. height: math.unit(1, "mm")
  8189. },
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(0.5, "inches")
  8193. },
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(4, "feet"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Minimacro",
  8201. height: math.unit(40, "meters")
  8202. },
  8203. {
  8204. name: "Small Macro",
  8205. height: math.unit(400, "meters")
  8206. },
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(4, "miles")
  8210. },
  8211. {
  8212. name: "Megamacro",
  8213. height: math.unit(40, "miles")
  8214. },
  8215. {
  8216. name: "Megamacro+",
  8217. height: math.unit(400, "miles")
  8218. },
  8219. {
  8220. name: "Gigamacro",
  8221. height: math.unit(400000, "miles")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Kimiko" },
  8227. {
  8228. side: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(150, "lb"),
  8231. name: "Side",
  8232. image: {
  8233. source: "./media/characters/kimiko/side.svg",
  8234. extra: 600 / 358
  8235. }
  8236. },
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(15, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(220, "feet")
  8247. },
  8248. {
  8249. name: "Macro+",
  8250. height: math.unit(1450, "feet")
  8251. },
  8252. {
  8253. name: "Megamacro",
  8254. height: math.unit(11500, "feet")
  8255. },
  8256. {
  8257. name: "Gigamacro",
  8258. height: math.unit(9500, "miles")
  8259. },
  8260. {
  8261. name: "Teramacro",
  8262. height: math.unit(2208005005, "miles")
  8263. },
  8264. {
  8265. name: "Examacro",
  8266. height: math.unit(2750, "parsecs")
  8267. },
  8268. {
  8269. name: "Zettamacro",
  8270. height: math.unit(101500, "parsecs")
  8271. },
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Andrew Sleepy" },
  8276. {
  8277. front: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(70, "kg"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/andrew-sleepy/front.svg"
  8283. }
  8284. },
  8285. side: {
  8286. height: math.unit(6, "feet"),
  8287. weight: math.unit(70, "kg"),
  8288. name: "Side",
  8289. image: {
  8290. source: "./media/characters/andrew-sleepy/side.svg"
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Micro",
  8297. height: math.unit(1, "mm"),
  8298. default: true
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Judio" },
  8304. {
  8305. front: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(150, "lb"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/judio/front.svg",
  8311. extra: 1258 / 1110
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(5 + 6 / 12, "feet")
  8319. },
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(1000, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Megamacro",
  8327. height: math.unit(10, "miles")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Nomaxice" },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(68, "kg"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/nomaxice/front.svg",
  8340. extra: 1498 / 1073,
  8341. bottom: 0.075
  8342. }
  8343. },
  8344. foot: {
  8345. height: math.unit(1.1, "feet"),
  8346. name: "Foot",
  8347. image: {
  8348. source: "./media/characters/nomaxice/foot.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(8, "cm")
  8356. },
  8357. {
  8358. name: "Norm",
  8359. height: math.unit(1.82, "m")
  8360. },
  8361. {
  8362. name: "Norm+",
  8363. height: math.unit(8.8, "feet")
  8364. },
  8365. {
  8366. name: "Big",
  8367. height: math.unit(8, "meters"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Macro",
  8372. height: math.unit(18, "meters")
  8373. },
  8374. {
  8375. name: "Macro+",
  8376. height: math.unit(88, "meters")
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Dydros" },
  8382. {
  8383. front: {
  8384. height: math.unit(12, "feet"),
  8385. weight: math.unit(1.5, "tons"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/dydros/front.svg",
  8389. extra: 863 / 800,
  8390. bottom: 0.015
  8391. }
  8392. },
  8393. back: {
  8394. height: math.unit(12, "feet"),
  8395. weight: math.unit(1.5, "tons"),
  8396. name: "Back",
  8397. image: {
  8398. source: "./media/characters/dydros/back.svg",
  8399. extra: 900 / 843,
  8400. bottom: 0.005
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(12, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Riggi" },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(100, "kg"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/riggi/front.svg",
  8421. extra: 5787 / 5303
  8422. }
  8423. },
  8424. hyper: {
  8425. height: math.unit(6 * 5 / 3, "feet"),
  8426. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8427. name: "Hyper",
  8428. image: {
  8429. source: "./media/characters/riggi/hyper.svg",
  8430. extra: 3595 / 3485
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Small Macro",
  8437. height: math.unit(50, "feet")
  8438. },
  8439. {
  8440. name: "Default",
  8441. height: math.unit(200, "feet"),
  8442. default: true
  8443. },
  8444. {
  8445. name: "Loom",
  8446. height: math.unit(10000, "feet")
  8447. },
  8448. {
  8449. name: "Cruising Altitude",
  8450. height: math.unit(30000, "feet")
  8451. },
  8452. {
  8453. name: "Megamacro",
  8454. height: math.unit(100, "miles")
  8455. },
  8456. {
  8457. name: "Continent Sized",
  8458. height: math.unit(2800, "miles")
  8459. },
  8460. {
  8461. name: "Earth Sized",
  8462. height: math.unit(8000, "miles")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Alexi" },
  8468. {
  8469. front: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(250, "lb"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/alexi/front.svg",
  8475. extra: 3483 / 3291,
  8476. bottom: 0.04
  8477. }
  8478. },
  8479. back: {
  8480. height: math.unit(6, "feet"),
  8481. weight: math.unit(250, "lb"),
  8482. name: "Back",
  8483. image: {
  8484. source: "./media/characters/alexi/back.svg",
  8485. extra: 3533 / 3356,
  8486. bottom: 0.021
  8487. }
  8488. },
  8489. frontTransforming: {
  8490. height: math.unit(8.58, "feet"),
  8491. weight: math.unit(1300, "lb"),
  8492. name: "Transforming",
  8493. image: {
  8494. source: "./media/characters/alexi/front-transforming.svg",
  8495. extra: 437 / 409,
  8496. bottom: 19/458.66
  8497. }
  8498. },
  8499. frontTransformed: {
  8500. height: math.unit(12.5, "feet"),
  8501. weight: math.unit(4000, "lb"),
  8502. name: "Transformed",
  8503. image: {
  8504. source: "./media/characters/alexi/front-transformed.svg",
  8505. extra: 639 / 614,
  8506. bottom: 30.55/671
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(3, "meters"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Minimacro",
  8518. height: math.unit(30, "meters")
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(500, "meters")
  8523. },
  8524. {
  8525. name: "Megamacro",
  8526. height: math.unit(9000, "km")
  8527. },
  8528. {
  8529. name: "Teramacro",
  8530. height: math.unit(384000, "km")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Kayroo" },
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(150, "lb"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/kayroo/front.svg",
  8543. extra: 1153 / 1038,
  8544. bottom: 0.06
  8545. }
  8546. },
  8547. foot: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(150, "lb"),
  8550. name: "Foot",
  8551. image: {
  8552. source: "./media/characters/kayroo/foot.svg"
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(8, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Minimacro",
  8564. height: math.unit(250, "feet")
  8565. },
  8566. {
  8567. name: "Macro",
  8568. height: math.unit(2800, "feet")
  8569. },
  8570. {
  8571. name: "Megamacro",
  8572. height: math.unit(5200, "feet")
  8573. },
  8574. {
  8575. name: "Gigamacro",
  8576. height: math.unit(27000, "feet")
  8577. },
  8578. {
  8579. name: "Omega",
  8580. height: math.unit(45000, "feet")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Rhys" },
  8586. {
  8587. front: {
  8588. height: math.unit(18, "feet"),
  8589. weight: math.unit(5800, "lb"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/rhys/front.svg",
  8593. extra: 3386 / 3090,
  8594. bottom: 0.07
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(18, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Working Size",
  8606. height: math.unit(200, "feet")
  8607. },
  8608. {
  8609. name: "Demolition Size",
  8610. height: math.unit(2000, "feet")
  8611. },
  8612. {
  8613. name: "Maximum Licensed Size",
  8614. height: math.unit(5, "miles")
  8615. },
  8616. {
  8617. name: "Maximum Observed Size",
  8618. height: math.unit(10, "yottameters")
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Toto" },
  8624. {
  8625. front: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(250, "lb"),
  8628. name: "Front",
  8629. image: {
  8630. source: "./media/characters/toto/front.svg",
  8631. extra: 527 / 479,
  8632. bottom: 0.05
  8633. }
  8634. },
  8635. },
  8636. [
  8637. {
  8638. name: "Micro",
  8639. height: math.unit(3, "feet")
  8640. },
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(10, "feet")
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(150, "feet"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Megamacro",
  8652. height: math.unit(1200, "feet")
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "King" },
  8658. {
  8659. back: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(150, "lb"),
  8662. name: "Back",
  8663. image: {
  8664. source: "./media/characters/king/back.svg"
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(2, "inches")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(8, "feet")
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(200, "feet"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(50, "miles")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Cordite" },
  8690. {
  8691. anthro: {
  8692. height: math.unit(6 + 5 / 12, "feet"),
  8693. weight: math.unit(280, "lb"),
  8694. name: "Anthro",
  8695. image: {
  8696. source: "./media/characters/cordite/anthro.svg",
  8697. extra: 1986 / 1905,
  8698. bottom: 0.025
  8699. }
  8700. },
  8701. feral: {
  8702. height: math.unit(2, "feet"),
  8703. weight: math.unit(90, "lb"),
  8704. name: "Feral",
  8705. image: {
  8706. source: "./media/characters/cordite/feral.svg",
  8707. extra: 1260 / 755,
  8708. bottom: 0.05
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(6 + 5 / 12, "feet"),
  8716. default: true
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Pianostrong" },
  8722. {
  8723. front: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(150, "lb"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/pianostrong/front.svg",
  8729. extra: 6577 / 6254,
  8730. bottom: 0.02
  8731. }
  8732. },
  8733. side: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(150, "lb"),
  8736. name: "Side",
  8737. image: {
  8738. source: "./media/characters/pianostrong/side.svg",
  8739. extra: 6106 / 5730
  8740. }
  8741. },
  8742. back: {
  8743. height: math.unit(6, "feet"),
  8744. weight: math.unit(150, "lb"),
  8745. name: "Back",
  8746. image: {
  8747. source: "./media/characters/pianostrong/back.svg",
  8748. extra: 6085 / 5733,
  8749. bottom: 0.01
  8750. }
  8751. },
  8752. },
  8753. [
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(100, "feet")
  8757. },
  8758. {
  8759. name: "Macro+",
  8760. height: math.unit(300, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Macro++",
  8765. height: math.unit(1000, "feet")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Kona" },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(150, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/kona/front.svg",
  8778. extra: 2960 / 2629,
  8779. bottom: 0.005
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(11 + 8 / 12, "feet")
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(850, "feet"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Macro+",
  8795. height: math.unit(1.5, "km"),
  8796. default: true
  8797. },
  8798. {
  8799. name: "Megamacro",
  8800. height: math.unit(80, "miles")
  8801. },
  8802. {
  8803. name: "Gigamacro",
  8804. height: math.unit(3500, "miles")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Levi" },
  8810. {
  8811. side: {
  8812. height: math.unit(1.9, "meters"),
  8813. weight: math.unit(326, "kg"),
  8814. name: "Side",
  8815. image: {
  8816. source: "./media/characters/levi/side.svg",
  8817. extra: 1704 / 1334,
  8818. bottom: 0.02
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(1.9, "meters"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(20, "meters")
  8831. },
  8832. {
  8833. name: "Macro+",
  8834. height: math.unit(200, "meters")
  8835. },
  8836. {
  8837. name: "Megamacro",
  8838. height: math.unit(2, "km")
  8839. },
  8840. {
  8841. name: "Megamacro+",
  8842. height: math.unit(20, "km")
  8843. },
  8844. {
  8845. name: "Gigamacro",
  8846. height: math.unit(2500, "km")
  8847. },
  8848. {
  8849. name: "Gigamacro+",
  8850. height: math.unit(120000, "km")
  8851. },
  8852. {
  8853. name: "Teramacro",
  8854. height: math.unit(7.77e6, "km")
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "BMC" },
  8860. {
  8861. front: {
  8862. height: math.unit(6 + 4 / 12, "feet"),
  8863. weight: math.unit(188, "lb"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/bmc/front.svg",
  8867. extra: 1067 / 1022,
  8868. bottom: 0.047
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Human-sized",
  8875. height: math.unit(6 + 4 / 12, "feet")
  8876. },
  8877. {
  8878. name: "Small",
  8879. height: math.unit(250, "feet")
  8880. },
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(1250, "feet"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Good Day",
  8888. height: math.unit(88, "miles")
  8889. },
  8890. {
  8891. name: "Largest Measured Size",
  8892. height: math.unit(11.2e6, "lightyears")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Sven the Kaiju" },
  8898. {
  8899. front: {
  8900. height: math.unit(20, "feet"),
  8901. weight: math.unit(2016, "kg"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/sven-the-kaiju/front.svg",
  8905. extra: 1479 / 1449,
  8906. bottom: 0.05
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Fairy",
  8913. height: math.unit(6, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(20, "feet"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "Rampage",
  8922. height: math.unit(200, "feet")
  8923. },
  8924. {
  8925. name: "Archfey Forest Guardian",
  8926. height: math.unit(1, "mile")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Marik" },
  8932. {
  8933. front: {
  8934. height: math.unit(4, "meters"),
  8935. weight: math.unit(2, "tons"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/marik/front.svg",
  8939. extra: 1057 / 1003,
  8940. bottom: 0.08
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(4, "meters"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(20, "meters")
  8953. },
  8954. {
  8955. name: "Megamacro",
  8956. height: math.unit(50, "km")
  8957. },
  8958. {
  8959. name: "Gigamacro",
  8960. height: math.unit(100, "km")
  8961. },
  8962. {
  8963. name: "Alpha Macro",
  8964. height: math.unit(7.88e7, "yottameters")
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Mel" },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(110, "lb"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/mel/front.svg",
  8977. extra: 736 / 617,
  8978. bottom: 0.017
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Pico",
  8985. height: math.unit(3, "pm")
  8986. },
  8987. {
  8988. name: "Nano",
  8989. height: math.unit(3, "nm")
  8990. },
  8991. {
  8992. name: "Micro",
  8993. height: math.unit(0.3, "mm"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Micro+",
  8998. height: math.unit(3, "mm")
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(5 + 10.5 / 12, "feet")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Lykonous" },
  9008. {
  9009. kaiju: {
  9010. height: math.unit(1.75, "meters"),
  9011. weight: math.unit(55, "kg"),
  9012. name: "Kaiju",
  9013. image: {
  9014. source: "./media/characters/lykonous/kaiju.svg",
  9015. extra: 1055 / 946,
  9016. bottom: 0.135
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(2.5, "meters"),
  9024. default: true
  9025. },
  9026. {
  9027. name: "Kaiju Dragon",
  9028. height: math.unit(60, "meters")
  9029. },
  9030. {
  9031. name: "Mega Kaiju",
  9032. height: math.unit(120, "km")
  9033. },
  9034. {
  9035. name: "Giga Kaiju",
  9036. height: math.unit(200, "megameters")
  9037. },
  9038. {
  9039. name: "Terra Kaiju",
  9040. height: math.unit(400, "gigameters")
  9041. },
  9042. {
  9043. name: "Kaiju Dragon God",
  9044. height: math.unit(13000, "exaparsecs")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Blü" },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(150, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/blü/front.svg",
  9057. extra: 1883 / 1564,
  9058. bottom: 0.031
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(13, "feet"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Big Boi",
  9070. height: math.unit(150, "meters")
  9071. },
  9072. {
  9073. name: "Mini Stomper",
  9074. height: math.unit(300, "meters")
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(1000, "meters")
  9079. },
  9080. {
  9081. name: "Megamacro",
  9082. height: math.unit(11000, "meters")
  9083. },
  9084. {
  9085. name: "Gigamacro",
  9086. height: math.unit(11000, "km")
  9087. },
  9088. {
  9089. name: "Teramacro",
  9090. height: math.unit(420000, "km")
  9091. },
  9092. {
  9093. name: "Examacro",
  9094. height: math.unit(120, "parsecs")
  9095. },
  9096. {
  9097. name: "God Tho",
  9098. height: math.unit(98000000000, "parsecs")
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Scales" },
  9104. {
  9105. taurFront: {
  9106. height: math.unit(6, "feet"),
  9107. weight: math.unit(200, "lb"),
  9108. name: "Taur (Front)",
  9109. image: {
  9110. source: "./media/characters/scales/taur-front.svg",
  9111. extra: 1,
  9112. bottom: 0.05
  9113. }
  9114. },
  9115. taurBack: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(200, "lb"),
  9118. name: "Taur (Back)",
  9119. image: {
  9120. source: "./media/characters/scales/taur-back.svg",
  9121. extra: 1,
  9122. bottom: 0.08
  9123. }
  9124. },
  9125. anthro: {
  9126. height: math.unit(6 * 7 / 12, "feet"),
  9127. weight: math.unit(100, "lb"),
  9128. name: "Anthro",
  9129. image: {
  9130. source: "./media/characters/scales/anthro.svg",
  9131. extra: 1,
  9132. bottom: 0.06
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(12, "feet"),
  9140. default: true
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Koragos" },
  9146. {
  9147. front: {
  9148. height: math.unit(6, "feet"),
  9149. weight: math.unit(150, "lb"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/koragos/front.svg",
  9153. extra: 841 / 794,
  9154. bottom: 0.035
  9155. }
  9156. },
  9157. back: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(150, "lb"),
  9160. name: "Back",
  9161. image: {
  9162. source: "./media/characters/koragos/back.svg",
  9163. extra: 841 / 810,
  9164. bottom: 0.022
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(6 + 11 / 12, "feet"),
  9172. default: true
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(490, "feet")
  9177. },
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(10, "miles")
  9181. },
  9182. {
  9183. name: "Gigamacro",
  9184. height: math.unit(50, "miles")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Xylrem" },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(250, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/xylrem/front.svg",
  9197. extra: 3323 / 3050,
  9198. bottom: 0.065
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Micro",
  9205. height: math.unit(4, "feet")
  9206. },
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(16, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(2720, "feet")
  9215. },
  9216. {
  9217. name: "Megamacro",
  9218. height: math.unit(25000, "miles")
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Ikideru" },
  9224. {
  9225. front: {
  9226. height: math.unit(8, "feet"),
  9227. weight: math.unit(250, "kg"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/ikideru/front.svg",
  9231. extra: 930 / 870,
  9232. bottom: 0.087
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(8, "feet"),
  9237. weight: math.unit(250, "kg"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/ikideru/back.svg",
  9241. extra: 919 / 852,
  9242. bottom: 0.055
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Rare",
  9249. height: math.unit(8, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Playful Loom",
  9254. height: math.unit(80, "feet")
  9255. },
  9256. {
  9257. name: "City Leaner",
  9258. height: math.unit(230, "feet")
  9259. },
  9260. {
  9261. name: "Megamacro",
  9262. height: math.unit(2500, "feet")
  9263. },
  9264. {
  9265. name: "Gigamacro",
  9266. height: math.unit(26400, "feet")
  9267. },
  9268. {
  9269. name: "Tectonic Shifter",
  9270. height: math.unit(1.7, "megameters")
  9271. },
  9272. {
  9273. name: "Planet Carer",
  9274. height: math.unit(21, "megameters")
  9275. },
  9276. {
  9277. name: "God",
  9278. height: math.unit(11157.22, "parsecs")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Neo" },
  9284. {
  9285. front: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(120, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/neo/front.svg"
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(2, "inches"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Human Size",
  9302. height: math.unit(5 + 8 / 12, "feet")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Chauncey (Chantz)" },
  9308. {
  9309. front: {
  9310. height: math.unit(13 + 10 / 12, "feet"),
  9311. weight: math.unit(5320, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/chauncey-chantz/front.svg",
  9315. extra: 1587 / 1435,
  9316. bottom: 0.02
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(13 + 10 / 12, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(45, "feet")
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(250, "miles")
  9333. },
  9334. {
  9335. name: "Planetary",
  9336. height: math.unit(10000, "miles")
  9337. },
  9338. {
  9339. name: "Galactic",
  9340. height: math.unit(40000, "parsecs")
  9341. },
  9342. {
  9343. name: "Universal",
  9344. height: math.unit(1, "yottameter")
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Epifox" },
  9350. {
  9351. front: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(150, "lb"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/epifox/front.svg",
  9357. extra: 1,
  9358. bottom: 0.075
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(6, "inches")
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(12, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(3810, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(500, "miles")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Colin T." },
  9384. {
  9385. front: {
  9386. height: math.unit(1.8796, "m"),
  9387. weight: math.unit(230, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/colin-t/front.svg",
  9391. extra: 1272 / 1193,
  9392. bottom: 0.07
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(0.571, "meters")
  9400. },
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(1.8796, "meters"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Tall",
  9408. height: math.unit(4, "meters")
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(67.241, "meters")
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(371.856, "meters")
  9417. },
  9418. {
  9419. name: "Planetary",
  9420. height: math.unit(12631.5689, "km")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Matvei" },
  9426. {
  9427. front: {
  9428. height: math.unit(1.85, "meters"),
  9429. weight: math.unit(80, "kg"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/matvei/front.svg",
  9433. extra: 614 / 594,
  9434. bottom: 0.01
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(1.85, "meters"),
  9442. default: true
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Quincy" },
  9448. {
  9449. front: {
  9450. height: math.unit(5 + 9 / 12, "feet"),
  9451. weight: math.unit(70, "lb"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/quincy/front.svg",
  9455. extra: 3041 / 2751
  9456. }
  9457. },
  9458. back: {
  9459. height: math.unit(5 + 9 / 12, "feet"),
  9460. weight: math.unit(70, "lb"),
  9461. name: "Back",
  9462. image: {
  9463. source: "./media/characters/quincy/back.svg",
  9464. extra: 3041 / 2751
  9465. }
  9466. },
  9467. flying: {
  9468. height: math.unit(5 + 4 / 12, "feet"),
  9469. weight: math.unit(70, "lb"),
  9470. name: "Flying",
  9471. image: {
  9472. source: "./media/characters/quincy/flying.svg",
  9473. extra: 1044 / 930
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Micro",
  9480. height: math.unit(3, "cm")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(5 + 9 / 12, "feet")
  9485. },
  9486. {
  9487. name: "Macro",
  9488. height: math.unit(200, "meters"),
  9489. default: true
  9490. },
  9491. {
  9492. name: "Megamacro",
  9493. height: math.unit(1000, "meters")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Vanrel" },
  9499. {
  9500. front: {
  9501. height: math.unit(4 + 7 / 12, "feet"),
  9502. weight: math.unit(150, "lb"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/vanrel/front.svg",
  9506. extra: 1,
  9507. bottom: 0.02
  9508. }
  9509. },
  9510. elemental: {
  9511. height: math.unit(3, "feet"),
  9512. weight: math.unit(150, "lb"),
  9513. name: "Elemental",
  9514. image: {
  9515. source: "./media/characters/vanrel/elemental.svg",
  9516. extra: 192.3/162.8,
  9517. bottom: 1.79/194.17
  9518. }
  9519. },
  9520. side: {
  9521. height: math.unit(4 + 7 / 12, "feet"),
  9522. weight: math.unit(150, "lb"),
  9523. name: "Side",
  9524. image: {
  9525. source: "./media/characters/vanrel/side.svg",
  9526. extra: 1,
  9527. bottom: 0.025
  9528. }
  9529. },
  9530. tome: {
  9531. height: math.unit(1.35, "feet"),
  9532. weight: math.unit(10, "lb"),
  9533. name: "Vanrel's Tome",
  9534. rename: true,
  9535. image: {
  9536. source: "./media/characters/vanrel/tome.svg"
  9537. }
  9538. },
  9539. beans: {
  9540. height: math.unit(0.89, "feet"),
  9541. name: "Beans",
  9542. image: {
  9543. source: "./media/characters/vanrel/beans.svg"
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(4 + 7 / 12, "feet"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Kuiper Vanrel" },
  9557. {
  9558. front: {
  9559. height: math.unit(7 + 5 / 12, "feet"),
  9560. weight: math.unit(150, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/kuiper-vanrel/front.svg",
  9564. extra: 1118 / 1068,
  9565. bottom: 0.09
  9566. }
  9567. },
  9568. foot: {
  9569. height: math.unit(0.55, "meters"),
  9570. name: "Foot",
  9571. image: {
  9572. source: "./media/characters/kuiper-vanrel/foot.svg",
  9573. }
  9574. },
  9575. battle: {
  9576. height: math.unit(6.824, "feet"),
  9577. weight: math.unit(150, "lb"),
  9578. name: "Battle",
  9579. image: {
  9580. source: "./media/characters/kuiper-vanrel/battle.svg",
  9581. extra: 1466/1327,
  9582. bottom: 29/1492.5
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(7 + 5 / 12, "feet"),
  9590. default: true
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Keset Vanrel" },
  9596. {
  9597. front: {
  9598. height: math.unit(8 + 5 / 12, "feet"),
  9599. weight: math.unit(150, "lb"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/keset-vanrel/front.svg",
  9603. extra: 1150 / 1084,
  9604. bottom: 0.05
  9605. }
  9606. },
  9607. hand: {
  9608. height: math.unit(0.6, "meters"),
  9609. name: "Hand",
  9610. image: {
  9611. source: "./media/characters/keset-vanrel/hand.svg"
  9612. }
  9613. },
  9614. foot: {
  9615. height: math.unit(0.94978, "meters"),
  9616. name: "Foot",
  9617. image: {
  9618. source: "./media/characters/keset-vanrel/foot.svg"
  9619. }
  9620. },
  9621. battle: {
  9622. height: math.unit(7.408, "feet"),
  9623. weight: math.unit(150, "lb"),
  9624. name: "Battle",
  9625. image: {
  9626. source: "./media/characters/keset-vanrel/battle.svg",
  9627. extra: 1890/1386,
  9628. bottom: 73.28/1970
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(8 + 5 / 12, "feet"),
  9636. default: true
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Neos" },
  9642. {
  9643. front: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(150, "lb"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/neos/front.svg",
  9649. extra: 1696 / 992,
  9650. bottom: 0.14
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(54, "cm"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(100, "m")
  9663. },
  9664. {
  9665. name: "Megamacro",
  9666. height: math.unit(10, "km")
  9667. },
  9668. {
  9669. name: "Megamacro+",
  9670. height: math.unit(100, "km")
  9671. },
  9672. {
  9673. name: "Gigamacro",
  9674. height: math.unit(100, "Mm")
  9675. },
  9676. {
  9677. name: "Teramacro",
  9678. height: math.unit(100, "Gm")
  9679. },
  9680. {
  9681. name: "Examacro",
  9682. height: math.unit(100, "Em")
  9683. },
  9684. {
  9685. name: "Godly",
  9686. height: math.unit(10000, "Ym")
  9687. },
  9688. {
  9689. name: "Beyond Godly",
  9690. height: math.unit(10000000, "Ym")
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Sammy Mouse" },
  9696. {
  9697. feminine: {
  9698. height: math.unit(5, "feet"),
  9699. weight: math.unit(100, "lb"),
  9700. name: "Feminine",
  9701. image: {
  9702. source: "./media/characters/sammy-mouse/feminine.svg",
  9703. extra: 2526 / 2425,
  9704. bottom: 0.123
  9705. }
  9706. },
  9707. masculine: {
  9708. height: math.unit(5, "feet"),
  9709. weight: math.unit(100, "lb"),
  9710. name: "Masculine",
  9711. image: {
  9712. source: "./media/characters/sammy-mouse/masculine.svg",
  9713. extra: 2526 / 2425,
  9714. bottom: 0.123
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Micro",
  9721. height: math.unit(5, "inches")
  9722. },
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(5, "feet"),
  9726. default: true
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(60, "feet")
  9731. },
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Kole" },
  9736. {
  9737. front: {
  9738. height: math.unit(4, "feet"),
  9739. weight: math.unit(50, "lb"),
  9740. name: "Front",
  9741. image: {
  9742. source: "./media/characters/kole/front.svg",
  9743. extra: 1423 / 1303,
  9744. bottom: 0.025
  9745. }
  9746. },
  9747. back: {
  9748. height: math.unit(4, "feet"),
  9749. weight: math.unit(50, "lb"),
  9750. name: "Back",
  9751. image: {
  9752. source: "./media/characters/kole/back.svg",
  9753. extra: 1426 / 1280,
  9754. bottom: 0.02
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(4, "feet"),
  9762. default: true
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Rufran" },
  9768. {
  9769. front: {
  9770. height: math.unit(2 + 6 / 12, "feet"),
  9771. weight: math.unit(20, "lb"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/rufran/front.svg",
  9775. extra: 2041 / 1839,
  9776. bottom: 0.055
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(2 + 6 / 12, "feet"),
  9781. weight: math.unit(20, "lb"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/rufran/back.svg",
  9785. extra: 2054 / 1839,
  9786. bottom: 0.01
  9787. }
  9788. },
  9789. hand: {
  9790. height: math.unit(0.2166, "meters"),
  9791. name: "Hand",
  9792. image: {
  9793. source: "./media/characters/rufran/hand.svg"
  9794. }
  9795. },
  9796. foot: {
  9797. height: math.unit(0.185, "meters"),
  9798. name: "Foot",
  9799. image: {
  9800. source: "./media/characters/rufran/foot.svg"
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(1, "inch")
  9808. },
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(2 + 6 / 12, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Big",
  9816. height: math.unit(60, "feet")
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(325, "feet")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Chip" },
  9826. {
  9827. front: {
  9828. height: math.unit(0.3, "meters"),
  9829. weight: math.unit(3.5, "kg"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/chip/front.svg",
  9833. extra: 748 / 674
  9834. }
  9835. },
  9836. },
  9837. [
  9838. {
  9839. name: "Micro",
  9840. height: math.unit(1, "inch"),
  9841. default: true
  9842. },
  9843. ]
  9844. ))
  9845. characterMakers.push(() => makeCharacter(
  9846. { name: "Torvid" },
  9847. {
  9848. side: {
  9849. height: math.unit(2.3, "meters"),
  9850. weight: math.unit(3500, "lb"),
  9851. name: "Side",
  9852. image: {
  9853. source: "./media/characters/torvid/side.svg",
  9854. extra: 1972 / 722,
  9855. bottom: 0.035
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(2.3, "meters"),
  9863. default: true
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Susan" },
  9869. {
  9870. front: {
  9871. height: math.unit(2, "meters"),
  9872. weight: math.unit(150.5, "kg"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/susan/front.svg",
  9876. extra: 693 / 635,
  9877. bottom: 0.05
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(505, "miles"),
  9885. default: true
  9886. },
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Raindrops" },
  9891. {
  9892. front: {
  9893. height: math.unit(6, "feet"),
  9894. weight: math.unit(150, "lb"),
  9895. name: "Front",
  9896. image: {
  9897. source: "./media/characters/raindrops/front.svg",
  9898. extra: 2655 / 2461,
  9899. bottom: 0.02
  9900. }
  9901. },
  9902. back: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(150, "lb"),
  9905. name: "Back",
  9906. image: {
  9907. source: "./media/characters/raindrops/back.svg",
  9908. extra: 2574 / 2400,
  9909. bottom: 0.03
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Micro",
  9916. height: math.unit(6, "inches")
  9917. },
  9918. {
  9919. name: "Normal",
  9920. height: math.unit(6 + 2 / 12, "feet")
  9921. },
  9922. {
  9923. name: "Macro",
  9924. height: math.unit(131, "feet"),
  9925. default: true
  9926. },
  9927. {
  9928. name: "Megamacro",
  9929. height: math.unit(15, "miles")
  9930. },
  9931. {
  9932. name: "Gigamacro",
  9933. height: math.unit(4000, "miles")
  9934. },
  9935. {
  9936. name: "Teramacro",
  9937. height: math.unit(315000, "miles")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Tezwa" },
  9943. {
  9944. front: {
  9945. height: math.unit(2.794, "meters"),
  9946. weight: math.unit(325, "kg"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/tezwa/front.svg",
  9950. extra: 2083 / 1906,
  9951. bottom: 0.031
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(0.687, "meters"),
  9956. name: "Foot",
  9957. image: {
  9958. source: "./media/characters/tezwa/foot.svg"
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(9 + 2 / 12, "feet"),
  9966. default: true
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Typhus" },
  9972. {
  9973. front: {
  9974. height: math.unit(58, "feet"),
  9975. weight: math.unit(89000, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/typhus/front.svg",
  9979. extra: 816 / 800,
  9980. bottom: 0.065
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(58, "feet"),
  9988. default: true
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Lyra Von Wulf" },
  9994. {
  9995. front: {
  9996. height: math.unit(12, "feet"),
  9997. weight: math.unit(6, "tonnes"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/lyra-von-wulf/front.svg",
  10001. extra: 1,
  10002. bottom: 0.10
  10003. }
  10004. },
  10005. frontMecha: {
  10006. height: math.unit(12, "feet"),
  10007. weight: math.unit(12, "tonnes"),
  10008. name: "Front (Mecha)",
  10009. image: {
  10010. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10011. extra: 1,
  10012. bottom: 0.042
  10013. }
  10014. },
  10015. maw: {
  10016. height: math.unit(2.2, "feet"),
  10017. name: "Maw",
  10018. image: {
  10019. source: "./media/characters/lyra-von-wulf/maw.svg"
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Normal",
  10026. height: math.unit(12, "feet"),
  10027. default: true
  10028. },
  10029. {
  10030. name: "Classic",
  10031. height: math.unit(50, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(500, "feet")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(1, "mile")
  10040. },
  10041. {
  10042. name: "Gigamacro",
  10043. height: math.unit(400, "miles")
  10044. },
  10045. {
  10046. name: "Teramacro",
  10047. height: math.unit(22000, "miles")
  10048. },
  10049. {
  10050. name: "Solarmacro",
  10051. height: math.unit(8600000, "miles")
  10052. },
  10053. {
  10054. name: "Galactic",
  10055. height: math.unit(1057000, "lightyears")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Dixon" },
  10061. {
  10062. front: {
  10063. height: math.unit(6 + 10 / 12, "feet"),
  10064. weight: math.unit(150, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/dixon/front.svg",
  10068. extra: 3361 / 3209,
  10069. bottom: 0.01
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(6 + 10 / 12, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Big",
  10081. height: math.unit(12, "meters")
  10082. },
  10083. {
  10084. name: "Macro",
  10085. height: math.unit(500, "meters")
  10086. },
  10087. {
  10088. name: "Megamacro",
  10089. height: math.unit(2, "km")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Kauko" },
  10095. {
  10096. front: {
  10097. height: math.unit(185, "cm"),
  10098. weight: math.unit(68, "kg"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/kauko/front.svg",
  10102. extra: 1455 / 1421,
  10103. bottom: 0.03
  10104. }
  10105. },
  10106. back: {
  10107. height: math.unit(185, "cm"),
  10108. weight: math.unit(68, "kg"),
  10109. name: "Back",
  10110. image: {
  10111. source: "./media/characters/kauko/back.svg",
  10112. extra: 1455 / 1421,
  10113. bottom: 0.004
  10114. }
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(185, "cm"),
  10121. default: true
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Varg" },
  10127. {
  10128. front: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(150, "kg"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/varg/front.svg",
  10134. extra: 1108 / 1018,
  10135. bottom: 0.0375
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(5, "meters")
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(200, "meters")
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(20, "kilometers")
  10151. },
  10152. {
  10153. name: "True Size",
  10154. height: math.unit(211, "km"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Gigamacro",
  10159. height: math.unit(1000, "km")
  10160. },
  10161. {
  10162. name: "Gigamacro+",
  10163. height: math.unit(8000, "km")
  10164. },
  10165. {
  10166. name: "Teramacro",
  10167. height: math.unit(1000000, "km")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Dayza" },
  10173. {
  10174. front: {
  10175. height: math.unit(7 + 7 / 12, "feet"),
  10176. weight: math.unit(267, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/dayza/front.svg",
  10180. extra: 1262 / 1200,
  10181. bottom: 0.035
  10182. }
  10183. },
  10184. side: {
  10185. height: math.unit(7 + 7 / 12, "feet"),
  10186. weight: math.unit(267, "lb"),
  10187. name: "Side",
  10188. image: {
  10189. source: "./media/characters/dayza/side.svg",
  10190. extra: 1295 / 1245,
  10191. bottom: 0.05
  10192. }
  10193. },
  10194. back: {
  10195. height: math.unit(7 + 7 / 12, "feet"),
  10196. weight: math.unit(267, "lb"),
  10197. name: "Back",
  10198. image: {
  10199. source: "./media/characters/dayza/back.svg",
  10200. extra: 1241 / 1170
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(7 + 7 / 12, "feet"),
  10208. default: true
  10209. },
  10210. {
  10211. name: "Macro",
  10212. height: math.unit(155, "feet")
  10213. },
  10214. ]
  10215. ))
  10216. characterMakers.push(() => makeCharacter(
  10217. { name: "Xanthos" },
  10218. {
  10219. front: {
  10220. height: math.unit(6 + 5 / 12, "feet"),
  10221. weight: math.unit(160, "lb"),
  10222. name: "Front",
  10223. image: {
  10224. source: "./media/characters/xanthos/front.svg",
  10225. extra: 1,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. back: {
  10230. height: math.unit(6 + 5 / 12, "feet"),
  10231. weight: math.unit(160, "lb"),
  10232. name: "Back",
  10233. image: {
  10234. source: "./media/characters/xanthos/back.svg",
  10235. extra: 1,
  10236. bottom: 0.03
  10237. }
  10238. },
  10239. hand: {
  10240. height: math.unit(0.928, "feet"),
  10241. name: "Hand",
  10242. image: {
  10243. source: "./media/characters/xanthos/hand.svg"
  10244. }
  10245. },
  10246. foot: {
  10247. height: math.unit(1.286, "feet"),
  10248. name: "Foot",
  10249. image: {
  10250. source: "./media/characters/xanthos/foot.svg"
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(6 + 5 / 12, "feet"),
  10258. default: true
  10259. },
  10260. {
  10261. name: "Normal+",
  10262. height: math.unit(6, "meters")
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(40, "feet")
  10267. },
  10268. {
  10269. name: "Macro+",
  10270. height: math.unit(200, "meters")
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(20, "km")
  10275. },
  10276. {
  10277. name: "Megamacro+",
  10278. height: math.unit(100, "km")
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Grynn" },
  10284. {
  10285. front: {
  10286. height: math.unit(6 + 3 / 12, "feet"),
  10287. weight: math.unit(215, "lb"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/grynn/front.svg",
  10291. extra: 4627 / 4209,
  10292. bottom: 0.047
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Micro",
  10299. height: math.unit(6, "inches")
  10300. },
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(6 + 3 / 12, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Big",
  10308. height: math.unit(104, "feet")
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(944, "feet")
  10313. },
  10314. {
  10315. name: "Macro+",
  10316. height: math.unit(9480, "feet")
  10317. },
  10318. {
  10319. name: "Megamacro",
  10320. height: math.unit(78752, "feet")
  10321. },
  10322. {
  10323. name: "Megamacro+",
  10324. height: math.unit(630128, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro++",
  10328. height: math.unit(3150695, "feet")
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Mocha Aura" },
  10334. {
  10335. front: {
  10336. height: math.unit(7 + 5 / 12, "feet"),
  10337. weight: math.unit(450, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/mocha-aura/front.svg",
  10341. extra: 1907 / 1817,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. back: {
  10346. height: math.unit(7 + 5 / 12, "feet"),
  10347. weight: math.unit(450, "lb"),
  10348. name: "Back",
  10349. image: {
  10350. source: "./media/characters/mocha-aura/back.svg",
  10351. extra: 1900 / 1825,
  10352. bottom: 0.045
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Nano",
  10359. height: math.unit(1, "nm")
  10360. },
  10361. {
  10362. name: "Megamicro",
  10363. height: math.unit(1, "mm")
  10364. },
  10365. {
  10366. name: "Micro",
  10367. height: math.unit(3, "inches")
  10368. },
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(7 + 5 / 12, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Macro",
  10376. height: math.unit(30, "feet")
  10377. },
  10378. {
  10379. name: "Megamacro",
  10380. height: math.unit(3500, "feet")
  10381. },
  10382. {
  10383. name: "Teramacro",
  10384. height: math.unit(500000, "miles")
  10385. },
  10386. {
  10387. name: "Petamacro",
  10388. height: math.unit(50000000000000000, "parsecs")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Ilisha Devya" },
  10394. {
  10395. front: {
  10396. height: math.unit(6, "feet"),
  10397. weight: math.unit(150, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/ilisha-devya/front.svg",
  10401. extra: 1,
  10402. bottom: 0.175
  10403. }
  10404. },
  10405. back: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(150, "lb"),
  10408. name: "Back",
  10409. image: {
  10410. source: "./media/characters/ilisha-devya/back.svg",
  10411. extra: 1,
  10412. bottom: 0.015
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(500, "feet"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Megamacro",
  10424. height: math.unit(10, "miles")
  10425. },
  10426. {
  10427. name: "Gigamacro",
  10428. height: math.unit(100000, "miles")
  10429. },
  10430. {
  10431. name: "Examacro",
  10432. height: math.unit(1e9, "lightyears")
  10433. },
  10434. {
  10435. name: "Omniversal",
  10436. height: math.unit(1e33, "lightyears")
  10437. },
  10438. {
  10439. name: "Beyond Infinite",
  10440. height: math.unit(1e100, "lightyears")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Mira" },
  10446. {
  10447. Side: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Side",
  10451. image: {
  10452. source: "./media/characters/mira/side.svg",
  10453. extra: 900 / 799,
  10454. bottom: 0.02
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Human Size",
  10461. height: math.unit(6, "feet")
  10462. },
  10463. {
  10464. name: "Macro",
  10465. height: math.unit(100, "feet"),
  10466. default: true
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(10, "miles")
  10471. },
  10472. {
  10473. name: "Gigamacro",
  10474. height: math.unit(25000, "miles")
  10475. },
  10476. {
  10477. name: "Teramacro",
  10478. height: math.unit(300, "AU")
  10479. },
  10480. {
  10481. name: "Full Size",
  10482. height: math.unit(4.5e10, "lightyears")
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Holly" },
  10488. {
  10489. front: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(150, "lb"),
  10492. name: "Front",
  10493. image: {
  10494. source: "./media/characters/holly/front.svg",
  10495. extra: 639 / 606
  10496. }
  10497. },
  10498. back: {
  10499. height: math.unit(6, "feet"),
  10500. weight: math.unit(150, "lb"),
  10501. name: "Back",
  10502. image: {
  10503. source: "./media/characters/holly/back.svg",
  10504. extra: 623 / 598
  10505. }
  10506. },
  10507. frontWorking: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(150, "lb"),
  10510. name: "Front (Working)",
  10511. image: {
  10512. source: "./media/characters/holly/front-working.svg",
  10513. extra: 607 / 577,
  10514. bottom: 0.048
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(12 + 3 / 12, "feet"),
  10522. default: true
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Porter" },
  10528. {
  10529. front: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/porter/front.svg",
  10535. extra: 1,
  10536. bottom: 0.01
  10537. }
  10538. },
  10539. frontRobes: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(150, "lb"),
  10542. name: "Front (Robes)",
  10543. image: {
  10544. source: "./media/characters/porter/front-robes.svg",
  10545. extra: 1.01,
  10546. bottom: 0.01
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(11 + 9 / 12, "feet"),
  10554. default: true
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Lucy" },
  10560. {
  10561. legendary: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Legendary",
  10565. image: {
  10566. source: "./media/characters/lucy/legendary.svg",
  10567. extra: 1355 / 1100,
  10568. bottom: 0.045
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Legendary",
  10575. height: math.unit(86882 * 2, "miles"),
  10576. default: true
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Drusilla" },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/drusilla/front.svg",
  10589. extra: 678 / 635,
  10590. bottom: 0.03
  10591. }
  10592. },
  10593. back: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Back",
  10597. image: {
  10598. source: "./media/characters/drusilla/back.svg",
  10599. extra: 678 / 635,
  10600. bottom: 0.005
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(100, "feet")
  10608. },
  10609. {
  10610. name: "Canon Height",
  10611. height: math.unit(2000, "feet"),
  10612. default: true
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Renard Thatch" },
  10618. {
  10619. front: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(180, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/renard-thatch/front.svg",
  10625. extra: 2411 / 2275,
  10626. bottom: 0.01
  10627. }
  10628. },
  10629. frontPosing: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(180, "lb"),
  10632. name: "Front (Posing)",
  10633. image: {
  10634. source: "./media/characters/renard-thatch/front-posing.svg",
  10635. extra: 2381 / 2261,
  10636. bottom: 0.01
  10637. }
  10638. },
  10639. back: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(180, "lb"),
  10642. name: "Back",
  10643. image: {
  10644. source: "./media/characters/renard-thatch/back.svg",
  10645. extra: 2428 / 2288
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Micro",
  10652. height: math.unit(3, "inches")
  10653. },
  10654. {
  10655. name: "Default",
  10656. height: math.unit(6, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Macro",
  10661. height: math.unit(75, "feet")
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Sekvra" },
  10667. {
  10668. front: {
  10669. height: math.unit(1450, "feet"),
  10670. weight: math.unit(1.21e6, "tons"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/sekvra/front.svg",
  10674. extra: 1,
  10675. bottom: 0.03
  10676. }
  10677. },
  10678. frontClothed: {
  10679. height: math.unit(1450, "feet"),
  10680. weight: math.unit(1.21e6, "tons"),
  10681. name: "Front (Clothed)",
  10682. image: {
  10683. source: "./media/characters/sekvra/front-clothed.svg",
  10684. extra: 1,
  10685. bottom: 0.03
  10686. }
  10687. },
  10688. side: {
  10689. height: math.unit(1450, "feet"),
  10690. weight: math.unit(1.21e6, "tons"),
  10691. name: "Side",
  10692. image: {
  10693. source: "./media/characters/sekvra/side.svg",
  10694. extra: 1,
  10695. bottom: 0.025
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(1450, "feet"),
  10700. weight: math.unit(1.21e6, "tons"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/sekvra/back.svg",
  10704. extra: 1,
  10705. bottom: 0.005
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(1450, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Megamacro",
  10717. height: math.unit(15000, "feet")
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Carmine" },
  10723. {
  10724. front: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(150, "lb"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/carmine/front.svg",
  10730. extra: 1,
  10731. bottom: 0.035
  10732. }
  10733. },
  10734. frontArmor: {
  10735. height: math.unit(6, "feet"),
  10736. weight: math.unit(150, "lb"),
  10737. name: "Front (Armor)",
  10738. image: {
  10739. source: "./media/characters/carmine/front-armor.svg",
  10740. extra: 1,
  10741. bottom: 0.035
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Large",
  10748. height: math.unit(1, "mile")
  10749. },
  10750. {
  10751. name: "Huge",
  10752. height: math.unit(40, "miles"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Colossal",
  10757. height: math.unit(2500, "miles")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Elyssia" },
  10763. {
  10764. front: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(150, "lb"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/elyssia/front.svg",
  10770. extra: 2201 / 2035,
  10771. bottom: 0.05
  10772. }
  10773. },
  10774. frontClothed: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Front (Clothed)",
  10778. image: {
  10779. source: "./media/characters/elyssia/front-clothed.svg",
  10780. extra: 2201 / 2035,
  10781. bottom: 0.05
  10782. }
  10783. },
  10784. back: {
  10785. height: math.unit(6, "feet"),
  10786. weight: math.unit(150, "lb"),
  10787. name: "Back",
  10788. image: {
  10789. source: "./media/characters/elyssia/back.svg",
  10790. extra: 2201 / 2035,
  10791. bottom: 0.013
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Smaller",
  10798. height: math.unit(150, "feet")
  10799. },
  10800. {
  10801. name: "Standard",
  10802. height: math.unit(1400, "feet"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Distracted",
  10807. height: math.unit(15000, "feet")
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "Geno Maxwell" },
  10813. {
  10814. front: {
  10815. height: math.unit(7 + 4 / 12, "feet"),
  10816. weight: math.unit(500, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/geno-maxwell/front.svg",
  10820. extra: 2207 / 2040,
  10821. bottom: 0.015
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Micro",
  10828. height: math.unit(3, "inches")
  10829. },
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(7 + 4 / 12, "feet"),
  10833. default: true
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(220, "feet")
  10838. },
  10839. {
  10840. name: "Megamacro",
  10841. height: math.unit(11, "miles")
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Regena Maxwell" },
  10847. {
  10848. front: {
  10849. height: math.unit(7 + 4 / 12, "feet"),
  10850. weight: math.unit(500, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/regena-maxwell/front.svg",
  10854. extra: 3115 / 2770,
  10855. bottom: 0.02
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(7 + 4 / 12, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Macro",
  10867. height: math.unit(220, "feet")
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(11, "miles")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "XGlidingDragonX" },
  10877. {
  10878. front: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(150, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10884. extra: 860 / 690,
  10885. bottom: 0.03
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(1.7, "meters"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Quilly" },
  10899. {
  10900. front: {
  10901. height: math.unit(6, "feet"),
  10902. weight: math.unit(150, "lb"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/quilly/front.svg",
  10906. extra: 890 / 776
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Gigamacro",
  10913. height: math.unit(404090, "miles"),
  10914. default: true
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Tempest" },
  10920. {
  10921. front: {
  10922. height: math.unit(7 + 8 / 12, "feet"),
  10923. weight: math.unit(350, "lb"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/tempest/front.svg",
  10927. extra: 1175 / 1086,
  10928. bottom: 0.02
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(7 + 8 / 12, "feet"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Rodger" },
  10942. {
  10943. side: {
  10944. height: math.unit(4 + 5 / 12, "feet"),
  10945. weight: math.unit(80, "lb"),
  10946. name: "Side",
  10947. image: {
  10948. source: "./media/characters/rodger/side.svg",
  10949. extra: 1235 / 1118
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Micro",
  10956. height: math.unit(1, "inch")
  10957. },
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(4 + 5 / 12, "feet"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(120, "feet")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Danyel" },
  10971. {
  10972. front: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(150, "lb"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/danyel/front.svg",
  10978. extra: 1185 / 1123,
  10979. bottom: 0.05
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Shrunken",
  10986. height: math.unit(0.5, "mm")
  10987. },
  10988. {
  10989. name: "Micro",
  10990. height: math.unit(1, "mm"),
  10991. default: true
  10992. },
  10993. {
  10994. name: "Upsized",
  10995. height: math.unit(5 + 5 / 12, "feet")
  10996. },
  10997. ]
  10998. ))
  10999. characterMakers.push(() => makeCharacter(
  11000. { name: "Vivian Bijoux" },
  11001. {
  11002. front: {
  11003. height: math.unit(5 + 6 / 12, "feet"),
  11004. weight: math.unit(200, "lb"),
  11005. name: "Front",
  11006. image: {
  11007. source: "./media/characters/vivian-bijoux/front.svg",
  11008. extra: 1,
  11009. bottom: 0.072
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(5 + 6 / 12, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Bad Dream",
  11021. height: math.unit(500, "feet")
  11022. },
  11023. {
  11024. name: "Nightmare",
  11025. height: math.unit(500, "miles")
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Zeta" },
  11031. {
  11032. front: {
  11033. height: math.unit(6 + 1 / 12, "feet"),
  11034. weight: math.unit(260, "lb"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/zeta/front.svg",
  11038. extra: 1968 / 1889,
  11039. bottom: 0.06
  11040. }
  11041. },
  11042. back: {
  11043. height: math.unit(6 + 1 / 12, "feet"),
  11044. weight: math.unit(260, "lb"),
  11045. name: "Back",
  11046. image: {
  11047. source: "./media/characters/zeta/back.svg",
  11048. extra: 1944 / 1858,
  11049. bottom: 0.03
  11050. }
  11051. },
  11052. hand: {
  11053. height: math.unit(1.112, "feet"),
  11054. name: "Hand",
  11055. image: {
  11056. source: "./media/characters/zeta/hand.svg"
  11057. }
  11058. },
  11059. foot: {
  11060. height: math.unit(1.48, "feet"),
  11061. name: "Foot",
  11062. image: {
  11063. source: "./media/characters/zeta/foot.svg"
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Micro",
  11070. height: math.unit(6, "inches")
  11071. },
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(6 + 1 / 12, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(20, "feet")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Jamie Larsen" },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/jamie-larsen/front.svg",
  11092. extra: 962 / 933,
  11093. bottom: 0.02
  11094. }
  11095. },
  11096. back: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(150, "lb"),
  11099. name: "Back",
  11100. image: {
  11101. source: "./media/characters/jamie-larsen/back.svg",
  11102. extra: 997 / 946
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Macro",
  11109. height: math.unit(28 + 7 / 12, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Macro+",
  11114. height: math.unit(180, "feet")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(10, "miles")
  11119. },
  11120. {
  11121. name: "Gigamacro",
  11122. height: math.unit(200000, "miles")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Vance" },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(120, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/vance/front.svg",
  11135. extra: 1980 / 1890,
  11136. bottom: 0.09
  11137. }
  11138. },
  11139. back: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(120, "lb"),
  11142. name: "Back",
  11143. image: {
  11144. source: "./media/characters/vance/back.svg",
  11145. extra: 2081 / 1994,
  11146. bottom: 0.014
  11147. }
  11148. },
  11149. hand: {
  11150. height: math.unit(0.88, "feet"),
  11151. name: "Hand",
  11152. image: {
  11153. source: "./media/characters/vance/hand.svg"
  11154. }
  11155. },
  11156. foot: {
  11157. height: math.unit(0.64, "feet"),
  11158. name: "Foot",
  11159. image: {
  11160. source: "./media/characters/vance/foot.svg"
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Small",
  11167. height: math.unit(90, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(100, "meters")
  11173. },
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(15, "miles")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Xochitl" },
  11182. {
  11183. front: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(180, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/xochitl/front.svg",
  11189. extra: 2297 / 2261,
  11190. bottom: 0.065
  11191. }
  11192. },
  11193. back: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(180, "lb"),
  11196. name: "Back",
  11197. image: {
  11198. source: "./media/characters/xochitl/back.svg",
  11199. extra: 2386 / 2354,
  11200. bottom: 0.01
  11201. }
  11202. },
  11203. foot: {
  11204. height: math.unit(6 / 5 * 1.15, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Foot",
  11207. image: {
  11208. source: "./media/characters/xochitl/foot.svg"
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(80, "feet")
  11216. },
  11217. {
  11218. name: "Macro+",
  11219. height: math.unit(400, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(80000, "miles")
  11225. },
  11226. {
  11227. name: "Gigamacro+",
  11228. height: math.unit(400000, "miles")
  11229. },
  11230. {
  11231. name: "Teramacro",
  11232. height: math.unit(300, "AU")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Vincent" },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(150, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/vincent/front.svg",
  11245. extra: 1130 / 1080,
  11246. bottom: 0.055
  11247. }
  11248. },
  11249. beak: {
  11250. height: math.unit(6 * 0.1, "feet"),
  11251. name: "Beak",
  11252. image: {
  11253. source: "./media/characters/vincent/beak.svg"
  11254. }
  11255. },
  11256. hand: {
  11257. height: math.unit(6 * 0.85, "feet"),
  11258. weight: math.unit(150, "lb"),
  11259. name: "Hand",
  11260. image: {
  11261. source: "./media/characters/vincent/hand.svg"
  11262. }
  11263. },
  11264. foot: {
  11265. height: math.unit(6 * 0.19, "feet"),
  11266. weight: math.unit(150, "lb"),
  11267. name: "Foot",
  11268. image: {
  11269. source: "./media/characters/vincent/foot.svg"
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Base",
  11276. height: math.unit(6 + 5 / 12, "feet"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(300, "feet")
  11282. },
  11283. {
  11284. name: "Megamacro",
  11285. height: math.unit(2, "miles")
  11286. },
  11287. {
  11288. name: "Gigamacro",
  11289. height: math.unit(1000, "miles")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Jay" },
  11295. {
  11296. front: {
  11297. height: math.unit(6 + 2 / 12, "feet"),
  11298. weight: math.unit(265, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/jay/front.svg",
  11302. extra: 1510 / 1430,
  11303. bottom: 0.042
  11304. }
  11305. },
  11306. back: {
  11307. height: math.unit(6 + 2 / 12, "feet"),
  11308. weight: math.unit(265, "lb"),
  11309. name: "Back",
  11310. image: {
  11311. source: "./media/characters/jay/back.svg",
  11312. extra: 1510 / 1430,
  11313. bottom: 0.025
  11314. }
  11315. },
  11316. clothed: {
  11317. height: math.unit(6 + 2 / 12, "feet"),
  11318. weight: math.unit(265, "lb"),
  11319. name: "Front (Clothed)",
  11320. image: {
  11321. source: "./media/characters/jay/clothed.svg",
  11322. extra: 744 / 699,
  11323. bottom: 0.043
  11324. }
  11325. },
  11326. head: {
  11327. height: math.unit(1.772, "feet"),
  11328. name: "Head",
  11329. image: {
  11330. source: "./media/characters/jay/head.svg"
  11331. }
  11332. },
  11333. sizeRay: {
  11334. height: math.unit(1.331, "feet"),
  11335. name: "Size Ray",
  11336. image: {
  11337. source: "./media/characters/jay/size-ray.svg"
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Micro",
  11344. height: math.unit(1, "inch")
  11345. },
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(6 + 2 / 12, "feet"),
  11349. default: true
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(1, "mile")
  11354. },
  11355. {
  11356. name: "Megamacro",
  11357. height: math.unit(100, "miles")
  11358. },
  11359. ]
  11360. ))
  11361. characterMakers.push(() => makeCharacter(
  11362. { name: "Coatl" },
  11363. {
  11364. front: {
  11365. height: math.unit(2, "meters"),
  11366. weight: math.unit(500, "kg"),
  11367. name: "Front",
  11368. image: {
  11369. source: "./media/characters/coatl/front.svg",
  11370. extra: 3948 / 3500,
  11371. bottom: 0.082
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Normal",
  11378. height: math.unit(4, "meters")
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(100, "meters"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Macro+",
  11387. height: math.unit(300, "meters")
  11388. },
  11389. {
  11390. name: "Megamacro",
  11391. height: math.unit(3, "gigameters")
  11392. },
  11393. {
  11394. name: "Megamacro+",
  11395. height: math.unit(300, "terameters")
  11396. },
  11397. {
  11398. name: "Megamacro++",
  11399. height: math.unit(3, "lightyears")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Shiroryu" },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(50, "kg"),
  11409. name: "front",
  11410. image: {
  11411. source: "./media/characters/shiroryu/front.svg",
  11412. extra: 1990 / 1935
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Mortal Mingling",
  11419. height: math.unit(3, "meters")
  11420. },
  11421. {
  11422. name: "Kaiju-ish",
  11423. height: math.unit(250, "meters")
  11424. },
  11425. {
  11426. name: "Somewhat Godly",
  11427. height: math.unit(400, "km"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Planetary",
  11432. height: math.unit(300, "megameters")
  11433. },
  11434. {
  11435. name: "Galaxy-dwarfing",
  11436. height: math.unit(450, "kiloparsecs")
  11437. },
  11438. {
  11439. name: "Universe Eater",
  11440. height: math.unit(150, "gigaparsecs")
  11441. },
  11442. {
  11443. name: "Almost Immeasurable",
  11444. height: math.unit(1.3e266, "yottaparsecs")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Umeko" },
  11450. {
  11451. front: {
  11452. height: math.unit(6, "feet"),
  11453. weight: math.unit(150, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/umeko/front.svg",
  11457. extra: 1,
  11458. bottom: 0.019
  11459. }
  11460. },
  11461. frontArmored: {
  11462. height: math.unit(6, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Front (Armored)",
  11465. image: {
  11466. source: "./media/characters/umeko/front-armored.svg",
  11467. extra: 1,
  11468. bottom: 0.021
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Macro",
  11475. height: math.unit(220, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Guardian Dragon",
  11480. height: math.unit(50, "miles")
  11481. },
  11482. {
  11483. name: "Cosmic",
  11484. height: math.unit(800000, "miles")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Cassidy" },
  11490. {
  11491. front: {
  11492. height: math.unit(6, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/cassidy/front.svg",
  11497. extra: 1,
  11498. bottom: 0.043
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Canon Height",
  11505. height: math.unit(120, "feet"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Macro+",
  11510. height: math.unit(400, "feet")
  11511. },
  11512. {
  11513. name: "Macro++",
  11514. height: math.unit(4000, "feet")
  11515. },
  11516. {
  11517. name: "Megamacro",
  11518. height: math.unit(3, "miles")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Isaac" },
  11524. {
  11525. front: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/isaac/front.svg",
  11531. extra: 896 / 815,
  11532. bottom: 0.11
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Human Size",
  11539. height: math.unit(8, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(400, "feet")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(50, "miles")
  11549. },
  11550. {
  11551. name: "Canon Height",
  11552. height: math.unit(200, "AU")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Sleekit" },
  11558. {
  11559. front: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(72, "kg"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/sleekit/front.svg",
  11565. extra: 4693 / 4487,
  11566. bottom: 0.012
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Minimum Height",
  11573. height: math.unit(10, "meters")
  11574. },
  11575. {
  11576. name: "Smaller",
  11577. height: math.unit(25, "meters")
  11578. },
  11579. {
  11580. name: "Larger",
  11581. height: math.unit(38, "meters"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Maximum height",
  11586. height: math.unit(100, "meters")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Nillia" },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/nillia/front.svg",
  11599. extra: 2195 / 2037,
  11600. bottom: 0.005
  11601. }
  11602. },
  11603. back: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(150, "lb"),
  11606. name: "Back",
  11607. image: {
  11608. source: "./media/characters/nillia/back.svg",
  11609. extra: 2195 / 2037,
  11610. bottom: 0.005
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Canon Height",
  11617. height: math.unit(489, "feet"),
  11618. default: true
  11619. }
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Mesmyriza" },
  11624. {
  11625. front: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(150, "lb"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/mesmyriza/front.svg",
  11631. extra: 2067 / 1784,
  11632. bottom: 0.035
  11633. }
  11634. },
  11635. foot: {
  11636. height: math.unit(6 / (250 / 35), "feet"),
  11637. name: "Foot",
  11638. image: {
  11639. source: "./media/characters/mesmyriza/foot.svg"
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(457, "meters"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Megamacro",
  11651. height: math.unit(8, "megameters")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Saudade" },
  11657. {
  11658. front: {
  11659. height: math.unit(6, "feet"),
  11660. weight: math.unit(250, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/saudade/front.svg",
  11664. extra: 1172 / 1139,
  11665. bottom: 0.035
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Micro",
  11672. height: math.unit(3, "inches")
  11673. },
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(6, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(50, "feet")
  11682. },
  11683. {
  11684. name: "Megamacro",
  11685. height: math.unit(2800, "feet")
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Keireer" },
  11691. {
  11692. front: {
  11693. height: math.unit(5 + 4 / 12, "feet"),
  11694. weight: math.unit(100, "lb"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/keireer/front.svg",
  11698. extra: 716 / 666,
  11699. bottom: 0.05
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(5 + 4 / 12, "feet"),
  11707. default: true
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Mirja" },
  11713. {
  11714. front: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(90, "kg"),
  11717. name: "Front",
  11718. image: {
  11719. source: "./media/characters/mirja/front.svg",
  11720. extra: 1789 / 1683,
  11721. bottom: 0.05
  11722. }
  11723. },
  11724. frontDressed: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(90, "lb"),
  11727. name: "Front (Dressed)",
  11728. image: {
  11729. source: "./media/characters/mirja/front-dressed.svg",
  11730. extra: 1789 / 1683,
  11731. bottom: 0.05
  11732. }
  11733. },
  11734. back: {
  11735. height: math.unit(6, "feet"),
  11736. weight: math.unit(90, "lb"),
  11737. name: "Back",
  11738. image: {
  11739. source: "./media/characters/mirja/back.svg",
  11740. extra: 953 / 917,
  11741. bottom: 0.017
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "\"Incognito\"",
  11748. height: math.unit(3, "meters")
  11749. },
  11750. {
  11751. name: "Strolling Size",
  11752. height: math.unit(15, "km")
  11753. },
  11754. {
  11755. name: "Larger Strolling Size",
  11756. height: math.unit(400, "km")
  11757. },
  11758. {
  11759. name: "Preferred Size",
  11760. height: math.unit(5000, "km")
  11761. },
  11762. {
  11763. name: "True Size",
  11764. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11765. default: true
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Nightraver" },
  11771. {
  11772. front: {
  11773. height: math.unit(15, "feet"),
  11774. weight: math.unit(880, "kg"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/nightraver/front.svg",
  11778. extra: 2444 / 2160,
  11779. bottom: 0.027
  11780. }
  11781. },
  11782. back: {
  11783. height: math.unit(15, "feet"),
  11784. weight: math.unit(880, "kg"),
  11785. name: "Back",
  11786. image: {
  11787. source: "./media/characters/nightraver/back.svg",
  11788. extra: 2309 / 2180,
  11789. bottom: 0.005
  11790. }
  11791. },
  11792. sole: {
  11793. height: math.unit(2.878, "feet"),
  11794. name: "Sole",
  11795. image: {
  11796. source: "./media/characters/nightraver/sole.svg"
  11797. }
  11798. },
  11799. foot: {
  11800. height: math.unit(2.285, "feet"),
  11801. name: "Foot",
  11802. image: {
  11803. source: "./media/characters/nightraver/foot.svg"
  11804. }
  11805. },
  11806. maw: {
  11807. height: math.unit(2.67, "feet"),
  11808. name: "Maw",
  11809. image: {
  11810. source: "./media/characters/nightraver/maw.svg"
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(1, "cm")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(15, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(300, "feet")
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(300, "miles")
  11831. },
  11832. {
  11833. name: "Gigamacro",
  11834. height: math.unit(10000, "miles")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Arc" },
  11840. {
  11841. side: {
  11842. height: math.unit(2, "inches"),
  11843. weight: math.unit(5, "grams"),
  11844. name: "Side",
  11845. image: {
  11846. source: "./media/characters/arc/side.svg"
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(2, "inches"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Nebula Shahar" },
  11860. {
  11861. front: {
  11862. height: math.unit(1.1938, "meters"),
  11863. weight: math.unit(54, "kg"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/nebula-shahar/front.svg",
  11867. extra: 1642 / 1436,
  11868. bottom: 0.06
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Megamicro",
  11875. height: math.unit(0.3, "mm")
  11876. },
  11877. {
  11878. name: "Micro",
  11879. height: math.unit(3, "cm")
  11880. },
  11881. {
  11882. name: "Normal",
  11883. height: math.unit(138, "cm"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(30, "m")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Shayla" },
  11894. {
  11895. front: {
  11896. height: math.unit(5.24, "feet"),
  11897. weight: math.unit(150, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/shayla/front.svg",
  11901. extra: 1512 / 1414,
  11902. bottom: 0.01
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(5.24, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/shayla/back.svg",
  11911. extra: 1512 / 1414
  11912. }
  11913. },
  11914. hand: {
  11915. height: math.unit(0.7781496062992126, "feet"),
  11916. name: "Hand",
  11917. image: {
  11918. source: "./media/characters/shayla/hand.svg"
  11919. }
  11920. },
  11921. foot: {
  11922. height: math.unit(1.4206036745406823, "feet"),
  11923. name: "Foot",
  11924. image: {
  11925. source: "./media/characters/shayla/foot.svg"
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Micro",
  11932. height: math.unit(0.32, "feet")
  11933. },
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(5.24, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Macro",
  11941. height: math.unit(492.12, "feet")
  11942. },
  11943. {
  11944. name: "Megamacro",
  11945. height: math.unit(186.41, "miles")
  11946. },
  11947. ]
  11948. ))
  11949. characterMakers.push(() => makeCharacter(
  11950. { name: "Pia Jr." },
  11951. {
  11952. front: {
  11953. height: math.unit(2.2, "m"),
  11954. weight: math.unit(120, "kg"),
  11955. name: "Front",
  11956. image: {
  11957. source: "./media/characters/pia-jr/front.svg",
  11958. extra: 1000 / 970,
  11959. bottom: 0.035
  11960. }
  11961. },
  11962. hand: {
  11963. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11964. name: "Hand",
  11965. image: {
  11966. source: "./media/characters/pia-jr/hand.svg"
  11967. }
  11968. },
  11969. paw: {
  11970. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11971. name: "Paw",
  11972. image: {
  11973. source: "./media/characters/pia-jr/paw.svg"
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Micro",
  11980. height: math.unit(1.2, "cm")
  11981. },
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(2.2, "m"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Macro",
  11989. height: math.unit(180, "m")
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(420, "km")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Pia Sr." },
  11999. {
  12000. front: {
  12001. height: math.unit(2, "m"),
  12002. weight: math.unit(115, "kg"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/pia-sr/front.svg",
  12006. extra: 760 / 730,
  12007. bottom: 0.015
  12008. }
  12009. },
  12010. back: {
  12011. height: math.unit(2, "m"),
  12012. weight: math.unit(115, "kg"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/pia-sr/back.svg",
  12016. extra: 760 / 730,
  12017. bottom: 0.01
  12018. }
  12019. },
  12020. hand: {
  12021. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12022. name: "Hand",
  12023. image: {
  12024. source: "./media/characters/pia-sr/hand.svg"
  12025. }
  12026. },
  12027. foot: {
  12028. height: math.unit(1.83, "feet"),
  12029. name: "Foot",
  12030. image: {
  12031. source: "./media/characters/pia-sr/foot.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(88, "mm")
  12039. },
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(2, "m"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Macro",
  12047. height: math.unit(200, "m")
  12048. },
  12049. {
  12050. name: "Megamacro",
  12051. height: math.unit(420, "km")
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "KIBIBYTE" },
  12057. {
  12058. front: {
  12059. height: math.unit(8 + 2 / 12, "feet"),
  12060. weight: math.unit(300, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/kibibyte/front.svg",
  12064. extra: 2221 / 2098,
  12065. bottom: 0.04
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(8 + 2 / 12, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Socialable Macro",
  12077. height: math.unit(50, "feet")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(300, "feet")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(500, "miles")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Felix" },
  12091. {
  12092. front: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/felix/front.svg",
  12098. extra: 762 / 722,
  12099. bottom: 0.02
  12100. }
  12101. },
  12102. frontClothed: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(150, "lb"),
  12105. name: "Front (Clothed)",
  12106. image: {
  12107. source: "./media/characters/felix/front-clothed.svg",
  12108. extra: 762 / 722,
  12109. bottom: 0.02
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(6 + 8 / 12, "feet"),
  12117. default: true
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(2600, "feet")
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(450, "miles")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Tobo" },
  12131. {
  12132. front: {
  12133. height: math.unit(6 + 1 / 12, "feet"),
  12134. weight: math.unit(250, "lb"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/tobo/front.svg",
  12138. extra: 608 / 586,
  12139. bottom: 0.023
  12140. }
  12141. },
  12142. back: {
  12143. height: math.unit(6 + 1 / 12, "feet"),
  12144. weight: math.unit(250, "lb"),
  12145. name: "Back",
  12146. image: {
  12147. source: "./media/characters/tobo/back.svg",
  12148. extra: 608 / 586
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Nano",
  12155. height: math.unit(2, "nm")
  12156. },
  12157. {
  12158. name: "Megamicro",
  12159. height: math.unit(0.1, "mm")
  12160. },
  12161. {
  12162. name: "Micro",
  12163. height: math.unit(1, "inch"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Human-sized",
  12168. height: math.unit(6 + 1 / 12, "feet")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(250, "feet")
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(75, "miles")
  12177. },
  12178. {
  12179. name: "Texas-sized",
  12180. height: math.unit(750, "miles")
  12181. },
  12182. {
  12183. name: "Teramacro",
  12184. height: math.unit(50000, "miles")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Danny Kapowsky" },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(269, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/danny-kapowsky/front.svg",
  12197. extra: 766 / 736,
  12198. bottom: 0.044
  12199. }
  12200. },
  12201. back: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(269, "lb"),
  12204. name: "Back",
  12205. image: {
  12206. source: "./media/characters/danny-kapowsky/back.svg",
  12207. extra: 797 / 760,
  12208. bottom: 0.025
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(150, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Macro+",
  12220. height: math.unit(200, "feet")
  12221. },
  12222. {
  12223. name: "Macro++",
  12224. height: math.unit(300, "feet")
  12225. },
  12226. {
  12227. name: "Macro+++",
  12228. height: math.unit(400, "feet")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Finn" },
  12234. {
  12235. side: {
  12236. height: math.unit(6, "feet"),
  12237. weight: math.unit(170, "lb"),
  12238. name: "Side",
  12239. image: {
  12240. source: "./media/characters/finn/side.svg",
  12241. extra: 1953 / 1807,
  12242. bottom: 0.057
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Megamacro",
  12249. height: math.unit(14445, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Roy" },
  12256. {
  12257. front: {
  12258. height: math.unit(5 + 6 / 12, "feet"),
  12259. weight: math.unit(125, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/roy/front.svg",
  12263. extra: 1,
  12264. bottom: 0.11
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Micro",
  12271. height: math.unit(3, "inches"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(5 + 6 / 12, "feet")
  12277. },
  12278. {
  12279. name: "Lesser Macro",
  12280. height: math.unit(60, "feet")
  12281. },
  12282. {
  12283. name: "Greater Macro",
  12284. height: math.unit(120, "feet")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Aevsivs" },
  12290. {
  12291. front: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(100, "lb"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/aevsivs/front.svg",
  12297. extra: 1,
  12298. bottom: 0.03
  12299. }
  12300. },
  12301. back: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(100, "lb"),
  12304. name: "Back",
  12305. image: {
  12306. source: "./media/characters/aevsivs/back.svg"
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Micro",
  12313. height: math.unit(2, "inches"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(5, "feet")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Hildegard" },
  12324. {
  12325. front: {
  12326. height: math.unit(5 + 7 / 12, "feet"),
  12327. weight: math.unit(159, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/hildegard/front.svg",
  12331. extra: 312 / 286,
  12332. bottom: 0.005
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(5 + 7 / 12, "feet"),
  12340. default: true
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Bernard & Wilder" },
  12346. {
  12347. bernard: {
  12348. height: math.unit(2 + 7 / 12, "feet"),
  12349. weight: math.unit(66, "lb"),
  12350. name: "Bernard",
  12351. rename: true,
  12352. image: {
  12353. source: "./media/characters/bernard-wilder/bernard.svg",
  12354. extra: 192 / 128,
  12355. bottom: 0.05
  12356. }
  12357. },
  12358. wilder: {
  12359. height: math.unit(5 + 8 / 12, "feet"),
  12360. weight: math.unit(143, "lb"),
  12361. name: "Wilder",
  12362. rename: true,
  12363. image: {
  12364. source: "./media/characters/bernard-wilder/wilder.svg",
  12365. extra: 361 / 312,
  12366. bottom: 0.02
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(2 + 7 / 12, "feet"),
  12374. default: true
  12375. },
  12376. ]
  12377. ))
  12378. characterMakers.push(() => makeCharacter(
  12379. { name: "Hearth" },
  12380. {
  12381. anthro: {
  12382. height: math.unit(6 + 1 / 12, "feet"),
  12383. weight: math.unit(155, "lb"),
  12384. name: "Anthro",
  12385. image: {
  12386. source: "./media/characters/hearth/anthro.svg",
  12387. extra: 260 / 250,
  12388. bottom: 0.02
  12389. }
  12390. },
  12391. feral: {
  12392. height: math.unit(3.78, "feet"),
  12393. weight: math.unit(35, "kg"),
  12394. name: "Feral",
  12395. image: {
  12396. source: "./media/characters/hearth/feral.svg",
  12397. extra: 153 / 135,
  12398. bottom: 0.03
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(6 + 1 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Ingrid" },
  12412. {
  12413. front: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(182, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/ingrid/front.svg",
  12419. extra: 294 / 268,
  12420. bottom: 0.027
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(6, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Malgam" },
  12434. {
  12435. eevee: {
  12436. height: math.unit(2 + 10 / 12, "feet"),
  12437. weight: math.unit(86, "lb"),
  12438. name: "Malgam",
  12439. image: {
  12440. source: "./media/characters/malgam/eevee.svg",
  12441. extra: 218 / 180,
  12442. bottom: 0.2
  12443. }
  12444. },
  12445. sylveon: {
  12446. height: math.unit(4, "feet"),
  12447. weight: math.unit(101, "lb"),
  12448. name: "Future Malgam",
  12449. rename: true,
  12450. image: {
  12451. source: "./media/characters/malgam/sylveon.svg",
  12452. extra: 371 / 325,
  12453. bottom: 0.015
  12454. }
  12455. },
  12456. gigantamax: {
  12457. height: math.unit(50, "feet"),
  12458. name: "Gigantamax Malgam",
  12459. rename: true,
  12460. image: {
  12461. source: "./media/characters/malgam/gigantamax.svg"
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(2 + 10 / 12, "feet"),
  12469. default: true
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Fleur" },
  12475. {
  12476. front: {
  12477. height: math.unit(5 + 11 / 12, "feet"),
  12478. weight: math.unit(188, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/fleur/front.svg",
  12482. extra: 309 / 283,
  12483. bottom: 0.007
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Normal",
  12490. height: math.unit(5 + 11 / 12, "feet"),
  12491. default: true
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Jude" },
  12497. {
  12498. front: {
  12499. height: math.unit(5 + 4 / 12, "feet"),
  12500. weight: math.unit(122, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/jude/front.svg",
  12504. extra: 288 / 273,
  12505. bottom: 0.03
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(5 + 4 / 12, "feet"),
  12513. default: true
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "Seara" },
  12519. {
  12520. front: {
  12521. height: math.unit(5 + 11 / 12, "feet"),
  12522. weight: math.unit(190, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/seara/front.svg",
  12526. extra: 1,
  12527. bottom: 0.05
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(5 + 11 / 12, "feet"),
  12535. default: true
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Caspian" },
  12541. {
  12542. front: {
  12543. height: math.unit(16 + 5 / 12, "feet"),
  12544. weight: math.unit(524, "lb"),
  12545. name: "Front",
  12546. image: {
  12547. source: "./media/characters/caspian/front.svg",
  12548. extra: 1,
  12549. bottom: 0.04
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(16 + 5 / 12, "feet"),
  12557. default: true
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Mika" },
  12563. {
  12564. front: {
  12565. height: math.unit(5 + 7 / 12, "feet"),
  12566. weight: math.unit(170, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/mika/front.svg",
  12570. extra: 1,
  12571. bottom: 0.016
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(5 + 7 / 12, "feet"),
  12579. default: true
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Sol" },
  12585. {
  12586. front: {
  12587. height: math.unit(6 + 2 / 12, "feet"),
  12588. weight: math.unit(268, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/sol/front.svg",
  12592. extra: 247 / 231,
  12593. bottom: 0.05
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Normal",
  12600. height: math.unit(6 + 2 / 12, "feet"),
  12601. default: true
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Umiko" },
  12607. {
  12608. buizel: {
  12609. height: math.unit(2 + 5 / 12, "feet"),
  12610. weight: math.unit(87, "lb"),
  12611. name: "Buizel",
  12612. image: {
  12613. source: "./media/characters/umiko/buizel.svg",
  12614. extra: 172 / 157,
  12615. bottom: 0.01
  12616. }
  12617. },
  12618. floatzel: {
  12619. height: math.unit(5 + 9 / 12, "feet"),
  12620. weight: math.unit(250, "lb"),
  12621. name: "Floatzel",
  12622. image: {
  12623. source: "./media/characters/umiko/floatzel.svg",
  12624. extra: 262 / 248
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(2 + 5 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Iliac" },
  12638. {
  12639. front: {
  12640. height: math.unit(6 + 2 / 12, "feet"),
  12641. weight: math.unit(146, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/iliac/front.svg",
  12645. extra: 389 / 365,
  12646. bottom: 0.035
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(6 + 2 / 12, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Topaz" },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(170, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/topaz/front.svg",
  12667. extra: 317 / 303,
  12668. bottom: 0.055
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(6, "feet"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Gabriel" },
  12682. {
  12683. front: {
  12684. height: math.unit(5 + 11 / 12, "feet"),
  12685. weight: math.unit(144, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/gabriel/front.svg",
  12689. extra: 285 / 262,
  12690. bottom: 0.004
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(5 + 11 / 12, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Tempest (Suicune)" },
  12704. {
  12705. side: {
  12706. height: math.unit(6 + 5 / 12, "feet"),
  12707. weight: math.unit(300, "lb"),
  12708. name: "Side",
  12709. image: {
  12710. source: "./media/characters/tempest-suicune/side.svg",
  12711. extra: 195 / 154,
  12712. bottom: 0.04
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Normal",
  12719. height: math.unit(6 + 5 / 12, "feet"),
  12720. default: true
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Vulcan" },
  12726. {
  12727. front: {
  12728. height: math.unit(7 + 2 / 12, "feet"),
  12729. weight: math.unit(322, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/vulcan/front.svg",
  12733. extra: 154 / 147,
  12734. bottom: 0.04
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(7 + 2 / 12, "feet"),
  12742. default: true
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Gault" },
  12748. {
  12749. front: {
  12750. height: math.unit(5 + 10 / 12, "feet"),
  12751. weight: math.unit(264, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/gault/front.svg",
  12755. extra: 161 / 140,
  12756. bottom: 0.028
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(5 + 10 / 12, "feet"),
  12764. default: true
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Shard" },
  12770. {
  12771. front: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/shard/front.svg",
  12777. extra: 273 / 238,
  12778. bottom: 0.02
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(3 + 6 / 12, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Ashe" },
  12792. {
  12793. front: {
  12794. height: math.unit(5 + 11 / 12, "feet"),
  12795. weight: math.unit(146, "lb"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/ashe/front.svg",
  12799. extra: 400 / 373,
  12800. bottom: 0.01
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(5 + 11 / 12, "feet"),
  12808. default: true
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Beatrix" },
  12814. {
  12815. front: {
  12816. height: math.unit(5 + 5 / 12, "feet"),
  12817. weight: math.unit(135, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/beatrix/front.svg",
  12821. extra: 392 / 379,
  12822. bottom: 0.01
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(6, "feet"),
  12830. default: true
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Ignatius" },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/ignatius/front.svg",
  12843. extra: 245 / 222,
  12844. bottom: 0.01
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Normal",
  12851. height: math.unit(5 + 5 / 12, "feet"),
  12852. default: true
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Mei Li" },
  12858. {
  12859. front: {
  12860. height: math.unit(6 + 2 / 12, "feet"),
  12861. weight: math.unit(138, "lb"),
  12862. name: "Front",
  12863. image: {
  12864. source: "./media/characters/mei-li/front.svg",
  12865. extra: 237 / 229,
  12866. bottom: 0.03
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(6 + 2 / 12, "feet"),
  12874. default: true
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Puru" },
  12880. {
  12881. front: {
  12882. height: math.unit(2 + 4 / 12, "feet"),
  12883. weight: math.unit(62, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/puru/front.svg",
  12887. extra: 206 / 149,
  12888. bottom: 0.06
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(2 + 4 / 12, "feet"),
  12896. default: true
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Kee" },
  12902. {
  12903. taur: {
  12904. height: math.unit(11, "feet"),
  12905. weight: math.unit(500, "lb"),
  12906. name: "Taur",
  12907. image: {
  12908. source: "./media/characters/kee/taur.svg",
  12909. extra: 1,
  12910. bottom: 0.04
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(11, "feet"),
  12918. default: true
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Cobalt (Dracha)" },
  12924. {
  12925. anthro: {
  12926. height: math.unit(7, "feet"),
  12927. weight: math.unit(190, "lb"),
  12928. name: "Anthro",
  12929. image: {
  12930. source: "./media/characters/cobalt-dracha/anthro.svg",
  12931. extra: 231 / 225,
  12932. bottom: 0.04
  12933. }
  12934. },
  12935. feral: {
  12936. height: math.unit(9 + 7 / 12, "feet"),
  12937. weight: math.unit(294, "lb"),
  12938. name: "Feral",
  12939. image: {
  12940. source: "./media/characters/cobalt-dracha/feral.svg",
  12941. extra: 692 / 633,
  12942. bottom: 0.05
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(7, "feet"),
  12950. default: true
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Java" },
  12956. {
  12957. fallen: {
  12958. height: math.unit(11 + 8 / 12, "feet"),
  12959. weight: math.unit(485, "lb"),
  12960. name: "Java (Fallen)",
  12961. rename: true,
  12962. image: {
  12963. source: "./media/characters/java/fallen.svg",
  12964. extra: 226 / 208,
  12965. bottom: 0.005
  12966. }
  12967. },
  12968. godkin: {
  12969. height: math.unit(10 + 6 / 12, "feet"),
  12970. weight: math.unit(328, "lb"),
  12971. name: "Java (Godkin)",
  12972. rename: true,
  12973. image: {
  12974. source: "./media/characters/java/godkin.svg",
  12975. extra: 270 / 262,
  12976. bottom: 0.02
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(11 + 8 / 12, "feet"),
  12984. default: true
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Skoll" },
  12990. {
  12991. front: {
  12992. height: math.unit(7 + 8 / 12, "feet"),
  12993. weight: math.unit(320, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/skoll/front.svg",
  12997. extra: 232 / 220,
  12998. bottom: 0.02
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(7 + 8 / 12, "feet"),
  13006. default: true
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Purna" },
  13012. {
  13013. front: {
  13014. height: math.unit(5 + 9 / 12, "feet"),
  13015. weight: math.unit(170, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/purna/front.svg",
  13019. extra: 239 / 229,
  13020. bottom: 0.01
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(5 + 9 / 12, "feet"),
  13028. default: true
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Kuva" },
  13034. {
  13035. front: {
  13036. height: math.unit(5 + 9 / 12, "feet"),
  13037. weight: math.unit(142, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/kuva/front.svg",
  13041. extra: 281 / 271,
  13042. bottom: 0.006
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(5 + 9 / 12, "feet"),
  13050. default: true
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Embra" },
  13056. {
  13057. anthro: {
  13058. height: math.unit(9 + 2 / 12, "feet"),
  13059. weight: math.unit(270, "lb"),
  13060. name: "Anthro",
  13061. image: {
  13062. source: "./media/characters/embra/anthro.svg",
  13063. extra: 200 / 187,
  13064. bottom: 0.02
  13065. }
  13066. },
  13067. feral: {
  13068. height: math.unit(18 + 8 / 12, "feet"),
  13069. weight: math.unit(576, "lb"),
  13070. name: "Feral",
  13071. image: {
  13072. source: "./media/characters/embra/feral.svg",
  13073. extra: 152 / 137,
  13074. bottom: 0.037
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(9 + 2 / 12, "feet"),
  13082. default: true
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Grottos" },
  13088. {
  13089. anthro: {
  13090. height: math.unit(10 + 9 / 12, "feet"),
  13091. weight: math.unit(224, "lb"),
  13092. name: "Anthro",
  13093. image: {
  13094. source: "./media/characters/grottos/anthro.svg",
  13095. extra: 350 / 332,
  13096. bottom: 0.045
  13097. }
  13098. },
  13099. feral: {
  13100. height: math.unit(20 + 7 / 12, "feet"),
  13101. weight: math.unit(629, "lb"),
  13102. name: "Feral",
  13103. image: {
  13104. source: "./media/characters/grottos/feral.svg",
  13105. extra: 207 / 190,
  13106. bottom: 0.05
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(10 + 9 / 12, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Frifna" },
  13120. {
  13121. anthro: {
  13122. height: math.unit(9 + 6 / 12, "feet"),
  13123. weight: math.unit(298, "lb"),
  13124. name: "Anthro",
  13125. image: {
  13126. source: "./media/characters/frifna/anthro.svg",
  13127. extra: 282 / 269,
  13128. bottom: 0.015
  13129. }
  13130. },
  13131. feral: {
  13132. height: math.unit(16 + 2 / 12, "feet"),
  13133. weight: math.unit(624, "lb"),
  13134. name: "Feral",
  13135. image: {
  13136. source: "./media/characters/frifna/feral.svg"
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(9 + 6 / 12, "feet"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Elise" },
  13150. {
  13151. front: {
  13152. height: math.unit(6 + 2 / 12, "feet"),
  13153. weight: math.unit(168, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/elise/front.svg",
  13157. extra: 276 / 271
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(6 + 2 / 12, "feet"),
  13165. default: true
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Glade" },
  13171. {
  13172. front: {
  13173. height: math.unit(5 + 10 / 12, "feet"),
  13174. weight: math.unit(210, "lb"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/glade/front.svg",
  13178. extra: 258 / 247,
  13179. bottom: 0.008
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(5 + 10 / 12, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Rina" },
  13193. {
  13194. front: {
  13195. height: math.unit(5 + 10 / 12, "feet"),
  13196. weight: math.unit(129, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/rina/front.svg",
  13200. extra: 266 / 255,
  13201. bottom: 0.005
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(5 + 10 / 12, "feet"),
  13209. default: true
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Veronica" },
  13215. {
  13216. front: {
  13217. height: math.unit(6 + 1 / 12, "feet"),
  13218. weight: math.unit(192, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/veronica/front.svg",
  13222. extra: 319 / 309,
  13223. bottom: 0.005
  13224. }
  13225. },
  13226. },
  13227. [
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(6 + 1 / 12, "feet"),
  13231. default: true
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Braxton" },
  13237. {
  13238. front: {
  13239. height: math.unit(9 + 3 / 12, "feet"),
  13240. weight: math.unit(1100, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/braxton/front.svg",
  13244. extra: 1057 / 984,
  13245. bottom: 0.05
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(9 + 3 / 12, "feet")
  13253. },
  13254. {
  13255. name: "Giant",
  13256. height: math.unit(300, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(700, "feet")
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(6000, "feet")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Blue Feyonics" },
  13271. {
  13272. front: {
  13273. height: math.unit(6 + 7 / 12, "feet"),
  13274. weight: math.unit(150, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/blue-feyonics/front.svg",
  13278. extra: 1403 / 1306,
  13279. bottom: 0.047
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Normal",
  13286. height: math.unit(6 + 7 / 12, "feet"),
  13287. default: true
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Maxwell" },
  13293. {
  13294. front: {
  13295. height: math.unit(1.8, "meters"),
  13296. weight: math.unit(60, "kg"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/maxwell/front.svg",
  13300. extra: 2060 / 1873
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Micro",
  13307. height: math.unit(1, "mm")
  13308. },
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(1.8, "meter"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(30, "meters")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(10, "km")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Jack" },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/jack/front.svg",
  13333. extra: 1754 / 1640,
  13334. bottom: 0.01
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(80000, "feet"),
  13342. default: true
  13343. },
  13344. {
  13345. name: "Max size",
  13346. height: math.unit(10, "lightyears")
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Cafat" },
  13352. {
  13353. upright: {
  13354. height: math.unit(7, "feet"),
  13355. weight: math.unit(170, "lb"),
  13356. name: "Upright",
  13357. image: {
  13358. source: "./media/characters/cafat/upright.svg",
  13359. bottom: 0.01
  13360. }
  13361. },
  13362. uprightFull: {
  13363. height: math.unit(7, "feet"),
  13364. weight: math.unit(170, "lb"),
  13365. name: "Upright (Full)",
  13366. image: {
  13367. source: "./media/characters/cafat/upright-full.svg",
  13368. bottom: 0.01
  13369. }
  13370. },
  13371. side: {
  13372. height: math.unit(5, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Side",
  13375. image: {
  13376. source: "./media/characters/cafat/side.svg"
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Small",
  13383. height: math.unit(7, "feet"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Large",
  13388. height: math.unit(15.5, "feet")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Verin Raharra" },
  13394. {
  13395. front: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/verin-raharra/front.svg",
  13401. extra: 5019 / 4835,
  13402. bottom: 0.023
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(7 + 5 / 12, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Upsized",
  13414. height: math.unit(20, "feet")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Nakata" },
  13420. {
  13421. front: {
  13422. height: math.unit(7, "feet"),
  13423. weight: math.unit(230, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/nakata/front.svg",
  13427. extra: 1.005,
  13428. bottom: 0.01
  13429. }
  13430. },
  13431. },
  13432. [
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(7, "feet"),
  13436. default: true
  13437. },
  13438. {
  13439. name: "Big",
  13440. height: math.unit(14, "feet")
  13441. },
  13442. {
  13443. name: "Macro",
  13444. height: math.unit(400, "feet")
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Lily" },
  13450. {
  13451. front: {
  13452. height: math.unit(4.91, "feet"),
  13453. weight: math.unit(100, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/lily/front.svg",
  13457. extra: 1585 / 1415,
  13458. bottom: 0.02
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Normal",
  13465. height: math.unit(4.91, "feet"),
  13466. default: true
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Sheila" },
  13472. {
  13473. laying: {
  13474. height: math.unit(4 + 4 / 12, "feet"),
  13475. weight: math.unit(600, "lb"),
  13476. name: "Laying",
  13477. image: {
  13478. source: "./media/characters/sheila/laying.svg",
  13479. extra: 1333 / 1265,
  13480. bottom: 0.16
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(4 + 4 / 12, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Sax" },
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(190, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/sax/front.svg",
  13501. extra: 1187 / 973,
  13502. bottom: 0.042
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Micro",
  13509. height: math.unit(4, "inches"),
  13510. default: true
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Pandora" },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/pandora/front.svg",
  13523. extra: 2720 / 2556,
  13524. bottom: 0.015
  13525. }
  13526. },
  13527. back: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Back",
  13531. image: {
  13532. source: "./media/characters/pandora/back.svg",
  13533. extra: 2720 / 2556,
  13534. bottom: 0.01
  13535. }
  13536. },
  13537. beans: {
  13538. height: math.unit(6 / 8, "feet"),
  13539. name: "Beans",
  13540. image: {
  13541. source: "./media/characters/pandora/beans.svg"
  13542. }
  13543. },
  13544. skirt: {
  13545. height: math.unit(6, "feet"),
  13546. weight: math.unit(150, "lb"),
  13547. name: "Skirt",
  13548. image: {
  13549. source: "./media/characters/pandora/skirt.svg",
  13550. extra: 1622 / 1525,
  13551. bottom: 0.015
  13552. }
  13553. },
  13554. hoodie: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Hoodie",
  13558. image: {
  13559. source: "./media/characters/pandora/hoodie.svg",
  13560. extra: 1622 / 1525,
  13561. bottom: 0.015
  13562. }
  13563. },
  13564. casual: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Casual",
  13568. image: {
  13569. source: "./media/characters/pandora/casual.svg",
  13570. extra: 1622 / 1525,
  13571. bottom: 0.015
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(6, "feet")
  13579. },
  13580. {
  13581. name: "Big Steppy",
  13582. height: math.unit(1, "km"),
  13583. default: true
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Venio Darcony" },
  13589. {
  13590. side: {
  13591. height: math.unit(10, "feet"),
  13592. weight: math.unit(800, "kg"),
  13593. name: "Side",
  13594. image: {
  13595. source: "./media/characters/venio-darcony/side.svg",
  13596. extra: 1373 / 1003,
  13597. bottom: 0.037
  13598. }
  13599. },
  13600. front: {
  13601. height: math.unit(19, "feet"),
  13602. weight: math.unit(800, "kg"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/venio-darcony/front.svg"
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(19, "feet"),
  13610. weight: math.unit(800, "kg"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/venio-darcony/back.svg"
  13614. }
  13615. },
  13616. sideNsfw: {
  13617. height: math.unit(10, "feet"),
  13618. weight: math.unit(800, "kg"),
  13619. name: "Side (NSFW)",
  13620. image: {
  13621. source: "./media/characters/venio-darcony/side-nsfw.svg",
  13622. extra: 1373 / 1003,
  13623. bottom: 0.037
  13624. }
  13625. },
  13626. frontNsfw: {
  13627. height: math.unit(19, "feet"),
  13628. weight: math.unit(800, "kg"),
  13629. name: "Front (NSFW)",
  13630. image: {
  13631. source: "./media/characters/venio-darcony/front-nsfw.svg"
  13632. }
  13633. },
  13634. backNsfw: {
  13635. height: math.unit(19, "feet"),
  13636. weight: math.unit(800, "kg"),
  13637. name: "Back (NSFW)",
  13638. image: {
  13639. source: "./media/characters/venio-darcony/back-nsfw.svg"
  13640. }
  13641. },
  13642. sideArmored: {
  13643. height: math.unit(10, "feet"),
  13644. weight: math.unit(800, "kg"),
  13645. name: "Side (Armored)",
  13646. image: {
  13647. source: "./media/characters/venio-darcony/side-armored.svg",
  13648. extra: 1373 / 1003,
  13649. bottom: 0.037
  13650. }
  13651. },
  13652. frontArmored: {
  13653. height: math.unit(19, "feet"),
  13654. weight: math.unit(900, "kg"),
  13655. name: "Front (Armored)",
  13656. image: {
  13657. source: "./media/characters/venio-darcony/front-armored.svg"
  13658. }
  13659. },
  13660. backArmored: {
  13661. height: math.unit(19, "feet"),
  13662. weight: math.unit(900, "kg"),
  13663. name: "Back (Armored)",
  13664. image: {
  13665. source: "./media/characters/venio-darcony/back-armored.svg"
  13666. }
  13667. },
  13668. sword: {
  13669. height: math.unit(10, "feet"),
  13670. weight: math.unit(50, "lb"),
  13671. name: "Sword",
  13672. image: {
  13673. source: "./media/characters/venio-darcony/sword.svg"
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(10, "feet")
  13681. },
  13682. {
  13683. name: "Macro",
  13684. height: math.unit(130, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro+",
  13689. height: math.unit(240, "feet")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Veski" },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(150, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/veski/front.svg",
  13702. extra: 1299 / 1225,
  13703. bottom: 0.04
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/veski/back.svg",
  13712. extra: 1299 / 1225,
  13713. bottom: 0.008
  13714. }
  13715. },
  13716. maw: {
  13717. height: math.unit(1.5 * 1.21, "feet"),
  13718. name: "Maw",
  13719. image: {
  13720. source: "./media/characters/veski/maw.svg"
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(2, "km"),
  13728. default: true
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Isabelle" },
  13734. {
  13735. front: {
  13736. height: math.unit(5 + 7 / 12, "feet"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/isabelle/front.svg",
  13740. extra: 2130 / 1976,
  13741. bottom: 0.05
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Supermicro",
  13748. height: math.unit(10, "micrometers")
  13749. },
  13750. {
  13751. name: "Micro",
  13752. height: math.unit(1, "inch")
  13753. },
  13754. {
  13755. name: "Tiny",
  13756. height: math.unit(5, "inches")
  13757. },
  13758. {
  13759. name: "Standard",
  13760. height: math.unit(5 + 7 / 12, "inches")
  13761. },
  13762. {
  13763. name: "Macro",
  13764. height: math.unit(80, "meters"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Megamacro",
  13769. height: math.unit(250, "meters")
  13770. },
  13771. {
  13772. name: "Gigamacro",
  13773. height: math.unit(5, "km")
  13774. },
  13775. {
  13776. name: "Cosmic",
  13777. height: math.unit(2.5e6, "miles")
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Hanzo" },
  13783. {
  13784. front: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(150, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/hanzo/front.svg",
  13790. extra: 374 / 344,
  13791. bottom: 0.02
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(8, "feet"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Anna" },
  13805. {
  13806. front: {
  13807. height: math.unit(7, "feet"),
  13808. weight: math.unit(130, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/anna/front.svg",
  13812. extra: 169 / 145,
  13813. bottom: 0.06
  13814. }
  13815. },
  13816. full: {
  13817. height: math.unit(4.96, "feet"),
  13818. weight: math.unit(220, "lb"),
  13819. name: "Full",
  13820. image: {
  13821. source: "./media/characters/anna/full.svg",
  13822. extra: 138 / 114,
  13823. bottom: 0.15
  13824. }
  13825. },
  13826. tongue: {
  13827. height: math.unit(2.53, "feet"),
  13828. name: "Tongue",
  13829. image: {
  13830. source: "./media/characters/anna/tongue.svg"
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Normal",
  13837. height: math.unit(7, "feet"),
  13838. default: true
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Ian Corvid" },
  13844. {
  13845. front: {
  13846. height: math.unit(7, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/ian-corvid/front.svg",
  13851. extra: 150 / 142,
  13852. bottom: 0.02
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(7, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/ian-corvid/back.svg",
  13861. extra: 150 / 143,
  13862. bottom: 0.01
  13863. }
  13864. },
  13865. stomping: {
  13866. height: math.unit(7, "feet"),
  13867. weight: math.unit(150, "lb"),
  13868. name: "Stomping",
  13869. image: {
  13870. source: "./media/characters/ian-corvid/stomping.svg",
  13871. extra: 76 / 72
  13872. }
  13873. },
  13874. sitting: {
  13875. height: math.unit(7 / 1.8, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Sitting",
  13878. image: {
  13879. source: "./media/characters/ian-corvid/sitting.svg",
  13880. extra: 1400 / 1269,
  13881. bottom: 0.15
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Tiny Microw",
  13888. height: math.unit(1, "inch")
  13889. },
  13890. {
  13891. name: "Microw",
  13892. height: math.unit(6, "inches")
  13893. },
  13894. {
  13895. name: "Crow",
  13896. height: math.unit(7 + 1 / 12, "feet"),
  13897. default: true
  13898. },
  13899. {
  13900. name: "Macrow",
  13901. height: math.unit(176, "feet")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Natalie Kellon" },
  13907. {
  13908. front: {
  13909. height: math.unit(5 + 7 / 12, "feet"),
  13910. weight: math.unit(147, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/natalie-kellon/front.svg",
  13914. extra: 1214 / 1141,
  13915. bottom: 0.02
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(1 / 16, "inch")
  13923. },
  13924. {
  13925. name: "Tiny",
  13926. height: math.unit(4, "inches")
  13927. },
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(5 + 7 / 12, "feet"),
  13931. default: true
  13932. },
  13933. {
  13934. name: "Amazon",
  13935. height: math.unit(12, "feet")
  13936. },
  13937. {
  13938. name: "Giantess",
  13939. height: math.unit(160, "meters")
  13940. },
  13941. {
  13942. name: "Titaness",
  13943. height: math.unit(800, "meters")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Alluria" },
  13949. {
  13950. front: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/alluria/front.svg",
  13956. extra: 806 / 738,
  13957. bottom: 0.01
  13958. }
  13959. },
  13960. side: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(150, "lb"),
  13963. name: "Side",
  13964. image: {
  13965. source: "./media/characters/alluria/side.svg",
  13966. extra: 800 / 750,
  13967. }
  13968. },
  13969. back: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/alluria/back.svg",
  13975. extra: 806 / 738,
  13976. }
  13977. },
  13978. frontMaid: {
  13979. height: math.unit(6, "feet"),
  13980. weight: math.unit(150, "lb"),
  13981. name: "Front (Maid)",
  13982. image: {
  13983. source: "./media/characters/alluria/front-maid.svg",
  13984. extra: 806 / 738,
  13985. bottom: 0.01
  13986. }
  13987. },
  13988. sideMaid: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Side (Maid)",
  13992. image: {
  13993. source: "./media/characters/alluria/side-maid.svg",
  13994. extra: 800 / 750,
  13995. bottom: 0.005
  13996. }
  13997. },
  13998. backMaid: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Back (Maid)",
  14002. image: {
  14003. source: "./media/characters/alluria/back-maid.svg",
  14004. extra: 806 / 738,
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Micro",
  14011. height: math.unit(6, "inches"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Kyle" },
  14018. {
  14019. front: {
  14020. height: math.unit(6, "feet"),
  14021. weight: math.unit(150, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/kyle/front.svg",
  14025. extra: 1069 / 962,
  14026. bottom: 77.228 / 1727.45
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Macro",
  14033. height: math.unit(150, "feet"),
  14034. default: true
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Duncan" },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(300, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/duncan/front.svg",
  14047. extra: 1650 / 1482,
  14048. bottom: 0.05
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(100, "feet"),
  14056. default: true
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Memory" },
  14062. {
  14063. front: {
  14064. height: math.unit(5 + 4 / 12, "feet"),
  14065. weight: math.unit(220, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/memory/front.svg",
  14069. extra: 3641 / 3545,
  14070. bottom: 0.03
  14071. }
  14072. },
  14073. back: {
  14074. height: math.unit(5 + 4 / 12, "feet"),
  14075. weight: math.unit(220, "lb"),
  14076. name: "Back",
  14077. image: {
  14078. source: "./media/characters/memory/back.svg",
  14079. extra: 3641 / 3545,
  14080. bottom: 0.025
  14081. }
  14082. },
  14083. frontSkirt: {
  14084. height: math.unit(5 + 4 / 12, "feet"),
  14085. weight: math.unit(220, "lb"),
  14086. name: "Front (Skirt)",
  14087. image: {
  14088. source: "./media/characters/memory/front-skirt.svg",
  14089. extra: 3641 / 3545,
  14090. bottom: 0.03
  14091. }
  14092. },
  14093. frontDress: {
  14094. height: math.unit(5 + 4 / 12, "feet"),
  14095. weight: math.unit(220, "lb"),
  14096. name: "Front (Dress)",
  14097. image: {
  14098. source: "./media/characters/memory/front-dress.svg",
  14099. extra: 3641 / 3545,
  14100. bottom: 0.03
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Micro",
  14107. height: math.unit(6, "inches"),
  14108. default: true
  14109. },
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(5 + 4 / 12, "feet")
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Luno" },
  14118. {
  14119. front: {
  14120. height: math.unit(4 + 11 / 12, "feet"),
  14121. weight: math.unit(100, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/luno/front.svg",
  14125. extra: 1535 / 1487,
  14126. bottom: 0.03
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Micro",
  14133. height: math.unit(3, "inches")
  14134. },
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(4 + 11 / 12, "feet"),
  14138. default: true
  14139. },
  14140. {
  14141. name: "Macro",
  14142. height: math.unit(300, "feet")
  14143. },
  14144. {
  14145. name: "Megamacro",
  14146. height: math.unit(700, "miles")
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Jamesy" },
  14152. {
  14153. front: {
  14154. height: math.unit(6 + 2 / 12, "feet"),
  14155. weight: math.unit(170, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/jamesy/front.svg",
  14159. extra: 440 / 382,
  14160. bottom: 0.005
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Micro",
  14167. height: math.unit(3, "inches")
  14168. },
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(6 + 2 / 12, "feet"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(300, "feet")
  14177. },
  14178. {
  14179. name: "Megamacro",
  14180. height: math.unit(700, "miles")
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Mark" },
  14186. {
  14187. front: {
  14188. height: math.unit(6, "feet"),
  14189. weight: math.unit(160, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/mark/front.svg",
  14193. extra: 3300 / 3100,
  14194. bottom: 136.42 / 3440.47
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Macro",
  14201. height: math.unit(120, "meters")
  14202. },
  14203. {
  14204. name: "Bigger Macro",
  14205. height: math.unit(350, "meters")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(8, "km"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Continental",
  14214. height: math.unit(4550, "km")
  14215. },
  14216. {
  14217. name: "Planetary",
  14218. height: math.unit(65000, "km")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Mac" },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(400, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/mac/front.svg",
  14231. extra: 1048 / 987.7,
  14232. bottom: 60 / 1107.6,
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Macro",
  14239. height: math.unit(500, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Bari" },
  14246. {
  14247. front: {
  14248. height: math.unit(5 + 2 / 12, "feet"),
  14249. weight: math.unit(190, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/bari/front.svg",
  14253. extra: 3156 / 2880,
  14254. bottom: 0.03
  14255. }
  14256. },
  14257. back: {
  14258. height: math.unit(5 + 2 / 12, "feet"),
  14259. weight: math.unit(190, "lb"),
  14260. name: "Back",
  14261. image: {
  14262. source: "./media/characters/bari/back.svg",
  14263. extra: 3260 / 2834,
  14264. bottom: 0.025
  14265. }
  14266. },
  14267. frontPlush: {
  14268. height: math.unit(5 + 2 / 12, "feet"),
  14269. weight: math.unit(190, "lb"),
  14270. name: "Front (Plush)",
  14271. image: {
  14272. source: "./media/characters/bari/front-plush.svg",
  14273. extra: 1112 / 1061,
  14274. bottom: 0.002
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Micro",
  14281. height: math.unit(3, "inches")
  14282. },
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(5 + 2 / 12, "feet"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Macro",
  14290. height: math.unit(20, "feet")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Hunter Misha Raven" },
  14296. {
  14297. front: {
  14298. height: math.unit(6 + 1 / 12, "feet"),
  14299. weight: math.unit(275, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/hunter-misha-raven/front.svg"
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Mortal",
  14309. height: math.unit(6 + 1 / 12, "feet")
  14310. },
  14311. {
  14312. name: "Divine",
  14313. height: math.unit(1.12134e34, "parsecs"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Max Calore" },
  14320. {
  14321. front: {
  14322. height: math.unit(6 + 3 / 12, "feet"),
  14323. weight: math.unit(220, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/max-calore/front.svg",
  14327. extra: 1700 / 1648,
  14328. bottom: 0.01
  14329. }
  14330. },
  14331. back: {
  14332. height: math.unit(6 + 3 / 12, "feet"),
  14333. weight: math.unit(220, "lb"),
  14334. name: "Back",
  14335. image: {
  14336. source: "./media/characters/max-calore/back.svg",
  14337. extra: 1700 / 1648,
  14338. bottom: 0.01
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Normal",
  14345. height: math.unit(6 + 3 / 12, "feet"),
  14346. default: true
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Aspen" },
  14352. {
  14353. side: {
  14354. height: math.unit(2 + 8 / 12, "feet"),
  14355. weight: math.unit(99, "lb"),
  14356. name: "Side",
  14357. image: {
  14358. source: "./media/characters/aspen/side.svg",
  14359. extra: 152 / 138,
  14360. bottom: 0.032
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(2 + 8 / 12, "feet"),
  14368. default: true
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Sheila (Feral Wolf)" },
  14374. {
  14375. side: {
  14376. height: math.unit(3 + 2 / 12, "feet"),
  14377. weight: math.unit(224, "lb"),
  14378. name: "Side",
  14379. image: {
  14380. source: "./media/characters/sheila-feral-wolf/side.svg",
  14381. extra: 179 / 166,
  14382. bottom: 0.03
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(3 + 2 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Michelle" },
  14396. {
  14397. side: {
  14398. height: math.unit(1 + 9 / 12, "feet"),
  14399. weight: math.unit(38, "lb"),
  14400. name: "Side",
  14401. image: {
  14402. source: "./media/characters/michelle/side.svg",
  14403. extra: 147 / 136.7,
  14404. bottom: 0.03
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(1 + 9 / 12, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Nino" },
  14418. {
  14419. front: {
  14420. height: math.unit(1 + 1 / 12, "feet"),
  14421. weight: math.unit(18, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/nino/front.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(1 + 1 / 12, "feet"),
  14432. default: true
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Viola" },
  14438. {
  14439. front: {
  14440. height: math.unit(1, "feet"),
  14441. weight: math.unit(16, "lb"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/viola/front.svg"
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(1, "feet"),
  14452. default: true
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Atlas" },
  14458. {
  14459. front: {
  14460. height: math.unit(6 + 5 / 12, "feet"),
  14461. weight: math.unit(580, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/atlas/front.svg",
  14465. extra: 298.5 / 290,
  14466. bottom: 0.015
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(6 + 5 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Davy" },
  14480. {
  14481. side: {
  14482. height: math.unit(1 + 10 / 12, "feet"),
  14483. weight: math.unit(25, "lb"),
  14484. name: "Side",
  14485. image: {
  14486. source: "./media/characters/davy/side.svg",
  14487. extra: 200 / 170,
  14488. bottom: 0.01
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Normal",
  14495. height: math.unit(1 + 10 / 12, "feet"),
  14496. default: true
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Fiona" },
  14502. {
  14503. side: {
  14504. height: math.unit(4 + 8 / 12, "feet"),
  14505. weight: math.unit(166, "lb"),
  14506. name: "Side",
  14507. image: {
  14508. source: "./media/characters/fiona/side.svg",
  14509. extra: 232 / 220,
  14510. bottom: 0.03
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(4 + 8 / 12, "feet"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Lyla" },
  14524. {
  14525. front: {
  14526. height: math.unit(2, "feet"),
  14527. weight: math.unit(62, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/lyla/front.svg",
  14531. bottom: 0.1
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(2, "feet"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Perseus" },
  14545. {
  14546. side: {
  14547. height: math.unit(1.8, "feet"),
  14548. weight: math.unit(44, "lb"),
  14549. name: "Side",
  14550. image: {
  14551. source: "./media/characters/perseus/side.svg",
  14552. bottom: 0.21
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Normal",
  14559. height: math.unit(1.8, "feet"),
  14560. default: true
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Remus" },
  14566. {
  14567. side: {
  14568. height: math.unit(4 + 2 / 12, "feet"),
  14569. weight: math.unit(20, "lb"),
  14570. name: "Side",
  14571. image: {
  14572. source: "./media/characters/remus/side.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(4 + 2 / 12, "feet"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Raf" },
  14586. {
  14587. front: {
  14588. height: math.unit(4 + 11 / 12, "feet"),
  14589. weight: math.unit(114, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/raf/front.svg",
  14593. bottom: 0.01
  14594. }
  14595. },
  14596. side: {
  14597. height: math.unit(4 + 11 / 12, "feet"),
  14598. weight: math.unit(114, "lb"),
  14599. name: "Side",
  14600. image: {
  14601. source: "./media/characters/raf/side.svg",
  14602. bottom: 0.005
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Micro",
  14609. height: math.unit(2, "inches")
  14610. },
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(4 + 11 / 12, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Macro",
  14618. height: math.unit(70, "feet")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Liam Einarr" },
  14624. {
  14625. front: {
  14626. height: math.unit(1.5, "meters"),
  14627. weight: math.unit(68, "kg"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/liam-einarr/front.svg",
  14631. extra: 2822 / 2666
  14632. }
  14633. },
  14634. back: {
  14635. height: math.unit(1.5, "meters"),
  14636. weight: math.unit(68, "kg"),
  14637. name: "Back",
  14638. image: {
  14639. source: "./media/characters/liam-einarr/back.svg",
  14640. extra: 2822 / 2666,
  14641. bottom: 0.015
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(1.5, "meters"),
  14649. default: true
  14650. },
  14651. {
  14652. name: "Macro",
  14653. height: math.unit(150, "meters")
  14654. },
  14655. {
  14656. name: "Megamacro",
  14657. height: math.unit(35, "km")
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Linda" },
  14663. {
  14664. front: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(75, "kg"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/linda/front.svg",
  14670. extra: 930 / 874,
  14671. bottom: 0.004
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(6, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Caylex" },
  14685. {
  14686. front: {
  14687. height: math.unit(6 + 8 / 12, "feet"),
  14688. weight: math.unit(220, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/caylex/front.svg",
  14692. extra: 821 / 772,
  14693. bottom: 0.07
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6 + 8 / 12, "feet"),
  14698. weight: math.unit(220, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/caylex/back.svg",
  14702. extra: 821 / 772,
  14703. bottom: 0.022
  14704. }
  14705. },
  14706. hand: {
  14707. height: math.unit(1.25, "feet"),
  14708. name: "Hand",
  14709. image: {
  14710. source: "./media/characters/caylex/hand.svg"
  14711. }
  14712. },
  14713. foot: {
  14714. height: math.unit(1.6, "feet"),
  14715. name: "Foot",
  14716. image: {
  14717. source: "./media/characters/caylex/foot.svg"
  14718. }
  14719. },
  14720. armored: {
  14721. height: math.unit(6 + 8 / 12, "feet"),
  14722. weight: math.unit(250, "lb"),
  14723. name: "Armored",
  14724. image: {
  14725. source: "./media/characters/caylex/armored.svg",
  14726. extra: 1420 / 1310,
  14727. bottom: 0.045
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(6 + 8 / 12, "feet"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Normal+",
  14739. height: math.unit(12, "feet")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Alana" },
  14745. {
  14746. front: {
  14747. height: math.unit(7 + 6 / 12, "feet"),
  14748. weight: math.unit(288, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/alana/front.svg",
  14752. extra: 679 / 653,
  14753. bottom: 22.5 / 701
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(7 + 6 / 12, "feet")
  14761. },
  14762. {
  14763. name: "Large",
  14764. height: math.unit(50, "feet")
  14765. },
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(100, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Macro+",
  14773. height: math.unit(200, "feet")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Hasani" },
  14779. {
  14780. front: {
  14781. height: math.unit(6 + 1 / 12, "feet"),
  14782. weight: math.unit(210, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/hasani/front.svg",
  14786. extra: 244 / 232,
  14787. bottom: 0.01
  14788. }
  14789. },
  14790. back: {
  14791. height: math.unit(6 + 1 / 12, "feet"),
  14792. weight: math.unit(210, "lb"),
  14793. name: "Back",
  14794. image: {
  14795. source: "./media/characters/hasani/back.svg",
  14796. extra: 244 / 232,
  14797. bottom: 0.01
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(6 + 1 / 12, "feet")
  14805. },
  14806. {
  14807. name: "Macro",
  14808. height: math.unit(175, "feet"),
  14809. default: true
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Nita" },
  14815. {
  14816. front: {
  14817. height: math.unit(1.82, "meters"),
  14818. weight: math.unit(140, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/nita/front.svg",
  14822. extra: 2473 / 2363,
  14823. bottom: 0.01
  14824. }
  14825. },
  14826. },
  14827. [
  14828. {
  14829. name: "Normal",
  14830. height: math.unit(1.82, "m")
  14831. },
  14832. {
  14833. name: "Macro",
  14834. height: math.unit(300, "m")
  14835. },
  14836. {
  14837. name: "Mistake Canon",
  14838. height: math.unit(0.5, "miles"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Big Mistake",
  14843. height: math.unit(13, "miles")
  14844. },
  14845. {
  14846. name: "Playing God",
  14847. height: math.unit(2450, "miles")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Shiriko" },
  14853. {
  14854. front: {
  14855. height: math.unit(4, "feet"),
  14856. weight: math.unit(120, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/shiriko/front.svg",
  14860. extra: 195 / 188
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(4, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Deja" },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. name: "front",
  14878. image: {
  14879. source: "./media/characters/deja/front.svg",
  14880. extra: 926 / 840,
  14881. bottom: 0.07
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Planck Length",
  14888. height: math.unit(1.6e-35, "meters")
  14889. },
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(30.48, "meters"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Universal",
  14897. height: math.unit(8.8e26, "meters")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Anima" },
  14903. {
  14904. side: {
  14905. height: math.unit(8, "feet"),
  14906. weight: math.unit(6300, "lb"),
  14907. name: "Side",
  14908. image: {
  14909. source: "./media/characters/anima/side.svg",
  14910. bottom: 0.035
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(8, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Bianca" },
  14924. {
  14925. front: {
  14926. height: math.unit(8, "feet"),
  14927. weight: math.unit(350, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/bianca/front.svg",
  14931. extra: 234 / 225,
  14932. bottom: 0.03
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(8, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Adinia" },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/adinia/front.svg",
  14953. extra: 1845 / 1672,
  14954. bottom: 0.02
  14955. }
  14956. },
  14957. back: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Back",
  14961. image: {
  14962. source: "./media/characters/adinia/back.svg",
  14963. extra: 1845 / 1672,
  14964. bottom: 0.002
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(11 + 5 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Lykasa" },
  14978. {
  14979. front: {
  14980. height: math.unit(3, "meters"),
  14981. weight: math.unit(200, "kg"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/lykasa/front.svg",
  14985. extra: 1076 / 976,
  14986. bottom: 0.06
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(3, "meters")
  14994. },
  14995. {
  14996. name: "Kaiju",
  14997. height: math.unit(120, "meters"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Mega Kaiju",
  15002. height: math.unit(240, "km")
  15003. },
  15004. {
  15005. name: "Giga Kaiju",
  15006. height: math.unit(400, "megameters")
  15007. },
  15008. {
  15009. name: "Tera Kaiju",
  15010. height: math.unit(800, "gigameters")
  15011. },
  15012. {
  15013. name: "Kaiju Dragon Goddess",
  15014. height: math.unit(26, "zettaparsecs")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Malfaren" },
  15020. {
  15021. side: {
  15022. height: math.unit(283 / 124 * 6, "feet"),
  15023. weight: math.unit(35000, "lb"),
  15024. name: "Side",
  15025. image: {
  15026. source: "./media/characters/malfaren/side.svg",
  15027. extra: 2500 / 1010,
  15028. bottom: 0.01
  15029. }
  15030. },
  15031. front: {
  15032. height: math.unit(22.36, "feet"),
  15033. weight: math.unit(35000, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/malfaren/front.svg",
  15037. extra: 1631 / 1476,
  15038. bottom: 0.01
  15039. }
  15040. },
  15041. maw: {
  15042. height: math.unit(6.9, "feet"),
  15043. name: "Maw",
  15044. image: {
  15045. source: "./media/characters/malfaren/maw.svg"
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Big",
  15052. height: math.unit(283 / 162 * 6, "feet"),
  15053. },
  15054. {
  15055. name: "Bigger",
  15056. height: math.unit(283 / 124 * 6, "feet")
  15057. },
  15058. {
  15059. name: "Massive",
  15060. height: math.unit(283 / 92 * 6, "feet"),
  15061. default: true
  15062. },
  15063. {
  15064. name: "👀💦",
  15065. height: math.unit(283 / 73 * 6, "feet"),
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Kernel" },
  15071. {
  15072. front: {
  15073. height: math.unit(1.7, "m"),
  15074. weight: math.unit(70, "kg"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/kernel/front.svg",
  15078. extra: 222 / 210,
  15079. bottom: 0.007
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Nano",
  15086. height: math.unit(17, "micrometers")
  15087. },
  15088. {
  15089. name: "Micro",
  15090. height: math.unit(1.7, "mm")
  15091. },
  15092. {
  15093. name: "Small",
  15094. height: math.unit(1.7, "cm")
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(1.7, "m"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Jayne Folest" },
  15105. {
  15106. front: {
  15107. height: math.unit(1.75, "meters"),
  15108. weight: math.unit(65, "kg"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/jayne-folest/front.svg",
  15112. extra: 2115 / 2007,
  15113. bottom: 0.02
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(1.75, "meters"),
  15118. weight: math.unit(65, "kg"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/jayne-folest/back.svg",
  15122. extra: 2115 / 2007,
  15123. bottom: 0.005
  15124. }
  15125. },
  15126. frontClothed: {
  15127. height: math.unit(1.75, "meters"),
  15128. weight: math.unit(65, "kg"),
  15129. name: "Front (Clothed)",
  15130. image: {
  15131. source: "./media/characters/jayne-folest/front-clothed.svg",
  15132. extra: 2115 / 2007,
  15133. bottom: 0.035
  15134. }
  15135. },
  15136. hand: {
  15137. height: math.unit(1 / 1.260, "feet"),
  15138. name: "Hand",
  15139. image: {
  15140. source: "./media/characters/jayne-folest/hand.svg"
  15141. }
  15142. },
  15143. foot: {
  15144. height: math.unit(1 / 0.918, "feet"),
  15145. name: "Foot",
  15146. image: {
  15147. source: "./media/characters/jayne-folest/foot.svg"
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Micro",
  15154. height: math.unit(4, "cm")
  15155. },
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(1.75, "meters")
  15159. },
  15160. {
  15161. name: "Macro",
  15162. height: math.unit(47.5, "meters"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Algier" },
  15169. {
  15170. front: {
  15171. height: math.unit(180, "cm"),
  15172. weight: math.unit(70, "kg"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/algier/front.svg",
  15176. extra: 596 / 572,
  15177. bottom: 0.04
  15178. }
  15179. },
  15180. back: {
  15181. height: math.unit(180, "cm"),
  15182. weight: math.unit(70, "kg"),
  15183. name: "Back",
  15184. image: {
  15185. source: "./media/characters/algier/back.svg",
  15186. extra: 596 / 572,
  15187. bottom: 0.025
  15188. }
  15189. },
  15190. frontdressed: {
  15191. height: math.unit(180, "cm"),
  15192. weight: math.unit(150, "kg"),
  15193. name: "Front-dressed",
  15194. image: {
  15195. source: "./media/characters/algier/front-dressed.svg",
  15196. extra: 596 / 572,
  15197. bottom: 0.038
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(5, "cm")
  15205. },
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(180, "cm"),
  15209. default: true
  15210. },
  15211. {
  15212. name: "Macro",
  15213. height: math.unit(64, "m")
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Pretzel" },
  15219. {
  15220. upright: {
  15221. height: math.unit(7, "feet"),
  15222. weight: math.unit(300, "lb"),
  15223. name: "Upright",
  15224. image: {
  15225. source: "./media/characters/pretzel/upright.svg",
  15226. extra: 534 / 522,
  15227. bottom: 0.065
  15228. }
  15229. },
  15230. sprawling: {
  15231. height: math.unit(3.75, "feet"),
  15232. weight: math.unit(300, "lb"),
  15233. name: "Sprawling",
  15234. image: {
  15235. source: "./media/characters/pretzel/sprawling.svg",
  15236. extra: 314 / 281,
  15237. bottom: 0.1
  15238. }
  15239. },
  15240. tongue: {
  15241. height: math.unit(2, "feet"),
  15242. name: "Tongue",
  15243. image: {
  15244. source: "./media/characters/pretzel/tongue.svg"
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(7, "feet"),
  15252. default: true
  15253. },
  15254. {
  15255. name: "Oversized",
  15256. height: math.unit(15, "feet")
  15257. },
  15258. {
  15259. name: "Huge",
  15260. height: math.unit(30, "feet")
  15261. },
  15262. {
  15263. name: "Macro",
  15264. height: math.unit(250, "feet")
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Roxi" },
  15270. {
  15271. sideFront: {
  15272. height: math.unit(5 + 2 / 12, "feet"),
  15273. weight: math.unit(120, "lb"),
  15274. name: "Front Side",
  15275. image: {
  15276. source: "./media/characters/roxi/side-front.svg",
  15277. extra: 2924 / 2717,
  15278. bottom: 0.08
  15279. }
  15280. },
  15281. sideBack: {
  15282. height: math.unit(5 + 2 / 12, "feet"),
  15283. weight: math.unit(120, "lb"),
  15284. name: "Back Side",
  15285. image: {
  15286. source: "./media/characters/roxi/side-back.svg",
  15287. extra: 2904 / 2693,
  15288. bottom: 0.06
  15289. }
  15290. },
  15291. front: {
  15292. height: math.unit(5 + 2 / 12, "feet"),
  15293. weight: math.unit(120, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/roxi/front.svg",
  15297. extra: 2028 / 1907,
  15298. bottom: 0.01
  15299. }
  15300. },
  15301. frontAlt: {
  15302. height: math.unit(5 + 2 / 12, "feet"),
  15303. weight: math.unit(120, "lb"),
  15304. name: "Front (Alt)",
  15305. image: {
  15306. source: "./media/characters/roxi/front-alt.svg",
  15307. extra: 1828 / 1798,
  15308. bottom: 0.01
  15309. }
  15310. },
  15311. sitting: {
  15312. height: math.unit(2.8, "feet"),
  15313. weight: math.unit(120, "lb"),
  15314. name: "Sitting",
  15315. image: {
  15316. source: "./media/characters/roxi/sitting.svg",
  15317. extra: 2660 / 2462,
  15318. bottom: 0.1
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(5 + 2 / 12, "feet"),
  15326. default: true
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Shadow" },
  15332. {
  15333. side: {
  15334. height: math.unit(55, "feet"),
  15335. weight: math.unit(153, "tons"),
  15336. name: "Side",
  15337. image: {
  15338. source: "./media/characters/shadow/side.svg",
  15339. extra: 701 / 628,
  15340. bottom: 0.02
  15341. }
  15342. },
  15343. flying: {
  15344. height: math.unit(145, "feet"),
  15345. weight: math.unit(153, "tons"),
  15346. name: "Flying",
  15347. image: {
  15348. source: "./media/characters/shadow/flying.svg"
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(55, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Marcie" },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(200, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/marcie/front.svg",
  15369. extra: 960 / 876,
  15370. bottom: 58 / 1017.87
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(1, "mile"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Kachina" },
  15384. {
  15385. front: {
  15386. height: math.unit(7, "feet"),
  15387. weight: math.unit(200, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/kachina/front.svg",
  15391. extra: 1290.68 / 1119,
  15392. bottom: 36.5 / 1327.18
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(7, "feet"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Kash" },
  15406. {
  15407. looking: {
  15408. height: math.unit(2, "meters"),
  15409. weight: math.unit(300, "kg"),
  15410. name: "Looking",
  15411. image: {
  15412. source: "./media/characters/kash/looking.svg",
  15413. extra: 474 / 344,
  15414. bottom: 0.03
  15415. }
  15416. },
  15417. side: {
  15418. height: math.unit(2, "meters"),
  15419. weight: math.unit(300, "kg"),
  15420. name: "Side",
  15421. image: {
  15422. source: "./media/characters/kash/side.svg",
  15423. extra: 302 / 251,
  15424. bottom: 0.03
  15425. }
  15426. },
  15427. front: {
  15428. height: math.unit(2, "meters"),
  15429. weight: math.unit(300, "kg"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/kash/front.svg",
  15433. extra: 495 / 360,
  15434. bottom: 0.015
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(2, "meters"),
  15442. default: true
  15443. },
  15444. {
  15445. name: "Big",
  15446. height: math.unit(3, "meters")
  15447. },
  15448. {
  15449. name: "Large",
  15450. height: math.unit(5, "meters")
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Lalim" },
  15456. {
  15457. feeding: {
  15458. height: math.unit(6.7, "feet"),
  15459. weight: math.unit(350, "lb"),
  15460. name: "Feeding",
  15461. image: {
  15462. source: "./media/characters/lalim/feeding.svg",
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(6.7, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "De'Vout" },
  15476. {
  15477. front: {
  15478. height: math.unit(9.5, "feet"),
  15479. weight: math.unit(600, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/de'vout/front.svg",
  15483. extra: 1443 / 1328,
  15484. bottom: 0.025
  15485. }
  15486. },
  15487. back: {
  15488. height: math.unit(9.5, "feet"),
  15489. weight: math.unit(600, "lb"),
  15490. name: "Back",
  15491. image: {
  15492. source: "./media/characters/de'vout/back.svg",
  15493. extra: 1443 / 1328
  15494. }
  15495. },
  15496. frontDressed: {
  15497. height: math.unit(9.5, "feet"),
  15498. weight: math.unit(600, "lb"),
  15499. name: "Front (Dressed",
  15500. image: {
  15501. source: "./media/characters/de'vout/front-dressed.svg",
  15502. extra: 1443 / 1328,
  15503. bottom: 0.025
  15504. }
  15505. },
  15506. backDressed: {
  15507. height: math.unit(9.5, "feet"),
  15508. weight: math.unit(600, "lb"),
  15509. name: "Back (Dressed",
  15510. image: {
  15511. source: "./media/characters/de'vout/back-dressed.svg",
  15512. extra: 1443 / 1328
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(9.5, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Talana" },
  15526. {
  15527. front: {
  15528. height: math.unit(8, "feet"),
  15529. weight: math.unit(225, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/talana/front.svg",
  15533. extra: 1410 / 1300,
  15534. bottom: 0.015
  15535. }
  15536. },
  15537. frontDressed: {
  15538. height: math.unit(8, "feet"),
  15539. weight: math.unit(225, "lb"),
  15540. name: "Front (Dressed",
  15541. image: {
  15542. source: "./media/characters/talana/front-dressed.svg",
  15543. extra: 1410 / 1300,
  15544. bottom: 0.015
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(8, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Xeauvok" },
  15558. {
  15559. side: {
  15560. height: math.unit(7.2, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Side",
  15563. image: {
  15564. source: "./media/characters/xeauvok/side.svg",
  15565. extra: 1975 / 1523,
  15566. bottom: 0.07
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(7.2, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Zara" },
  15580. {
  15581. side: {
  15582. height: math.unit(10, "feet"),
  15583. weight: math.unit(900, "kg"),
  15584. name: "Side",
  15585. image: {
  15586. source: "./media/characters/zara/side.svg",
  15587. extra: 504 / 498
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(10, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Richard (Dragon)" },
  15601. {
  15602. side: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Side",
  15606. image: {
  15607. source: "./media/characters/richard-dragon/side.svg",
  15608. extra: 845 / 340,
  15609. bottom: 0.017
  15610. }
  15611. },
  15612. maw: {
  15613. height: math.unit(2.97, "feet"),
  15614. name: "Maw",
  15615. image: {
  15616. source: "./media/characters/richard-dragon/maw.svg"
  15617. }
  15618. },
  15619. },
  15620. [
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Richard (Smeargle)" },
  15625. {
  15626. front: {
  15627. height: math.unit(4, "feet"),
  15628. weight: math.unit(100, "lb"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/richard-smeargle/front.svg",
  15632. extra: 2952 / 2820,
  15633. bottom: 0.028
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(4, "feet"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Dynamax",
  15645. height: math.unit(20, "meters")
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Klay" },
  15651. {
  15652. front: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(110, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/klay/front.svg",
  15658. extra: 962 / 883,
  15659. bottom: 0.04
  15660. }
  15661. },
  15662. back: {
  15663. height: math.unit(6, "feet"),
  15664. weight: math.unit(110, "lb"),
  15665. name: "Back",
  15666. image: {
  15667. source: "./media/characters/klay/back.svg",
  15668. extra: 962 / 883
  15669. }
  15670. },
  15671. beans: {
  15672. height: math.unit(1.15, "feet"),
  15673. name: "Beans",
  15674. image: {
  15675. source: "./media/characters/klay/beans.svg"
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Micro",
  15682. height: math.unit(6, "inches")
  15683. },
  15684. {
  15685. name: "Mini",
  15686. height: math.unit(3, "feet")
  15687. },
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(6, "feet"),
  15691. default: true
  15692. },
  15693. {
  15694. name: "Big",
  15695. height: math.unit(25, "feet")
  15696. },
  15697. {
  15698. name: "Macro",
  15699. height: math.unit(100, "feet")
  15700. },
  15701. {
  15702. name: "Megamacro",
  15703. height: math.unit(400, "feet")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Marcus" },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(160, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/marcus/front.svg",
  15716. extra: 734 / 676,
  15717. bottom: 0.03
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Little",
  15724. height: math.unit(6, "feet")
  15725. },
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(110, "feet"),
  15729. default: true
  15730. },
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(250, "feet")
  15734. },
  15735. {
  15736. name: "Megamacro",
  15737. height: math.unit(1000, "feet")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Claude DelRoute" },
  15743. {
  15744. front: {
  15745. height: math.unit(7, "feet"),
  15746. weight: math.unit(275, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/claude-delroute/front.svg",
  15750. extra: 230 / 214,
  15751. bottom: 0.007
  15752. }
  15753. },
  15754. side: {
  15755. height: math.unit(7, "feet"),
  15756. weight: math.unit(275, "lb"),
  15757. name: "Side",
  15758. image: {
  15759. source: "./media/characters/claude-delroute/side.svg",
  15760. extra: 222 / 214,
  15761. bottom: 0.01
  15762. }
  15763. },
  15764. back: {
  15765. height: math.unit(7, "feet"),
  15766. weight: math.unit(275, "lb"),
  15767. name: "Back",
  15768. image: {
  15769. source: "./media/characters/claude-delroute/back.svg",
  15770. extra: 230 / 214,
  15771. bottom: 0.015
  15772. }
  15773. },
  15774. maw: {
  15775. height: math.unit(0.6407, "meters"),
  15776. name: "Maw",
  15777. image: {
  15778. source: "./media/characters/claude-delroute/maw.svg"
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(7, "feet"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Lorge",
  15790. height: math.unit(20, "feet")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Dragonien" },
  15796. {
  15797. front: {
  15798. height: math.unit(8 + 4 / 12, "feet"),
  15799. weight: math.unit(600, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/dragonien/front.svg",
  15803. extra: 100 / 94,
  15804. bottom: 3.3 / 103.3445
  15805. }
  15806. },
  15807. back: {
  15808. height: math.unit(8 + 4 / 12, "feet"),
  15809. weight: math.unit(600, "lb"),
  15810. name: "Back",
  15811. image: {
  15812. source: "./media/characters/dragonien/back.svg",
  15813. extra: 776 / 746,
  15814. bottom: 6.4 / 782.0616
  15815. }
  15816. },
  15817. foot: {
  15818. height: math.unit(1.54, "feet"),
  15819. name: "Foot",
  15820. image: {
  15821. source: "./media/characters/dragonien/foot.svg",
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(8 + 4 / 12, "feet"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Macro",
  15833. height: math.unit(200, "feet")
  15834. },
  15835. {
  15836. name: "Megamacro",
  15837. height: math.unit(1, "mile")
  15838. },
  15839. {
  15840. name: "Gigamacro",
  15841. height: math.unit(1000, "miles")
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Desta" },
  15847. {
  15848. front: {
  15849. height: math.unit(5 + 2 / 12, "feet"),
  15850. weight: math.unit(110, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/desta/front.svg",
  15854. extra: 1482 / 1417
  15855. }
  15856. },
  15857. side: {
  15858. height: math.unit(5 + 2 / 12, "feet"),
  15859. weight: math.unit(110, "lb"),
  15860. name: "Side",
  15861. image: {
  15862. source: "./media/characters/desta/side.svg",
  15863. extra: 2579 / 2491,
  15864. bottom: 0.053
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(6, "inches")
  15872. },
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(5 + 2 / 12, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(62, "feet")
  15881. },
  15882. {
  15883. name: "Megamacro",
  15884. height: math.unit(1800, "feet")
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Storm Alystar" },
  15890. {
  15891. front: {
  15892. height: math.unit(10, "feet"),
  15893. weight: math.unit(700, "lb"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/storm-alystar/front.svg",
  15897. extra: 2112 / 1898,
  15898. bottom: 0.034
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Micro",
  15905. height: math.unit(3.5, "inches")
  15906. },
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(10, "feet"),
  15910. default: true
  15911. },
  15912. {
  15913. name: "Macro",
  15914. height: math.unit(400, "feet")
  15915. },
  15916. {
  15917. name: "Deific",
  15918. height: math.unit(60, "miles")
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Ilia" },
  15924. {
  15925. front: {
  15926. height: math.unit(2.35, "meters"),
  15927. weight: math.unit(119, "kg"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/ilia/front.svg",
  15931. extra: 1285 / 1255,
  15932. bottom: 0.06
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(2.35, "meters")
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(140, "meters"),
  15944. default: true
  15945. },
  15946. {
  15947. name: "Megamacro",
  15948. height: math.unit(100, "miles")
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "KingDead" },
  15954. {
  15955. front: {
  15956. height: math.unit(6 + 5 / 12, "feet"),
  15957. weight: math.unit(190, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/kingdead/front.svg",
  15961. extra: 1228 / 1177
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Micro",
  15968. height: math.unit(7, "inches")
  15969. },
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(6 + 5 / 12, "feet")
  15973. },
  15974. {
  15975. name: "Macro",
  15976. height: math.unit(150, "feet"),
  15977. default: true
  15978. },
  15979. {
  15980. name: "Megamacro",
  15981. height: math.unit(200, "miles")
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Kyrehx" },
  15987. {
  15988. front: {
  15989. height: math.unit(8, "feet"),
  15990. weight: math.unit(600, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/kyrehx/front.svg",
  15994. extra: 1195 / 1095,
  15995. bottom: 0.034
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Micro",
  16002. height: math.unit(2, "inches")
  16003. },
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(8, "feet"),
  16007. default: true
  16008. },
  16009. {
  16010. name: "Macro",
  16011. height: math.unit(255, "feet")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Xang" },
  16017. {
  16018. front: {
  16019. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16020. weight: math.unit(184, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/xang/front.svg",
  16024. extra: 845 / 755
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(0.935 * 146, "feet")
  16037. },
  16038. {
  16039. name: "Megamacro",
  16040. height: math.unit(0.935 * 3, "miles")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Doc Weardno" },
  16046. {
  16047. frontDressed: {
  16048. height: math.unit(5 + 7 / 12, "feet"),
  16049. weight: math.unit(140, "lb"),
  16050. name: "Front (Dressed)",
  16051. image: {
  16052. source: "./media/characters/doc-weardno/front-dressed.svg",
  16053. extra: 263 / 234
  16054. }
  16055. },
  16056. backDressed: {
  16057. height: math.unit(5 + 7 / 12, "feet"),
  16058. weight: math.unit(140, "lb"),
  16059. name: "Back (Dressed)",
  16060. image: {
  16061. source: "./media/characters/doc-weardno/back-dressed.svg",
  16062. extra: 266 / 238
  16063. }
  16064. },
  16065. front: {
  16066. height: math.unit(5 + 7 / 12, "feet"),
  16067. weight: math.unit(140, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/doc-weardno/front.svg",
  16071. extra: 254 / 233
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Micro",
  16078. height: math.unit(3, "inches")
  16079. },
  16080. {
  16081. name: "Normal",
  16082. height: math.unit(5 + 7 / 12, "feet"),
  16083. default: true
  16084. },
  16085. {
  16086. name: "Macro",
  16087. height: math.unit(25, "feet")
  16088. },
  16089. {
  16090. name: "Megamacro",
  16091. height: math.unit(2, "miles")
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Seth Whilst" },
  16097. {
  16098. front: {
  16099. height: math.unit(6 + 2 / 12, "feet"),
  16100. weight: math.unit(153, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/seth-whilst/front.svg",
  16104. bottom: 0.07
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Micro",
  16111. height: math.unit(5, "inches")
  16112. },
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(6 + 2 / 12, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Pocket Jabari" },
  16122. {
  16123. front: {
  16124. height: math.unit(3, "inches"),
  16125. weight: math.unit(8, "grams"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/pocket-jabari/front.svg",
  16129. extra: 1024 / 974,
  16130. bottom: 0.039
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Minimicro",
  16137. height: math.unit(8, "mm")
  16138. },
  16139. {
  16140. name: "Micro",
  16141. height: math.unit(3, "inches"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(3, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Sapphy" },
  16152. {
  16153. front: {
  16154. height: math.unit(15, "feet"),
  16155. weight: math.unit(3280, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/sapphy/front.svg",
  16159. extra: 671 / 577,
  16160. bottom: 0.085
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(15, "feet"),
  16165. weight: math.unit(3280, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/sapphy/back.svg",
  16169. extra: 631 / 607,
  16170. bottom: 0.045
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(15, "feet")
  16178. },
  16179. {
  16180. name: "Casual Macro",
  16181. height: math.unit(120, "feet")
  16182. },
  16183. {
  16184. name: "Macro",
  16185. height: math.unit(2150, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(8, "miles")
  16191. },
  16192. {
  16193. name: "Galaxy Mom",
  16194. height: math.unit(6, "megalightyears")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Kiro" },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(170, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/kiro/front.svg",
  16207. extra: 1064 / 1012,
  16208. bottom: 0.052
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Micro",
  16215. height: math.unit(6, "inches")
  16216. },
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(6, "feet"),
  16220. default: true
  16221. },
  16222. {
  16223. name: "Macro",
  16224. height: math.unit(72, "feet")
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Irishfox" },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 9 / 12, "feet"),
  16233. weight: math.unit(175, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/irishfox/front.svg",
  16237. extra: 1912 / 1680,
  16238. bottom: 0.02
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Nano",
  16245. height: math.unit(1, "mm")
  16246. },
  16247. {
  16248. name: "Micro",
  16249. height: math.unit(2, "inches")
  16250. },
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(5 + 9 / 12, "feet"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Macro",
  16258. height: math.unit(45, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Aronai Sieyes" },
  16264. {
  16265. front: {
  16266. height: math.unit(6 + 1 / 12, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/aronai-sieyes/front.svg",
  16271. extra: 1556 / 1480,
  16272. bottom: 0.015
  16273. }
  16274. },
  16275. side: {
  16276. height: math.unit(6 + 1 / 12, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Side",
  16279. image: {
  16280. source: "./media/characters/aronai-sieyes/side.svg",
  16281. extra: 1433 / 1390,
  16282. bottom: 0.0393
  16283. }
  16284. },
  16285. back: {
  16286. height: math.unit(6 + 1 / 12, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Back",
  16289. image: {
  16290. source: "./media/characters/aronai-sieyes/back.svg",
  16291. extra: 1544 / 1494,
  16292. bottom: 0.02
  16293. }
  16294. },
  16295. frontClothed: {
  16296. height: math.unit(6 + 1 / 12, "feet"),
  16297. weight: math.unit(150, "lb"),
  16298. name: "Front (Clothed)",
  16299. image: {
  16300. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16301. extra: 1582 / 1527
  16302. }
  16303. },
  16304. feral: {
  16305. height: math.unit(18, "feet"),
  16306. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16307. name: "Feral",
  16308. image: {
  16309. source: "./media/characters/aronai-sieyes/feral.svg",
  16310. extra: 1530 / 1240,
  16311. bottom: 0.035
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Micro",
  16318. height: math.unit(2, "inches")
  16319. },
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(6 + 1 / 12, "feet"),
  16323. default: true
  16324. }
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Xuna" },
  16329. {
  16330. front: {
  16331. height: math.unit(12, "feet"),
  16332. weight: math.unit(410, "kg"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/xuna/front.svg",
  16336. extra: 2184 / 1980
  16337. }
  16338. },
  16339. side: {
  16340. height: math.unit(12, "feet"),
  16341. weight: math.unit(410, "kg"),
  16342. name: "Side",
  16343. image: {
  16344. source: "./media/characters/xuna/side.svg",
  16345. extra: 2184 / 1980
  16346. }
  16347. },
  16348. back: {
  16349. height: math.unit(12, "feet"),
  16350. weight: math.unit(410, "kg"),
  16351. name: "Back",
  16352. image: {
  16353. source: "./media/characters/xuna/back.svg",
  16354. extra: 2184 / 1980
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Nano glow",
  16361. height: math.unit(10, "nm")
  16362. },
  16363. {
  16364. name: "Micro floof",
  16365. height: math.unit(0.3, "m")
  16366. },
  16367. {
  16368. name: "Huggable softy boi",
  16369. height: math.unit(3.6576, "m"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Admirable floof",
  16374. height: math.unit(80, "meters")
  16375. },
  16376. {
  16377. name: "Gentle macro",
  16378. height: math.unit(300, "meters")
  16379. },
  16380. {
  16381. name: "Very careful floof",
  16382. height: math.unit(3200, "meters")
  16383. },
  16384. {
  16385. name: "The mega floof",
  16386. height: math.unit(36000, "meters")
  16387. },
  16388. {
  16389. name: "Giga-fur-Wicker",
  16390. height: math.unit(4800000, "meters")
  16391. },
  16392. {
  16393. name: "Licky world",
  16394. height: math.unit(20000000, "meters")
  16395. },
  16396. {
  16397. name: "Floofy cyan sun",
  16398. height: math.unit(1500000000, "meters")
  16399. },
  16400. {
  16401. name: "Milky Wicker",
  16402. height: math.unit(1000000000000000000000, "meters")
  16403. },
  16404. {
  16405. name: "The observing Wicker",
  16406. height: math.unit(999999999999999999999999999, "meters")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Arokha Sieyes" },
  16412. {
  16413. front: {
  16414. height: math.unit(5 + 9 / 12, "feet"),
  16415. weight: math.unit(150, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/arokha-sieyes/front.svg",
  16419. extra: 1425 / 1284,
  16420. bottom: 0.05
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(5 + 9 / 12, "feet")
  16428. },
  16429. {
  16430. name: "Macro",
  16431. height: math.unit(30, "meters"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Arokh Sieyes" },
  16438. {
  16439. front: {
  16440. height: math.unit(6, "feet"),
  16441. weight: math.unit(180, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/arokh-sieyes/front.svg",
  16445. extra: 1830 / 1769,
  16446. bottom: 0.01
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(6, "feet")
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(30, "meters"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Goldeneye" },
  16464. {
  16465. side: {
  16466. height: math.unit(13 + 1 / 12, "feet"),
  16467. weight: math.unit(8.5, "tonnes"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/goldeneye/side.svg",
  16471. extra: 1182 / 778,
  16472. bottom: 0.067
  16473. }
  16474. },
  16475. paw: {
  16476. height: math.unit(3.4, "feet"),
  16477. name: "Paw",
  16478. image: {
  16479. source: "./media/characters/goldeneye/paw.svg"
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(13 + 1 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Leonardo Lycheborne" },
  16493. {
  16494. front: {
  16495. height: math.unit(6 + 1 / 12, "feet"),
  16496. weight: math.unit(210, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/leonardo-lycheborne/front.svg",
  16500. extra: 390 / 365,
  16501. bottom: 0.032
  16502. }
  16503. },
  16504. side: {
  16505. height: math.unit(6 + 1 / 12, "feet"),
  16506. weight: math.unit(210, "lb"),
  16507. name: "Side",
  16508. image: {
  16509. source: "./media/characters/leonardo-lycheborne/side.svg",
  16510. extra: 390 / 365,
  16511. bottom: 0.005
  16512. }
  16513. },
  16514. back: {
  16515. height: math.unit(6 + 1 / 12, "feet"),
  16516. weight: math.unit(210, "lb"),
  16517. name: "Back",
  16518. image: {
  16519. source: "./media/characters/leonardo-lycheborne/back.svg",
  16520. extra: 392 / 366,
  16521. bottom: 0.01
  16522. }
  16523. },
  16524. hand: {
  16525. height: math.unit(1.08, "feet"),
  16526. name: "Hand",
  16527. image: {
  16528. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16529. }
  16530. },
  16531. foot: {
  16532. height: math.unit(1.32, "feet"),
  16533. name: "Foot",
  16534. image: {
  16535. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16536. }
  16537. },
  16538. were: {
  16539. height: math.unit(20, "feet"),
  16540. weight: math.unit(7800, "lb"),
  16541. name: "Were",
  16542. image: {
  16543. source: "./media/characters/leonardo-lycheborne/were.svg",
  16544. extra: 308 / 294,
  16545. bottom: 0.048
  16546. }
  16547. },
  16548. feral: {
  16549. height: math.unit(7.5, "feet"),
  16550. weight: math.unit(600, "lb"),
  16551. name: "Feral",
  16552. image: {
  16553. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16554. extra: 210 / 186,
  16555. bottom: 0.108
  16556. }
  16557. },
  16558. taur: {
  16559. height: math.unit(11, "feet"),
  16560. weight: math.unit(3300, "lb"),
  16561. name: "Taur",
  16562. image: {
  16563. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16564. extra: 320 / 303,
  16565. bottom: 0.025
  16566. }
  16567. },
  16568. barghest: {
  16569. height: math.unit(11, "feet"),
  16570. weight: math.unit(1300, "lb"),
  16571. name: "Barghest",
  16572. image: {
  16573. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16574. extra: 323 / 302,
  16575. bottom: 0.027
  16576. }
  16577. },
  16578. dick: {
  16579. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16580. name: "Dick",
  16581. image: {
  16582. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16583. }
  16584. },
  16585. dickWere: {
  16586. height: math.unit((20) / 3.8, "feet"),
  16587. name: "Dick (Were)",
  16588. image: {
  16589. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(6 + 1 / 12, "feet"),
  16597. default: true
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Jet" },
  16603. {
  16604. front: {
  16605. height: math.unit(10, "feet"),
  16606. weight: math.unit(350, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/jet/front.svg",
  16610. extra: 2050 / 1980,
  16611. bottom: 0.013
  16612. }
  16613. },
  16614. back: {
  16615. height: math.unit(10, "feet"),
  16616. weight: math.unit(350, "lb"),
  16617. name: "Back",
  16618. image: {
  16619. source: "./media/characters/jet/back.svg",
  16620. extra: 2050 / 1980,
  16621. bottom: 0.013
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Micro",
  16628. height: math.unit(6, "inches")
  16629. },
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(10, "feet"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(100, "feet")
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Tanarath" },
  16643. {
  16644. front: {
  16645. height: math.unit(15, "feet"),
  16646. weight: math.unit(2800, "lb"),
  16647. name: "Front",
  16648. image: {
  16649. source: "./media/characters/tanarath/front.svg",
  16650. extra: 2392 / 2220,
  16651. bottom: 0.03
  16652. }
  16653. },
  16654. back: {
  16655. height: math.unit(15, "feet"),
  16656. weight: math.unit(2800, "lb"),
  16657. name: "Back",
  16658. image: {
  16659. source: "./media/characters/tanarath/back.svg",
  16660. extra: 2392 / 2220,
  16661. bottom: 0.03
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(15, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Patty CattyBatty" },
  16675. {
  16676. front: {
  16677. height: math.unit(7 + 1 / 12, "feet"),
  16678. weight: math.unit(175, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/patty-cattybatty/front.svg",
  16682. extra: 908 / 874,
  16683. bottom: 0.025
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Micro",
  16690. height: math.unit(1, "inch")
  16691. },
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(7 + 1 / 12, "feet")
  16695. },
  16696. {
  16697. name: "Mini Macro",
  16698. height: math.unit(155, "feet")
  16699. },
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(1077, "feet")
  16703. },
  16704. {
  16705. name: "Mega Macro",
  16706. height: math.unit(47650, "feet"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Giga Macro",
  16711. height: math.unit(440, "miles")
  16712. },
  16713. {
  16714. name: "Tera Macro",
  16715. height: math.unit(8700, "miles")
  16716. },
  16717. {
  16718. name: "Planetary Macro",
  16719. height: math.unit(32700, "miles")
  16720. },
  16721. {
  16722. name: "Solar Macro",
  16723. height: math.unit(550000, "miles")
  16724. },
  16725. {
  16726. name: "Celestial Macro",
  16727. height: math.unit(2.5, "AU")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Cappu" },
  16733. {
  16734. front: {
  16735. height: math.unit(4 + 5 / 12, "feet"),
  16736. weight: math.unit(90, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/cappu/front.svg",
  16740. extra: 1247 / 1152,
  16741. bottom: 0.012
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(4 + 5 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Sebi" },
  16755. {
  16756. frontDressed: {
  16757. height: math.unit(70, "cm"),
  16758. weight: math.unit(6, "kg"),
  16759. name: "Front (Dressed)",
  16760. image: {
  16761. source: "./media/characters/sebi/front-dressed.svg",
  16762. extra: 713.5 / 686.5,
  16763. bottom: 0.003
  16764. }
  16765. },
  16766. front: {
  16767. height: math.unit(70, "cm"),
  16768. weight: math.unit(5, "kg"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/sebi/front.svg",
  16772. extra: 713.5 / 686.5,
  16773. bottom: 0.003
  16774. }
  16775. }
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(70, "cm"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Macro",
  16785. height: math.unit(8, "meters")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Typhek" },
  16791. {
  16792. front: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/typhek/front.svg",
  16798. extra: 1948 / 1929,
  16799. bottom: 0.025
  16800. }
  16801. },
  16802. side: {
  16803. height: math.unit(6, "feet"),
  16804. weight: math.unit(150, "lb"),
  16805. name: "Side",
  16806. image: {
  16807. source: "./media/characters/typhek/side.svg",
  16808. extra: 2034 / 2010,
  16809. bottom: 0.003
  16810. }
  16811. },
  16812. back: {
  16813. height: math.unit(6, "feet"),
  16814. weight: math.unit(150, "lb"),
  16815. name: "Back",
  16816. image: {
  16817. source: "./media/characters/typhek/back.svg",
  16818. extra: 2005 / 1978,
  16819. bottom: 0.004
  16820. }
  16821. },
  16822. palm: {
  16823. height: math.unit(1.2, "feet"),
  16824. name: "Palm",
  16825. image: {
  16826. source: "./media/characters/typhek/palm.svg"
  16827. }
  16828. },
  16829. fist: {
  16830. height: math.unit(1.1, "feet"),
  16831. name: "Fist",
  16832. image: {
  16833. source: "./media/characters/typhek/fist.svg"
  16834. }
  16835. },
  16836. foot: {
  16837. height: math.unit(1.57, "feet"),
  16838. name: "Foot",
  16839. image: {
  16840. source: "./media/characters/typhek/foot.svg"
  16841. }
  16842. },
  16843. sole: {
  16844. height: math.unit(2.05, "feet"),
  16845. name: "Sole",
  16846. image: {
  16847. source: "./media/characters/typhek/sole.svg"
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(40, "stories"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Megamacro",
  16859. height: math.unit(1, "mile")
  16860. },
  16861. {
  16862. name: "Gigamacro",
  16863. height: math.unit(4000, "solarradii")
  16864. },
  16865. {
  16866. name: "Universal",
  16867. height: math.unit(1.1, "universes")
  16868. }
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Kassy" },
  16873. {
  16874. side: {
  16875. height: math.unit(5 + 7 / 12, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Side",
  16878. image: {
  16879. source: "./media/characters/kassy/side.svg",
  16880. extra: 1280 / 1225,
  16881. bottom: 0.002
  16882. }
  16883. },
  16884. front: {
  16885. height: math.unit(5 + 7 / 12, "feet"),
  16886. weight: math.unit(150, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/kassy/front.svg",
  16890. extra: 1280 / 1225,
  16891. bottom: 0.025
  16892. }
  16893. },
  16894. back: {
  16895. height: math.unit(5 + 7 / 12, "feet"),
  16896. weight: math.unit(150, "lb"),
  16897. name: "Back",
  16898. image: {
  16899. source: "./media/characters/kassy/back.svg",
  16900. extra: 1280 / 1225,
  16901. bottom: 0.002
  16902. }
  16903. },
  16904. foot: {
  16905. height: math.unit(1.266, "feet"),
  16906. name: "Foot",
  16907. image: {
  16908. source: "./media/characters/kassy/foot.svg"
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(5 + 7 / 12, "feet")
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(137, "feet"),
  16920. default: true
  16921. },
  16922. {
  16923. name: "Megamacro",
  16924. height: math.unit(1, "mile")
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Neil" },
  16930. {
  16931. front: {
  16932. height: math.unit(6 + 1 / 12, "feet"),
  16933. weight: math.unit(200, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/neil/front.svg",
  16937. extra: 1326 / 1250,
  16938. bottom: 0.023
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(6 + 1 / 12, "feet"),
  16946. default: true
  16947. },
  16948. {
  16949. name: "Macro",
  16950. height: math.unit(200, "feet")
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Atticus" },
  16956. {
  16957. front: {
  16958. height: math.unit(5 + 9 / 12, "feet"),
  16959. weight: math.unit(190, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/atticus/front.svg",
  16963. extra: 2934 / 2785,
  16964. bottom: 0.025
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(5 + 9 / 12, "feet"),
  16972. default: true
  16973. },
  16974. {
  16975. name: "Macro",
  16976. height: math.unit(180, "feet")
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Milo" },
  16982. {
  16983. side: {
  16984. height: math.unit(9, "feet"),
  16985. weight: math.unit(650, "lb"),
  16986. name: "Side",
  16987. image: {
  16988. source: "./media/characters/milo/side.svg",
  16989. extra: 2644 / 2310,
  16990. bottom: 0.032
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(9, "feet"),
  16998. default: true
  16999. },
  17000. {
  17001. name: "Macro",
  17002. height: math.unit(300, "feet")
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Ijzer" },
  17008. {
  17009. side: {
  17010. height: math.unit(8, "meters"),
  17011. weight: math.unit(90000, "kg"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/ijzer/side.svg",
  17015. extra: 2756 / 1600,
  17016. bottom: 0.01
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Small",
  17023. height: math.unit(3, "meters")
  17024. },
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(8, "meters"),
  17028. default: true
  17029. },
  17030. {
  17031. name: "Normal+",
  17032. height: math.unit(10, "meters")
  17033. },
  17034. {
  17035. name: "Bigger",
  17036. height: math.unit(24, "meters")
  17037. },
  17038. {
  17039. name: "Huge",
  17040. height: math.unit(80, "meters")
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Luca Cervicum" },
  17046. {
  17047. front: {
  17048. height: math.unit(6 + 2 / 12, "feet"),
  17049. weight: math.unit(153, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/luca-cervicum/front.svg",
  17053. extra: 370 / 327,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. back: {
  17058. height: math.unit(6 + 2 / 12, "feet"),
  17059. weight: math.unit(153, "lb"),
  17060. name: "Back",
  17061. image: {
  17062. source: "./media/characters/luca-cervicum/back.svg",
  17063. extra: 367 / 333,
  17064. bottom: 0.005
  17065. }
  17066. },
  17067. frontGear: {
  17068. height: math.unit(6 + 2 / 12, "feet"),
  17069. weight: math.unit(173, "lb"),
  17070. name: "Front (Gear)",
  17071. image: {
  17072. source: "./media/characters/luca-cervicum/front-gear.svg",
  17073. extra: 377 / 333,
  17074. bottom: 0.006
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Oliver" },
  17088. {
  17089. front: {
  17090. height: math.unit(6 + 1 / 12, "feet"),
  17091. weight: math.unit(304, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/oliver/front.svg",
  17095. extra: 157 / 143,
  17096. bottom: 0.08
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(6 + 1 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Shane" },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 7 / 12, "feet"),
  17113. weight: math.unit(140, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/shane/front.svg",
  17117. extra: 304 / 289,
  17118. bottom: 0.005
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 7 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Shin" },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 9 / 12, "feet"),
  17135. weight: math.unit(178, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/shin/front.svg",
  17139. extra: 159 / 151,
  17140. bottom: 0.015
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(5 + 9 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Xerxes" },
  17154. {
  17155. front: {
  17156. height: math.unit(5 + 10 / 12, "feet"),
  17157. weight: math.unit(168, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/xerxes/front.svg",
  17161. extra: 282 / 260,
  17162. bottom: 0.045
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(5 + 10 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Chaska" },
  17176. {
  17177. front: {
  17178. height: math.unit(6 + 7 / 12, "feet"),
  17179. weight: math.unit(208, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/chaska/front.svg",
  17183. extra: 332 / 319,
  17184. bottom: 0.015
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 7 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Enuk" },
  17198. {
  17199. front: {
  17200. height: math.unit(5 + 8 / 12, "feet"),
  17201. weight: math.unit(208, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/enuk/front.svg",
  17205. extra: 437 / 406,
  17206. bottom: 0.02
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 8 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Bruun" },
  17220. {
  17221. front: {
  17222. height: math.unit(5 + 10 / 12, "feet"),
  17223. weight: math.unit(252, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/bruun/front.svg",
  17227. extra: 197 / 187,
  17228. bottom: 0.012
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(5 + 10 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Alexeev" },
  17242. {
  17243. front: {
  17244. height: math.unit(6 + 10 / 12, "feet"),
  17245. weight: math.unit(255, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/alexeev/front.svg",
  17249. extra: 213 / 200,
  17250. bottom: 0.05
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(6 + 10 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Evelyn" },
  17264. {
  17265. front: {
  17266. height: math.unit(2 + 8 / 12, "feet"),
  17267. weight: math.unit(22, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/evelyn/front.svg",
  17271. extra: 208 / 180
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(2 + 8 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Inca" },
  17285. {
  17286. front: {
  17287. height: math.unit(5 + 9 / 12, "feet"),
  17288. weight: math.unit(139, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/inca/front.svg",
  17292. extra: 294 / 291,
  17293. bottom: 0.03
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(5 + 9 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Magdalene" },
  17307. {
  17308. front: {
  17309. height: math.unit(5 + 1 / 12, "feet"),
  17310. weight: math.unit(84, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/magdalene/front.svg",
  17314. extra: 293 / 273
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(5 + 1 / 12, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Mera" },
  17328. {
  17329. front: {
  17330. height: math.unit(6 + 3 / 12, "feet"),
  17331. weight: math.unit(185, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/mera/front.svg",
  17335. extra: 291 / 277,
  17336. bottom: 0.03
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(6 + 3 / 12, "feet"),
  17344. default: true
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Ceres" },
  17350. {
  17351. front: {
  17352. height: math.unit(6 + 7 / 12, "feet"),
  17353. weight: math.unit(160, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/ceres/front.svg",
  17357. extra: 1023 / 950,
  17358. bottom: 0.027
  17359. }
  17360. },
  17361. back: {
  17362. height: math.unit(6 + 7 / 12, "feet"),
  17363. weight: math.unit(160, "lb"),
  17364. name: "Back",
  17365. image: {
  17366. source: "./media/characters/ceres/back.svg",
  17367. extra: 1023 / 950
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(6 + 7 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Kris" },
  17381. {
  17382. front: {
  17383. height: math.unit(5 + 10 / 12, "feet"),
  17384. weight: math.unit(150, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/kris/front.svg",
  17388. extra: 885 / 803,
  17389. bottom: 0.03
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(5 + 10 / 12, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Taluthus" },
  17403. {
  17404. front: {
  17405. height: math.unit(7, "feet"),
  17406. weight: math.unit(120, "kg"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/taluthus/front.svg",
  17410. extra: 903 / 833,
  17411. bottom: 0.015
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(7, "feet"),
  17419. default: true
  17420. },
  17421. {
  17422. name: "Macro",
  17423. height: math.unit(300, "feet")
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Dawn" },
  17429. {
  17430. front: {
  17431. height: math.unit(5 + 9 / 12, "feet"),
  17432. weight: math.unit(145, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/dawn/front.svg",
  17436. extra: 2094 / 2016,
  17437. bottom: 0.025
  17438. }
  17439. },
  17440. back: {
  17441. height: math.unit(5 + 9 / 12, "feet"),
  17442. weight: math.unit(160, "lb"),
  17443. name: "Back",
  17444. image: {
  17445. source: "./media/characters/dawn/back.svg",
  17446. extra: 2112 / 2080,
  17447. bottom: 0.005
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(6 + 7 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Arador" },
  17461. {
  17462. anthro: {
  17463. height: math.unit(8 + 3 / 12, "feet"),
  17464. weight: math.unit(450, "lb"),
  17465. name: "Anthro",
  17466. image: {
  17467. source: "./media/characters/arador/anthro.svg",
  17468. extra: 1835 / 1718,
  17469. bottom: 0.025
  17470. }
  17471. },
  17472. feral: {
  17473. height: math.unit(4, "feet"),
  17474. weight: math.unit(200, "lb"),
  17475. name: "Feral",
  17476. image: {
  17477. source: "./media/characters/arador/feral.svg",
  17478. extra: 1683 / 1514,
  17479. bottom: 0.07
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(8 + 3 / 12, "feet")
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(82.5, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Dharsi" },
  17497. {
  17498. front: {
  17499. height: math.unit(5 + 10 / 12, "feet"),
  17500. weight: math.unit(125, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/dharsi/front.svg",
  17504. extra: 716 / 630,
  17505. bottom: 0.035
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Nano",
  17512. height: math.unit(100, "nm")
  17513. },
  17514. {
  17515. name: "Micro",
  17516. height: math.unit(2, "inches")
  17517. },
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(5 + 10 / 12, "feet"),
  17521. default: true
  17522. },
  17523. {
  17524. name: "Macro",
  17525. height: math.unit(1000, "feet")
  17526. },
  17527. {
  17528. name: "Megamacro",
  17529. height: math.unit(10, "miles")
  17530. },
  17531. {
  17532. name: "Gigamacro",
  17533. height: math.unit(3000, "miles")
  17534. },
  17535. {
  17536. name: "Teramacro",
  17537. height: math.unit(500000, "miles")
  17538. },
  17539. {
  17540. name: "Teramacro+",
  17541. height: math.unit(30, "galaxies")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Deathy" },
  17547. {
  17548. front: {
  17549. height: math.unit(6, "feet"),
  17550. weight: math.unit(150, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/deathy/front.svg",
  17554. extra: 1552 / 1463,
  17555. bottom: 0.025
  17556. }
  17557. },
  17558. side: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Side",
  17562. image: {
  17563. source: "./media/characters/deathy/side.svg",
  17564. extra: 1604 / 1455,
  17565. bottom: 0.025
  17566. }
  17567. },
  17568. back: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(150, "lb"),
  17571. name: "Back",
  17572. image: {
  17573. source: "./media/characters/deathy/back.svg",
  17574. extra: 1580 / 1463,
  17575. bottom: 0.005
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Micro",
  17582. height: math.unit(5, "millimeters")
  17583. },
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(6 + 5 / 12, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Juniper" },
  17593. {
  17594. front: {
  17595. height: math.unit(16, "feet"),
  17596. weight: math.unit(4000, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/juniper/front.svg",
  17600. bottom: 0.04
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(16, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Hipster" },
  17614. {
  17615. front: {
  17616. height: math.unit(6, "feet"),
  17617. weight: math.unit(150, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/hipster/front.svg",
  17621. extra: 1312 / 1209,
  17622. bottom: 0.025
  17623. }
  17624. },
  17625. back: {
  17626. height: math.unit(6, "feet"),
  17627. weight: math.unit(150, "lb"),
  17628. name: "Back",
  17629. image: {
  17630. source: "./media/characters/hipster/back.svg",
  17631. extra: 1281 / 1196,
  17632. bottom: 0.01
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Micro",
  17639. height: math.unit(1, "mm")
  17640. },
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(4, "inches"),
  17644. default: true
  17645. },
  17646. {
  17647. name: "Macro",
  17648. height: math.unit(500, "feet")
  17649. },
  17650. {
  17651. name: "Megamacro",
  17652. height: math.unit(1000, "miles")
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Tendirmuldr" },
  17658. {
  17659. front: {
  17660. height: math.unit(6, "feet"),
  17661. weight: math.unit(150, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/tendirmuldr/front.svg",
  17665. extra: 1878 / 1772,
  17666. bottom: 0.015
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Megamacro",
  17673. height: math.unit(1500, "miles"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Mort" },
  17680. {
  17681. front: {
  17682. height: math.unit(14, "feet"),
  17683. weight: math.unit(12000, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/mort/front.svg",
  17687. extra: 365 / 318,
  17688. bottom: 0.01
  17689. }
  17690. },
  17691. side: {
  17692. height: math.unit(14, "feet"),
  17693. weight: math.unit(12000, "lb"),
  17694. name: "Side",
  17695. image: {
  17696. source: "./media/characters/mort/side.svg",
  17697. extra: 365 / 318,
  17698. bottom: 0.052
  17699. },
  17700. default: true
  17701. },
  17702. back: {
  17703. height: math.unit(14, "feet"),
  17704. weight: math.unit(12000, "lb"),
  17705. name: "Back",
  17706. image: {
  17707. source: "./media/characters/mort/back.svg",
  17708. extra: 371 / 332,
  17709. bottom: 0.18
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(14, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Lycoa" },
  17723. {
  17724. front: {
  17725. height: math.unit(8, "feet"),
  17726. weight: math.unit(1, "ton"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/lycoa/front.svg",
  17730. extra: 1875 / 1789,
  17731. bottom: 0.022
  17732. }
  17733. },
  17734. back: {
  17735. height: math.unit(8, "feet"),
  17736. weight: math.unit(1, "ton"),
  17737. name: "Back",
  17738. image: {
  17739. source: "./media/characters/lycoa/back.svg",
  17740. extra: 1835 / 1781,
  17741. bottom: 0.03
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(8, "feet"),
  17749. default: true
  17750. },
  17751. {
  17752. name: "Macro",
  17753. height: math.unit(30, "feet")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Naldara" },
  17759. {
  17760. front: {
  17761. height: math.unit(4 + 2 / 12, "feet"),
  17762. weight: math.unit(70, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/naldara/front.svg",
  17766. extra: 841 / 720,
  17767. bottom: 0.04
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(4 + 2 / 12, "feet"),
  17775. default: true
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Briar" },
  17781. {
  17782. front: {
  17783. height: math.unit(13 + 7 / 12, "feet"),
  17784. weight: math.unit(1500, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/briar/front.svg",
  17788. extra: 626 / 596,
  17789. bottom: 0.08
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(13 + 7 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Vanguard" },
  17803. {
  17804. side: {
  17805. height: math.unit(10, "feet"),
  17806. weight: math.unit(500, "lb"),
  17807. name: "Side",
  17808. image: {
  17809. source: "./media/characters/vanguard/side.svg",
  17810. extra: 502 / 425,
  17811. bottom: 0.087
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(10, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Artemis" },
  17825. {
  17826. front: {
  17827. height: math.unit(7.5, "feet"),
  17828. weight: math.unit(2, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/artemis/front.svg",
  17832. extra: 1192 / 1075,
  17833. bottom: 0.07
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(7.5, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Enlarged",
  17845. height: math.unit(12, "feet")
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Kira" },
  17851. {
  17852. front: {
  17853. height: math.unit(5 + 3 / 12, "feet"),
  17854. weight: math.unit(160, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/kira/front.svg",
  17858. extra: 906 / 786,
  17859. bottom: 0.01
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(5 + 3 / 12, "feet"),
  17864. weight: math.unit(160, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/kira/back.svg",
  17868. extra: 882 / 757,
  17869. bottom: 0.005
  17870. }
  17871. },
  17872. frontDressed: {
  17873. height: math.unit(5 + 3 / 12, "feet"),
  17874. weight: math.unit(160, "lb"),
  17875. name: "Front (Dressed)",
  17876. image: {
  17877. source: "./media/characters/kira/front-dressed.svg",
  17878. extra: 906 / 786,
  17879. bottom: 0.01
  17880. }
  17881. },
  17882. beans: {
  17883. height: math.unit(0.92, "feet"),
  17884. name: "Beans",
  17885. image: {
  17886. source: "./media/characters/kira/beans.svg"
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(5 + 3 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Scramble" },
  17900. {
  17901. front: {
  17902. height: math.unit(5 + 4 / 12, "feet"),
  17903. weight: math.unit(145, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/scramble/front.svg",
  17907. extra: 763 / 727,
  17908. bottom: 0.05
  17909. }
  17910. },
  17911. back: {
  17912. height: math.unit(5 + 4 / 12, "feet"),
  17913. weight: math.unit(145, "lb"),
  17914. name: "Back",
  17915. image: {
  17916. source: "./media/characters/scramble/back.svg",
  17917. extra: 826 / 737,
  17918. bottom: 0.002
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(5 + 4 / 12, "feet"),
  17926. default: true
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Biscuit" },
  17932. {
  17933. side: {
  17934. height: math.unit(6 + 2 / 12, "feet"),
  17935. weight: math.unit(190, "lb"),
  17936. name: "Side",
  17937. image: {
  17938. source: "./media/characters/biscuit/side.svg",
  17939. extra: 858 / 791,
  17940. bottom: 0.044
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(6 + 2 / 12, "feet"),
  17948. default: true
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Poffin" },
  17954. {
  17955. front: {
  17956. height: math.unit(5 + 2 / 12, "feet"),
  17957. weight: math.unit(120, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/poffin/front.svg",
  17961. extra: 786 / 680,
  17962. bottom: 0.005
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(5 + 2 / 12, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Dhari" },
  17976. {
  17977. front: {
  17978. height: math.unit(6 + 3 / 12, "feet"),
  17979. weight: math.unit(519, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/dhari/front.svg",
  17983. extra: 1048 / 946,
  17984. bottom: 0.015
  17985. }
  17986. },
  17987. back: {
  17988. height: math.unit(6 + 3 / 12, "feet"),
  17989. weight: math.unit(519, "lb"),
  17990. name: "Back",
  17991. image: {
  17992. source: "./media/characters/dhari/back.svg",
  17993. extra: 1048 / 931,
  17994. bottom: 0.005
  17995. }
  17996. },
  17997. frontDressed: {
  17998. height: math.unit(6 + 3 / 12, "feet"),
  17999. weight: math.unit(519, "lb"),
  18000. name: "Front (Dressed)",
  18001. image: {
  18002. source: "./media/characters/dhari/front-dressed.svg",
  18003. extra: 1713 / 1546,
  18004. bottom: 0.02
  18005. }
  18006. },
  18007. backDressed: {
  18008. height: math.unit(6 + 3 / 12, "feet"),
  18009. weight: math.unit(519, "lb"),
  18010. name: "Back (Dressed)",
  18011. image: {
  18012. source: "./media/characters/dhari/back-dressed.svg",
  18013. extra: 1699 / 1537,
  18014. bottom: 0.01
  18015. }
  18016. },
  18017. maw: {
  18018. height: math.unit(0.95, "feet"),
  18019. name: "Maw",
  18020. image: {
  18021. source: "./media/characters/dhari/maw.svg"
  18022. }
  18023. },
  18024. wereFront: {
  18025. height: math.unit(12 + 8 / 12, "feet"),
  18026. weight: math.unit(4000, "lb"),
  18027. name: "Front (Were)",
  18028. image: {
  18029. source: "./media/characters/dhari/were-front.svg",
  18030. extra: 1065 / 969,
  18031. bottom: 0.015
  18032. }
  18033. },
  18034. wereBack: {
  18035. height: math.unit(12 + 8 / 12, "feet"),
  18036. weight: math.unit(4000, "lb"),
  18037. name: "Back (Were)",
  18038. image: {
  18039. source: "./media/characters/dhari/were-back.svg",
  18040. extra: 1065 / 969,
  18041. bottom: 0.012
  18042. }
  18043. },
  18044. wereMaw: {
  18045. height: math.unit(0.625, "meters"),
  18046. name: "Maw (Were)",
  18047. image: {
  18048. source: "./media/characters/dhari/were-maw.svg"
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(6 + 3 / 12, "feet"),
  18056. default: true
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Rena Dyne" },
  18062. {
  18063. anthro: {
  18064. height: math.unit(5 + 7 / 12, "feet"),
  18065. weight: math.unit(175, "lb"),
  18066. name: "Anthro",
  18067. image: {
  18068. source: "./media/characters/rena-dyne/anthro.svg",
  18069. extra: 1849 / 1785,
  18070. bottom: 0.005
  18071. }
  18072. },
  18073. taur: {
  18074. height: math.unit(15 + 6 / 12, "feet"),
  18075. weight: math.unit(8000, "lb"),
  18076. name: "Taur",
  18077. image: {
  18078. source: "./media/characters/rena-dyne/taur.svg",
  18079. extra: 2315 / 2234,
  18080. bottom: 0.033
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(5 + 7 / 12, "feet"),
  18088. default: true
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Weremeep" },
  18094. {
  18095. front: {
  18096. height: math.unit(8, "feet"),
  18097. weight: math.unit(600, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/weremeep/front.svg",
  18101. extra: 967 / 862,
  18102. bottom: 0.01
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(8, "feet"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Lorg",
  18114. height: math.unit(12, "feet")
  18115. },
  18116. {
  18117. name: "Oh Lawd She Comin'",
  18118. height: math.unit(20, "feet")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Reza" },
  18124. {
  18125. front: {
  18126. height: math.unit(4, "feet"),
  18127. weight: math.unit(90, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/reza/front.svg",
  18131. extra: 1183 / 1111,
  18132. bottom: 0.017
  18133. }
  18134. },
  18135. back: {
  18136. height: math.unit(4, "feet"),
  18137. weight: math.unit(90, "lb"),
  18138. name: "Back",
  18139. image: {
  18140. source: "./media/characters/reza/back.svg",
  18141. extra: 1183 / 1111,
  18142. bottom: 0.01
  18143. }
  18144. },
  18145. drake: {
  18146. height: math.unit(30, "feet"),
  18147. weight: math.unit(246960, "lb"),
  18148. name: "Drake",
  18149. image: {
  18150. source: "./media/characters/reza/drake.svg",
  18151. extra: 2350/2024,
  18152. bottom: 60.7/2403
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(4, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Athea" },
  18166. {
  18167. side: {
  18168. height: math.unit(15, "feet"),
  18169. weight: math.unit(14, "tons"),
  18170. name: "Side",
  18171. image: {
  18172. source: "./media/characters/athea/side.svg",
  18173. extra: 960 / 540,
  18174. bottom: 0.003
  18175. }
  18176. },
  18177. sitting: {
  18178. height: math.unit(6 * 2.85, "feet"),
  18179. weight: math.unit(14, "tons"),
  18180. name: "Sitting",
  18181. image: {
  18182. source: "./media/characters/athea/sitting.svg",
  18183. extra: 621 / 581,
  18184. bottom: 0.075
  18185. }
  18186. },
  18187. maw: {
  18188. height: math.unit(7.59498031496063, "feet"),
  18189. name: "Maw",
  18190. image: {
  18191. source: "./media/characters/athea/maw.svg"
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Lap Cat",
  18198. height: math.unit(2.5, "feet")
  18199. },
  18200. {
  18201. name: "Minimacro",
  18202. height: math.unit(15, "feet"),
  18203. default: true
  18204. },
  18205. {
  18206. name: "Macro",
  18207. height: math.unit(120, "feet")
  18208. },
  18209. {
  18210. name: "Macro+",
  18211. height: math.unit(640, "feet")
  18212. },
  18213. {
  18214. name: "Colossus",
  18215. height: math.unit(2.2, "miles")
  18216. },
  18217. ]
  18218. ))
  18219. characterMakers.push(() => makeCharacter(
  18220. { name: "Seroko" },
  18221. {
  18222. front: {
  18223. height: math.unit(8 + 8 / 12, "feet"),
  18224. weight: math.unit(130, "kg"),
  18225. name: "Front",
  18226. image: {
  18227. source: "./media/characters/seroko/front.svg",
  18228. extra: 1385 / 1280,
  18229. bottom: 0.025
  18230. }
  18231. },
  18232. back: {
  18233. height: math.unit(8 + 8 / 12, "feet"),
  18234. weight: math.unit(130, "kg"),
  18235. name: "Back",
  18236. image: {
  18237. source: "./media/characters/seroko/back.svg",
  18238. extra: 1369 / 1238,
  18239. bottom: 0.018
  18240. }
  18241. },
  18242. frontDressed: {
  18243. height: math.unit(8 + 8 / 12, "feet"),
  18244. weight: math.unit(130, "kg"),
  18245. name: "Front (Dressed)",
  18246. image: {
  18247. source: "./media/characters/seroko/front-dressed.svg",
  18248. extra: 1366 / 1275,
  18249. bottom: 0.03
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(8 + 8 / 12, "feet"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Quatzi" },
  18263. {
  18264. front: {
  18265. height: math.unit(5.5, "feet"),
  18266. weight: math.unit(160, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/quatzi/front.svg",
  18270. extra: 2346 / 2242,
  18271. bottom: 0.015
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(5.5, "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Big",
  18283. height: math.unit(7.7, "feet")
  18284. },
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "Sen" },
  18289. {
  18290. front: {
  18291. height: math.unit(5 + 11 / 12, "feet"),
  18292. weight: math.unit(180, "lb"),
  18293. name: "Front",
  18294. image: {
  18295. source: "./media/characters/sen/front.svg",
  18296. extra: 1321 / 1254,
  18297. bottom: 0.015
  18298. }
  18299. },
  18300. side: {
  18301. height: math.unit(5 + 11 / 12, "feet"),
  18302. weight: math.unit(180, "lb"),
  18303. name: "Side",
  18304. image: {
  18305. source: "./media/characters/sen/side.svg",
  18306. extra: 1321 / 1254,
  18307. bottom: 0.007
  18308. }
  18309. },
  18310. back: {
  18311. height: math.unit(5 + 11 / 12, "feet"),
  18312. weight: math.unit(180, "lb"),
  18313. name: "Back",
  18314. image: {
  18315. source: "./media/characters/sen/back.svg",
  18316. extra: 1321 / 1254
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(5 + 11 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Fruity" },
  18330. {
  18331. front: {
  18332. height: math.unit(166.6, "cm"),
  18333. weight: math.unit(66.6, "kg"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/fruity/front.svg",
  18337. extra: 1510 / 1386,
  18338. bottom: 0.04
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(166.6, "cm"),
  18343. weight: math.unit(66.6, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/fruity/back.svg",
  18347. extra: 1563 / 1435,
  18348. bottom: 0.005
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(166.6, "cm"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Demonic",
  18360. height: math.unit(166.6, "feet")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Zost" },
  18366. {
  18367. side: {
  18368. height: math.unit(10, "feet"),
  18369. weight: math.unit(500, "lb"),
  18370. name: "Side",
  18371. image: {
  18372. source: "./media/characters/zost/side.svg",
  18373. extra: 966 / 880,
  18374. bottom: 0.075
  18375. }
  18376. },
  18377. mawFront: {
  18378. height: math.unit(1.08, "meters"),
  18379. name: "Maw (Front)",
  18380. image: {
  18381. source: "./media/characters/zost/maw-front.svg"
  18382. }
  18383. },
  18384. mawSide: {
  18385. height: math.unit(2.66, "feet"),
  18386. name: "Maw (Side)",
  18387. image: {
  18388. source: "./media/characters/zost/maw-side.svg"
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(10, "feet"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Luci" },
  18402. {
  18403. front: {
  18404. height: math.unit(5 + 4 / 12, "feet"),
  18405. weight: math.unit(120, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/luci/front.svg",
  18409. extra: 1985 / 1884,
  18410. bottom: 0.04
  18411. }
  18412. },
  18413. back: {
  18414. height: math.unit(5 + 4 / 12, "feet"),
  18415. weight: math.unit(120, "lb"),
  18416. name: "Back",
  18417. image: {
  18418. source: "./media/characters/luci/back.svg",
  18419. extra: 1892 / 1791,
  18420. bottom: 0.002
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(5 + 4 / 12, "feet"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "2th" },
  18434. {
  18435. front: {
  18436. height: math.unit(1500, "feet"),
  18437. weight: math.unit(3.8e6, "tons"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/2th/front.svg",
  18441. extra: 3489 / 3350,
  18442. bottom: 0.1
  18443. }
  18444. },
  18445. foot: {
  18446. height: math.unit(461, "feet"),
  18447. name: "Foot",
  18448. image: {
  18449. source: "./media/characters/2th/foot.svg"
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "\"Micro\"",
  18456. height: math.unit(15 + 7 / 12, "feet")
  18457. },
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(1500, "feet"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(5000, "feet")
  18466. },
  18467. {
  18468. name: "Megamacro",
  18469. height: math.unit(15, "miles")
  18470. },
  18471. {
  18472. name: "Gigamacro",
  18473. height: math.unit(4000, "miles")
  18474. },
  18475. {
  18476. name: "Galactic",
  18477. height: math.unit(50, "AU")
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Amethyst" },
  18483. {
  18484. front: {
  18485. height: math.unit(5 + 6 / 12, "feet"),
  18486. weight: math.unit(220, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/amethyst/front.svg",
  18490. extra: 2078 / 2040,
  18491. bottom: 0.045
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(5 + 6 / 12, "feet"),
  18496. weight: math.unit(220, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/amethyst/back.svg",
  18500. extra: 2021 / 1989,
  18501. bottom: 0.02
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(5 + 6 / 12, "feet"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Yumi Akiyama" },
  18515. {
  18516. front: {
  18517. height: math.unit(4 + 11 / 12, "feet"),
  18518. weight: math.unit(120, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/yumi-akiyama/front.svg",
  18522. extra: 1327 / 1235,
  18523. bottom: 0.02
  18524. }
  18525. },
  18526. back: {
  18527. height: math.unit(4 + 11 / 12, "feet"),
  18528. weight: math.unit(120, "lb"),
  18529. name: "Back",
  18530. image: {
  18531. source: "./media/characters/yumi-akiyama/back.svg",
  18532. extra: 1287 / 1245,
  18533. bottom: 0.002
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Galactic",
  18540. height: math.unit(50, "galaxies"),
  18541. default: true
  18542. },
  18543. {
  18544. name: "Universal",
  18545. height: math.unit(100, "universes")
  18546. },
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Rifter Yrmori" },
  18551. {
  18552. front: {
  18553. height: math.unit(8, "feet"),
  18554. weight: math.unit(500, "lb"),
  18555. name: "Front",
  18556. image: {
  18557. source: "./media/characters/rifter-yrmori/front.svg",
  18558. extra: 1180 / 1125,
  18559. bottom: 0.02
  18560. }
  18561. },
  18562. back: {
  18563. height: math.unit(8, "feet"),
  18564. weight: math.unit(500, "lb"),
  18565. name: "Back",
  18566. image: {
  18567. source: "./media/characters/rifter-yrmori/back.svg",
  18568. extra: 1190 / 1145,
  18569. bottom: 0.001
  18570. }
  18571. },
  18572. wings: {
  18573. height: math.unit(7.75, "feet"),
  18574. weight: math.unit(500, "lb"),
  18575. name: "Wings",
  18576. image: {
  18577. source: "./media/characters/rifter-yrmori/wings.svg",
  18578. extra: 1357 / 1285
  18579. }
  18580. },
  18581. maw: {
  18582. height: math.unit(0.8, "feet"),
  18583. name: "Maw",
  18584. image: {
  18585. source: "./media/characters/rifter-yrmori/maw.svg"
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(8, "feet"),
  18593. default: true
  18594. },
  18595. {
  18596. name: "Macro",
  18597. height: math.unit(42, "meters")
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Tahajin" },
  18603. {
  18604. were: {
  18605. height: math.unit(25 + 6 / 12, "feet"),
  18606. weight: math.unit(10000, "lb"),
  18607. name: "Were",
  18608. image: {
  18609. source: "./media/characters/tahajin/were.svg",
  18610. extra: 801 / 770,
  18611. bottom: 0.042
  18612. }
  18613. },
  18614. aquatic: {
  18615. height: math.unit(6 + 4 / 12, "feet"),
  18616. weight: math.unit(160, "lb"),
  18617. name: "Aquatic",
  18618. image: {
  18619. source: "./media/characters/tahajin/aquatic.svg",
  18620. extra: 572 / 542,
  18621. bottom: 0.04
  18622. }
  18623. },
  18624. chow: {
  18625. height: math.unit(8 + 11 / 12, "feet"),
  18626. weight: math.unit(450, "lb"),
  18627. name: "Chow",
  18628. image: {
  18629. source: "./media/characters/tahajin/chow.svg",
  18630. extra: 660 / 640,
  18631. bottom: 0.015
  18632. }
  18633. },
  18634. demiNaga: {
  18635. height: math.unit(6 + 8 / 12, "feet"),
  18636. weight: math.unit(300, "lb"),
  18637. name: "Demi Naga",
  18638. image: {
  18639. source: "./media/characters/tahajin/demi-naga.svg",
  18640. extra: 643 / 615,
  18641. bottom: 0.1
  18642. }
  18643. },
  18644. data: {
  18645. height: math.unit(5, "inches"),
  18646. weight: math.unit(0.1, "lb"),
  18647. name: "Data",
  18648. image: {
  18649. source: "./media/characters/tahajin/data.svg"
  18650. }
  18651. },
  18652. fluu: {
  18653. height: math.unit(5 + 7 / 12, "feet"),
  18654. weight: math.unit(140, "lb"),
  18655. name: "Fluu",
  18656. image: {
  18657. source: "./media/characters/tahajin/fluu.svg",
  18658. extra: 628 / 592,
  18659. bottom: 0.02
  18660. }
  18661. },
  18662. starWarrior: {
  18663. height: math.unit(4 + 5 / 12, "feet"),
  18664. weight: math.unit(50, "lb"),
  18665. name: "Star Warrior",
  18666. image: {
  18667. source: "./media/characters/tahajin/star-warrior.svg"
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(25 + 6 / 12, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Gabira" },
  18681. {
  18682. front: {
  18683. height: math.unit(8, "feet"),
  18684. weight: math.unit(350, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/gabira/front.svg",
  18688. extra: 608 / 580,
  18689. bottom: 0.03
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(8, "feet"),
  18694. weight: math.unit(350, "lb"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/gabira/back.svg",
  18698. extra: 608 / 580,
  18699. bottom: 0.03
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(8, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Sasha Katraine" },
  18713. {
  18714. front: {
  18715. height: math.unit(5 + 3 / 12, "feet"),
  18716. weight: math.unit(137, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/sasha-katraine/front.svg",
  18720. bottom: 0.045
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Micro",
  18727. height: math.unit(5, "inches")
  18728. },
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(5 + 3 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Der" },
  18738. {
  18739. side: {
  18740. height: math.unit(4, "inches"),
  18741. weight: math.unit(200, "grams"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/der/side.svg",
  18745. extra: 719 / 400,
  18746. bottom: 30.6 / 749.9187
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Micro",
  18753. height: math.unit(4, "inches"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Fixerdragon" },
  18760. {
  18761. side: {
  18762. height: math.unit(30, "meters"),
  18763. weight: math.unit(700, "tonnes"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/fixerdragon/side.svg",
  18767. extra: (1293.0514 - 116.03) / 1106.86,
  18768. bottom: 116.03 / 1293.0514
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Planck",
  18775. height: math.unit(1.6e-35, "meters")
  18776. },
  18777. {
  18778. name: "Micro",
  18779. height: math.unit(0.4, "meters")
  18780. },
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(30, "meters"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "Megamacro",
  18788. height: math.unit(1.2, "megameters")
  18789. },
  18790. {
  18791. name: "Teramacro",
  18792. height: math.unit(130, "terameters")
  18793. },
  18794. {
  18795. name: "Yottamacro",
  18796. height: math.unit(6200, "yottameters")
  18797. },
  18798. ]
  18799. ));
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Kite" },
  18802. {
  18803. front: {
  18804. height: math.unit(8, "feet"),
  18805. weight: math.unit(250, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/kite/front.svg",
  18809. extra: 2796 / 2659,
  18810. bottom: 0.002
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(8, "feet"),
  18818. default: true
  18819. },
  18820. {
  18821. name: "Macro",
  18822. height: math.unit(360, "feet")
  18823. },
  18824. {
  18825. name: "Megamacro",
  18826. height: math.unit(1500, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Poojawa Vynar" },
  18832. {
  18833. front: {
  18834. height: math.unit(5 + 10 / 12, "feet"),
  18835. weight: math.unit(150, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/poojawa-vynar/front.svg",
  18839. extra: (1506.1547 - 55) / 1356.6,
  18840. bottom: 55 / 1506.1547
  18841. }
  18842. },
  18843. frontTailless: {
  18844. height: math.unit(5 + 10 / 12, "feet"),
  18845. weight: math.unit(150, "lb"),
  18846. name: "Front (Tailless)",
  18847. image: {
  18848. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18849. extra: (1506.1547 - 55) / 1356.6,
  18850. bottom: 55 / 1506.1547
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(5 + 10 / 12, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Violette" },
  18864. {
  18865. front: {
  18866. height: math.unit(293, "meters"),
  18867. weight: math.unit(70400, "tons"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/violette/front.svg",
  18871. extra: 1227 / 1180,
  18872. bottom: 0.005
  18873. }
  18874. },
  18875. back: {
  18876. height: math.unit(293, "meters"),
  18877. weight: math.unit(70400, "tons"),
  18878. name: "Back",
  18879. image: {
  18880. source: "./media/characters/violette/back.svg",
  18881. extra: 1227 / 1180,
  18882. bottom: 0.005
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(293, "meters"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Alessandra" },
  18896. {
  18897. front: {
  18898. height: math.unit(1050, "feet"),
  18899. weight: math.unit(200000, "tons"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/alessandra/front.svg",
  18903. extra: 960 / 912,
  18904. bottom: 0.06
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(1050, "feet")
  18912. },
  18913. {
  18914. name: "Macro+",
  18915. height: math.unit(900, "meters"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Person", species: "Catdragon" },
  18922. {
  18923. front: {
  18924. height: math.unit(5, "feet"),
  18925. weight: math.unit(187, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/person/front.svg",
  18929. extra: 3087 / 2945,
  18930. bottom: 91 / 3181
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(3, "inches")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(5, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(90, "feet")
  18947. },
  18948. {
  18949. name: "Max Size",
  18950. height: math.unit(280, "feet")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Ty" },
  18956. {
  18957. front: {
  18958. height: math.unit(4.5, "meters"),
  18959. weight: math.unit(3200, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/ty/front.svg",
  18963. extra: 1038 / 960,
  18964. bottom: 31.156 / 1068
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(4.5, "meters"),
  18969. weight: math.unit(3200, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/ty/back.svg",
  18973. extra: 1044 / 966,
  18974. bottom: 7.48 / 1049
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(4.5, "meters"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Rocky" },
  18988. {
  18989. front: {
  18990. height: math.unit(5 + 4 / 12, "feet"),
  18991. weight: math.unit(115, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/rocky/front.svg",
  18995. extra: 1012 / 975,
  18996. bottom: 54 / 1066
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 4 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Ruin" },
  19010. {
  19011. upright: {
  19012. height: math.unit(6, "meters"),
  19013. weight: math.unit(4000, "kg"),
  19014. name: "Upright",
  19015. image: {
  19016. source: "./media/characters/ruin/upright.svg",
  19017. extra: 668 / 661,
  19018. bottom: 42 / 799.8396
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6, "meters"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Robin" },
  19032. {
  19033. front: {
  19034. height: math.unit(5, "feet"),
  19035. weight: math.unit(106, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/robin/front.svg",
  19039. extra: 862 / 799,
  19040. bottom: 42.4 / 914.8856
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(5, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Saian" },
  19054. {
  19055. side: {
  19056. height: math.unit(3, "feet"),
  19057. weight: math.unit(225, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/saian/side.svg",
  19061. extra: 566 / 356,
  19062. bottom: 79.7 / 643
  19063. }
  19064. },
  19065. maw: {
  19066. height: math.unit(2.85, "feet"),
  19067. name: "Maw",
  19068. image: {
  19069. source: "./media/characters/saian/maw.svg"
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(3, "feet"),
  19077. default: true
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Equus Silvermane" },
  19083. {
  19084. side: {
  19085. height: math.unit(8, "feet"),
  19086. weight: math.unit(300, "lb"),
  19087. name: "Side",
  19088. image: {
  19089. source: "./media/characters/equus-silvermane/side.svg",
  19090. extra: 2176 / 2050,
  19091. bottom: 65.7 / 2245
  19092. }
  19093. },
  19094. front: {
  19095. height: math.unit(8, "feet"),
  19096. weight: math.unit(300, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/equus-silvermane/front.svg",
  19100. extra: 4633 / 4400,
  19101. bottom: 71.3 / 4706.915
  19102. }
  19103. },
  19104. sideStepping: {
  19105. height: math.unit(8, "feet"),
  19106. weight: math.unit(300, "lb"),
  19107. name: "Side (Stepping)",
  19108. image: {
  19109. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19110. extra: 1968 / 1860,
  19111. bottom: 16.4 / 1989
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(8, "feet")
  19119. },
  19120. {
  19121. name: "Minimacro",
  19122. height: math.unit(75, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(150, "feet")
  19128. },
  19129. {
  19130. name: "Macro+",
  19131. height: math.unit(1000, "feet")
  19132. },
  19133. {
  19134. name: "Megamacro",
  19135. height: math.unit(1, "mile")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Windar" },
  19141. {
  19142. side: {
  19143. height: math.unit(20, "feet"),
  19144. weight: math.unit(30000, "kg"),
  19145. name: "Side",
  19146. image: {
  19147. source: "./media/characters/windar/side.svg",
  19148. extra: 1491 / 1248,
  19149. bottom: 82.56 / 1568
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(20, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Melody" },
  19163. {
  19164. side: {
  19165. height: math.unit(15.66, "feet"),
  19166. weight: math.unit(150, "lb"),
  19167. name: "Side",
  19168. image: {
  19169. source: "./media/characters/melody/side.svg",
  19170. extra: 1097 / 944,
  19171. bottom: 11.8 / 1109
  19172. }
  19173. },
  19174. sideOutfit: {
  19175. height: math.unit(15.66, "feet"),
  19176. weight: math.unit(150, "lb"),
  19177. name: "Side (Outfit)",
  19178. image: {
  19179. source: "./media/characters/melody/side-outfit.svg",
  19180. extra: 1097 / 944,
  19181. bottom: 11.8 / 1109
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(15.66, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Windera" },
  19195. {
  19196. front: {
  19197. height: math.unit(8, "feet"),
  19198. weight: math.unit(325, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/windera/front.svg",
  19202. extra: 3180 / 2845,
  19203. bottom: 178 / 3365
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(8, "feet"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Sonear" },
  19217. {
  19218. front: {
  19219. height: math.unit(28.75, "feet"),
  19220. weight: math.unit(2000, "kg"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/sonear/front.svg",
  19224. extra: 1041.1 / 964.9,
  19225. bottom: 53.7 / 1096.6
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(28.75, "feet"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Kanara" },
  19239. {
  19240. side: {
  19241. height: math.unit(25.5, "feet"),
  19242. weight: math.unit(23000, "kg"),
  19243. name: "Side",
  19244. image: {
  19245. source: "./media/characters/kanara/side.svg"
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(25.5, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Ereus" },
  19259. {
  19260. side: {
  19261. height: math.unit(10, "feet"),
  19262. weight: math.unit(1000, "kg"),
  19263. name: "Side",
  19264. image: {
  19265. source: "./media/characters/ereus/side.svg",
  19266. extra: 1157 / 959,
  19267. bottom: 153 / 1312.5
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(10, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "E-ter" },
  19281. {
  19282. side: {
  19283. height: math.unit(4.5, "feet"),
  19284. weight: math.unit(500, "lb"),
  19285. name: "Side",
  19286. image: {
  19287. source: "./media/characters/e-ter/side.svg",
  19288. extra: 1550 / 1248,
  19289. bottom: 146 / 1694
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(4.5, "feet"),
  19297. default: true
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Yamie" },
  19303. {
  19304. side: {
  19305. height: math.unit(9.7, "feet"),
  19306. weight: math.unit(4000, "kg"),
  19307. name: "Side",
  19308. image: {
  19309. source: "./media/characters/yamie/side.svg"
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(9.7, "feet"),
  19317. default: true
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Anders" },
  19323. {
  19324. front: {
  19325. height: math.unit(50, "feet"),
  19326. weight: math.unit(50000, "kg"),
  19327. name: "Front",
  19328. image: {
  19329. source: "./media/characters/anders/front.svg",
  19330. extra: 570 / 539,
  19331. bottom: 14.7 / 586.7
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Large",
  19338. height: math.unit(50, "feet")
  19339. },
  19340. {
  19341. name: "Macro",
  19342. height: math.unit(2000, "feet"),
  19343. default: true
  19344. },
  19345. {
  19346. name: "Megamacro",
  19347. height: math.unit(12, "miles")
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Reban" },
  19353. {
  19354. front: {
  19355. height: math.unit(7 + 2 / 12, "feet"),
  19356. weight: math.unit(300, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/reban/front.svg",
  19360. extra: 516 / 487,
  19361. bottom: 42.82 / 558.356
  19362. }
  19363. },
  19364. dick: {
  19365. height: math.unit(7 / 5, "feet"),
  19366. name: "Dick",
  19367. image: {
  19368. source: "./media/characters/reban/dick.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Natural Height",
  19375. height: math.unit(7 + 2 / 12, "feet")
  19376. },
  19377. {
  19378. name: "Macro",
  19379. height: math.unit(500, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Canon Height",
  19384. height: math.unit(50, "AU")
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Terrance Keayes" },
  19390. {
  19391. front: {
  19392. height: math.unit(6, "feet"),
  19393. weight: math.unit(150, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/terrance-keayes/front.svg",
  19397. extra: 1.005,
  19398. bottom: 151 / 1615
  19399. }
  19400. },
  19401. side: {
  19402. height: math.unit(6, "feet"),
  19403. weight: math.unit(150, "lb"),
  19404. name: "Side",
  19405. image: {
  19406. source: "./media/characters/terrance-keayes/side.svg",
  19407. extra: 1.005,
  19408. bottom: 129.4 / 1544
  19409. }
  19410. },
  19411. back: {
  19412. height: math.unit(6, "feet"),
  19413. weight: math.unit(150, "lb"),
  19414. name: "Back",
  19415. image: {
  19416. source: "./media/characters/terrance-keayes/back.svg",
  19417. extra: 1.005,
  19418. bottom: 58.4 / 1557.3
  19419. }
  19420. },
  19421. dick: {
  19422. height: math.unit(6 * 0.208, "feet"),
  19423. name: "Dick",
  19424. image: {
  19425. source: "./media/characters/terrance-keayes/dick.svg"
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Canon Height",
  19432. height: math.unit(35, "miles"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Ofelia" },
  19439. {
  19440. front: {
  19441. height: math.unit(6, "feet"),
  19442. weight: math.unit(150, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/ofelia/front.svg",
  19446. extra: 546 / 541,
  19447. bottom: 39 / 583
  19448. }
  19449. },
  19450. back: {
  19451. height: math.unit(6, "feet"),
  19452. weight: math.unit(150, "lb"),
  19453. name: "Back",
  19454. image: {
  19455. source: "./media/characters/ofelia/back.svg",
  19456. extra: 564 / 559.5,
  19457. bottom: 8.69 / 573.02
  19458. }
  19459. },
  19460. maw: {
  19461. height: math.unit(1, "feet"),
  19462. name: "Maw",
  19463. image: {
  19464. source: "./media/characters/ofelia/maw.svg"
  19465. }
  19466. },
  19467. foot: {
  19468. height: math.unit(1.949, "feet"),
  19469. name: "Foot",
  19470. image: {
  19471. source: "./media/characters/ofelia/foot.svg"
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Canon Height",
  19478. height: math.unit(2000, "miles"),
  19479. default: true
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Samuel" },
  19485. {
  19486. front: {
  19487. height: math.unit(6, "feet"),
  19488. weight: math.unit(150, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/samuel/front.svg",
  19492. extra: 265 / 258,
  19493. bottom: 2 / 266.1566
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Macro",
  19500. height: math.unit(100, "feet"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Full Size",
  19505. height: math.unit(1000, "miles")
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Beishir Kiel" },
  19511. {
  19512. front: {
  19513. height: math.unit(6, "feet"),
  19514. weight: math.unit(300, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/beishir-kiel/front.svg",
  19518. extra: 569 / 547,
  19519. bottom: 41.9 / 609
  19520. }
  19521. },
  19522. maw: {
  19523. height: math.unit(6 * 0.202, "feet"),
  19524. name: "Maw",
  19525. image: {
  19526. source: "./media/characters/beishir-kiel/maw.svg"
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(300, "feet"),
  19534. default: true
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Logan Grey" },
  19540. {
  19541. front: {
  19542. height: math.unit(5 + 8 / 12, "feet"),
  19543. weight: math.unit(120, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/logan-grey/front.svg",
  19547. extra: 2539 / 2393,
  19548. bottom: 97.6 / 2636.37
  19549. }
  19550. },
  19551. frontAlt: {
  19552. height: math.unit(5 + 8 / 12, "feet"),
  19553. weight: math.unit(120, "lb"),
  19554. name: "Front (Alt)",
  19555. image: {
  19556. source: "./media/characters/logan-grey/front-alt.svg",
  19557. extra: 958 / 893,
  19558. bottom: 15 / 970.768
  19559. }
  19560. },
  19561. back: {
  19562. height: math.unit(5 + 8 / 12, "feet"),
  19563. weight: math.unit(120, "lb"),
  19564. name: "Back",
  19565. image: {
  19566. source: "./media/characters/logan-grey/back.svg",
  19567. extra: 958 / 893,
  19568. bottom: 2.1881 / 970.9788
  19569. }
  19570. },
  19571. dick: {
  19572. height: math.unit(1.437, "feet"),
  19573. name: "Dick",
  19574. image: {
  19575. source: "./media/characters/logan-grey/dick.svg"
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(5 + 8 / 12, "feet")
  19583. },
  19584. {
  19585. name: "The 500 Foot Femboy",
  19586. height: math.unit(500, "feet"),
  19587. default: true
  19588. },
  19589. {
  19590. name: "Megmacro",
  19591. height: math.unit(20, "miles")
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Draganta" },
  19597. {
  19598. front: {
  19599. height: math.unit(8 + 2 / 12, "feet"),
  19600. weight: math.unit(275, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/draganta/front.svg",
  19604. extra: 1177 / 1135,
  19605. bottom: 33.46 / 1212.1
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(8 + 6 / 12, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(150, "feet")
  19618. },
  19619. {
  19620. name: "Megamacro",
  19621. height: math.unit(1000, "miles")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Voski", species: "Corvid" },
  19627. {
  19628. front: {
  19629. height: math.unit(1.72, "m"),
  19630. weight: math.unit(80, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/voski/front.svg",
  19634. extra: 2076.22 / 2022.4,
  19635. bottom: 102.7 / 2177.3866
  19636. }
  19637. },
  19638. frontNsfw: {
  19639. height: math.unit(1.72, "m"),
  19640. weight: math.unit(80, "lb"),
  19641. name: "Front (NSFW)",
  19642. image: {
  19643. source: "./media/characters/voski/front-nsfw.svg",
  19644. extra: 2076.22 / 2022.4,
  19645. bottom: 102.7 / 2177.3866
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(1.72, "m"),
  19650. weight: math.unit(80, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/voski/back.svg",
  19654. extra: 2104 / 2051,
  19655. bottom: 10.45 / 2113.63
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(1.72, "m")
  19663. },
  19664. {
  19665. name: "Macro",
  19666. height: math.unit(55, "m"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Macro+",
  19671. height: math.unit(300, "m")
  19672. },
  19673. {
  19674. name: "Macro++",
  19675. height: math.unit(700, "m")
  19676. },
  19677. {
  19678. name: "Macro+++",
  19679. height: math.unit(4500, "m")
  19680. },
  19681. {
  19682. name: "Macro++++",
  19683. height: math.unit(45, "km")
  19684. },
  19685. {
  19686. name: "Macro+++++",
  19687. height: math.unit(1220, "km")
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Icowom Lee" },
  19693. {
  19694. front: {
  19695. height: math.unit(2.3, "m"),
  19696. weight: math.unit(304, "kg"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/icowom-lee/front.svg",
  19700. extra: 3076 / 2933,
  19701. bottom: 51.4 / 3125.1889
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(2.3, "meters"),
  19709. default: true
  19710. },
  19711. {
  19712. name: "Macro",
  19713. height: math.unit(94, "meters"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Shock Diamond", species: "Aeromorphic Synthetic Pharaoh Hound" },
  19720. {
  19721. front: {
  19722. height: math.unit(22, "meters"),
  19723. weight: math.unit(21000, "kg"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/shock-diamond/front.svg",
  19727. extra: 2204 / 2053,
  19728. bottom: 65 / 2239.47
  19729. }
  19730. },
  19731. frontNude: {
  19732. height: math.unit(22, "meters"),
  19733. weight: math.unit(21000, "kg"),
  19734. name: "Front (Nude)",
  19735. image: {
  19736. source: "./media/characters/shock-diamond/front-nude.svg",
  19737. extra: 2514 / 2285,
  19738. bottom: 13 / 2527.56
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(3, "meters")
  19746. },
  19747. {
  19748. name: "Macro",
  19749. height: math.unit(22, "meters"),
  19750. default: true
  19751. },
  19752. ]
  19753. ))
  19754. characterMakers.push(() => makeCharacter(
  19755. { name: "Rory" },
  19756. {
  19757. front: {
  19758. height: math.unit(5 + 4 / 12, "feet"),
  19759. weight: math.unit(120, "lb"),
  19760. name: "Front",
  19761. image: {
  19762. source: "./media/characters/rory/front.svg",
  19763. extra: 589 / 556,
  19764. bottom: 45.7 / 635.76
  19765. }
  19766. },
  19767. frontNude: {
  19768. height: math.unit(5 + 4 / 12, "feet"),
  19769. weight: math.unit(120, "lb"),
  19770. name: "Front (Nude)",
  19771. image: {
  19772. source: "./media/characters/rory/front-nude.svg",
  19773. extra: 589 / 556,
  19774. bottom: 45.7 / 635.76
  19775. }
  19776. },
  19777. side: {
  19778. height: math.unit(5 + 4 / 12, "feet"),
  19779. weight: math.unit(120, "lb"),
  19780. name: "Side",
  19781. image: {
  19782. source: "./media/characters/rory/side.svg",
  19783. extra: 597 / 564,
  19784. bottom: 55 / 653
  19785. }
  19786. },
  19787. back: {
  19788. height: math.unit(5 + 4 / 12, "feet"),
  19789. weight: math.unit(120, "lb"),
  19790. name: "Back",
  19791. image: {
  19792. source: "./media/characters/rory/back.svg",
  19793. extra: 620 / 585,
  19794. bottom: 8.86 / 630.43
  19795. }
  19796. },
  19797. dick: {
  19798. height: math.unit(0.86, "feet"),
  19799. name: "Dick",
  19800. image: {
  19801. source: "./media/characters/rory/dick.svg"
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(5 + 4 / 12, "feet"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(100, "feet")
  19814. },
  19815. {
  19816. name: "Macro+",
  19817. height: math.unit(140, "feet")
  19818. },
  19819. {
  19820. name: "Macro++",
  19821. height: math.unit(300, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Sprisk" },
  19827. {
  19828. front: {
  19829. height: math.unit(5 + 9 / 12, "feet"),
  19830. weight: math.unit(190, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/sprisk/front.svg",
  19834. extra: 1225 / 1180,
  19835. bottom: 42.7 / 1266.4
  19836. }
  19837. },
  19838. frontNsfw: {
  19839. height: math.unit(5 + 9 / 12, "feet"),
  19840. weight: math.unit(190, "lb"),
  19841. name: "Front (NSFW)",
  19842. image: {
  19843. source: "./media/characters/sprisk/front-nsfw.svg",
  19844. extra: 1225 / 1180,
  19845. bottom: 42.7 / 1266.4
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(5 + 9 / 12, "feet"),
  19850. weight: math.unit(190, "lb"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/sprisk/back.svg",
  19854. extra: 1247 / 1200,
  19855. bottom: 5.6 / 1253.04
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Tiny",
  19862. height: math.unit(2, "inches")
  19863. },
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(5 + 9 / 12, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Mini Macro",
  19871. height: math.unit(18, "feet")
  19872. },
  19873. {
  19874. name: "Macro",
  19875. height: math.unit(100, "feet")
  19876. },
  19877. {
  19878. name: "MACRO",
  19879. height: math.unit(50, "miles")
  19880. },
  19881. {
  19882. name: "M A C R O",
  19883. height: math.unit(300, "miles")
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Bunsen" },
  19889. {
  19890. side: {
  19891. height: math.unit(15.6, "meters"),
  19892. weight: math.unit(700000, "kg"),
  19893. name: "Side",
  19894. image: {
  19895. source: "./media/characters/bunsen/side.svg",
  19896. extra: 1644 / 358
  19897. }
  19898. },
  19899. foot: {
  19900. height: math.unit(1.611 * 1644 / 358, "meter"),
  19901. name: "Foot",
  19902. image: {
  19903. source: "./media/characters/bunsen/foot.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Small",
  19910. height: math.unit(10, "feet")
  19911. },
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(15.6, "meters"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Sesh" },
  19921. {
  19922. front: {
  19923. height: math.unit(4 + 11 / 12, "feet"),
  19924. weight: math.unit(140, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/sesh/front.svg",
  19928. extra: 3420 / 3231,
  19929. bottom: 72 / 3949.5
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(4 + 11 / 12, "feet")
  19937. },
  19938. {
  19939. name: "Grown",
  19940. height: math.unit(15, "feet"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(1500, "feet")
  19946. },
  19947. {
  19948. name: "Megamacro",
  19949. height: math.unit(30, "miles")
  19950. },
  19951. {
  19952. name: "Continental",
  19953. height: math.unit(3000, "miles")
  19954. },
  19955. {
  19956. name: "Gravity Mass",
  19957. height: math.unit(300000, "miles")
  19958. },
  19959. {
  19960. name: "Planet Buster",
  19961. height: math.unit(30000000, "miles")
  19962. },
  19963. {
  19964. name: "Big",
  19965. height: math.unit(3000000000, "miles")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Pepper" },
  19971. {
  19972. front: {
  19973. height: math.unit(9, "feet"),
  19974. weight: math.unit(350, "lb"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/pepper/front.svg",
  19978. extra: 1448/1312,
  19979. bottom: 9.4/1457.88
  19980. }
  19981. },
  19982. back: {
  19983. height: math.unit(9, "feet"),
  19984. weight: math.unit(350, "lb"),
  19985. name: "Back",
  19986. image: {
  19987. source: "./media/characters/pepper/back.svg",
  19988. extra: 1423/1300,
  19989. bottom: 4.6/1429
  19990. }
  19991. },
  19992. maw: {
  19993. height: math.unit(0.932, "feet"),
  19994. name: "Maw",
  19995. image: {
  19996. source: "./media/characters/pepper/maw.svg"
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(9, "feet"),
  20004. default: true
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Maelstrom" },
  20010. {
  20011. front: {
  20012. height: math.unit(6, "feet"),
  20013. weight: math.unit(150, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/maelstrom/front.svg",
  20017. extra: 2100/1883,
  20018. bottom: 94/2196.7
  20019. }
  20020. },
  20021. },
  20022. [
  20023. {
  20024. name: "Less Kaiju",
  20025. height: math.unit(200, "feet")
  20026. },
  20027. {
  20028. name: "Kaiju",
  20029. height: math.unit(400, "feet"),
  20030. default: true
  20031. },
  20032. {
  20033. name: "Kaiju-er",
  20034. height: math.unit(600, "feet")
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Lexir" },
  20040. {
  20041. front: {
  20042. height: math.unit(6 + 5/12, "feet"),
  20043. weight: math.unit(180, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/lexir/front.svg",
  20047. extra: 180/172,
  20048. bottom: 12/192
  20049. }
  20050. },
  20051. back: {
  20052. height: math.unit(6 + 5/12, "feet"),
  20053. weight: math.unit(180, "lb"),
  20054. name: "Back",
  20055. image: {
  20056. source: "./media/characters/lexir/back.svg",
  20057. extra: 183.84/175.5,
  20058. bottom: 3.1/187
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Very Smal",
  20065. height: math.unit(1, "nm")
  20066. },
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(6 + 5/12, "feet"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Macro",
  20074. height: math.unit(1, "mile")
  20075. },
  20076. {
  20077. name: "Megamacro",
  20078. height: math.unit(50, "miles")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Maksio" },
  20084. {
  20085. front: {
  20086. height: math.unit(1.5, "meters"),
  20087. weight: math.unit(100, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/maksio/front.svg",
  20091. extra: 1549/1531,
  20092. bottom: 123.7/1674.5429
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(1.5, "meters"),
  20097. weight: math.unit(100, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/maksio/back.svg",
  20101. extra: 1541/1509,
  20102. bottom: 97/1639
  20103. }
  20104. },
  20105. hand: {
  20106. height: math.unit(0.621, "feet"),
  20107. name: "Hand",
  20108. image: {
  20109. source: "./media/characters/maksio/hand.svg"
  20110. }
  20111. },
  20112. foot: {
  20113. height: math.unit(1.611, "feet"),
  20114. name: "Foot",
  20115. image: {
  20116. source: "./media/characters/maksio/foot.svg"
  20117. }
  20118. },
  20119. },
  20120. [
  20121. {
  20122. name: "Shrunken",
  20123. height: math.unit(10, "cm")
  20124. },
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(150, "cm"),
  20128. default: true
  20129. },
  20130. ]
  20131. ))
  20132. characterMakers.push(() => makeCharacter(
  20133. { name: "Erza Bear" },
  20134. {
  20135. front: {
  20136. height: math.unit(100, "feet"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/erza-bear/front.svg",
  20140. extra: 2449/2390,
  20141. bottom: 46/2494
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(100, "feet"),
  20146. name: "Back",
  20147. image: {
  20148. source: "./media/characters/erza-bear/back.svg",
  20149. extra: 2489/2430,
  20150. bottom: 85.4/2480
  20151. }
  20152. },
  20153. tail: {
  20154. height: math.unit(42, "feet"),
  20155. name: "Tail",
  20156. image: {
  20157. source: "./media/characters/erza-bear/tail.svg"
  20158. }
  20159. },
  20160. tongue: {
  20161. height: math.unit(8, "feet"),
  20162. name: "Tongue",
  20163. image: {
  20164. source: "./media/characters/erza-bear/tongue.svg"
  20165. }
  20166. },
  20167. dick: {
  20168. height: math.unit(10.5, "feet"),
  20169. name: "Dick",
  20170. image: {
  20171. source: "./media/characters/erza-bear/dick.svg"
  20172. }
  20173. },
  20174. dickVertical: {
  20175. height: math.unit(16.9, "feet"),
  20176. name: "Dick (Vertical)",
  20177. image: {
  20178. source: "./media/characters/erza-bear/dick-vertical.svg"
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(100, "feet"),
  20186. default: true
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Violet Flor", species: "Skunk" },
  20192. {
  20193. front: {
  20194. height: math.unit(172, "cm"),
  20195. weight: math.unit(73, "kg"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/violet-flor/front.svg",
  20199. extra: 1530/1442,
  20200. bottom: 61.9/1588.8
  20201. }
  20202. },
  20203. back: {
  20204. height: math.unit(180, "cm"),
  20205. weight: math.unit(73, "kg"),
  20206. name: "Back",
  20207. image: {
  20208. source: "./media/characters/violet-flor/back.svg",
  20209. extra: 1692/1630,
  20210. bottom: 20/1712
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(172, "cm"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Lynn Rhea", species: "Shark" },
  20224. {
  20225. front: {
  20226. height: math.unit(6, "feet"),
  20227. weight: math.unit(220, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/lynn-rhea/front.svg",
  20231. extra: 310/273
  20232. }
  20233. },
  20234. back: {
  20235. height: math.unit(6, "feet"),
  20236. weight: math.unit(220, "lb"),
  20237. name: "Back",
  20238. image: {
  20239. source: "./media/characters/lynn-rhea/back.svg",
  20240. extra: 310/273
  20241. }
  20242. },
  20243. dicks: {
  20244. height: math.unit(0.9, "feet"),
  20245. name: "Dicks",
  20246. image: {
  20247. source: "./media/characters/lynn-rhea/dicks.svg"
  20248. }
  20249. },
  20250. slit: {
  20251. height: math.unit(0.4, "feet"),
  20252. name: "Slit",
  20253. image: {
  20254. source: "./media/characters/lynn-rhea/slit.svg"
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Micro",
  20261. height: math.unit(1, "inch")
  20262. },
  20263. {
  20264. name: "Macro",
  20265. height: math.unit(60, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Megamacro",
  20270. height: math.unit(2, "miles")
  20271. },
  20272. {
  20273. name: "Gigamacro",
  20274. height: math.unit(3, "earths")
  20275. },
  20276. {
  20277. name: "Galactic",
  20278. height: math.unit(0.8, "galaxies")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Valathos" },
  20284. {
  20285. front: {
  20286. height: math.unit(1600, "feet"),
  20287. weight: math.unit(85758785169, "kg"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/valathos/front.svg",
  20291. extra: 1451/1339
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(1600, "feet"),
  20299. default: true
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Azula" },
  20305. {
  20306. front: {
  20307. height: math.unit(7 + 5/12, "feet"),
  20308. weight: math.unit(300, "lb"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/azula/front.svg",
  20312. extra: 3208/2880,
  20313. bottom: 80.2/3277
  20314. }
  20315. },
  20316. back: {
  20317. height: math.unit(7 + 5/12, "feet"),
  20318. weight: math.unit(300, "lb"),
  20319. name: "Back",
  20320. image: {
  20321. source: "./media/characters/azula/back.svg",
  20322. extra: 3169/2822,
  20323. bottom: 150.6/3321
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(7 + 5/12, "feet"),
  20331. default: true
  20332. },
  20333. {
  20334. name: "Big",
  20335. height: math.unit(20, "feet")
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Rupert" },
  20341. {
  20342. front: {
  20343. height: math.unit(5 + 1/12, "feet"),
  20344. weight: math.unit(110, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/rupert/front.svg",
  20348. extra: 1549/1495,
  20349. bottom: 54.2/1604.4
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(5 + 1/12, "feet"),
  20357. default: true
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Sheera Castellar" },
  20363. {
  20364. front: {
  20365. height: math.unit(8 + 4/12, "feet"),
  20366. weight: math.unit(350, "lb"),
  20367. name: "Front",
  20368. image: {
  20369. source: "./media/characters/sheera-castellar/front.svg",
  20370. extra: 1957/1894,
  20371. bottom: 26.97/1975.017
  20372. }
  20373. },
  20374. side: {
  20375. height: math.unit(8 + 4/12, "feet"),
  20376. weight: math.unit(350, "lb"),
  20377. name: "Side",
  20378. image: {
  20379. source: "./media/characters/sheera-castellar/side.svg",
  20380. extra: 1957/1894
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(8 + 4/12, "feet"),
  20385. weight: math.unit(350, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/sheera-castellar/back.svg",
  20389. extra: 1957/1894
  20390. }
  20391. },
  20392. angled: {
  20393. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20394. weight: math.unit(350, "lb"),
  20395. name: "Angled",
  20396. image: {
  20397. source: "./media/characters/sheera-castellar/angled.svg",
  20398. extra: 1807/1707,
  20399. bottom: 68/1875
  20400. }
  20401. },
  20402. genitals: {
  20403. height: math.unit(2.2, "feet"),
  20404. name: "Genitals",
  20405. image: {
  20406. source: "./media/characters/sheera-castellar/genitals.svg"
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(8 + 4/12, "feet")
  20414. },
  20415. {
  20416. name: "Macro",
  20417. height: math.unit(150, "feet"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Macro+",
  20422. height: math.unit(800, "feet")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Jaipur", species: "Black Panther" },
  20428. {
  20429. front: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(150, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/jaipur/front.svg",
  20435. extra: 3860/3731,
  20436. bottom: 287/4140
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(150, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/jaipur/back.svg",
  20445. extra: 4060/3930,
  20446. bottom: 151/4200
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(1.85, "meters"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Macro",
  20458. height: math.unit(150, "meters")
  20459. },
  20460. {
  20461. name: "Macro+",
  20462. height: math.unit(0.5, "miles")
  20463. },
  20464. {
  20465. name: "Macro++",
  20466. height: math.unit(2.5, "miles")
  20467. },
  20468. {
  20469. name: "Macro+++",
  20470. height: math.unit(12, "miles")
  20471. },
  20472. {
  20473. name: "Macro++++",
  20474. height: math.unit(120, "miles")
  20475. },
  20476. {
  20477. name: "Macro+++++",
  20478. height: math.unit(1200, "miles")
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Sheila (Wolf)" },
  20484. {
  20485. front: {
  20486. height: math.unit(6, "feet"),
  20487. weight: math.unit(150, "lb"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/sheila-wolf/front.svg",
  20491. extra: 1931/1808,
  20492. bottom: 29.5/1960
  20493. }
  20494. },
  20495. dick: {
  20496. height: math.unit(1.464, "feet"),
  20497. name: "Dick",
  20498. image: {
  20499. source: "./media/characters/sheila-wolf/dick.svg"
  20500. }
  20501. },
  20502. muzzle: {
  20503. height: math.unit(0.513, "feet"),
  20504. name: "Muzzle",
  20505. image: {
  20506. source: "./media/characters/sheila-wolf/muzzle.svg"
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Macro",
  20513. height: math.unit(70, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Almor", species: "Dragon" },
  20520. {
  20521. front: {
  20522. height: math.unit(32, "meters"),
  20523. weight: math.unit(300000, "kg"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/almor/front.svg",
  20527. extra: 1408/1322,
  20528. bottom: 94.6/1506.5
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Macro",
  20535. height: math.unit(32, "meters"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Silver" },
  20542. {
  20543. front: {
  20544. height: math.unit(7, "feet"),
  20545. weight: math.unit(200, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/silver/front.svg",
  20549. extra: 472.1/450.5,
  20550. bottom: 26.5/499.424
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(7, "feet"),
  20558. default: true
  20559. },
  20560. {
  20561. name: "Macro",
  20562. height: math.unit(800, "feet")
  20563. },
  20564. {
  20565. name: "Megamacro",
  20566. height: math.unit(250, "miles")
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Pliskin" },
  20572. {
  20573. front: {
  20574. height: math.unit(6, "feet"),
  20575. weight: math.unit(150, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/pliskin/front.svg",
  20579. extra: 1469/1359,
  20580. bottom: 70/1540
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Micro",
  20587. height: math.unit(3, "inches")
  20588. },
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(5 + 11/12, "feet"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(120, "feet")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Sammy" },
  20602. {
  20603. front: {
  20604. height: math.unit(6, "feet"),
  20605. weight: math.unit(150, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/sammy/front.svg",
  20609. extra: 1193/1089,
  20610. bottom: 30.5/1226
  20611. }
  20612. },
  20613. },
  20614. [
  20615. {
  20616. name: "Macro",
  20617. height: math.unit(1700, "feet"),
  20618. default: true
  20619. },
  20620. {
  20621. name: "Examacro",
  20622. height: math.unit(2.5e9, "lightyears")
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Kuru", species: "Umbra" },
  20628. {
  20629. front: {
  20630. height: math.unit(21, "meters"),
  20631. weight: math.unit(12, "tonnes"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/kuru/front.svg",
  20635. extra: 4301/3785,
  20636. bottom: 371.3/4691
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(21, "meters"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Rakka", species: "Umbra" },
  20650. {
  20651. front: {
  20652. height: math.unit(23, "meters"),
  20653. weight: math.unit(12.2, "tonnes"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/rakka/front.svg",
  20657. extra: 4670/4169,
  20658. bottom: 301/4968.7
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(23, "meters"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Rhys (Feline)" },
  20672. {
  20673. front: {
  20674. height: math.unit(6, "feet"),
  20675. weight: math.unit(150, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/rhys-feline/front.svg",
  20679. extra: 2488/2308,
  20680. bottom: 35.67/2519.19
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Really Small",
  20687. height: math.unit(1, "nm")
  20688. },
  20689. {
  20690. name: "Micro",
  20691. height: math.unit(4, "inches")
  20692. },
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(4 + 10/12, "feet"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Macro",
  20700. height: math.unit(100, "feet")
  20701. },
  20702. {
  20703. name: "Megamacto",
  20704. height: math.unit(50, "miles")
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Alydar", species: "Raven/Snow Leopard" },
  20710. {
  20711. side: {
  20712. height: math.unit(30, "feet"),
  20713. weight: math.unit(35000, "kg"),
  20714. name: "Side",
  20715. image: {
  20716. source: "./media/characters/alydar/side.svg",
  20717. extra: 234/222,
  20718. bottom: 6.5/241
  20719. }
  20720. },
  20721. front: {
  20722. height: math.unit(30, "feet"),
  20723. weight: math.unit(35000, "kg"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/alydar/front.svg",
  20727. extra: 223.37/210.2,
  20728. bottom: 22.3/246.76
  20729. }
  20730. },
  20731. top: {
  20732. height: math.unit(64.54, "feet"),
  20733. weight: math.unit(35000, "kg"),
  20734. name: "Top",
  20735. image: {
  20736. source: "./media/characters/alydar/top.svg"
  20737. }
  20738. },
  20739. anthro: {
  20740. height: math.unit(30, "feet"),
  20741. weight: math.unit(9000, "kg"),
  20742. name: "Anthro",
  20743. image: {
  20744. source: "./media/characters/alydar/anthro.svg",
  20745. extra: 432/421,
  20746. bottom: 7.18/440
  20747. }
  20748. },
  20749. maw: {
  20750. height: math.unit(11.693, "feet"),
  20751. name: "Maw",
  20752. image: {
  20753. source: "./media/characters/alydar/maw.svg"
  20754. }
  20755. },
  20756. head: {
  20757. height: math.unit(11.693, "feet"),
  20758. name: "Head",
  20759. image: {
  20760. source: "./media/characters/alydar/head.svg"
  20761. }
  20762. },
  20763. headAlt: {
  20764. height: math.unit(12.861, "feet"),
  20765. name: "Head (Alt)",
  20766. image: {
  20767. source: "./media/characters/alydar/head-alt.svg"
  20768. }
  20769. },
  20770. wing: {
  20771. height: math.unit(20.712, "feet"),
  20772. name: "Wing",
  20773. image: {
  20774. source: "./media/characters/alydar/wing.svg"
  20775. }
  20776. },
  20777. wingFeather: {
  20778. height: math.unit(9.662, "feet"),
  20779. name: "Wing Feather",
  20780. image: {
  20781. source: "./media/characters/alydar/wing-feather.svg"
  20782. }
  20783. },
  20784. countourFeather: {
  20785. height: math.unit(4.154, "feet"),
  20786. name: "Contour Feather",
  20787. image: {
  20788. source: "./media/characters/alydar/contour-feather.svg"
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Diplomatic",
  20795. height: math.unit(13, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Small",
  20800. height: math.unit(30, "feet")
  20801. },
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(95, "feet"),
  20805. default: true
  20806. },
  20807. {
  20808. name: "Large",
  20809. height: math.unit(285, "feet")
  20810. },
  20811. {
  20812. name: "Incomprehensible",
  20813. height: math.unit(450, "megameters")
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Selicia" },
  20819. {
  20820. side: {
  20821. height: math.unit(11, "feet"),
  20822. weight: math.unit(1750, "kg"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/selicia/side.svg",
  20826. extra: 440/396,
  20827. bottom: 24.8/465.979
  20828. }
  20829. },
  20830. maw: {
  20831. height: math.unit(4.665, "feet"),
  20832. name: "Maw",
  20833. image: {
  20834. source: "./media/characters/selicia/maw.svg"
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(11, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Layla" },
  20848. {
  20849. side: {
  20850. height: math.unit(2 + 6 /12, "feet"),
  20851. weight: math.unit(30, "lb"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/layla/side.svg",
  20855. extra: 244/188,
  20856. bottom: 18.2/262.1
  20857. }
  20858. },
  20859. back: {
  20860. height: math.unit(2 + 6 /12, "feet"),
  20861. weight: math.unit(30, "lb"),
  20862. name: "Back",
  20863. image: {
  20864. source: "./media/characters/layla/back.svg",
  20865. extra: 308/241.5,
  20866. bottom: 8.9/316.8
  20867. }
  20868. },
  20869. cumming: {
  20870. height: math.unit(2 + 6 /12, "feet"),
  20871. weight: math.unit(30, "lb"),
  20872. name: "Cumming",
  20873. image: {
  20874. source: "./media/characters/layla/cumming.svg",
  20875. extra: 342/279,
  20876. bottom: 595/938
  20877. }
  20878. },
  20879. dickFlaccid: {
  20880. height: math.unit(2.595, "feet"),
  20881. name: "Flaccid Genitals",
  20882. image: {
  20883. source: "./media/characters/layla/dick-flaccid.svg"
  20884. }
  20885. },
  20886. dickErect: {
  20887. height: math.unit(2.359, "feet"),
  20888. name: "Erect Genitals",
  20889. image: {
  20890. source: "./media/characters/layla/dick-erect.svg"
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Micro",
  20897. height: math.unit(1, "inch")
  20898. },
  20899. {
  20900. name: "Small",
  20901. height: math.unit(1, "foot")
  20902. },
  20903. {
  20904. name: "Normal",
  20905. height: math.unit(2 + 6/12, "feet"),
  20906. default: true
  20907. },
  20908. {
  20909. name: "Macro",
  20910. height: math.unit(200, "feet")
  20911. },
  20912. {
  20913. name: "Megamacro",
  20914. height: math.unit(1000, "miles")
  20915. },
  20916. {
  20917. name: "Planetary",
  20918. height: math.unit(8000, "miles")
  20919. },
  20920. {
  20921. name: "True Layla",
  20922. height: math.unit(200000*7, "multiverses")
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Knox" },
  20928. {
  20929. back: {
  20930. height: math.unit(10.5, "feet"),
  20931. weight: math.unit(800, "lb"),
  20932. name: "Back",
  20933. image: {
  20934. source: "./media/characters/knox/back.svg",
  20935. extra: 1486/1089,
  20936. bottom: 107/1601.4
  20937. }
  20938. },
  20939. side: {
  20940. height: math.unit(10.5, "feet"),
  20941. weight: math.unit(800, "lb"),
  20942. name: "Side",
  20943. image: {
  20944. source: "./media/characters/knox/side.svg",
  20945. extra: 244/218,
  20946. bottom: 14/260
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Compact",
  20953. height: math.unit(10.5, "feet"),
  20954. default: true
  20955. },
  20956. {
  20957. name: "Dynamax",
  20958. height: math.unit(210, "feet")
  20959. },
  20960. {
  20961. name: "Full Macro",
  20962. height: math.unit(850, "feet")
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Shin (Pikachu)" },
  20968. {
  20969. front: {
  20970. height: math.unit(6, "feet"),
  20971. weight: math.unit(152, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/shin-pikachu/front.svg",
  20975. extra: 1574/1480,
  20976. bottom: 53.3/1626
  20977. }
  20978. },
  20979. hand: {
  20980. height: math.unit(1.055, "feet"),
  20981. name: "Hand",
  20982. image: {
  20983. source: "./media/characters/shin-pikachu/hand.svg"
  20984. }
  20985. },
  20986. foot: {
  20987. height: math.unit(1.1, "feet"),
  20988. name: "Foot",
  20989. image: {
  20990. source: "./media/characters/shin-pikachu/foot.svg"
  20991. }
  20992. },
  20993. collar: {
  20994. height: math.unit(0.386, "feet"),
  20995. name: "Collar",
  20996. image: {
  20997. source: "./media/characters/shin-pikachu/collar.svg"
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Smallest",
  21004. height: math.unit(0.5, "inches")
  21005. },
  21006. {
  21007. name: "Micro",
  21008. height: math.unit(6, "inches")
  21009. },
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(6, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(150, "feet")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Kayda" },
  21023. {
  21024. front: {
  21025. height: math.unit(28, "feet"),
  21026. weight: math.unit(10500, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/kayda/front.svg",
  21030. extra: 1536/1428,
  21031. bottom: 68.7/1603
  21032. }
  21033. },
  21034. back: {
  21035. height: math.unit(28, "feet"),
  21036. weight: math.unit(10500, "lb"),
  21037. name: "Back",
  21038. image: {
  21039. source: "./media/characters/kayda/back.svg",
  21040. extra: 1557/1464,
  21041. bottom: 39.5/1597.49
  21042. }
  21043. },
  21044. dick: {
  21045. height: math.unit(3.858, "feet"),
  21046. name: "Dick",
  21047. image: {
  21048. source: "./media/characters/kayda/dick.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Macro",
  21055. height: math.unit(28, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Brian", species: "Barbary Lion" },
  21062. {
  21063. front: {
  21064. height: math.unit(10 + 11/12, "feet"),
  21065. weight: math.unit(1400, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/brian/front.svg",
  21069. extra: 737/692,
  21070. bottom: 55.4/785
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(10 + 11/12, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Khemri", species: "Jackal" },
  21084. {
  21085. front: {
  21086. height: math.unit(5 + 8/12, "feet"),
  21087. weight: math.unit(140, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/khemri/front.svg",
  21091. extra: 4780/4059,
  21092. bottom: 80.1/4859.25
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Micro",
  21099. height: math.unit(6, "inches")
  21100. },
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(5 + 8/12, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Felix Braveheart" },
  21110. {
  21111. front: {
  21112. height: math.unit(13, "feet"),
  21113. weight: math.unit(1700, "lb"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/felix-braveheart/front.svg",
  21117. extra: 1222/1157,
  21118. bottom: 53.2/1280
  21119. }
  21120. },
  21121. back: {
  21122. height: math.unit(13, "feet"),
  21123. weight: math.unit(1700, "lb"),
  21124. name: "Back",
  21125. image: {
  21126. source: "./media/characters/felix-braveheart/back.svg",
  21127. extra: 1277/1203,
  21128. bottom: 50.2/1327
  21129. }
  21130. },
  21131. feral: {
  21132. height: math.unit(6, "feet"),
  21133. weight: math.unit(400, "lb"),
  21134. name: "Feral",
  21135. image: {
  21136. source: "./media/characters/felix-braveheart/feral.svg",
  21137. extra: 682/625,
  21138. bottom: 6.9/688
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Normal",
  21145. height: math.unit(13, "feet"),
  21146. default: true
  21147. },
  21148. ]
  21149. ))
  21150. characterMakers.push(() => makeCharacter(
  21151. { name: "Shadow Blade" },
  21152. {
  21153. side: {
  21154. height: math.unit(5 + 11/12, "feet"),
  21155. weight: math.unit(1400, "lb"),
  21156. name: "Side",
  21157. image: {
  21158. source: "./media/characters/shadow-blade/side.svg",
  21159. extra: 1726/1267,
  21160. bottom: 58.4/1785
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(5 + 11/12, "feet"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Karla Halldor" },
  21174. {
  21175. front: {
  21176. height: math.unit(1 + 6/12, "feet"),
  21177. weight: math.unit(25, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/karla-halldor/front.svg",
  21181. extra: 1459/1383,
  21182. bottom: 12/1472
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(1 + 6/12, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Ariam" },
  21196. {
  21197. front: {
  21198. height: math.unit(6 + 2/12, "feet"),
  21199. weight: math.unit(160, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/ariam/front.svg",
  21203. extra: 714/617,
  21204. bottom: 23.4/737,
  21205. }
  21206. },
  21207. squatting: {
  21208. height: math.unit(4.1, "feet"),
  21209. weight: math.unit(160, "lb"),
  21210. name: "Squatting",
  21211. image: {
  21212. source: "./media/characters/ariam/squatting.svg",
  21213. extra: 2617/2112,
  21214. bottom: 61.2/2681,
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(6 + 2/12, "feet"),
  21222. default: true
  21223. },
  21224. {
  21225. name: "Normal+",
  21226. height: math.unit(4, "meters")
  21227. },
  21228. {
  21229. name: "Macro",
  21230. height: math.unit(50, "meters")
  21231. },
  21232. {
  21233. name: "Macro+",
  21234. height: math.unit(100, "meters")
  21235. },
  21236. {
  21237. name: "Megamacro",
  21238. height: math.unit(20, "km")
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Qodri Class-of-'Fortwelve-Six" },
  21244. {
  21245. front: {
  21246. height: math.unit(1.67, "meters"),
  21247. weight: math.unit(140, "lb"),
  21248. name: "Front",
  21249. image: {
  21250. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21251. extra: 438/410,
  21252. bottom: 0.75/439
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Shrunken",
  21259. height: math.unit(7.6, "cm")
  21260. },
  21261. {
  21262. name: "Human Scale",
  21263. height: math.unit(1.67, "meters")
  21264. },
  21265. {
  21266. name: "Wolxi Scale",
  21267. height: math.unit(36.7, "meters"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Izue Two-Mothers" },
  21274. {
  21275. front: {
  21276. height: math.unit(1.73, "meters"),
  21277. weight: math.unit(240, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/izue-two-mothers/front.svg",
  21281. extra: 469/437,
  21282. bottom: 1.24/470.6
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Shrunken",
  21289. height: math.unit(7.86, "cm")
  21290. },
  21291. {
  21292. name: "Human Scale",
  21293. height: math.unit(1.73, "meters")
  21294. },
  21295. {
  21296. name: "Wolxi Scale",
  21297. height: math.unit(38, "meters"),
  21298. default: true
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Teeku Love-Shack" },
  21304. {
  21305. front: {
  21306. height: math.unit(1.55, "meters"),
  21307. weight: math.unit(120, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/teeku-love-shack/front.svg",
  21311. extra: 387/362,
  21312. bottom: 1.51/388
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Shrunken",
  21319. height: math.unit(7, "cm")
  21320. },
  21321. {
  21322. name: "Human Scale",
  21323. height: math.unit(1.55, "meters")
  21324. },
  21325. {
  21326. name: "Wolxi Scale",
  21327. height: math.unit(34.1, "meters"),
  21328. default: true
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Dejma the Red" },
  21334. {
  21335. front: {
  21336. height: math.unit(1.83, "meters"),
  21337. weight: math.unit(135, "lb"),
  21338. name: "Front",
  21339. image: {
  21340. source: "./media/characters/dejma-the-red/front.svg",
  21341. extra: 480/458,
  21342. bottom: 1.8/482
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Shrunken",
  21349. height: math.unit(8.3, "cm")
  21350. },
  21351. {
  21352. name: "Human Scale",
  21353. height: math.unit(1.83, "meters")
  21354. },
  21355. {
  21356. name: "Wolxi Scale",
  21357. height: math.unit(40, "meters"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Aki" },
  21364. {
  21365. front: {
  21366. height: math.unit(1.78, "meters"),
  21367. weight: math.unit(65, "kg"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/aki/front.svg",
  21371. extra: 452/415
  21372. }
  21373. },
  21374. frontNsfw: {
  21375. height: math.unit(1.78, "meters"),
  21376. weight: math.unit(65, "kg"),
  21377. name: "Front (NSFW)",
  21378. image: {
  21379. source: "./media/characters/aki/front-nsfw.svg",
  21380. extra: 452/415
  21381. }
  21382. },
  21383. back: {
  21384. height: math.unit(1.78, "meters"),
  21385. weight: math.unit(65, "kg"),
  21386. name: "Back",
  21387. image: {
  21388. source: "./media/characters/aki/back.svg",
  21389. extra: 452/415
  21390. }
  21391. },
  21392. rump: {
  21393. height: math.unit(2.05, "feet"),
  21394. name: "Rump",
  21395. image: {
  21396. source: "./media/characters/aki/rump.svg"
  21397. }
  21398. },
  21399. dick: {
  21400. height: math.unit(0.95, "feet"),
  21401. name: "Dick",
  21402. image: {
  21403. source: "./media/characters/aki/dick.svg"
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Micro",
  21410. height: math.unit(15, "cm")
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(178, "cm"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(214, "m")
  21420. },
  21421. {
  21422. name: "Macro+",
  21423. height: math.unit(534, "m")
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Ari" },
  21429. {
  21430. front: {
  21431. height: math.unit(5 + 5/12, "feet"),
  21432. weight: math.unit(120, "lb"),
  21433. name: "Front",
  21434. image: {
  21435. source: "./media/characters/ari/front.svg",
  21436. extra: 714.5/682,
  21437. bottom: 8/722.5
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(5 + 5/12, "feet")
  21445. },
  21446. {
  21447. name: "Macro",
  21448. height: math.unit(100, "feet"),
  21449. default: true
  21450. },
  21451. {
  21452. name: "Megamacro",
  21453. height: math.unit(100, "miles")
  21454. },
  21455. {
  21456. name: "Gigamacro",
  21457. height: math.unit(80000, "miles")
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Bolt" },
  21463. {
  21464. side: {
  21465. height: math.unit(9, "feet"),
  21466. weight: math.unit(400, "kg"),
  21467. name: "Side",
  21468. image: {
  21469. source: "./media/characters/bolt/side.svg",
  21470. extra: 1126/896,
  21471. bottom: 60/1187.3,
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Micro",
  21478. height: math.unit(5, "inches")
  21479. },
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(9, "feet"),
  21483. default: true
  21484. },
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(700, "feet")
  21488. },
  21489. {
  21490. name: "Max Size",
  21491. height: math.unit(1.52e22, "yottameters")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Draekon Sylviar", species: "Dra'gal" },
  21497. {
  21498. front: {
  21499. height: math.unit(4.53, "meters"),
  21500. weight: math.unit(3, "tons"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/draekon-sylviar/front.svg",
  21504. extra: 1228/1068,
  21505. bottom: 41/1270
  21506. }
  21507. },
  21508. tail: {
  21509. height: math.unit(1.772, "meter"),
  21510. name: "Tail",
  21511. image: {
  21512. source: "./media/characters/draekon-sylviar/tail.svg"
  21513. }
  21514. },
  21515. head: {
  21516. height: math.unit(1.331, "meter"),
  21517. name: "Head",
  21518. image: {
  21519. source: "./media/characters/draekon-sylviar/head.svg"
  21520. }
  21521. },
  21522. hand: {
  21523. height: math.unit(0.564, "meter"),
  21524. name: "Hand",
  21525. image: {
  21526. source: "./media/characters/draekon-sylviar/hand.svg"
  21527. }
  21528. },
  21529. foot: {
  21530. height: math.unit(0.621, "meter"),
  21531. name: "Foot",
  21532. image: {
  21533. source: "./media/characters/draekon-sylviar/foot.svg",
  21534. bottom: 32/324
  21535. }
  21536. },
  21537. dick: {
  21538. height: math.unit(61, "cm"),
  21539. name: "Dick",
  21540. image: {
  21541. source: "./media/characters/draekon-sylviar/dick.svg"
  21542. }
  21543. },
  21544. dickseparated: {
  21545. height: math.unit(61, "cm"),
  21546. name: "Dick-separated",
  21547. image: {
  21548. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Small",
  21555. height: math.unit(4.53/2, "meters"),
  21556. default: true
  21557. },
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(4.53, "meters"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Large",
  21565. height: math.unit(4.53*2, "meters"),
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Brawler", species: "German Shepherd" },
  21571. {
  21572. front: {
  21573. height: math.unit(6 + 2/12, "feet"),
  21574. weight: math.unit(180, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/brawler/front.svg",
  21578. extra: 3301/3027,
  21579. bottom: 138/3439
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(6 + 2/12, "feet"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Alex", species: "Bayleef" },
  21593. {
  21594. front: {
  21595. height: math.unit(11, "feet"),
  21596. weight: math.unit(1000, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/alex/front.svg",
  21600. bottom: 44.5/620
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Micro",
  21607. height: math.unit(5, "inches")
  21608. },
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(11, "feet"),
  21612. default: true
  21613. },
  21614. {
  21615. name: "Macro",
  21616. height: math.unit(9.5e9, "feet")
  21617. },
  21618. {
  21619. name: "Max Size",
  21620. height: math.unit(1.4e283, "yottameters")
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Zenari" },
  21626. {
  21627. female: {
  21628. height: math.unit(29.9, "m"),
  21629. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  21630. name: "Female",
  21631. image: {
  21632. source: "./media/characters/zenari/female.svg",
  21633. extra: 3281.6/3217,
  21634. bottom: 72.2/3353
  21635. }
  21636. },
  21637. male: {
  21638. height: math.unit(27.7, "m"),
  21639. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  21640. name: "Male",
  21641. image: {
  21642. source: "./media/characters/zenari/male.svg",
  21643. extra: 3008/2991,
  21644. bottom: 54.6/3069
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(29.7, "meters"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Mactarian" },
  21658. {
  21659. female: {
  21660. height: math.unit(23.8, "m"),
  21661. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21662. name: "Female",
  21663. image: {
  21664. source: "./media/characters/mactarian/female.svg",
  21665. extra: 2662/2569,
  21666. bottom: 73/2736
  21667. }
  21668. },
  21669. male: {
  21670. height: math.unit(23.8, "m"),
  21671. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  21672. name: "Male",
  21673. image: {
  21674. source: "./media/characters/mactarian/male.svg",
  21675. extra: 2673/2600,
  21676. bottom: 76/2750
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Macro",
  21683. height: math.unit(23.8, "meters"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Umok" },
  21690. {
  21691. female: {
  21692. height: math.unit(19.3, "m"),
  21693. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  21694. name: "Female",
  21695. image: {
  21696. source: "./media/characters/umok/female.svg",
  21697. extra: 2186/2078,
  21698. bottom: 87/2277
  21699. }
  21700. },
  21701. male: {
  21702. height: math.unit(19.5, "m"),
  21703. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  21704. name: "Male",
  21705. image: {
  21706. source: "./media/characters/umok/male.svg",
  21707. extra: 2233/2140,
  21708. bottom: 24.4/2258
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Macro",
  21715. height: math.unit(19.3, "meters"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Joraxian" },
  21722. {
  21723. female: {
  21724. height: math.unit(26.15, "m"),
  21725. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  21726. name: "Female",
  21727. image: {
  21728. source: "./media/characters/joraxian/female.svg",
  21729. extra: 2943/2831,
  21730. bottom: 27/2972
  21731. }
  21732. },
  21733. male: {
  21734. height: math.unit(25.4, "m"),
  21735. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  21736. name: "Male",
  21737. image: {
  21738. source: "./media/characters/joraxian/male.svg",
  21739. extra: 2835/2741,
  21740. bottom: 27/2862
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Macro",
  21747. height: math.unit(26.15, "meters"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Sthara" },
  21754. {
  21755. female: {
  21756. height: math.unit(21.6, "m"),
  21757. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  21758. name: "Female",
  21759. image: {
  21760. source: "./media/characters/sthara/female.svg",
  21761. extra: 2516/2347,
  21762. bottom: 21.5/2537
  21763. }
  21764. },
  21765. male: {
  21766. height: math.unit(24, "m"),
  21767. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  21768. name: "Male",
  21769. image: {
  21770. source: "./media/characters/sthara/male.svg",
  21771. extra: 2732/2607,
  21772. bottom: 23/2732
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Macro",
  21779. height: math.unit(21.6, "meters"),
  21780. default: true
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Luka Bryzant" },
  21786. {
  21787. front: {
  21788. height: math.unit(6 + 4/12, "feet"),
  21789. weight: math.unit(175, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/luka-bryzant/front.svg",
  21793. extra: 311/289,
  21794. bottom: 4/315
  21795. }
  21796. },
  21797. back: {
  21798. height: math.unit(6 + 4/12, "feet"),
  21799. weight: math.unit(175, "lb"),
  21800. name: "Back",
  21801. image: {
  21802. source: "./media/characters/luka-bryzant/back.svg",
  21803. extra: 311/289,
  21804. bottom: 3.8/313.7
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Micro",
  21811. height: math.unit(10, "inches")
  21812. },
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(6 + 4/12, "feet"),
  21816. default: true
  21817. },
  21818. {
  21819. name: "Large",
  21820. height: math.unit(12, "feet")
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Aman Aquila" },
  21826. {
  21827. front: {
  21828. height: math.unit(5 + 7/12, "feet"),
  21829. weight: math.unit(185, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/aman-aquila/front.svg",
  21833. extra: 1013/976,
  21834. bottom: 45.6/1057
  21835. }
  21836. },
  21837. side: {
  21838. height: math.unit(5 + 7/12, "feet"),
  21839. weight: math.unit(185, "lb"),
  21840. name: "Side",
  21841. image: {
  21842. source: "./media/characters/aman-aquila/side.svg",
  21843. extra: 1054/1011,
  21844. bottom: 15/1070
  21845. }
  21846. },
  21847. back: {
  21848. height: math.unit(5 + 7/12, "feet"),
  21849. weight: math.unit(185, "lb"),
  21850. name: "Back",
  21851. image: {
  21852. source: "./media/characters/aman-aquila/back.svg",
  21853. extra: 1026/970,
  21854. bottom: 12/1039
  21855. }
  21856. },
  21857. head: {
  21858. height: math.unit(1.211, "feet"),
  21859. name: "Head",
  21860. image: {
  21861. source: "./media/characters/aman-aquila/head.svg",
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Minimicro",
  21868. height: math.unit(0.057, "inches")
  21869. },
  21870. {
  21871. name: "Micro",
  21872. height: math.unit(7, "inches")
  21873. },
  21874. {
  21875. name: "Mini",
  21876. height: math.unit(3 + 7/12, "feet")
  21877. },
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(5 + 7/12, "feet"),
  21881. default: true
  21882. },
  21883. {
  21884. name: "Macro",
  21885. height: math.unit(157 + 7/12, "feet")
  21886. },
  21887. {
  21888. name: "Megamacro",
  21889. height: math.unit(1557 + 7/12, "feet")
  21890. },
  21891. {
  21892. name: "Gigamacro",
  21893. height: math.unit(15557 + 7/12, "feet")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Hiphae", species: "Mouse" },
  21899. {
  21900. front: {
  21901. height: math.unit(3 + 2/12, "inches"),
  21902. weight: math.unit(0.3, "ounces"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/hiphae/front.svg",
  21906. extra: 1931/1683,
  21907. bottom: 24/1955
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Normal",
  21914. height: math.unit(3 + 1/2, "inches"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Nicky", species: "Shark" },
  21921. {
  21922. front: {
  21923. height: math.unit(5 + 10/12, "feet"),
  21924. weight: math.unit(165, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/nicky/front.svg",
  21928. extra: 3144/2886,
  21929. bottom: 45.6/3192
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(5 + 10/12, "feet"),
  21934. weight: math.unit(165, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/nicky/back.svg",
  21938. extra: 3055/2804,
  21939. bottom: 28.4/3087
  21940. }
  21941. },
  21942. frontclothed: {
  21943. height: math.unit(5 + 10/12, "feet"),
  21944. weight: math.unit(165, "lb"),
  21945. name: "Front-clothed",
  21946. image: {
  21947. source: "./media/characters/nicky/front-clothed.svg",
  21948. extra: 3184.9/2926.9,
  21949. bottom: 86.5/3239.9
  21950. }
  21951. },
  21952. foot: {
  21953. height: math.unit(1.16, "feet"),
  21954. name: "Foot",
  21955. image: {
  21956. source: "./media/characters/nicky/foot.svg"
  21957. }
  21958. },
  21959. feet: {
  21960. height: math.unit(1.34, "feet"),
  21961. name: "Feet",
  21962. image: {
  21963. source: "./media/characters/nicky/feet.svg"
  21964. }
  21965. },
  21966. maw: {
  21967. height: math.unit(0.9, "feet"),
  21968. name: "Maw",
  21969. image: {
  21970. source: "./media/characters/nicky/maw.svg"
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(5 + 10/12, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(60, "feet")
  21983. },
  21984. {
  21985. name: "Megamacro",
  21986. height: math.unit(1, "mile")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Blair" },
  21992. {
  21993. side: {
  21994. height: math.unit(10, "feet"),
  21995. weight: math.unit(600, "lb"),
  21996. name: "Side",
  21997. image: {
  21998. source: "./media/characters/blair/side.svg",
  21999. bottom: 16.6/475,
  22000. extra: 458/431
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Micro",
  22007. height: math.unit(8, "inches")
  22008. },
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(10, "feet"),
  22012. default: true
  22013. },
  22014. {
  22015. name: "Macro",
  22016. height: math.unit(180, "feet")
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Fisher" },
  22022. {
  22023. front: {
  22024. height: math.unit(5 + 4/12, "feet"),
  22025. weight: math.unit(125, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/fisher/front.svg",
  22029. extra: 444/390,
  22030. bottom: 2/444.8
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Micro",
  22037. height: math.unit(4, "inches")
  22038. },
  22039. {
  22040. name: "Normal",
  22041. height: math.unit(5 + 4/12, "feet"),
  22042. default: true
  22043. },
  22044. {
  22045. name: "Macro",
  22046. height: math.unit(100, "feet")
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Gliss" },
  22052. {
  22053. front: {
  22054. height: math.unit(6.71, "feet"),
  22055. weight: math.unit(200, "lb"),
  22056. capacity: math.unit(1000000, "people"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/gliss/front.svg",
  22060. extra: 2347/2231,
  22061. bottom: 113/2462
  22062. }
  22063. },
  22064. hammerspaceSize: {
  22065. height: math.unit(6.71*717, "feet"),
  22066. weight: math.unit(200, "lb"),
  22067. capacity: math.unit(1000000, "people"),
  22068. name: "Hammerspace Size",
  22069. image: {
  22070. source: "./media/characters/gliss/front.svg",
  22071. extra: 2347/2231,
  22072. bottom: 113/2462
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(6.71, "feet"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Dune Anderson" },
  22086. {
  22087. side: {
  22088. height: math.unit(1.44, "m"),
  22089. weight: math.unit(80, "kg"),
  22090. name: "Side",
  22091. image: {
  22092. source: "./media/characters/dune-anderson/side.svg",
  22093. bottom: 49/1426
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Wolf-sized",
  22100. height: math.unit(1.44, "meters")
  22101. },
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(5.05, "meters"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Big",
  22109. height: math.unit(14.4, "meters")
  22110. },
  22111. {
  22112. name: "Huge",
  22113. height: math.unit(144, "meters")
  22114. },
  22115. ]
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Hind" },
  22119. {
  22120. front: {
  22121. height: math.unit(7, "feet"),
  22122. weight: math.unit(425, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/hind/front.svg",
  22126. extra: 2091/1860,
  22127. bottom: 129/2220
  22128. }
  22129. },
  22130. back: {
  22131. height: math.unit(7, "feet"),
  22132. weight: math.unit(425, "lb"),
  22133. name: "Back",
  22134. image: {
  22135. source: "./media/characters/hind/back.svg",
  22136. extra: 2091/1860,
  22137. bottom: 24.6/2309
  22138. }
  22139. },
  22140. tail: {
  22141. height: math.unit(2.8, "feet"),
  22142. name: "Tail",
  22143. image: {
  22144. source: "./media/characters/hind/tail.svg"
  22145. }
  22146. },
  22147. head: {
  22148. height: math.unit(2.55, "feet"),
  22149. name: "Head",
  22150. image: {
  22151. source: "./media/characters/hind/head.svg"
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "XS",
  22158. height: math.unit(0.7, "feet")
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(7, "feet"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "XL",
  22167. height: math.unit(70, "feet")
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Dylan (Skaven)" },
  22173. {
  22174. front: {
  22175. height: math.unit(6, "feet"),
  22176. weight: math.unit(150, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/dylan-skaven/front.svg",
  22180. extra: 2318/2063,
  22181. bottom: 93.4/2410
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Nano",
  22188. height: math.unit(1, "mm")
  22189. },
  22190. {
  22191. name: "Micro",
  22192. height: math.unit(1, "cm")
  22193. },
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(2.1, "meters"),
  22197. default: true
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Solex Draconov", species: "Drasune" },
  22203. {
  22204. front: {
  22205. height: math.unit(7 + 5/12, "feet"),
  22206. weight: math.unit(357, "lb"),
  22207. name: "Front",
  22208. image: {
  22209. source: "./media/characters/solex-draconov/front.svg",
  22210. extra: 1993/1865,
  22211. bottom: 117/2111
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Natural Height",
  22218. height: math.unit(7 + 5/12, "feet"),
  22219. default: true
  22220. },
  22221. {
  22222. name: "Macro",
  22223. height: math.unit(350, "feet")
  22224. },
  22225. {
  22226. name: "Macro+",
  22227. height: math.unit(1000, "feet")
  22228. },
  22229. {
  22230. name: "Megamacro",
  22231. height: math.unit(20, "km")
  22232. },
  22233. {
  22234. name: "Megamacro+",
  22235. height: math.unit(1000, "km")
  22236. },
  22237. {
  22238. name: "Gigamacro",
  22239. height: math.unit(2.5, "Gm")
  22240. },
  22241. {
  22242. name: "Teramacro",
  22243. height: math.unit(15, "Tm")
  22244. },
  22245. {
  22246. name: "Galactic",
  22247. height: math.unit(30, "Zm")
  22248. },
  22249. {
  22250. name: "Universal",
  22251. height: math.unit(21000, "Ym")
  22252. },
  22253. {
  22254. name: "Omniversal",
  22255. height: math.unit(9.861e50, "Ym")
  22256. },
  22257. {
  22258. name: "Existential",
  22259. height: math.unit(1e300, "meters")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Mandarax" },
  22265. {
  22266. side: {
  22267. height: math.unit(25, "feet"),
  22268. weight: math.unit(90000, "lb"),
  22269. name: "Side",
  22270. image: {
  22271. source: "./media/characters/mandarax/side.svg",
  22272. extra: 614/332,
  22273. bottom: 55/630
  22274. }
  22275. },
  22276. head: {
  22277. height: math.unit(11.4, "feet"),
  22278. name: "Head",
  22279. image: {
  22280. source: "./media/characters/mandarax/head.svg"
  22281. }
  22282. },
  22283. belly: {
  22284. height: math.unit(33, "feet"),
  22285. name: "Belly",
  22286. image: {
  22287. source: "./media/characters/mandarax/belly.svg"
  22288. }
  22289. },
  22290. dick: {
  22291. height: math.unit(8.46, "feet"),
  22292. name: "Dick",
  22293. image: {
  22294. source: "./media/characters/mandarax/dick.svg"
  22295. }
  22296. },
  22297. top: {
  22298. height: math.unit(28, "meters"),
  22299. name: "Top",
  22300. image: {
  22301. source: "./media/characters/mandarax/top.svg"
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(25, "feet"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. //characters
  22314. function makeCharacters() {
  22315. const results = [];
  22316. characterMakers.forEach(character => {
  22317. results.push(character());
  22318. });
  22319. return results;
  22320. }