less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19384 行
460 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename
  18. }
  19. if (value.weight) {
  20. views[key].attributes.weight = {
  21. name: "Mass",
  22. power: 3,
  23. type: "mass",
  24. base: value.weight
  25. };
  26. }
  27. });
  28. return createEntityMaker(info, views, defaultSizes);
  29. }
  30. characterMakers.push(() => makeCharacter(
  31. {
  32. name: "Fen",
  33. species: "Crux",
  34. description: {
  35. title: "Bio",
  36. text: "Very furry. Sheds on everything."
  37. }
  38. },
  39. {
  40. back: {
  41. height: math.unit(2.2428, "meter"),
  42. weight: math.unit(124.738, "kg"),
  43. name: "Back",
  44. image: {
  45. source: "./media/characters/fen/back.svg",
  46. extra: 1025 / 935
  47. },
  48. info: {
  49. description: {
  50. mode: "append",
  51. text: "\n\nHe is not currently looking at you."
  52. }
  53. }
  54. },
  55. full: {
  56. height: math.unit(1.34, "meter"),
  57. weight: math.unit(225, "kg"),
  58. name: "Full",
  59. image: {
  60. source: "./media/characters/fen/full.svg"
  61. },
  62. info: {
  63. description: {
  64. mode: "append",
  65. text: "\n\nMunch."
  66. }
  67. }
  68. },
  69. kneeling: {
  70. height: math.unit(5.4, "feet"),
  71. weight: math.unit(124.738, "kg"),
  72. name: "Kneeling",
  73. image: {
  74. source: "./media/characters/fen/kneeling.svg",
  75. extra: 563 / 507
  76. }
  77. },
  78. },
  79. [
  80. {
  81. name: "Normal",
  82. height: math.unit(2.2428, "meter")
  83. },
  84. {
  85. name: "Big",
  86. height: math.unit(12, "feet")
  87. },
  88. {
  89. name: "Minimacro",
  90. height: math.unit(30, "meter"),
  91. default: true,
  92. info: {
  93. description: {
  94. mode: "append",
  95. text: "\n\nTOO DAMN BIG"
  96. }
  97. }
  98. },
  99. {
  100. name: "Macro",
  101. height: math.unit(100, "meter"),
  102. info: {
  103. description: {
  104. mode: "append",
  105. text: "\n\nTOO DAMN BIG"
  106. }
  107. }
  108. },
  109. {
  110. name: "Macro+",
  111. height: math.unit(1000, "meter")
  112. },
  113. {
  114. name: "Megamacro",
  115. height: math.unit(10, "miles")
  116. }
  117. ]
  118. ))
  119. characterMakers.push(() => makeCharacter(
  120. { name: "Sofia Fluttertail" },
  121. {
  122. front: {
  123. height: math.unit(183, "cm"),
  124. weight: math.unit(80, "kg"),
  125. name: "Front",
  126. image: {
  127. source: "./media/characters/sofia-fluttertail/front.svg",
  128. bottom: 0.01,
  129. extra: 2154 / 2081
  130. }
  131. },
  132. frontAlt: {
  133. height: math.unit(183, "cm"),
  134. weight: math.unit(80, "kg"),
  135. name: "Front (alt)",
  136. image: {
  137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  138. }
  139. },
  140. back: {
  141. height: math.unit(183, "cm"),
  142. weight: math.unit(80, "kg"),
  143. name: "Back",
  144. image: {
  145. source: "./media/characters/sofia-fluttertail/back.svg"
  146. }
  147. },
  148. maw: {
  149. height: math.unit(183 / 5, "cm"),
  150. name: "Maw",
  151. image: {
  152. source: "./media/characters/sofia-fluttertail/maw.svg"
  153. }
  154. },
  155. },
  156. [
  157. {
  158. name: "Normal",
  159. height: math.unit(1.83, "meter")
  160. },
  161. {
  162. name: "Macro",
  163. height: math.unit(96, "feet"),
  164. default: true
  165. },
  166. {
  167. name: "Megamerger",
  168. height: math.unit(650, "feet")
  169. },
  170. ]
  171. ))
  172. characterMakers.push(() => makeCharacter(
  173. { name: "March" },
  174. {
  175. front: {
  176. height: math.unit(7, "feet"),
  177. weight: math.unit(100, "kg"),
  178. name: "Front",
  179. image: {
  180. source: "./media/characters/march/front.svg",
  181. extra: 1,
  182. bottom: 0.015
  183. }
  184. },
  185. foot: {
  186. height: math.unit(0.9, "feet"),
  187. name: "Foot",
  188. image: {
  189. source: "./media/characters/march/foot.svg"
  190. }
  191. },
  192. },
  193. [
  194. {
  195. name: "Normal",
  196. height: math.unit(7.9, "feet")
  197. },
  198. {
  199. name: "Macro",
  200. height: math.unit(220, "meters")
  201. },
  202. {
  203. name: "Megamacro",
  204. height: math.unit(2.98, "km"),
  205. default: true
  206. },
  207. {
  208. name: "Gigamacro",
  209. height: math.unit(15963, "km")
  210. },
  211. {
  212. name: "Teramacro",
  213. height: math.unit(2980000000, "km")
  214. },
  215. {
  216. name: "Examacro",
  217. height: math.unit(250, "parsecs")
  218. },
  219. ]
  220. ))
  221. characterMakers.push(() => makeCharacter(
  222. { name: "Noir" },
  223. {
  224. front: {
  225. height: math.unit(6, "feet"),
  226. weight: math.unit(60, "kg"),
  227. name: "Front",
  228. image: {
  229. source: "./media/characters/noir/front.svg",
  230. extra: 1,
  231. bottom: 0.032
  232. }
  233. },
  234. },
  235. [
  236. {
  237. name: "Normal",
  238. height: math.unit(6.6, "feet")
  239. },
  240. {
  241. name: "Macro",
  242. height: math.unit(500, "feet")
  243. },
  244. {
  245. name: "Megamacro",
  246. height: math.unit(2.5, "km"),
  247. default: true
  248. },
  249. {
  250. name: "Gigamacro",
  251. height: math.unit(22500, "km")
  252. },
  253. {
  254. name: "Teramacro",
  255. height: math.unit(2500000000, "km")
  256. },
  257. {
  258. name: "Examacro",
  259. height: math.unit(200, "parsecs")
  260. },
  261. ]
  262. ))
  263. characterMakers.push(() => makeCharacter(
  264. { name: "Okuri" },
  265. {
  266. front: {
  267. height: math.unit(7, "feet"),
  268. weight: math.unit(100, "kg"),
  269. name: "Front",
  270. image: {
  271. source: "./media/characters/okuri/front.svg",
  272. extra: 1,
  273. bottom: 0.037
  274. }
  275. },
  276. back: {
  277. height: math.unit(7, "feet"),
  278. weight: math.unit(100, "kg"),
  279. name: "Back",
  280. image: {
  281. source: "./media/characters/okuri/back.svg",
  282. extra: 1,
  283. bottom: 0.007
  284. }
  285. },
  286. },
  287. [
  288. {
  289. name: "Megamacro",
  290. height: math.unit(100, "miles"),
  291. default: true
  292. },
  293. ]
  294. ))
  295. characterMakers.push(() => makeCharacter(
  296. { name: "Manny" },
  297. {
  298. front: {
  299. height: math.unit(7, "feet"),
  300. weight: math.unit(100, "kg"),
  301. name: "Front",
  302. image: {
  303. source: "./media/characters/manny/front.svg",
  304. extra: 1,
  305. bottom: 0.06
  306. }
  307. },
  308. back: {
  309. height: math.unit(7, "feet"),
  310. weight: math.unit(100, "kg"),
  311. name: "Back",
  312. image: {
  313. source: "./media/characters/manny/back.svg",
  314. extra: 1,
  315. bottom: 0.014
  316. }
  317. },
  318. },
  319. [
  320. {
  321. name: "Normal",
  322. height: math.unit(7, "feet"),
  323. },
  324. {
  325. name: "Macro",
  326. height: math.unit(78, "feet"),
  327. default: true
  328. },
  329. {
  330. name: "Macro+",
  331. height: math.unit(300, "meters")
  332. },
  333. {
  334. name: "Macro++",
  335. height: math.unit(2400, "meters")
  336. },
  337. {
  338. name: "Megamacro",
  339. height: math.unit(5167, "meters")
  340. },
  341. {
  342. name: "Gigamacro",
  343. height: math.unit(41769, "miles")
  344. },
  345. ]
  346. ))
  347. characterMakers.push(() => makeCharacter(
  348. { name: "Adake" },
  349. {
  350. front: {
  351. height: math.unit(7, "feet"),
  352. weight: math.unit(100, "kg"),
  353. name: "Front",
  354. image: {
  355. source: "./media/characters/adake/front-1.svg"
  356. }
  357. },
  358. frontAlt: {
  359. height: math.unit(7, "feet"),
  360. weight: math.unit(100, "kg"),
  361. name: "Front (Alt)",
  362. image: {
  363. source: "./media/characters/adake/front-2.svg",
  364. extra: 1,
  365. bottom: 0.01
  366. }
  367. },
  368. back: {
  369. height: math.unit(7, "feet"),
  370. weight: math.unit(100, "kg"),
  371. name: "Back",
  372. image: {
  373. source: "./media/characters/adake/back.svg",
  374. }
  375. },
  376. kneel: {
  377. height: math.unit(5.385, "feet"),
  378. weight: math.unit(100, "kg"),
  379. name: "Kneeling",
  380. image: {
  381. source: "./media/characters/adake/kneel.svg",
  382. bottom: 0.052
  383. }
  384. },
  385. },
  386. [
  387. {
  388. name: "Normal",
  389. height: math.unit(7, "feet"),
  390. },
  391. {
  392. name: "Macro",
  393. height: math.unit(78, "feet"),
  394. default: true
  395. },
  396. {
  397. name: "Macro+",
  398. height: math.unit(300, "meters")
  399. },
  400. {
  401. name: "Macro++",
  402. height: math.unit(2400, "meters")
  403. },
  404. {
  405. name: "Megamacro",
  406. height: math.unit(5167, "meters")
  407. },
  408. {
  409. name: "Gigamacro",
  410. height: math.unit(41769, "miles")
  411. },
  412. ]
  413. ))
  414. characterMakers.push(() => makeCharacter(
  415. { name: "Elijah" },
  416. {
  417. side: {
  418. height: math.unit(7, "feet"),
  419. weight: math.unit(50, "kg"),
  420. name: "Side",
  421. image: {
  422. source: "./media/characters/elijah/side.svg",
  423. extra: 1,
  424. bottom: 0.065
  425. }
  426. },
  427. foot: {
  428. height: math.unit(2.05, "feet"),
  429. name: "Foot",
  430. image: {
  431. source: "./media/characters/elijah/foot.svg"
  432. }
  433. },
  434. },
  435. [
  436. {
  437. name: "Normal",
  438. height: math.unit(1.65, "meters")
  439. },
  440. {
  441. name: "Macro",
  442. height: math.unit(55, "meters"),
  443. default: true
  444. },
  445. {
  446. name: "Macro+",
  447. height: math.unit(105, "meters")
  448. },
  449. ]
  450. ))
  451. characterMakers.push(() => makeCharacter(
  452. { name: "Rai" },
  453. {
  454. front: {
  455. height: math.unit(11, "feet"),
  456. weight: math.unit(80, "kg"),
  457. name: "Front",
  458. image: {
  459. source: "./media/characters/rai/front.svg",
  460. extra: 1,
  461. bottom: 0.03
  462. }
  463. },
  464. side: {
  465. height: math.unit(11, "feet"),
  466. weight: math.unit(80, "kg"),
  467. name: "Side",
  468. image: {
  469. source: "./media/characters/rai/side.svg"
  470. }
  471. },
  472. back: {
  473. height: math.unit(11, "feet"),
  474. weight: math.unit(80, "lb"),
  475. name: "Back",
  476. image: {
  477. source: "./media/characters/rai/back.svg",
  478. extra: 1,
  479. bottom: 0.01
  480. }
  481. },
  482. feral: {
  483. height: math.unit(11, "feet"),
  484. weight: math.unit(800, "lb"),
  485. name: "Feral",
  486. image: {
  487. source: "./media/characters/rai/feral.svg",
  488. extra: 1050 / 659,
  489. bottom: 0.07
  490. }
  491. },
  492. maw: {
  493. height: math.unit(6 / 3.81416, "feet"),
  494. name: "Maw",
  495. image: {
  496. source: "./media/characters/rai/maw.svg"
  497. }
  498. },
  499. },
  500. [
  501. {
  502. name: "Normal",
  503. height: math.unit(11, "feet")
  504. },
  505. {
  506. name: "Macro",
  507. height: math.unit(302, "feet"),
  508. default: true
  509. },
  510. ]
  511. ))
  512. characterMakers.push(() => makeCharacter(
  513. { name: "Jazzy" },
  514. {
  515. front: {
  516. height: math.unit(7, "feet"),
  517. weight: math.unit(80, "kg"),
  518. name: "Front",
  519. image: {
  520. source: "./media/characters/jazzy/front.svg",
  521. extra: 1,
  522. bottom: 0.01
  523. }
  524. },
  525. back: {
  526. height: math.unit(7, "feet"),
  527. weight: math.unit(80, "kg"),
  528. name: "Back",
  529. image: {
  530. source: "./media/characters/jazzy/back.svg",
  531. extra: 1,
  532. bottom: 0.01
  533. }
  534. },
  535. },
  536. [
  537. {
  538. name: "Macro",
  539. height: math.unit(216, "feet"),
  540. default: true
  541. },
  542. ]
  543. ))
  544. characterMakers.push(() => makeCharacter(
  545. { name: "Flamm" },
  546. {
  547. front: {
  548. height: math.unit(7, "feet"),
  549. weight: math.unit(80, "kg"),
  550. name: "Front",
  551. image: {
  552. source: "./media/characters/flamm/front.svg",
  553. extra: 1,
  554. bottom: 0.02
  555. }
  556. },
  557. },
  558. [
  559. {
  560. name: "Normal",
  561. height: math.unit(9.5, "feet")
  562. },
  563. {
  564. name: "Macro",
  565. height: math.unit(200, "feet"),
  566. default: true
  567. },
  568. ]
  569. ))
  570. characterMakers.push(() => makeCharacter(
  571. { name: "Zephiro" },
  572. {
  573. front: {
  574. height: math.unit(7, "feet"),
  575. weight: math.unit(80, "kg"),
  576. name: "Front",
  577. image: {
  578. source: "./media/characters/zephiro/front.svg",
  579. extra: 2309 / 2162,
  580. bottom: 0.069
  581. }
  582. },
  583. side: {
  584. height: math.unit(7, "feet"),
  585. weight: math.unit(80, "kg"),
  586. name: "Side",
  587. image: {
  588. source: "./media/characters/zephiro/side.svg",
  589. extra: 2403 / 2279,
  590. bottom: 0.015
  591. }
  592. },
  593. back: {
  594. height: math.unit(7, "feet"),
  595. weight: math.unit(80, "kg"),
  596. name: "Back",
  597. image: {
  598. source: "./media/characters/zephiro/back.svg",
  599. extra: 2373 / 2244,
  600. bottom: 0.013
  601. }
  602. },
  603. },
  604. [
  605. {
  606. name: "Micro",
  607. height: math.unit(3, "inches")
  608. },
  609. {
  610. name: "Normal",
  611. height: math.unit(5 + 3 / 12, "feet"),
  612. default: true
  613. },
  614. {
  615. name: "Macro",
  616. height: math.unit(118, "feet")
  617. },
  618. ]
  619. ))
  620. characterMakers.push(() => makeCharacter(
  621. { name: "Fory" },
  622. {
  623. front: {
  624. height: math.unit(7, "feet"),
  625. weight: math.unit(90, "kg"),
  626. name: "Front",
  627. image: {
  628. source: "./media/characters/fory/front.svg",
  629. extra: 1,
  630. bottom: 0.03
  631. }
  632. },
  633. },
  634. [
  635. {
  636. name: "Normal",
  637. height: math.unit(5, "feet")
  638. },
  639. {
  640. name: "Macro",
  641. height: math.unit(50, "feet"),
  642. default: true
  643. },
  644. ]
  645. ))
  646. characterMakers.push(() => makeCharacter(
  647. { name: "Kurrikage" },
  648. {
  649. front: {
  650. height: math.unit(7, "feet"),
  651. weight: math.unit(90, "kg"),
  652. name: "Front",
  653. image: {
  654. source: "./media/characters/kurrikage/front.svg",
  655. extra: 1,
  656. bottom: 0.035
  657. }
  658. },
  659. back: {
  660. height: math.unit(7, "feet"),
  661. weight: math.unit(90, "lb"),
  662. name: "Back",
  663. image: {
  664. source: "./media/characters/kurrikage/back.svg"
  665. }
  666. },
  667. paw: {
  668. height: math.unit(1.5, "feet"),
  669. name: "Paw",
  670. image: {
  671. source: "./media/characters/kurrikage/paw.svg"
  672. }
  673. },
  674. staff: {
  675. height: math.unit(6.7, "feet"),
  676. name: "Staff",
  677. image: {
  678. source: "./media/characters/kurrikage/staff.svg"
  679. }
  680. },
  681. peek: {
  682. height: math.unit(1.05, "feet"),
  683. name: "Peeking",
  684. image: {
  685. source: "./media/characters/kurrikage/peek.svg",
  686. bottom: 0.08
  687. }
  688. },
  689. },
  690. [
  691. {
  692. name: "Normal",
  693. height: math.unit(12, "feet"),
  694. default: true
  695. },
  696. {
  697. name: "Big",
  698. height: math.unit(20, "feet")
  699. },
  700. {
  701. name: "Macro",
  702. height: math.unit(500, "feet")
  703. },
  704. {
  705. name: "Megamacro",
  706. height: math.unit(20, "miles")
  707. },
  708. ]
  709. ))
  710. characterMakers.push(() => makeCharacter(
  711. { name: "Shingo" },
  712. {
  713. front: {
  714. height: math.unit(6, "feet"),
  715. weight: math.unit(75, "kg"),
  716. name: "Front",
  717. image: {
  718. source: "./media/characters/shingo/front.svg",
  719. extra: 3511 / 3338,
  720. bottom: 0.005
  721. }
  722. },
  723. },
  724. [
  725. {
  726. name: "Micro",
  727. height: math.unit(4, "inches")
  728. },
  729. {
  730. name: "Normal",
  731. height: math.unit(6, "feet"),
  732. default: true
  733. },
  734. {
  735. name: "Macro",
  736. height: math.unit(108, "feet")
  737. }
  738. ]
  739. ))
  740. characterMakers.push(() => makeCharacter(
  741. { name: "Aigey" },
  742. {
  743. side: {
  744. height: math.unit(6, "feet"),
  745. weight: math.unit(75, "kg"),
  746. name: "Side",
  747. image: {
  748. source: "./media/characters/aigey/side.svg"
  749. }
  750. },
  751. },
  752. [
  753. {
  754. name: "Macro",
  755. height: math.unit(200, "feet"),
  756. default: true
  757. },
  758. {
  759. name: "Megamacro",
  760. height: math.unit(100, "miles")
  761. },
  762. ]
  763. )
  764. )
  765. characterMakers.push(() => makeCharacter(
  766. { name: "Natasha" },
  767. {
  768. front: {
  769. height: math.unit(5 + 5 / 12, "feet"),
  770. weight: math.unit(75, "kg"),
  771. name: "Front",
  772. image: {
  773. source: "./media/characters/natasha/front.svg",
  774. extra: 875 / 846,
  775. bottom: 0.01
  776. }
  777. },
  778. },
  779. [
  780. {
  781. name: "Normal",
  782. height: math.unit(5 + 5 / 12, "feet")
  783. },
  784. {
  785. name: "Large",
  786. height: math.unit(12, "feet")
  787. },
  788. {
  789. name: "Macro",
  790. height: math.unit(100, "feet"),
  791. default: true
  792. },
  793. {
  794. name: "Macro+",
  795. height: math.unit(260, "feet")
  796. },
  797. {
  798. name: "Macro++",
  799. height: math.unit(1, "mile")
  800. },
  801. ]
  802. ))
  803. characterMakers.push(() => makeCharacter(
  804. { name: "Malik" },
  805. {
  806. front: {
  807. height: math.unit(6, "feet"),
  808. weight: math.unit(75, "kg"),
  809. name: "Front",
  810. image: {
  811. source: "./media/characters/malik/front.svg"
  812. }
  813. },
  814. side: {
  815. height: math.unit(6, "feet"),
  816. weight: math.unit(75, "kg"),
  817. name: "Side",
  818. image: {
  819. source: "./media/characters/malik/side.svg",
  820. extra: 1.1539
  821. }
  822. },
  823. back: {
  824. height: math.unit(6, "feet"),
  825. weight: math.unit(75, "kg"),
  826. name: "Back",
  827. image: {
  828. source: "./media/characters/malik/back.svg"
  829. }
  830. },
  831. },
  832. [
  833. {
  834. name: "Macro",
  835. height: math.unit(156, "feet"),
  836. default: true
  837. },
  838. {
  839. name: "Macro+",
  840. height: math.unit(1188, "feet")
  841. },
  842. ]
  843. ))
  844. characterMakers.push(() => makeCharacter(
  845. { name: "Sefer" },
  846. {
  847. front: {
  848. height: math.unit(6, "feet"),
  849. weight: math.unit(75, "kg"),
  850. name: "Front",
  851. image: {
  852. source: "./media/characters/sefer/front.svg"
  853. }
  854. },
  855. back: {
  856. height: math.unit(6, "feet"),
  857. weight: math.unit(75, "kg"),
  858. name: "Back",
  859. image: {
  860. source: "./media/characters/sefer/back.svg"
  861. }
  862. },
  863. },
  864. [
  865. {
  866. name: "Normal",
  867. height: math.unit(6, "feet"),
  868. default: true
  869. },
  870. ]
  871. ))
  872. characterMakers.push(() => makeCharacter(
  873. { name: "North" },
  874. {
  875. body: {
  876. height: math.unit(2.2428, "meter"),
  877. weight: math.unit(124.738, "kg"),
  878. name: "Body",
  879. image: {
  880. extra: 1225 / 1050,
  881. source: "./media/characters/north/front.svg"
  882. }
  883. }
  884. },
  885. [
  886. {
  887. name: "Micro",
  888. height: math.unit(4, "inches")
  889. },
  890. {
  891. name: "Macro",
  892. height: math.unit(63, "meters")
  893. },
  894. {
  895. name: "Megamacro",
  896. height: math.unit(101, "miles"),
  897. default: true
  898. }
  899. ]
  900. ))
  901. characterMakers.push(() => makeCharacter(
  902. { name: "Talan" },
  903. {
  904. body: {
  905. height: math.unit(2, "meter"),
  906. weight: math.unit(70, "kg"),
  907. name: "Body",
  908. image: {
  909. bottom: 0.02,
  910. source: "./media/characters/talan/front.svg"
  911. }
  912. }
  913. },
  914. [
  915. {
  916. name: "Normal",
  917. height: math.unit(4, "meters")
  918. },
  919. {
  920. name: "Macro",
  921. height: math.unit(100, "meters")
  922. },
  923. {
  924. name: "Megamacro",
  925. height: math.unit(2, "miles"),
  926. default: true
  927. },
  928. {
  929. name: "Gigamacro",
  930. height: math.unit(5000, "miles")
  931. },
  932. {
  933. name: "Teramacro",
  934. height: math.unit(100, "parsecs")
  935. }
  936. ]
  937. ))
  938. characterMakers.push(() => makeCharacter(
  939. { name: "Gael'Rathus" },
  940. {
  941. front: {
  942. height: math.unit(2, "meter"),
  943. weight: math.unit(90, "kg"),
  944. name: "Front",
  945. image: {
  946. source: "./media/characters/gael'rathus/front.svg"
  947. }
  948. },
  949. frontAlt: {
  950. height: math.unit(2, "meter"),
  951. weight: math.unit(90, "kg"),
  952. name: "Front (alt)",
  953. image: {
  954. source: "./media/characters/gael'rathus/front-alt.svg"
  955. }
  956. },
  957. frontAlt2: {
  958. height: math.unit(2, "meter"),
  959. weight: math.unit(90, "kg"),
  960. name: "Front (alt 2)",
  961. image: {
  962. source: "./media/characters/gael'rathus/front-alt-2.svg"
  963. }
  964. }
  965. },
  966. [
  967. {
  968. name: "Normal",
  969. height: math.unit(9, "feet"),
  970. default: true
  971. },
  972. {
  973. name: "Large",
  974. height: math.unit(25, "feet")
  975. },
  976. {
  977. name: "Macro",
  978. height: math.unit(0.25, "miles")
  979. },
  980. {
  981. name: "Megamacro",
  982. height: math.unit(10, "miles")
  983. }
  984. ]
  985. ))
  986. characterMakers.push(() => makeCharacter(
  987. { name: "Sosha" },
  988. {
  989. side: {
  990. height: math.unit(2, "meter"),
  991. weight: math.unit(140, "kg"),
  992. name: "Side",
  993. image: {
  994. source: "./media/characters/sosha/side.svg",
  995. bottom: 0.042
  996. }
  997. },
  998. },
  999. [
  1000. {
  1001. name: "Normal",
  1002. height: math.unit(12, "feet"),
  1003. default: true
  1004. }
  1005. ]
  1006. ))
  1007. characterMakers.push(() => makeCharacter(
  1008. { name: "RuNNoLa" },
  1009. {
  1010. side: {
  1011. height: math.unit(5 + 5 / 12, "feet"),
  1012. weight: math.unit(170, "kg"),
  1013. name: "Side",
  1014. image: {
  1015. source: "./media/characters/runnola/side.svg",
  1016. extra: 741 / 448,
  1017. bottom: 0.05
  1018. }
  1019. },
  1020. },
  1021. [
  1022. {
  1023. name: "Small",
  1024. height: math.unit(3, "feet")
  1025. },
  1026. {
  1027. name: "Normal",
  1028. height: math.unit(5 + 5 / 12, "feet"),
  1029. default: true
  1030. },
  1031. {
  1032. name: "Big",
  1033. height: math.unit(10, "feet")
  1034. },
  1035. ]
  1036. ))
  1037. characterMakers.push(() => makeCharacter(
  1038. { name: "Kurribird" },
  1039. {
  1040. front: {
  1041. height: math.unit(2, "meter"),
  1042. weight: math.unit(50, "kg"),
  1043. name: "Front",
  1044. image: {
  1045. source: "./media/characters/kurribird/front.svg",
  1046. bottom: 0.015
  1047. }
  1048. },
  1049. frontAlt: {
  1050. height: math.unit(1.5, "meter"),
  1051. weight: math.unit(50, "kg"),
  1052. name: "Front (Alt)",
  1053. image: {
  1054. source: "./media/characters/kurribird/front-alt.svg",
  1055. extra: 1.45
  1056. }
  1057. },
  1058. },
  1059. [
  1060. {
  1061. name: "Normal",
  1062. height: math.unit(7, "feet")
  1063. },
  1064. {
  1065. name: "Big",
  1066. height: math.unit(12, "feet"),
  1067. default: true
  1068. },
  1069. {
  1070. name: "Macro",
  1071. height: math.unit(1500, "feet")
  1072. },
  1073. {
  1074. name: "Megamacro",
  1075. height: math.unit(2, "miles")
  1076. }
  1077. ]
  1078. ))
  1079. characterMakers.push(() => makeCharacter(
  1080. { name: "Elbial" },
  1081. {
  1082. front: {
  1083. height: math.unit(2, "meter"),
  1084. weight: math.unit(80, "kg"),
  1085. name: "Front",
  1086. image: {
  1087. source: "./media/characters/elbial/front.svg"
  1088. }
  1089. },
  1090. side: {
  1091. height: math.unit(2, "meter"),
  1092. weight: math.unit(80, "kg"),
  1093. name: "Side",
  1094. image: {
  1095. source: "./media/characters/elbial/side.svg"
  1096. }
  1097. },
  1098. back: {
  1099. height: math.unit(2, "meter"),
  1100. weight: math.unit(80, "kg"),
  1101. name: "Back",
  1102. image: {
  1103. source: "./media/characters/elbial/back.svg"
  1104. }
  1105. },
  1106. },
  1107. [
  1108. {
  1109. name: "Large",
  1110. height: math.unit(100, "feet")
  1111. },
  1112. {
  1113. name: "Macro",
  1114. height: math.unit(500, "feet"),
  1115. default: true
  1116. },
  1117. {
  1118. name: "Megamacro",
  1119. height: math.unit(10, "miles")
  1120. },
  1121. {
  1122. name: "Gigamacro",
  1123. height: math.unit(25000, "miles")
  1124. },
  1125. {
  1126. name: "Full-Size",
  1127. height: math.unit(8000000, "gigaparsecs")
  1128. }
  1129. ]
  1130. ))
  1131. characterMakers.push(() => makeCharacter(
  1132. { name: "Noah" },
  1133. {
  1134. front: {
  1135. height: math.unit(2, "meter"),
  1136. weight: math.unit(60, "kg"),
  1137. name: "Front",
  1138. image: {
  1139. source: "./media/characters/noah/front.svg"
  1140. }
  1141. },
  1142. talons: {
  1143. height: math.unit(0.315, "meter"),
  1144. name: "Talons",
  1145. image: {
  1146. source: "./media/characters/noah/talons.svg"
  1147. }
  1148. }
  1149. },
  1150. [
  1151. {
  1152. name: "Large",
  1153. height: math.unit(50, "feet")
  1154. },
  1155. {
  1156. name: "Macro",
  1157. height: math.unit(750, "feet"),
  1158. default: true
  1159. },
  1160. {
  1161. name: "Megamacro",
  1162. height: math.unit(50, "miles")
  1163. },
  1164. {
  1165. name: "Gigamacro",
  1166. height: math.unit(100000, "miles")
  1167. },
  1168. {
  1169. name: "Full-Size",
  1170. height: math.unit(3000000000, "miles")
  1171. }
  1172. ]
  1173. ))
  1174. characterMakers.push(() => makeCharacter(
  1175. { name: "Natalya" },
  1176. {
  1177. front: {
  1178. height: math.unit(2, "meter"),
  1179. weight: math.unit(80, "kg"),
  1180. name: "Front",
  1181. image: {
  1182. source: "./media/characters/natalya/front.svg"
  1183. }
  1184. },
  1185. back: {
  1186. height: math.unit(2, "meter"),
  1187. weight: math.unit(80, "kg"),
  1188. name: "Back",
  1189. image: {
  1190. source: "./media/characters/natalya/back.svg"
  1191. }
  1192. }
  1193. },
  1194. [
  1195. {
  1196. name: "Normal",
  1197. height: math.unit(150, "feet"),
  1198. default: true
  1199. },
  1200. {
  1201. name: "Megamacro",
  1202. height: math.unit(5, "miles")
  1203. },
  1204. {
  1205. name: "Full-Size",
  1206. height: math.unit(600, "kiloparsecs")
  1207. }
  1208. ]
  1209. ))
  1210. characterMakers.push(() => makeCharacter(
  1211. { name: "Erestrebah" },
  1212. {
  1213. front: {
  1214. height: math.unit(2, "meter"),
  1215. weight: math.unit(50, "kg"),
  1216. name: "Front",
  1217. image: {
  1218. source: "./media/characters/erestrebah/front.svg",
  1219. extra: 208 / 193,
  1220. bottom: 0.055
  1221. }
  1222. },
  1223. back: {
  1224. height: math.unit(2, "meter"),
  1225. weight: math.unit(50, "kg"),
  1226. name: "Back",
  1227. image: {
  1228. source: "./media/characters/erestrebah/back.svg",
  1229. extra: 1.3
  1230. }
  1231. }
  1232. },
  1233. [
  1234. {
  1235. name: "Normal",
  1236. height: math.unit(10, "feet")
  1237. },
  1238. {
  1239. name: "Large",
  1240. height: math.unit(50, "feet"),
  1241. default: true
  1242. },
  1243. {
  1244. name: "Macro",
  1245. height: math.unit(300, "feet")
  1246. },
  1247. {
  1248. name: "Macro+",
  1249. height: math.unit(750, "feet")
  1250. },
  1251. {
  1252. name: "Megamacro",
  1253. height: math.unit(3, "miles")
  1254. }
  1255. ]
  1256. ))
  1257. characterMakers.push(() => makeCharacter(
  1258. { name: "Jennifer" },
  1259. {
  1260. front: {
  1261. height: math.unit(2, "meter"),
  1262. weight: math.unit(80, "kg"),
  1263. name: "Front",
  1264. image: {
  1265. source: "./media/characters/jennifer/front.svg",
  1266. bottom: 0.11,
  1267. extra: 1.16
  1268. }
  1269. },
  1270. frontAlt: {
  1271. height: math.unit(2, "meter"),
  1272. weight: math.unit(80, "kg"),
  1273. name: "Front (Alt)",
  1274. image: {
  1275. source: "./media/characters/jennifer/front-alt.svg"
  1276. }
  1277. }
  1278. },
  1279. [
  1280. {
  1281. name: "Canon Height",
  1282. height: math.unit(120, "feet"),
  1283. default: true
  1284. },
  1285. {
  1286. name: "Macro+",
  1287. height: math.unit(300, "feet")
  1288. },
  1289. {
  1290. name: "Megamacro",
  1291. height: math.unit(20000, "feet")
  1292. }
  1293. ]
  1294. ))
  1295. characterMakers.push(() => makeCharacter(
  1296. { name: "Kalista" },
  1297. {
  1298. front: {
  1299. height: math.unit(2, "meter"),
  1300. weight: math.unit(50, "kg"),
  1301. name: "Front",
  1302. image: {
  1303. source: "./media/characters/kalista/front.svg",
  1304. extra: 1947 / 1700
  1305. }
  1306. },
  1307. back: {
  1308. height: math.unit(2, "meter"),
  1309. weight: math.unit(50, "kg"),
  1310. name: "Back",
  1311. image: {
  1312. source: "./media/characters/kalista/back.svg",
  1313. extra: 1366 / 1156
  1314. }
  1315. }
  1316. },
  1317. [
  1318. {
  1319. name: "Uncomfortably Small",
  1320. height: math.unit(10, "feet")
  1321. },
  1322. {
  1323. name: "Small",
  1324. height: math.unit(30, "feet")
  1325. },
  1326. {
  1327. name: "Macro",
  1328. height: math.unit(100, "feet"),
  1329. default: true
  1330. },
  1331. {
  1332. name: "Macro+",
  1333. height: math.unit(2000, "feet")
  1334. },
  1335. {
  1336. name: "True Form",
  1337. height: math.unit(8924, "miles")
  1338. }
  1339. ]
  1340. ))
  1341. characterMakers.push(() => makeCharacter(
  1342. { name: "GiantGrowingVixen" },
  1343. {
  1344. front: {
  1345. height: math.unit(2, "meter"),
  1346. weight: math.unit(120, "kg"),
  1347. name: "Front",
  1348. image: {
  1349. source: "./media/characters/ggv/front.svg"
  1350. }
  1351. },
  1352. side: {
  1353. height: math.unit(2, "meter"),
  1354. weight: math.unit(120, "kg"),
  1355. name: "Side",
  1356. image: {
  1357. source: "./media/characters/ggv/side.svg"
  1358. }
  1359. }
  1360. },
  1361. [
  1362. {
  1363. name: "Extremely Puny",
  1364. height: math.unit(9 + 5 / 12, "feet")
  1365. },
  1366. {
  1367. name: "Horribly Small",
  1368. height: math.unit(47.7, "miles"),
  1369. default: true
  1370. },
  1371. {
  1372. name: "Reasonably Sized",
  1373. height: math.unit(25000, "parsecs")
  1374. },
  1375. {
  1376. name: "Slightly Uncompressed",
  1377. height: math.unit(7.77e31, "parsecs")
  1378. },
  1379. {
  1380. name: "Omniversal",
  1381. height: math.unit(1e300, "meters")
  1382. },
  1383. ]
  1384. ))
  1385. characterMakers.push(() => makeCharacter(
  1386. { name: "Napalm" },
  1387. {
  1388. front: {
  1389. height: math.unit(2, "meter"),
  1390. weight: math.unit(75, "lb"),
  1391. name: "Front",
  1392. image: {
  1393. source: "./media/characters/napalm/front.svg"
  1394. }
  1395. },
  1396. back: {
  1397. height: math.unit(2, "meter"),
  1398. weight: math.unit(75, "lb"),
  1399. name: "Back",
  1400. image: {
  1401. source: "./media/characters/napalm/back.svg"
  1402. }
  1403. }
  1404. },
  1405. [
  1406. {
  1407. name: "Standard",
  1408. height: math.unit(55, "feet"),
  1409. default: true
  1410. }
  1411. ]
  1412. ))
  1413. characterMakers.push(() => makeCharacter(
  1414. { name: "Asana" },
  1415. {
  1416. front: {
  1417. height: math.unit(7 + 5 / 6, "feet"),
  1418. weight: math.unit(325, "lb"),
  1419. name: "Front",
  1420. image: {
  1421. source: "./media/characters/asana/front.svg",
  1422. extra: 1128 / 1068
  1423. }
  1424. },
  1425. back: {
  1426. height: math.unit(7 + 5 / 6, "feet"),
  1427. weight: math.unit(325, "lb"),
  1428. name: "Back",
  1429. image: {
  1430. source: "./media/characters/asana/back.svg",
  1431. extra: 1128 / 1068
  1432. }
  1433. },
  1434. },
  1435. [
  1436. {
  1437. name: "Standard",
  1438. height: math.unit(7 + 5 / 6, "feet"),
  1439. default: true
  1440. },
  1441. {
  1442. name: "Large",
  1443. height: math.unit(10, "meters")
  1444. },
  1445. {
  1446. name: "Macro",
  1447. height: math.unit(2500, "meters")
  1448. },
  1449. {
  1450. name: "Megamacro",
  1451. height: math.unit(5e6, "meters")
  1452. },
  1453. {
  1454. name: "Examacro",
  1455. height: math.unit(5e12, "lightyears")
  1456. },
  1457. {
  1458. name: "Max Size",
  1459. height: math.unit(1e31, "lightyears")
  1460. }
  1461. ]
  1462. ))
  1463. characterMakers.push(() => makeCharacter(
  1464. { name: "Ebony" },
  1465. {
  1466. front: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(60, "kg"),
  1469. name: "Front",
  1470. image: {
  1471. source: "./media/characters/ebony/front.svg",
  1472. bottom: 0.03,
  1473. extra: 1045 / 810 + 0.03
  1474. }
  1475. },
  1476. side: {
  1477. height: math.unit(2, "meter"),
  1478. weight: math.unit(60, "kg"),
  1479. name: "Side",
  1480. image: {
  1481. source: "./media/characters/ebony/side.svg",
  1482. bottom: 0.03,
  1483. extra: 1045 / 810 + 0.03
  1484. }
  1485. },
  1486. back: {
  1487. height: math.unit(2, "meter"),
  1488. weight: math.unit(60, "kg"),
  1489. name: "Back",
  1490. image: {
  1491. source: "./media/characters/ebony/back.svg",
  1492. bottom: 0.01,
  1493. extra: 1045 / 810 + 0.01
  1494. }
  1495. },
  1496. },
  1497. [
  1498. // TODO check why I did this lol
  1499. {
  1500. name: "Standard",
  1501. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1502. default: true
  1503. },
  1504. {
  1505. name: "Macro",
  1506. height: math.unit(200, "feet")
  1507. },
  1508. {
  1509. name: "Gigamacro",
  1510. height: math.unit(13000, "km")
  1511. }
  1512. ]
  1513. ))
  1514. characterMakers.push(() => makeCharacter(
  1515. { name: "Mountain" },
  1516. {
  1517. front: {
  1518. height: math.unit(6, "feet"),
  1519. weight: math.unit(175, "lb"),
  1520. name: "Front",
  1521. image: {
  1522. source: "./media/characters/mountain/front.svg"
  1523. }
  1524. },
  1525. back: {
  1526. height: math.unit(6, "feet"),
  1527. weight: math.unit(175, "lb"),
  1528. name: "Back",
  1529. image: {
  1530. source: "./media/characters/mountain/back.svg"
  1531. }
  1532. },
  1533. },
  1534. [
  1535. {
  1536. name: "Large",
  1537. height: math.unit(20, "meters")
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(300, "meters")
  1542. },
  1543. {
  1544. name: "Gigamacro",
  1545. height: math.unit(10000, "km"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Examacro",
  1550. height: math.unit(10e9, "lightyears")
  1551. }
  1552. ]
  1553. ))
  1554. characterMakers.push(() => makeCharacter(
  1555. { name: "Rick" },
  1556. {
  1557. front: {
  1558. height: math.unit(8, "feet"),
  1559. weight: math.unit(500, "lb"),
  1560. name: "Front",
  1561. image: {
  1562. source: "./media/characters/rick/front.svg"
  1563. }
  1564. }
  1565. },
  1566. [
  1567. {
  1568. name: "Normal",
  1569. height: math.unit(8, "feet"),
  1570. default: true
  1571. },
  1572. {
  1573. name: "Macro",
  1574. height: math.unit(5, "km")
  1575. }
  1576. ]
  1577. ))
  1578. characterMakers.push(() => makeCharacter(
  1579. { name: "Ona" },
  1580. {
  1581. front: {
  1582. height: math.unit(8, "feet"),
  1583. weight: math.unit(120, "lb"),
  1584. name: "Front",
  1585. image: {
  1586. source: "./media/characters/ona/front.svg"
  1587. }
  1588. },
  1589. frontAlt: {
  1590. height: math.unit(8, "feet"),
  1591. weight: math.unit(120, "lb"),
  1592. name: "Front (Alt)",
  1593. image: {
  1594. source: "./media/characters/ona/front-alt.svg"
  1595. }
  1596. },
  1597. back: {
  1598. height: math.unit(8, "feet"),
  1599. weight: math.unit(120, "lb"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/ona/back.svg"
  1603. }
  1604. },
  1605. foot: {
  1606. height: math.unit(1.1, "feet"),
  1607. name: "Foot",
  1608. image: {
  1609. source: "./media/characters/ona/foot.svg"
  1610. }
  1611. }
  1612. },
  1613. [
  1614. {
  1615. name: "Megamacro",
  1616. height: math.unit(70, "km"),
  1617. default: true
  1618. },
  1619. {
  1620. name: "Gigamacro",
  1621. height: math.unit(681818, "miles")
  1622. },
  1623. {
  1624. name: "Examacro",
  1625. height: math.unit(3800000, "lightyears")
  1626. },
  1627. ]
  1628. ))
  1629. characterMakers.push(() => makeCharacter(
  1630. { name: "Mech" },
  1631. {
  1632. front: {
  1633. height: math.unit(12, "feet"),
  1634. weight: math.unit(3000, "lb"),
  1635. name: "Front",
  1636. image: {
  1637. source: "./media/characters/mech/front.svg",
  1638. bottom: 0.025,
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(12, "feet"),
  1643. weight: math.unit(3000, "lb"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/mech/back.svg",
  1647. bottom: 0.03,
  1648. }
  1649. }
  1650. },
  1651. [
  1652. {
  1653. name: "Normal",
  1654. height: math.unit(12, "feet")
  1655. },
  1656. {
  1657. name: "Macro",
  1658. height: math.unit(300, "feet"),
  1659. default: true
  1660. },
  1661. {
  1662. name: "Macro+",
  1663. height: math.unit(1500, "feet")
  1664. },
  1665. ]
  1666. ))
  1667. characterMakers.push(() => makeCharacter(
  1668. { name: "Gregory" },
  1669. {
  1670. front: {
  1671. height: math.unit(1.3, "meter"),
  1672. weight: math.unit(30, "kg"),
  1673. name: "Front",
  1674. image: {
  1675. source: "./media/characters/gregory/front.svg",
  1676. }
  1677. }
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(1.3, "meter"),
  1683. default: true
  1684. },
  1685. {
  1686. name: "Macro",
  1687. height: math.unit(20, "meter")
  1688. }
  1689. ]
  1690. ))
  1691. characterMakers.push(() => makeCharacter(
  1692. { name: "Elory" },
  1693. {
  1694. front: {
  1695. height: math.unit(2.8, "meter"),
  1696. weight: math.unit(200, "kg"),
  1697. name: "Front",
  1698. image: {
  1699. source: "./media/characters/elory/front.svg",
  1700. }
  1701. }
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(2.8, "meter"),
  1707. default: true
  1708. },
  1709. {
  1710. name: "Macro",
  1711. height: math.unit(38, "meter")
  1712. }
  1713. ]
  1714. ))
  1715. characterMakers.push(() => makeCharacter(
  1716. { name: "Angelpatamon" },
  1717. {
  1718. front: {
  1719. height: math.unit(470, "feet"),
  1720. weight: math.unit(924, "tons"),
  1721. name: "Front",
  1722. image: {
  1723. source: "./media/characters/angelpatamon/front.svg",
  1724. }
  1725. }
  1726. },
  1727. [
  1728. {
  1729. name: "Normal",
  1730. height: math.unit(470, "feet"),
  1731. default: true
  1732. },
  1733. {
  1734. name: "Deity Size I",
  1735. height: math.unit(28651.2, "km")
  1736. },
  1737. {
  1738. name: "Deity Size II",
  1739. height: math.unit(171907.2, "km")
  1740. }
  1741. ]
  1742. ))
  1743. characterMakers.push(() => makeCharacter(
  1744. { name: "Cryae" },
  1745. {
  1746. side: {
  1747. height: math.unit(7.2, "meter"),
  1748. weight: math.unit(8.2, "tons"),
  1749. name: "Side",
  1750. image: {
  1751. source: "./media/characters/cryae/side.svg",
  1752. extra: 3500 / 1500
  1753. }
  1754. }
  1755. },
  1756. [
  1757. {
  1758. name: "Normal",
  1759. height: math.unit(7.2, "meter"),
  1760. default: true
  1761. }
  1762. ]
  1763. ))
  1764. characterMakers.push(() => makeCharacter(
  1765. { name: "Xera" },
  1766. {
  1767. front: {
  1768. height: math.unit(6, "feet"),
  1769. weight: math.unit(175, "lb"),
  1770. name: "Front",
  1771. image: {
  1772. source: "./media/characters/xera/front.svg",
  1773. extra: 2300 / 2061
  1774. }
  1775. },
  1776. side: {
  1777. height: math.unit(6, "feet"),
  1778. weight: math.unit(175, "lb"),
  1779. name: "Side",
  1780. image: {
  1781. source: "./media/characters/xera/side.svg",
  1782. extra: 2300 / 2061
  1783. }
  1784. },
  1785. back: {
  1786. height: math.unit(6, "feet"),
  1787. weight: math.unit(175, "lb"),
  1788. name: "Back",
  1789. image: {
  1790. source: "./media/characters/xera/back.svg"
  1791. }
  1792. },
  1793. },
  1794. [
  1795. {
  1796. name: "Small",
  1797. height: math.unit(10, "feet")
  1798. },
  1799. {
  1800. name: "Macro",
  1801. height: math.unit(500, "meters"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Macro+",
  1806. height: math.unit(10, "km")
  1807. },
  1808. {
  1809. name: "Gigamacro",
  1810. height: math.unit(25000, "km")
  1811. },
  1812. {
  1813. name: "Teramacro",
  1814. height: math.unit(3e6, "km")
  1815. }
  1816. ]
  1817. ))
  1818. characterMakers.push(() => makeCharacter(
  1819. { name: "Nebula" },
  1820. {
  1821. front: {
  1822. height: math.unit(6, "feet"),
  1823. weight: math.unit(175, "lb"),
  1824. name: "Front",
  1825. image: {
  1826. source: "./media/characters/nebula/front.svg",
  1827. extra: 2600 / 2450
  1828. }
  1829. }
  1830. },
  1831. [
  1832. {
  1833. name: "Small",
  1834. height: math.unit(4.5, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(1500, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Megamacro",
  1843. height: math.unit(150, "km")
  1844. },
  1845. {
  1846. name: "Gigamacro",
  1847. height: math.unit(27000, "km")
  1848. }
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Abysgar" },
  1853. {
  1854. front: {
  1855. height: math.unit(6, "feet"),
  1856. weight: math.unit(225, "lb"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/abysgar/front.svg"
  1860. }
  1861. }
  1862. },
  1863. [
  1864. {
  1865. name: "Small",
  1866. height: math.unit(4.5, "meters")
  1867. },
  1868. {
  1869. name: "Macro",
  1870. height: math.unit(1250, "meters"),
  1871. default: true
  1872. },
  1873. {
  1874. name: "Megamacro",
  1875. height: math.unit(125, "km")
  1876. },
  1877. {
  1878. name: "Gigamacro",
  1879. height: math.unit(26000, "km")
  1880. }
  1881. ]
  1882. ))
  1883. characterMakers.push(() => makeCharacter(
  1884. { name: "Yakuz" },
  1885. {
  1886. front: {
  1887. height: math.unit(6, "feet"),
  1888. weight: math.unit(180, "lb"),
  1889. name: "Front",
  1890. image: {
  1891. source: "./media/characters/yakuz/front.svg"
  1892. }
  1893. }
  1894. },
  1895. [
  1896. {
  1897. name: "Small",
  1898. height: math.unit(5, "meters")
  1899. },
  1900. {
  1901. name: "Macro",
  1902. height: math.unit(1500, "meters"),
  1903. default: true
  1904. },
  1905. {
  1906. name: "Megamacro",
  1907. height: math.unit(200, "km")
  1908. },
  1909. {
  1910. name: "Gigamacro",
  1911. height: math.unit(100000, "km")
  1912. }
  1913. ]
  1914. ))
  1915. characterMakers.push(() => makeCharacter(
  1916. { name: "Mirova" },
  1917. {
  1918. front: {
  1919. height: math.unit(6, "feet"),
  1920. weight: math.unit(175, "lb"),
  1921. name: "Front",
  1922. image: {
  1923. source: "./media/characters/mirova/front.svg"
  1924. }
  1925. }
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(5, "meters")
  1931. },
  1932. {
  1933. name: "Macro",
  1934. height: math.unit(900, "meters"),
  1935. default: true
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(135, "km")
  1940. },
  1941. {
  1942. name: "Gigamacro",
  1943. height: math.unit(20000, "km")
  1944. }
  1945. ]
  1946. ))
  1947. characterMakers.push(() => makeCharacter(
  1948. { name: "Asana (Mech)" },
  1949. {
  1950. side: {
  1951. height: math.unit(28.35, "feet"),
  1952. weight: math.unit(99.75, "tons"),
  1953. name: "Side",
  1954. image: {
  1955. source: "./media/characters/asana-mech/side.svg"
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(28.35, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(2500, "feet")
  1968. },
  1969. {
  1970. name: "Megamacro",
  1971. height: math.unit(25, "miles")
  1972. },
  1973. {
  1974. name: "Examacro",
  1975. height: math.unit(6e8, "lightyears")
  1976. },
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "Ashtrek" },
  1981. {
  1982. front: {
  1983. height: math.unit(2, "meters"),
  1984. weight: math.unit(70, "kg"),
  1985. name: "Front",
  1986. image: {
  1987. source: "./media/characters/ashtrek/front.svg",
  1988. extra: 560 / 524,
  1989. bottom: 0.01
  1990. }
  1991. },
  1992. frontArmor: {
  1993. height: math.unit(2, "meters"),
  1994. weight: math.unit(76, "kg"),
  1995. name: "Front (Armor)",
  1996. image: {
  1997. source: "./media/characters/ashtrek/front-armor.svg",
  1998. extra: 561 / 527,
  1999. bottom: 0.01
  2000. }
  2001. },
  2002. side: {
  2003. height: math.unit(2, "meters"),
  2004. weight: math.unit(70, "kg"),
  2005. name: "Side",
  2006. image: {
  2007. source: "./media/characters/ashtrek/side.svg",
  2008. extra: 1717 / 1609,
  2009. bottom: 0.005
  2010. }
  2011. },
  2012. back: {
  2013. height: math.unit(2, "meters"),
  2014. weight: math.unit(70, "kg"),
  2015. name: "Back",
  2016. image: {
  2017. source: "./media/characters/ashtrek/back.svg",
  2018. extra: 1570 / 1501
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "DEFCON 5",
  2025. height: math.unit(5, "meters")
  2026. },
  2027. {
  2028. name: "DEFCON 4",
  2029. height: math.unit(500, "meters"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "DEFCON 3",
  2034. height: math.unit(5, "km")
  2035. },
  2036. {
  2037. name: "DEFCON 2",
  2038. height: math.unit(500, "km")
  2039. },
  2040. {
  2041. name: "DEFCON 1",
  2042. height: math.unit(500000, "km")
  2043. },
  2044. {
  2045. name: "DEFCON 0",
  2046. height: math.unit(3, "gigaparsecs")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "Gale" },
  2052. {
  2053. front: {
  2054. height: math.unit(2, "meters"),
  2055. weight: math.unit(76, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/gale/front.svg"
  2059. }
  2060. },
  2061. frontAlt1: {
  2062. height: math.unit(2, "meters"),
  2063. weight: math.unit(76, "kg"),
  2064. name: "Front (Alt 1)",
  2065. image: {
  2066. source: "./media/characters/gale/front-alt-1.svg"
  2067. }
  2068. },
  2069. frontAlt2: {
  2070. height: math.unit(2, "meters"),
  2071. weight: math.unit(76, "kg"),
  2072. name: "Front (Alt 2)",
  2073. image: {
  2074. source: "./media/characters/gale/front-alt-2.svg"
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(7, "feet")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(150, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Macro+",
  2090. height: math.unit(300, "feet")
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "Draylen" },
  2096. {
  2097. front: {
  2098. height: math.unit(2, "meters"),
  2099. weight: math.unit(76, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/draylen/front.svg"
  2103. }
  2104. }
  2105. },
  2106. [
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(150, "feet"),
  2110. default: true
  2111. }
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Chez" },
  2116. {
  2117. front: {
  2118. height: math.unit(7 + 9 / 12, "feet"),
  2119. weight: math.unit(379, "lbs"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/chez/front.svg"
  2123. }
  2124. },
  2125. side: {
  2126. height: math.unit(7 + 9 / 12, "feet"),
  2127. weight: math.unit(379, "lbs"),
  2128. name: "Side",
  2129. image: {
  2130. source: "./media/characters/chez/side.svg"
  2131. }
  2132. }
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(7 + 9 / 12, "feet"),
  2138. default: true
  2139. },
  2140. {
  2141. name: "God King",
  2142. height: math.unit(9750000, "meters")
  2143. }
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "Kaylum" },
  2148. {
  2149. front: {
  2150. height: math.unit(6, "feet"),
  2151. weight: math.unit(275, "lbs"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/kaylum/front.svg",
  2155. bottom: 0.01,
  2156. extra: 1166 / 1031
  2157. }
  2158. },
  2159. frontWingless: {
  2160. height: math.unit(6, "feet"),
  2161. weight: math.unit(275, "lbs"),
  2162. name: "Front (Wingless)",
  2163. image: {
  2164. source: "./media/characters/kaylum/front-wingless.svg",
  2165. bottom: 0.01,
  2166. extra: 1117 / 1031
  2167. }
  2168. }
  2169. },
  2170. [
  2171. {
  2172. name: "Normal",
  2173. height: math.unit(3.05, "meters")
  2174. },
  2175. {
  2176. name: "Master",
  2177. height: math.unit(5.5, "meters")
  2178. },
  2179. {
  2180. name: "Rampage",
  2181. height: math.unit(19, "meters")
  2182. },
  2183. {
  2184. name: "Macro Lite",
  2185. height: math.unit(37, "meters")
  2186. },
  2187. {
  2188. name: "Hyper Predator",
  2189. height: math.unit(61, "meters")
  2190. },
  2191. {
  2192. name: "Macro",
  2193. height: math.unit(138, "meters"),
  2194. default: true
  2195. }
  2196. ]
  2197. ))
  2198. characterMakers.push(() => makeCharacter(
  2199. { name: "Geta" },
  2200. {
  2201. front: {
  2202. height: math.unit(6, "feet"),
  2203. weight: math.unit(150, "lbs"),
  2204. name: "Front",
  2205. image: {
  2206. source: "./media/characters/geta/front.svg"
  2207. }
  2208. }
  2209. },
  2210. [
  2211. {
  2212. name: "Micro",
  2213. height: math.unit(3, "inches"),
  2214. default: true
  2215. },
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(5 + 5 / 12, "feet")
  2219. }
  2220. ]
  2221. ))
  2222. characterMakers.push(() => makeCharacter(
  2223. { name: "Tyrnn" },
  2224. {
  2225. front: {
  2226. height: math.unit(6, "feet"),
  2227. weight: math.unit(300, "lbs"),
  2228. name: "Front",
  2229. image: {
  2230. source: "./media/characters/tyrnn/front.svg"
  2231. }
  2232. }
  2233. },
  2234. [
  2235. {
  2236. name: "Main Height",
  2237. height: math.unit(355, "feet"),
  2238. default: true
  2239. },
  2240. {
  2241. name: "Fave. Height",
  2242. height: math.unit(2400, "feet")
  2243. }
  2244. ]
  2245. ))
  2246. characterMakers.push(() => makeCharacter(
  2247. { name: "Apple" },
  2248. {
  2249. front: {
  2250. height: math.unit(6, "feet"),
  2251. weight: math.unit(300, "lbs"),
  2252. name: "Front",
  2253. image: {
  2254. source: "./media/characters/appledectomy/front.svg"
  2255. }
  2256. }
  2257. },
  2258. [
  2259. {
  2260. name: "Macro",
  2261. height: math.unit(2500, "feet")
  2262. },
  2263. {
  2264. name: "Megamacro",
  2265. height: math.unit(50, "miles"),
  2266. default: true
  2267. },
  2268. {
  2269. name: "Gigamacro",
  2270. height: math.unit(5000, "miles")
  2271. },
  2272. {
  2273. name: "Teramacro",
  2274. height: math.unit(250000, "miles")
  2275. },
  2276. ]
  2277. ))
  2278. characterMakers.push(() => makeCharacter(
  2279. { name: "Vulpes" },
  2280. {
  2281. front: {
  2282. height: math.unit(6, "feet"),
  2283. weight: math.unit(200, "lbs"),
  2284. name: "Front",
  2285. image: {
  2286. source: "./media/characters/vulpes/front.svg",
  2287. extra: 573 / 543,
  2288. bottom: 0.033
  2289. }
  2290. },
  2291. side: {
  2292. height: math.unit(6, "feet"),
  2293. weight: math.unit(200, "lbs"),
  2294. name: "Side",
  2295. image: {
  2296. source: "./media/characters/vulpes/side.svg",
  2297. extra: 573 / 543,
  2298. bottom: 0.01
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(6, "feet"),
  2303. weight: math.unit(200, "lbs"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/vulpes/back.svg",
  2307. extra: 573 / 543,
  2308. }
  2309. },
  2310. feet: {
  2311. height: math.unit(1.276, "feet"),
  2312. name: "Feet",
  2313. image: {
  2314. source: "./media/characters/vulpes/feet.svg"
  2315. }
  2316. },
  2317. maw: {
  2318. height: math.unit(1.18, "feet"),
  2319. name: "Maw",
  2320. image: {
  2321. source: "./media/characters/vulpes/maw.svg"
  2322. }
  2323. },
  2324. },
  2325. [
  2326. {
  2327. name: "Micro",
  2328. height: math.unit(2, "inches")
  2329. },
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(6.3, "feet")
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(850, "feet")
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(7500, "feet"),
  2341. default: true
  2342. },
  2343. {
  2344. name: "Gigamacro",
  2345. height: math.unit(570000, "miles")
  2346. }
  2347. ]
  2348. ))
  2349. characterMakers.push(() => makeCharacter(
  2350. { name: "Rain Fallen" },
  2351. {
  2352. front: {
  2353. height: math.unit(6, "feet"),
  2354. weight: math.unit(210, "lbs"),
  2355. name: "Front",
  2356. image: {
  2357. source: "./media/characters/rain-fallen/front.svg"
  2358. }
  2359. },
  2360. side: {
  2361. height: math.unit(6, "feet"),
  2362. weight: math.unit(210, "lbs"),
  2363. name: "Side",
  2364. image: {
  2365. source: "./media/characters/rain-fallen/side.svg"
  2366. }
  2367. },
  2368. back: {
  2369. height: math.unit(6, "feet"),
  2370. weight: math.unit(210, "lbs"),
  2371. name: "Back",
  2372. image: {
  2373. source: "./media/characters/rain-fallen/back.svg"
  2374. }
  2375. },
  2376. feral: {
  2377. height: math.unit(9, "feet"),
  2378. weight: math.unit(700, "lbs"),
  2379. name: "Feral",
  2380. image: {
  2381. source: "./media/characters/rain-fallen/feral.svg"
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(5, "meter")
  2389. },
  2390. {
  2391. name: "Macro",
  2392. height: math.unit(150, "meter"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Megamacro",
  2397. height: math.unit(278e6, "meter")
  2398. },
  2399. {
  2400. name: "Gigamacro",
  2401. height: math.unit(2e9, "meter")
  2402. },
  2403. {
  2404. name: "Teramacro",
  2405. height: math.unit(8e12, "meter")
  2406. },
  2407. {
  2408. name: "Devourer",
  2409. height: math.unit(14, "zettameters")
  2410. },
  2411. {
  2412. name: "Scarlet King",
  2413. height: math.unit(18, "yottameters")
  2414. },
  2415. {
  2416. name: "Void",
  2417. height: math.unit(6.66e66, "yottameters")
  2418. }
  2419. ]
  2420. ))
  2421. characterMakers.push(() => makeCharacter(
  2422. { name: "Zaakira" },
  2423. {
  2424. standing: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(180, "lbs"),
  2427. name: "Standing",
  2428. image: {
  2429. source: "./media/characters/zaakira/standing.svg"
  2430. }
  2431. },
  2432. laying: {
  2433. height: math.unit(3, "feet"),
  2434. weight: math.unit(180, "lbs"),
  2435. name: "Laying",
  2436. image: {
  2437. source: "./media/characters/zaakira/laying.svg"
  2438. }
  2439. },
  2440. },
  2441. [
  2442. {
  2443. name: "Normal",
  2444. height: math.unit(12, "feet")
  2445. },
  2446. {
  2447. name: "Macro",
  2448. height: math.unit(279, "feet"),
  2449. default: true
  2450. }
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Sigvald" },
  2455. {
  2456. front: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(250, "lbs"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/sigvald/front.svg",
  2462. extra: 1000 / 850
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(6, "feet"),
  2467. weight: math.unit(250, "lbs"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/sigvald/back.svg"
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(8, "feet")
  2478. },
  2479. {
  2480. name: "Large",
  2481. height: math.unit(12, "feet")
  2482. },
  2483. {
  2484. name: "Larger",
  2485. height: math.unit(20, "feet")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(150, "feet")
  2490. },
  2491. {
  2492. name: "Macro+",
  2493. height: math.unit(200, "feet"),
  2494. default: true
  2495. },
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Scott" },
  2500. {
  2501. side: {
  2502. height: math.unit(12, "feet"),
  2503. weight: math.unit(3000, "lbs"),
  2504. name: "Side",
  2505. image: {
  2506. source: "./media/characters/scott/side.svg",
  2507. extra: 1,
  2508. bottom: 0.069
  2509. }
  2510. },
  2511. upright: {
  2512. height: math.unit(12, "feet"),
  2513. weight: math.unit(3000, "lbs"),
  2514. name: "Upright",
  2515. image: {
  2516. source: "./media/characters/scott/upright.svg",
  2517. extra: 1,
  2518. bottom: 0.05
  2519. }
  2520. },
  2521. },
  2522. [
  2523. {
  2524. name: "Normal",
  2525. height: math.unit(12, "feet"),
  2526. default: true
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Tobias" },
  2532. {
  2533. side: {
  2534. height: math.unit(8, "meters"),
  2535. weight: math.unit(84755, "lbs"),
  2536. name: "Side",
  2537. image: {
  2538. source: "./media/characters/tobias/side.svg",
  2539. extra: 1474 / 1096,
  2540. bottom: 38.9/1513.1235
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Normal",
  2547. height: math.unit(8, "meters"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Kieran" },
  2554. {
  2555. front: {
  2556. height: math.unit(5.5, "feet"),
  2557. weight: math.unit(400, "lbs"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/kieran/front.svg",
  2561. extra: 1.05
  2562. }
  2563. },
  2564. side: {
  2565. height: math.unit(5.5, "feet"),
  2566. weight: math.unit(400, "lbs"),
  2567. name: "Side",
  2568. image: {
  2569. source: "./media/characters/kieran/side.svg",
  2570. extra: 950 / 850
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(5.5, "feet"),
  2578. default: true
  2579. },
  2580. ]
  2581. ))
  2582. characterMakers.push(() => makeCharacter(
  2583. { name: "Sanya" },
  2584. {
  2585. side: {
  2586. height: math.unit(2, "meters"),
  2587. weight: math.unit(70, "kg"),
  2588. name: "Side",
  2589. image: {
  2590. source: "./media/characters/sanya/side.svg",
  2591. bottom: 0.02,
  2592. extra: 1.02
  2593. }
  2594. },
  2595. },
  2596. [
  2597. {
  2598. name: "Small",
  2599. height: math.unit(2, "meters")
  2600. },
  2601. {
  2602. name: "Normal",
  2603. height: math.unit(3, "meters")
  2604. },
  2605. {
  2606. name: "Macro",
  2607. height: math.unit(16, "meters"),
  2608. default: true
  2609. },
  2610. ]
  2611. ))
  2612. characterMakers.push(() => makeCharacter(
  2613. { name: "Miranda" },
  2614. {
  2615. side: {
  2616. height: math.unit(2, "meters"),
  2617. weight: math.unit(120, "kg"),
  2618. name: "Front",
  2619. image: {
  2620. source: "./media/characters/miranda/front.svg",
  2621. extra: 10.6 / 10
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Normal",
  2628. height: math.unit(10, "feet"),
  2629. default: true
  2630. }
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "James" },
  2635. {
  2636. side: {
  2637. height: math.unit(2, "meters"),
  2638. weight: math.unit(100, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/james/front.svg",
  2642. extra: 10 / 8.5
  2643. }
  2644. },
  2645. },
  2646. [
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(8.5, "feet"),
  2650. default: true
  2651. }
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Heather" },
  2656. {
  2657. side: {
  2658. height: math.unit(9.5, "feet"),
  2659. weight: math.unit(2500, "lbs"),
  2660. name: "Side",
  2661. image: {
  2662. source: "./media/characters/heather/side.svg"
  2663. }
  2664. },
  2665. },
  2666. [
  2667. {
  2668. name: "Normal",
  2669. height: math.unit(9.5, "feet"),
  2670. default: true
  2671. }
  2672. ]
  2673. ))
  2674. characterMakers.push(() => makeCharacter(
  2675. { name: "Lukas" },
  2676. {
  2677. side: {
  2678. height: math.unit(6.5, "feet"),
  2679. weight: math.unit(400, "lbs"),
  2680. name: "Side",
  2681. image: {
  2682. source: "./media/characters/lukas/side.svg",
  2683. extra: 7.25 / 6.5
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(6.5, "feet"),
  2691. default: true
  2692. }
  2693. ]
  2694. ))
  2695. characterMakers.push(() => makeCharacter(
  2696. { name: "Louise" },
  2697. {
  2698. side: {
  2699. height: math.unit(5, "feet"),
  2700. weight: math.unit(3000, "lbs"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/louise/side.svg"
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(5, "feet"),
  2711. default: true
  2712. }
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Ramona" },
  2717. {
  2718. side: {
  2719. height: math.unit(6, "feet"),
  2720. weight: math.unit(150, "lbs"),
  2721. name: "Side",
  2722. image: {
  2723. source: "./media/characters/ramona/side.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(5.3, "meters"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(20, "stories")
  2736. },
  2737. {
  2738. name: "Macro+",
  2739. height: math.unit(50, "stories")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "Deerpuff" },
  2745. {
  2746. standing: {
  2747. height: math.unit(5.75, "feet"),
  2748. weight: math.unit(160, "lbs"),
  2749. name: "Standing",
  2750. image: {
  2751. source: "./media/characters/deerpuff/standing.svg",
  2752. extra: 682 / 624
  2753. }
  2754. },
  2755. sitting: {
  2756. height: math.unit(5.75 / 1.79, "feet"),
  2757. weight: math.unit(160, "lbs"),
  2758. name: "Sitting",
  2759. image: {
  2760. source: "./media/characters/deerpuff/sitting.svg",
  2761. bottom: 44 / 400,
  2762. extra: 1
  2763. }
  2764. },
  2765. taurLaying: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(400, "lbs"),
  2768. name: "Taur (Laying)",
  2769. image: {
  2770. source: "./media/characters/deerpuff/taur-laying.svg"
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Puffball",
  2777. height: math.unit(6, "inches")
  2778. },
  2779. {
  2780. name: "Normalpuff",
  2781. height: math.unit(5.75, "feet")
  2782. },
  2783. {
  2784. name: "Macropuff",
  2785. height: math.unit(1500, "feet"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Megapuff",
  2790. height: math.unit(500, "miles")
  2791. },
  2792. {
  2793. name: "Gigapuff",
  2794. height: math.unit(250000, "miles")
  2795. },
  2796. {
  2797. name: "Omegapuff",
  2798. height: math.unit(1000, "lightyears")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Vivian" },
  2804. {
  2805. stomping: {
  2806. height: math.unit(6, "feet"),
  2807. weight: math.unit(170, "lbs"),
  2808. name: "Stomping",
  2809. image: {
  2810. source: "./media/characters/vivian/stomping.svg"
  2811. }
  2812. },
  2813. sitting: {
  2814. height: math.unit(6 / 1.75, "feet"),
  2815. weight: math.unit(170, "lbs"),
  2816. name: "Sitting",
  2817. image: {
  2818. source: "./media/characters/vivian/sitting.svg",
  2819. bottom: 1 / 6.4,
  2820. extra: 1,
  2821. }
  2822. },
  2823. },
  2824. [
  2825. {
  2826. name: "Normal",
  2827. height: math.unit(7, "feet"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Macro",
  2832. height: math.unit(10, "stories")
  2833. },
  2834. {
  2835. name: "Macro+",
  2836. height: math.unit(30, "stories")
  2837. },
  2838. {
  2839. name: "Megamacro",
  2840. height: math.unit(10, "miles")
  2841. },
  2842. {
  2843. name: "Megamacro+",
  2844. height: math.unit(2750000, "meters")
  2845. },
  2846. ]
  2847. ))
  2848. characterMakers.push(() => makeCharacter(
  2849. { name: "Prince" },
  2850. {
  2851. front: {
  2852. height: math.unit(6, "feet"),
  2853. weight: math.unit(160, "lbs"),
  2854. name: "Front",
  2855. image: {
  2856. source: "./media/characters/prince/front.svg",
  2857. extra: 3400 / 3000
  2858. }
  2859. },
  2860. jumping: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(160, "lbs"),
  2863. name: "Jumping",
  2864. image: {
  2865. source: "./media/characters/prince/jump.svg",
  2866. extra: 2555 / 2134
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(7.75, "feet"),
  2874. default: true
  2875. },
  2876. {
  2877. name: "Not cute",
  2878. height: math.unit(17, "feet")
  2879. },
  2880. {
  2881. name: "I said NOT",
  2882. height: math.unit(91, "feet")
  2883. },
  2884. {
  2885. name: "Please stop",
  2886. height: math.unit(560, "feet")
  2887. },
  2888. {
  2889. name: "What have you done",
  2890. height: math.unit(2200, "feet")
  2891. },
  2892. {
  2893. name: "Deer God",
  2894. height: math.unit(3.6, "miles")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Psymon" },
  2900. {
  2901. standing: {
  2902. height: math.unit(6, "feet"),
  2903. weight: math.unit(300, "lbs"),
  2904. name: "Standing",
  2905. image: {
  2906. source: "./media/characters/psymon/standing.svg",
  2907. extra: 1888 / 1810,
  2908. bottom: 0.05
  2909. }
  2910. },
  2911. slithering: {
  2912. height: math.unit(6, "feet"),
  2913. weight: math.unit(300, "lbs"),
  2914. name: "Slithering",
  2915. image: {
  2916. source: "./media/characters/psymon/slithering.svg",
  2917. extra: 1330 / 1224
  2918. }
  2919. },
  2920. slitheringAlt: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(300, "lbs"),
  2923. name: "Slithering (Alt)",
  2924. image: {
  2925. source: "./media/characters/psymon/slithering-alt.svg",
  2926. extra: 1330 / 1224
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Normal",
  2933. height: math.unit(11.25, "feet"),
  2934. default: true
  2935. },
  2936. {
  2937. name: "Large",
  2938. height: math.unit(27, "feet")
  2939. },
  2940. {
  2941. name: "Giant",
  2942. height: math.unit(87, "feet")
  2943. },
  2944. {
  2945. name: "Macro",
  2946. height: math.unit(365, "feet")
  2947. },
  2948. {
  2949. name: "Megamacro",
  2950. height: math.unit(3, "miles")
  2951. },
  2952. {
  2953. name: "World Serpent",
  2954. height: math.unit(8000, "miles")
  2955. },
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "Daimos" },
  2960. {
  2961. front: {
  2962. height: math.unit(6, "feet"),
  2963. weight: math.unit(180, "lbs"),
  2964. name: "Front",
  2965. image: {
  2966. source: "./media/characters/daimos/front.svg",
  2967. extra: 4160 / 3897,
  2968. bottom: 0.021
  2969. }
  2970. }
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(8, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Big Dog",
  2980. height: math.unit(22, "feet")
  2981. },
  2982. {
  2983. name: "Macro",
  2984. height: math.unit(127, "feet")
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(3600, "feet")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Blake" },
  2994. {
  2995. side: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(180, "lbs"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/blake/side.svg",
  3001. extra: 1212 / 1120,
  3002. bottom: 0.05
  3003. }
  3004. },
  3005. crouched: {
  3006. height: math.unit(6 * 0.57, "feet"),
  3007. weight: math.unit(180, "lbs"),
  3008. name: "Crouched",
  3009. image: {
  3010. source: "./media/characters/blake/crouched.svg",
  3011. extra: 840 / 587,
  3012. bottom: 0.04
  3013. }
  3014. },
  3015. bent: {
  3016. height: math.unit(6 * 0.75, "feet"),
  3017. weight: math.unit(180, "lbs"),
  3018. name: "Bent",
  3019. image: {
  3020. source: "./media/characters/blake/bent.svg",
  3021. extra: 592 / 544,
  3022. bottom: 0.035
  3023. }
  3024. },
  3025. },
  3026. [
  3027. {
  3028. name: "Normal",
  3029. height: math.unit(8 + 1 / 6, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Big Backside",
  3034. height: math.unit(37, "feet")
  3035. },
  3036. {
  3037. name: "Subway Shredder",
  3038. height: math.unit(72, "feet")
  3039. },
  3040. {
  3041. name: "City Carver",
  3042. height: math.unit(1675, "feet")
  3043. },
  3044. {
  3045. name: "Tectonic Tweaker",
  3046. height: math.unit(2300, "miles")
  3047. },
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Guisetto" },
  3052. {
  3053. front: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(180, "lbs"),
  3056. name: "Front",
  3057. image: {
  3058. source: "./media/characters/guisetto/front.svg",
  3059. extra: 856 / 817,
  3060. bottom: 0.06
  3061. }
  3062. },
  3063. airborne: {
  3064. height: math.unit(6, "feet"),
  3065. weight: math.unit(180, "lbs"),
  3066. name: "Airborne",
  3067. image: {
  3068. source: "./media/characters/guisetto/airborne.svg",
  3069. extra: 584 / 525
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(10 + 11 / 12, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Large",
  3081. height: math.unit(35, "feet")
  3082. },
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(475, "feet")
  3086. },
  3087. ]
  3088. ))
  3089. characterMakers.push(() => makeCharacter(
  3090. { name: "Luxor" },
  3091. {
  3092. front: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(180, "lbs"),
  3095. name: "Front",
  3096. image: {
  3097. source: "./media/characters/luxor/front.svg",
  3098. extra: 2940 / 2152
  3099. }
  3100. },
  3101. back: {
  3102. height: math.unit(6, "feet"),
  3103. weight: math.unit(180, "lbs"),
  3104. name: "Back",
  3105. image: {
  3106. source: "./media/characters/luxor/back.svg",
  3107. extra: 1083 / 960
  3108. }
  3109. },
  3110. },
  3111. [
  3112. {
  3113. name: "Normal",
  3114. height: math.unit(5 + 5 / 6, "feet"),
  3115. default: true
  3116. },
  3117. {
  3118. name: "Lamp",
  3119. height: math.unit(50, "feet")
  3120. },
  3121. {
  3122. name: "Lämp",
  3123. height: math.unit(300, "feet")
  3124. },
  3125. {
  3126. name: "The sun is a lamp",
  3127. height: math.unit(250000, "miles")
  3128. },
  3129. ]
  3130. ))
  3131. characterMakers.push(() => makeCharacter(
  3132. { name: "Huoyan" },
  3133. {
  3134. front: {
  3135. height: math.unit(6, "feet"),
  3136. weight: math.unit(50, "lbs"),
  3137. name: "Front",
  3138. image: {
  3139. source: "./media/characters/huoyan/front.svg"
  3140. }
  3141. },
  3142. side: {
  3143. height: math.unit(6, "feet"),
  3144. weight: math.unit(180, "lbs"),
  3145. name: "Side",
  3146. image: {
  3147. source: "./media/characters/huoyan/side.svg"
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Chef",
  3154. height: math.unit(9, "feet")
  3155. },
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(65, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(780, "feet")
  3164. },
  3165. {
  3166. name: "Flaming Mountain",
  3167. height: math.unit(4.8, "miles")
  3168. },
  3169. {
  3170. name: "Celestial",
  3171. height: math.unit(765000, "miles")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Tails" },
  3177. {
  3178. front: {
  3179. height: math.unit(5 + 3 / 4, "feet"),
  3180. weight: math.unit(120, "lbs"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/tails/front.svg"
  3184. }
  3185. }
  3186. },
  3187. [
  3188. {
  3189. name: "Normal",
  3190. height: math.unit(5 + 3 / 4, "feet"),
  3191. default: true
  3192. }
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Rainy" },
  3197. {
  3198. front: {
  3199. height: math.unit(4, "feet"),
  3200. weight: math.unit(50, "lbs"),
  3201. name: "Front",
  3202. image: {
  3203. source: "./media/characters/rainy/front.svg"
  3204. }
  3205. }
  3206. },
  3207. [
  3208. {
  3209. name: "Macro",
  3210. height: math.unit(800, "feet"),
  3211. default: true
  3212. }
  3213. ]
  3214. ))
  3215. characterMakers.push(() => makeCharacter(
  3216. { name: "Rainier" },
  3217. {
  3218. front: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(150, "lbs"),
  3221. name: "Front",
  3222. image: {
  3223. source: "./media/characters/rainier/front.svg"
  3224. }
  3225. }
  3226. },
  3227. [
  3228. {
  3229. name: "Micro",
  3230. height: math.unit(2, "mm"),
  3231. default: true
  3232. }
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "Andy" },
  3237. {
  3238. front: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(180, "lbs"),
  3241. name: "Front",
  3242. image: {
  3243. source: "./media/characters/andy/front.svg"
  3244. }
  3245. }
  3246. },
  3247. [
  3248. {
  3249. name: "Normal",
  3250. height: math.unit(8, "feet"),
  3251. default: true
  3252. },
  3253. {
  3254. name: "Macro",
  3255. height: math.unit(1000, "feet")
  3256. },
  3257. {
  3258. name: "Megamacro",
  3259. height: math.unit(5, "miles")
  3260. },
  3261. {
  3262. name: "Gigamacro",
  3263. height: math.unit(5000, "miles")
  3264. },
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Cimmaron" },
  3269. {
  3270. frontClothed: {
  3271. height: math.unit(6, "feet"),
  3272. weight: math.unit(210, "lbs"),
  3273. name: "Front (Clothed)",
  3274. image: {
  3275. source: "./media/characters/cimmaron/front-clothed.svg",
  3276. extra: 701 / 676,
  3277. bottom: 0.046
  3278. }
  3279. },
  3280. backClothed: {
  3281. height: math.unit(6, "feet"),
  3282. weight: math.unit(210, "lbs"),
  3283. name: "Back (Clothed)",
  3284. image: {
  3285. source: "./media/characters/cimmaron/back-clothed.svg",
  3286. extra: 701 / 676,
  3287. bottom: 0.046
  3288. }
  3289. },
  3290. frontNude: {
  3291. height: math.unit(6, "feet"),
  3292. weight: math.unit(210, "lbs"),
  3293. name: "Front (Nude)",
  3294. image: {
  3295. source: "./media/characters/cimmaron/front-nude.svg",
  3296. extra: 701 / 676,
  3297. bottom: 0.046
  3298. }
  3299. },
  3300. backNude: {
  3301. height: math.unit(6, "feet"),
  3302. weight: math.unit(210, "lbs"),
  3303. name: "Back (Nude)",
  3304. image: {
  3305. source: "./media/characters/cimmaron/back-nude.svg",
  3306. extra: 701 / 676,
  3307. bottom: 0.046
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Normal",
  3314. height: math.unit(6, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Macro Mayor",
  3319. height: math.unit(350, "meters")
  3320. },
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Akari Kaen" },
  3325. {
  3326. front: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(200, "lbs"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/akari/front.svg",
  3332. extra: 962 / 901,
  3333. bottom: 0.04
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Micro",
  3340. height: math.unit(5, "inches"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Normal",
  3345. height: math.unit(7, "feet")
  3346. },
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Cynosura" },
  3351. {
  3352. front: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(140, "lbs"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/cynosura/front.svg",
  3358. extra: 896 / 847
  3359. }
  3360. },
  3361. back: {
  3362. height: math.unit(6, "feet"),
  3363. weight: math.unit(140, "lbs"),
  3364. name: "Back",
  3365. image: {
  3366. source: "./media/characters/cynosura/back.svg",
  3367. extra: 1365 / 1250
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Micro",
  3374. height: math.unit(4, "inches")
  3375. },
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(5.75, "feet"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Tall",
  3383. height: math.unit(10, "feet")
  3384. },
  3385. {
  3386. name: "Big",
  3387. height: math.unit(20, "feet")
  3388. },
  3389. {
  3390. name: "Macro",
  3391. height: math.unit(50, "feet")
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Gin" },
  3397. {
  3398. front: {
  3399. height: math.unit(6, "feet"),
  3400. weight: math.unit(170, "lbs"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/gin/front.svg",
  3404. extra: 1.053,
  3405. bottom: 0.025
  3406. }
  3407. },
  3408. foot: {
  3409. height: math.unit(6 / 4.25, "feet"),
  3410. name: "Foot",
  3411. image: {
  3412. source: "./media/characters/gin/foot.svg"
  3413. }
  3414. },
  3415. sole: {
  3416. height: math.unit(6 / 4.40, "feet"),
  3417. name: "Sole",
  3418. image: {
  3419. source: "./media/characters/gin/sole.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(9 + 4 / 12, "feet")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(1500, "feet")
  3431. },
  3432. {
  3433. name: "Megamacro",
  3434. height: math.unit(200, "miles"),
  3435. default: true
  3436. },
  3437. {
  3438. name: "Gigamacro",
  3439. height: math.unit(500, "megameters")
  3440. },
  3441. {
  3442. name: "Teramacro",
  3443. height: math.unit(15, "lightyears")
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Guy" },
  3449. {
  3450. front: {
  3451. height: math.unit(6 + 1 / 6, "feet"),
  3452. weight: math.unit(178, "lbs"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/guy/front.svg"
  3456. }
  3457. }
  3458. },
  3459. [
  3460. {
  3461. name: "Normal",
  3462. height: math.unit(6 + 1 / 6, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Large",
  3467. height: math.unit(25 + 7 / 12, "feet")
  3468. },
  3469. {
  3470. name: "Macro",
  3471. height: math.unit(60 + 9 / 12, "feet")
  3472. },
  3473. {
  3474. name: "Macro+",
  3475. height: math.unit(246, "feet")
  3476. },
  3477. {
  3478. name: "Macro++",
  3479. height: math.unit(878, "feet")
  3480. }
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Tiberius" },
  3485. {
  3486. front: {
  3487. height: math.unit(9, "feet"),
  3488. weight: math.unit(800, "lbs"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/tiberius/front.svg",
  3492. extra: 2295 / 2071
  3493. }
  3494. },
  3495. back: {
  3496. height: math.unit(9, "feet"),
  3497. weight: math.unit(800, "lbs"),
  3498. name: "Back",
  3499. image: {
  3500. source: "./media/characters/tiberius/back.svg",
  3501. extra: 2373 / 2160
  3502. }
  3503. },
  3504. },
  3505. [
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(9, "feet"),
  3509. default: true
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Surgo" },
  3515. {
  3516. front: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(600, "lbs"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/surgo/front.svg",
  3522. extra: 3591 / 2227
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(6, "feet"),
  3527. weight: math.unit(600, "lbs"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/surgo/back.svg",
  3531. extra: 3557 / 2228
  3532. }
  3533. },
  3534. laying: {
  3535. height: math.unit(6 * 0.85, "feet"),
  3536. weight: math.unit(600, "lbs"),
  3537. name: "Laying",
  3538. image: {
  3539. source: "./media/characters/surgo/laying.svg"
  3540. }
  3541. },
  3542. },
  3543. [
  3544. {
  3545. name: "Normal",
  3546. height: math.unit(6, "feet"),
  3547. default: true
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Cibus" },
  3553. {
  3554. side: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(150, "lbs"),
  3557. name: "Side",
  3558. image: {
  3559. source: "./media/characters/cibus/side.svg",
  3560. extra: 800 / 400
  3561. }
  3562. },
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(6, "feet"),
  3568. default: true
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Nibbles" },
  3574. {
  3575. front: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(240, "lbs"),
  3578. name: "Front",
  3579. image: {
  3580. source: "./media/characters/nibbles/front.svg"
  3581. }
  3582. },
  3583. side: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(240, "lbs"),
  3586. name: "Side",
  3587. image: {
  3588. source: "./media/characters/nibbles/side.svg"
  3589. }
  3590. },
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(9, "feet"),
  3596. default: true
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Rikky" },
  3602. {
  3603. side: {
  3604. height: math.unit(5 + 1 / 6, "feet"),
  3605. weight: math.unit(130, "lbs"),
  3606. name: "Side",
  3607. image: {
  3608. source: "./media/characters/rikky/side.svg"
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(5 + 1 / 6, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(152, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Megamacro",
  3624. height: math.unit(7, "miles")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Malfressa" },
  3630. {
  3631. side: {
  3632. height: math.unit(370, "cm"),
  3633. weight: math.unit(350, "lbs"),
  3634. name: "Side",
  3635. image: {
  3636. source: "./media/characters/malfressa/side.svg"
  3637. }
  3638. },
  3639. walking: {
  3640. height: math.unit(370, "cm"),
  3641. weight: math.unit(350, "lbs"),
  3642. name: "Walking",
  3643. image: {
  3644. source: "./media/characters/malfressa/walking.svg"
  3645. }
  3646. },
  3647. feral: {
  3648. height: math.unit(2500, "cm"),
  3649. weight: math.unit(100000, "lbs"),
  3650. name: "Feral",
  3651. image: {
  3652. source: "./media/characters/malfressa/feral.svg",
  3653. extra: 2108 / 837,
  3654. bottom: 0.02
  3655. }
  3656. },
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(370, "cm")
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(300, "meters"),
  3666. default: true
  3667. }
  3668. ]
  3669. ))
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Jaro" },
  3672. {
  3673. front: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(60, "kg"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/jaro/front.svg"
  3679. }
  3680. },
  3681. back: {
  3682. height: math.unit(6, "feet"),
  3683. weight: math.unit(60, "kg"),
  3684. name: "Back",
  3685. image: {
  3686. source: "./media/characters/jaro/back.svg"
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "Micro",
  3693. height: math.unit(7, "inches")
  3694. },
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(5.5, "feet"),
  3698. default: true
  3699. },
  3700. {
  3701. name: "Minimacro",
  3702. height: math.unit(20, "feet")
  3703. },
  3704. {
  3705. name: "Macro",
  3706. height: math.unit(200, "meters")
  3707. }
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Rogue" },
  3712. {
  3713. front: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(195, "lb"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/rogue/front.svg"
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Macro",
  3725. height: math.unit(90, "feet"),
  3726. default: true
  3727. },
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Piper" },
  3732. {
  3733. front: {
  3734. height: math.unit(5 + 8 / 12, "feet"),
  3735. weight: math.unit(140, "lb"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/piper/front.svg",
  3739. extra: 3928 / 3681
  3740. }
  3741. },
  3742. },
  3743. [
  3744. {
  3745. name: "Micro",
  3746. height: math.unit(2, "inches")
  3747. },
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(5 + 8 / 12, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(250, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(7, "miles")
  3760. },
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Gemini" },
  3765. {
  3766. front: {
  3767. height: math.unit(6, "feet"),
  3768. weight: math.unit(220, "lb"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/gemini/front.svg"
  3772. }
  3773. },
  3774. back: {
  3775. height: math.unit(6, "feet"),
  3776. weight: math.unit(220, "lb"),
  3777. name: "Back",
  3778. image: {
  3779. source: "./media/characters/gemini/back.svg"
  3780. }
  3781. },
  3782. kneeling: {
  3783. height: math.unit(6 / 1.5, "feet"),
  3784. weight: math.unit(220, "lb"),
  3785. name: "Kneeling",
  3786. image: {
  3787. source: "./media/characters/gemini/kneeling.svg",
  3788. bottom: 0.02
  3789. }
  3790. },
  3791. },
  3792. [
  3793. {
  3794. name: "Macro",
  3795. height: math.unit(300, "meters"),
  3796. default: true
  3797. },
  3798. {
  3799. name: "Megamacro",
  3800. height: math.unit(6900, "meters")
  3801. },
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "Alicia" },
  3806. {
  3807. anthro: {
  3808. height: math.unit(2.35, "meters"),
  3809. weight: math.unit(73, "kg"),
  3810. name: "Anthro",
  3811. image: {
  3812. source: "./media/characters/alicia/anthro.svg"
  3813. }
  3814. },
  3815. feral: {
  3816. height: math.unit(1.69, "meters"),
  3817. weight: math.unit(73, "kg"),
  3818. name: "Feral",
  3819. image: {
  3820. source: "./media/characters/alicia/feral.svg"
  3821. }
  3822. },
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(2.35, "meters")
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(60, "meters"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Megamacro",
  3836. height: math.unit(10000, "kilometers")
  3837. },
  3838. ]
  3839. ))
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Archy" },
  3842. {
  3843. front: {
  3844. height: math.unit(7, "feet"),
  3845. weight: math.unit(250, "lbs"),
  3846. name: "Front",
  3847. image: {
  3848. source: "./media/characters/archy/front.svg"
  3849. }
  3850. }
  3851. },
  3852. [
  3853. {
  3854. name: "Micro",
  3855. height: math.unit(1, "inch")
  3856. },
  3857. {
  3858. name: "Shorty",
  3859. height: math.unit(5, "feet")
  3860. },
  3861. {
  3862. name: "Normal",
  3863. height: math.unit(7, "feet")
  3864. },
  3865. {
  3866. name: "Macro",
  3867. height: math.unit(600, "meters"),
  3868. default: true
  3869. },
  3870. {
  3871. name: "Megamacro",
  3872. height: math.unit(1, "mile")
  3873. },
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Berri" },
  3878. {
  3879. front: {
  3880. height: math.unit(1.65, "meters"),
  3881. weight: math.unit(74, "kg"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/berri/front.svg"
  3885. }
  3886. }
  3887. },
  3888. [
  3889. {
  3890. name: "Normal",
  3891. height: math.unit(1.65, "meters")
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(60, "m"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Megamacro",
  3900. height: math.unit(9.213, "km")
  3901. },
  3902. {
  3903. name: "Planet Eater",
  3904. height: math.unit(489, "megameters")
  3905. },
  3906. {
  3907. name: "Teramacro",
  3908. height: math.unit(2471635000000, "meters")
  3909. },
  3910. {
  3911. name: "Examacro",
  3912. height: math.unit(8.0624e+26, "meters")
  3913. }
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Lexi" },
  3918. {
  3919. front: {
  3920. height: math.unit(1.72, "meters"),
  3921. weight: math.unit(68, "kg"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/lexi/front.svg"
  3925. }
  3926. }
  3927. },
  3928. [
  3929. {
  3930. name: "Very Smol",
  3931. height: math.unit(10, "mm")
  3932. },
  3933. {
  3934. name: "Micro",
  3935. height: math.unit(6.8, "cm"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Normal",
  3940. height: math.unit(1.72, "m")
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Martin" },
  3946. {
  3947. front: {
  3948. height: math.unit(1.69, "meters"),
  3949. weight: math.unit(68, "kg"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/martin/front.svg",
  3953. extra: 596 / 581
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Micro",
  3960. height: math.unit(6.85, "cm"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(1.69, "m")
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Juno" },
  3971. {
  3972. front: {
  3973. height: math.unit(1.69, "meters"),
  3974. weight: math.unit(68, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/juno/front.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Micro",
  3984. height: math.unit(7, "cm")
  3985. },
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(1.89, "m")
  3989. },
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(353, "meters"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Samantha" },
  3999. {
  4000. front: {
  4001. height: math.unit(1.93, "meters"),
  4002. weight: math.unit(83, "kg"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/samantha/front.svg"
  4006. }
  4007. },
  4008. frontClothed: {
  4009. height: math.unit(1.93, "meters"),
  4010. weight: math.unit(83, "kg"),
  4011. name: "Front (Clothed)",
  4012. image: {
  4013. source: "./media/characters/samantha/front-clothed.svg"
  4014. }
  4015. },
  4016. back: {
  4017. height: math.unit(1.93, "meters"),
  4018. weight: math.unit(83, "kg"),
  4019. name: "Back",
  4020. image: {
  4021. source: "./media/characters/samantha/back.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(1.93, "m")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(74, "meters"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro+",
  4037. height: math.unit(223, "meters"),
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(8381, "meters"),
  4042. },
  4043. {
  4044. name: "Megamacro+",
  4045. height: math.unit(12000, "kilometers")
  4046. },
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Dr. Clay" },
  4051. {
  4052. front: {
  4053. height: math.unit(1.92, "meters"),
  4054. weight: math.unit(80, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/dr-clay/front.svg"
  4058. }
  4059. },
  4060. frontClothed: {
  4061. height: math.unit(1.92, "meters"),
  4062. weight: math.unit(80, "kg"),
  4063. name: "Front (Clothed)",
  4064. image: {
  4065. source: "./media/characters/dr-clay/front-clothed.svg"
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(1.92, "m")
  4073. },
  4074. {
  4075. name: "Macro",
  4076. height: math.unit(214, "meters"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Macro+",
  4081. height: math.unit(12.237, "meters"),
  4082. },
  4083. {
  4084. name: "Megamacro",
  4085. height: math.unit(557, "megameters"),
  4086. },
  4087. {
  4088. name: "Unimaginable",
  4089. height: math.unit(120e9, "lightyears")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Wyvrn Ripsnarl" },
  4095. {
  4096. front: {
  4097. height: math.unit(2, "meters"),
  4098. weight: math.unit(80, "kg"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Teramacro",
  4108. height: math.unit(500000, "lightyears"),
  4109. default: true
  4110. },
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Vemus" },
  4115. {
  4116. front: {
  4117. height: math.unit(2, "meters"),
  4118. weight: math.unit(150, "kg"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/vemus/front.svg",
  4122. extra: 2384 / 2084,
  4123. bottom: 0.0123
  4124. }
  4125. }
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(3.75, "meters"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Big",
  4135. height: math.unit(8, "meters")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(100, "meters")
  4140. },
  4141. {
  4142. name: "Macro+",
  4143. height: math.unit(1500, "meters")
  4144. },
  4145. {
  4146. name: "Stellar",
  4147. height: math.unit(14e8, "meters")
  4148. },
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Beherit" },
  4153. {
  4154. front: {
  4155. height: math.unit(2, "meters"),
  4156. weight: math.unit(70, "kg"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/beherit/front.svg",
  4160. extra: 1408 / 1242
  4161. }
  4162. }
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(6, "feet")
  4168. },
  4169. {
  4170. name: "Lorg",
  4171. height: math.unit(25, "feet"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "Lorger",
  4176. height: math.unit(75, "feet")
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(200, "meters")
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Everett" },
  4186. {
  4187. front: {
  4188. height: math.unit(2, "meters"),
  4189. weight: math.unit(150, "kg"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/everett/front.svg",
  4193. extra: 2038 / 1737,
  4194. bottom: 0.03
  4195. }
  4196. },
  4197. paw: {
  4198. height: math.unit(2 / 3.6, "meters"),
  4199. name: "Paw",
  4200. image: {
  4201. source: "./media/characters/everett/paw.svg"
  4202. }
  4203. },
  4204. },
  4205. [
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(15, "feet"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Lorg",
  4213. height: math.unit(70, "feet"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Lorger",
  4218. height: math.unit(250, "feet")
  4219. },
  4220. {
  4221. name: "Macro",
  4222. height: math.unit(500, "meters")
  4223. },
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Rose Lion" },
  4228. {
  4229. front: {
  4230. height: math.unit(2, "meters"),
  4231. weight: math.unit(86, "kg"),
  4232. name: "Front",
  4233. image: {
  4234. source: "./media/characters/rose-lion/front.svg"
  4235. }
  4236. },
  4237. bent: {
  4238. height: math.unit(2 / 1.4288, "meters"),
  4239. weight: math.unit(86, "kg"),
  4240. name: "Bent",
  4241. image: {
  4242. source: "./media/characters/rose-lion/bent.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Mini-Micro",
  4249. height: math.unit(1, "cm")
  4250. },
  4251. {
  4252. name: "Micro",
  4253. height: math.unit(3.5, "inches"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(6 + 1 / 6, "feet")
  4259. },
  4260. {
  4261. name: "Mini-Macro",
  4262. height: math.unit(9 + 10 / 12, "feet")
  4263. },
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Regal" },
  4268. {
  4269. front: {
  4270. height: math.unit(2, "meters"),
  4271. weight: math.unit(350, "lbs"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/regal/front.svg"
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(2, "meters"),
  4279. weight: math.unit(350, "lbs"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/regal/back.svg"
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(350, "feet"),
  4290. default: true
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Opal" },
  4296. {
  4297. front: {
  4298. height: math.unit(4 + 11 / 12, "feet"),
  4299. weight: math.unit(100, "lbs"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/opal/front.svg"
  4303. }
  4304. },
  4305. frontAlt: {
  4306. height: math.unit(4 + 11 / 12, "feet"),
  4307. weight: math.unit(100, "lbs"),
  4308. name: "Front (Alt)",
  4309. image: {
  4310. source: "./media/characters/opal/front-alt.svg"
  4311. }
  4312. },
  4313. },
  4314. [
  4315. {
  4316. name: "Small",
  4317. height: math.unit(4 + 11 / 12, "feet")
  4318. },
  4319. {
  4320. name: "Normal",
  4321. height: math.unit(20, "feet"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(120, "feet")
  4327. },
  4328. {
  4329. name: "Megamacro",
  4330. height: math.unit(80, "miles")
  4331. },
  4332. {
  4333. name: "True Size",
  4334. height: math.unit(100000, "lightyears")
  4335. },
  4336. ]
  4337. ))
  4338. characterMakers.push(() => makeCharacter(
  4339. { name: "Vector Wuff" },
  4340. {
  4341. front: {
  4342. height: math.unit(6, "feet"),
  4343. weight: math.unit(200, "lbs"),
  4344. name: "Front",
  4345. image: {
  4346. source: "./media/characters/vector-wuff/front.svg"
  4347. }
  4348. }
  4349. },
  4350. [
  4351. {
  4352. name: "Normal",
  4353. height: math.unit(2.8, "meters")
  4354. },
  4355. {
  4356. name: "Macro",
  4357. height: math.unit(450, "meters"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Megamacro",
  4362. height: math.unit(15, "kilometers")
  4363. }
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Dannik" },
  4368. {
  4369. front: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(256, "lbs"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/dannik/front.svg"
  4375. }
  4376. }
  4377. },
  4378. [
  4379. {
  4380. name: "Macro",
  4381. height: math.unit(69.57, "meters"),
  4382. default: true
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Azura Saharah" },
  4388. {
  4389. front: {
  4390. height: math.unit(6, "feet"),
  4391. weight: math.unit(120, "lbs"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/azura-saharah/front.svg"
  4395. }
  4396. },
  4397. back: {
  4398. height: math.unit(6, "feet"),
  4399. weight: math.unit(120, "lbs"),
  4400. name: "Back",
  4401. image: {
  4402. source: "./media/characters/azura-saharah/back.svg"
  4403. }
  4404. },
  4405. },
  4406. [
  4407. {
  4408. name: "Macro",
  4409. height: math.unit(100, "feet"),
  4410. default: true
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Kennedy" },
  4416. {
  4417. side: {
  4418. height: math.unit(5 + 4 / 12, "feet"),
  4419. weight: math.unit(163, "lbs"),
  4420. name: "Side",
  4421. image: {
  4422. source: "./media/characters/kennedy/side.svg"
  4423. }
  4424. }
  4425. },
  4426. [
  4427. {
  4428. name: "Standard Doggo",
  4429. height: math.unit(5 + 4 / 12, "feet")
  4430. },
  4431. {
  4432. name: "Big Doggo",
  4433. height: math.unit(25 + 3 / 12, "feet"),
  4434. default: true
  4435. },
  4436. ]
  4437. ))
  4438. characterMakers.push(() => makeCharacter(
  4439. { name: "Odi Lunar" },
  4440. {
  4441. front: {
  4442. height: math.unit(6, "feet"),
  4443. weight: math.unit(90, "lbs"),
  4444. name: "Front",
  4445. image: {
  4446. source: "./media/characters/odi-lunar/front.svg"
  4447. }
  4448. }
  4449. },
  4450. [
  4451. {
  4452. name: "Micro",
  4453. height: math.unit(3, "inches"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(5.5, "feet")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Mandake" },
  4464. {
  4465. back: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(220, "lbs"),
  4468. name: "Back",
  4469. image: {
  4470. source: "./media/characters/mandake/back.svg"
  4471. }
  4472. }
  4473. },
  4474. [
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(7, "feet"),
  4478. default: true
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(78, "feet")
  4483. },
  4484. {
  4485. name: "Macro+",
  4486. height: math.unit(300, "meters")
  4487. },
  4488. {
  4489. name: "Macro++",
  4490. height: math.unit(2400, "feet")
  4491. },
  4492. {
  4493. name: "Megamacro",
  4494. height: math.unit(5167, "meters")
  4495. },
  4496. {
  4497. name: "Gigamacro",
  4498. height: math.unit(41769, "miles")
  4499. },
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Yozey" },
  4504. {
  4505. front: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(120, "lbs"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/yozey/front.svg"
  4511. }
  4512. },
  4513. frontAlt: {
  4514. height: math.unit(6, "feet"),
  4515. weight: math.unit(120, "lbs"),
  4516. name: "Front (Alt)",
  4517. image: {
  4518. source: "./media/characters/yozey/front-alt.svg"
  4519. }
  4520. },
  4521. side: {
  4522. height: math.unit(6, "feet"),
  4523. weight: math.unit(120, "lbs"),
  4524. name: "Side",
  4525. image: {
  4526. source: "./media/characters/yozey/side.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Micro",
  4533. height: math.unit(3, "inches"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(6, "feet")
  4539. }
  4540. ]
  4541. ))
  4542. characterMakers.push(() => makeCharacter(
  4543. { name: "Valeska Voss" },
  4544. {
  4545. front: {
  4546. height: math.unit(6, "feet"),
  4547. weight: math.unit(103, "lbs"),
  4548. name: "Front",
  4549. image: {
  4550. source: "./media/characters/valeska-voss/front.svg"
  4551. }
  4552. }
  4553. },
  4554. [
  4555. {
  4556. name: "Mini-Sized Sub",
  4557. height: math.unit(3.1, "inches")
  4558. },
  4559. {
  4560. name: "Mid-Sized Sub",
  4561. height: math.unit(6.2, "inches")
  4562. },
  4563. {
  4564. name: "Full-Sized Sub",
  4565. height: math.unit(9.3, "inches")
  4566. },
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(5 + 2 / 12, "foot"),
  4570. default: true
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Gene Zeta" },
  4576. {
  4577. front: {
  4578. height: math.unit(6, "feet"),
  4579. weight: math.unit(160, "lbs"),
  4580. name: "Front",
  4581. image: {
  4582. source: "./media/characters/gene-zeta/front.svg",
  4583. bottom: 0.03,
  4584. extra: 1
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(6.25, "foot"),
  4592. default: true
  4593. },
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Razinox" },
  4598. {
  4599. front: {
  4600. height: math.unit(6, "feet"),
  4601. weight: math.unit(350, "lbs"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/razinox/front.svg",
  4605. extra: 1686 / 1548
  4606. }
  4607. },
  4608. back: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(350, "lbs"),
  4611. name: "Back",
  4612. image: {
  4613. source: "./media/characters/razinox/back.svg",
  4614. extra: 1660 / 1590
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(10 + 8 / 12, "foot")
  4622. },
  4623. {
  4624. name: "Minimacro",
  4625. height: math.unit(15, "foot")
  4626. },
  4627. {
  4628. name: "Macro",
  4629. height: math.unit(60, "foot"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Megamacro",
  4634. height: math.unit(5, "miles")
  4635. },
  4636. {
  4637. name: "Gigamacro",
  4638. height: math.unit(6000, "miles")
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Cobalt" },
  4644. {
  4645. front: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(150, "lbs"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/cobalt/front.svg"
  4651. }
  4652. }
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(8 + 1 / 12, "foot")
  4658. },
  4659. {
  4660. name: "Macro",
  4661. height: math.unit(111, "foot"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Supracosmic",
  4666. height: math.unit(1e42, "feet")
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Amanda" },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(140, "lbs"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/amanda/front.svg"
  4679. }
  4680. }
  4681. },
  4682. [
  4683. {
  4684. name: "Micro",
  4685. height: math.unit(5, "inches"),
  4686. default: true
  4687. },
  4688. ]
  4689. ))
  4690. characterMakers.push(() => makeCharacter(
  4691. { name: "Teal" },
  4692. {
  4693. front: {
  4694. height: math.unit(5.59, "feet"),
  4695. weight: math.unit(250, "lbs"),
  4696. name: "Front",
  4697. image: {
  4698. source: "./media/characters/teal/front.svg"
  4699. }
  4700. },
  4701. frontAlt: {
  4702. height: math.unit(6, "feet"),
  4703. weight: math.unit(250, "lbs"),
  4704. name: "Front (Alt)",
  4705. image: {
  4706. source: "./media/characters/teal/front-alt.svg",
  4707. bottom: 0.04,
  4708. extra: 1
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(12, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(300, "feet")
  4721. },
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Ravin Amulet" },
  4726. {
  4727. frontCat: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(180, "lbs"),
  4730. name: "Front (Cat)",
  4731. image: {
  4732. source: "./media/characters/ravin-amulet/front-cat.svg"
  4733. }
  4734. },
  4735. frontCatAlt: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(180, "lbs"),
  4738. name: "Front (Alt, Cat)",
  4739. image: {
  4740. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4741. }
  4742. },
  4743. frontWerewolf: {
  4744. height: math.unit(6 * 1.2, "feet"),
  4745. weight: math.unit(225, "lbs"),
  4746. name: "Front (Werewolf)",
  4747. image: {
  4748. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4749. }
  4750. },
  4751. backWerewolf: {
  4752. height: math.unit(6 * 1.2, "feet"),
  4753. weight: math.unit(225, "lbs"),
  4754. name: "Back (Werewolf)",
  4755. image: {
  4756. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4757. }
  4758. },
  4759. },
  4760. [
  4761. {
  4762. name: "Nano",
  4763. height: math.unit(1, "micrometer")
  4764. },
  4765. {
  4766. name: "Micro",
  4767. height: math.unit(1, "inch")
  4768. },
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(6, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Macro",
  4776. height: math.unit(60, "feet")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Fluoresce" },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(165, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/fluoresce/front.svg"
  4789. }
  4790. }
  4791. },
  4792. [
  4793. {
  4794. name: "Micro",
  4795. height: math.unit(6, "cm")
  4796. },
  4797. {
  4798. name: "Normal",
  4799. height: math.unit(5 + 7 / 12, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(56, "feet")
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(1.9, "miles")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Aurora" },
  4814. {
  4815. front: {
  4816. height: math.unit(9 + 6 / 12, "feet"),
  4817. weight: math.unit(523, "lbs"),
  4818. name: "Side",
  4819. image: {
  4820. source: "./media/characters/aurora/side.svg"
  4821. }
  4822. }
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(9 + 6 / 12, "feet")
  4828. },
  4829. {
  4830. name: "Macro",
  4831. height: math.unit(96, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Macro+",
  4836. height: math.unit(243, "feet")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Ranek" },
  4842. {
  4843. front: {
  4844. height: math.unit(194, "cm"),
  4845. weight: math.unit(90, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/ranek/front.svg"
  4849. }
  4850. },
  4851. side: {
  4852. height: math.unit(194, "cm"),
  4853. weight: math.unit(90, "kg"),
  4854. name: "Side",
  4855. image: {
  4856. source: "./media/characters/ranek/side.svg"
  4857. }
  4858. },
  4859. back: {
  4860. height: math.unit(194, "cm"),
  4861. weight: math.unit(90, "kg"),
  4862. name: "Back",
  4863. image: {
  4864. source: "./media/characters/ranek/back.svg"
  4865. }
  4866. },
  4867. feral: {
  4868. height: math.unit(30, "cm"),
  4869. weight: math.unit(1.6, "lbs"),
  4870. name: "Feral",
  4871. image: {
  4872. source: "./media/characters/ranek/feral.svg"
  4873. }
  4874. },
  4875. },
  4876. [
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(194, "cm"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Macro",
  4884. height: math.unit(100, "meters")
  4885. },
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Andrew Cooper" },
  4890. {
  4891. front: {
  4892. height: math.unit(5 + 6 / 12, "feet"),
  4893. weight: math.unit(153, "lbs"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/andrew-cooper/front.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Nano",
  4903. height: math.unit(1, "mm")
  4904. },
  4905. {
  4906. name: "Micro",
  4907. height: math.unit(2, "inches")
  4908. },
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(5 + 6 / 12, "feet"),
  4912. default: true
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Akane Sato" },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(180, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/akane-sato/front.svg",
  4925. extra: 1219 / 1140
  4926. }
  4927. },
  4928. back: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(180, "lbs"),
  4931. name: "Back",
  4932. image: {
  4933. source: "./media/characters/akane-sato/back.svg",
  4934. extra: 1219 / 1170
  4935. }
  4936. },
  4937. },
  4938. [
  4939. {
  4940. name: "Normal",
  4941. height: math.unit(2.5, "meters")
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(250, "meters"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Megamacro",
  4950. height: math.unit(25, "km")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Rook" },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(65, "kg"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/rook/front.svg"
  4963. }
  4964. }
  4965. },
  4966. [
  4967. {
  4968. name: "Normal",
  4969. height: math.unit(8.8, "feet")
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(88, "feet"),
  4974. default: true
  4975. },
  4976. {
  4977. name: "Megamacro",
  4978. height: math.unit(8, "miles")
  4979. },
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Prodigy" },
  4984. {
  4985. front: {
  4986. height: math.unit(12 + 2 / 12, "feet"),
  4987. weight: math.unit(808, "lbs"),
  4988. name: "Front",
  4989. image: {
  4990. source: "./media/characters/prodigy/front.svg"
  4991. }
  4992. }
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(12 + 2 / 12, "feet"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(143, "feet")
  5003. },
  5004. {
  5005. name: "Macro+",
  5006. height: math.unit(400, "feet")
  5007. },
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Daniel" },
  5012. {
  5013. front: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(225, "lbs"),
  5016. name: "Front",
  5017. image: {
  5018. source: "./media/characters/daniel/front.svg"
  5019. }
  5020. },
  5021. leaning: {
  5022. height: math.unit(6, "feet"),
  5023. weight: math.unit(225, "lbs"),
  5024. name: "Leaning",
  5025. image: {
  5026. source: "./media/characters/daniel/leaning.svg"
  5027. }
  5028. },
  5029. },
  5030. [
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(1000, "feet"),
  5034. default: true
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Chiros" },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(88, "lbs"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/chiros/front.svg",
  5047. extra: 306 / 226
  5048. }
  5049. },
  5050. side: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(88, "lbs"),
  5053. name: "Side",
  5054. image: {
  5055. source: "./media/characters/chiros/side.svg",
  5056. extra: 306 / 226
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(6, "cm"),
  5064. default: true
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Selka" },
  5070. {
  5071. front: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(100, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/selka/front.svg",
  5077. extra: 947 / 887
  5078. }
  5079. }
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(5, "cm"),
  5085. default: true
  5086. },
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Verin" },
  5091. {
  5092. front: {
  5093. height: math.unit(8 + 3 / 12, "feet"),
  5094. weight: math.unit(424, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/verin/front.svg",
  5098. extra: 1845 / 1550
  5099. }
  5100. },
  5101. frontArmored: {
  5102. height: math.unit(8 + 3 / 12, "feet"),
  5103. weight: math.unit(424, "lbs"),
  5104. name: "Front (Armored)",
  5105. image: {
  5106. source: "./media/characters/verin/front-armor.svg",
  5107. extra: 1845 / 1550,
  5108. bottom: 0.01
  5109. }
  5110. },
  5111. back: {
  5112. height: math.unit(8 + 3 / 12, "feet"),
  5113. weight: math.unit(424, "lbs"),
  5114. name: "Back",
  5115. image: {
  5116. source: "./media/characters/verin/back.svg",
  5117. bottom: 0.1,
  5118. extra: 1
  5119. }
  5120. },
  5121. foot: {
  5122. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5123. name: "Foot",
  5124. image: {
  5125. source: "./media/characters/verin/foot.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(8 + 3 / 12, "feet")
  5133. },
  5134. {
  5135. name: "Minimacro",
  5136. height: math.unit(21, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(626, "feet")
  5142. },
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Sovrim Terraquian" },
  5147. {
  5148. front: {
  5149. height: math.unit(2.718, "meters"),
  5150. weight: math.unit(150, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/sovrim-terraquian/front.svg"
  5154. }
  5155. },
  5156. back: {
  5157. height: math.unit(2.718, "meters"),
  5158. weight: math.unit(150, "lbs"),
  5159. name: "Back",
  5160. image: {
  5161. source: "./media/characters/sovrim-terraquian/back.svg"
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Micro",
  5168. height: math.unit(2, "inches")
  5169. },
  5170. {
  5171. name: "Small",
  5172. height: math.unit(1, "meter")
  5173. },
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(Math.E, "meters"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(20, "meters")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(400, "meters")
  5186. },
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Reece Silvermane" },
  5191. {
  5192. front: {
  5193. height: math.unit(7, "feet"),
  5194. weight: math.unit(489, "lbs"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/reece-silvermane/front.svg",
  5198. bottom: 0.02,
  5199. extra: 1
  5200. }
  5201. },
  5202. },
  5203. [
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(1.5, "miles"),
  5207. default: true
  5208. },
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Kane" },
  5213. {
  5214. front: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(78, "kg"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/kane/front.svg",
  5220. extra: 978 / 899
  5221. }
  5222. },
  5223. },
  5224. [
  5225. {
  5226. name: "Normal",
  5227. height: math.unit(2.1, "m"),
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(1, "km"),
  5232. default: true
  5233. },
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Tegon" },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(200, "kg"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/tegon/front.svg",
  5245. bottom: 0.01,
  5246. extra: 1
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Micro",
  5253. height: math.unit(1, "inch")
  5254. },
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(6 + 3 / 12, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(300, "feet")
  5263. },
  5264. {
  5265. name: "Megamacro",
  5266. height: math.unit(69, "miles")
  5267. },
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Arcturax" },
  5272. {
  5273. side: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(2304, "lbs"),
  5276. name: "Side",
  5277. image: {
  5278. source: "./media/characters/arcturax/side.svg",
  5279. extra: 790 / 376,
  5280. bottom: 0.01
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Micro",
  5287. height: math.unit(2, "inch")
  5288. },
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(6, "feet")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(39, "feet"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(7, "miles")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Sentri" },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(50, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/sentri/front.svg",
  5313. extra: 1750 / 1570,
  5314. bottom: 0.025
  5315. }
  5316. },
  5317. frontAlt: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(50, "lbs"),
  5320. name: "Front (Alt)",
  5321. image: {
  5322. source: "./media/characters/sentri/front-alt.svg",
  5323. extra: 1750 / 1570,
  5324. bottom: 0.025
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(15, "feet"),
  5332. default: true
  5333. },
  5334. {
  5335. name: "Macro",
  5336. height: math.unit(2500, "feet")
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Corvin" },
  5342. {
  5343. front: {
  5344. height: math.unit(5 + 8 / 12, "feet"),
  5345. weight: math.unit(130, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/corvin/front.svg",
  5349. extra: 1803 / 1629
  5350. }
  5351. },
  5352. frontShirt: {
  5353. height: math.unit(5 + 8 / 12, "feet"),
  5354. weight: math.unit(130, "lbs"),
  5355. name: "Front (Shirt)",
  5356. image: {
  5357. source: "./media/characters/corvin/front-shirt.svg",
  5358. extra: 1803 / 1629
  5359. }
  5360. },
  5361. frontPoncho: {
  5362. height: math.unit(5 + 8 / 12, "feet"),
  5363. weight: math.unit(130, "lbs"),
  5364. name: "Front (Poncho)",
  5365. image: {
  5366. source: "./media/characters/corvin/front-poncho.svg",
  5367. extra: 1803 / 1629
  5368. }
  5369. },
  5370. side: {
  5371. height: math.unit(5 + 8 / 12, "feet"),
  5372. weight: math.unit(130, "lbs"),
  5373. name: "Side",
  5374. image: {
  5375. source: "./media/characters/corvin/side.svg",
  5376. extra: 1012 / 945
  5377. }
  5378. },
  5379. back: {
  5380. height: math.unit(5 + 8 / 12, "feet"),
  5381. weight: math.unit(130, "lbs"),
  5382. name: "Back",
  5383. image: {
  5384. source: "./media/characters/corvin/back.svg",
  5385. extra: 1803 / 1629
  5386. }
  5387. },
  5388. },
  5389. [
  5390. {
  5391. name: "Micro",
  5392. height: math.unit(3, "inches")
  5393. },
  5394. {
  5395. name: "Normal",
  5396. height: math.unit(5 + 8 / 12, "feet")
  5397. },
  5398. {
  5399. name: "Macro",
  5400. height: math.unit(300, "feet"),
  5401. default: true
  5402. },
  5403. {
  5404. name: "Megamacro",
  5405. height: math.unit(500, "miles")
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Q" },
  5411. {
  5412. front: {
  5413. height: math.unit(6, "feet"),
  5414. weight: math.unit(135, "lbs"),
  5415. name: "Front",
  5416. image: {
  5417. source: "./media/characters/q/front.svg",
  5418. extra: 854 / 752,
  5419. bottom: 0.005
  5420. }
  5421. },
  5422. back: {
  5423. height: math.unit(6, "feet"),
  5424. weight: math.unit(130, "lbs"),
  5425. name: "Back",
  5426. image: {
  5427. source: "./media/characters/q/back.svg",
  5428. extra: 854 / 752
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(90, "feet"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Extra Macro",
  5440. height: math.unit(300, "feet"),
  5441. },
  5442. {
  5443. name: "BIG WALF",
  5444. height: math.unit(750, "feet"),
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Carley" },
  5450. {
  5451. front: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(150, "lbs"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/carley/front.svg",
  5457. extra: 3927 / 3540,
  5458. bottom: 0.03
  5459. }
  5460. }
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(6 + 3 / 12, "feet")
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(185, "feet"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(8, "miles"),
  5475. },
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Citrine" },
  5480. {
  5481. front: {
  5482. height: math.unit(3, "feet"),
  5483. weight: math.unit(28, "lbs"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/citrine/front.svg"
  5487. }
  5488. }
  5489. },
  5490. [
  5491. {
  5492. name: "Normal",
  5493. height: math.unit(3, "feet"),
  5494. default: true
  5495. }
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Aura Starwind" },
  5500. {
  5501. front: {
  5502. height: math.unit(14, "feet"),
  5503. weight: math.unit(1450, "kg"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/aura-starwind/front.svg",
  5507. extra: 1455 / 1335
  5508. }
  5509. },
  5510. side: {
  5511. height: math.unit(14, "feet"),
  5512. weight: math.unit(1450, "kg"),
  5513. name: "Side",
  5514. image: {
  5515. source: "./media/characters/aura-starwind/side.svg",
  5516. extra: 1654 / 1497
  5517. }
  5518. },
  5519. taur: {
  5520. height: math.unit(18, "feet"),
  5521. weight: math.unit(5500, "kg"),
  5522. name: "Taur",
  5523. image: {
  5524. source: "./media/characters/aura-starwind/taur.svg",
  5525. extra: 1760 / 1650
  5526. }
  5527. },
  5528. feral: {
  5529. height: math.unit(46, "feet"),
  5530. weight: math.unit(25000, "kg"),
  5531. name: "Feral",
  5532. image: {
  5533. source: "./media/characters/aura-starwind/feral.svg"
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(14, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(50, "meters")
  5546. },
  5547. {
  5548. name: "Megamacro",
  5549. height: math.unit(5000, "meters")
  5550. },
  5551. {
  5552. name: "Gigamacro",
  5553. height: math.unit(100000, "kilometers")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Rivet" },
  5559. {
  5560. front: {
  5561. height: math.unit(2 + 7 / 12, "feet"),
  5562. weight: math.unit(32, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/rivet/front.svg",
  5566. extra: 1716 / 1658,
  5567. bottom: 0.03
  5568. }
  5569. },
  5570. foot: {
  5571. height: math.unit(0.551, "feet"),
  5572. name: "Rivet's Foot",
  5573. image: {
  5574. source: "./media/characters/rivet/foot.svg"
  5575. },
  5576. rename: true
  5577. }
  5578. },
  5579. [
  5580. {
  5581. name: "Micro",
  5582. height: math.unit(1.5, "inches"),
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(2 + 7 / 12, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(85, "feet")
  5592. },
  5593. {
  5594. name: "Megamacro",
  5595. height: math.unit(2.2, "km")
  5596. }
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Coffee" },
  5601. {
  5602. front: {
  5603. height: math.unit(5 + 9 / 12, "feet"),
  5604. weight: math.unit(150, "lbs"),
  5605. name: "Front",
  5606. image: {
  5607. source: "./media/characters/coffee/front.svg",
  5608. extra: 3666 / 3032,
  5609. bottom: 0.04
  5610. }
  5611. },
  5612. foot: {
  5613. height: math.unit(1.29, "feet"),
  5614. name: "Foot",
  5615. image: {
  5616. source: "./media/characters/coffee/foot.svg"
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Micro",
  5623. height: math.unit(2, "inches"),
  5624. },
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(5 + 9 / 12, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(800, "feet")
  5633. },
  5634. {
  5635. name: "Megamacro",
  5636. height: math.unit(25, "miles")
  5637. }
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Chari-Gal" },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(200, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/chari-gal/front.svg",
  5649. extra: 1568 / 1385,
  5650. bottom: 0.047
  5651. }
  5652. },
  5653. gigantamax: {
  5654. height: math.unit(6 * 16, "feet"),
  5655. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5656. name: "Gigantamax",
  5657. image: {
  5658. source: "./media/characters/chari-gal/gigantamax.svg",
  5659. extra: 1124 / 888,
  5660. bottom: 0.03
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(5 + 7 / 12, "feet")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(200, "feet"),
  5672. default: true
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Nova" },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(150, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/nova/front.svg",
  5685. extra: 5000 / 4722,
  5686. bottom: 0.02
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Micro-",
  5693. height: math.unit(0.8, "inches")
  5694. },
  5695. {
  5696. name: "Micro",
  5697. height: math.unit(2, "inches"),
  5698. default: true
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Argent" },
  5704. {
  5705. front: {
  5706. height: math.unit(3 + 1 / 12, "feet"),
  5707. weight: math.unit(21.7, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/argent/front.svg",
  5711. extra: 1565 / 1416,
  5712. bottom: 0.01
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Micro",
  5719. height: math.unit(2, "inches")
  5720. },
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(3 + 1 / 12, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(120, "feet")
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Mira al-Cul" },
  5734. {
  5735. lamp: {
  5736. height: math.unit(7 * 1559 / 989, "feet"),
  5737. name: "Magic Lamp",
  5738. image: {
  5739. source: "./media/characters/mira-al-cul/lamp.svg",
  5740. extra: 1617 / 1559
  5741. }
  5742. },
  5743. front: {
  5744. height: math.unit(7, "feet"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/mira-al-cul/front.svg",
  5748. extra: 1044 / 990
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Heavily Restricted",
  5755. height: math.unit(7 * 1559 / 989, "feet")
  5756. },
  5757. {
  5758. name: "Freshly Freed",
  5759. height: math.unit(50 * 1559 / 989, "feet")
  5760. },
  5761. {
  5762. name: "World Encompassing",
  5763. height: math.unit(10000 * 1559 / 989, "miles")
  5764. },
  5765. {
  5766. name: "Galactic",
  5767. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5768. },
  5769. {
  5770. name: "Palmed Universe",
  5771. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Multiversal Matriarch",
  5776. height: math.unit(8.87e10, "yottameters")
  5777. },
  5778. {
  5779. name: "Void Mother",
  5780. height: math.unit(3.14e110, "yottaparsecs")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Kuro-shi Uchū" },
  5786. {
  5787. front: {
  5788. height: math.unit(17 + 1 / 12, "feet"),
  5789. weight: math.unit(476.2 * 5, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/kuro-shi-uchū/front.svg",
  5793. extra: 2329 / 1835,
  5794. bottom: 0.02
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Micro",
  5801. height: math.unit(2, "inches")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(12, "meters")
  5806. },
  5807. {
  5808. name: "Planetary",
  5809. height: math.unit(0.00929, "AU"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Universal",
  5814. height: math.unit(20, "gigaparsecs")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Katherine" },
  5820. {
  5821. front: {
  5822. height: math.unit(5 + 2 / 12, "feet"),
  5823. weight: math.unit(120, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/katherine/front.svg",
  5827. extra: 2075 / 1969
  5828. }
  5829. },
  5830. dress: {
  5831. height: math.unit(5 + 2 / 12, "feet"),
  5832. weight: math.unit(120, "lbs"),
  5833. name: "Dress",
  5834. image: {
  5835. source: "./media/characters/katherine/dress.svg",
  5836. extra: 2258 / 2064
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Micro",
  5843. height: math.unit(1, "inches"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5 + 2 / 12, "feet")
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(100, "meters")
  5853. },
  5854. {
  5855. name: "Megamacro",
  5856. height: math.unit(80, "miles")
  5857. },
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Yevis" },
  5862. {
  5863. front: {
  5864. height: math.unit(7 + 8 / 12, "feet"),
  5865. weight: math.unit(250, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/yevis/front.svg",
  5869. extra: 1938 / 1755
  5870. }
  5871. }
  5872. },
  5873. [
  5874. {
  5875. name: "Mortal",
  5876. height: math.unit(7 + 8 / 12, "feet")
  5877. },
  5878. {
  5879. name: "Battle",
  5880. height: math.unit(25 + 11 / 12, "feet")
  5881. },
  5882. {
  5883. name: "Wrath",
  5884. height: math.unit(1654 + 11 / 12, "feet")
  5885. },
  5886. {
  5887. name: "Planet Destroyer",
  5888. height: math.unit(12000, "miles")
  5889. },
  5890. {
  5891. name: "Galaxy Conqueror",
  5892. height: math.unit(1.45, "zettameters"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Universal War",
  5897. height: math.unit(184, "gigaparsecs")
  5898. },
  5899. {
  5900. name: "Eternity War",
  5901. height: math.unit(1.98e55, "yottaparsecs")
  5902. },
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Xavier" },
  5907. {
  5908. front: {
  5909. height: math.unit(5 + 8 / 12, "feet"),
  5910. weight: math.unit(63, "kg"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/xavier/front.svg",
  5914. extra: 944 / 883
  5915. }
  5916. },
  5917. frontStretch: {
  5918. height: math.unit(5 + 8 / 12, "feet"),
  5919. weight: math.unit(63, "kg"),
  5920. name: "Stretching",
  5921. image: {
  5922. source: "./media/characters/xavier/front-stretch.svg",
  5923. extra: 962 / 820
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(5 + 8 / 12, "feet")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(100, "meters"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "McLargeHuge",
  5939. height: math.unit(10, "miles")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Joshii" },
  5945. {
  5946. front: {
  5947. height: math.unit(5 + 5 / 12, "feet"),
  5948. weight: math.unit(150, "lb"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/joshii/front.svg"
  5952. }
  5953. },
  5954. foot: {
  5955. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  5956. name: "Foot",
  5957. image: {
  5958. source: "./media/characters/joshii/foot.svg"
  5959. }
  5960. },
  5961. },
  5962. [
  5963. {
  5964. name: "Micro",
  5965. height: math.unit(2, "inches")
  5966. },
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(5 + 5 / 12, "feet"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(785, "feet")
  5975. },
  5976. {
  5977. name: "Megamacro",
  5978. height: math.unit(24.5, "miles")
  5979. },
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Goddess Elizabeth" },
  5984. {
  5985. front: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(150, "lb"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/goddess-elizabeth/front.svg",
  5991. extra: 1800 / 1525,
  5992. bottom: 0.005
  5993. }
  5994. },
  5995. foot: {
  5996. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  5997. name: "Foot",
  5998. image: {
  5999. source: "./media/characters/goddess-elizabeth/foot.svg"
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Micro",
  6006. height: math.unit(12, "feet")
  6007. },
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(80, "miles"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(15000, "parsecs")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Kara" },
  6021. {
  6022. front: {
  6023. height: math.unit(5 + 9 / 12, "feet"),
  6024. weight: math.unit(144, "lb"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/kara/front.svg"
  6028. }
  6029. },
  6030. feet: {
  6031. height: math.unit(6 / 6.765, "feet"),
  6032. name: "Kara's Feet",
  6033. rename: true,
  6034. image: {
  6035. source: "./media/characters/kara/feet.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(5 + 9 / 12, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(174, "feet"),
  6047. default: true
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Tyrone" },
  6053. {
  6054. front: {
  6055. height: math.unit(18, "feet"),
  6056. weight: math.unit(4050, "lb"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/tyrone/front.svg",
  6060. extra: 2520 / 2402,
  6061. bottom: 0.025
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(18, "feet"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(300, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Danny" },
  6079. {
  6080. front: {
  6081. height: math.unit(7 + 8 / 12, "feet"),
  6082. weight: math.unit(120, "lb"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/danny/front.svg",
  6086. extra: 1490 / 1350
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(7 + 8 / 12, "feet"),
  6091. weight: math.unit(120, "lb"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/danny/back.svg",
  6095. extra: 1490 / 1350
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(7 + 8 / 12, "feet"),
  6103. default: true
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Mallow" },
  6109. {
  6110. front: {
  6111. height: math.unit(3.5, "inches"),
  6112. weight: math.unit(19, "grams"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/mallow/front.svg",
  6116. extra: 471 / 431
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(3.5, "inches"),
  6121. weight: math.unit(19, "grams"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/mallow/back.svg",
  6125. extra: 471 / 431
  6126. }
  6127. },
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(3.5, "inches"),
  6133. default: true
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Starry Aqua" },
  6139. {
  6140. front: {
  6141. height: math.unit(9, "feet"),
  6142. weight: math.unit(230, "kg"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/starry-aqua/front.svg"
  6146. }
  6147. },
  6148. back: {
  6149. height: math.unit(9, "feet"),
  6150. weight: math.unit(230, "kg"),
  6151. name: "Back",
  6152. image: {
  6153. source: "./media/characters/starry-aqua/back.svg"
  6154. }
  6155. },
  6156. hand: {
  6157. height: math.unit(9 * 0.1168, "feet"),
  6158. name: "Hand",
  6159. image: {
  6160. source: "./media/characters/starry-aqua/hand.svg"
  6161. }
  6162. },
  6163. foot: {
  6164. height: math.unit(9 * 0.18, "feet"),
  6165. name: "Foot",
  6166. image: {
  6167. source: "./media/characters/starry-aqua/foot.svg"
  6168. }
  6169. }
  6170. },
  6171. [
  6172. {
  6173. name: "Micro",
  6174. height: math.unit(3, "inches")
  6175. },
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(9, "feet")
  6179. },
  6180. {
  6181. name: "Macro",
  6182. height: math.unit(300, "feet"),
  6183. default: true
  6184. },
  6185. {
  6186. name: "Megamacro",
  6187. height: math.unit(3200, "feet")
  6188. }
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Luka" },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(230, "lb"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/luka/front.svg",
  6200. extra: 1,
  6201. bottom: 0.025
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(12 + 8 / 12, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Minimacro",
  6213. height: math.unit(20, "feet")
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(250, "feet")
  6218. },
  6219. {
  6220. name: "Megamacro",
  6221. height: math.unit(5, "miles")
  6222. },
  6223. {
  6224. name: "Gigamacro",
  6225. height: math.unit(8000, "miles")
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Natalie Nightring" },
  6231. {
  6232. front: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lb"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/natalie-nightring/front.svg",
  6238. extra: 1,
  6239. bottom: 0.06
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Uh Oh",
  6246. height: math.unit(0.1, "mm")
  6247. },
  6248. {
  6249. name: "Small",
  6250. height: math.unit(3, "inches")
  6251. },
  6252. {
  6253. name: "Human Scale",
  6254. height: math.unit(6, "feet")
  6255. },
  6256. {
  6257. name: "Librarian",
  6258. height: math.unit(50, "feet"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Immense",
  6263. height: math.unit(200, "miles")
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Danni Rosie" },
  6269. {
  6270. front: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(180, "lbs"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/danni-rosie/front.svg",
  6276. extra: 1260 / 1128,
  6277. bottom: 0.022
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Micro",
  6284. height: math.unit(2, "inches"),
  6285. default: true
  6286. },
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Samantha Kruse" },
  6291. {
  6292. front: {
  6293. height: math.unit(5 + 9 / 12, "feet"),
  6294. weight: math.unit(220, "lb"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/samantha-kruse/front.svg",
  6298. extra: (985 / 935),
  6299. bottom: 0.03
  6300. }
  6301. },
  6302. frontUndressed: {
  6303. height: math.unit(5 + 9 / 12, "feet"),
  6304. weight: math.unit(220, "lb"),
  6305. name: "Front (Undressed)",
  6306. image: {
  6307. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6308. extra: (973 / 923),
  6309. bottom: 0.025
  6310. }
  6311. },
  6312. fat: {
  6313. height: math.unit(5 + 9 / 12, "feet"),
  6314. weight: math.unit(900, "lb"),
  6315. name: "Front (Fat)",
  6316. image: {
  6317. source: "./media/characters/samantha-kruse/fat.svg",
  6318. extra: 2688 / 2561
  6319. }
  6320. },
  6321. },
  6322. [
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(5 + 9 / 12, "feet"),
  6326. default: true
  6327. }
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Amelia Rosie" },
  6332. {
  6333. back: {
  6334. height: math.unit(5 + 4 / 12, "feet"),
  6335. weight: math.unit(4963, "lb"),
  6336. name: "Back",
  6337. image: {
  6338. source: "./media/characters/amelia-rosie/back.svg",
  6339. extra: 1113 / 963,
  6340. bottom: 0.01
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Level 0",
  6347. height: math.unit(5 + 4 / 12, "feet")
  6348. },
  6349. {
  6350. name: "Level 1",
  6351. height: math.unit(164597, "feet"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Level 2",
  6356. height: math.unit(956243, "miles")
  6357. },
  6358. {
  6359. name: "Level 3",
  6360. height: math.unit(29421709423, "miles")
  6361. },
  6362. {
  6363. name: "Level 4",
  6364. height: math.unit(154, "lightyears")
  6365. },
  6366. {
  6367. name: "Level 5",
  6368. height: math.unit(4738272, "lightyears")
  6369. },
  6370. {
  6371. name: "Level 6",
  6372. height: math.unit(145787152896, "lightyears")
  6373. },
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Rook Kitara" },
  6378. {
  6379. front: {
  6380. height: math.unit(5 + 11 / 12, "feet"),
  6381. weight: math.unit(65, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/rook-kitara/front.svg",
  6385. extra: 1347 / 1274,
  6386. bottom: 0.005
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Totally Unfair",
  6393. height: math.unit(1.8, "mm")
  6394. },
  6395. {
  6396. name: "Lap Rookie",
  6397. height: math.unit(1.4, "feet")
  6398. },
  6399. {
  6400. name: "Normal",
  6401. height: math.unit(5 + 11 / 12, "feet"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "How Did This Happen",
  6406. height: math.unit(80, "miles")
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Pisces" },
  6412. {
  6413. front: {
  6414. height: math.unit(7, "feet"),
  6415. weight: math.unit(300, "lb"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/pisces/front.svg",
  6419. extra: 2255 / 2115,
  6420. bottom: 0.03
  6421. }
  6422. },
  6423. back: {
  6424. height: math.unit(7, "feet"),
  6425. weight: math.unit(300, "lb"),
  6426. name: "Back",
  6427. image: {
  6428. source: "./media/characters/pisces/back.svg",
  6429. extra: 2146 / 2055,
  6430. bottom: 0.04
  6431. }
  6432. },
  6433. },
  6434. [
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(7, "feet"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Swimming Pool",
  6442. height: math.unit(12.2, "meters")
  6443. },
  6444. {
  6445. name: "Olympic Swimming Pool",
  6446. height: math.unit(56.3, "meters")
  6447. },
  6448. {
  6449. name: "Lake Superior",
  6450. height: math.unit(93900, "meters")
  6451. },
  6452. {
  6453. name: "Mediterranean Sea",
  6454. height: math.unit(644457, "meters")
  6455. },
  6456. {
  6457. name: "World's Oceans",
  6458. height: math.unit(4567491, "meters")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Zelas" },
  6464. {
  6465. front: {
  6466. height: math.unit(2.3, "meters"),
  6467. weight: math.unit(120, "kg"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/zelas/front.svg"
  6471. }
  6472. },
  6473. side: {
  6474. height: math.unit(2.3, "meters"),
  6475. weight: math.unit(120, "kg"),
  6476. name: "Side",
  6477. image: {
  6478. source: "./media/characters/zelas/side.svg"
  6479. }
  6480. },
  6481. back: {
  6482. height: math.unit(2.3, "meters"),
  6483. weight: math.unit(120, "kg"),
  6484. name: "Back",
  6485. image: {
  6486. source: "./media/characters/zelas/back.svg"
  6487. }
  6488. },
  6489. foot: {
  6490. height: math.unit(1.116, "feet"),
  6491. name: "Foot",
  6492. image: {
  6493. source: "./media/characters/zelas/foot.svg"
  6494. }
  6495. },
  6496. },
  6497. [
  6498. {
  6499. name: "Normal",
  6500. height: math.unit(2.3, "meters")
  6501. },
  6502. {
  6503. name: "Macro",
  6504. height: math.unit(30, "meters"),
  6505. default: true
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Talbot" },
  6511. {
  6512. front: {
  6513. height: math.unit(1, "inch"),
  6514. weight: math.unit(0.21, "grams"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/talbot/front.svg",
  6518. extra: 594 / 544
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Micro",
  6525. height: math.unit(1, "inch"),
  6526. default: true
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Fliss" },
  6532. {
  6533. front: {
  6534. height: math.unit(3 + 3 / 12, "feet"),
  6535. weight: math.unit(51.8, "lb"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/fliss/front.svg",
  6539. extra: 840 / 640
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Teeny Tiny",
  6546. height: math.unit(1, "mm")
  6547. },
  6548. {
  6549. name: "Small",
  6550. height: math.unit(1, "inch"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Standard Sylveon",
  6555. height: math.unit(3 + 3 / 12, "feet")
  6556. },
  6557. {
  6558. name: "Large Nuisance",
  6559. height: math.unit(33, "feet")
  6560. },
  6561. {
  6562. name: "City Filler",
  6563. height: math.unit(3000, "feet")
  6564. },
  6565. {
  6566. name: "New Horizon",
  6567. height: math.unit(6000, "miles")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Fleta" },
  6573. {
  6574. front: {
  6575. height: math.unit(5, "cm"),
  6576. weight: math.unit(1.94, "g"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/fleta/front.svg",
  6580. extra: 835 / 803
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(5, "cm"),
  6585. weight: math.unit(1.94, "g"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/fleta/back.svg",
  6589. extra: 835 / 803
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Micro",
  6596. height: math.unit(5, "cm"),
  6597. default: true
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Dominic" },
  6603. {
  6604. front: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(225, "lb"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/dominic/front.svg",
  6610. extra: 1770 / 1620,
  6611. bottom: 0.025
  6612. }
  6613. },
  6614. back: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(225, "lb"),
  6617. name: "Back",
  6618. image: {
  6619. source: "./media/characters/dominic/back.svg",
  6620. extra: 1745 / 1620,
  6621. bottom: 0.065
  6622. }
  6623. },
  6624. },
  6625. [
  6626. {
  6627. name: "Nano",
  6628. height: math.unit(0.1, "mm")
  6629. },
  6630. {
  6631. name: "Micro-",
  6632. height: math.unit(1, "mm")
  6633. },
  6634. {
  6635. name: "Micro",
  6636. height: math.unit(4, "inches")
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(6 + 4 / 12, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Macro",
  6645. height: math.unit(115, "feet")
  6646. },
  6647. {
  6648. name: "Macro+",
  6649. height: math.unit(955, "feet")
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(8990, "feet")
  6654. },
  6655. {
  6656. name: "Gigmacro",
  6657. height: math.unit(9310, "miles")
  6658. },
  6659. {
  6660. name: "Teramacro",
  6661. height: math.unit(1567005010, "miles")
  6662. },
  6663. {
  6664. name: "Examacro",
  6665. height: math.unit(1425, "parsecs")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Major Colonel" },
  6671. {
  6672. front: {
  6673. height: math.unit(400, "feet"),
  6674. weight: math.unit(44444444, "lb"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/major-colonel/front.svg"
  6678. }
  6679. },
  6680. back: {
  6681. height: math.unit(400, "feet"),
  6682. weight: math.unit(44444444, "lb"),
  6683. name: "Back",
  6684. image: {
  6685. source: "./media/characters/major-colonel/back.svg"
  6686. }
  6687. },
  6688. },
  6689. [
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(400, "feet"),
  6693. default: true
  6694. },
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Axel Lycan" },
  6699. {
  6700. front: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(120, "lb"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/axel-lycan/front.svg",
  6706. extra: 1,
  6707. bottom: 0.08
  6708. }
  6709. },
  6710. },
  6711. [
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(1, "km"),
  6715. default: true
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Vanrel (Hyena)" },
  6721. {
  6722. front: {
  6723. height: math.unit(5 + 9 / 12, "feet"),
  6724. weight: math.unit(175, "lb"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/vanrel-hyena/front.svg",
  6728. extra: 1086 / 1010,
  6729. bottom: 0.04
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(5 + 9 / 12, "feet"),
  6737. default: true
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Abbott Absol" },
  6743. {
  6744. front: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(103, "lb"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/abbott-absol/front.svg",
  6750. extra: 2010 / 1842
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Megamicro",
  6757. height: math.unit(0.1, "mm")
  6758. },
  6759. {
  6760. name: "Micro",
  6761. height: math.unit(1, "inch")
  6762. },
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(6, "feet"),
  6766. default: true
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Hector" },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(264, "lb"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/hector/front.svg",
  6779. extra: 2280 / 2130,
  6780. bottom: 0.07
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(12.25, "foot"),
  6788. default: true
  6789. },
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(160, "feet")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Sal" },
  6798. {
  6799. front: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(150, "lb"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/sal/front.svg",
  6805. extra: 1846 / 1699,
  6806. bottom: 0.04
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Megamacro",
  6813. height: math.unit(10, "miles"),
  6814. default: true
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Ranger" },
  6820. {
  6821. front: {
  6822. height: math.unit(3, "meters"),
  6823. weight: math.unit(450, "kg"),
  6824. name: "front",
  6825. image: {
  6826. source: "./media/characters/ranger/front.svg",
  6827. extra: 2401 / 2243,
  6828. bottom: 0.05
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(3, "meters"),
  6836. default: true
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Theresa" },
  6842. {
  6843. front: {
  6844. height: math.unit(14, "feet"),
  6845. weight: math.unit(800, "kg"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/theresa/front.svg",
  6849. extra: 3575 / 3346,
  6850. bottom: 0.03
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(14, "feet"),
  6858. default: true
  6859. },
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Ine" },
  6864. {
  6865. front: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(3, "kg"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/ine/front.svg",
  6871. extra: 678 / 539,
  6872. bottom: 0.023
  6873. }
  6874. },
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(2.265, "feet"),
  6880. default: true
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Vial" },
  6886. {
  6887. front: {
  6888. height: math.unit(5, "feet"),
  6889. weight: math.unit(30, "kg"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/vial/front.svg",
  6893. extra: 1365 / 1277,
  6894. bottom: 0.04
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(5, "feet"),
  6902. default: true
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Rovoska" },
  6908. {
  6909. side: {
  6910. height: math.unit(3.4, "meters"),
  6911. weight: math.unit(1000, "lb"),
  6912. name: "Side",
  6913. image: {
  6914. source: "./media/characters/rovoska/side.svg",
  6915. extra: 4403 / 1515
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(3.4, "meters"),
  6923. default: true
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Gunner Rotthbauer" },
  6929. {
  6930. front: {
  6931. height: math.unit(8, "feet"),
  6932. weight: math.unit(315, "lb"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/gunner-rotthbauer/front.svg"
  6936. }
  6937. },
  6938. back: {
  6939. height: math.unit(8, "feet"),
  6940. weight: math.unit(315, "lb"),
  6941. name: "Back",
  6942. image: {
  6943. source: "./media/characters/gunner-rotthbauer/back.svg"
  6944. }
  6945. },
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(3.5, "inches")
  6951. },
  6952. {
  6953. name: "Normal",
  6954. height: math.unit(8, "feet"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(250, "feet")
  6960. },
  6961. {
  6962. name: "Megamacro",
  6963. height: math.unit(1, "AU")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Allatia" },
  6969. {
  6970. front: {
  6971. height: math.unit(5 + 5 / 12, "feet"),
  6972. weight: math.unit(140, "lb"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/allatia/front.svg",
  6976. extra: 1227 / 1180,
  6977. bottom: 0.027
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(5 + 5 / 12, "feet")
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(250, "feet"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Megamacro",
  6993. height: math.unit(8, "miles")
  6994. }
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Tene" },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(120, "lb"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/tene/front.svg",
  7006. extra: 1728 / 1578,
  7007. bottom: 0.022
  7008. }
  7009. },
  7010. stomping: {
  7011. height: math.unit(2.025, "meters"),
  7012. weight: math.unit(120, "lb"),
  7013. name: "Stomping",
  7014. image: {
  7015. source: "./media/characters/tene/stomping.svg",
  7016. extra: 938 / 873,
  7017. bottom: 0.01
  7018. }
  7019. },
  7020. sitting: {
  7021. height: math.unit(1, "meter"),
  7022. weight: math.unit(120, "lb"),
  7023. name: "Sitting",
  7024. image: {
  7025. source: "./media/characters/tene/sitting.svg",
  7026. extra: 437 / 415,
  7027. bottom: 0.1
  7028. }
  7029. },
  7030. feral: {
  7031. height: math.unit(3.9, "feet"),
  7032. weight: math.unit(250, "lb"),
  7033. name: "Feral",
  7034. image: {
  7035. source: "./media/characters/tene/feral.svg",
  7036. extra: 717 / 458,
  7037. bottom: 0.179
  7038. }
  7039. },
  7040. },
  7041. [
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(6, "feet")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(300, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(5, "miles")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Evander" },
  7059. {
  7060. side: {
  7061. height: math.unit(6, "feet"),
  7062. name: "Side",
  7063. image: {
  7064. source: "./media/characters/evander/side.svg",
  7065. extra: 877 / 477
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(0.83, "meters"),
  7073. default: true
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7079. {
  7080. front: {
  7081. height: math.unit(12, "feet"),
  7082. weight: math.unit(1000, "lb"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7086. extra: 1762 / 1611
  7087. }
  7088. },
  7089. back: {
  7090. height: math.unit(12, "feet"),
  7091. weight: math.unit(1000, "lb"),
  7092. name: "Back",
  7093. image: {
  7094. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7095. extra: 1762 / 1611
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(12, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Kaiju",
  7107. height: math.unit(150, "feet")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Zero Alurus" },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(150, "lb"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/zero-alurus/front.svg"
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(150, "lb"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/zero-alurus/back.svg"
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(5 + 10 / 12, "feet")
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(60, "feet"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Macro+",
  7143. height: math.unit(450, "feet")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Mega Shi" },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(200, "lb"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/mega-shi/front.svg",
  7156. extra: 1279 / 1250,
  7157. bottom: 0.02
  7158. }
  7159. },
  7160. back: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(200, "lb"),
  7163. name: "Back",
  7164. image: {
  7165. source: "./media/characters/mega-shi/back.svg",
  7166. extra: 1279 / 1250,
  7167. bottom: 0.02
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(16 + 6 / 12, "feet")
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(660, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Megamacro",
  7183. height: math.unit(10, "miles")
  7184. },
  7185. {
  7186. name: "Planetary Launch",
  7187. height: math.unit(500, "miles")
  7188. },
  7189. {
  7190. name: "Interstellar",
  7191. height: math.unit(1e9, "miles")
  7192. },
  7193. {
  7194. name: "Leaving the Universe",
  7195. height: math.unit(1, "gigaparsec")
  7196. },
  7197. {
  7198. name: "Travelling Universes",
  7199. height: math.unit(30e15, "parsecs")
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Odyssey" },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(150, "lb"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/odyssey/front.svg",
  7212. extra: 1782 / 1582,
  7213. bottom: 0.01
  7214. }
  7215. },
  7216. side: {
  7217. height: math.unit(5.6, "feet"),
  7218. weight: math.unit(140, "lb"),
  7219. name: "Side",
  7220. image: {
  7221. source: "./media/characters/odyssey/side.svg",
  7222. extra: 6462 / 5700
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(5 + 4 / 12, "feet")
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(1, "km")
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(3000, "km")
  7238. },
  7239. {
  7240. name: "Gigamacro",
  7241. height: math.unit(1, "AU"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Omniversal",
  7246. height: math.unit(100e14, "lightyears")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Mekuto" },
  7252. {
  7253. front: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(300, "lb"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/mekuto/front.svg",
  7259. extra: 921 / 832,
  7260. bottom: 0.03
  7261. }
  7262. },
  7263. hand: {
  7264. height: math.unit(6 / 10.24, "feet"),
  7265. name: "Hand",
  7266. image: {
  7267. source: "./media/characters/mekuto/hand.svg"
  7268. }
  7269. },
  7270. foot: {
  7271. height: math.unit(6 / 5.05, "feet"),
  7272. name: "Foot",
  7273. image: {
  7274. source: "./media/characters/mekuto/foot.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Minimicro",
  7281. height: math.unit(0.2, "inches")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1.5, "inches")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(5 + 11 / 12, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Minimacro",
  7294. height: math.unit(17 + 9 / 12, "feet")
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(177.5, "feet")
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(152, "miles")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Dafydd Tomos" },
  7308. {
  7309. front: {
  7310. height: math.unit(6.5, "inches"),
  7311. weight: math.unit(13, "oz"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/dafydd-tomos/front.svg",
  7315. extra: 2990 / 2603,
  7316. bottom: 0.03
  7317. }
  7318. },
  7319. },
  7320. [
  7321. {
  7322. name: "Micro",
  7323. height: math.unit(6.5, "inches"),
  7324. default: true
  7325. },
  7326. ]
  7327. ))
  7328. characterMakers.push(() => makeCharacter(
  7329. { name: "Splinter" },
  7330. {
  7331. front: {
  7332. height: math.unit(6, "feet"),
  7333. weight: math.unit(150, "lb"),
  7334. name: "Front",
  7335. image: {
  7336. source: "./media/characters/splinter/front.svg",
  7337. extra: 2990 / 2882,
  7338. bottom: 0.04
  7339. }
  7340. },
  7341. back: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lb"),
  7344. name: "Back",
  7345. image: {
  7346. source: "./media/characters/splinter/back.svg",
  7347. extra: 2990 / 2882,
  7348. bottom: 0.04
  7349. }
  7350. },
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(6, "feet")
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(230, "meters"),
  7360. default: true
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "SnowGabumon" },
  7366. {
  7367. front: {
  7368. height: math.unit(4 + 10 / 12, "feet"),
  7369. weight: math.unit(480, "lb"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/snow-gabumon/front.svg",
  7373. extra: 1140 / 963,
  7374. bottom: 0.058
  7375. }
  7376. },
  7377. back: {
  7378. height: math.unit(4 + 10 / 12, "feet"),
  7379. weight: math.unit(480, "lb"),
  7380. name: "Back",
  7381. image: {
  7382. source: "./media/characters/snow-gabumon/back.svg",
  7383. extra: 1115 / 962,
  7384. bottom: 0.041
  7385. }
  7386. },
  7387. frontUndresed: {
  7388. height: math.unit(4 + 10 / 12, "feet"),
  7389. weight: math.unit(480, "lb"),
  7390. name: "Front (Undressed)",
  7391. image: {
  7392. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7393. extra: 1061 / 960,
  7394. bottom: 0.045
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Micro",
  7401. height: math.unit(1, "inch")
  7402. },
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(4 + 10 / 12, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(200, "feet")
  7411. },
  7412. {
  7413. name: "Megamacro",
  7414. height: math.unit(120, "miles")
  7415. },
  7416. {
  7417. name: "Gigamacro",
  7418. height: math.unit(9800, "miles")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Moody" },
  7424. {
  7425. front: {
  7426. height: math.unit(1.7, "meters"),
  7427. weight: math.unit(140, "lb"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/moody/front.svg",
  7431. extra: 3226 / 3007,
  7432. bottom: 0.087
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(1, "mm")
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(1.7, "meters"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(80, "meters")
  7449. },
  7450. {
  7451. name: "Macro+",
  7452. height: math.unit(500, "meters")
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Zyas" },
  7458. {
  7459. front: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(150, "lb"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/zyas/front.svg",
  7465. extra: 1180 / 1120,
  7466. bottom: 0.045
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(10, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(500, "feet")
  7479. },
  7480. {
  7481. name: "Megamacro",
  7482. height: math.unit(5, "miles")
  7483. },
  7484. {
  7485. name: "Teramacro",
  7486. height: math.unit(150000, "miles")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Cuon" },
  7492. {
  7493. front: {
  7494. height: math.unit(6, "feet"),
  7495. weight: math.unit(150, "lb"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/cuon/front.svg",
  7499. extra: 1390 / 1320,
  7500. bottom: 0.008
  7501. }
  7502. },
  7503. },
  7504. [
  7505. {
  7506. name: "Micro",
  7507. height: math.unit(3, "inches")
  7508. },
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(18 + 9 / 12, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Macro",
  7516. height: math.unit(360, "feet")
  7517. },
  7518. {
  7519. name: "Megamacro",
  7520. height: math.unit(360, "miles")
  7521. },
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "Nyanuxk" },
  7526. {
  7527. front: {
  7528. height: math.unit(2.4, "meters"),
  7529. weight: math.unit(70, "kg"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/nyanuxk/front.svg",
  7533. extra: 1172 / 1084,
  7534. bottom: 0.065
  7535. }
  7536. },
  7537. side: {
  7538. height: math.unit(2.4, "meters"),
  7539. weight: math.unit(70, "kg"),
  7540. name: "Side",
  7541. image: {
  7542. source: "./media/characters/nyanuxk/side.svg",
  7543. extra: 1190 / 1132,
  7544. bottom: 0.007
  7545. }
  7546. },
  7547. back: {
  7548. height: math.unit(2.4, "meters"),
  7549. weight: math.unit(70, "kg"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/nyanuxk/back.svg",
  7553. extra: 1200 / 1141,
  7554. bottom: 0.015
  7555. }
  7556. },
  7557. foot: {
  7558. height: math.unit(0.52, "meters"),
  7559. name: "Foot",
  7560. image: {
  7561. source: "./media/characters/nyanuxk/foot.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(2, "cm")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(2.4, "meters"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Smaller Macro",
  7577. height: math.unit(120, "meters")
  7578. },
  7579. {
  7580. name: "Bigger Macro",
  7581. height: math.unit(1.2, "km")
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(15, "kilometers")
  7586. },
  7587. {
  7588. name: "Gigamacro",
  7589. height: math.unit(2000, "km")
  7590. },
  7591. {
  7592. name: "Teramacro",
  7593. height: math.unit(500000, "km")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Ailbhe" },
  7599. {
  7600. side: {
  7601. height: math.unit(6, "feet"),
  7602. name: "Side",
  7603. image: {
  7604. source: "./media/characters/ailbhe/side.svg",
  7605. extra: 757 / 464,
  7606. bottom: 0.041
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(1.07, "meters"),
  7614. default: true
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Zevulfius" },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(120, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/zevulfius/front.svg",
  7627. extra: 965 / 903
  7628. }
  7629. },
  7630. side: {
  7631. height: math.unit(6, "feet"),
  7632. weight: math.unit(120, "kg"),
  7633. name: "Side",
  7634. image: {
  7635. source: "./media/characters/zevulfius/side.svg",
  7636. extra: 939 / 900
  7637. }
  7638. },
  7639. back: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(120, "kg"),
  7642. name: "Back",
  7643. image: {
  7644. source: "./media/characters/zevulfius/back.svg",
  7645. extra: 918 / 854,
  7646. bottom: 0.005
  7647. }
  7648. },
  7649. foot: {
  7650. height: math.unit(6 / 3.72, "feet"),
  7651. name: "Foot",
  7652. image: {
  7653. source: "./media/characters/zevulfius/foot.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Macro",
  7660. height: math.unit(750, "meters")
  7661. },
  7662. {
  7663. name: "Megamacro",
  7664. height: math.unit(20, "km"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Gigamacro",
  7669. height: math.unit(2000, "km")
  7670. },
  7671. {
  7672. name: "Teramacro",
  7673. height: math.unit(250000, "km")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Rikes" },
  7679. {
  7680. front: {
  7681. height: math.unit(100, "feet"),
  7682. weight: math.unit(350, "kg"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/rikes/front.svg",
  7686. extra: 1565 / 1483,
  7687. bottom: 0.017
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(100, "feet"),
  7695. default: true
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Adam Silver-Mane" },
  7701. {
  7702. anthro: {
  7703. height: math.unit(8, "feet"),
  7704. weight: math.unit(120, "kg"),
  7705. name: "Anthro",
  7706. image: {
  7707. source: "./media/characters/adam-silver-mane/anthro.svg",
  7708. extra: 5743 / 5339,
  7709. bottom: 0.07
  7710. }
  7711. },
  7712. taur: {
  7713. height: math.unit(16, "feet"),
  7714. weight: math.unit(1500, "kg"),
  7715. name: "Taur",
  7716. image: {
  7717. source: "./media/characters/adam-silver-mane/taur.svg",
  7718. extra: 1713 / 1571,
  7719. bottom: 0.01
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(8, "feet")
  7727. },
  7728. {
  7729. name: "Minimacro",
  7730. height: math.unit(80, "feet")
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(800, "feet"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Megamacro",
  7739. height: math.unit(8000, "feet")
  7740. },
  7741. {
  7742. name: "Gigamacro",
  7743. height: math.unit(800, "miles")
  7744. },
  7745. {
  7746. name: "Teramacro",
  7747. height: math.unit(80000, "miles")
  7748. },
  7749. {
  7750. name: "Celestial",
  7751. height: math.unit(8e6, "miles")
  7752. },
  7753. {
  7754. name: "Star Dragon",
  7755. height: math.unit(800000, "parsecs")
  7756. },
  7757. {
  7758. name: "Godly",
  7759. height: math.unit(800, "teraparsecs")
  7760. },
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Ky'owin" },
  7765. {
  7766. front: {
  7767. height: math.unit(6, "feet"),
  7768. weight: math.unit(150, "lb"),
  7769. name: "Front",
  7770. image: {
  7771. source: "./media/characters/ky'owin/front.svg",
  7772. extra: 3888 / 3068,
  7773. bottom: 0.015
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(6 + 8 / 12, "feet")
  7781. },
  7782. {
  7783. name: "Large",
  7784. height: math.unit(68, "feet")
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(132, "feet")
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(340, "feet")
  7793. },
  7794. {
  7795. name: "Macro++",
  7796. height: math.unit(680, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Megamacro",
  7801. height: math.unit(1, "mile")
  7802. },
  7803. {
  7804. name: "Megamacro+",
  7805. height: math.unit(10, "miles")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Mal" },
  7811. {
  7812. front: {
  7813. height: math.unit(4, "feet"),
  7814. weight: math.unit(50, "lb"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/mal/front.svg",
  7818. extra: 785 / 724,
  7819. bottom: 0.07
  7820. }
  7821. },
  7822. },
  7823. [
  7824. {
  7825. name: "Micro",
  7826. height: math.unit(4, "inches")
  7827. },
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(4, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(200, "feet")
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Jordan Deware" },
  7841. {
  7842. front: {
  7843. height: math.unit(6, "feet"),
  7844. weight: math.unit(150, "lb"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/jordan-deware/front.svg",
  7848. extra: 1191 / 1012
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Nano",
  7855. height: math.unit(0.01, "mm")
  7856. },
  7857. {
  7858. name: "Minimicro",
  7859. height: math.unit(1, "mm")
  7860. },
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(0.5, "inches")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(4, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Minimacro",
  7872. height: math.unit(40, "meters")
  7873. },
  7874. {
  7875. name: "Small Macro",
  7876. height: math.unit(400, "meters")
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(4, "miles")
  7881. },
  7882. {
  7883. name: "Megamacro",
  7884. height: math.unit(40, "miles")
  7885. },
  7886. {
  7887. name: "Megamacro+",
  7888. height: math.unit(400, "miles")
  7889. },
  7890. {
  7891. name: "Gigamacro",
  7892. height: math.unit(400000, "miles")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Kimiko" },
  7898. {
  7899. side: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(150, "lb"),
  7902. name: "Side",
  7903. image: {
  7904. source: "./media/characters/kimiko/side.svg",
  7905. extra: 600 / 358
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Normal",
  7912. height: math.unit(15, "feet"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(220, "feet")
  7918. },
  7919. {
  7920. name: "Macro+",
  7921. height: math.unit(1450, "feet")
  7922. },
  7923. {
  7924. name: "Megamacro",
  7925. height: math.unit(11500, "feet")
  7926. },
  7927. {
  7928. name: "Gigamacro",
  7929. height: math.unit(9500, "miles")
  7930. },
  7931. {
  7932. name: "Teramacro",
  7933. height: math.unit(2208005005, "miles")
  7934. },
  7935. {
  7936. name: "Examacro",
  7937. height: math.unit(2750, "parsecs")
  7938. },
  7939. {
  7940. name: "Zettamacro",
  7941. height: math.unit(101500, "parsecs")
  7942. },
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Andrew Sleepy" },
  7947. {
  7948. front: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(70, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/andrew-sleepy/front.svg"
  7954. }
  7955. },
  7956. side: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(70, "kg"),
  7959. name: "Side",
  7960. image: {
  7961. source: "./media/characters/andrew-sleepy/side.svg"
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Micro",
  7968. height: math.unit(1, "mm"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Judio" },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(150, "lb"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/judio/front.svg",
  7982. extra: 1258 / 1110
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(5 + 6 / 12, "feet")
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(1000, "feet"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Megamacro",
  7998. height: math.unit(10, "miles")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Nomaxice" },
  8004. {
  8005. front: {
  8006. height: math.unit(6, "feet"),
  8007. weight: math.unit(68, "kg"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/nomaxice/front.svg",
  8011. extra: 1498 / 1073,
  8012. bottom: 0.075
  8013. }
  8014. },
  8015. foot: {
  8016. height: math.unit(1.1, "feet"),
  8017. name: "Foot",
  8018. image: {
  8019. source: "./media/characters/nomaxice/foot.svg"
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Micro",
  8026. height: math.unit(8, "cm")
  8027. },
  8028. {
  8029. name: "Norm",
  8030. height: math.unit(1.82, "m")
  8031. },
  8032. {
  8033. name: "Norm+",
  8034. height: math.unit(8.8, "feet")
  8035. },
  8036. {
  8037. name: "Big",
  8038. height: math.unit(8, "meters"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(18, "meters")
  8044. },
  8045. {
  8046. name: "Macro+",
  8047. height: math.unit(88, "meters")
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Dydros" },
  8053. {
  8054. front: {
  8055. height: math.unit(12, "feet"),
  8056. weight: math.unit(1.5, "tons"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/dydros/front.svg",
  8060. extra: 863 / 800,
  8061. bottom: 0.015
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(12, "feet"),
  8066. weight: math.unit(1.5, "tons"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/dydros/back.svg",
  8070. extra: 900 / 843,
  8071. bottom: 0.005
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(12, "feet"),
  8079. default: true
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Riggi" },
  8085. {
  8086. front: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(100, "kg"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/riggi/front.svg",
  8092. extra: 5787 / 5303
  8093. }
  8094. },
  8095. hyper: {
  8096. height: math.unit(6 * 5 / 3, "feet"),
  8097. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8098. name: "Hyper",
  8099. image: {
  8100. source: "./media/characters/riggi/hyper.svg",
  8101. extra: 3595 / 3485
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Small Macro",
  8108. height: math.unit(50, "feet")
  8109. },
  8110. {
  8111. name: "Default",
  8112. height: math.unit(200, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Loom",
  8117. height: math.unit(10000, "feet")
  8118. },
  8119. {
  8120. name: "Cruising Altitude",
  8121. height: math.unit(30000, "feet")
  8122. },
  8123. {
  8124. name: "Megamacro",
  8125. height: math.unit(100, "miles")
  8126. },
  8127. {
  8128. name: "Continent Sized",
  8129. height: math.unit(2800, "miles")
  8130. },
  8131. {
  8132. name: "Earth Sized",
  8133. height: math.unit(8000, "miles")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Alexi" },
  8139. {
  8140. front: {
  8141. height: math.unit(6, "feet"),
  8142. weight: math.unit(250, "lb"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/alexi/front.svg",
  8146. extra: 3483 / 3291,
  8147. bottom: 0.04
  8148. }
  8149. },
  8150. back: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(250, "lb"),
  8153. name: "Back",
  8154. image: {
  8155. source: "./media/characters/alexi/back.svg",
  8156. extra: 3533 / 3356,
  8157. bottom: 0.021
  8158. }
  8159. },
  8160. frontTransformed: {
  8161. height: math.unit(12.5, "feet"),
  8162. weight: math.unit(4000, "lb"),
  8163. name: "Front (Transformed)",
  8164. image: {
  8165. source: "./media/characters/alexi/front-transformed.svg",
  8166. extra: 5345 / 5100,
  8167. bottom: 0.03
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(3, "meters"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Minimacro",
  8179. height: math.unit(30, "meters")
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(500, "meters")
  8184. },
  8185. {
  8186. name: "Megamacro",
  8187. height: math.unit(9000, "km")
  8188. },
  8189. {
  8190. name: "Teramacro",
  8191. height: math.unit(384000, "km")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Kayroo" },
  8197. {
  8198. front: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(150, "lb"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/kayroo/front.svg",
  8204. extra: 1153 / 1038,
  8205. bottom: 0.06
  8206. }
  8207. },
  8208. foot: {
  8209. height: math.unit(6, "feet"),
  8210. weight: math.unit(150, "lb"),
  8211. name: "Foot",
  8212. image: {
  8213. source: "./media/characters/kayroo/foot.svg"
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(8, "feet"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Minimacro",
  8225. height: math.unit(250, "feet")
  8226. },
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(2800, "feet")
  8230. },
  8231. {
  8232. name: "Megamacro",
  8233. height: math.unit(5200, "feet")
  8234. },
  8235. {
  8236. name: "Gigamacro",
  8237. height: math.unit(27000, "feet")
  8238. },
  8239. {
  8240. name: "Omega",
  8241. height: math.unit(45000, "feet")
  8242. },
  8243. ]
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Rhys" },
  8247. {
  8248. front: {
  8249. height: math.unit(18, "feet"),
  8250. weight: math.unit(5800, "lb"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/rhys/front.svg",
  8254. extra: 3386 / 3090,
  8255. bottom: 0.07
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(18, "feet"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Working Size",
  8267. height: math.unit(200, "feet")
  8268. },
  8269. {
  8270. name: "Demolition Size",
  8271. height: math.unit(2000, "feet")
  8272. },
  8273. {
  8274. name: "Maximum Licensed Size",
  8275. height: math.unit(5, "miles")
  8276. },
  8277. {
  8278. name: "Maximum Observed Size",
  8279. height: math.unit(10, "yottameters")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Toto" },
  8285. {
  8286. front: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(250, "lb"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/toto/front.svg",
  8292. extra: 527 / 479,
  8293. bottom: 0.05
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(3, "feet")
  8301. },
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(10, "feet")
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(150, "feet"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Megamacro",
  8313. height: math.unit(1200, "feet")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "King" },
  8319. {
  8320. back: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(150, "lb"),
  8323. name: "Back",
  8324. image: {
  8325. source: "./media/characters/king/back.svg"
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(2, "inches")
  8333. },
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(8, "feet")
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(200, "feet"),
  8341. default: true
  8342. },
  8343. {
  8344. name: "Megamacro",
  8345. height: math.unit(50, "miles")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Cordite" },
  8351. {
  8352. anthro: {
  8353. height: math.unit(6 + 5 / 12, "feet"),
  8354. weight: math.unit(280, "lb"),
  8355. name: "Anthro",
  8356. image: {
  8357. source: "./media/characters/cordite/anthro.svg",
  8358. extra: 1986 / 1905,
  8359. bottom: 0.025
  8360. }
  8361. },
  8362. feral: {
  8363. height: math.unit(2, "feet"),
  8364. weight: math.unit(90, "lb"),
  8365. name: "Feral",
  8366. image: {
  8367. source: "./media/characters/cordite/feral.svg",
  8368. extra: 1260 / 755,
  8369. bottom: 0.05
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(6 + 5 / 12, "feet"),
  8377. default: true
  8378. },
  8379. ]
  8380. ))
  8381. characterMakers.push(() => makeCharacter(
  8382. { name: "Pianostrong" },
  8383. {
  8384. front: {
  8385. height: math.unit(6, "feet"),
  8386. weight: math.unit(150, "lb"),
  8387. name: "Front",
  8388. image: {
  8389. source: "./media/characters/pianostrong/front.svg",
  8390. extra: 6577 / 6254,
  8391. bottom: 0.02
  8392. }
  8393. },
  8394. side: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(150, "lb"),
  8397. name: "Side",
  8398. image: {
  8399. source: "./media/characters/pianostrong/side.svg",
  8400. extra: 6106 / 5730
  8401. }
  8402. },
  8403. back: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(150, "lb"),
  8406. name: "Back",
  8407. image: {
  8408. source: "./media/characters/pianostrong/back.svg",
  8409. extra: 6085 / 5733,
  8410. bottom: 0.01
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Macro",
  8417. height: math.unit(100, "feet")
  8418. },
  8419. {
  8420. name: "Macro+",
  8421. height: math.unit(300, "feet"),
  8422. default: true
  8423. },
  8424. {
  8425. name: "Macro++",
  8426. height: math.unit(1000, "feet")
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Kona" },
  8432. {
  8433. front: {
  8434. height: math.unit(6, "feet"),
  8435. weight: math.unit(150, "lb"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/kona/front.svg",
  8439. extra: 2960 / 2629,
  8440. bottom: 0.005
  8441. }
  8442. },
  8443. },
  8444. [
  8445. {
  8446. name: "Normal",
  8447. height: math.unit(11 + 8 / 12, "feet")
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(850, "feet"),
  8452. default: true
  8453. },
  8454. {
  8455. name: "Macro+",
  8456. height: math.unit(1.5, "km"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Megamacro",
  8461. height: math.unit(80, "miles")
  8462. },
  8463. {
  8464. name: "Gigamacro",
  8465. height: math.unit(3500, "miles")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Levi" },
  8471. {
  8472. side: {
  8473. height: math.unit(1.9, "meters"),
  8474. weight: math.unit(326, "kg"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/levi/side.svg",
  8478. extra: 1704 / 1334,
  8479. bottom: 0.02
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(1.9, "meters"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(20, "meters")
  8492. },
  8493. {
  8494. name: "Macro+",
  8495. height: math.unit(200, "meters")
  8496. },
  8497. {
  8498. name: "Megamacro",
  8499. height: math.unit(2, "km")
  8500. },
  8501. {
  8502. name: "Megamacro+",
  8503. height: math.unit(20, "km")
  8504. },
  8505. {
  8506. name: "Gigamacro",
  8507. height: math.unit(2500, "km")
  8508. },
  8509. {
  8510. name: "Gigamacro+",
  8511. height: math.unit(120000, "km")
  8512. },
  8513. {
  8514. name: "Teramacro",
  8515. height: math.unit(7.77e6, "km")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "BMC" },
  8521. {
  8522. front: {
  8523. height: math.unit(6 + 4 / 12, "feet"),
  8524. weight: math.unit(188, "lb"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/bmc/front.svg",
  8528. extra: 1067 / 1022,
  8529. bottom: 0.047
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Human-sized",
  8536. height: math.unit(6 + 4 / 12, "feet")
  8537. },
  8538. {
  8539. name: "Small",
  8540. height: math.unit(250, "feet")
  8541. },
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(1250, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Good Day",
  8549. height: math.unit(88, "miles")
  8550. },
  8551. {
  8552. name: "Largest Measured Size",
  8553. height: math.unit(11.2e6, "lightyears")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Sven the Kaiju" },
  8559. {
  8560. front: {
  8561. height: math.unit(20, "feet"),
  8562. weight: math.unit(2016, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/sven-the-kaiju/front.svg",
  8566. extra: 1479 / 1449,
  8567. bottom: 0.05
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Fairy",
  8574. height: math.unit(6, "inches")
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(20, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Rampage",
  8583. height: math.unit(200, "feet")
  8584. },
  8585. {
  8586. name: "Archfey Forest Guardian",
  8587. height: math.unit(1, "mile")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Marik" },
  8593. {
  8594. front: {
  8595. height: math.unit(4, "meters"),
  8596. weight: math.unit(2, "tons"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/marik/front.svg",
  8600. extra: 1057 / 1003,
  8601. bottom: 0.08
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(4, "meters"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Macro",
  8613. height: math.unit(20, "meters")
  8614. },
  8615. {
  8616. name: "Megamacro",
  8617. height: math.unit(50, "km")
  8618. },
  8619. {
  8620. name: "Gigamacro",
  8621. height: math.unit(100, "km")
  8622. },
  8623. {
  8624. name: "Alpha Macro",
  8625. height: math.unit(7.88e7, "yottameters")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Mel" },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(110, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/mel/front.svg",
  8638. extra: 736 / 617,
  8639. bottom: 0.017
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Pico",
  8646. height: math.unit(3, "pm")
  8647. },
  8648. {
  8649. name: "Nano",
  8650. height: math.unit(3, "nm")
  8651. },
  8652. {
  8653. name: "Micro",
  8654. height: math.unit(0.3, "mm"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Micro+",
  8659. height: math.unit(3, "mm")
  8660. },
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(5 + 10.5 / 12, "feet")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Lykonous" },
  8669. {
  8670. kaiju: {
  8671. height: math.unit(1.75, "meters"),
  8672. weight: math.unit(55, "kg"),
  8673. name: "Kaiju",
  8674. image: {
  8675. source: "./media/characters/lykonous/kaiju.svg",
  8676. extra: 1055 / 946,
  8677. bottom: 0.135
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(2.5, "meters"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Kaiju Dragon",
  8689. height: math.unit(60, "meters")
  8690. },
  8691. {
  8692. name: "Mega Kaiju",
  8693. height: math.unit(120, "km")
  8694. },
  8695. {
  8696. name: "Giga Kaiju",
  8697. height: math.unit(200, "megameters")
  8698. },
  8699. {
  8700. name: "Terra Kaiju",
  8701. height: math.unit(400, "gigameters")
  8702. },
  8703. {
  8704. name: "Kaiju Dragon God",
  8705. height: math.unit(13000, "exaparsecs")
  8706. },
  8707. ]
  8708. ))
  8709. characterMakers.push(() => makeCharacter(
  8710. { name: "Blü" },
  8711. {
  8712. front: {
  8713. height: math.unit(6, "feet"),
  8714. weight: math.unit(150, "lb"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/blü/front.svg",
  8718. extra: 1883 / 1564,
  8719. bottom: 0.031
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(13, "feet"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "Big Boi",
  8731. height: math.unit(150, "meters")
  8732. },
  8733. {
  8734. name: "Mini Stomper",
  8735. height: math.unit(300, "meters")
  8736. },
  8737. {
  8738. name: "Macro",
  8739. height: math.unit(1000, "meters")
  8740. },
  8741. {
  8742. name: "Megamacro",
  8743. height: math.unit(11000, "meters")
  8744. },
  8745. {
  8746. name: "Gigamacro",
  8747. height: math.unit(11000, "km")
  8748. },
  8749. {
  8750. name: "Teramacro",
  8751. height: math.unit(420000, "km")
  8752. },
  8753. {
  8754. name: "Examacro",
  8755. height: math.unit(120, "parsecs")
  8756. },
  8757. {
  8758. name: "God Tho",
  8759. height: math.unit(98000000000, "parsecs")
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Scales" },
  8765. {
  8766. taurFront: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(200, "lb"),
  8769. name: "Taur (Front)",
  8770. image: {
  8771. source: "./media/characters/scales/taur-front.svg",
  8772. extra: 1,
  8773. bottom: 0.05
  8774. }
  8775. },
  8776. taurBack: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(200, "lb"),
  8779. name: "Taur (Back)",
  8780. image: {
  8781. source: "./media/characters/scales/taur-back.svg",
  8782. extra: 1,
  8783. bottom: 0.08
  8784. }
  8785. },
  8786. anthro: {
  8787. height: math.unit(6 * 7 / 12, "feet"),
  8788. weight: math.unit(100, "lb"),
  8789. name: "Anthro",
  8790. image: {
  8791. source: "./media/characters/scales/anthro.svg",
  8792. extra: 1,
  8793. bottom: 0.06
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(12, "feet"),
  8801. default: true
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Koragos" },
  8807. {
  8808. front: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(150, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/koragos/front.svg",
  8814. extra: 841 / 794,
  8815. bottom: 0.035
  8816. }
  8817. },
  8818. back: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(150, "lb"),
  8821. name: "Back",
  8822. image: {
  8823. source: "./media/characters/koragos/back.svg",
  8824. extra: 841 / 810,
  8825. bottom: 0.022
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(6 + 11 / 12, "feet"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(490, "feet")
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(10, "miles")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(50, "miles")
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Xylrem" },
  8851. {
  8852. front: {
  8853. height: math.unit(6, "feet"),
  8854. weight: math.unit(250, "lb"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/xylrem/front.svg",
  8858. extra: 3323 / 3050,
  8859. bottom: 0.065
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Micro",
  8866. height: math.unit(4, "feet")
  8867. },
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(16, "feet"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Macro",
  8875. height: math.unit(2720, "feet")
  8876. },
  8877. {
  8878. name: "Megamacro",
  8879. height: math.unit(25000, "miles")
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Ikideru" },
  8885. {
  8886. front: {
  8887. height: math.unit(8, "feet"),
  8888. weight: math.unit(250, "kg"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/ikideru/front.svg",
  8892. extra: 930 / 870,
  8893. bottom: 0.087
  8894. }
  8895. },
  8896. back: {
  8897. height: math.unit(8, "feet"),
  8898. weight: math.unit(250, "kg"),
  8899. name: "Back",
  8900. image: {
  8901. source: "./media/characters/ikideru/back.svg",
  8902. extra: 919 / 852,
  8903. bottom: 0.055
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Rare",
  8910. height: math.unit(8, "feet"),
  8911. default: true
  8912. },
  8913. {
  8914. name: "Playful Loom",
  8915. height: math.unit(80, "feet")
  8916. },
  8917. {
  8918. name: "City Leaner",
  8919. height: math.unit(230, "feet")
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(2500, "feet")
  8924. },
  8925. {
  8926. name: "Gigamacro",
  8927. height: math.unit(26400, "feet")
  8928. },
  8929. {
  8930. name: "Tectonic Shifter",
  8931. height: math.unit(1.7, "megameters")
  8932. },
  8933. {
  8934. name: "Planet Carer",
  8935. height: math.unit(21, "megameters")
  8936. },
  8937. {
  8938. name: "God",
  8939. height: math.unit(11157.22, "parsecs")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Neo" },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(120, "lb"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/neo/front.svg"
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Micro",
  8958. height: math.unit(2, "inches"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Human Size",
  8963. height: math.unit(5 + 8 / 12, "feet")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Chauncey (Chantz)" },
  8969. {
  8970. front: {
  8971. height: math.unit(13 + 10 / 12, "feet"),
  8972. weight: math.unit(5320, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/chauncey-chantz/front.svg",
  8976. extra: 1587 / 1435,
  8977. bottom: 0.02
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(13 + 10 / 12, "feet"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Macro",
  8989. height: math.unit(45, "feet")
  8990. },
  8991. {
  8992. name: "Megamacro",
  8993. height: math.unit(250, "miles")
  8994. },
  8995. {
  8996. name: "Planetary",
  8997. height: math.unit(10000, "miles")
  8998. },
  8999. {
  9000. name: "Galactic",
  9001. height: math.unit(40000, "parsecs")
  9002. },
  9003. {
  9004. name: "Universal",
  9005. height: math.unit(1, "yottameter")
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Epifox" },
  9011. {
  9012. front: {
  9013. height: math.unit(6, "feet"),
  9014. weight: math.unit(150, "lb"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/epifox/front.svg",
  9018. extra: 1,
  9019. bottom: 0.075
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Micro",
  9026. height: math.unit(6, "inches")
  9027. },
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(12, "feet"),
  9031. default: true
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(3810, "feet")
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(500, "miles")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Colin T." },
  9045. {
  9046. front: {
  9047. height: math.unit(1.8796, "m"),
  9048. weight: math.unit(230, "lb"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/colin-t/front.svg",
  9052. extra: 1272 / 1193,
  9053. bottom: 0.07
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(0.571, "meters")
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(1.8796, "meters"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Tall",
  9069. height: math.unit(4, "meters")
  9070. },
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(67.241, "meters")
  9074. },
  9075. {
  9076. name: "Megamacro",
  9077. height: math.unit(371.856, "meters")
  9078. },
  9079. {
  9080. name: "Planetary",
  9081. height: math.unit(12631.5689, "km")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Matvei" },
  9087. {
  9088. front: {
  9089. height: math.unit(1.85, "meters"),
  9090. weight: math.unit(80, "kg"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/matvei/front.svg",
  9094. extra: 614 / 594,
  9095. bottom: 0.01
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(1.85, "meters"),
  9103. default: true
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Quincy" },
  9109. {
  9110. front: {
  9111. height: math.unit(5 + 9 / 12, "feet"),
  9112. weight: math.unit(70, "lb"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/quincy/front.svg",
  9116. extra: 3041 / 2751
  9117. }
  9118. },
  9119. back: {
  9120. height: math.unit(5 + 9 / 12, "feet"),
  9121. weight: math.unit(70, "lb"),
  9122. name: "Back",
  9123. image: {
  9124. source: "./media/characters/quincy/back.svg",
  9125. extra: 3041 / 2751
  9126. }
  9127. },
  9128. flying: {
  9129. height: math.unit(5 + 4 / 12, "feet"),
  9130. weight: math.unit(70, "lb"),
  9131. name: "Flying",
  9132. image: {
  9133. source: "./media/characters/quincy/flying.svg",
  9134. extra: 1044 / 930
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Micro",
  9141. height: math.unit(3, "cm")
  9142. },
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(5 + 9 / 12, "feet")
  9146. },
  9147. {
  9148. name: "Macro",
  9149. height: math.unit(200, "meters"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(1000, "meters")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Vanrel" },
  9160. {
  9161. front: {
  9162. height: math.unit(4 + 7 / 12, "feet"),
  9163. weight: math.unit(150, "lb"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/vanrel/front.svg",
  9167. extra: 1,
  9168. bottom: 0.02
  9169. }
  9170. },
  9171. elemental: {
  9172. height: math.unit(4 + 2/12, "feet"),
  9173. weight: math.unit(150, "lb"),
  9174. name: "Elemental",
  9175. image: {
  9176. source: "./media/characters/vanrel/elemental.svg"
  9177. }
  9178. },
  9179. side: {
  9180. height: math.unit(4 + 7 / 12, "feet"),
  9181. weight: math.unit(150, "lb"),
  9182. name: "Side",
  9183. image: {
  9184. source: "./media/characters/vanrel/side.svg",
  9185. extra: 1,
  9186. bottom: 0.025
  9187. }
  9188. },
  9189. tome: {
  9190. height: math.unit(1.35, "feet"),
  9191. weight: math.unit(10, "lb"),
  9192. name: "Vanrel's Tome",
  9193. rename: true,
  9194. image: {
  9195. source: "./media/characters/vanrel/tome.svg"
  9196. }
  9197. },
  9198. beans: {
  9199. height: math.unit(0.89, "feet"),
  9200. name: "Beans",
  9201. image: {
  9202. source: "./media/characters/vanrel/beans.svg"
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(4 + 7 / 12, "feet"),
  9210. default: true
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Kuiper Vanrel" },
  9216. {
  9217. front: {
  9218. height: math.unit(7 + 5 / 12, "feet"),
  9219. weight: math.unit(150, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/kuiper-vanrel/front.svg",
  9223. extra: 1118 / 1068,
  9224. bottom: 0.09
  9225. }
  9226. },
  9227. foot: {
  9228. height: math.unit(0.55, "meters"),
  9229. name: "Foot",
  9230. image: {
  9231. source: "./media/characters/kuiper-vanrel/foot.svg",
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(7 + 5 / 12, "feet"),
  9239. default: true
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Keset Vanrel" },
  9245. {
  9246. front: {
  9247. height: math.unit(8 + 5 / 12, "feet"),
  9248. weight: math.unit(150, "lb"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/keset-vanrel/front.svg",
  9252. extra: 1150 / 1084,
  9253. bottom: 0.05
  9254. }
  9255. },
  9256. hand: {
  9257. height: math.unit(0.6, "meters"),
  9258. name: "Hand",
  9259. image: {
  9260. source: "./media/characters/keset-vanrel/hand.svg"
  9261. }
  9262. },
  9263. foot: {
  9264. height: math.unit(0.94978, "meters"),
  9265. name: "Foot",
  9266. image: {
  9267. source: "./media/characters/keset-vanrel/foot.svg"
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(8 + 5 / 12, "feet"),
  9275. default: true
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Neos" },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(150, "lb"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/neos/front.svg",
  9288. extra: 1696 / 992,
  9289. bottom: 0.14
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(54, "cm"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(100, "m")
  9302. },
  9303. {
  9304. name: "Megamacro",
  9305. height: math.unit(10, "km")
  9306. },
  9307. {
  9308. name: "Megamacro+",
  9309. height: math.unit(100, "km")
  9310. },
  9311. {
  9312. name: "Gigamacro",
  9313. height: math.unit(100, "Mm")
  9314. },
  9315. {
  9316. name: "Teramacro",
  9317. height: math.unit(100, "Gm")
  9318. },
  9319. {
  9320. name: "Examacro",
  9321. height: math.unit(100, "Em")
  9322. },
  9323. {
  9324. name: "Godly",
  9325. height: math.unit(10000, "Ym")
  9326. },
  9327. {
  9328. name: "Beyond Godly",
  9329. height: math.unit(10000000, "Ym")
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Sammy Mouse" },
  9335. {
  9336. feminine: {
  9337. height: math.unit(5, "feet"),
  9338. weight: math.unit(100, "lb"),
  9339. name: "Feminine",
  9340. image: {
  9341. source: "./media/characters/sammy-mouse/feminine.svg",
  9342. extra: 2526 / 2425,
  9343. bottom: 0.123
  9344. }
  9345. },
  9346. masculine: {
  9347. height: math.unit(5, "feet"),
  9348. weight: math.unit(100, "lb"),
  9349. name: "Masculine",
  9350. image: {
  9351. source: "./media/characters/sammy-mouse/masculine.svg",
  9352. extra: 2526 / 2425,
  9353. bottom: 0.123
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(5, "inches")
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(5, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(60, "feet")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Kole" },
  9375. {
  9376. front: {
  9377. height: math.unit(4, "feet"),
  9378. weight: math.unit(50, "lb"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/kole/front.svg",
  9382. extra: 1423 / 1303,
  9383. bottom: 0.025
  9384. }
  9385. },
  9386. back: {
  9387. height: math.unit(4, "feet"),
  9388. weight: math.unit(50, "lb"),
  9389. name: "Back",
  9390. image: {
  9391. source: "./media/characters/kole/back.svg",
  9392. extra: 1426 / 1280,
  9393. bottom: 0.02
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(4, "feet"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Rufran" },
  9407. {
  9408. front: {
  9409. height: math.unit(2 + 6 / 12, "feet"),
  9410. weight: math.unit(20, "lb"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/rufran/front.svg",
  9414. extra: 2041 / 1839,
  9415. bottom: 0.055
  9416. }
  9417. },
  9418. back: {
  9419. height: math.unit(2 + 6 / 12, "feet"),
  9420. weight: math.unit(20, "lb"),
  9421. name: "Back",
  9422. image: {
  9423. source: "./media/characters/rufran/back.svg",
  9424. extra: 2054 / 1839,
  9425. bottom: 0.01
  9426. }
  9427. },
  9428. hand: {
  9429. height: math.unit(0.2166, "meters"),
  9430. name: "Hand",
  9431. image: {
  9432. source: "./media/characters/rufran/hand.svg"
  9433. }
  9434. },
  9435. foot: {
  9436. height: math.unit(0.185, "meters"),
  9437. name: "Foot",
  9438. image: {
  9439. source: "./media/characters/rufran/foot.svg"
  9440. }
  9441. },
  9442. },
  9443. [
  9444. {
  9445. name: "Micro",
  9446. height: math.unit(1, "inch")
  9447. },
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(2 + 6 / 12, "feet"),
  9451. default: true
  9452. },
  9453. {
  9454. name: "Big",
  9455. height: math.unit(60, "feet")
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(325, "feet")
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Chip" },
  9465. {
  9466. front: {
  9467. height: math.unit(0.3, "meters"),
  9468. weight: math.unit(3.5, "kg"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/chip/front.svg",
  9472. extra: 748 / 674
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(1, "inch"),
  9480. default: true
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Torvid" },
  9486. {
  9487. side: {
  9488. height: math.unit(2.3, "meters"),
  9489. weight: math.unit(3500, "lb"),
  9490. name: "Side",
  9491. image: {
  9492. source: "./media/characters/torvid/side.svg",
  9493. extra: 1972 / 722,
  9494. bottom: 0.035
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(2.3, "meters"),
  9502. default: true
  9503. },
  9504. ]
  9505. ))
  9506. characterMakers.push(() => makeCharacter(
  9507. { name: "Susan" },
  9508. {
  9509. front: {
  9510. height: math.unit(2, "meters"),
  9511. weight: math.unit(150.5, "kg"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/susan/front.svg",
  9515. extra: 693 / 635,
  9516. bottom: 0.05
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(505, "miles"),
  9524. default: true
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Raindrops" },
  9530. {
  9531. front: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(150, "lb"),
  9534. name: "Front",
  9535. image: {
  9536. source: "./media/characters/raindrops/front.svg",
  9537. extra: 2655 / 2461,
  9538. bottom: 0.02
  9539. }
  9540. },
  9541. back: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(150, "lb"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/raindrops/back.svg",
  9547. extra: 2574 / 2400,
  9548. bottom: 0.03
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(6, "inches")
  9556. },
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(6 + 2 / 12, "feet")
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(131, "feet"),
  9564. default: true
  9565. },
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(15, "miles")
  9569. },
  9570. {
  9571. name: "Gigamacro",
  9572. height: math.unit(4000, "miles")
  9573. },
  9574. {
  9575. name: "Teramacro",
  9576. height: math.unit(315000, "miles")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Tezwa" },
  9582. {
  9583. front: {
  9584. height: math.unit(2.794, "meters"),
  9585. weight: math.unit(325, "kg"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/tezwa/front.svg",
  9589. extra: 2083 / 1906,
  9590. bottom: 0.031
  9591. }
  9592. },
  9593. foot: {
  9594. height: math.unit(0.687, "meters"),
  9595. name: "Foot",
  9596. image: {
  9597. source: "./media/characters/tezwa/foot.svg"
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(9 + 2 / 12, "feet"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Typhus" },
  9611. {
  9612. front: {
  9613. height: math.unit(58, "feet"),
  9614. weight: math.unit(89000, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/typhus/front.svg",
  9618. extra: 816 / 800,
  9619. bottom: 0.065
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(58, "feet"),
  9627. default: true
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Lyra Von Wulf" },
  9633. {
  9634. front: {
  9635. height: math.unit(12, "feet"),
  9636. weight: math.unit(6, "tonnes"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/lyra-von-wulf/front.svg",
  9640. extra: 1,
  9641. bottom: 0.10
  9642. }
  9643. },
  9644. frontMecha: {
  9645. height: math.unit(12, "feet"),
  9646. weight: math.unit(12, "tonnes"),
  9647. name: "Front (Mecha)",
  9648. image: {
  9649. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9650. extra: 1,
  9651. bottom: 0.042
  9652. }
  9653. },
  9654. maw: {
  9655. height: math.unit(2.2, "feet"),
  9656. name: "Maw",
  9657. image: {
  9658. source: "./media/characters/lyra-von-wulf/maw.svg"
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(12, "feet"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Classic",
  9670. height: math.unit(50, "feet")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(500, "feet")
  9675. },
  9676. {
  9677. name: "Megamacro",
  9678. height: math.unit(1, "mile")
  9679. },
  9680. {
  9681. name: "Gigamacro",
  9682. height: math.unit(400, "miles")
  9683. },
  9684. {
  9685. name: "Teramacro",
  9686. height: math.unit(22000, "miles")
  9687. },
  9688. {
  9689. name: "Solarmacro",
  9690. height: math.unit(8600000, "miles")
  9691. },
  9692. {
  9693. name: "Galactic",
  9694. height: math.unit(1057000, "lightyears")
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Dixon" },
  9700. {
  9701. front: {
  9702. height: math.unit(6 + 10 / 12, "feet"),
  9703. weight: math.unit(150, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/dixon/front.svg",
  9707. extra: 3361 / 3209,
  9708. bottom: 0.01
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(6 + 10 / 12, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Big",
  9720. height: math.unit(12, "meters")
  9721. },
  9722. {
  9723. name: "Macro",
  9724. height: math.unit(500, "meters")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(2, "km")
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Kauko" },
  9734. {
  9735. front: {
  9736. height: math.unit(185, "cm"),
  9737. weight: math.unit(68, "kg"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/kauko/front.svg",
  9741. extra: 1455 / 1421,
  9742. bottom: 0.03
  9743. }
  9744. },
  9745. back: {
  9746. height: math.unit(185, "cm"),
  9747. weight: math.unit(68, "kg"),
  9748. name: "Back",
  9749. image: {
  9750. source: "./media/characters/kauko/back.svg",
  9751. extra: 1455 / 1421,
  9752. bottom: 0.004
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Normal",
  9759. height: math.unit(185, "cm"),
  9760. default: true
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Varg" },
  9766. {
  9767. front: {
  9768. height: math.unit(6, "feet"),
  9769. weight: math.unit(150, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/varg/front.svg",
  9773. extra: 1108 / 1018,
  9774. bottom: 0.0375
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(5, "meters")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(200, "meters")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(20, "kilometers")
  9790. },
  9791. {
  9792. name: "True Size",
  9793. height: math.unit(211, "km"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Gigamacro",
  9798. height: math.unit(1000, "km")
  9799. },
  9800. {
  9801. name: "Gigamacro+",
  9802. height: math.unit(8000, "km")
  9803. },
  9804. {
  9805. name: "Teramacro",
  9806. height: math.unit(1000000, "km")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Dayza" },
  9812. {
  9813. front: {
  9814. height: math.unit(7 + 7 / 12, "feet"),
  9815. weight: math.unit(267, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/dayza/front.svg",
  9819. extra: 1262 / 1200,
  9820. bottom: 0.035
  9821. }
  9822. },
  9823. side: {
  9824. height: math.unit(7 + 7 / 12, "feet"),
  9825. weight: math.unit(267, "lb"),
  9826. name: "Side",
  9827. image: {
  9828. source: "./media/characters/dayza/side.svg",
  9829. extra: 1295 / 1245,
  9830. bottom: 0.05
  9831. }
  9832. },
  9833. back: {
  9834. height: math.unit(7 + 7 / 12, "feet"),
  9835. weight: math.unit(267, "lb"),
  9836. name: "Back",
  9837. image: {
  9838. source: "./media/characters/dayza/back.svg",
  9839. extra: 1241 / 1170
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(7 + 7 / 12, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(155, "feet")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Xanthos" },
  9857. {
  9858. front: {
  9859. height: math.unit(6 + 5 / 12, "feet"),
  9860. weight: math.unit(160, "lb"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/xanthos/front.svg",
  9864. extra: 1,
  9865. bottom: 0.04
  9866. }
  9867. },
  9868. back: {
  9869. height: math.unit(6 + 5 / 12, "feet"),
  9870. weight: math.unit(160, "lb"),
  9871. name: "Back",
  9872. image: {
  9873. source: "./media/characters/xanthos/back.svg",
  9874. extra: 1,
  9875. bottom: 0.03
  9876. }
  9877. },
  9878. hand: {
  9879. height: math.unit(0.928, "feet"),
  9880. name: "Hand",
  9881. image: {
  9882. source: "./media/characters/xanthos/hand.svg"
  9883. }
  9884. },
  9885. foot: {
  9886. height: math.unit(1.286, "feet"),
  9887. name: "Foot",
  9888. image: {
  9889. source: "./media/characters/xanthos/foot.svg"
  9890. }
  9891. },
  9892. },
  9893. [
  9894. {
  9895. name: "Normal",
  9896. height: math.unit(6 + 5 / 12, "feet"),
  9897. default: true
  9898. },
  9899. {
  9900. name: "Normal+",
  9901. height: math.unit(6, "meters")
  9902. },
  9903. {
  9904. name: "Macro",
  9905. height: math.unit(40, "feet")
  9906. },
  9907. {
  9908. name: "Macro+",
  9909. height: math.unit(200, "meters")
  9910. },
  9911. {
  9912. name: "Megamacro",
  9913. height: math.unit(20, "km")
  9914. },
  9915. {
  9916. name: "Megamacro+",
  9917. height: math.unit(100, "km")
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Grynn" },
  9923. {
  9924. front: {
  9925. height: math.unit(6 + 3 / 12, "feet"),
  9926. weight: math.unit(215, "lb"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/grynn/front.svg",
  9930. extra: 4627 / 4209,
  9931. bottom: 0.047
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(6, "inches")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(6 + 3 / 12, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Big",
  9947. height: math.unit(104, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(944, "feet")
  9952. },
  9953. {
  9954. name: "Macro+",
  9955. height: math.unit(9480, "feet")
  9956. },
  9957. {
  9958. name: "Megamacro",
  9959. height: math.unit(78752, "feet")
  9960. },
  9961. {
  9962. name: "Megamacro+",
  9963. height: math.unit(630128, "feet")
  9964. },
  9965. {
  9966. name: "Megamacro++",
  9967. height: math.unit(3150695, "feet")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Mocha Aura" },
  9973. {
  9974. front: {
  9975. height: math.unit(7 + 5 / 12, "feet"),
  9976. weight: math.unit(450, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/mocha-aura/front.svg",
  9980. extra: 1907 / 1817,
  9981. bottom: 0.04
  9982. }
  9983. },
  9984. back: {
  9985. height: math.unit(7 + 5 / 12, "feet"),
  9986. weight: math.unit(450, "lb"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/mocha-aura/back.svg",
  9990. extra: 1900 / 1825,
  9991. bottom: 0.045
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Nano",
  9998. height: math.unit(1, "nm")
  9999. },
  10000. {
  10001. name: "Megamicro",
  10002. height: math.unit(1, "mm")
  10003. },
  10004. {
  10005. name: "Micro",
  10006. height: math.unit(3, "inches")
  10007. },
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(7 + 5 / 12, "feet"),
  10011. default: true
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(30, "feet")
  10016. },
  10017. {
  10018. name: "Megamacro",
  10019. height: math.unit(3500, "feet")
  10020. },
  10021. {
  10022. name: "Teramacro",
  10023. height: math.unit(500000, "miles")
  10024. },
  10025. {
  10026. name: "Petamacro",
  10027. height: math.unit(50000000000000000, "parsecs")
  10028. },
  10029. ]
  10030. ))
  10031. characterMakers.push(() => makeCharacter(
  10032. { name: "Ilisha Devya" },
  10033. {
  10034. front: {
  10035. height: math.unit(6, "feet"),
  10036. weight: math.unit(150, "lb"),
  10037. name: "Front",
  10038. image: {
  10039. source: "./media/characters/ilisha-devya/front.svg",
  10040. extra: 1,
  10041. bottom: 0.175
  10042. }
  10043. },
  10044. back: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(150, "lb"),
  10047. name: "Back",
  10048. image: {
  10049. source: "./media/characters/ilisha-devya/back.svg",
  10050. extra: 1,
  10051. bottom: 0.015
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(500, "feet"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(10, "miles")
  10064. },
  10065. {
  10066. name: "Gigamacro",
  10067. height: math.unit(100000, "miles")
  10068. },
  10069. {
  10070. name: "Examacro",
  10071. height: math.unit(1e9, "lightyears")
  10072. },
  10073. {
  10074. name: "Omniversal",
  10075. height: math.unit(1e33, "lightyears")
  10076. },
  10077. {
  10078. name: "Beyond Infinite",
  10079. height: math.unit(1e100, "lightyears")
  10080. },
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Mira" },
  10085. {
  10086. Side: {
  10087. height: math.unit(6, "feet"),
  10088. weight: math.unit(150, "lb"),
  10089. name: "Side",
  10090. image: {
  10091. source: "./media/characters/mira/side.svg",
  10092. extra: 900 / 799,
  10093. bottom: 0.02
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Human Size",
  10100. height: math.unit(6, "feet")
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(100, "feet"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "Megamacro",
  10109. height: math.unit(10, "miles")
  10110. },
  10111. {
  10112. name: "Gigamacro",
  10113. height: math.unit(25000, "miles")
  10114. },
  10115. {
  10116. name: "Teramacro",
  10117. height: math.unit(300, "AU")
  10118. },
  10119. {
  10120. name: "Full Size",
  10121. height: math.unit(4.5e10, "lightyears")
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Holly" },
  10127. {
  10128. front: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(150, "lb"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/holly/front.svg",
  10134. extra: 639 / 606
  10135. }
  10136. },
  10137. back: {
  10138. height: math.unit(6, "feet"),
  10139. weight: math.unit(150, "lb"),
  10140. name: "Back",
  10141. image: {
  10142. source: "./media/characters/holly/back.svg",
  10143. extra: 623 / 598
  10144. }
  10145. },
  10146. frontWorking: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(150, "lb"),
  10149. name: "Front (Working)",
  10150. image: {
  10151. source: "./media/characters/holly/front-working.svg",
  10152. extra: 607 / 577,
  10153. bottom: 0.048
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(12 + 3 / 12, "feet"),
  10161. default: true
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Porter" },
  10167. {
  10168. front: {
  10169. height: math.unit(6, "feet"),
  10170. weight: math.unit(150, "lb"),
  10171. name: "Front",
  10172. image: {
  10173. source: "./media/characters/porter/front.svg",
  10174. extra: 1,
  10175. bottom: 0.01
  10176. }
  10177. },
  10178. frontRobes: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(150, "lb"),
  10181. name: "Front (Robes)",
  10182. image: {
  10183. source: "./media/characters/porter/front-robes.svg",
  10184. extra: 1.01,
  10185. bottom: 0.01
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(11 + 9 / 12, "feet"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Lucy" },
  10199. {
  10200. legendary: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(150, "lb"),
  10203. name: "Legendary",
  10204. image: {
  10205. source: "./media/characters/lucy/legendary.svg",
  10206. extra: 1355 / 1100,
  10207. bottom: 0.045
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Legendary",
  10214. height: math.unit(86882 * 2, "miles"),
  10215. default: true
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Drusilla" },
  10221. {
  10222. front: {
  10223. height: math.unit(6, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/drusilla/front.svg",
  10228. extra: 678 / 635,
  10229. bottom: 0.03
  10230. }
  10231. },
  10232. back: {
  10233. height: math.unit(6, "feet"),
  10234. weight: math.unit(150, "lb"),
  10235. name: "Back",
  10236. image: {
  10237. source: "./media/characters/drusilla/back.svg",
  10238. extra: 678 / 635,
  10239. bottom: 0.005
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Macro",
  10246. height: math.unit(100, "feet")
  10247. },
  10248. {
  10249. name: "Canon Height",
  10250. height: math.unit(2000, "feet"),
  10251. default: true
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Renard Thatch" },
  10257. {
  10258. front: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(180, "lb"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/renard-thatch/front.svg",
  10264. extra: 2411 / 2275,
  10265. bottom: 0.01
  10266. }
  10267. },
  10268. frontPosing: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(180, "lb"),
  10271. name: "Front (Posing)",
  10272. image: {
  10273. source: "./media/characters/renard-thatch/front-posing.svg",
  10274. extra: 2381 / 2261,
  10275. bottom: 0.01
  10276. }
  10277. },
  10278. back: {
  10279. height: math.unit(6, "feet"),
  10280. weight: math.unit(180, "lb"),
  10281. name: "Back",
  10282. image: {
  10283. source: "./media/characters/renard-thatch/back.svg",
  10284. extra: 2428 / 2288
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(3, "inches")
  10292. },
  10293. {
  10294. name: "Default",
  10295. height: math.unit(6, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(75, "feet")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Sekvra" },
  10306. {
  10307. front: {
  10308. height: math.unit(1450, "feet"),
  10309. weight: math.unit(1.21e6, "tons"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/sekvra/front.svg",
  10313. extra: 1,
  10314. bottom: 0.03
  10315. }
  10316. },
  10317. frontClothed: {
  10318. height: math.unit(1450, "feet"),
  10319. weight: math.unit(1.21e6, "tons"),
  10320. name: "Front (Clothed)",
  10321. image: {
  10322. source: "./media/characters/sekvra/front-clothed.svg",
  10323. extra: 1,
  10324. bottom: 0.03
  10325. }
  10326. },
  10327. side: {
  10328. height: math.unit(1450, "feet"),
  10329. weight: math.unit(1.21e6, "tons"),
  10330. name: "Side",
  10331. image: {
  10332. source: "./media/characters/sekvra/side.svg",
  10333. extra: 1,
  10334. bottom: 0.025
  10335. }
  10336. },
  10337. back: {
  10338. height: math.unit(1450, "feet"),
  10339. weight: math.unit(1.21e6, "tons"),
  10340. name: "Back",
  10341. image: {
  10342. source: "./media/characters/sekvra/back.svg",
  10343. extra: 1,
  10344. bottom: 0.005
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(1450, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Megamacro",
  10356. height: math.unit(15000, "feet")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Carmine" },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/carmine/front.svg",
  10369. extra: 1,
  10370. bottom: 0.035
  10371. }
  10372. },
  10373. frontArmor: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Front (Armor)",
  10377. image: {
  10378. source: "./media/characters/carmine/front-armor.svg",
  10379. extra: 1,
  10380. bottom: 0.035
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Large",
  10387. height: math.unit(1, "mile")
  10388. },
  10389. {
  10390. name: "Huge",
  10391. height: math.unit(40, "miles"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Colossal",
  10396. height: math.unit(2500, "miles")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Elyssia" },
  10402. {
  10403. front: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/elyssia/front.svg",
  10409. extra: 2201 / 2035,
  10410. bottom: 0.05
  10411. }
  10412. },
  10413. frontClothed: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(150, "lb"),
  10416. name: "Front (Clothed)",
  10417. image: {
  10418. source: "./media/characters/elyssia/front-clothed.svg",
  10419. extra: 2201 / 2035,
  10420. bottom: 0.05
  10421. }
  10422. },
  10423. back: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Back",
  10427. image: {
  10428. source: "./media/characters/elyssia/back.svg",
  10429. extra: 2201 / 2035,
  10430. bottom: 0.013
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Smaller",
  10437. height: math.unit(150, "feet")
  10438. },
  10439. {
  10440. name: "Standard",
  10441. height: math.unit(1400, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Distracted",
  10446. height: math.unit(15000, "feet")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Geno Maxwell" },
  10452. {
  10453. front: {
  10454. height: math.unit(7 + 4 / 12, "feet"),
  10455. weight: math.unit(500, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/geno-maxwell/front.svg",
  10459. extra: 2207 / 2040,
  10460. bottom: 0.015
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(3, "inches")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(7 + 4 / 12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(220, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(11, "miles")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Regena Maxwell" },
  10486. {
  10487. front: {
  10488. height: math.unit(7 + 4 / 12, "feet"),
  10489. weight: math.unit(500, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/regena-maxwell/front.svg",
  10493. extra: 3115 / 2770,
  10494. bottom: 0.02
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(7 + 4 / 12, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(220, "feet")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(11, "miles")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "XGlidingDragonX" },
  10516. {
  10517. front: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(150, "lb"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10523. extra: 860 / 690,
  10524. bottom: 0.03
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Normal",
  10531. height: math.unit(1.7, "meters"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Quilly" },
  10538. {
  10539. front: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(150, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/quilly/front.svg",
  10545. extra: 890 / 776
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Gigamacro",
  10552. height: math.unit(404090, "miles"),
  10553. default: true
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Tempest" },
  10559. {
  10560. front: {
  10561. height: math.unit(7 + 8 / 12, "feet"),
  10562. weight: math.unit(350, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/tempest/front.svg",
  10566. extra: 1175 / 1086,
  10567. bottom: 0.02
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(7 + 8 / 12, "feet"),
  10575. default: true
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Rodger" },
  10581. {
  10582. side: {
  10583. height: math.unit(4 + 5 / 12, "feet"),
  10584. weight: math.unit(80, "lb"),
  10585. name: "Side",
  10586. image: {
  10587. source: "./media/characters/rodger/side.svg",
  10588. extra: 1235 / 1118
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Micro",
  10595. height: math.unit(1, "inch")
  10596. },
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(4 + 5 / 12, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(120, "feet")
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Danyel" },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(150, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/danyel/front.svg",
  10617. extra: 1185 / 1123,
  10618. bottom: 0.05
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Shrunken",
  10625. height: math.unit(0.5, "mm")
  10626. },
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(1, "mm"),
  10630. default: true
  10631. },
  10632. {
  10633. name: "Upsized",
  10634. height: math.unit(5 + 5 / 12, "feet")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Vivian Bijoux" },
  10640. {
  10641. front: {
  10642. height: math.unit(5 + 6 / 12, "feet"),
  10643. weight: math.unit(200, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/vivian-bijoux/front.svg",
  10647. extra: 1,
  10648. bottom: 0.072
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(5 + 6 / 12, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Bad Dream",
  10660. height: math.unit(500, "feet")
  10661. },
  10662. {
  10663. name: "Nightmare",
  10664. height: math.unit(500, "miles")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Zeta" },
  10670. {
  10671. front: {
  10672. height: math.unit(6 + 1 / 12, "feet"),
  10673. weight: math.unit(260, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/zeta/front.svg",
  10677. extra: 1968 / 1889,
  10678. bottom: 0.06
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(6 + 1 / 12, "feet"),
  10683. weight: math.unit(260, "lb"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/zeta/back.svg",
  10687. extra: 1944 / 1858,
  10688. bottom: 0.03
  10689. }
  10690. },
  10691. hand: {
  10692. height: math.unit(1.112, "feet"),
  10693. name: "Hand",
  10694. image: {
  10695. source: "./media/characters/zeta/hand.svg"
  10696. }
  10697. },
  10698. foot: {
  10699. height: math.unit(1.48, "feet"),
  10700. name: "Foot",
  10701. image: {
  10702. source: "./media/characters/zeta/foot.svg"
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Micro",
  10709. height: math.unit(6, "inches")
  10710. },
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(6 + 1 / 12, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(20, "feet")
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Jamie Larsen" },
  10724. {
  10725. front: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/jamie-larsen/front.svg",
  10731. extra: 962 / 933,
  10732. bottom: 0.02
  10733. }
  10734. },
  10735. back: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(150, "lb"),
  10738. name: "Back",
  10739. image: {
  10740. source: "./media/characters/jamie-larsen/back.svg",
  10741. extra: 997 / 946
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Macro",
  10748. height: math.unit(28 + 7 / 12, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Macro+",
  10753. height: math.unit(180, "feet")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(10, "miles")
  10758. },
  10759. {
  10760. name: "Gigamacro",
  10761. height: math.unit(200000, "miles")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Vance" },
  10767. {
  10768. front: {
  10769. height: math.unit(6, "feet"),
  10770. weight: math.unit(120, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/vance/front.svg",
  10774. extra: 1980 / 1890,
  10775. bottom: 0.09
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(120, "lb"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/vance/back.svg",
  10784. extra: 2081 / 1994,
  10785. bottom: 0.014
  10786. }
  10787. },
  10788. hand: {
  10789. height: math.unit(0.88, "feet"),
  10790. name: "Hand",
  10791. image: {
  10792. source: "./media/characters/vance/hand.svg"
  10793. }
  10794. },
  10795. foot: {
  10796. height: math.unit(0.64, "feet"),
  10797. name: "Foot",
  10798. image: {
  10799. source: "./media/characters/vance/foot.svg"
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Small",
  10806. height: math.unit(90, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(100, "meters")
  10812. },
  10813. {
  10814. name: "Megamacro",
  10815. height: math.unit(15, "miles")
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Xochitl" },
  10821. {
  10822. front: {
  10823. height: math.unit(6, "feet"),
  10824. weight: math.unit(180, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/xochitl/front.svg",
  10828. extra: 2297 / 2261,
  10829. bottom: 0.065
  10830. }
  10831. },
  10832. back: {
  10833. height: math.unit(6, "feet"),
  10834. weight: math.unit(180, "lb"),
  10835. name: "Back",
  10836. image: {
  10837. source: "./media/characters/xochitl/back.svg",
  10838. extra: 2386 / 2354,
  10839. bottom: 0.01
  10840. }
  10841. },
  10842. foot: {
  10843. height: math.unit(6 / 5 * 1.15, "feet"),
  10844. weight: math.unit(150, "lb"),
  10845. name: "Foot",
  10846. image: {
  10847. source: "./media/characters/xochitl/foot.svg"
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(80, "feet")
  10855. },
  10856. {
  10857. name: "Macro+",
  10858. height: math.unit(400, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(80000, "miles")
  10864. },
  10865. {
  10866. name: "Gigamacro+",
  10867. height: math.unit(400000, "miles")
  10868. },
  10869. {
  10870. name: "Teramacro",
  10871. height: math.unit(300, "AU")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Vincent" },
  10877. {
  10878. front: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(150, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/vincent/front.svg",
  10884. extra: 1130 / 1080,
  10885. bottom: 0.055
  10886. }
  10887. },
  10888. beak: {
  10889. height: math.unit(6 * 0.1, "feet"),
  10890. name: "Beak",
  10891. image: {
  10892. source: "./media/characters/vincent/beak.svg"
  10893. }
  10894. },
  10895. hand: {
  10896. height: math.unit(6 * 0.85, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Hand",
  10899. image: {
  10900. source: "./media/characters/vincent/hand.svg"
  10901. }
  10902. },
  10903. foot: {
  10904. height: math.unit(6 * 0.19, "feet"),
  10905. weight: math.unit(150, "lb"),
  10906. name: "Foot",
  10907. image: {
  10908. source: "./media/characters/vincent/foot.svg"
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Base",
  10915. height: math.unit(6 + 5 / 12, "feet"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(300, "feet")
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(2, "miles")
  10925. },
  10926. {
  10927. name: "Gigamacro",
  10928. height: math.unit(1000, "miles")
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Jay" },
  10934. {
  10935. front: {
  10936. height: math.unit(6 + 2 / 12, "feet"),
  10937. weight: math.unit(65, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/jay/front.svg",
  10941. extra: 1510 / 1430,
  10942. bottom: 0.042
  10943. }
  10944. },
  10945. back: {
  10946. height: math.unit(6 + 2 / 12, "feet"),
  10947. weight: math.unit(65, "lb"),
  10948. name: "Back",
  10949. image: {
  10950. source: "./media/characters/jay/back.svg",
  10951. extra: 1510 / 1430,
  10952. bottom: 0.025
  10953. }
  10954. },
  10955. clothed: {
  10956. height: math.unit(6 + 2 / 12, "feet"),
  10957. weight: math.unit(65, "lb"),
  10958. name: "Front (Clothed)",
  10959. image: {
  10960. source: "./media/characters/jay/clothed.svg",
  10961. extra: 744 / 699,
  10962. bottom: 0.043
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Micro",
  10969. height: math.unit(1, "inch")
  10970. },
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(6 + 2 / 12, "feet"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(1, "mile")
  10979. },
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(100, "miles")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Coatl" },
  10988. {
  10989. front: {
  10990. height: math.unit(2, "meters"),
  10991. weight: math.unit(500, "kg"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/coatl/front.svg",
  10995. extra: 3948 / 3500,
  10996. bottom: 0.082
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(4, "meters")
  11004. },
  11005. {
  11006. name: "Macro",
  11007. height: math.unit(100, "meters"),
  11008. default: true
  11009. },
  11010. {
  11011. name: "Macro+",
  11012. height: math.unit(300, "meters")
  11013. },
  11014. {
  11015. name: "Megamacro",
  11016. height: math.unit(3, "gigameters")
  11017. },
  11018. {
  11019. name: "Megamacro+",
  11020. height: math.unit(300, "terameters")
  11021. },
  11022. {
  11023. name: "Megamacro++",
  11024. height: math.unit(3, "lightyears")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Shiroryu" },
  11030. {
  11031. front: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(50, "kg"),
  11034. name: "front",
  11035. image: {
  11036. source: "./media/characters/shiroryu/front.svg",
  11037. extra: 1990 / 1935
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Mortal Mingling",
  11044. height: math.unit(3, "meters")
  11045. },
  11046. {
  11047. name: "Kaiju-ish",
  11048. height: math.unit(250, "meters")
  11049. },
  11050. {
  11051. name: "Somewhat Godly",
  11052. height: math.unit(400, "km"),
  11053. default: true
  11054. },
  11055. {
  11056. name: "Planetary",
  11057. height: math.unit(300, "megameters")
  11058. },
  11059. {
  11060. name: "Galaxy-dwarfing",
  11061. height: math.unit(450, "kiloparsecs")
  11062. },
  11063. {
  11064. name: "Universe Eater",
  11065. height: math.unit(150, "gigaparsecs")
  11066. },
  11067. {
  11068. name: "Almost Immeasurable",
  11069. height: math.unit(1.3e266, "yottaparsecs")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Umeko" },
  11075. {
  11076. front: {
  11077. height: math.unit(6, "feet"),
  11078. weight: math.unit(150, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/umeko/front.svg",
  11082. extra: 1,
  11083. bottom: 0.019
  11084. }
  11085. },
  11086. frontArmored: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Front (Armored)",
  11090. image: {
  11091. source: "./media/characters/umeko/front-armored.svg",
  11092. extra: 1,
  11093. bottom: 0.021
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(220, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Guardian Dragon",
  11105. height: math.unit(50, "miles")
  11106. },
  11107. {
  11108. name: "Cosmic",
  11109. height: math.unit(800000, "miles")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Cassidy" },
  11115. {
  11116. front: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(150, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/cassidy/front.svg",
  11122. extra: 1,
  11123. bottom: 0.043
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Canon Height",
  11130. height: math.unit(120, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro+",
  11135. height: math.unit(400, "feet")
  11136. },
  11137. {
  11138. name: "Macro++",
  11139. height: math.unit(4000, "feet")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(3, "miles")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Isaac" },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/isaac/front.svg",
  11156. extra: 896 / 815,
  11157. bottom: 0.11
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Human Size",
  11164. height: math.unit(8, "feet"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Macro",
  11169. height: math.unit(400, "feet")
  11170. },
  11171. {
  11172. name: "Megamacro",
  11173. height: math.unit(50, "miles")
  11174. },
  11175. {
  11176. name: "Canon Height",
  11177. height: math.unit(200, "AU")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Sleekit" },
  11183. {
  11184. front: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(72, "kg"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/sleekit/front.svg",
  11190. extra: 4693 / 4487,
  11191. bottom: 0.012
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Minimum Height",
  11198. height: math.unit(10, "meters")
  11199. },
  11200. {
  11201. name: "Smaller",
  11202. height: math.unit(25, "meters")
  11203. },
  11204. {
  11205. name: "Larger",
  11206. height: math.unit(38, "meters"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Maximum height",
  11211. height: math.unit(100, "meters")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Nillia" },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/nillia/front.svg",
  11224. extra: 2195 / 2037,
  11225. bottom: 0.005
  11226. }
  11227. },
  11228. back: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(150, "lb"),
  11231. name: "Back",
  11232. image: {
  11233. source: "./media/characters/nillia/back.svg",
  11234. extra: 2195 / 2037,
  11235. bottom: 0.005
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Canon Height",
  11242. height: math.unit(489, "feet"),
  11243. default: true
  11244. }
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Mesmyriza" },
  11249. {
  11250. front: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(150, "lb"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/mesmyriza/front.svg",
  11256. extra: 2067 / 1784,
  11257. bottom: 0.035
  11258. }
  11259. },
  11260. foot: {
  11261. height: math.unit(6 / (250 / 35), "feet"),
  11262. name: "Foot",
  11263. image: {
  11264. source: "./media/characters/mesmyriza/foot.svg"
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Macro",
  11271. height: math.unit(457, "meters"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Megamacro",
  11276. height: math.unit(8, "megameters")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Saudade" },
  11282. {
  11283. front: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(250, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/saudade/front.svg",
  11289. extra: 1172 / 1139,
  11290. bottom: 0.035
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(3, "inches")
  11298. },
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(6, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(50, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(2800, "feet")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Keireer" },
  11316. {
  11317. front: {
  11318. height: math.unit(5 + 4 / 12, "feet"),
  11319. weight: math.unit(100, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/keireer/front.svg",
  11323. extra: 716 / 666,
  11324. bottom: 0.05
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(5 + 4 / 12, "feet"),
  11332. default: true
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Mirja" },
  11338. {
  11339. front: {
  11340. height: math.unit(6, "feet"),
  11341. weight: math.unit(90, "kg"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/mirja/front.svg",
  11345. extra: 1789 / 1683,
  11346. bottom: 0.05
  11347. }
  11348. },
  11349. frontDressed: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(90, "lb"),
  11352. name: "Front (Dressed)",
  11353. image: {
  11354. source: "./media/characters/mirja/front-dressed.svg",
  11355. extra: 1789 / 1683,
  11356. bottom: 0.05
  11357. }
  11358. },
  11359. back: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(90, "lb"),
  11362. name: "Back",
  11363. image: {
  11364. source: "./media/characters/mirja/back.svg",
  11365. extra: 953 / 917,
  11366. bottom: 0.017
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "\"Incognito\"",
  11373. height: math.unit(3, "meters")
  11374. },
  11375. {
  11376. name: "Strolling Size",
  11377. height: math.unit(15, "km")
  11378. },
  11379. {
  11380. name: "Larger Strolling Size",
  11381. height: math.unit(400, "km")
  11382. },
  11383. {
  11384. name: "Preferred Size",
  11385. height: math.unit(5000, "km")
  11386. },
  11387. {
  11388. name: "True Size",
  11389. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11390. default: true
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Nightraver" },
  11396. {
  11397. front: {
  11398. height: math.unit(15, "feet"),
  11399. weight: math.unit(880, "kg"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/nightraver/front.svg",
  11403. extra: 2444 / 2160,
  11404. bottom: 0.027
  11405. }
  11406. },
  11407. back: {
  11408. height: math.unit(15, "feet"),
  11409. weight: math.unit(880, "kg"),
  11410. name: "Back",
  11411. image: {
  11412. source: "./media/characters/nightraver/back.svg",
  11413. extra: 2309 / 2180,
  11414. bottom: 0.005
  11415. }
  11416. },
  11417. sole: {
  11418. height: math.unit(2.878, "feet"),
  11419. name: "Sole",
  11420. image: {
  11421. source: "./media/characters/nightraver/sole.svg"
  11422. }
  11423. },
  11424. foot: {
  11425. height: math.unit(2.285, "feet"),
  11426. name: "Foot",
  11427. image: {
  11428. source: "./media/characters/nightraver/foot.svg"
  11429. }
  11430. },
  11431. maw: {
  11432. height: math.unit(2.67, "feet"),
  11433. name: "Maw",
  11434. image: {
  11435. source: "./media/characters/nightraver/maw.svg"
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Micro",
  11442. height: math.unit(1, "cm")
  11443. },
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(15, "feet"),
  11447. default: true
  11448. },
  11449. {
  11450. name: "Macro",
  11451. height: math.unit(300, "feet")
  11452. },
  11453. {
  11454. name: "Megamacro",
  11455. height: math.unit(300, "miles")
  11456. },
  11457. {
  11458. name: "Gigamacro",
  11459. height: math.unit(10000, "miles")
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Arc" },
  11465. {
  11466. side: {
  11467. height: math.unit(2, "inches"),
  11468. weight: math.unit(5, "grams"),
  11469. name: "Side",
  11470. image: {
  11471. source: "./media/characters/arc/side.svg"
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Micro",
  11478. height: math.unit(2, "inches"),
  11479. default: true
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Nebula Shahar" },
  11485. {
  11486. front: {
  11487. height: math.unit(1.1938, "meters"),
  11488. weight: math.unit(54, "kg"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/nebula-shahar/front.svg",
  11492. extra: 1642 / 1436,
  11493. bottom: 0.06
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Megamicro",
  11500. height: math.unit(0.3, "mm")
  11501. },
  11502. {
  11503. name: "Micro",
  11504. height: math.unit(3, "cm")
  11505. },
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(138, "cm"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Macro",
  11513. height: math.unit(30, "m")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Shayla" },
  11519. {
  11520. front: {
  11521. height: math.unit(5.24, "feet"),
  11522. weight: math.unit(150, "lb"),
  11523. name: "Front",
  11524. image: {
  11525. source: "./media/characters/shayla/front.svg",
  11526. extra: 1512 / 1414,
  11527. bottom: 0.01
  11528. }
  11529. },
  11530. back: {
  11531. height: math.unit(5.24, "feet"),
  11532. weight: math.unit(150, "lb"),
  11533. name: "Back",
  11534. image: {
  11535. source: "./media/characters/shayla/back.svg",
  11536. extra: 1512 / 1414
  11537. }
  11538. },
  11539. hand: {
  11540. height: math.unit(0.7781496062992126, "feet"),
  11541. name: "Hand",
  11542. image: {
  11543. source: "./media/characters/shayla/hand.svg"
  11544. }
  11545. },
  11546. foot: {
  11547. height: math.unit(1.4206036745406823, "feet"),
  11548. name: "Foot",
  11549. image: {
  11550. source: "./media/characters/shayla/foot.svg"
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Micro",
  11557. height: math.unit(0.32, "feet")
  11558. },
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(5.24, "feet"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Macro",
  11566. height: math.unit(492.12, "feet")
  11567. },
  11568. {
  11569. name: "Megamacro",
  11570. height: math.unit(186.41, "miles")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Pia Jr." },
  11576. {
  11577. front: {
  11578. height: math.unit(2.2, "m"),
  11579. weight: math.unit(120, "kg"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/pia-jr/front.svg",
  11583. extra: 1000 / 970,
  11584. bottom: 0.035
  11585. }
  11586. },
  11587. hand: {
  11588. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11589. name: "Hand",
  11590. image: {
  11591. source: "./media/characters/pia-jr/hand.svg"
  11592. }
  11593. },
  11594. paw: {
  11595. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11596. name: "Paw",
  11597. image: {
  11598. source: "./media/characters/pia-jr/paw.svg"
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Micro",
  11605. height: math.unit(1.2, "cm")
  11606. },
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(2.2, "m"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Macro",
  11614. height: math.unit(180, "m")
  11615. },
  11616. {
  11617. name: "Megamacro",
  11618. height: math.unit(420, "km")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Pia Sr." },
  11624. {
  11625. front: {
  11626. height: math.unit(2, "m"),
  11627. weight: math.unit(115, "kg"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/pia-sr/front.svg",
  11631. extra: 760 / 730,
  11632. bottom: 0.015
  11633. }
  11634. },
  11635. back: {
  11636. height: math.unit(2, "m"),
  11637. weight: math.unit(115, "kg"),
  11638. name: "Back",
  11639. image: {
  11640. source: "./media/characters/pia-sr/back.svg",
  11641. extra: 760 / 730,
  11642. bottom: 0.01
  11643. }
  11644. },
  11645. hand: {
  11646. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11647. name: "Hand",
  11648. image: {
  11649. source: "./media/characters/pia-sr/hand.svg"
  11650. }
  11651. },
  11652. foot: {
  11653. height: math.unit(1.83, "feet"),
  11654. name: "Foot",
  11655. image: {
  11656. source: "./media/characters/pia-sr/foot.svg"
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Micro",
  11663. height: math.unit(88, "mm")
  11664. },
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(2, "m"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(200, "m")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(420, "km")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "KIBIBYTE" },
  11682. {
  11683. front: {
  11684. height: math.unit(8 + 2 / 12, "feet"),
  11685. weight: math.unit(300, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/kibibyte/front.svg",
  11689. extra: 2221 / 2098,
  11690. bottom: 0.04
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(8 + 2 / 12, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Socialable Macro",
  11702. height: math.unit(50, "feet")
  11703. },
  11704. {
  11705. name: "Macro",
  11706. height: math.unit(300, "feet")
  11707. },
  11708. {
  11709. name: "Megamacro",
  11710. height: math.unit(500, "miles")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Felix" },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/felix/front.svg",
  11723. extra: 762 / 722,
  11724. bottom: 0.02
  11725. }
  11726. },
  11727. frontClothed: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Front (Clothed)",
  11731. image: {
  11732. source: "./media/characters/felix/front-clothed.svg",
  11733. extra: 762 / 722,
  11734. bottom: 0.02
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(6 + 8 / 12, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Macro",
  11746. height: math.unit(2600, "feet")
  11747. },
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(450, "miles")
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Tobo" },
  11756. {
  11757. front: {
  11758. height: math.unit(6 + 1 / 12, "feet"),
  11759. weight: math.unit(250, "lb"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/tobo/front.svg",
  11763. extra: 608 / 586,
  11764. bottom: 0.023
  11765. }
  11766. },
  11767. back: {
  11768. height: math.unit(6 + 1 / 12, "feet"),
  11769. weight: math.unit(250, "lb"),
  11770. name: "Back",
  11771. image: {
  11772. source: "./media/characters/tobo/back.svg",
  11773. extra: 608 / 586
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Nano",
  11780. height: math.unit(2, "nm")
  11781. },
  11782. {
  11783. name: "Megamicro",
  11784. height: math.unit(0.1, "mm")
  11785. },
  11786. {
  11787. name: "Micro",
  11788. height: math.unit(1, "inch"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Human-sized",
  11793. height: math.unit(6 + 1 / 12, "feet")
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(250, "feet")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(75, "miles")
  11802. },
  11803. {
  11804. name: "Texas-sized",
  11805. height: math.unit(750, "miles")
  11806. },
  11807. {
  11808. name: "Teramacro",
  11809. height: math.unit(50000, "miles")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Danny Kapowsky" },
  11815. {
  11816. front: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(269, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/danny-kapowsky/front.svg",
  11822. extra: 766 / 736,
  11823. bottom: 0.044
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(269, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/danny-kapowsky/back.svg",
  11832. extra: 797 / 760,
  11833. bottom: 0.025
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(150, "feet"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Macro+",
  11845. height: math.unit(200, "feet")
  11846. },
  11847. {
  11848. name: "Macro++",
  11849. height: math.unit(300, "feet")
  11850. },
  11851. {
  11852. name: "Macro+++",
  11853. height: math.unit(400, "feet")
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Finn" },
  11859. {
  11860. side: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(170, "lb"),
  11863. name: "Side",
  11864. image: {
  11865. source: "./media/characters/finn/side.svg",
  11866. extra: 1953 / 1807,
  11867. bottom: 0.057
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Megamacro",
  11874. height: math.unit(14445, "feet"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Roy" },
  11881. {
  11882. front: {
  11883. height: math.unit(5 + 6 / 12, "feet"),
  11884. weight: math.unit(125, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/roy/front.svg",
  11888. extra: 1,
  11889. bottom: 0.11
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(3, "inches"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(5 + 6 / 12, "feet")
  11902. },
  11903. {
  11904. name: "Lesser Macro",
  11905. height: math.unit(60, "feet")
  11906. },
  11907. {
  11908. name: "Greater Macro",
  11909. height: math.unit(120, "feet")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Aevsivs" },
  11915. {
  11916. front: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(100, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/aevsivs/front.svg",
  11922. extra: 1,
  11923. bottom: 0.03
  11924. }
  11925. },
  11926. back: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(100, "lb"),
  11929. name: "Back",
  11930. image: {
  11931. source: "./media/characters/aevsivs/back.svg"
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(2, "inches"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5, "feet")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Hildegard" },
  11949. {
  11950. front: {
  11951. height: math.unit(5 + 7 / 12, "feet"),
  11952. weight: math.unit(159, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/hildegard/front.svg",
  11956. extra: 312 / 286,
  11957. bottom: 0.005
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(5 + 7 / 12, "feet"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Bernard & Wilder" },
  11971. {
  11972. bernard: {
  11973. height: math.unit(2 + 7 / 12, "feet"),
  11974. weight: math.unit(66, "lb"),
  11975. name: "Bernard",
  11976. rename: true,
  11977. image: {
  11978. source: "./media/characters/bernard-wilder/bernard.svg",
  11979. extra: 192 / 128,
  11980. bottom: 0.05
  11981. }
  11982. },
  11983. wilder: {
  11984. height: math.unit(5 + 8 / 12, "feet"),
  11985. weight: math.unit(143, "lb"),
  11986. name: "Wilder",
  11987. rename: true,
  11988. image: {
  11989. source: "./media/characters/bernard-wilder/wilder.svg",
  11990. extra: 361 / 312,
  11991. bottom: 0.02
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Normal",
  11998. height: math.unit(2 + 7 / 12, "feet"),
  11999. default: true
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Hearth" },
  12005. {
  12006. anthro: {
  12007. height: math.unit(6 + 1 / 12, "feet"),
  12008. weight: math.unit(155, "lb"),
  12009. name: "Anthro",
  12010. image: {
  12011. source: "./media/characters/hearth/anthro.svg",
  12012. extra: 260 / 250,
  12013. bottom: 0.02
  12014. }
  12015. },
  12016. feral: {
  12017. height: math.unit(3.78, "feet"),
  12018. weight: math.unit(35, "kg"),
  12019. name: "Feral",
  12020. image: {
  12021. source: "./media/characters/hearth/feral.svg",
  12022. extra: 153 / 135,
  12023. bottom: 0.03
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(6 + 1 / 12, "feet"),
  12031. default: true
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Ingrid" },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(182, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/ingrid/front.svg",
  12044. extra: 294 / 268,
  12045. bottom: 0.027
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(6, "feet"),
  12053. default: true
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Malgam" },
  12059. {
  12060. eevee: {
  12061. height: math.unit(2 + 10 / 12, "feet"),
  12062. weight: math.unit(86, "lb"),
  12063. name: "Malgam",
  12064. image: {
  12065. source: "./media/characters/malgam/eevee.svg",
  12066. extra: 218 / 180,
  12067. bottom: 0.2
  12068. }
  12069. },
  12070. sylveon: {
  12071. height: math.unit(4, "feet"),
  12072. weight: math.unit(101, "lb"),
  12073. name: "Future Malgam",
  12074. rename: true,
  12075. image: {
  12076. source: "./media/characters/malgam/sylveon.svg",
  12077. extra: 371 / 325,
  12078. bottom: 0.015
  12079. }
  12080. },
  12081. gigantamax: {
  12082. height: math.unit(50, "feet"),
  12083. name: "Gigantamax Malgam",
  12084. rename: true,
  12085. image: {
  12086. source: "./media/characters/malgam/gigantamax.svg"
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(2 + 10 / 12, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Fleur" },
  12100. {
  12101. front: {
  12102. height: math.unit(5 + 11 / 12, "feet"),
  12103. weight: math.unit(188, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/fleur/front.svg",
  12107. extra: 309 / 283,
  12108. bottom: 0.007
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Normal",
  12115. height: math.unit(5 + 11 / 12, "feet"),
  12116. default: true
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Jude" },
  12122. {
  12123. front: {
  12124. height: math.unit(5 + 4 / 12, "feet"),
  12125. weight: math.unit(122, "lb"),
  12126. name: "Front",
  12127. image: {
  12128. source: "./media/characters/jude/front.svg",
  12129. extra: 288 / 273,
  12130. bottom: 0.03
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(5 + 4 / 12, "feet"),
  12138. default: true
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Seara" },
  12144. {
  12145. front: {
  12146. height: math.unit(5 + 11 / 12, "feet"),
  12147. weight: math.unit(190, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/seara/front.svg",
  12151. extra: 1,
  12152. bottom: 0.05
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(5 + 11 / 12, "feet"),
  12160. default: true
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Caspian" },
  12166. {
  12167. front: {
  12168. height: math.unit(16 + 5 / 12, "feet"),
  12169. weight: math.unit(524, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/caspian/front.svg",
  12173. extra: 1,
  12174. bottom: 0.04
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(16 + 5 / 12, "feet"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Mika" },
  12188. {
  12189. front: {
  12190. height: math.unit(5 + 7 / 12, "feet"),
  12191. weight: math.unit(170, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/mika/front.svg",
  12195. extra: 1,
  12196. bottom: 0.016
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(5 + 7 / 12, "feet"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Sol" },
  12210. {
  12211. front: {
  12212. height: math.unit(6 + 2 / 12, "feet"),
  12213. weight: math.unit(268, "lb"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/sol/front.svg",
  12217. extra: 247 / 231,
  12218. bottom: 0.05
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(6 + 2 / 12, "feet"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Umiko" },
  12232. {
  12233. buizel: {
  12234. height: math.unit(2 + 5 / 12, "feet"),
  12235. weight: math.unit(87, "lb"),
  12236. name: "Buizel",
  12237. image: {
  12238. source: "./media/characters/umiko/buizel.svg",
  12239. extra: 172 / 157,
  12240. bottom: 0.01
  12241. }
  12242. },
  12243. floatzel: {
  12244. height: math.unit(5 + 9 / 12, "feet"),
  12245. weight: math.unit(250, "lb"),
  12246. name: "Floatzel",
  12247. image: {
  12248. source: "./media/characters/umiko/floatzel.svg",
  12249. extra: 262 / 248
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Normal",
  12256. height: math.unit(2 + 5 / 12, "feet"),
  12257. default: true
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Iliac" },
  12263. {
  12264. front: {
  12265. height: math.unit(6 + 2 / 12, "feet"),
  12266. weight: math.unit(146, "lb"),
  12267. name: "Front",
  12268. image: {
  12269. source: "./media/characters/iliac/front.svg",
  12270. extra: 389 / 365,
  12271. bottom: 0.035
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(6 + 2 / 12, "feet"),
  12279. default: true
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Topaz" },
  12285. {
  12286. front: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(170, "lb"),
  12289. name: "Front",
  12290. image: {
  12291. source: "./media/characters/topaz/front.svg",
  12292. extra: 317 / 303,
  12293. bottom: 0.055
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Normal",
  12300. height: math.unit(6, "feet"),
  12301. default: true
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Gabriel" },
  12307. {
  12308. front: {
  12309. height: math.unit(5 + 11 / 12, "feet"),
  12310. weight: math.unit(144, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/gabriel/front.svg",
  12314. extra: 285 / 262,
  12315. bottom: 0.004
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(5 + 11 / 12, "feet"),
  12323. default: true
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Tempest (Suicune)" },
  12329. {
  12330. side: {
  12331. height: math.unit(6 + 5 / 12, "feet"),
  12332. weight: math.unit(300, "lb"),
  12333. name: "Side",
  12334. image: {
  12335. source: "./media/characters/tempest-suicune/side.svg",
  12336. extra: 195 / 154,
  12337. bottom: 0.04
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(6 + 5 / 12, "feet"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Vulcan" },
  12351. {
  12352. front: {
  12353. height: math.unit(7 + 2 / 12, "feet"),
  12354. weight: math.unit(322, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/vulcan/front.svg",
  12358. extra: 154 / 147,
  12359. bottom: 0.04
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(7 + 2 / 12, "feet"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Gault" },
  12373. {
  12374. front: {
  12375. height: math.unit(5 + 10 / 12, "feet"),
  12376. weight: math.unit(264, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/gault/front.svg",
  12380. extra: 161 / 140,
  12381. bottom: 0.028
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(5 + 10 / 12, "feet"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Shard" },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/shard/front.svg",
  12402. extra: 273 / 238,
  12403. bottom: 0.02
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(3 + 6 / 12, "feet"),
  12411. default: true
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Ashe" },
  12417. {
  12418. front: {
  12419. height: math.unit(5 + 11 / 12, "feet"),
  12420. weight: math.unit(146, "lb"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/ashe/front.svg",
  12424. extra: 400 / 373,
  12425. bottom: 0.01
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(5 + 11 / 12, "feet"),
  12433. default: true
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Beatrix" },
  12439. {
  12440. front: {
  12441. height: math.unit(5 + 5 / 12, "feet"),
  12442. weight: math.unit(135, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/beatrix/front.svg",
  12446. extra: 392 / 379,
  12447. bottom: 0.01
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(6, "feet"),
  12455. default: true
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Ignatius" },
  12461. {
  12462. front: {
  12463. height: math.unit(6, "feet"),
  12464. weight: math.unit(150, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/ignatius/front.svg",
  12468. extra: 245 / 222,
  12469. bottom: 0.01
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(5 + 5 / 12, "feet"),
  12477. default: true
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Mei Li" },
  12483. {
  12484. front: {
  12485. height: math.unit(6 + 2 / 12, "feet"),
  12486. weight: math.unit(138, "lb"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/mei-li/front.svg",
  12490. extra: 237 / 229,
  12491. bottom: 0.03
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Normal",
  12498. height: math.unit(6 + 2 / 12, "feet"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Puru" },
  12505. {
  12506. front: {
  12507. height: math.unit(2 + 4 / 12, "feet"),
  12508. weight: math.unit(62, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/puru/front.svg",
  12512. extra: 206 / 149,
  12513. bottom: 0.06
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(2 + 4 / 12, "feet"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Kee" },
  12527. {
  12528. taur: {
  12529. height: math.unit(11, "feet"),
  12530. weight: math.unit(500, "lb"),
  12531. name: "Taur",
  12532. image: {
  12533. source: "./media/characters/kee/taur.svg",
  12534. extra: 1,
  12535. bottom: 0.04
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Normal",
  12542. height: math.unit(11, "feet"),
  12543. default: true
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Cobalt (Dracha)" },
  12549. {
  12550. anthro: {
  12551. height: math.unit(7, "feet"),
  12552. weight: math.unit(190, "lb"),
  12553. name: "Anthro",
  12554. image: {
  12555. source: "./media/characters/cobalt-dracha/anthro.svg",
  12556. extra: 231 / 225,
  12557. bottom: 0.04
  12558. }
  12559. },
  12560. feral: {
  12561. height: math.unit(9 + 7 / 12, "feet"),
  12562. weight: math.unit(294, "lb"),
  12563. name: "Feral",
  12564. image: {
  12565. source: "./media/characters/cobalt-dracha/feral.svg",
  12566. extra: 692 / 633,
  12567. bottom: 0.05
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(7, "feet"),
  12575. default: true
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Java" },
  12581. {
  12582. fallen: {
  12583. height: math.unit(11 + 8 / 12, "feet"),
  12584. weight: math.unit(485, "lb"),
  12585. name: "Java (Fallen)",
  12586. rename: true,
  12587. image: {
  12588. source: "./media/characters/java/fallen.svg",
  12589. extra: 226 / 208,
  12590. bottom: 0.005
  12591. }
  12592. },
  12593. godkin: {
  12594. height: math.unit(10 + 6 / 12, "feet"),
  12595. weight: math.unit(328, "lb"),
  12596. name: "Java (Godkin)",
  12597. rename: true,
  12598. image: {
  12599. source: "./media/characters/java/godkin.svg",
  12600. extra: 270 / 262,
  12601. bottom: 0.02
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(11 + 8 / 12, "feet"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Skoll" },
  12615. {
  12616. front: {
  12617. height: math.unit(7 + 8 / 12, "feet"),
  12618. weight: math.unit(320, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/skoll/front.svg",
  12622. extra: 232 / 220,
  12623. bottom: 0.02
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(7 + 8 / 12, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Purna" },
  12637. {
  12638. front: {
  12639. height: math.unit(5 + 9 / 12, "feet"),
  12640. weight: math.unit(170, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/purna/front.svg",
  12644. extra: 239 / 229,
  12645. bottom: 0.01
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(5 + 9 / 12, "feet"),
  12653. default: true
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Kuva" },
  12659. {
  12660. front: {
  12661. height: math.unit(5 + 9 / 12, "feet"),
  12662. weight: math.unit(142, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/kuva/front.svg",
  12666. extra: 281 / 271,
  12667. bottom: 0.006
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(5 + 9 / 12, "feet"),
  12675. default: true
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Embra" },
  12681. {
  12682. anthro: {
  12683. height: math.unit(9 + 2 / 12, "feet"),
  12684. weight: math.unit(270, "lb"),
  12685. name: "Anthro",
  12686. image: {
  12687. source: "./media/characters/embra/anthro.svg",
  12688. extra: 200 / 187,
  12689. bottom: 0.02
  12690. }
  12691. },
  12692. feral: {
  12693. height: math.unit(18 + 8 / 12, "feet"),
  12694. weight: math.unit(576, "lb"),
  12695. name: "Feral",
  12696. image: {
  12697. source: "./media/characters/embra/feral.svg",
  12698. extra: 152 / 137,
  12699. bottom: 0.037
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(9 + 2 / 12, "feet"),
  12707. default: true
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Grottos" },
  12713. {
  12714. anthro: {
  12715. height: math.unit(10 + 9 / 12, "feet"),
  12716. weight: math.unit(224, "lb"),
  12717. name: "Anthro",
  12718. image: {
  12719. source: "./media/characters/grottos/anthro.svg",
  12720. extra: 350 / 332,
  12721. bottom: 0.045
  12722. }
  12723. },
  12724. feral: {
  12725. height: math.unit(20 + 7 / 12, "feet"),
  12726. weight: math.unit(629, "lb"),
  12727. name: "Feral",
  12728. image: {
  12729. source: "./media/characters/grottos/feral.svg",
  12730. extra: 207 / 190,
  12731. bottom: 0.05
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(10 + 9 / 12, "feet"),
  12739. default: true
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Frifna" },
  12745. {
  12746. anthro: {
  12747. height: math.unit(9 + 6 / 12, "feet"),
  12748. weight: math.unit(298, "lb"),
  12749. name: "Anthro",
  12750. image: {
  12751. source: "./media/characters/frifna/anthro.svg",
  12752. extra: 282 / 269,
  12753. bottom: 0.015
  12754. }
  12755. },
  12756. feral: {
  12757. height: math.unit(16 + 2 / 12, "feet"),
  12758. weight: math.unit(624, "lb"),
  12759. name: "Feral",
  12760. image: {
  12761. source: "./media/characters/frifna/feral.svg"
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(9 + 6 / 12, "feet"),
  12769. default: true
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Elise" },
  12775. {
  12776. front: {
  12777. height: math.unit(6 + 2 / 12, "feet"),
  12778. weight: math.unit(168, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/elise/front.svg",
  12782. extra: 276 / 271
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(6 + 2 / 12, "feet"),
  12790. default: true
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Glade" },
  12796. {
  12797. front: {
  12798. height: math.unit(5 + 10 / 12, "feet"),
  12799. weight: math.unit(210, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/glade/front.svg",
  12803. extra: 258 / 247,
  12804. bottom: 0.008
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(5 + 10 / 12, "feet"),
  12812. default: true
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Rina" },
  12818. {
  12819. front: {
  12820. height: math.unit(5 + 10 / 12, "feet"),
  12821. weight: math.unit(129, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/rina/front.svg",
  12825. extra: 266 / 255,
  12826. bottom: 0.005
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(5 + 10 / 12, "feet"),
  12834. default: true
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Veronica" },
  12840. {
  12841. front: {
  12842. height: math.unit(6 + 1 / 12, "feet"),
  12843. weight: math.unit(192, "lb"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/veronica/front.svg",
  12847. extra: 319 / 309,
  12848. bottom: 0.005
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(6 + 1 / 12, "feet"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Braxton" },
  12862. {
  12863. front: {
  12864. height: math.unit(9 + 3 / 12, "feet"),
  12865. weight: math.unit(1100, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/braxton/front.svg",
  12869. extra: 1057 / 984,
  12870. bottom: 0.05
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(9 + 3 / 12, "feet")
  12878. },
  12879. {
  12880. name: "Giant",
  12881. height: math.unit(300, "feet"),
  12882. default: true
  12883. },
  12884. {
  12885. name: "Macro",
  12886. height: math.unit(700, "feet")
  12887. },
  12888. {
  12889. name: "Megamacro",
  12890. height: math.unit(6000, "feet")
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Blue Feyonics" },
  12896. {
  12897. front: {
  12898. height: math.unit(6 + 7 / 12, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/blue-feyonics/front.svg",
  12903. extra: 1403 / 1306,
  12904. bottom: 0.047
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(6 + 7 / 12, "feet"),
  12912. default: true
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Maxwell" },
  12918. {
  12919. front: {
  12920. height: math.unit(1.8, "meters"),
  12921. weight: math.unit(60, "kg"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/maxwell/front.svg",
  12925. extra: 2060 / 1873
  12926. }
  12927. },
  12928. },
  12929. [
  12930. {
  12931. name: "Micro",
  12932. height: math.unit(1, "mm")
  12933. },
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(1.8, "meter"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Macro",
  12941. height: math.unit(30, "meters")
  12942. },
  12943. {
  12944. name: "Megamacro",
  12945. height: math.unit(10, "km")
  12946. },
  12947. ]
  12948. ))
  12949. characterMakers.push(() => makeCharacter(
  12950. { name: "Jack" },
  12951. {
  12952. front: {
  12953. height: math.unit(6, "feet"),
  12954. weight: math.unit(150, "lb"),
  12955. name: "Front",
  12956. image: {
  12957. source: "./media/characters/jack/front.svg",
  12958. extra: 1754 / 1640,
  12959. bottom: 0.01
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(80000, "feet"),
  12967. default: true
  12968. },
  12969. {
  12970. name: "Max size",
  12971. height: math.unit(10, "lightyears")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Cafat" },
  12977. {
  12978. upright: {
  12979. height: math.unit(7, "feet"),
  12980. weight: math.unit(170, "lb"),
  12981. name: "Upright",
  12982. image: {
  12983. source: "./media/characters/cafat/upright.svg",
  12984. bottom: 0.01
  12985. }
  12986. },
  12987. uprightFull: {
  12988. height: math.unit(7, "feet"),
  12989. weight: math.unit(170, "lb"),
  12990. name: "Upright (Full)",
  12991. image: {
  12992. source: "./media/characters/cafat/upright-full.svg",
  12993. bottom: 0.01
  12994. }
  12995. },
  12996. side: {
  12997. height: math.unit(5, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Side",
  13000. image: {
  13001. source: "./media/characters/cafat/side.svg"
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Small",
  13008. height: math.unit(7, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Large",
  13013. height: math.unit(15.5, "feet")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Verin Raharra" },
  13019. {
  13020. front: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/verin-raharra/front.svg",
  13026. extra: 5019 / 4835,
  13027. bottom: 0.023
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(7 + 5 / 12, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Upsized",
  13039. height: math.unit(20, "feet")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Nakata" },
  13045. {
  13046. front: {
  13047. height: math.unit(7, "feet"),
  13048. weight: math.unit(230, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/nakata/front.svg",
  13052. extra: 1.005,
  13053. bottom: 0.01
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(7, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Big",
  13065. height: math.unit(14, "feet")
  13066. },
  13067. {
  13068. name: "Macro",
  13069. height: math.unit(400, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Lily" },
  13075. {
  13076. front: {
  13077. height: math.unit(4.91, "feet"),
  13078. weight: math.unit(100, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/lily/front.svg",
  13082. extra: 1585 / 1415,
  13083. bottom: 0.02
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(4.91, "feet"),
  13091. default: true
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Sheila" },
  13097. {
  13098. laying: {
  13099. height: math.unit(4 + 4 / 12, "feet"),
  13100. weight: math.unit(600, "lb"),
  13101. name: "Laying",
  13102. image: {
  13103. source: "./media/characters/sheila/laying.svg",
  13104. extra: 1333 / 1265,
  13105. bottom: 0.16
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(4 + 4 / 12, "feet"),
  13113. default: true
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Sax" },
  13119. {
  13120. front: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(190, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/sax/front.svg",
  13126. extra: 1187 / 973,
  13127. bottom: 0.042
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Micro",
  13134. height: math.unit(4, "inches"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Pandora" },
  13141. {
  13142. front: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/pandora/front.svg",
  13148. extra: 2720 / 2556,
  13149. bottom: 0.015
  13150. }
  13151. },
  13152. back: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(150, "lb"),
  13155. name: "Back",
  13156. image: {
  13157. source: "./media/characters/pandora/back.svg",
  13158. extra: 2720 / 2556,
  13159. bottom: 0.01
  13160. }
  13161. },
  13162. beans: {
  13163. height: math.unit(6 / 8, "feet"),
  13164. name: "Beans",
  13165. image: {
  13166. source: "./media/characters/pandora/beans.svg"
  13167. }
  13168. },
  13169. skirt: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Skirt",
  13173. image: {
  13174. source: "./media/characters/pandora/skirt.svg",
  13175. extra: 1622 / 1525,
  13176. bottom: 0.015
  13177. }
  13178. },
  13179. hoodie: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "lb"),
  13182. name: "Hoodie",
  13183. image: {
  13184. source: "./media/characters/pandora/hoodie.svg",
  13185. extra: 1622 / 1525,
  13186. bottom: 0.015
  13187. }
  13188. },
  13189. casual: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Casual",
  13193. image: {
  13194. source: "./media/characters/pandora/casual.svg",
  13195. extra: 1622 / 1525,
  13196. bottom: 0.015
  13197. }
  13198. },
  13199. },
  13200. [
  13201. {
  13202. name: "Normal",
  13203. height: math.unit(6, "feet")
  13204. },
  13205. {
  13206. name: "Big Steppy",
  13207. height: math.unit(1, "km"),
  13208. default: true
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Venio Darcony" },
  13214. {
  13215. side: {
  13216. height: math.unit(10, "feet"),
  13217. weight: math.unit(800, "kg"),
  13218. name: "Side",
  13219. image: {
  13220. source: "./media/characters/venio-darcony/side.svg",
  13221. extra: 1373 / 1003,
  13222. bottom: 0.037
  13223. }
  13224. },
  13225. front: {
  13226. height: math.unit(19, "feet"),
  13227. weight: math.unit(800, "kg"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/venio-darcony/front.svg"
  13231. }
  13232. },
  13233. back: {
  13234. height: math.unit(19, "feet"),
  13235. weight: math.unit(800, "kg"),
  13236. name: "Back",
  13237. image: {
  13238. source: "./media/characters/venio-darcony/back.svg"
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Normal",
  13245. height: math.unit(10, "feet")
  13246. },
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(130, "feet"),
  13250. default: true
  13251. },
  13252. {
  13253. name: "Macro+",
  13254. height: math.unit(240, "feet")
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Veski" },
  13260. {
  13261. front: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/veski/front.svg",
  13267. extra: 1299 / 1225,
  13268. bottom: 0.04
  13269. }
  13270. },
  13271. back: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Back",
  13275. image: {
  13276. source: "./media/characters/veski/back.svg",
  13277. extra: 1299 / 1225,
  13278. bottom: 0.008
  13279. }
  13280. },
  13281. maw: {
  13282. height: math.unit(1.5 * 1.21, "feet"),
  13283. name: "Maw",
  13284. image: {
  13285. source: "./media/characters/veski/maw.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(2, "km"),
  13293. default: true
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Isabelle" },
  13299. {
  13300. front: {
  13301. height: math.unit(5 + 7 / 12, "feet"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/isabelle/front.svg",
  13305. extra: 2130 / 1976,
  13306. bottom: 0.05
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Supermicro",
  13313. height: math.unit(10, "micrometers")
  13314. },
  13315. {
  13316. name: "Micro",
  13317. height: math.unit(1, "inch")
  13318. },
  13319. {
  13320. name: "Tiny",
  13321. height: math.unit(5, "inches")
  13322. },
  13323. {
  13324. name: "Standard",
  13325. height: math.unit(5 + 7 / 12, "inches")
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(80, "meters"),
  13330. default: true
  13331. },
  13332. {
  13333. name: "Megamacro",
  13334. height: math.unit(250, "meters")
  13335. },
  13336. {
  13337. name: "Gigamacro",
  13338. height: math.unit(5, "km")
  13339. },
  13340. {
  13341. name: "Cosmic",
  13342. height: math.unit(2.5e6, "miles")
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Hanzo" },
  13348. {
  13349. front: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/hanzo/front.svg",
  13355. extra: 374 / 344,
  13356. bottom: 0.02
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(8, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Anna" },
  13370. {
  13371. front: {
  13372. height: math.unit(7, "feet"),
  13373. weight: math.unit(130, "lb"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/anna/front.svg",
  13377. extra: 169 / 145,
  13378. bottom: 0.06
  13379. }
  13380. },
  13381. full: {
  13382. height: math.unit(4.96, "feet"),
  13383. weight: math.unit(220, "lb"),
  13384. name: "Full",
  13385. image: {
  13386. source: "./media/characters/anna/full.svg",
  13387. extra: 138 / 114,
  13388. bottom: 0.15
  13389. }
  13390. },
  13391. tongue: {
  13392. height: math.unit(2.53, "feet"),
  13393. name: "Tongue",
  13394. image: {
  13395. source: "./media/characters/anna/tongue.svg"
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(7, "feet"),
  13403. default: true
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Ian Corvid" },
  13409. {
  13410. front: {
  13411. height: math.unit(7, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/ian-corvid/front.svg",
  13416. extra: 150 / 142,
  13417. bottom: 0.02
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(7, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/ian-corvid/back.svg",
  13426. extra: 150 / 143,
  13427. bottom: 0.01
  13428. }
  13429. },
  13430. stomping: {
  13431. height: math.unit(7, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Stomping",
  13434. image: {
  13435. source: "./media/characters/ian-corvid/stomping.svg",
  13436. extra: 76 / 72
  13437. }
  13438. },
  13439. sitting: {
  13440. height: math.unit(7 / 1.8, "feet"),
  13441. weight: math.unit(150, "lb"),
  13442. name: "Sitting",
  13443. image: {
  13444. source: "./media/characters/ian-corvid/sitting.svg",
  13445. extra: 1400 / 1269,
  13446. bottom: 0.15
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Tiny Microw",
  13453. height: math.unit(1, "inch")
  13454. },
  13455. {
  13456. name: "Microw",
  13457. height: math.unit(6, "inches")
  13458. },
  13459. {
  13460. name: "Crow",
  13461. height: math.unit(7 + 1 / 12, "feet"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Macrow",
  13466. height: math.unit(176, "feet")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Natalie Kellon" },
  13472. {
  13473. front: {
  13474. height: math.unit(5 + 7 / 12, "feet"),
  13475. weight: math.unit(147, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/natalie-kellon/front.svg",
  13479. extra: 1214 / 1141,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Micro",
  13487. height: math.unit(1 / 16, "inch")
  13488. },
  13489. {
  13490. name: "Tiny",
  13491. height: math.unit(4, "inches")
  13492. },
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(5 + 7 / 12, "feet"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Amazon",
  13500. height: math.unit(12, "feet")
  13501. },
  13502. {
  13503. name: "Giantess",
  13504. height: math.unit(160, "meters")
  13505. },
  13506. {
  13507. name: "Titaness",
  13508. height: math.unit(800, "meters")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Alluria" },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/alluria/front.svg",
  13521. extra: 806 / 738,
  13522. bottom: 0.01
  13523. }
  13524. },
  13525. side: {
  13526. height: math.unit(6, "feet"),
  13527. weight: math.unit(150, "lb"),
  13528. name: "Side",
  13529. image: {
  13530. source: "./media/characters/alluria/side.svg",
  13531. extra: 800 / 750,
  13532. }
  13533. },
  13534. back: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Back",
  13538. image: {
  13539. source: "./media/characters/alluria/back.svg",
  13540. extra: 806 / 738,
  13541. }
  13542. },
  13543. frontMaid: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(150, "lb"),
  13546. name: "Front (Maid)",
  13547. image: {
  13548. source: "./media/characters/alluria/front-maid.svg",
  13549. extra: 806 / 738,
  13550. bottom: 0.01
  13551. }
  13552. },
  13553. sideMaid: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Side (Maid)",
  13557. image: {
  13558. source: "./media/characters/alluria/side-maid.svg",
  13559. extra: 800 / 750,
  13560. bottom: 0.005
  13561. }
  13562. },
  13563. backMaid: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Back (Maid)",
  13567. image: {
  13568. source: "./media/characters/alluria/back-maid.svg",
  13569. extra: 806 / 738,
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(6, "inches"),
  13577. default: true
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Kyle" },
  13583. {
  13584. front: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/kyle/front.svg",
  13590. extra: 1069 / 962,
  13591. bottom: 77.228 / 1727.45
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(150, "feet"),
  13599. default: true
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Duncan" },
  13605. {
  13606. front: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(300, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/duncan/front.svg",
  13612. extra: 1650 / 1482,
  13613. bottom: 0.05
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(100, "feet"),
  13621. default: true
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Memory" },
  13627. {
  13628. front: {
  13629. height: math.unit(5 + 4 / 12, "feet"),
  13630. weight: math.unit(220, "lb"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/memory/front.svg",
  13634. extra: 3641 / 3545,
  13635. bottom: 0.03
  13636. }
  13637. },
  13638. back: {
  13639. height: math.unit(5 + 4 / 12, "feet"),
  13640. weight: math.unit(220, "lb"),
  13641. name: "Back",
  13642. image: {
  13643. source: "./media/characters/memory/back.svg",
  13644. extra: 3641 / 3545,
  13645. bottom: 0.025
  13646. }
  13647. },
  13648. frontSkirt: {
  13649. height: math.unit(5 + 4 / 12, "feet"),
  13650. weight: math.unit(220, "lb"),
  13651. name: "Front (Skirt)",
  13652. image: {
  13653. source: "./media/characters/memory/front-skirt.svg",
  13654. extra: 3641 / 3545,
  13655. bottom: 0.03
  13656. }
  13657. },
  13658. frontDress: {
  13659. height: math.unit(5 + 4 / 12, "feet"),
  13660. weight: math.unit(220, "lb"),
  13661. name: "Front (Dress)",
  13662. image: {
  13663. source: "./media/characters/memory/front-dress.svg",
  13664. extra: 3641 / 3545,
  13665. bottom: 0.03
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Micro",
  13672. height: math.unit(6, "inches"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(5 + 4 / 12, "feet")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Luno" },
  13683. {
  13684. front: {
  13685. height: math.unit(4 + 11 / 12, "feet"),
  13686. weight: math.unit(100, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/luno/front.svg",
  13690. extra: 1535 / 1487,
  13691. bottom: 0.03
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Micro",
  13698. height: math.unit(3, "inches")
  13699. },
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(4 + 11 / 12, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Macro",
  13707. height: math.unit(300, "feet")
  13708. },
  13709. {
  13710. name: "Megamacro",
  13711. height: math.unit(700, "miles")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Jamesy" },
  13717. {
  13718. front: {
  13719. height: math.unit(6 + 2 / 12, "feet"),
  13720. weight: math.unit(170, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/jamesy/front.svg",
  13724. extra: 440 / 382,
  13725. bottom: 0.005
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(3, "inches")
  13733. },
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(6 + 2 / 12, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(300, "feet")
  13742. },
  13743. {
  13744. name: "Megamacro",
  13745. height: math.unit(700, "miles")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Mark" },
  13751. {
  13752. front: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(160, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/mark/front.svg",
  13758. extra: 3300 / 3100,
  13759. bottom: 136.42 / 3440.47
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(120, "meters")
  13767. },
  13768. {
  13769. name: "Bigger Macro",
  13770. height: math.unit(350, "meters")
  13771. },
  13772. {
  13773. name: "Megamacro",
  13774. height: math.unit(8, "km"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Continental",
  13779. height: math.unit(4550, "km")
  13780. },
  13781. {
  13782. name: "Planetary",
  13783. height: math.unit(65000, "km")
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Mac" },
  13789. {
  13790. front: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(400, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/mac/front.svg",
  13796. extra: 1048 / 987.7,
  13797. bottom: 60 / 1107.6,
  13798. }
  13799. },
  13800. },
  13801. [
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(500, "feet"),
  13805. default: true
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Bari" },
  13811. {
  13812. front: {
  13813. height: math.unit(5 + 2 / 12, "feet"),
  13814. weight: math.unit(190, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/bari/front.svg",
  13818. extra: 3156 / 2880,
  13819. bottom: 0.03
  13820. }
  13821. },
  13822. back: {
  13823. height: math.unit(5 + 2 / 12, "feet"),
  13824. weight: math.unit(190, "lb"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/bari/back.svg",
  13828. extra: 3260 / 2834,
  13829. bottom: 0.025
  13830. }
  13831. },
  13832. frontPlush: {
  13833. height: math.unit(5 + 2 / 12, "feet"),
  13834. weight: math.unit(190, "lb"),
  13835. name: "Front (Plush)",
  13836. image: {
  13837. source: "./media/characters/bari/front-plush.svg",
  13838. extra: 1112 / 1061,
  13839. bottom: 0.002
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Micro",
  13846. height: math.unit(3, "inches")
  13847. },
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(5 + 2 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(20, "feet")
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Hunter Misha Raven" },
  13861. {
  13862. front: {
  13863. height: math.unit(6 + 1 / 12, "feet"),
  13864. weight: math.unit(275, "lb"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/hunter-misha-raven/front.svg"
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Mortal",
  13874. height: math.unit(6 + 1 / 12, "feet")
  13875. },
  13876. {
  13877. name: "Divine",
  13878. height: math.unit(1.12134e34, "parsecs"),
  13879. default: true
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Max Calore" },
  13885. {
  13886. front: {
  13887. height: math.unit(6 + 3 / 12, "feet"),
  13888. weight: math.unit(220, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/max-calore/front.svg",
  13892. extra: 1700 / 1648,
  13893. bottom: 0.01
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(6 + 3 / 12, "feet"),
  13898. weight: math.unit(220, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/max-calore/back.svg",
  13902. extra: 1700 / 1648,
  13903. bottom: 0.01
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Normal",
  13910. height: math.unit(6 + 3 / 12, "feet"),
  13911. default: true
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Aspen" },
  13917. {
  13918. side: {
  13919. height: math.unit(2 + 8 / 12, "feet"),
  13920. weight: math.unit(99, "lb"),
  13921. name: "Side",
  13922. image: {
  13923. source: "./media/characters/aspen/side.svg",
  13924. extra: 152 / 138,
  13925. bottom: 0.032
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Normal",
  13932. height: math.unit(2 + 8 / 12, "feet"),
  13933. default: true
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Sheila (Wolf)" },
  13939. {
  13940. side: {
  13941. height: math.unit(3 + 2 / 12, "feet"),
  13942. weight: math.unit(224, "lb"),
  13943. name: "Side",
  13944. image: {
  13945. source: "./media/characters/sheila-wolf/side.svg",
  13946. extra: 179 / 166,
  13947. bottom: 0.03
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(3 + 2 / 12, "feet"),
  13955. default: true
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Michelle" },
  13961. {
  13962. side: {
  13963. height: math.unit(1 + 9 / 12, "feet"),
  13964. weight: math.unit(38, "lb"),
  13965. name: "Side",
  13966. image: {
  13967. source: "./media/characters/michelle/side.svg",
  13968. extra: 147 / 136.7,
  13969. bottom: 0.03
  13970. }
  13971. },
  13972. },
  13973. [
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(1 + 9 / 12, "feet"),
  13977. default: true
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Nino" },
  13983. {
  13984. front: {
  13985. height: math.unit(1 + 1 / 12, "feet"),
  13986. weight: math.unit(18, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/nino/front.svg"
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(1 + 1 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Viola" },
  14003. {
  14004. front: {
  14005. height: math.unit(1, "feet"),
  14006. weight: math.unit(16, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/viola/front.svg"
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(1, "feet"),
  14017. default: true
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Atlas" },
  14023. {
  14024. front: {
  14025. height: math.unit(6 + 5 / 12, "feet"),
  14026. weight: math.unit(580, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/atlas/front.svg",
  14030. extra: 298.5 / 290,
  14031. bottom: 0.015
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(6 + 5 / 12, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Davy" },
  14045. {
  14046. side: {
  14047. height: math.unit(1 + 10 / 12, "feet"),
  14048. weight: math.unit(25, "lb"),
  14049. name: "Side",
  14050. image: {
  14051. source: "./media/characters/davy/side.svg",
  14052. extra: 200 / 170,
  14053. bottom: 0.01
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(1 + 10 / 12, "feet"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Fiona" },
  14067. {
  14068. side: {
  14069. height: math.unit(4 + 8 / 12, "feet"),
  14070. weight: math.unit(166, "lb"),
  14071. name: "Side",
  14072. image: {
  14073. source: "./media/characters/fiona/side.svg",
  14074. extra: 232 / 220,
  14075. bottom: 0.03
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(4 + 8 / 12, "feet"),
  14083. default: true
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Lyla" },
  14089. {
  14090. front: {
  14091. height: math.unit(2, "feet"),
  14092. weight: math.unit(62, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/lyla/front.svg",
  14096. bottom: 0.1
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(2, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Perseus" },
  14110. {
  14111. side: {
  14112. height: math.unit(1.8, "feet"),
  14113. weight: math.unit(44, "lb"),
  14114. name: "Side",
  14115. image: {
  14116. source: "./media/characters/perseus/side.svg",
  14117. bottom: 0.21
  14118. }
  14119. },
  14120. },
  14121. [
  14122. {
  14123. name: "Normal",
  14124. height: math.unit(1.8, "feet"),
  14125. default: true
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Remus" },
  14131. {
  14132. side: {
  14133. height: math.unit(4 + 2 / 12, "feet"),
  14134. weight: math.unit(20, "lb"),
  14135. name: "Side",
  14136. image: {
  14137. source: "./media/characters/remus/side.svg"
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(4 + 2 / 12, "feet"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Raf" },
  14151. {
  14152. front: {
  14153. height: math.unit(4 + 11 / 12, "feet"),
  14154. weight: math.unit(114, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/raf/front.svg",
  14158. bottom: 0.01
  14159. }
  14160. },
  14161. side: {
  14162. height: math.unit(4 + 11 / 12, "feet"),
  14163. weight: math.unit(114, "lb"),
  14164. name: "Side",
  14165. image: {
  14166. source: "./media/characters/raf/side.svg",
  14167. bottom: 0.005
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Micro",
  14174. height: math.unit(2, "inches")
  14175. },
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(4 + 11 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(70, "feet")
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Liam Einarr" },
  14189. {
  14190. front: {
  14191. height: math.unit(1.5, "meters"),
  14192. weight: math.unit(68, "kg"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/liam-einarr/front.svg",
  14196. extra: 2822 / 2666
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(1.5, "meters"),
  14201. weight: math.unit(68, "kg"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/liam-einarr/back.svg",
  14205. extra: 2822 / 2666,
  14206. bottom: 0.015
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(1.5, "meters"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(150, "meters")
  14219. },
  14220. {
  14221. name: "Megamacro",
  14222. height: math.unit(35, "km")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Linda" },
  14228. {
  14229. front: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(75, "kg"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/linda/front.svg",
  14235. extra: 930 / 874,
  14236. bottom: 0.004
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(6, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Caylex" },
  14250. {
  14251. front: {
  14252. height: math.unit(6 + 8 / 12, "feet"),
  14253. weight: math.unit(220, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/caylex/front.svg",
  14257. extra: 821 / 772,
  14258. bottom: 0.07
  14259. }
  14260. },
  14261. back: {
  14262. height: math.unit(6 + 8 / 12, "feet"),
  14263. weight: math.unit(220, "lb"),
  14264. name: "Back",
  14265. image: {
  14266. source: "./media/characters/caylex/back.svg",
  14267. extra: 821 / 772,
  14268. bottom: 0.022
  14269. }
  14270. },
  14271. hand: {
  14272. height: math.unit(1.25, "feet"),
  14273. name: "Hand",
  14274. image: {
  14275. source: "./media/characters/caylex/hand.svg"
  14276. }
  14277. },
  14278. foot: {
  14279. height: math.unit(1.6, "feet"),
  14280. name: "Foot",
  14281. image: {
  14282. source: "./media/characters/caylex/foot.svg"
  14283. }
  14284. },
  14285. armored: {
  14286. height: math.unit(6 + 8 / 12, "feet"),
  14287. weight: math.unit(250, "lb"),
  14288. name: "Armored",
  14289. image: {
  14290. source: "./media/characters/caylex/armored.svg",
  14291. extra: 1420 / 1310,
  14292. bottom: 0.045
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Normal",
  14299. height: math.unit(6 + 8 / 12, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Normal+",
  14304. height: math.unit(12, "feet")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Alana" },
  14310. {
  14311. front: {
  14312. height: math.unit(7 + 6 / 12, "feet"),
  14313. weight: math.unit(288, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/alana/front.svg",
  14317. extra: 679 / 653,
  14318. bottom: 22.5 / 701
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(7 + 6 / 12, "feet")
  14326. },
  14327. {
  14328. name: "Large",
  14329. height: math.unit(50, "feet")
  14330. },
  14331. {
  14332. name: "Macro",
  14333. height: math.unit(100, "feet"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Macro+",
  14338. height: math.unit(200, "feet")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Hasani" },
  14344. {
  14345. front: {
  14346. height: math.unit(6 + 1 / 12, "feet"),
  14347. weight: math.unit(210, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/hasani/front.svg",
  14351. extra: 244 / 232,
  14352. bottom: 0.01
  14353. }
  14354. },
  14355. back: {
  14356. height: math.unit(6 + 1 / 12, "feet"),
  14357. weight: math.unit(210, "lb"),
  14358. name: "Back",
  14359. image: {
  14360. source: "./media/characters/hasani/back.svg",
  14361. extra: 244 / 232,
  14362. bottom: 0.01
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Normal",
  14369. height: math.unit(6 + 1 / 12, "feet")
  14370. },
  14371. {
  14372. name: "Macro",
  14373. height: math.unit(175, "feet"),
  14374. default: true
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Nita" },
  14380. {
  14381. front: {
  14382. height: math.unit(1.82, "meters"),
  14383. weight: math.unit(140, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/nita/front.svg",
  14387. extra: 2473 / 2363,
  14388. bottom: 0.01
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(1.82, "m")
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(300, "m")
  14400. },
  14401. {
  14402. name: "Mistake Canon",
  14403. height: math.unit(0.5, "miles"),
  14404. default: true
  14405. },
  14406. {
  14407. name: "Big Mistake",
  14408. height: math.unit(13, "miles")
  14409. },
  14410. {
  14411. name: "Playing God",
  14412. height: math.unit(2450, "miles")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Shiriko" },
  14418. {
  14419. front: {
  14420. height: math.unit(4, "feet"),
  14421. weight: math.unit(120, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/shiriko/front.svg",
  14425. extra: 195 / 188
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(4, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Deja" },
  14439. {
  14440. front: {
  14441. height: math.unit(6, "feet"),
  14442. name: "front",
  14443. image: {
  14444. source: "./media/characters/deja/front.svg",
  14445. extra: 926 / 840,
  14446. bottom: 0.07
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Planck Length",
  14453. height: math.unit(1.6e-35, "meters")
  14454. },
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(30.48, "meters"),
  14458. default: true
  14459. },
  14460. {
  14461. name: "Universal",
  14462. height: math.unit(8.8e26, "meters")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Anima" },
  14468. {
  14469. side: {
  14470. height: math.unit(8, "feet"),
  14471. weight: math.unit(6300, "lb"),
  14472. name: "Side",
  14473. image: {
  14474. source: "./media/characters/anima/side.svg",
  14475. bottom: 0.035
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(8, "feet"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Bianca" },
  14489. {
  14490. front: {
  14491. height: math.unit(8, "feet"),
  14492. weight: math.unit(350, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/bianca/front.svg",
  14496. extra: 234 / 225,
  14497. bottom: 0.03
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(8, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Adinia" },
  14511. {
  14512. front: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(150, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/adinia/front.svg",
  14518. extra: 1845 / 1672,
  14519. bottom: 0.02
  14520. }
  14521. },
  14522. back: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Back",
  14526. image: {
  14527. source: "./media/characters/adinia/back.svg",
  14528. extra: 1845 / 1672,
  14529. bottom: 0.002
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(11 + 5 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Lykasa" },
  14543. {
  14544. front: {
  14545. height: math.unit(3, "meters"),
  14546. weight: math.unit(200, "kg"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/lykasa/front.svg",
  14550. extra: 1076 / 976,
  14551. bottom: 0.06
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(3, "meters")
  14559. },
  14560. {
  14561. name: "Kaiku",
  14562. height: math.unit(120, "meters"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Mega Kaiju",
  14567. height: math.unit(240, "km")
  14568. },
  14569. {
  14570. name: "Giga Kaiju",
  14571. height: math.unit(400, "megameters")
  14572. },
  14573. {
  14574. name: "Tera Kaiju",
  14575. height: math.unit(800, "gigameters")
  14576. },
  14577. {
  14578. name: "Kaiju Dragon Goddess",
  14579. height: math.unit(26, "zettaparsecs")
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Malfaren" },
  14585. {
  14586. side: {
  14587. height: math.unit(283 / 124 * 6, "feet"),
  14588. weight: math.unit(35000, "lb"),
  14589. name: "Side",
  14590. image: {
  14591. source: "./media/characters/malfaren/side.svg",
  14592. extra: 2500 / 1010,
  14593. bottom: 0.01
  14594. }
  14595. },
  14596. front: {
  14597. height: math.unit(22.36, "feet"),
  14598. weight: math.unit(35000, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/malfaren/front.svg",
  14602. extra: 1631 / 1476,
  14603. bottom: 0.01
  14604. }
  14605. },
  14606. maw: {
  14607. height: math.unit(6.9, "feet"),
  14608. name: "Maw",
  14609. image: {
  14610. source: "./media/characters/malfaren/maw.svg"
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Big",
  14617. height: math.unit(283 / 162 * 6, "feet"),
  14618. },
  14619. {
  14620. name: "Bigger",
  14621. height: math.unit(283 / 124 * 6, "feet")
  14622. },
  14623. {
  14624. name: "Massive",
  14625. height: math.unit(283 / 92 * 6, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "👀💦",
  14630. height: math.unit(283 / 73 * 6, "feet"),
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Kernel" },
  14636. {
  14637. front: {
  14638. height: math.unit(1.7, "m"),
  14639. weight: math.unit(70, "kg"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/kernel/front.svg",
  14643. extra: 222 / 210,
  14644. bottom: 0.007
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Nano",
  14651. height: math.unit(17, "micrometers")
  14652. },
  14653. {
  14654. name: "Micro",
  14655. height: math.unit(1.7, "mm")
  14656. },
  14657. {
  14658. name: "Small",
  14659. height: math.unit(1.7, "cm")
  14660. },
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(1.7, "m"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Jayne Folest" },
  14670. {
  14671. front: {
  14672. height: math.unit(1.75, "meters"),
  14673. weight: math.unit(65, "kg"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/jayne-folest/front.svg",
  14677. extra: 2115 / 2007,
  14678. bottom: 0.02
  14679. }
  14680. },
  14681. back: {
  14682. height: math.unit(1.75, "meters"),
  14683. weight: math.unit(65, "kg"),
  14684. name: "Back",
  14685. image: {
  14686. source: "./media/characters/jayne-folest/back.svg",
  14687. extra: 2115 / 2007,
  14688. bottom: 0.005
  14689. }
  14690. },
  14691. frontClothed: {
  14692. height: math.unit(1.75, "meters"),
  14693. weight: math.unit(65, "kg"),
  14694. name: "Front (Clothed)",
  14695. image: {
  14696. source: "./media/characters/jayne-folest/front-clothed.svg",
  14697. extra: 2115 / 2007,
  14698. bottom: 0.035
  14699. }
  14700. },
  14701. hand: {
  14702. height: math.unit(1 / 1.260, "feet"),
  14703. name: "Hand",
  14704. image: {
  14705. source: "./media/characters/jayne-folest/hand.svg"
  14706. }
  14707. },
  14708. foot: {
  14709. height: math.unit(1 / 0.918, "feet"),
  14710. name: "Foot",
  14711. image: {
  14712. source: "./media/characters/jayne-folest/foot.svg"
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Micro",
  14719. height: math.unit(4, "cm")
  14720. },
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(1.75, "meters")
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(47.5, "meters"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Algier" },
  14734. {
  14735. front: {
  14736. height: math.unit(180, "cm"),
  14737. weight: math.unit(70, "kg"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/algier/front.svg",
  14741. extra: 596 / 572,
  14742. bottom: 0.04
  14743. }
  14744. },
  14745. back: {
  14746. height: math.unit(180, "cm"),
  14747. weight: math.unit(70, "kg"),
  14748. name: "Back",
  14749. image: {
  14750. source: "./media/characters/algier/back.svg",
  14751. extra: 596 / 572,
  14752. bottom: 0.025
  14753. }
  14754. },
  14755. frontdressed: {
  14756. height: math.unit(180, "cm"),
  14757. weight: math.unit(150, "kg"),
  14758. name: "Front-dressed",
  14759. image: {
  14760. source: "./media/characters/algier/front-dressed.svg",
  14761. extra: 596 / 572,
  14762. bottom: 0.038
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Micro",
  14769. height: math.unit(5, "cm")
  14770. },
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(180, "cm"),
  14774. default: true
  14775. },
  14776. {
  14777. name: "Macro",
  14778. height: math.unit(64, "m")
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Pretzel" },
  14784. {
  14785. upright: {
  14786. height: math.unit(7, "feet"),
  14787. weight: math.unit(300, "lb"),
  14788. name: "Upright",
  14789. image: {
  14790. source: "./media/characters/pretzel/upright.svg",
  14791. extra: 534 / 522,
  14792. bottom: 0.065
  14793. }
  14794. },
  14795. sprawling: {
  14796. height: math.unit(3.75, "feet"),
  14797. weight: math.unit(300, "lb"),
  14798. name: "Sprawling",
  14799. image: {
  14800. source: "./media/characters/pretzel/sprawling.svg",
  14801. extra: 314 / 281,
  14802. bottom: 0.1
  14803. }
  14804. },
  14805. tongue: {
  14806. height: math.unit(2, "feet"),
  14807. name: "Tongue",
  14808. image: {
  14809. source: "./media/characters/pretzel/tongue.svg"
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(7, "feet"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Oversized",
  14821. height: math.unit(15, "feet")
  14822. },
  14823. {
  14824. name: "Huge",
  14825. height: math.unit(30, "feet")
  14826. },
  14827. {
  14828. name: "Macro",
  14829. height: math.unit(250, "feet")
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Roxi" },
  14835. {
  14836. sideFront: {
  14837. height: math.unit(5 + 2 / 12, "feet"),
  14838. weight: math.unit(120, "lb"),
  14839. name: "Front Side",
  14840. image: {
  14841. source: "./media/characters/roxi/side-front.svg",
  14842. extra: 2924 / 2717,
  14843. bottom: 0.08
  14844. }
  14845. },
  14846. sideBack: {
  14847. height: math.unit(5 + 2 / 12, "feet"),
  14848. weight: math.unit(120, "lb"),
  14849. name: "Back Side",
  14850. image: {
  14851. source: "./media/characters/roxi/side-back.svg",
  14852. extra: 2904 / 2693,
  14853. bottom: 0.06
  14854. }
  14855. },
  14856. front: {
  14857. height: math.unit(5 + 2 / 12, "feet"),
  14858. weight: math.unit(120, "lb"),
  14859. name: "Front",
  14860. image: {
  14861. source: "./media/characters/roxi/front.svg",
  14862. extra: 2028 / 1907,
  14863. bottom: 0.01
  14864. }
  14865. },
  14866. frontAlt: {
  14867. height: math.unit(5 + 2 / 12, "feet"),
  14868. weight: math.unit(120, "lb"),
  14869. name: "Front (Alt)",
  14870. image: {
  14871. source: "./media/characters/roxi/front-alt.svg",
  14872. extra: 1828 / 1798,
  14873. bottom: 0.01
  14874. }
  14875. },
  14876. sitting: {
  14877. height: math.unit(2.8, "feet"),
  14878. weight: math.unit(120, "lb"),
  14879. name: "Sitting",
  14880. image: {
  14881. source: "./media/characters/roxi/sitting.svg",
  14882. extra: 2660 / 2462,
  14883. bottom: 0.1
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(5 + 2 / 12, "feet"),
  14891. default: true
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Shadow" },
  14897. {
  14898. side: {
  14899. height: math.unit(55, "feet"),
  14900. weight: math.unit(153, "tons"),
  14901. name: "Side",
  14902. image: {
  14903. source: "./media/characters/shadow/side.svg",
  14904. extra: 701 / 628,
  14905. bottom: 0.02
  14906. }
  14907. },
  14908. flying: {
  14909. height: math.unit(145, "feet"),
  14910. weight: math.unit(153, "tons"),
  14911. name: "Flying",
  14912. image: {
  14913. source: "./media/characters/shadow/flying.svg"
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Normal",
  14920. height: math.unit(55, "feet"),
  14921. default: true
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Marcie" },
  14927. {
  14928. front: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(200, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/marcie/front.svg",
  14934. extra: 960 / 876,
  14935. bottom: 58 / 1017.87
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(1, "mile"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Kachina" },
  14949. {
  14950. front: {
  14951. height: math.unit(7, "feet"),
  14952. weight: math.unit(200, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/kachina/front.svg",
  14956. extra: 1290.68 / 1119,
  14957. bottom: 36.5 / 1327.18
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(7, "feet"),
  14965. default: true
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Kash" },
  14971. {
  14972. looking: {
  14973. height: math.unit(2, "meters"),
  14974. weight: math.unit(300, "kg"),
  14975. name: "Looking",
  14976. image: {
  14977. source: "./media/characters/kash/looking.svg",
  14978. extra: 474 / 344,
  14979. bottom: 0.03
  14980. }
  14981. },
  14982. side: {
  14983. height: math.unit(2, "meters"),
  14984. weight: math.unit(300, "kg"),
  14985. name: "Side",
  14986. image: {
  14987. source: "./media/characters/kash/side.svg",
  14988. extra: 302 / 251,
  14989. bottom: 0.03
  14990. }
  14991. },
  14992. front: {
  14993. height: math.unit(2, "meters"),
  14994. weight: math.unit(300, "kg"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/kash/front.svg",
  14998. extra: 495 / 360,
  14999. bottom: 0.015
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(2, "meters"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Big",
  15011. height: math.unit(3, "meters")
  15012. },
  15013. {
  15014. name: "Large",
  15015. height: math.unit(5, "meters")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Lalim" },
  15021. {
  15022. feeding: {
  15023. height: math.unit(6.7, "feet"),
  15024. weight: math.unit(350, "lb"),
  15025. name: "Feeding",
  15026. image: {
  15027. source: "./media/characters/lalim/feeding.svg",
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(6.7, "feet"),
  15035. default: true
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "De'Vout" },
  15041. {
  15042. front: {
  15043. height: math.unit(9.5, "feet"),
  15044. weight: math.unit(600, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/de'vout/front.svg",
  15048. extra: 1443 / 1328,
  15049. bottom: 0.025
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(9.5, "feet"),
  15054. weight: math.unit(600, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/de'vout/back.svg",
  15058. extra: 1443 / 1328
  15059. }
  15060. },
  15061. frontDressed: {
  15062. height: math.unit(9.5, "feet"),
  15063. weight: math.unit(600, "lb"),
  15064. name: "Front (Dressed",
  15065. image: {
  15066. source: "./media/characters/de'vout/front-dressed.svg",
  15067. extra: 1443 / 1328,
  15068. bottom: 0.025
  15069. }
  15070. },
  15071. backDressed: {
  15072. height: math.unit(9.5, "feet"),
  15073. weight: math.unit(600, "lb"),
  15074. name: "Back (Dressed",
  15075. image: {
  15076. source: "./media/characters/de'vout/back-dressed.svg",
  15077. extra: 1443 / 1328
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(9.5, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Talana" },
  15091. {
  15092. front: {
  15093. height: math.unit(8, "feet"),
  15094. weight: math.unit(225, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/talana/front.svg",
  15098. extra: 1410 / 1300,
  15099. bottom: 0.015
  15100. }
  15101. },
  15102. frontDressed: {
  15103. height: math.unit(8, "feet"),
  15104. weight: math.unit(225, "lb"),
  15105. name: "Front (Dressed",
  15106. image: {
  15107. source: "./media/characters/talana/front-dressed.svg",
  15108. extra: 1410 / 1300,
  15109. bottom: 0.015
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(8, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Xeauvok" },
  15123. {
  15124. side: {
  15125. height: math.unit(7.2, "feet"),
  15126. weight: math.unit(150, "lb"),
  15127. name: "Side",
  15128. image: {
  15129. source: "./media/characters/xeauvok/side.svg",
  15130. extra: 1975 / 1523,
  15131. bottom: 0.07
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(7.2, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Zara" },
  15145. {
  15146. side: {
  15147. height: math.unit(10, "feet"),
  15148. weight: math.unit(900, "kg"),
  15149. name: "Side",
  15150. image: {
  15151. source: "./media/characters/zara/side.svg",
  15152. extra: 504 / 498
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(10, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Richard (Dragon)" },
  15166. {
  15167. side: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Side",
  15171. image: {
  15172. source: "./media/characters/richard-dragon/side.svg",
  15173. extra: 845 / 340,
  15174. bottom: 0.017
  15175. }
  15176. },
  15177. maw: {
  15178. height: math.unit(2.97, "feet"),
  15179. name: "Maw",
  15180. image: {
  15181. source: "./media/characters/richard-dragon/maw.svg"
  15182. }
  15183. },
  15184. },
  15185. [
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Richard (Smeargle)" },
  15190. {
  15191. front: {
  15192. height: math.unit(4, "feet"),
  15193. weight: math.unit(100, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/richard-smeargle/front.svg",
  15197. extra: 2952 / 2820,
  15198. bottom: 0.028
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(4, "feet"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Dynamax",
  15210. height: math.unit(20, "meters")
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Klay" },
  15216. {
  15217. front: {
  15218. height: math.unit(6, "feet"),
  15219. weight: math.unit(110, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/klay/front.svg",
  15223. extra: 962 / 883,
  15224. bottom: 0.04
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(110, "lb"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/klay/back.svg",
  15233. extra: 962 / 883
  15234. }
  15235. },
  15236. beans: {
  15237. height: math.unit(1.15, "feet"),
  15238. name: "Beans",
  15239. image: {
  15240. source: "./media/characters/klay/beans.svg"
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Micro",
  15247. height: math.unit(6, "inches")
  15248. },
  15249. {
  15250. name: "Mini",
  15251. height: math.unit(3, "feet")
  15252. },
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6, "feet"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Big",
  15260. height: math.unit(25, "feet")
  15261. },
  15262. {
  15263. name: "Macro",
  15264. height: math.unit(100, "feet")
  15265. },
  15266. {
  15267. name: "Megamacro",
  15268. height: math.unit(400, "feet")
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Marcus" },
  15274. {
  15275. front: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(160, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/marcus/front.svg",
  15281. extra: 734 / 676,
  15282. bottom: 0.03
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Little",
  15289. height: math.unit(6, "feet")
  15290. },
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(110, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(250, "feet")
  15299. },
  15300. {
  15301. name: "Megamacro",
  15302. height: math.unit(1000, "feet")
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Claude DelRoute" },
  15308. {
  15309. front: {
  15310. height: math.unit(7, "feet"),
  15311. weight: math.unit(275, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/claude-delroute/front.svg",
  15315. extra: 230 / 214,
  15316. bottom: 0.007
  15317. }
  15318. },
  15319. side: {
  15320. height: math.unit(7, "feet"),
  15321. weight: math.unit(275, "lb"),
  15322. name: "Side",
  15323. image: {
  15324. source: "./media/characters/claude-delroute/side.svg",
  15325. extra: 222 / 214,
  15326. bottom: 0.01
  15327. }
  15328. },
  15329. back: {
  15330. height: math.unit(7, "feet"),
  15331. weight: math.unit(275, "lb"),
  15332. name: "Back",
  15333. image: {
  15334. source: "./media/characters/claude-delroute/back.svg",
  15335. extra: 230 / 214,
  15336. bottom: 0.015
  15337. }
  15338. },
  15339. maw: {
  15340. height: math.unit(0.6407, "meters"),
  15341. name: "Maw",
  15342. image: {
  15343. source: "./media/characters/claude-delroute/maw.svg"
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(7, "feet"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Lorge",
  15355. height: math.unit(20, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Dragonien" },
  15361. {
  15362. front: {
  15363. height: math.unit(8 + 4 / 12, "feet"),
  15364. weight: math.unit(600, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/dragonien/front.svg",
  15368. extra: 100 / 94,
  15369. bottom: 3.3 / 103.3445
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(8 + 4 / 12, "feet"),
  15374. weight: math.unit(600, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/dragonien/back.svg",
  15378. extra: 776 / 746,
  15379. bottom: 6.4 / 782.0616
  15380. }
  15381. },
  15382. foot: {
  15383. height: math.unit(1.54, "feet"),
  15384. name: "Foot",
  15385. image: {
  15386. source: "./media/characters/dragonien/foot.svg",
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(8 + 4 / 12, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Macro",
  15398. height: math.unit(200, "feet")
  15399. },
  15400. {
  15401. name: "Megamacro",
  15402. height: math.unit(1, "mile")
  15403. },
  15404. {
  15405. name: "Gigamacro",
  15406. height: math.unit(1000, "miles")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Desta" },
  15412. {
  15413. front: {
  15414. height: math.unit(5 + 2 / 12, "feet"),
  15415. weight: math.unit(110, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/desta/front.svg",
  15419. extra: 1482 / 1417
  15420. }
  15421. },
  15422. side: {
  15423. height: math.unit(5 + 2 / 12, "feet"),
  15424. weight: math.unit(110, "lb"),
  15425. name: "Side",
  15426. image: {
  15427. source: "./media/characters/desta/side.svg",
  15428. extra: 2579 / 2491,
  15429. bottom: 0.053
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Micro",
  15436. height: math.unit(6, "inches")
  15437. },
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(5 + 2 / 12, "feet"),
  15441. default: true
  15442. },
  15443. {
  15444. name: "Macro",
  15445. height: math.unit(62, "feet")
  15446. },
  15447. {
  15448. name: "Megamacro",
  15449. height: math.unit(1800, "feet")
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Storm Alystar" },
  15455. {
  15456. front: {
  15457. height: math.unit(10, "feet"),
  15458. weight: math.unit(700, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/storm-alystar/front.svg",
  15462. extra: 2112 / 1898,
  15463. bottom: 0.034
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Micro",
  15470. height: math.unit(3.5, "inches")
  15471. },
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(10, "feet"),
  15475. default: true
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(400, "feet")
  15480. },
  15481. {
  15482. name: "Deific",
  15483. height: math.unit(60, "miles")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Ilia" },
  15489. {
  15490. front: {
  15491. height: math.unit(2.35, "meters"),
  15492. weight: math.unit(119, "kg"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/ilia/front.svg",
  15496. extra: 1285 / 1255,
  15497. bottom: 0.06
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Normal",
  15504. height: math.unit(2.35, "meters")
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(140, "meters"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Megamacro",
  15513. height: math.unit(100, "miles")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "KingDead" },
  15519. {
  15520. front: {
  15521. height: math.unit(6 + 5 / 12, "feet"),
  15522. weight: math.unit(190, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/kingdead/front.svg",
  15526. extra: 1228 / 1177
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(7, "inches")
  15534. },
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(6 + 5 / 12, "feet")
  15538. },
  15539. {
  15540. name: "Macro",
  15541. height: math.unit(150, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(200, "miles")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Kyrehx" },
  15552. {
  15553. front: {
  15554. height: math.unit(8, "feet"),
  15555. weight: math.unit(600, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/kyrehx/front.svg",
  15559. extra: 1195 / 1095,
  15560. bottom: 0.034
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Micro",
  15567. height: math.unit(2, "inches")
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(8, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(255, "feet")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Xang" },
  15582. {
  15583. front: {
  15584. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15585. weight: math.unit(184, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/xang/front.svg",
  15589. extra: 845 / 755
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Macro",
  15601. height: math.unit(0.935 * 146, "feet")
  15602. },
  15603. {
  15604. name: "Megamacro",
  15605. height: math.unit(0.935 * 3, "miles")
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Doc Weardno" },
  15611. {
  15612. frontDressed: {
  15613. height: math.unit(5 + 7 / 12, "feet"),
  15614. weight: math.unit(140, "lb"),
  15615. name: "Front (Dressed)",
  15616. image: {
  15617. source: "./media/characters/doc-weardno/front-dressed.svg",
  15618. extra: 263 / 234
  15619. }
  15620. },
  15621. backDressed: {
  15622. height: math.unit(5 + 7 / 12, "feet"),
  15623. weight: math.unit(140, "lb"),
  15624. name: "Back (Dressed)",
  15625. image: {
  15626. source: "./media/characters/doc-weardno/back-dressed.svg",
  15627. extra: 266 / 238
  15628. }
  15629. },
  15630. front: {
  15631. height: math.unit(5 + 7 / 12, "feet"),
  15632. weight: math.unit(140, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/doc-weardno/front.svg",
  15636. extra: 254 / 233
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Micro",
  15643. height: math.unit(3, "inches")
  15644. },
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(5 + 7 / 12, "feet"),
  15648. default: true
  15649. },
  15650. {
  15651. name: "Macro",
  15652. height: math.unit(25, "feet")
  15653. },
  15654. {
  15655. name: "Megamacro",
  15656. height: math.unit(2, "miles")
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Seth Whilst" },
  15662. {
  15663. front: {
  15664. height: math.unit(6 + 2 / 12, "feet"),
  15665. weight: math.unit(153, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/seth-whilst/front.svg",
  15669. bottom: 0.07
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(5, "inches")
  15677. },
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(6 + 2 / 12, "feet"),
  15681. default: true
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Pocket Jabari" },
  15687. {
  15688. front: {
  15689. height: math.unit(3, "inches"),
  15690. weight: math.unit(8, "grams"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/pocket-jabari/front.svg",
  15694. extra: 1024 / 974,
  15695. bottom: 0.039
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Minimicro",
  15702. height: math.unit(8, "mm")
  15703. },
  15704. {
  15705. name: "Micro",
  15706. height: math.unit(3, "inches"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(3, "feet")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Sapphy" },
  15717. {
  15718. front: {
  15719. height: math.unit(15, "feet"),
  15720. weight: math.unit(3280, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/sapphy/front.svg",
  15724. extra: 671 / 577,
  15725. bottom: 0.085
  15726. }
  15727. },
  15728. back: {
  15729. height: math.unit(15, "feet"),
  15730. weight: math.unit(3280, "lb"),
  15731. name: "Back",
  15732. image: {
  15733. source: "./media/characters/sapphy/back.svg",
  15734. extra: 631 / 607,
  15735. bottom: 0.045
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Normal",
  15742. height: math.unit(15, "feet")
  15743. },
  15744. {
  15745. name: "Casual Macro",
  15746. height: math.unit(120, "feet")
  15747. },
  15748. {
  15749. name: "Macro",
  15750. height: math.unit(2150, "feet"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "Megamacro",
  15755. height: math.unit(8, "miles")
  15756. },
  15757. {
  15758. name: "Galaxy Mom",
  15759. height: math.unit(6, "megalightyears")
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Kiro" },
  15765. {
  15766. front: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(170, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/kiro/front.svg",
  15772. extra: 1064 / 1012,
  15773. bottom: 0.052
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Micro",
  15780. height: math.unit(6, "inches")
  15781. },
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(6, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Macro",
  15789. height: math.unit(72, "feet")
  15790. },
  15791. ]
  15792. ))
  15793. characterMakers.push(() => makeCharacter(
  15794. { name: "Irishfox" },
  15795. {
  15796. front: {
  15797. height: math.unit(5 + 9 / 12, "feet"),
  15798. weight: math.unit(175, "lb"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/irishfox/front.svg",
  15802. extra: 1912 / 1680,
  15803. bottom: 0.02
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Nano",
  15810. height: math.unit(1, "mm")
  15811. },
  15812. {
  15813. name: "Micro",
  15814. height: math.unit(2, "inches")
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 9 / 12, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Macro",
  15823. height: math.unit(45, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Aronai Sieyes" },
  15829. {
  15830. front: {
  15831. height: math.unit(6 + 1 / 12, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/aronai-sieyes/front.svg",
  15836. extra: 1556 / 1480,
  15837. bottom: 0.015
  15838. }
  15839. },
  15840. side: {
  15841. height: math.unit(6 + 1 / 12, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Side",
  15844. image: {
  15845. source: "./media/characters/aronai-sieyes/side.svg",
  15846. extra: 1433 / 1390,
  15847. bottom: 0.0393
  15848. }
  15849. },
  15850. back: {
  15851. height: math.unit(6 + 1 / 12, "feet"),
  15852. weight: math.unit(150, "lb"),
  15853. name: "Back",
  15854. image: {
  15855. source: "./media/characters/aronai-sieyes/back.svg",
  15856. extra: 1544 / 1494,
  15857. bottom: 0.02
  15858. }
  15859. },
  15860. frontClothed: {
  15861. height: math.unit(6 + 1 / 12, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Front (Clothed)",
  15864. image: {
  15865. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15866. extra: 1582 / 1527
  15867. }
  15868. },
  15869. feral: {
  15870. height: math.unit(18, "feet"),
  15871. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15872. name: "Feral",
  15873. image: {
  15874. source: "./media/characters/aronai-sieyes/feral.svg",
  15875. extra: 1530 / 1240,
  15876. bottom: 0.035
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Micro",
  15883. height: math.unit(2, "inches")
  15884. },
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(6 + 1 / 12, "feet"),
  15888. default: true
  15889. }
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Xuna" },
  15894. {
  15895. front: {
  15896. height: math.unit(12, "feet"),
  15897. weight: math.unit(410, "kg"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/xuna/front.svg",
  15901. extra: 2184 / 1980
  15902. }
  15903. },
  15904. side: {
  15905. height: math.unit(12, "feet"),
  15906. weight: math.unit(410, "kg"),
  15907. name: "Side",
  15908. image: {
  15909. source: "./media/characters/xuna/side.svg",
  15910. extra: 2184 / 1980
  15911. }
  15912. },
  15913. back: {
  15914. height: math.unit(12, "feet"),
  15915. weight: math.unit(410, "kg"),
  15916. name: "Back",
  15917. image: {
  15918. source: "./media/characters/xuna/back.svg",
  15919. extra: 2184 / 1980
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Nano glow",
  15926. height: math.unit(10, "nm")
  15927. },
  15928. {
  15929. name: "Micro floof",
  15930. height: math.unit(0.3, "m")
  15931. },
  15932. {
  15933. name: "Huggable softy boi",
  15934. height: math.unit(3.6576, "m"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Admirable floof",
  15939. height: math.unit(80, "meters")
  15940. },
  15941. {
  15942. name: "Gentle macro",
  15943. height: math.unit(300, "meters")
  15944. },
  15945. {
  15946. name: "Very careful floof",
  15947. height: math.unit(3200, "meters")
  15948. },
  15949. {
  15950. name: "The mega floof",
  15951. height: math.unit(36000, "meters")
  15952. },
  15953. {
  15954. name: "Giga-fur-Wicker",
  15955. height: math.unit(4800000, "meters")
  15956. },
  15957. {
  15958. name: "Licky world",
  15959. height: math.unit(20000000, "meters")
  15960. },
  15961. {
  15962. name: "Floofy cyan sun",
  15963. height: math.unit(1500000000, "meters")
  15964. },
  15965. {
  15966. name: "Milky Wicker",
  15967. height: math.unit(1000000000000000000000, "meters")
  15968. },
  15969. {
  15970. name: "The observing Wicker",
  15971. height: math.unit(999999999999999999999999999, "meters")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Arokha Sieyes" },
  15977. {
  15978. front: {
  15979. height: math.unit(5 + 9 / 12, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/arokha-sieyes/front.svg",
  15984. extra: 1425 / 1284,
  15985. bottom: 0.05
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(5 + 9 / 12, "feet")
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(30, "meters"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Arokh Sieyes" },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(180, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/arokh-sieyes/front.svg",
  16010. extra: 1830 / 1769,
  16011. bottom: 0.01
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(6, "feet")
  16019. },
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(30, "meters"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Goldeneye" },
  16029. {
  16030. side: {
  16031. height: math.unit(13 + 1 / 12, "feet"),
  16032. weight: math.unit(8.5, "tonnes"),
  16033. name: "Side",
  16034. image: {
  16035. source: "./media/characters/goldeneye/side.svg",
  16036. extra: 1182 / 778,
  16037. bottom: 0.067
  16038. }
  16039. },
  16040. paw: {
  16041. height: math.unit(3.4, "feet"),
  16042. name: "Paw",
  16043. image: {
  16044. source: "./media/characters/goldeneye/paw.svg"
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(13 + 1 / 12, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Leonardo Lycheborne" },
  16058. {
  16059. front: {
  16060. height: math.unit(6 + 1 / 12, "feet"),
  16061. weight: math.unit(210, "lb"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/leonardo-lycheborne/front.svg",
  16065. extra: 390 / 365,
  16066. bottom: 0.032
  16067. }
  16068. },
  16069. side: {
  16070. height: math.unit(6 + 1 / 12, "feet"),
  16071. weight: math.unit(210, "lb"),
  16072. name: "Side",
  16073. image: {
  16074. source: "./media/characters/leonardo-lycheborne/side.svg",
  16075. extra: 390 / 365,
  16076. bottom: 0.005
  16077. }
  16078. },
  16079. back: {
  16080. height: math.unit(6 + 1 / 12, "feet"),
  16081. weight: math.unit(210, "lb"),
  16082. name: "Back",
  16083. image: {
  16084. source: "./media/characters/leonardo-lycheborne/back.svg",
  16085. extra: 392 / 366,
  16086. bottom: 0.01
  16087. }
  16088. },
  16089. hand: {
  16090. height: math.unit(1.08, "feet"),
  16091. name: "Hand",
  16092. image: {
  16093. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16094. }
  16095. },
  16096. foot: {
  16097. height: math.unit(1.32, "feet"),
  16098. name: "Foot",
  16099. image: {
  16100. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16101. }
  16102. },
  16103. were: {
  16104. height: math.unit(20, "feet"),
  16105. weight: math.unit(7800, "lb"),
  16106. name: "Were",
  16107. image: {
  16108. source: "./media/characters/leonardo-lycheborne/were.svg",
  16109. extra: 308 / 294,
  16110. bottom: 0.048
  16111. }
  16112. },
  16113. feral: {
  16114. height: math.unit(7.5, "feet"),
  16115. weight: math.unit(600, "lb"),
  16116. name: "Feral",
  16117. image: {
  16118. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16119. extra: 210 / 186,
  16120. bottom: 0.108
  16121. }
  16122. },
  16123. taur: {
  16124. height: math.unit(11, "feet"),
  16125. weight: math.unit(3300, "lb"),
  16126. name: "Taur",
  16127. image: {
  16128. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16129. extra: 320 / 303,
  16130. bottom: 0.025
  16131. }
  16132. },
  16133. barghest: {
  16134. height: math.unit(11, "feet"),
  16135. weight: math.unit(1300, "lb"),
  16136. name: "Barghest",
  16137. image: {
  16138. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16139. extra: 323 / 302,
  16140. bottom: 0.027
  16141. }
  16142. },
  16143. dick: {
  16144. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16145. name: "Dick",
  16146. image: {
  16147. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16148. }
  16149. },
  16150. dickWere: {
  16151. height: math.unit((20) / 3.8, "feet"),
  16152. name: "Dick (Were)",
  16153. image: {
  16154. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(6 + 1 / 12, "feet"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Jet" },
  16168. {
  16169. front: {
  16170. height: math.unit(10, "feet"),
  16171. weight: math.unit(350, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/jet/front.svg",
  16175. extra: 2050 / 1980,
  16176. bottom: 0.013
  16177. }
  16178. },
  16179. back: {
  16180. height: math.unit(10, "feet"),
  16181. weight: math.unit(350, "lb"),
  16182. name: "Back",
  16183. image: {
  16184. source: "./media/characters/jet/back.svg",
  16185. extra: 2050 / 1980,
  16186. bottom: 0.013
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(6, "inches")
  16194. },
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(10, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Macro",
  16202. height: math.unit(100, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Tanarath" },
  16208. {
  16209. front: {
  16210. height: math.unit(15, "feet"),
  16211. weight: math.unit(2800, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/tanarath/front.svg",
  16215. extra: 2392 / 2220,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(15, "feet"),
  16221. weight: math.unit(2800, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/tanarath/back.svg",
  16225. extra: 2392 / 2220,
  16226. bottom: 0.03
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(15, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Patty CattyBatty" },
  16240. {
  16241. front: {
  16242. height: math.unit(7 + 1 / 12, "feet"),
  16243. weight: math.unit(175, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/patty-cattybatty/front.svg",
  16247. extra: 908 / 874,
  16248. bottom: 0.025
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Micro",
  16255. height: math.unit(1, "inch")
  16256. },
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(7 + 1 / 12, "feet")
  16260. },
  16261. {
  16262. name: "Mini Macro",
  16263. height: math.unit(155, "feet")
  16264. },
  16265. {
  16266. name: "Macro",
  16267. height: math.unit(1077, "feet")
  16268. },
  16269. {
  16270. name: "Mega Macro",
  16271. height: math.unit(47650, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Giga Macro",
  16276. height: math.unit(440, "miles")
  16277. },
  16278. {
  16279. name: "Tera Macro",
  16280. height: math.unit(8700, "miles")
  16281. },
  16282. {
  16283. name: "Planetary Macro",
  16284. height: math.unit(32700, "miles")
  16285. },
  16286. {
  16287. name: "Solar Macro",
  16288. height: math.unit(550000, "miles")
  16289. },
  16290. {
  16291. name: "Celestial Macro",
  16292. height: math.unit(2.5, "AU")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Cappu" },
  16298. {
  16299. front: {
  16300. height: math.unit(4 + 5 / 12, "feet"),
  16301. weight: math.unit(90, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/cappu/front.svg",
  16305. extra: 1247 / 1152,
  16306. bottom: 0.012
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(4 + 5 / 12, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Sebi" },
  16320. {
  16321. frontDressed: {
  16322. height: math.unit(70, "cm"),
  16323. weight: math.unit(6, "kg"),
  16324. name: "Front (Dressed)",
  16325. image: {
  16326. source: "./media/characters/sebi/front-dressed.svg",
  16327. extra: 713.5 / 686.5,
  16328. bottom: 0.003
  16329. }
  16330. },
  16331. front: {
  16332. height: math.unit(70, "cm"),
  16333. weight: math.unit(5, "kg"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/sebi/front.svg",
  16337. extra: 713.5 / 686.5,
  16338. bottom: 0.003
  16339. }
  16340. }
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(70, "cm"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Macro",
  16350. height: math.unit(8, "meters")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Typhek" },
  16356. {
  16357. front: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/typhek/front.svg",
  16363. extra: 1948 / 1929,
  16364. bottom: 0.025
  16365. }
  16366. },
  16367. side: {
  16368. height: math.unit(6, "feet"),
  16369. weight: math.unit(150, "lb"),
  16370. name: "Side",
  16371. image: {
  16372. source: "./media/characters/typhek/side.svg",
  16373. extra: 2034 / 2010,
  16374. bottom: 0.003
  16375. }
  16376. },
  16377. back: {
  16378. height: math.unit(6, "feet"),
  16379. weight: math.unit(150, "lb"),
  16380. name: "Back",
  16381. image: {
  16382. source: "./media/characters/typhek/back.svg",
  16383. extra: 2005 / 1978,
  16384. bottom: 0.004
  16385. }
  16386. },
  16387. palm: {
  16388. height: math.unit(1.2, "feet"),
  16389. name: "Palm",
  16390. image: {
  16391. source: "./media/characters/typhek/palm.svg"
  16392. }
  16393. },
  16394. fist: {
  16395. height: math.unit(1.1, "feet"),
  16396. name: "Fist",
  16397. image: {
  16398. source: "./media/characters/typhek/fist.svg"
  16399. }
  16400. },
  16401. foot: {
  16402. height: math.unit(1.57, "feet"),
  16403. name: "Foot",
  16404. image: {
  16405. source: "./media/characters/typhek/foot.svg"
  16406. }
  16407. },
  16408. sole: {
  16409. height: math.unit(2.05, "feet"),
  16410. name: "Sole",
  16411. image: {
  16412. source: "./media/characters/typhek/sole.svg"
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Macro",
  16419. height: math.unit(40, "stories"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Megamacro",
  16424. height: math.unit(1, "mile")
  16425. },
  16426. {
  16427. name: "Gigamacro",
  16428. height: math.unit(4000, "solarradii")
  16429. },
  16430. {
  16431. name: "Universal",
  16432. height: math.unit(1.1, "universes")
  16433. }
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Kassy" },
  16438. {
  16439. side: {
  16440. height: math.unit(5 + 7 / 12, "feet"),
  16441. weight: math.unit(150, "lb"),
  16442. name: "Side",
  16443. image: {
  16444. source: "./media/characters/kassy/side.svg",
  16445. extra: 1280 / 1225,
  16446. bottom: 0.002
  16447. }
  16448. },
  16449. front: {
  16450. height: math.unit(5 + 7 / 12, "feet"),
  16451. weight: math.unit(150, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/kassy/front.svg",
  16455. extra: 1280 / 1225,
  16456. bottom: 0.025
  16457. }
  16458. },
  16459. back: {
  16460. height: math.unit(5 + 7 / 12, "feet"),
  16461. weight: math.unit(150, "lb"),
  16462. name: "Back",
  16463. image: {
  16464. source: "./media/characters/kassy/back.svg",
  16465. extra: 1280 / 1225,
  16466. bottom: 0.002
  16467. }
  16468. },
  16469. foot: {
  16470. height: math.unit(1.266, "feet"),
  16471. name: "Foot",
  16472. image: {
  16473. source: "./media/characters/kassy/foot.svg"
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(5 + 7 / 12, "feet")
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(137, "feet"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Megamacro",
  16489. height: math.unit(1, "mile")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Neil" },
  16495. {
  16496. front: {
  16497. height: math.unit(6 + 1 / 12, "feet"),
  16498. weight: math.unit(200, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/neil/front.svg",
  16502. extra: 1326 / 1250,
  16503. bottom: 0.023
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Normal",
  16510. height: math.unit(6 + 1 / 12, "feet"),
  16511. default: true
  16512. },
  16513. {
  16514. name: "Macro",
  16515. height: math.unit(200, "feet")
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Atticus" },
  16521. {
  16522. front: {
  16523. height: math.unit(5 + 9 / 12, "feet"),
  16524. weight: math.unit(190, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/atticus/front.svg",
  16528. extra: 2934 / 2785,
  16529. bottom: 0.025
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(5 + 9 / 12, "feet"),
  16537. default: true
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(180, "feet")
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Milo" },
  16547. {
  16548. side: {
  16549. height: math.unit(9, "feet"),
  16550. weight: math.unit(650, "lb"),
  16551. name: "Side",
  16552. image: {
  16553. source: "./media/characters/milo/side.svg",
  16554. extra: 2644 / 2310,
  16555. bottom: 0.032
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(9, "feet"),
  16563. default: true
  16564. },
  16565. {
  16566. name: "Macro",
  16567. height: math.unit(300, "feet")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Ijzer" },
  16573. {
  16574. side: {
  16575. height: math.unit(8, "meters"),
  16576. weight: math.unit(90000, "kg"),
  16577. name: "Side",
  16578. image: {
  16579. source: "./media/characters/ijzer/side.svg",
  16580. extra: 2756 / 1600,
  16581. bottom: 0.01
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Small",
  16588. height: math.unit(3, "meters")
  16589. },
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(8, "meters"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Normal+",
  16597. height: math.unit(10, "meters")
  16598. },
  16599. {
  16600. name: "Bigger",
  16601. height: math.unit(24, "meters")
  16602. },
  16603. {
  16604. name: "Huge",
  16605. height: math.unit(80, "meters")
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Luca Cervicum" },
  16611. {
  16612. front: {
  16613. height: math.unit(6 + 2 / 12, "feet"),
  16614. weight: math.unit(153, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/luca-cervicum/front.svg",
  16618. extra: 370 / 327,
  16619. bottom: 0.015
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. weight: math.unit(153, "lb"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/luca-cervicum/back.svg",
  16628. extra: 367 / 333,
  16629. bottom: 0.005
  16630. }
  16631. },
  16632. frontGear: {
  16633. height: math.unit(6 + 2 / 12, "feet"),
  16634. weight: math.unit(173, "lb"),
  16635. name: "Front (Gear)",
  16636. image: {
  16637. source: "./media/characters/luca-cervicum/front-gear.svg",
  16638. extra: 377 / 333,
  16639. bottom: 0.006
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(6 + 2 / 12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Oliver" },
  16653. {
  16654. front: {
  16655. height: math.unit(6 + 1 / 12, "feet"),
  16656. weight: math.unit(304, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/oliver/front.svg",
  16660. extra: 157 / 143,
  16661. bottom: 0.08
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(6 + 1 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Shane" },
  16675. {
  16676. front: {
  16677. height: math.unit(5 + 7 / 12, "feet"),
  16678. weight: math.unit(140, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/shane/front.svg",
  16682. extra: 304 / 289,
  16683. bottom: 0.005
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(5 + 7 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Shin" },
  16697. {
  16698. front: {
  16699. height: math.unit(5 + 9 / 12, "feet"),
  16700. weight: math.unit(178, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/shin/front.svg",
  16704. extra: 159 / 151,
  16705. bottom: 0.015
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(5 + 9 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Xerxes" },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 10 / 12, "feet"),
  16722. weight: math.unit(168, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/xerxes/front.svg",
  16726. extra: 282 / 260,
  16727. bottom: 0.045
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 10 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Chaska" },
  16741. {
  16742. front: {
  16743. height: math.unit(6 + 7 / 12, "feet"),
  16744. weight: math.unit(208, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/chaska/front.svg",
  16748. extra: 332 / 319,
  16749. bottom: 0.015
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(6 + 7 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Enuk" },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 8 / 12, "feet"),
  16766. weight: math.unit(208, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/enuk/front.svg",
  16770. extra: 437 / 406,
  16771. bottom: 0.02
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5 + 8 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Bruun" },
  16785. {
  16786. front: {
  16787. height: math.unit(5 + 10 / 12, "feet"),
  16788. weight: math.unit(252, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/bruun/front.svg",
  16792. extra: 197 / 187,
  16793. bottom: 0.012
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(5 + 10 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Alexeev" },
  16807. {
  16808. front: {
  16809. height: math.unit(6 + 10 / 12, "feet"),
  16810. weight: math.unit(255, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/alexeev/front.svg",
  16814. extra: 213 / 200,
  16815. bottom: 0.05
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(6 + 10 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Evelyn" },
  16829. {
  16830. front: {
  16831. height: math.unit(2 + 8 / 12, "feet"),
  16832. weight: math.unit(22, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/evelyn/front.svg",
  16836. extra: 208 / 180
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(2 + 8 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Inca" },
  16850. {
  16851. front: {
  16852. height: math.unit(5 + 9 / 12, "feet"),
  16853. weight: math.unit(139, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/inca/front.svg",
  16857. extra: 294 / 291,
  16858. bottom: 0.03
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(5 + 9 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Magdalene" },
  16872. {
  16873. front: {
  16874. height: math.unit(5 + 1 / 12, "feet"),
  16875. weight: math.unit(84, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/magdalene/front.svg",
  16879. extra: 293 / 273
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(5 + 1 / 12, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Mera" },
  16893. {
  16894. front: {
  16895. height: math.unit(6 + 3 / 12, "feet"),
  16896. weight: math.unit(185, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/mera/front.svg",
  16900. extra: 291 / 277,
  16901. bottom: 0.03
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(6 + 3 / 12, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Ceres" },
  16915. {
  16916. front: {
  16917. height: math.unit(6 + 7 / 12, "feet"),
  16918. weight: math.unit(160, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/ceres/front.svg",
  16922. extra: 1023 / 950,
  16923. bottom: 0.027
  16924. }
  16925. },
  16926. back: {
  16927. height: math.unit(6 + 7 / 12, "feet"),
  16928. weight: math.unit(160, "lb"),
  16929. name: "Back",
  16930. image: {
  16931. source: "./media/characters/ceres/back.svg",
  16932. extra: 1023 / 950
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(6 + 7 / 12, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Kris" },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 10 / 12, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/kris/front.svg",
  16953. extra: 885 / 803,
  16954. bottom: 0.03
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(5 + 10 / 12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Taluthus" },
  16968. {
  16969. front: {
  16970. height: math.unit(7, "feet"),
  16971. weight: math.unit(120, "kg"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/taluthus/front.svg",
  16975. extra: 903 / 833,
  16976. bottom: 0.015
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(7, "feet"),
  16984. default: true
  16985. },
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(300, "feet")
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Dawn" },
  16994. {
  16995. front: {
  16996. height: math.unit(5 + 9 / 12, "feet"),
  16997. weight: math.unit(145, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/dawn/front.svg",
  17001. extra: 2094 / 2016,
  17002. bottom: 0.025
  17003. }
  17004. },
  17005. back: {
  17006. height: math.unit(5 + 9 / 12, "feet"),
  17007. weight: math.unit(160, "lb"),
  17008. name: "Back",
  17009. image: {
  17010. source: "./media/characters/dawn/back.svg",
  17011. extra: 2112 / 2080,
  17012. bottom: 0.005
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(6 + 7 / 12, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Arador" },
  17026. {
  17027. anthro: {
  17028. height: math.unit(8 + 3 / 12, "feet"),
  17029. weight: math.unit(450, "lb"),
  17030. name: "Anthro",
  17031. image: {
  17032. source: "./media/characters/arador/anthro.svg",
  17033. extra: 1835 / 1718,
  17034. bottom: 0.025
  17035. }
  17036. },
  17037. feral: {
  17038. height: math.unit(4, "feet"),
  17039. weight: math.unit(200, "lb"),
  17040. name: "Feral",
  17041. image: {
  17042. source: "./media/characters/arador/feral.svg",
  17043. extra: 1683 / 1514,
  17044. bottom: 0.07
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(8 + 3 / 12, "feet")
  17052. },
  17053. {
  17054. name: "Macro",
  17055. height: math.unit(82.5, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Dharsi" },
  17062. {
  17063. front: {
  17064. height: math.unit(5 + 10 / 12, "feet"),
  17065. weight: math.unit(125, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/dharsi/front.svg",
  17069. extra: 716 / 630,
  17070. bottom: 0.035
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Nano",
  17077. height: math.unit(100, "nm")
  17078. },
  17079. {
  17080. name: "Micro",
  17081. height: math.unit(2, "inches")
  17082. },
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(5 + 10 / 12, "feet"),
  17086. default: true
  17087. },
  17088. {
  17089. name: "Macro",
  17090. height: math.unit(1000, "feet")
  17091. },
  17092. {
  17093. name: "Megamacro",
  17094. height: math.unit(10, "miles")
  17095. },
  17096. {
  17097. name: "Gigamacro",
  17098. height: math.unit(3000, "miles")
  17099. },
  17100. {
  17101. name: "Teramacro",
  17102. height: math.unit(500000, "miles")
  17103. },
  17104. {
  17105. name: "Teramacro+",
  17106. height: math.unit(30, "galaxies")
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Deathy" },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/deathy/front.svg",
  17119. extra: 1552 / 1463,
  17120. bottom: 0.025
  17121. }
  17122. },
  17123. side: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(150, "lb"),
  17126. name: "Side",
  17127. image: {
  17128. source: "./media/characters/deathy/side.svg",
  17129. extra: 1604 / 1455,
  17130. bottom: 0.025
  17131. }
  17132. },
  17133. back: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Back",
  17137. image: {
  17138. source: "./media/characters/deathy/back.svg",
  17139. extra: 1580 / 1463,
  17140. bottom: 0.005
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Micro",
  17147. height: math.unit(5, "millimeters")
  17148. },
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(6 + 5 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Juniper" },
  17158. {
  17159. front: {
  17160. height: math.unit(16, "feet"),
  17161. weight: math.unit(4000, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/juniper/front.svg",
  17165. bottom: 0.04
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(16, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Hipster" },
  17179. {
  17180. front: {
  17181. height: math.unit(6, "feet"),
  17182. weight: math.unit(150, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/hipster/front.svg",
  17186. extra: 1312 / 1209,
  17187. bottom: 0.025
  17188. }
  17189. },
  17190. back: {
  17191. height: math.unit(6, "feet"),
  17192. weight: math.unit(150, "lb"),
  17193. name: "Back",
  17194. image: {
  17195. source: "./media/characters/hipster/back.svg",
  17196. extra: 1281 / 1196,
  17197. bottom: 0.01
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Micro",
  17204. height: math.unit(1, "mm")
  17205. },
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(4, "inches"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(500, "feet")
  17214. },
  17215. {
  17216. name: "Megamacro",
  17217. height: math.unit(1000, "miles")
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Tendirmuldr" },
  17223. {
  17224. front: {
  17225. height: math.unit(6, "feet"),
  17226. weight: math.unit(150, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/tendirmuldr/front.svg",
  17230. extra: 1878 / 1772,
  17231. bottom: 0.015
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Megamacro",
  17238. height: math.unit(1500, "miles"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Mort" },
  17245. {
  17246. front: {
  17247. height: math.unit(14, "feet"),
  17248. weight: math.unit(12000, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/mort/front.svg",
  17252. extra: 365 / 318,
  17253. bottom: 0.01
  17254. }
  17255. },
  17256. side: {
  17257. height: math.unit(14, "feet"),
  17258. weight: math.unit(12000, "lb"),
  17259. name: "Side",
  17260. image: {
  17261. source: "./media/characters/mort/side.svg",
  17262. extra: 365 / 318,
  17263. bottom: 0.052
  17264. },
  17265. default: true
  17266. },
  17267. back: {
  17268. height: math.unit(14, "feet"),
  17269. weight: math.unit(12000, "lb"),
  17270. name: "Back",
  17271. image: {
  17272. source: "./media/characters/mort/back.svg",
  17273. extra: 371 / 332,
  17274. bottom: 0.18
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(14, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Lycoa" },
  17288. {
  17289. front: {
  17290. height: math.unit(8, "feet"),
  17291. weight: math.unit(1, "ton"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/lycoa/front.svg",
  17295. extra: 1875 / 1789,
  17296. bottom: 0.022
  17297. }
  17298. },
  17299. back: {
  17300. height: math.unit(8, "feet"),
  17301. weight: math.unit(1, "ton"),
  17302. name: "Back",
  17303. image: {
  17304. source: "./media/characters/lycoa/back.svg",
  17305. extra: 1835 / 1781,
  17306. bottom: 0.03
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(8, "feet"),
  17314. default: true
  17315. },
  17316. {
  17317. name: "Macro",
  17318. height: math.unit(30, "feet")
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Naldara" },
  17324. {
  17325. front: {
  17326. height: math.unit(4 + 2 / 12, "feet"),
  17327. weight: math.unit(70, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/naldara/front.svg",
  17331. extra: 841 / 720,
  17332. bottom: 0.04
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(4 + 2 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Briar" },
  17346. {
  17347. front: {
  17348. height: math.unit(13 + 7 / 12, "feet"),
  17349. weight: math.unit(1500, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/briar/front.svg",
  17353. extra: 626 / 596,
  17354. bottom: 0.08
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(13 + 7 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Vanguard" },
  17368. {
  17369. side: {
  17370. height: math.unit(10, "feet"),
  17371. weight: math.unit(500, "lb"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/vanguard/side.svg",
  17375. extra: 502 / 425,
  17376. bottom: 0.087
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(10, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Artemis" },
  17390. {
  17391. front: {
  17392. height: math.unit(7.5, "feet"),
  17393. weight: math.unit(2, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/artemis/front.svg",
  17397. extra: 1192 / 1075,
  17398. bottom: 0.07
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(7.5, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Enlarged",
  17410. height: math.unit(12, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Kira" },
  17416. {
  17417. front: {
  17418. height: math.unit(5 + 3 / 12, "feet"),
  17419. weight: math.unit(160, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/kira/front.svg",
  17423. extra: 906 / 786,
  17424. bottom: 0.01
  17425. }
  17426. },
  17427. back: {
  17428. height: math.unit(5 + 3 / 12, "feet"),
  17429. weight: math.unit(160, "lb"),
  17430. name: "Back",
  17431. image: {
  17432. source: "./media/characters/kira/back.svg",
  17433. extra: 882 / 757,
  17434. bottom: 0.005
  17435. }
  17436. },
  17437. frontDressed: {
  17438. height: math.unit(5 + 3 / 12, "feet"),
  17439. weight: math.unit(160, "lb"),
  17440. name: "Front (Dressed)",
  17441. image: {
  17442. source: "./media/characters/kira/front-dressed.svg",
  17443. extra: 906 / 786,
  17444. bottom: 0.01
  17445. }
  17446. },
  17447. beans: {
  17448. height: math.unit(0.92, "feet"),
  17449. name: "Beans",
  17450. image: {
  17451. source: "./media/characters/kira/beans.svg"
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(5 + 3 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Scramble" },
  17465. {
  17466. front: {
  17467. height: math.unit(5 + 4 / 12, "feet"),
  17468. weight: math.unit(145, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/scramble/front.svg",
  17472. extra: 763 / 727,
  17473. bottom: 0.05
  17474. }
  17475. },
  17476. back: {
  17477. height: math.unit(5 + 4 / 12, "feet"),
  17478. weight: math.unit(145, "lb"),
  17479. name: "Back",
  17480. image: {
  17481. source: "./media/characters/scramble/back.svg",
  17482. extra: 826 / 737,
  17483. bottom: 0.002
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(5 + 4 / 12, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Biscuit" },
  17497. {
  17498. side: {
  17499. height: math.unit(6 + 2 / 12, "feet"),
  17500. weight: math.unit(190, "lb"),
  17501. name: "Side",
  17502. image: {
  17503. source: "./media/characters/biscuit/side.svg",
  17504. extra: 858 / 791,
  17505. bottom: 0.044
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(6 + 2 / 12, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Poffin" },
  17519. {
  17520. front: {
  17521. height: math.unit(5 + 2 / 12, "feet"),
  17522. weight: math.unit(120, "lb"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/poffin/front.svg",
  17526. extra: 786 / 680,
  17527. bottom: 0.005
  17528. }
  17529. },
  17530. },
  17531. [
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(5 + 2 / 12, "feet"),
  17535. default: true
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Dhari" },
  17541. {
  17542. front: {
  17543. height: math.unit(6 + 3 / 12, "feet"),
  17544. weight: math.unit(519, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/dhari/front.svg",
  17548. extra: 1048 / 946,
  17549. bottom: 0.015
  17550. }
  17551. },
  17552. back: {
  17553. height: math.unit(6 + 3 / 12, "feet"),
  17554. weight: math.unit(519, "lb"),
  17555. name: "Back",
  17556. image: {
  17557. source: "./media/characters/dhari/back.svg",
  17558. extra: 1048 / 931,
  17559. bottom: 0.005
  17560. }
  17561. },
  17562. frontDressed: {
  17563. height: math.unit(6 + 3 / 12, "feet"),
  17564. weight: math.unit(519, "lb"),
  17565. name: "Front (Dressed)",
  17566. image: {
  17567. source: "./media/characters/dhari/front-dressed.svg",
  17568. extra: 1713 / 1546,
  17569. bottom: 0.02
  17570. }
  17571. },
  17572. backDressed: {
  17573. height: math.unit(6 + 3 / 12, "feet"),
  17574. weight: math.unit(519, "lb"),
  17575. name: "Back (Dressed)",
  17576. image: {
  17577. source: "./media/characters/dhari/back-dressed.svg",
  17578. extra: 1699 / 1537,
  17579. bottom: 0.01
  17580. }
  17581. },
  17582. maw: {
  17583. height: math.unit(0.95, "feet"),
  17584. name: "Maw",
  17585. image: {
  17586. source: "./media/characters/dhari/maw.svg"
  17587. }
  17588. },
  17589. wereFront: {
  17590. height: math.unit(12 + 8 / 12, "feet"),
  17591. weight: math.unit(4000, "lb"),
  17592. name: "Front (Were)",
  17593. image: {
  17594. source: "./media/characters/dhari/were-front.svg",
  17595. extra: 1065 / 969,
  17596. bottom: 0.015
  17597. }
  17598. },
  17599. wereBack: {
  17600. height: math.unit(12 + 8 / 12, "feet"),
  17601. weight: math.unit(4000, "lb"),
  17602. name: "Back (Were)",
  17603. image: {
  17604. source: "./media/characters/dhari/were-back.svg",
  17605. extra: 1065 / 969,
  17606. bottom: 0.012
  17607. }
  17608. },
  17609. wereMaw: {
  17610. height: math.unit(0.625, "meters"),
  17611. name: "Maw (Were)",
  17612. image: {
  17613. source: "./media/characters/dhari/were-maw.svg"
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(6 + 3 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Rena Dyne" },
  17627. {
  17628. anthro: {
  17629. height: math.unit(5 + 7 / 12, "feet"),
  17630. weight: math.unit(175, "lb"),
  17631. name: "Anthro",
  17632. image: {
  17633. source: "./media/characters/rena-dyne/anthro.svg",
  17634. extra: 1849 / 1785,
  17635. bottom: 0.005
  17636. }
  17637. },
  17638. taur: {
  17639. height: math.unit(15 + 6 / 12, "feet"),
  17640. weight: math.unit(8000, "lb"),
  17641. name: "Taur",
  17642. image: {
  17643. source: "./media/characters/rena-dyne/taur.svg",
  17644. extra: 2315 / 2234,
  17645. bottom: 0.033
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(5 + 7 / 12, "feet"),
  17653. default: true
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Weremeep" },
  17659. {
  17660. front: {
  17661. height: math.unit(8, "feet"),
  17662. weight: math.unit(600, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/weremeep/front.svg",
  17666. extra: 967 / 862,
  17667. bottom: 0.01
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(8, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Lorg",
  17679. height: math.unit(12, "feet")
  17680. },
  17681. {
  17682. name: "Oh Lawd She Comin'",
  17683. height: math.unit(20, "feet")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Reza" },
  17689. {
  17690. front: {
  17691. height: math.unit(4, "feet"),
  17692. weight: math.unit(90, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/reza/front.svg",
  17696. extra: 1183 / 1111,
  17697. bottom: 0.017
  17698. }
  17699. },
  17700. back: {
  17701. height: math.unit(4, "feet"),
  17702. weight: math.unit(90, "lb"),
  17703. name: "Back",
  17704. image: {
  17705. source: "./media/characters/reza/back.svg",
  17706. extra: 1183 / 1111,
  17707. bottom: 0.01
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(4, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Athea" },
  17721. {
  17722. side: {
  17723. height: math.unit(15, "feet"),
  17724. weight: math.unit(14, "tons"),
  17725. name: "Side",
  17726. image: {
  17727. source: "./media/characters/athea/side.svg",
  17728. extra: 960 / 540,
  17729. bottom: 0.003
  17730. }
  17731. },
  17732. sitting: {
  17733. height: math.unit(6 * 2.85, "feet"),
  17734. weight: math.unit(14, "tons"),
  17735. name: "Sitting",
  17736. image: {
  17737. source: "./media/characters/athea/sitting.svg",
  17738. extra: 621 / 581,
  17739. bottom: 0.075
  17740. }
  17741. },
  17742. maw: {
  17743. height: math.unit(7.59498031496063, "feet"),
  17744. name: "Maw",
  17745. image: {
  17746. source: "./media/characters/athea/maw.svg"
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Lap Cat",
  17753. height: math.unit(2.5, "feet")
  17754. },
  17755. {
  17756. name: "Minimacro",
  17757. height: math.unit(15, "feet"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Macro",
  17762. height: math.unit(120, "feet")
  17763. },
  17764. {
  17765. name: "Macro+",
  17766. height: math.unit(640, "feet")
  17767. },
  17768. {
  17769. name: "Colossus",
  17770. height: math.unit(2.2, "miles")
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Seroko" },
  17776. {
  17777. front: {
  17778. height: math.unit(8 + 8 / 12, "feet"),
  17779. weight: math.unit(130, "kg"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/seroko/front.svg",
  17783. extra: 1385 / 1280,
  17784. bottom: 0.025
  17785. }
  17786. },
  17787. back: {
  17788. height: math.unit(8 + 8 / 12, "feet"),
  17789. weight: math.unit(130, "kg"),
  17790. name: "Back",
  17791. image: {
  17792. source: "./media/characters/seroko/back.svg",
  17793. extra: 1369 / 1238,
  17794. bottom: 0.018
  17795. }
  17796. },
  17797. frontDressed: {
  17798. height: math.unit(8 + 8 / 12, "feet"),
  17799. weight: math.unit(130, "kg"),
  17800. name: "Front (Dressed)",
  17801. image: {
  17802. source: "./media/characters/seroko/front-dressed.svg",
  17803. extra: 1366 / 1275,
  17804. bottom: 0.03
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(8 + 8 / 12, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Quatzi" },
  17818. {
  17819. front: {
  17820. height: math.unit(5.5, "feet"),
  17821. weight: math.unit(160, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/quatzi/front.svg",
  17825. extra: 2346 / 2242,
  17826. bottom: 0.015
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(5.5, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Big",
  17838. height: math.unit(7.7, "feet")
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Sen" },
  17844. {
  17845. front: {
  17846. height: math.unit(5 + 11 / 12, "feet"),
  17847. weight: math.unit(180, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/sen/front.svg",
  17851. extra: 1321 / 1254,
  17852. bottom: 0.015
  17853. }
  17854. },
  17855. side: {
  17856. height: math.unit(5 + 11 / 12, "feet"),
  17857. weight: math.unit(180, "lb"),
  17858. name: "Side",
  17859. image: {
  17860. source: "./media/characters/sen/side.svg",
  17861. extra: 1321 / 1254,
  17862. bottom: 0.007
  17863. }
  17864. },
  17865. back: {
  17866. height: math.unit(5 + 11 / 12, "feet"),
  17867. weight: math.unit(180, "lb"),
  17868. name: "Back",
  17869. image: {
  17870. source: "./media/characters/sen/back.svg",
  17871. extra: 1321 / 1254
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(5 + 11 / 12, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Fruity" },
  17885. {
  17886. front: {
  17887. height: math.unit(166.6, "cm"),
  17888. weight: math.unit(66.6, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/fruity/front.svg",
  17892. extra: 1510 / 1386,
  17893. bottom: 0.04
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(166.6, "cm"),
  17898. weight: math.unit(66.6, "lb"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/fruity/back.svg",
  17902. extra: 1563 / 1435,
  17903. bottom: 0.005
  17904. }
  17905. },
  17906. },
  17907. [
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(166.6, "cm"),
  17911. default: true
  17912. },
  17913. {
  17914. name: "Demonic",
  17915. height: math.unit(166.6, "feet")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Zost" },
  17921. {
  17922. side: {
  17923. height: math.unit(10, "feet"),
  17924. weight: math.unit(500, "lb"),
  17925. name: "Side",
  17926. image: {
  17927. source: "./media/characters/zost/side.svg",
  17928. extra: 966 / 880,
  17929. bottom: 0.075
  17930. }
  17931. },
  17932. mawFront: {
  17933. height: math.unit(1.08, "meters"),
  17934. name: "Maw (Front)",
  17935. image: {
  17936. source: "./media/characters/zost/maw-front.svg"
  17937. }
  17938. },
  17939. mawSide: {
  17940. height: math.unit(2.66, "feet"),
  17941. name: "Maw (Side)",
  17942. image: {
  17943. source: "./media/characters/zost/maw-side.svg"
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(10, "feet"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Luci" },
  17957. {
  17958. front: {
  17959. height: math.unit(5 + 4 / 12, "feet"),
  17960. weight: math.unit(120, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/luci/front.svg",
  17964. extra: 1985 / 1884,
  17965. bottom: 0.04
  17966. }
  17967. },
  17968. back: {
  17969. height: math.unit(5 + 4 / 12, "feet"),
  17970. weight: math.unit(120, "lb"),
  17971. name: "Back",
  17972. image: {
  17973. source: "./media/characters/luci/back.svg",
  17974. extra: 1892 / 1791,
  17975. bottom: 0.002
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(5 + 4 / 12, "feet"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "2th" },
  17989. {
  17990. front: {
  17991. height: math.unit(1500, "feet"),
  17992. weight: math.unit(3.8e6, "tons"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/2th/front.svg",
  17996. extra: 3489 / 3350,
  17997. bottom: 0.1
  17998. }
  17999. },
  18000. foot: {
  18001. height: math.unit(461, "feet"),
  18002. name: "Foot",
  18003. image: {
  18004. source: "./media/characters/2th/foot.svg"
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "\"Micro\"",
  18011. height: math.unit(15 + 7 / 12, "feet")
  18012. },
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(1500, "feet"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Macro",
  18020. height: math.unit(5000, "feet")
  18021. },
  18022. {
  18023. name: "Megamacro",
  18024. height: math.unit(15, "miles")
  18025. },
  18026. {
  18027. name: "Gigamacro",
  18028. height: math.unit(4000, "miles")
  18029. },
  18030. {
  18031. name: "Galactic",
  18032. height: math.unit(50, "AU")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Amethyst" },
  18038. {
  18039. front: {
  18040. height: math.unit(5 + 6 / 12, "feet"),
  18041. weight: math.unit(220, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/amethyst/front.svg",
  18045. extra: 2078 / 2040,
  18046. bottom: 0.045
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(5 + 6 / 12, "feet"),
  18051. weight: math.unit(220, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/amethyst/back.svg",
  18055. extra: 2021 / 1989,
  18056. bottom: 0.02
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(5 + 6 / 12, "feet"),
  18064. default: true
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Yumi Akiyama" },
  18070. {
  18071. front: {
  18072. height: math.unit(4 + 11 / 12, "feet"),
  18073. weight: math.unit(120, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/yumi-akiyama/front.svg",
  18077. extra: 1327 / 1235,
  18078. bottom: 0.02
  18079. }
  18080. },
  18081. back: {
  18082. height: math.unit(4 + 11 / 12, "feet"),
  18083. weight: math.unit(120, "lb"),
  18084. name: "Back",
  18085. image: {
  18086. source: "./media/characters/yumi-akiyama/back.svg",
  18087. extra: 1287 / 1245,
  18088. bottom: 0.002
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Galactic",
  18095. height: math.unit(50, "galaxies"),
  18096. default: true
  18097. },
  18098. {
  18099. name: "Universal",
  18100. height: math.unit(100, "universes")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Rifter Yrmori" },
  18106. {
  18107. front: {
  18108. height: math.unit(8, "feet"),
  18109. weight: math.unit(500, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/rifter-yrmori/front.svg",
  18113. extra: 1180 / 1125,
  18114. bottom: 0.02
  18115. }
  18116. },
  18117. back: {
  18118. height: math.unit(8, "feet"),
  18119. weight: math.unit(500, "lb"),
  18120. name: "Back",
  18121. image: {
  18122. source: "./media/characters/rifter-yrmori/back.svg",
  18123. extra: 1190 / 1145,
  18124. bottom: 0.001
  18125. }
  18126. },
  18127. wings: {
  18128. height: math.unit(7.75, "feet"),
  18129. weight: math.unit(500, "lb"),
  18130. name: "Wings",
  18131. image: {
  18132. source: "./media/characters/rifter-yrmori/wings.svg",
  18133. extra: 1357 / 1285
  18134. }
  18135. },
  18136. maw: {
  18137. height: math.unit(0.8, "feet"),
  18138. name: "Maw",
  18139. image: {
  18140. source: "./media/characters/rifter-yrmori/maw.svg"
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(8, "feet"),
  18148. default: true
  18149. },
  18150. {
  18151. name: "Macro",
  18152. height: math.unit(42, "meters")
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Tahajin" },
  18158. {
  18159. were: {
  18160. height: math.unit(25 + 6 / 12, "feet"),
  18161. weight: math.unit(10000, "lb"),
  18162. name: "Were",
  18163. image: {
  18164. source: "./media/characters/tahajin/were.svg",
  18165. extra: 801 / 770,
  18166. bottom: 0.042
  18167. }
  18168. },
  18169. aquatic: {
  18170. height: math.unit(6 + 4 / 12, "feet"),
  18171. weight: math.unit(160, "lb"),
  18172. name: "Aquatic",
  18173. image: {
  18174. source: "./media/characters/tahajin/aquatic.svg",
  18175. extra: 572 / 542,
  18176. bottom: 0.04
  18177. }
  18178. },
  18179. chow: {
  18180. height: math.unit(8 + 11 / 12, "feet"),
  18181. weight: math.unit(450, "lb"),
  18182. name: "Chow",
  18183. image: {
  18184. source: "./media/characters/tahajin/chow.svg",
  18185. extra: 660 / 640,
  18186. bottom: 0.015
  18187. }
  18188. },
  18189. demiNaga: {
  18190. height: math.unit(6 + 8 / 12, "feet"),
  18191. weight: math.unit(300, "lb"),
  18192. name: "Demi Naga",
  18193. image: {
  18194. source: "./media/characters/tahajin/demi-naga.svg",
  18195. extra: 643 / 615,
  18196. bottom: 0.1
  18197. }
  18198. },
  18199. data: {
  18200. height: math.unit(5, "inches"),
  18201. weight: math.unit(0.1, "lb"),
  18202. name: "Data",
  18203. image: {
  18204. source: "./media/characters/tahajin/data.svg"
  18205. }
  18206. },
  18207. fluu: {
  18208. height: math.unit(5 + 7 / 12, "feet"),
  18209. weight: math.unit(140, "lb"),
  18210. name: "Fluu",
  18211. image: {
  18212. source: "./media/characters/tahajin/fluu.svg",
  18213. extra: 628 / 592,
  18214. bottom: 0.02
  18215. }
  18216. },
  18217. starWarrior: {
  18218. height: math.unit(4 + 5 / 12, "feet"),
  18219. weight: math.unit(50, "lb"),
  18220. name: "Star Warrior",
  18221. image: {
  18222. source: "./media/characters/tahajin/star-warrior.svg"
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(25 + 6 / 12, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Gabira" },
  18236. {
  18237. front: {
  18238. height: math.unit(8, "feet"),
  18239. weight: math.unit(350, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/gabira/front.svg",
  18243. extra: 608 / 580,
  18244. bottom: 0.03
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(8, "feet"),
  18249. weight: math.unit(350, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/gabira/back.svg",
  18253. extra: 608 / 580,
  18254. bottom: 0.03
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(8, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Sasha Katraine" },
  18268. {
  18269. front: {
  18270. height: math.unit(5 + 3 / 12, "feet"),
  18271. weight: math.unit(137, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/sasha-katraine/front.svg",
  18275. bottom: 0.045
  18276. }
  18277. },
  18278. },
  18279. [
  18280. {
  18281. name: "Micro",
  18282. height: math.unit(5, "inches")
  18283. },
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(5 + 3 / 12, "feet"),
  18287. default: true
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Der" },
  18293. {
  18294. side: {
  18295. height: math.unit(4, "inches"),
  18296. weight: math.unit(200, "grams"),
  18297. name: "Side",
  18298. image: {
  18299. source: "./media/characters/der/side.svg",
  18300. extra: 719 / 400,
  18301. bottom: 30.6 / 749.9187
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Micro",
  18308. height: math.unit(4, "inches"),
  18309. default: true
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Fixerdragon" },
  18315. {
  18316. side: {
  18317. height: math.unit(30, "meters"),
  18318. weight: math.unit(700, "tonnes"),
  18319. name: "Side",
  18320. image: {
  18321. source: "./media/characters/fixerdragon/side.svg",
  18322. extra: (1293.0514-116.03)/1106.86,
  18323. bottom: 116.03/1293.0514
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Planck",
  18330. height: math.unit(1.6e-35, "meters")
  18331. },
  18332. {
  18333. name: "Micro",
  18334. height: math.unit(0.4, "meters")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(30, "meters"),
  18339. default: true
  18340. },
  18341. {
  18342. name: "Megamacro",
  18343. height: math.unit(1.2, "megameters")
  18344. },
  18345. {
  18346. name: "Teramacro",
  18347. height: math.unit(130, "terameters")
  18348. },
  18349. {
  18350. name: "Yottamacro",
  18351. height: math.unit(6200, "yottameters")
  18352. },
  18353. ]
  18354. ));
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Kite" },
  18357. {
  18358. front: {
  18359. height: math.unit(8, "feet"),
  18360. weight: math.unit(250, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/kite/front.svg",
  18364. extra: 2796/2659,
  18365. bottom: 0.002
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(8, "feet"),
  18373. default: true
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(360, "feet")
  18378. },
  18379. {
  18380. name: "Megamacro",
  18381. height: math.unit(1500, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Poojawa Vynar" },
  18387. {
  18388. front: {
  18389. height: math.unit(5 + 10/12, "feet"),
  18390. weight: math.unit(150, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/poojawa-vynar/front.svg",
  18394. extra: (1506.1547-55) / 1356.6,
  18395. bottom: 55/1506.1547
  18396. }
  18397. },
  18398. frontTailless: {
  18399. height: math.unit(5 + 10/12, "feet"),
  18400. weight: math.unit(150, "lb"),
  18401. name: "Front (Tailless)",
  18402. image: {
  18403. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18404. extra: (1506.1547-55) / 1356.6,
  18405. bottom: 55/1506.1547
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(5 + 10/12, "feet"),
  18413. default: true
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Violette" },
  18419. {
  18420. front: {
  18421. height: math.unit(293, "meters"),
  18422. weight: math.unit(70400, "tons"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/violette/front.svg",
  18426. extra: 1227/1180,
  18427. bottom: 0.005
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(293, "meters"),
  18432. weight: math.unit(70400, "tons"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/violette/back.svg",
  18436. extra: 1227/1180,
  18437. bottom: 0.005
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(293, "meters"),
  18445. default: true
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Alessandra" },
  18451. {
  18452. front: {
  18453. height: math.unit(1050, "feet"),
  18454. weight: math.unit(200000, "tons"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/alessandra/front.svg",
  18458. extra: 960/912,
  18459. bottom: 0.06
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(1050, "feet")
  18467. },
  18468. {
  18469. name: "Macro+",
  18470. height: math.unit(900, "meters"),
  18471. default: true
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Person", species: "Catdragon" },
  18477. {
  18478. front: {
  18479. height: math.unit(5, "feet"),
  18480. weight: math.unit(187, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/person/front.svg",
  18484. extra: 3087/2945,
  18485. bottom: 91/3181
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Micro",
  18492. height: math.unit(3, "inches")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(5, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(90, "feet")
  18502. },
  18503. {
  18504. name: "Max Size",
  18505. height: math.unit(280, "feet")
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Ty" },
  18511. {
  18512. front: {
  18513. height: math.unit(4.5, "meters"),
  18514. weight: math.unit(3200, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/ty/front.svg",
  18518. extra: 1038/960,
  18519. bottom: 31.156/1068
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(4.5, "meters"),
  18524. weight: math.unit(3200, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/ty/back.svg",
  18528. extra: 1044/966,
  18529. bottom: 7.48/1049
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(4.5, "meters"),
  18537. default: true
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Rocky" },
  18543. {
  18544. front: {
  18545. height: math.unit(5 + 4/12, "feet"),
  18546. weight: math.unit(115, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/rocky/front.svg",
  18550. extra: 1012/975,
  18551. bottom: 54/1066
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(5 + 4/12, "feet"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Ruin" },
  18565. {
  18566. upright: {
  18567. height: math.unit(6, "meters"),
  18568. weight: math.unit(4000, "kg"),
  18569. name: "Upright",
  18570. image: {
  18571. source: "./media/characters/ruin/upright.svg",
  18572. extra: 668/661,
  18573. bottom: 42/799.8396
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(6, "meters")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Robin" },
  18586. {
  18587. front: {
  18588. height: math.unit(5, "feet"),
  18589. weight: math.unit(106, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/robin/front.svg",
  18593. extra: 862/799,
  18594. bottom: 42.4/914.8856
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(5, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Saian" },
  18608. {
  18609. side: {
  18610. height: math.unit(3, "feet"),
  18611. weight: math.unit(225, "lb"),
  18612. name: "Side",
  18613. image: {
  18614. source: "./media/characters/saian/side.svg",
  18615. extra: 566/356,
  18616. bottom: 79.7/643
  18617. }
  18618. },
  18619. maw: {
  18620. height: math.unit(2.85, "feet"),
  18621. name: "Maw",
  18622. image: {
  18623. source: "./media/characters/saian/maw.svg"
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(3, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Equus Silvermane" },
  18637. {
  18638. side: {
  18639. height: math.unit(8, "feet"),
  18640. weight: math.unit(300, "lb"),
  18641. name: "Side",
  18642. image: {
  18643. source: "./media/characters/equus-silvermane/side.svg",
  18644. extra: 2176/2050,
  18645. bottom: 65.7/2245
  18646. }
  18647. },
  18648. front: {
  18649. height: math.unit(8, "feet"),
  18650. weight: math.unit(300, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/equus-silvermane/front.svg",
  18654. extra: 4633/4400,
  18655. bottom: 71.3/4706.915
  18656. }
  18657. },
  18658. sideStepping: {
  18659. height: math.unit(8, "feet"),
  18660. weight: math.unit(300, "lb"),
  18661. name: "Side (Stepping)",
  18662. image: {
  18663. source: "./media/characters/equus-silvermane/side-stepping.svg",
  18664. extra: 1968/1860,
  18665. bottom: 16.4/1989
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(8, "feet")
  18673. },
  18674. {
  18675. name: "Minimacro",
  18676. height: math.unit(75, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(150, "feet")
  18682. },
  18683. {
  18684. name: "Macro+",
  18685. height: math.unit(1000, "feet")
  18686. },
  18687. {
  18688. name: "Megamacro",
  18689. height: math.unit(1, "mile")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Windar" },
  18695. {
  18696. side: {
  18697. height: math.unit(20, "feet"),
  18698. weight: math.unit(30000, "kg"),
  18699. name: "Side",
  18700. image: {
  18701. source: "./media/characters/windar/side.svg",
  18702. extra: 1491/1248,
  18703. bottom: 82.56/1568
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(20, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Melody" },
  18717. {
  18718. side: {
  18719. height: math.unit(15.66, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Side",
  18722. image: {
  18723. source: "./media/characters/melody/side.svg",
  18724. extra: 1097/944,
  18725. bottom: 11.8/1109
  18726. }
  18727. },
  18728. sideOutfit: {
  18729. height: math.unit(15.66, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Side (Outfit)",
  18732. image: {
  18733. source: "./media/characters/melody/side-outfit.svg",
  18734. extra: 1097/944,
  18735. bottom: 11.8/1109
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(15.66, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Windera" },
  18749. {
  18750. front: {
  18751. height: math.unit(8, "feet"),
  18752. weight: math.unit(325, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/windera/front.svg",
  18756. extra: 3180/2845,
  18757. bottom: 178/3365
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(8, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Sonear" },
  18771. {
  18772. front: {
  18773. height: math.unit(28.75, "feet"),
  18774. weight: math.unit(2000, "kg"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/sonear/front.svg",
  18778. extra: 1041.1/964.9,
  18779. bottom: 53.7/1096.6
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(28.75, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Kanara" },
  18793. {
  18794. side: {
  18795. height: math.unit(25.5, "feet"),
  18796. weight: math.unit(23000, "kg"),
  18797. name: "Side",
  18798. image: {
  18799. source: "./media/characters/kanara/side.svg"
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(25.5, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Ereus" },
  18813. {
  18814. side: {
  18815. height: math.unit(10, "feet"),
  18816. weight: math.unit(1000, "kg"),
  18817. name: "Side",
  18818. image: {
  18819. source: "./media/characters/ereus/side.svg",
  18820. extra: 1157/959,
  18821. bottom: 153/1312.5
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(10, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. //characters
  18834. function makeCharacters() {
  18835. const results = [];
  18836. characterMakers.forEach(character => {
  18837. results.push(character());
  18838. });
  18839. return results;
  18840. }