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

18953 行
450 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: 5 / 4
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(8, "meters"),
  2547. default: true
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Kieran" },
  2553. {
  2554. front: {
  2555. height: math.unit(5.5, "feet"),
  2556. weight: math.unit(400, "lbs"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/kieran/front.svg",
  2560. extra: 1.05
  2561. }
  2562. },
  2563. side: {
  2564. height: math.unit(5.5, "feet"),
  2565. weight: math.unit(400, "lbs"),
  2566. name: "Side",
  2567. image: {
  2568. source: "./media/characters/kieran/side.svg",
  2569. extra: 950 / 850
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(5.5, "feet"),
  2577. default: true
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Sanya" },
  2583. {
  2584. side: {
  2585. height: math.unit(2, "meters"),
  2586. weight: math.unit(70, "kg"),
  2587. name: "Side",
  2588. image: {
  2589. source: "./media/characters/sanya/side.svg",
  2590. bottom: 0.02,
  2591. extra: 1.02
  2592. }
  2593. },
  2594. },
  2595. [
  2596. {
  2597. name: "Small",
  2598. height: math.unit(2, "meters")
  2599. },
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(3, "meters")
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(16, "meters"),
  2607. default: true
  2608. },
  2609. ]
  2610. ))
  2611. characterMakers.push(() => makeCharacter(
  2612. { name: "Miranda" },
  2613. {
  2614. side: {
  2615. height: math.unit(2, "meters"),
  2616. weight: math.unit(120, "kg"),
  2617. name: "Front",
  2618. image: {
  2619. source: "./media/characters/miranda/front.svg",
  2620. extra: 10.6 / 10
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(10, "feet"),
  2628. default: true
  2629. }
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "James" },
  2634. {
  2635. side: {
  2636. height: math.unit(2, "meters"),
  2637. weight: math.unit(100, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/james/front.svg",
  2641. extra: 10 / 8.5
  2642. }
  2643. },
  2644. },
  2645. [
  2646. {
  2647. name: "Normal",
  2648. height: math.unit(8.5, "feet"),
  2649. default: true
  2650. }
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Heather" },
  2655. {
  2656. side: {
  2657. height: math.unit(9.5, "feet"),
  2658. weight: math.unit(2500, "lbs"),
  2659. name: "Side",
  2660. image: {
  2661. source: "./media/characters/heather/side.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(9.5, "feet"),
  2669. default: true
  2670. }
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Lukas" },
  2675. {
  2676. side: {
  2677. height: math.unit(6.5, "feet"),
  2678. weight: math.unit(400, "lbs"),
  2679. name: "Side",
  2680. image: {
  2681. source: "./media/characters/lukas/side.svg",
  2682. extra: 7.25 / 6.5
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(6.5, "feet"),
  2690. default: true
  2691. }
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Louise" },
  2696. {
  2697. side: {
  2698. height: math.unit(5, "feet"),
  2699. weight: math.unit(3000, "lbs"),
  2700. name: "Side",
  2701. image: {
  2702. source: "./media/characters/louise/side.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(5, "feet"),
  2710. default: true
  2711. }
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Ramona" },
  2716. {
  2717. side: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(150, "lbs"),
  2720. name: "Side",
  2721. image: {
  2722. source: "./media/characters/ramona/side.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(5.3, "meters"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(20, "stories")
  2735. },
  2736. {
  2737. name: "Macro+",
  2738. height: math.unit(50, "stories")
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Deerpuff" },
  2744. {
  2745. standing: {
  2746. height: math.unit(5.75, "feet"),
  2747. weight: math.unit(160, "lbs"),
  2748. name: "Standing",
  2749. image: {
  2750. source: "./media/characters/deerpuff/standing.svg",
  2751. extra: 682 / 624
  2752. }
  2753. },
  2754. sitting: {
  2755. height: math.unit(5.75 / 1.79, "feet"),
  2756. weight: math.unit(160, "lbs"),
  2757. name: "Sitting",
  2758. image: {
  2759. source: "./media/characters/deerpuff/sitting.svg",
  2760. bottom: 44 / 400,
  2761. extra: 1
  2762. }
  2763. },
  2764. taurLaying: {
  2765. height: math.unit(6, "feet"),
  2766. weight: math.unit(400, "lbs"),
  2767. name: "Taur (Laying)",
  2768. image: {
  2769. source: "./media/characters/deerpuff/taur-laying.svg"
  2770. }
  2771. },
  2772. },
  2773. [
  2774. {
  2775. name: "Puffball",
  2776. height: math.unit(6, "inches")
  2777. },
  2778. {
  2779. name: "Normalpuff",
  2780. height: math.unit(5.75, "feet")
  2781. },
  2782. {
  2783. name: "Macropuff",
  2784. height: math.unit(1500, "feet"),
  2785. default: true
  2786. },
  2787. {
  2788. name: "Megapuff",
  2789. height: math.unit(500, "miles")
  2790. },
  2791. {
  2792. name: "Gigapuff",
  2793. height: math.unit(250000, "miles")
  2794. },
  2795. {
  2796. name: "Omegapuff",
  2797. height: math.unit(1000, "lightyears")
  2798. },
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Vivian" },
  2803. {
  2804. stomping: {
  2805. height: math.unit(6, "feet"),
  2806. weight: math.unit(170, "lbs"),
  2807. name: "Stomping",
  2808. image: {
  2809. source: "./media/characters/vivian/stomping.svg"
  2810. }
  2811. },
  2812. sitting: {
  2813. height: math.unit(6 / 1.75, "feet"),
  2814. weight: math.unit(170, "lbs"),
  2815. name: "Sitting",
  2816. image: {
  2817. source: "./media/characters/vivian/sitting.svg",
  2818. bottom: 1 / 6.4,
  2819. extra: 1,
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(7, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(10, "stories")
  2832. },
  2833. {
  2834. name: "Macro+",
  2835. height: math.unit(30, "stories")
  2836. },
  2837. {
  2838. name: "Megamacro",
  2839. height: math.unit(10, "miles")
  2840. },
  2841. {
  2842. name: "Megamacro+",
  2843. height: math.unit(2750000, "meters")
  2844. },
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Prince" },
  2849. {
  2850. front: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(160, "lbs"),
  2853. name: "Front",
  2854. image: {
  2855. source: "./media/characters/prince/front.svg",
  2856. extra: 3400 / 3000
  2857. }
  2858. },
  2859. jumping: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(160, "lbs"),
  2862. name: "Jumping",
  2863. image: {
  2864. source: "./media/characters/prince/jump.svg",
  2865. extra: 2555 / 2134
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7.75, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Not cute",
  2877. height: math.unit(17, "feet")
  2878. },
  2879. {
  2880. name: "I said NOT",
  2881. height: math.unit(91, "feet")
  2882. },
  2883. {
  2884. name: "Please stop",
  2885. height: math.unit(560, "feet")
  2886. },
  2887. {
  2888. name: "What have you done",
  2889. height: math.unit(2200, "feet")
  2890. },
  2891. {
  2892. name: "Deer God",
  2893. height: math.unit(3.6, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Psymon" },
  2899. {
  2900. standing: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(300, "lbs"),
  2903. name: "Standing",
  2904. image: {
  2905. source: "./media/characters/psymon/standing.svg",
  2906. extra: 1888 / 1810,
  2907. bottom: 0.05
  2908. }
  2909. },
  2910. slithering: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(300, "lbs"),
  2913. name: "Slithering",
  2914. image: {
  2915. source: "./media/characters/psymon/slithering.svg",
  2916. extra: 1330 / 1224
  2917. }
  2918. },
  2919. slitheringAlt: {
  2920. height: math.unit(6, "feet"),
  2921. weight: math.unit(300, "lbs"),
  2922. name: "Slithering (Alt)",
  2923. image: {
  2924. source: "./media/characters/psymon/slithering-alt.svg",
  2925. extra: 1330 / 1224
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(11.25, "feet"),
  2933. default: true
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(27, "feet")
  2938. },
  2939. {
  2940. name: "Giant",
  2941. height: math.unit(87, "feet")
  2942. },
  2943. {
  2944. name: "Macro",
  2945. height: math.unit(365, "feet")
  2946. },
  2947. {
  2948. name: "Megamacro",
  2949. height: math.unit(3, "miles")
  2950. },
  2951. {
  2952. name: "World Serpent",
  2953. height: math.unit(8000, "miles")
  2954. },
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Daimos" },
  2959. {
  2960. front: {
  2961. height: math.unit(6, "feet"),
  2962. weight: math.unit(180, "lbs"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/daimos/front.svg",
  2966. extra: 4160 / 3897,
  2967. bottom: 0.021
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(8, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Big Dog",
  2979. height: math.unit(22, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(127, "feet")
  2984. },
  2985. {
  2986. name: "Megamacro",
  2987. height: math.unit(3600, "feet")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Blake" },
  2993. {
  2994. side: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(180, "lbs"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/blake/side.svg",
  3000. extra: 1212 / 1120,
  3001. bottom: 0.05
  3002. }
  3003. },
  3004. crouched: {
  3005. height: math.unit(6 * 0.57, "feet"),
  3006. weight: math.unit(180, "lbs"),
  3007. name: "Crouched",
  3008. image: {
  3009. source: "./media/characters/blake/crouched.svg",
  3010. extra: 840 / 587,
  3011. bottom: 0.04
  3012. }
  3013. },
  3014. bent: {
  3015. height: math.unit(6 * 0.75, "feet"),
  3016. weight: math.unit(180, "lbs"),
  3017. name: "Bent",
  3018. image: {
  3019. source: "./media/characters/blake/bent.svg",
  3020. extra: 592 / 544,
  3021. bottom: 0.035
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(8 + 1 / 6, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Big Backside",
  3033. height: math.unit(37, "feet")
  3034. },
  3035. {
  3036. name: "Subway Shredder",
  3037. height: math.unit(72, "feet")
  3038. },
  3039. {
  3040. name: "City Carver",
  3041. height: math.unit(1675, "feet")
  3042. },
  3043. {
  3044. name: "Tectonic Tweaker",
  3045. height: math.unit(2300, "miles")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Guisetto" },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(180, "lbs"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/guisetto/front.svg",
  3058. extra: 856 / 817,
  3059. bottom: 0.06
  3060. }
  3061. },
  3062. airborne: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(180, "lbs"),
  3065. name: "Airborne",
  3066. image: {
  3067. source: "./media/characters/guisetto/airborne.svg",
  3068. extra: 584 / 525
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(10 + 11 / 12, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Large",
  3080. height: math.unit(35, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(475, "feet")
  3085. },
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Luxor" },
  3090. {
  3091. front: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(180, "lbs"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/luxor/front.svg",
  3097. extra: 2940 / 2152
  3098. }
  3099. },
  3100. back: {
  3101. height: math.unit(6, "feet"),
  3102. weight: math.unit(180, "lbs"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/luxor/back.svg",
  3106. extra: 1083 / 960
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Normal",
  3113. height: math.unit(5 + 5 / 6, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Lamp",
  3118. height: math.unit(50, "feet")
  3119. },
  3120. {
  3121. name: "Lämp",
  3122. height: math.unit(300, "feet")
  3123. },
  3124. {
  3125. name: "The sun is a lamp",
  3126. height: math.unit(250000, "miles")
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Huoyan" },
  3132. {
  3133. front: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(50, "lbs"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/huoyan/front.svg"
  3139. }
  3140. },
  3141. side: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(180, "lbs"),
  3144. name: "Side",
  3145. image: {
  3146. source: "./media/characters/huoyan/side.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Chef",
  3153. height: math.unit(9, "feet")
  3154. },
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(65, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(780, "feet")
  3163. },
  3164. {
  3165. name: "Flaming Mountain",
  3166. height: math.unit(4.8, "miles")
  3167. },
  3168. {
  3169. name: "Celestial",
  3170. height: math.unit(765000, "miles")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Tails" },
  3176. {
  3177. front: {
  3178. height: math.unit(5 + 3 / 4, "feet"),
  3179. weight: math.unit(120, "lbs"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/tails/front.svg"
  3183. }
  3184. }
  3185. },
  3186. [
  3187. {
  3188. name: "Normal",
  3189. height: math.unit(5 + 3 / 4, "feet"),
  3190. default: true
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Rainy" },
  3196. {
  3197. front: {
  3198. height: math.unit(4, "feet"),
  3199. weight: math.unit(50, "lbs"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/rainy/front.svg"
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(800, "feet"),
  3210. default: true
  3211. }
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Rainier" },
  3216. {
  3217. front: {
  3218. height: math.unit(6, "feet"),
  3219. weight: math.unit(150, "lbs"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/rainier/front.svg"
  3223. }
  3224. }
  3225. },
  3226. [
  3227. {
  3228. name: "Micro",
  3229. height: math.unit(2, "mm"),
  3230. default: true
  3231. }
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Andy" },
  3236. {
  3237. front: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(180, "lbs"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/andy/front.svg"
  3243. }
  3244. }
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(8, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro",
  3254. height: math.unit(1000, "feet")
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(5, "miles")
  3259. },
  3260. {
  3261. name: "Gigamacro",
  3262. height: math.unit(5000, "miles")
  3263. },
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Cimmaron" },
  3268. {
  3269. frontClothed: {
  3270. height: math.unit(6, "feet"),
  3271. weight: math.unit(210, "lbs"),
  3272. name: "Front (Clothed)",
  3273. image: {
  3274. source: "./media/characters/cimmaron/front-clothed.svg",
  3275. extra: 701 / 676,
  3276. bottom: 0.046
  3277. }
  3278. },
  3279. backClothed: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(210, "lbs"),
  3282. name: "Back (Clothed)",
  3283. image: {
  3284. source: "./media/characters/cimmaron/back-clothed.svg",
  3285. extra: 701 / 676,
  3286. bottom: 0.046
  3287. }
  3288. },
  3289. frontNude: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(210, "lbs"),
  3292. name: "Front (Nude)",
  3293. image: {
  3294. source: "./media/characters/cimmaron/front-nude.svg",
  3295. extra: 701 / 676,
  3296. bottom: 0.046
  3297. }
  3298. },
  3299. backNude: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(210, "lbs"),
  3302. name: "Back (Nude)",
  3303. image: {
  3304. source: "./media/characters/cimmaron/back-nude.svg",
  3305. extra: 701 / 676,
  3306. bottom: 0.046
  3307. }
  3308. }
  3309. },
  3310. [
  3311. {
  3312. name: "Normal",
  3313. height: math.unit(6, "feet"),
  3314. default: true
  3315. },
  3316. {
  3317. name: "Macro Mayor",
  3318. height: math.unit(350, "meters")
  3319. },
  3320. ]
  3321. ))
  3322. characterMakers.push(() => makeCharacter(
  3323. { name: "Akari Kaen" },
  3324. {
  3325. front: {
  3326. height: math.unit(6, "feet"),
  3327. weight: math.unit(200, "lbs"),
  3328. name: "Front",
  3329. image: {
  3330. source: "./media/characters/akari/front.svg",
  3331. extra: 962 / 901,
  3332. bottom: 0.04
  3333. }
  3334. }
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(5, "inches"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(7, "feet")
  3345. },
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Cynosura" },
  3350. {
  3351. front: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(140, "lbs"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/cynosura/front.svg",
  3357. extra: 896 / 847
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(140, "lbs"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/cynosura/back.svg",
  3366. extra: 1365 / 1250
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Micro",
  3373. height: math.unit(4, "inches")
  3374. },
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(5.75, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Tall",
  3382. height: math.unit(10, "feet")
  3383. },
  3384. {
  3385. name: "Big",
  3386. height: math.unit(20, "feet")
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(50, "feet")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Gin" },
  3396. {
  3397. front: {
  3398. height: math.unit(6, "feet"),
  3399. weight: math.unit(170, "lbs"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/gin/front.svg",
  3403. extra: 1.053,
  3404. bottom: 0.025
  3405. }
  3406. },
  3407. foot: {
  3408. height: math.unit(6 / 4.25, "feet"),
  3409. name: "Foot",
  3410. image: {
  3411. source: "./media/characters/gin/foot.svg"
  3412. }
  3413. },
  3414. sole: {
  3415. height: math.unit(6 / 4.40, "feet"),
  3416. name: "Sole",
  3417. image: {
  3418. source: "./media/characters/gin/sole.svg"
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(9 + 4 / 12, "feet")
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(1500, "feet")
  3430. },
  3431. {
  3432. name: "Megamacro",
  3433. height: math.unit(200, "miles"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Gigamacro",
  3438. height: math.unit(500, "megameters")
  3439. },
  3440. {
  3441. name: "Teramacro",
  3442. height: math.unit(15, "lightyears")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Guy" },
  3448. {
  3449. front: {
  3450. height: math.unit(6 + 1 / 6, "feet"),
  3451. weight: math.unit(178, "lbs"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/guy/front.svg"
  3455. }
  3456. }
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(6 + 1 / 6, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Large",
  3466. height: math.unit(25 + 7 / 12, "feet")
  3467. },
  3468. {
  3469. name: "Macro",
  3470. height: math.unit(60 + 9 / 12, "feet")
  3471. },
  3472. {
  3473. name: "Macro+",
  3474. height: math.unit(246, "feet")
  3475. },
  3476. {
  3477. name: "Macro++",
  3478. height: math.unit(878, "feet")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Tiberius" },
  3484. {
  3485. front: {
  3486. height: math.unit(9, "feet"),
  3487. weight: math.unit(800, "lbs"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/tiberius/front.svg",
  3491. extra: 2295 / 2071
  3492. }
  3493. },
  3494. back: {
  3495. height: math.unit(9, "feet"),
  3496. weight: math.unit(800, "lbs"),
  3497. name: "Back",
  3498. image: {
  3499. source: "./media/characters/tiberius/back.svg",
  3500. extra: 2373 / 2160
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(9, "feet"),
  3508. default: true
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Surgo" },
  3514. {
  3515. front: {
  3516. height: math.unit(6, "feet"),
  3517. weight: math.unit(600, "lbs"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/surgo/front.svg",
  3521. extra: 3591 / 2227
  3522. }
  3523. },
  3524. back: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(600, "lbs"),
  3527. name: "Back",
  3528. image: {
  3529. source: "./media/characters/surgo/back.svg",
  3530. extra: 3557 / 2228
  3531. }
  3532. },
  3533. laying: {
  3534. height: math.unit(6 * 0.85, "feet"),
  3535. weight: math.unit(600, "lbs"),
  3536. name: "Laying",
  3537. image: {
  3538. source: "./media/characters/surgo/laying.svg"
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(6, "feet"),
  3546. default: true
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Cibus" },
  3552. {
  3553. side: {
  3554. height: math.unit(6, "feet"),
  3555. weight: math.unit(150, "lbs"),
  3556. name: "Side",
  3557. image: {
  3558. source: "./media/characters/cibus/side.svg",
  3559. extra: 800 / 400
  3560. }
  3561. },
  3562. },
  3563. [
  3564. {
  3565. name: "Normal",
  3566. height: math.unit(6, "feet"),
  3567. default: true
  3568. }
  3569. ]
  3570. ))
  3571. characterMakers.push(() => makeCharacter(
  3572. { name: "Nibbles" },
  3573. {
  3574. front: {
  3575. height: math.unit(6, "feet"),
  3576. weight: math.unit(240, "lbs"),
  3577. name: "Front",
  3578. image: {
  3579. source: "./media/characters/nibbles/front.svg"
  3580. }
  3581. },
  3582. side: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(240, "lbs"),
  3585. name: "Side",
  3586. image: {
  3587. source: "./media/characters/nibbles/side.svg"
  3588. }
  3589. },
  3590. },
  3591. [
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(9, "feet"),
  3595. default: true
  3596. }
  3597. ]
  3598. ))
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Rikky" },
  3601. {
  3602. side: {
  3603. height: math.unit(5 + 1 / 6, "feet"),
  3604. weight: math.unit(130, "lbs"),
  3605. name: "Side",
  3606. image: {
  3607. source: "./media/characters/rikky/side.svg"
  3608. }
  3609. },
  3610. },
  3611. [
  3612. {
  3613. name: "Normal",
  3614. height: math.unit(5 + 1 / 6, "feet")
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(152, "feet"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Megamacro",
  3623. height: math.unit(7, "miles")
  3624. }
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Malfressa" },
  3629. {
  3630. side: {
  3631. height: math.unit(370, "cm"),
  3632. weight: math.unit(350, "lbs"),
  3633. name: "Side",
  3634. image: {
  3635. source: "./media/characters/malfressa/side.svg"
  3636. }
  3637. },
  3638. walking: {
  3639. height: math.unit(370, "cm"),
  3640. weight: math.unit(350, "lbs"),
  3641. name: "Walking",
  3642. image: {
  3643. source: "./media/characters/malfressa/walking.svg"
  3644. }
  3645. },
  3646. feral: {
  3647. height: math.unit(2500, "cm"),
  3648. weight: math.unit(100000, "lbs"),
  3649. name: "Feral",
  3650. image: {
  3651. source: "./media/characters/malfressa/feral.svg",
  3652. extra: 2108 / 837,
  3653. bottom: 0.02
  3654. }
  3655. },
  3656. },
  3657. [
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(370, "cm")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(300, "meters"),
  3665. default: true
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Jaro" },
  3671. {
  3672. front: {
  3673. height: math.unit(6, "feet"),
  3674. weight: math.unit(60, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/jaro/front.svg"
  3678. }
  3679. },
  3680. back: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(60, "kg"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/jaro/back.svg"
  3686. }
  3687. },
  3688. },
  3689. [
  3690. {
  3691. name: "Micro",
  3692. height: math.unit(7, "inches")
  3693. },
  3694. {
  3695. name: "Normal",
  3696. height: math.unit(5.5, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Minimacro",
  3701. height: math.unit(20, "feet")
  3702. },
  3703. {
  3704. name: "Macro",
  3705. height: math.unit(200, "meters")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Rogue" },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(195, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/rogue/front.svg"
  3718. }
  3719. },
  3720. },
  3721. [
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(90, "feet"),
  3725. default: true
  3726. },
  3727. ]
  3728. ))
  3729. characterMakers.push(() => makeCharacter(
  3730. { name: "Piper" },
  3731. {
  3732. front: {
  3733. height: math.unit(5 + 8 / 12, "feet"),
  3734. weight: math.unit(140, "lb"),
  3735. name: "Front",
  3736. image: {
  3737. source: "./media/characters/piper/front.svg",
  3738. extra: 3928 / 3681
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Micro",
  3745. height: math.unit(2, "inches")
  3746. },
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(5 + 8 / 12, "feet")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(250, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(7, "miles")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Gemini" },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(220, "lb"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/gemini/front.svg"
  3771. }
  3772. },
  3773. back: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(220, "lb"),
  3776. name: "Back",
  3777. image: {
  3778. source: "./media/characters/gemini/back.svg"
  3779. }
  3780. },
  3781. kneeling: {
  3782. height: math.unit(6 / 1.5, "feet"),
  3783. weight: math.unit(220, "lb"),
  3784. name: "Kneeling",
  3785. image: {
  3786. source: "./media/characters/gemini/kneeling.svg",
  3787. bottom: 0.02
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(300, "meters"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Megamacro",
  3799. height: math.unit(6900, "meters")
  3800. },
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Alicia" },
  3805. {
  3806. anthro: {
  3807. height: math.unit(2.35, "meters"),
  3808. weight: math.unit(73, "kg"),
  3809. name: "Anthro",
  3810. image: {
  3811. source: "./media/characters/alicia/anthro.svg"
  3812. }
  3813. },
  3814. feral: {
  3815. height: math.unit(1.69, "meters"),
  3816. weight: math.unit(73, "kg"),
  3817. name: "Feral",
  3818. image: {
  3819. source: "./media/characters/alicia/feral.svg"
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(2.35, "meters")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(60, "meters"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(10000, "kilometers")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Archy" },
  3841. {
  3842. front: {
  3843. height: math.unit(7, "feet"),
  3844. weight: math.unit(250, "lbs"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/archy/front.svg"
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Micro",
  3854. height: math.unit(1, "inch")
  3855. },
  3856. {
  3857. name: "Shorty",
  3858. height: math.unit(5, "feet")
  3859. },
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(7, "feet")
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(600, "meters"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(1, "mile")
  3872. },
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Berri" },
  3877. {
  3878. front: {
  3879. height: math.unit(1.65, "meters"),
  3880. weight: math.unit(74, "kg"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/berri/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(1.65, "meters")
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(60, "m"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(9.213, "km")
  3900. },
  3901. {
  3902. name: "Planet Eater",
  3903. height: math.unit(489, "megameters")
  3904. },
  3905. {
  3906. name: "Teramacro",
  3907. height: math.unit(2471635000000, "meters")
  3908. },
  3909. {
  3910. name: "Examacro",
  3911. height: math.unit(8.0624e+26, "meters")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Lexi" },
  3917. {
  3918. front: {
  3919. height: math.unit(1.72, "meters"),
  3920. weight: math.unit(68, "kg"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/lexi/front.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Very Smol",
  3930. height: math.unit(10, "mm")
  3931. },
  3932. {
  3933. name: "Micro",
  3934. height: math.unit(6.8, "cm"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(1.72, "m")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Martin" },
  3945. {
  3946. front: {
  3947. height: math.unit(1.69, "meters"),
  3948. weight: math.unit(68, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/martin/front.svg",
  3952. extra: 596 / 581
  3953. }
  3954. }
  3955. },
  3956. [
  3957. {
  3958. name: "Micro",
  3959. height: math.unit(6.85, "cm"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(1.69, "m")
  3965. }
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Juno" },
  3970. {
  3971. front: {
  3972. height: math.unit(1.69, "meters"),
  3973. weight: math.unit(68, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/juno/front.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Micro",
  3983. height: math.unit(7, "cm")
  3984. },
  3985. {
  3986. name: "Normal",
  3987. height: math.unit(1.89, "m")
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(353, "meters"),
  3992. default: true
  3993. }
  3994. ]
  3995. ))
  3996. characterMakers.push(() => makeCharacter(
  3997. { name: "Samantha" },
  3998. {
  3999. front: {
  4000. height: math.unit(1.93, "meters"),
  4001. weight: math.unit(83, "kg"),
  4002. name: "Front",
  4003. image: {
  4004. source: "./media/characters/samantha/front.svg"
  4005. }
  4006. },
  4007. frontClothed: {
  4008. height: math.unit(1.93, "meters"),
  4009. weight: math.unit(83, "kg"),
  4010. name: "Front (Clothed)",
  4011. image: {
  4012. source: "./media/characters/samantha/front-clothed.svg"
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(1.93, "meters"),
  4017. weight: math.unit(83, "kg"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/samantha/back.svg"
  4021. }
  4022. },
  4023. },
  4024. [
  4025. {
  4026. name: "Normal",
  4027. height: math.unit(1.93, "m")
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(74, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Macro+",
  4036. height: math.unit(223, "meters"),
  4037. },
  4038. {
  4039. name: "Megamacro",
  4040. height: math.unit(8381, "meters"),
  4041. },
  4042. {
  4043. name: "Megamacro+",
  4044. height: math.unit(12000, "kilometers")
  4045. },
  4046. ]
  4047. ))
  4048. characterMakers.push(() => makeCharacter(
  4049. { name: "Dr. Clay" },
  4050. {
  4051. front: {
  4052. height: math.unit(1.92, "meters"),
  4053. weight: math.unit(80, "kg"),
  4054. name: "Front",
  4055. image: {
  4056. source: "./media/characters/dr-clay/front.svg"
  4057. }
  4058. },
  4059. frontClothed: {
  4060. height: math.unit(1.92, "meters"),
  4061. weight: math.unit(80, "kg"),
  4062. name: "Front (Clothed)",
  4063. image: {
  4064. source: "./media/characters/dr-clay/front-clothed.svg"
  4065. }
  4066. }
  4067. },
  4068. [
  4069. {
  4070. name: "Normal",
  4071. height: math.unit(1.92, "m")
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(214, "meters"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "Macro+",
  4080. height: math.unit(12.237, "meters"),
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(557, "megameters"),
  4085. },
  4086. {
  4087. name: "Unimaginable",
  4088. height: math.unit(120e9, "lightyears")
  4089. },
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Wyvrn Ripsnarl" },
  4094. {
  4095. front: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(80, "kg"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Teramacro",
  4107. height: math.unit(500000, "lightyears"),
  4108. default: true
  4109. },
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Vemus" },
  4114. {
  4115. front: {
  4116. height: math.unit(2, "meters"),
  4117. weight: math.unit(150, "kg"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/vemus/front.svg",
  4121. extra: 2384 / 2084,
  4122. bottom: 0.0123
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(3.75, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Big",
  4134. height: math.unit(8, "meters")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(100, "meters")
  4139. },
  4140. {
  4141. name: "Macro+",
  4142. height: math.unit(1500, "meters")
  4143. },
  4144. {
  4145. name: "Stellar",
  4146. height: math.unit(14e8, "meters")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Beherit" },
  4152. {
  4153. front: {
  4154. height: math.unit(2, "meters"),
  4155. weight: math.unit(70, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/beherit/front.svg",
  4159. extra: 1408 / 1242
  4160. }
  4161. }
  4162. },
  4163. [
  4164. {
  4165. name: "Normal",
  4166. height: math.unit(6, "feet")
  4167. },
  4168. {
  4169. name: "Lorg",
  4170. height: math.unit(25, "feet"),
  4171. default: true
  4172. },
  4173. {
  4174. name: "Lorger",
  4175. height: math.unit(75, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(200, "meters")
  4180. },
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Everett" },
  4185. {
  4186. front: {
  4187. height: math.unit(2, "meters"),
  4188. weight: math.unit(150, "kg"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/everett/front.svg",
  4192. extra: 2038 / 1737,
  4193. bottom: 0.03
  4194. }
  4195. },
  4196. paw: {
  4197. height: math.unit(2 / 3.6, "meters"),
  4198. name: "Paw",
  4199. image: {
  4200. source: "./media/characters/everett/paw.svg"
  4201. }
  4202. },
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(15, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Lorg",
  4212. height: math.unit(70, "feet"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Lorger",
  4217. height: math.unit(250, "feet")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(500, "meters")
  4222. },
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Rose Lion" },
  4227. {
  4228. front: {
  4229. height: math.unit(2, "meters"),
  4230. weight: math.unit(86, "kg"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/rose-lion/front.svg"
  4234. }
  4235. },
  4236. bent: {
  4237. height: math.unit(2 / 1.4288, "meters"),
  4238. weight: math.unit(86, "kg"),
  4239. name: "Bent",
  4240. image: {
  4241. source: "./media/characters/rose-lion/bent.svg"
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Mini-Micro",
  4248. height: math.unit(1, "cm")
  4249. },
  4250. {
  4251. name: "Micro",
  4252. height: math.unit(3.5, "inches"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(6 + 1 / 6, "feet")
  4258. },
  4259. {
  4260. name: "Mini-Macro",
  4261. height: math.unit(9 + 10 / 12, "feet")
  4262. },
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "Regal" },
  4267. {
  4268. front: {
  4269. height: math.unit(2, "meters"),
  4270. weight: math.unit(350, "lbs"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/regal/front.svg"
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(2, "meters"),
  4278. weight: math.unit(350, "lbs"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/regal/back.svg"
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(350, "feet"),
  4289. default: true
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Opal" },
  4295. {
  4296. front: {
  4297. height: math.unit(4 + 11 / 12, "feet"),
  4298. weight: math.unit(100, "lbs"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/opal/front.svg"
  4302. }
  4303. },
  4304. frontAlt: {
  4305. height: math.unit(4 + 11 / 12, "feet"),
  4306. weight: math.unit(100, "lbs"),
  4307. name: "Front (Alt)",
  4308. image: {
  4309. source: "./media/characters/opal/front-alt.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Small",
  4316. height: math.unit(4 + 11 / 12, "feet")
  4317. },
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(20, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(120, "feet")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(80, "miles")
  4330. },
  4331. {
  4332. name: "True Size",
  4333. height: math.unit(100000, "lightyears")
  4334. },
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Vector Wuff" },
  4339. {
  4340. front: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(200, "lbs"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/vector-wuff/front.svg"
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(2.8, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(450, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(15, "kilometers")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Dannik" },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(256, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/dannik/front.svg"
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(69.57, "meters"),
  4381. default: true
  4382. },
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Azura Saharah" },
  4387. {
  4388. front: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(120, "lbs"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/azura-saharah/front.svg"
  4394. }
  4395. },
  4396. back: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(120, "lbs"),
  4399. name: "Back",
  4400. image: {
  4401. source: "./media/characters/azura-saharah/back.svg"
  4402. }
  4403. },
  4404. },
  4405. [
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(100, "feet"),
  4409. default: true
  4410. },
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kennedy" },
  4415. {
  4416. side: {
  4417. height: math.unit(5 + 4 / 12, "feet"),
  4418. weight: math.unit(163, "lbs"),
  4419. name: "Side",
  4420. image: {
  4421. source: "./media/characters/kennedy/side.svg"
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Standard Doggo",
  4428. height: math.unit(5 + 4 / 12, "feet")
  4429. },
  4430. {
  4431. name: "Big Doggo",
  4432. height: math.unit(25 + 3 / 12, "feet"),
  4433. default: true
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Odi Lunar" },
  4439. {
  4440. front: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(90, "lbs"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/odi-lunar/front.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Micro",
  4452. height: math.unit(3, "inches"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(5.5, "feet")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Mandake" },
  4463. {
  4464. back: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(220, "lbs"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/mandake/back.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(7, "feet"),
  4477. default: true
  4478. },
  4479. {
  4480. name: "Macro",
  4481. height: math.unit(78, "feet")
  4482. },
  4483. {
  4484. name: "Macro+",
  4485. height: math.unit(300, "meters")
  4486. },
  4487. {
  4488. name: "Macro++",
  4489. height: math.unit(2400, "feet")
  4490. },
  4491. {
  4492. name: "Megamacro",
  4493. height: math.unit(5167, "meters")
  4494. },
  4495. {
  4496. name: "Gigamacro",
  4497. height: math.unit(41769, "miles")
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Yozey" },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(120, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/yozey/front.svg"
  4510. }
  4511. },
  4512. frontAlt: {
  4513. height: math.unit(6, "feet"),
  4514. weight: math.unit(120, "lbs"),
  4515. name: "Front (Alt)",
  4516. image: {
  4517. source: "./media/characters/yozey/front-alt.svg"
  4518. }
  4519. },
  4520. side: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(120, "lbs"),
  4523. name: "Side",
  4524. image: {
  4525. source: "./media/characters/yozey/side.svg"
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Micro",
  4532. height: math.unit(3, "inches"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(6, "feet")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Valeska Voss" },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(103, "lbs"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/valeska-voss/front.svg"
  4550. }
  4551. }
  4552. },
  4553. [
  4554. {
  4555. name: "Mini-Sized Sub",
  4556. height: math.unit(3.1, "inches")
  4557. },
  4558. {
  4559. name: "Mid-Sized Sub",
  4560. height: math.unit(6.2, "inches")
  4561. },
  4562. {
  4563. name: "Full-Sized Sub",
  4564. height: math.unit(9.3, "inches")
  4565. },
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(5 + 2 / 12, "foot"),
  4569. default: true
  4570. },
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Gene Zeta" },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(160, "lbs"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/gene-zeta/front.svg",
  4582. bottom: 0.03,
  4583. extra: 1
  4584. }
  4585. }
  4586. },
  4587. [
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(6.25, "foot"),
  4591. default: true
  4592. },
  4593. ]
  4594. ))
  4595. characterMakers.push(() => makeCharacter(
  4596. { name: "Razinox" },
  4597. {
  4598. front: {
  4599. height: math.unit(6, "feet"),
  4600. weight: math.unit(350, "lbs"),
  4601. name: "Front",
  4602. image: {
  4603. source: "./media/characters/razinox/front.svg",
  4604. extra: 1686 / 1548
  4605. }
  4606. },
  4607. back: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(350, "lbs"),
  4610. name: "Back",
  4611. image: {
  4612. source: "./media/characters/razinox/back.svg",
  4613. extra: 1660 / 1590
  4614. }
  4615. },
  4616. },
  4617. [
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(10 + 8 / 12, "foot")
  4621. },
  4622. {
  4623. name: "Minimacro",
  4624. height: math.unit(15, "foot")
  4625. },
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(60, "foot"),
  4629. default: true
  4630. },
  4631. {
  4632. name: "Megamacro",
  4633. height: math.unit(5, "miles")
  4634. },
  4635. {
  4636. name: "Gigamacro",
  4637. height: math.unit(6000, "miles")
  4638. },
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Cobalt" },
  4643. {
  4644. front: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(150, "lbs"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/cobalt/front.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(8 + 1 / 12, "foot")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(111, "foot"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Supracosmic",
  4665. height: math.unit(1e42, "feet")
  4666. },
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Amanda" },
  4671. {
  4672. front: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(140, "lbs"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/amanda/front.svg"
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Micro",
  4684. height: math.unit(5, "inches"),
  4685. default: true
  4686. },
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Teal" },
  4691. {
  4692. front: {
  4693. height: math.unit(5.59, "feet"),
  4694. weight: math.unit(250, "lbs"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/teal/front.svg"
  4698. }
  4699. },
  4700. frontAlt: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(250, "lbs"),
  4703. name: "Front (Alt)",
  4704. image: {
  4705. source: "./media/characters/teal/front-alt.svg",
  4706. bottom: 0.04,
  4707. extra: 1
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(12, "feet"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(300, "feet")
  4720. },
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Ravin Amulet" },
  4725. {
  4726. frontCat: {
  4727. height: math.unit(6, "feet"),
  4728. weight: math.unit(180, "lbs"),
  4729. name: "Front (Cat)",
  4730. image: {
  4731. source: "./media/characters/ravin-amulet/front-cat.svg"
  4732. }
  4733. },
  4734. frontCatAlt: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(180, "lbs"),
  4737. name: "Front (Alt, Cat)",
  4738. image: {
  4739. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4740. }
  4741. },
  4742. frontWerewolf: {
  4743. height: math.unit(6 * 1.2, "feet"),
  4744. weight: math.unit(225, "lbs"),
  4745. name: "Front (Werewolf)",
  4746. image: {
  4747. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4748. }
  4749. },
  4750. backWerewolf: {
  4751. height: math.unit(6 * 1.2, "feet"),
  4752. weight: math.unit(225, "lbs"),
  4753. name: "Back (Werewolf)",
  4754. image: {
  4755. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Nano",
  4762. height: math.unit(1, "micrometer")
  4763. },
  4764. {
  4765. name: "Micro",
  4766. height: math.unit(1, "inch")
  4767. },
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(6, "feet"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(60, "feet")
  4776. }
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Fluoresce" },
  4781. {
  4782. front: {
  4783. height: math.unit(6, "feet"),
  4784. weight: math.unit(165, "lbs"),
  4785. name: "Front",
  4786. image: {
  4787. source: "./media/characters/fluoresce/front.svg"
  4788. }
  4789. }
  4790. },
  4791. [
  4792. {
  4793. name: "Micro",
  4794. height: math.unit(6, "cm")
  4795. },
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(5 + 7 / 12, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(56, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(1.9, "miles")
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Aurora" },
  4813. {
  4814. front: {
  4815. height: math.unit(9 + 6 / 12, "feet"),
  4816. weight: math.unit(523, "lbs"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/aurora/side.svg"
  4820. }
  4821. }
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(9 + 6 / 12, "feet")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(96, "feet"),
  4831. default: true
  4832. },
  4833. {
  4834. name: "Macro+",
  4835. height: math.unit(243, "feet")
  4836. },
  4837. ]
  4838. ))
  4839. characterMakers.push(() => makeCharacter(
  4840. { name: "Ranek" },
  4841. {
  4842. front: {
  4843. height: math.unit(194, "cm"),
  4844. weight: math.unit(90, "kg"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/ranek/front.svg"
  4848. }
  4849. },
  4850. side: {
  4851. height: math.unit(194, "cm"),
  4852. weight: math.unit(90, "kg"),
  4853. name: "Side",
  4854. image: {
  4855. source: "./media/characters/ranek/side.svg"
  4856. }
  4857. },
  4858. back: {
  4859. height: math.unit(194, "cm"),
  4860. weight: math.unit(90, "kg"),
  4861. name: "Back",
  4862. image: {
  4863. source: "./media/characters/ranek/back.svg"
  4864. }
  4865. },
  4866. feral: {
  4867. height: math.unit(30, "cm"),
  4868. weight: math.unit(1.6, "lbs"),
  4869. name: "Feral",
  4870. image: {
  4871. source: "./media/characters/ranek/feral.svg"
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(194, "cm"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(100, "meters")
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Andrew Cooper" },
  4889. {
  4890. front: {
  4891. height: math.unit(5 + 6 / 12, "feet"),
  4892. weight: math.unit(153, "lbs"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/andrew-cooper/front.svg"
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Nano",
  4902. height: math.unit(1, "mm")
  4903. },
  4904. {
  4905. name: "Micro",
  4906. height: math.unit(2, "inches")
  4907. },
  4908. {
  4909. name: "Normal",
  4910. height: math.unit(5 + 6 / 12, "feet"),
  4911. default: true
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Akane Sato" },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(180, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/akane-sato/front.svg",
  4924. extra: 1219 / 1140
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(180, "lbs"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/akane-sato/back.svg",
  4933. extra: 1219 / 1170
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(2.5, "meters")
  4941. },
  4942. {
  4943. name: "Macro",
  4944. height: math.unit(250, "meters"),
  4945. default: true
  4946. },
  4947. {
  4948. name: "Megamacro",
  4949. height: math.unit(25, "km")
  4950. },
  4951. ]
  4952. ))
  4953. characterMakers.push(() => makeCharacter(
  4954. { name: "Rook" },
  4955. {
  4956. front: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(65, "kg"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/rook/front.svg"
  4962. }
  4963. }
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8.8, "feet")
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(88, "feet"),
  4973. default: true
  4974. },
  4975. {
  4976. name: "Megamacro",
  4977. height: math.unit(8, "miles")
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Prodigy" },
  4983. {
  4984. front: {
  4985. height: math.unit(12 + 2 / 12, "feet"),
  4986. weight: math.unit(808, "lbs"),
  4987. name: "Front",
  4988. image: {
  4989. source: "./media/characters/prodigy/front.svg"
  4990. }
  4991. }
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(12 + 2 / 12, "feet"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(143, "feet")
  5002. },
  5003. {
  5004. name: "Macro+",
  5005. height: math.unit(400, "feet")
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Daniel" },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(225, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/daniel/front.svg"
  5018. }
  5019. },
  5020. leaning: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(225, "lbs"),
  5023. name: "Leaning",
  5024. image: {
  5025. source: "./media/characters/daniel/leaning.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Macro",
  5032. height: math.unit(1000, "feet"),
  5033. default: true
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Chiros" },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(88, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/chiros/front.svg",
  5046. extra: 306 / 226
  5047. }
  5048. },
  5049. side: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(88, "lbs"),
  5052. name: "Side",
  5053. image: {
  5054. source: "./media/characters/chiros/side.svg",
  5055. extra: 306 / 226
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(6, "cm"),
  5063. default: true
  5064. },
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Selka" },
  5069. {
  5070. front: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(100, "lbs"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/selka/front.svg",
  5076. extra: 947 / 887
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(5, "cm"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Verin" },
  5090. {
  5091. front: {
  5092. height: math.unit(8 + 3 / 12, "feet"),
  5093. weight: math.unit(424, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/verin/front.svg",
  5097. extra: 1845 / 1550
  5098. }
  5099. },
  5100. frontArmored: {
  5101. height: math.unit(8 + 3 / 12, "feet"),
  5102. weight: math.unit(424, "lbs"),
  5103. name: "Front (Armored)",
  5104. image: {
  5105. source: "./media/characters/verin/front-armor.svg",
  5106. extra: 1845 / 1550,
  5107. bottom: 0.01
  5108. }
  5109. },
  5110. back: {
  5111. height: math.unit(8 + 3 / 12, "feet"),
  5112. weight: math.unit(424, "lbs"),
  5113. name: "Back",
  5114. image: {
  5115. source: "./media/characters/verin/back.svg",
  5116. bottom: 0.1,
  5117. extra: 1
  5118. }
  5119. },
  5120. foot: {
  5121. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5122. name: "Foot",
  5123. image: {
  5124. source: "./media/characters/verin/foot.svg"
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(8 + 3 / 12, "feet")
  5132. },
  5133. {
  5134. name: "Minimacro",
  5135. height: math.unit(21, "feet"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(626, "feet")
  5141. },
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Sovrim Terraquian" },
  5146. {
  5147. front: {
  5148. height: math.unit(2.718, "meters"),
  5149. weight: math.unit(150, "lbs"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/sovrim-terraquian/front.svg"
  5153. }
  5154. },
  5155. back: {
  5156. height: math.unit(2.718, "meters"),
  5157. weight: math.unit(150, "lbs"),
  5158. name: "Back",
  5159. image: {
  5160. source: "./media/characters/sovrim-terraquian/back.svg"
  5161. }
  5162. }
  5163. },
  5164. [
  5165. {
  5166. name: "Micro",
  5167. height: math.unit(2, "inches")
  5168. },
  5169. {
  5170. name: "Small",
  5171. height: math.unit(1, "meter")
  5172. },
  5173. {
  5174. name: "Normal",
  5175. height: math.unit(Math.E, "meters"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Macro",
  5180. height: math.unit(20, "meters")
  5181. },
  5182. {
  5183. name: "Macro+",
  5184. height: math.unit(400, "meters")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Reece Silvermane" },
  5190. {
  5191. front: {
  5192. height: math.unit(7, "feet"),
  5193. weight: math.unit(489, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/reece-silvermane/front.svg",
  5197. bottom: 0.02,
  5198. extra: 1
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Macro",
  5205. height: math.unit(1.5, "miles"),
  5206. default: true
  5207. },
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Kane" },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(78, "kg"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/kane/front.svg",
  5219. extra: 978 / 899
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(2.1, "m"),
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(1, "km"),
  5231. default: true
  5232. },
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Tegon" },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(200, "kg"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/tegon/front.svg",
  5244. bottom: 0.01,
  5245. extra: 1
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Micro",
  5252. height: math.unit(1, "inch")
  5253. },
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(6 + 3 / 12, "feet"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(300, "feet")
  5262. },
  5263. {
  5264. name: "Megamacro",
  5265. height: math.unit(69, "miles")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Arcturax" },
  5271. {
  5272. side: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(2304, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/arcturax/side.svg",
  5278. extra: 790 / 376,
  5279. bottom: 0.01
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(2, "inch")
  5287. },
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(6, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(39, "feet"),
  5295. default: true
  5296. },
  5297. {
  5298. name: "Megamacro",
  5299. height: math.unit(7, "miles")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Sentri" },
  5305. {
  5306. front: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(50, "lbs"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/sentri/front.svg",
  5312. extra: 1750 / 1570,
  5313. bottom: 0.025
  5314. }
  5315. },
  5316. frontAlt: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(50, "lbs"),
  5319. name: "Front (Alt)",
  5320. image: {
  5321. source: "./media/characters/sentri/front-alt.svg",
  5322. extra: 1750 / 1570,
  5323. bottom: 0.025
  5324. }
  5325. },
  5326. },
  5327. [
  5328. {
  5329. name: "Normal",
  5330. height: math.unit(15, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(2500, "feet")
  5336. }
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Corvin" },
  5341. {
  5342. front: {
  5343. height: math.unit(5 + 8 / 12, "feet"),
  5344. weight: math.unit(130, "lbs"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/corvin/front.svg",
  5348. extra: 1803 / 1629
  5349. }
  5350. },
  5351. frontShirt: {
  5352. height: math.unit(5 + 8 / 12, "feet"),
  5353. weight: math.unit(130, "lbs"),
  5354. name: "Front (Shirt)",
  5355. image: {
  5356. source: "./media/characters/corvin/front-shirt.svg",
  5357. extra: 1803 / 1629
  5358. }
  5359. },
  5360. frontPoncho: {
  5361. height: math.unit(5 + 8 / 12, "feet"),
  5362. weight: math.unit(130, "lbs"),
  5363. name: "Front (Poncho)",
  5364. image: {
  5365. source: "./media/characters/corvin/front-poncho.svg",
  5366. extra: 1803 / 1629
  5367. }
  5368. },
  5369. side: {
  5370. height: math.unit(5 + 8 / 12, "feet"),
  5371. weight: math.unit(130, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/corvin/side.svg",
  5375. extra: 1012 / 945
  5376. }
  5377. },
  5378. back: {
  5379. height: math.unit(5 + 8 / 12, "feet"),
  5380. weight: math.unit(130, "lbs"),
  5381. name: "Back",
  5382. image: {
  5383. source: "./media/characters/corvin/back.svg",
  5384. extra: 1803 / 1629
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Micro",
  5391. height: math.unit(3, "inches")
  5392. },
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(5 + 8 / 12, "feet")
  5396. },
  5397. {
  5398. name: "Macro",
  5399. height: math.unit(300, "feet"),
  5400. default: true
  5401. },
  5402. {
  5403. name: "Megamacro",
  5404. height: math.unit(500, "miles")
  5405. }
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Q" },
  5410. {
  5411. front: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(135, "lbs"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/q/front.svg",
  5417. extra: 854 / 752,
  5418. bottom: 0.005
  5419. }
  5420. },
  5421. back: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(130, "lbs"),
  5424. name: "Back",
  5425. image: {
  5426. source: "./media/characters/q/back.svg",
  5427. extra: 854 / 752
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Macro",
  5434. height: math.unit(90, "feet"),
  5435. default: true
  5436. },
  5437. {
  5438. name: "Extra Macro",
  5439. height: math.unit(300, "feet"),
  5440. },
  5441. {
  5442. name: "BIG WALF",
  5443. height: math.unit(750, "feet"),
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Carley" },
  5449. {
  5450. front: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/carley/front.svg",
  5456. extra: 3927 / 3540,
  5457. bottom: 0.03
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(6 + 3 / 12, "feet")
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(185, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Megamacro",
  5473. height: math.unit(8, "miles"),
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Citrine" },
  5479. {
  5480. front: {
  5481. height: math.unit(3, "feet"),
  5482. weight: math.unit(28, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/citrine/front.svg"
  5486. }
  5487. }
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(3, "feet"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Aura Starwind" },
  5499. {
  5500. front: {
  5501. height: math.unit(14, "feet"),
  5502. weight: math.unit(1450, "kg"),
  5503. name: "Front",
  5504. image: {
  5505. source: "./media/characters/aura-starwind/front.svg",
  5506. extra: 1455 / 1335
  5507. }
  5508. },
  5509. side: {
  5510. height: math.unit(14, "feet"),
  5511. weight: math.unit(1450, "kg"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/aura-starwind/side.svg",
  5515. extra: 1654 / 1497
  5516. }
  5517. },
  5518. taur: {
  5519. height: math.unit(18, "feet"),
  5520. weight: math.unit(5500, "kg"),
  5521. name: "Taur",
  5522. image: {
  5523. source: "./media/characters/aura-starwind/taur.svg",
  5524. extra: 1760 / 1650
  5525. }
  5526. },
  5527. feral: {
  5528. height: math.unit(46, "feet"),
  5529. weight: math.unit(25000, "kg"),
  5530. name: "Feral",
  5531. image: {
  5532. source: "./media/characters/aura-starwind/feral.svg"
  5533. }
  5534. },
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(14, "feet"),
  5540. default: true
  5541. },
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(50, "meters")
  5545. },
  5546. {
  5547. name: "Megamacro",
  5548. height: math.unit(5000, "meters")
  5549. },
  5550. {
  5551. name: "Gigamacro",
  5552. height: math.unit(100000, "kilometers")
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Rivet" },
  5558. {
  5559. front: {
  5560. height: math.unit(2 + 7 / 12, "feet"),
  5561. weight: math.unit(32, "lbs"),
  5562. name: "Front",
  5563. image: {
  5564. source: "./media/characters/rivet/front.svg",
  5565. extra: 1716 / 1658,
  5566. bottom: 0.03
  5567. }
  5568. },
  5569. foot: {
  5570. height: math.unit(0.551, "feet"),
  5571. name: "Rivet's Foot",
  5572. image: {
  5573. source: "./media/characters/rivet/foot.svg"
  5574. },
  5575. rename: true
  5576. }
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(1.5, "inches"),
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(2 + 7 / 12, "feet"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(85, "feet")
  5591. },
  5592. {
  5593. name: "Megamacro",
  5594. height: math.unit(2.2, "km")
  5595. }
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Coffee" },
  5600. {
  5601. front: {
  5602. height: math.unit(5 + 9 / 12, "feet"),
  5603. weight: math.unit(150, "lbs"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/coffee/front.svg",
  5607. extra: 3666 / 3032,
  5608. bottom: 0.04
  5609. }
  5610. },
  5611. foot: {
  5612. height: math.unit(1.29, "feet"),
  5613. name: "Foot",
  5614. image: {
  5615. source: "./media/characters/coffee/foot.svg"
  5616. }
  5617. },
  5618. },
  5619. [
  5620. {
  5621. name: "Micro",
  5622. height: math.unit(2, "inches"),
  5623. },
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(5 + 9 / 12, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(800, "feet")
  5632. },
  5633. {
  5634. name: "Megamacro",
  5635. height: math.unit(25, "miles")
  5636. }
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Chari-Gal" },
  5641. {
  5642. front: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(200, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/chari-gal/front.svg",
  5648. extra: 1568 / 1385,
  5649. bottom: 0.047
  5650. }
  5651. },
  5652. gigantamax: {
  5653. height: math.unit(6 * 16, "feet"),
  5654. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  5655. name: "Gigantamax",
  5656. image: {
  5657. source: "./media/characters/chari-gal/gigantamax.svg",
  5658. extra: 1124 / 888,
  5659. bottom: 0.03
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(5 + 7 / 12, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(200, "feet"),
  5671. default: true
  5672. }
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Nova" },
  5677. {
  5678. front: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(150, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/nova/front.svg",
  5684. extra: 5000 / 4722,
  5685. bottom: 0.02
  5686. }
  5687. }
  5688. },
  5689. [
  5690. {
  5691. name: "Micro-",
  5692. height: math.unit(0.8, "inches")
  5693. },
  5694. {
  5695. name: "Micro",
  5696. height: math.unit(2, "inches"),
  5697. default: true
  5698. },
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Argent" },
  5703. {
  5704. front: {
  5705. height: math.unit(3 + 1 / 12, "feet"),
  5706. weight: math.unit(21.7, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/argent/front.svg",
  5710. extra: 1565 / 1416,
  5711. bottom: 0.01
  5712. }
  5713. }
  5714. },
  5715. [
  5716. {
  5717. name: "Micro",
  5718. height: math.unit(2, "inches")
  5719. },
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(3 + 1 / 12, "feet"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Macro",
  5727. height: math.unit(120, "feet")
  5728. },
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Mira al-Cul" },
  5733. {
  5734. lamp: {
  5735. height: math.unit(7 * 1559 / 989, "feet"),
  5736. name: "Magic Lamp",
  5737. image: {
  5738. source: "./media/characters/mira-al-cul/lamp.svg",
  5739. extra: 1617 / 1559
  5740. }
  5741. },
  5742. front: {
  5743. height: math.unit(7, "feet"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/mira-al-cul/front.svg",
  5747. extra: 1044 / 990
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Heavily Restricted",
  5754. height: math.unit(7 * 1559 / 989, "feet")
  5755. },
  5756. {
  5757. name: "Freshly Freed",
  5758. height: math.unit(50 * 1559 / 989, "feet")
  5759. },
  5760. {
  5761. name: "World Encompassing",
  5762. height: math.unit(10000 * 1559 / 989, "miles")
  5763. },
  5764. {
  5765. name: "Galactic",
  5766. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5767. },
  5768. {
  5769. name: "Palmed Universe",
  5770. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5771. default: true
  5772. },
  5773. {
  5774. name: "Multiversal Matriarch",
  5775. height: math.unit(8.87e10, "yottameters")
  5776. },
  5777. {
  5778. name: "Void Mother",
  5779. height: math.unit(3.14e110, "yottaparsecs")
  5780. },
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Kuro-shi Uchū" },
  5785. {
  5786. front: {
  5787. height: math.unit(17 + 1 / 12, "feet"),
  5788. weight: math.unit(476.2 * 5, "lbs"),
  5789. name: "Front",
  5790. image: {
  5791. source: "./media/characters/kuro-shi-uchū/front.svg",
  5792. extra: 2329 / 1835,
  5793. bottom: 0.02
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Micro",
  5800. height: math.unit(2, "inches")
  5801. },
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(12, "meters")
  5805. },
  5806. {
  5807. name: "Planetary",
  5808. height: math.unit(0.00929, "AU"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Universal",
  5813. height: math.unit(20, "gigaparsecs")
  5814. },
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Katherine" },
  5819. {
  5820. front: {
  5821. height: math.unit(5 + 2 / 12, "feet"),
  5822. weight: math.unit(120, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/katherine/front.svg",
  5826. extra: 2075 / 1969
  5827. }
  5828. },
  5829. dress: {
  5830. height: math.unit(5 + 2 / 12, "feet"),
  5831. weight: math.unit(120, "lbs"),
  5832. name: "Dress",
  5833. image: {
  5834. source: "./media/characters/katherine/dress.svg",
  5835. extra: 2258 / 2064
  5836. }
  5837. },
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(1, "inches"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(5 + 2 / 12, "feet")
  5848. },
  5849. {
  5850. name: "Macro",
  5851. height: math.unit(100, "meters")
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(80, "miles")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Yevis" },
  5861. {
  5862. front: {
  5863. height: math.unit(7 + 8 / 12, "feet"),
  5864. weight: math.unit(250, "lbs"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/yevis/front.svg",
  5868. extra: 1938 / 1755
  5869. }
  5870. }
  5871. },
  5872. [
  5873. {
  5874. name: "Mortal",
  5875. height: math.unit(7 + 8 / 12, "feet")
  5876. },
  5877. {
  5878. name: "Battle",
  5879. height: math.unit(25 + 11 / 12, "feet")
  5880. },
  5881. {
  5882. name: "Wrath",
  5883. height: math.unit(1654 + 11 / 12, "feet")
  5884. },
  5885. {
  5886. name: "Planet Destroyer",
  5887. height: math.unit(12000, "miles")
  5888. },
  5889. {
  5890. name: "Galaxy Conqueror",
  5891. height: math.unit(1.45, "zettameters"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Universal War",
  5896. height: math.unit(184, "gigaparsecs")
  5897. },
  5898. {
  5899. name: "Eternity War",
  5900. height: math.unit(1.98e55, "yottaparsecs")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Xavier" },
  5906. {
  5907. front: {
  5908. height: math.unit(5 + 8 / 12, "feet"),
  5909. weight: math.unit(63, "kg"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/xavier/front.svg",
  5913. extra: 944 / 883
  5914. }
  5915. },
  5916. frontStretch: {
  5917. height: math.unit(5 + 8 / 12, "feet"),
  5918. weight: math.unit(63, "kg"),
  5919. name: "Stretching",
  5920. image: {
  5921. source: "./media/characters/xavier/front-stretch.svg",
  5922. extra: 962 / 820
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(5 + 8 / 12, "feet")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(100, "meters"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "McLargeHuge",
  5938. height: math.unit(10, "miles")
  5939. },
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Joshii" },
  5944. {
  5945. front: {
  5946. height: math.unit(5 + 5 / 12, "feet"),
  5947. weight: math.unit(150, "lb"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/joshii/front.svg"
  5951. }
  5952. },
  5953. foot: {
  5954. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  5955. name: "Foot",
  5956. image: {
  5957. source: "./media/characters/joshii/foot.svg"
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "inches")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5 + 5 / 12, "feet"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(785, "feet")
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(24.5, "miles")
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Goddess Elizabeth" },
  5983. {
  5984. front: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(150, "lb"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/goddess-elizabeth/front.svg",
  5990. extra: 1800 / 1525,
  5991. bottom: 0.005
  5992. }
  5993. },
  5994. foot: {
  5995. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  5996. name: "Foot",
  5997. image: {
  5998. source: "./media/characters/goddess-elizabeth/foot.svg"
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Micro",
  6005. height: math.unit(12, "feet")
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(80, "miles"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(15000, "parsecs")
  6015. },
  6016. ]
  6017. ))
  6018. characterMakers.push(() => makeCharacter(
  6019. { name: "Kara" },
  6020. {
  6021. front: {
  6022. height: math.unit(5 + 9 / 12, "feet"),
  6023. weight: math.unit(144, "lb"),
  6024. name: "Front",
  6025. image: {
  6026. source: "./media/characters/kara/front.svg"
  6027. }
  6028. },
  6029. feet: {
  6030. height: math.unit(6 / 6.765, "feet"),
  6031. name: "Kara's Feet",
  6032. rename: true,
  6033. image: {
  6034. source: "./media/characters/kara/feet.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(5 + 9 / 12, "feet")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(174, "feet"),
  6046. default: true
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Tyrone" },
  6052. {
  6053. front: {
  6054. height: math.unit(18, "feet"),
  6055. weight: math.unit(4050, "lb"),
  6056. name: "Front",
  6057. image: {
  6058. source: "./media/characters/tyrone/front.svg",
  6059. extra: 2520 / 2402,
  6060. bottom: 0.025
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(18, "feet"),
  6068. default: true
  6069. },
  6070. {
  6071. name: "Macro",
  6072. height: math.unit(300, "feet")
  6073. },
  6074. ]
  6075. ))
  6076. characterMakers.push(() => makeCharacter(
  6077. { name: "Danny" },
  6078. {
  6079. front: {
  6080. height: math.unit(7 + 8 / 12, "feet"),
  6081. weight: math.unit(120, "lb"),
  6082. name: "Front",
  6083. image: {
  6084. source: "./media/characters/danny/front.svg",
  6085. extra: 1490 / 1350
  6086. }
  6087. },
  6088. back: {
  6089. height: math.unit(7 + 8 / 12, "feet"),
  6090. weight: math.unit(120, "lb"),
  6091. name: "Back",
  6092. image: {
  6093. source: "./media/characters/danny/back.svg",
  6094. extra: 1490 / 1350
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(7 + 8 / 12, "feet"),
  6102. default: true
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Mallow" },
  6108. {
  6109. front: {
  6110. height: math.unit(3.5, "inches"),
  6111. weight: math.unit(19, "grams"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/mallow/front.svg",
  6115. extra: 471 / 431
  6116. }
  6117. },
  6118. back: {
  6119. height: math.unit(3.5, "inches"),
  6120. weight: math.unit(19, "grams"),
  6121. name: "Back",
  6122. image: {
  6123. source: "./media/characters/mallow/back.svg",
  6124. extra: 471 / 431
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(3.5, "inches"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Starry Aqua" },
  6138. {
  6139. front: {
  6140. height: math.unit(9, "feet"),
  6141. weight: math.unit(230, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/starry-aqua/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(9, "feet"),
  6149. weight: math.unit(230, "kg"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/starry-aqua/back.svg"
  6153. }
  6154. },
  6155. hand: {
  6156. height: math.unit(9 * 0.1168, "feet"),
  6157. name: "Hand",
  6158. image: {
  6159. source: "./media/characters/starry-aqua/hand.svg"
  6160. }
  6161. },
  6162. foot: {
  6163. height: math.unit(9 * 0.18, "feet"),
  6164. name: "Foot",
  6165. image: {
  6166. source: "./media/characters/starry-aqua/foot.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Micro",
  6173. height: math.unit(3, "inches")
  6174. },
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(9, "feet")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(300, "feet"),
  6182. default: true
  6183. },
  6184. {
  6185. name: "Megamacro",
  6186. height: math.unit(3200, "feet")
  6187. }
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Luka" },
  6192. {
  6193. front: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(230, "lb"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/luka/front.svg",
  6199. extra: 1,
  6200. bottom: 0.025
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(12 + 8 / 12, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Minimacro",
  6212. height: math.unit(20, "feet")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(250, "feet")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(5, "miles")
  6221. },
  6222. {
  6223. name: "Gigamacro",
  6224. height: math.unit(8000, "miles")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Natalie Nightring" },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(150, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/natalie-nightring/front.svg",
  6237. extra: 1,
  6238. bottom: 0.06
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Uh Oh",
  6245. height: math.unit(0.1, "mm")
  6246. },
  6247. {
  6248. name: "Small",
  6249. height: math.unit(3, "inches")
  6250. },
  6251. {
  6252. name: "Human Scale",
  6253. height: math.unit(6, "feet")
  6254. },
  6255. {
  6256. name: "Librarian",
  6257. height: math.unit(50, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Immense",
  6262. height: math.unit(200, "miles")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Danni Rosie" },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(180, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/danni-rosie/front.svg",
  6275. extra: 1260 / 1128,
  6276. bottom: 0.022
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(2, "inches"),
  6284. default: true
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Samantha Kruse" },
  6290. {
  6291. front: {
  6292. height: math.unit(5 + 9 / 12, "feet"),
  6293. weight: math.unit(220, "lb"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/samantha-kruse/front.svg",
  6297. extra: (985 / 935),
  6298. bottom: 0.03
  6299. }
  6300. },
  6301. frontUndressed: {
  6302. height: math.unit(5 + 9 / 12, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Front (Undressed)",
  6305. image: {
  6306. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6307. extra: (973 / 923),
  6308. bottom: 0.025
  6309. }
  6310. },
  6311. fat: {
  6312. height: math.unit(5 + 9 / 12, "feet"),
  6313. weight: math.unit(900, "lb"),
  6314. name: "Front (Fat)",
  6315. image: {
  6316. source: "./media/characters/samantha-kruse/fat.svg",
  6317. extra: 2688 / 2561
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 9 / 12, "feet"),
  6325. default: true
  6326. }
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Amelia Rosie" },
  6331. {
  6332. back: {
  6333. height: math.unit(5 + 4 / 12, "feet"),
  6334. weight: math.unit(4963, "lb"),
  6335. name: "Back",
  6336. image: {
  6337. source: "./media/characters/amelia-rosie/back.svg",
  6338. extra: 1113 / 963,
  6339. bottom: 0.01
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Level 0",
  6346. height: math.unit(5 + 4 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Level 1",
  6350. height: math.unit(164597, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Level 2",
  6355. height: math.unit(956243, "miles")
  6356. },
  6357. {
  6358. name: "Level 3",
  6359. height: math.unit(29421709423, "miles")
  6360. },
  6361. {
  6362. name: "Level 4",
  6363. height: math.unit(154, "lightyears")
  6364. },
  6365. {
  6366. name: "Level 5",
  6367. height: math.unit(4738272, "lightyears")
  6368. },
  6369. {
  6370. name: "Level 6",
  6371. height: math.unit(145787152896, "lightyears")
  6372. },
  6373. ]
  6374. ))
  6375. characterMakers.push(() => makeCharacter(
  6376. { name: "Rook Kitara" },
  6377. {
  6378. front: {
  6379. height: math.unit(5 + 11 / 12, "feet"),
  6380. weight: math.unit(65, "kg"),
  6381. name: "Front",
  6382. image: {
  6383. source: "./media/characters/rook-kitara/front.svg",
  6384. extra: 1347 / 1274,
  6385. bottom: 0.005
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Totally Unfair",
  6392. height: math.unit(1.8, "mm")
  6393. },
  6394. {
  6395. name: "Lap Rookie",
  6396. height: math.unit(1.4, "feet")
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(5 + 11 / 12, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "How Did This Happen",
  6405. height: math.unit(80, "miles")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Pisces" },
  6411. {
  6412. front: {
  6413. height: math.unit(7, "feet"),
  6414. weight: math.unit(300, "lb"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/pisces/front.svg",
  6418. extra: 2255 / 2115,
  6419. bottom: 0.03
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(7, "feet"),
  6424. weight: math.unit(300, "lb"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/pisces/back.svg",
  6428. extra: 2146 / 2055,
  6429. bottom: 0.04
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(7, "feet"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Swimming Pool",
  6441. height: math.unit(12.2, "meters")
  6442. },
  6443. {
  6444. name: "Olympic Swimming Pool",
  6445. height: math.unit(56.3, "meters")
  6446. },
  6447. {
  6448. name: "Lake Superior",
  6449. height: math.unit(93900, "meters")
  6450. },
  6451. {
  6452. name: "Mediterranean Sea",
  6453. height: math.unit(644457, "meters")
  6454. },
  6455. {
  6456. name: "World's Oceans",
  6457. height: math.unit(4567491, "meters")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Zelas" },
  6463. {
  6464. front: {
  6465. height: math.unit(2.3, "meters"),
  6466. weight: math.unit(120, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/zelas/front.svg"
  6470. }
  6471. },
  6472. side: {
  6473. height: math.unit(2.3, "meters"),
  6474. weight: math.unit(120, "kg"),
  6475. name: "Side",
  6476. image: {
  6477. source: "./media/characters/zelas/side.svg"
  6478. }
  6479. },
  6480. back: {
  6481. height: math.unit(2.3, "meters"),
  6482. weight: math.unit(120, "kg"),
  6483. name: "Back",
  6484. image: {
  6485. source: "./media/characters/zelas/back.svg"
  6486. }
  6487. },
  6488. foot: {
  6489. height: math.unit(1.116, "feet"),
  6490. name: "Foot",
  6491. image: {
  6492. source: "./media/characters/zelas/foot.svg"
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(2.3, "meters")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(30, "meters"),
  6504. default: true
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Talbot" },
  6510. {
  6511. front: {
  6512. height: math.unit(1, "inch"),
  6513. weight: math.unit(0.21, "grams"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/talbot/front.svg",
  6517. extra: 594 / 544
  6518. }
  6519. },
  6520. },
  6521. [
  6522. {
  6523. name: "Micro",
  6524. height: math.unit(1, "inch"),
  6525. default: true
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Fliss" },
  6531. {
  6532. front: {
  6533. height: math.unit(3 + 3 / 12, "feet"),
  6534. weight: math.unit(51.8, "lb"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/fliss/front.svg",
  6538. extra: 840 / 640
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Teeny Tiny",
  6545. height: math.unit(1, "mm")
  6546. },
  6547. {
  6548. name: "Small",
  6549. height: math.unit(1, "inch"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Standard Sylveon",
  6554. height: math.unit(3 + 3 / 12, "feet")
  6555. },
  6556. {
  6557. name: "Large Nuisance",
  6558. height: math.unit(33, "feet")
  6559. },
  6560. {
  6561. name: "City Filler",
  6562. height: math.unit(3000, "feet")
  6563. },
  6564. {
  6565. name: "New Horizon",
  6566. height: math.unit(6000, "miles")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Fleta" },
  6572. {
  6573. front: {
  6574. height: math.unit(5, "cm"),
  6575. weight: math.unit(1.94, "g"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/fleta/front.svg",
  6579. extra: 835 / 803
  6580. }
  6581. },
  6582. back: {
  6583. height: math.unit(5, "cm"),
  6584. weight: math.unit(1.94, "g"),
  6585. name: "Back",
  6586. image: {
  6587. source: "./media/characters/fleta/back.svg",
  6588. extra: 835 / 803
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Micro",
  6595. height: math.unit(5, "cm"),
  6596. default: true
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Dominic" },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(225, "lb"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/dominic/front.svg",
  6609. extra: 1770 / 1620,
  6610. bottom: 0.025
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(225, "lb"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/dominic/back.svg",
  6619. extra: 1745 / 1620,
  6620. bottom: 0.065
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Nano",
  6627. height: math.unit(0.1, "mm")
  6628. },
  6629. {
  6630. name: "Micro-",
  6631. height: math.unit(1, "mm")
  6632. },
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(4, "inches")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(6 + 4 / 12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(115, "feet")
  6645. },
  6646. {
  6647. name: "Macro+",
  6648. height: math.unit(955, "feet")
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(8990, "feet")
  6653. },
  6654. {
  6655. name: "Gigmacro",
  6656. height: math.unit(9310, "miles")
  6657. },
  6658. {
  6659. name: "Teramacro",
  6660. height: math.unit(1567005010, "miles")
  6661. },
  6662. {
  6663. name: "Examacro",
  6664. height: math.unit(1425, "parsecs")
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Major Colonel" },
  6670. {
  6671. front: {
  6672. height: math.unit(400, "feet"),
  6673. weight: math.unit(44444444, "lb"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/major-colonel/front.svg"
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(400, "feet"),
  6681. weight: math.unit(44444444, "lb"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/major-colonel/back.svg"
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(400, "feet"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Axel Lycan" },
  6698. {
  6699. front: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(120, "lb"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/axel-lycan/front.svg",
  6705. extra: 1,
  6706. bottom: 0.08
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(1, "km"),
  6714. default: true
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Vanrel (Hyena)" },
  6720. {
  6721. front: {
  6722. height: math.unit(5 + 9 / 12, "feet"),
  6723. weight: math.unit(175, "lb"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/vanrel-hyena/front.svg",
  6727. extra: 1086 / 1010,
  6728. bottom: 0.04
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(5 + 9 / 12, "feet"),
  6736. default: true
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Abbott Absol" },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(103, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/abbott-absol/front.svg",
  6749. extra: 2010 / 1842
  6750. }
  6751. },
  6752. },
  6753. [
  6754. {
  6755. name: "Megamicro",
  6756. height: math.unit(0.1, "mm")
  6757. },
  6758. {
  6759. name: "Micro",
  6760. height: math.unit(1, "inch")
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(6, "feet"),
  6765. default: true
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Hector" },
  6771. {
  6772. front: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(264, "lb"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/hector/front.svg",
  6778. extra: 2280 / 2130,
  6779. bottom: 0.07
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Normal",
  6786. height: math.unit(12.25, "foot"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(160, "feet")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Sal" },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(150, "lb"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/sal/front.svg",
  6804. extra: 1846 / 1699,
  6805. bottom: 0.04
  6806. }
  6807. },
  6808. },
  6809. [
  6810. {
  6811. name: "Megamacro",
  6812. height: math.unit(10, "miles"),
  6813. default: true
  6814. },
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Ranger" },
  6819. {
  6820. front: {
  6821. height: math.unit(3, "meters"),
  6822. weight: math.unit(450, "kg"),
  6823. name: "front",
  6824. image: {
  6825. source: "./media/characters/ranger/front.svg",
  6826. extra: 2401 / 2243,
  6827. bottom: 0.05
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(3, "meters"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Theresa" },
  6841. {
  6842. front: {
  6843. height: math.unit(14, "feet"),
  6844. weight: math.unit(800, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/theresa/front.svg",
  6848. extra: 3575 / 3346,
  6849. bottom: 0.03
  6850. }
  6851. },
  6852. },
  6853. [
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(14, "feet"),
  6857. default: true
  6858. },
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Ine" },
  6863. {
  6864. front: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(3, "kg"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/ine/front.svg",
  6870. extra: 678 / 539,
  6871. bottom: 0.023
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(2.265, "feet"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Vial" },
  6885. {
  6886. front: {
  6887. height: math.unit(5, "feet"),
  6888. weight: math.unit(30, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/vial/front.svg",
  6892. extra: 1365 / 1277,
  6893. bottom: 0.04
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(5, "feet"),
  6901. default: true
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Rovoska" },
  6907. {
  6908. side: {
  6909. height: math.unit(3.4, "meters"),
  6910. weight: math.unit(1000, "lb"),
  6911. name: "Side",
  6912. image: {
  6913. source: "./media/characters/rovoska/side.svg",
  6914. extra: 4403 / 1515
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(3.4, "meters"),
  6922. default: true
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Gunner Rotthbauer" },
  6928. {
  6929. front: {
  6930. height: math.unit(8, "feet"),
  6931. weight: math.unit(315, "lb"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/gunner-rotthbauer/front.svg"
  6935. }
  6936. },
  6937. back: {
  6938. height: math.unit(8, "feet"),
  6939. weight: math.unit(315, "lb"),
  6940. name: "Back",
  6941. image: {
  6942. source: "./media/characters/gunner-rotthbauer/back.svg"
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Micro",
  6949. height: math.unit(3.5, "inches")
  6950. },
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(8, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(250, "feet")
  6959. },
  6960. {
  6961. name: "Megamacro",
  6962. height: math.unit(1, "AU")
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Allatia" },
  6968. {
  6969. front: {
  6970. height: math.unit(5 + 5 / 12, "feet"),
  6971. weight: math.unit(140, "lb"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/allatia/front.svg",
  6975. extra: 1227 / 1180,
  6976. bottom: 0.027
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(5 + 5 / 12, "feet")
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(250, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Megamacro",
  6992. height: math.unit(8, "miles")
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Tene" },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(120, "lb"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/tene/front.svg",
  7005. extra: 1728 / 1578,
  7006. bottom: 0.022
  7007. }
  7008. },
  7009. stomping: {
  7010. height: math.unit(2.025, "meters"),
  7011. weight: math.unit(120, "lb"),
  7012. name: "Stomping",
  7013. image: {
  7014. source: "./media/characters/tene/stomping.svg",
  7015. extra: 938 / 873,
  7016. bottom: 0.01
  7017. }
  7018. },
  7019. sitting: {
  7020. height: math.unit(1, "meter"),
  7021. weight: math.unit(120, "lb"),
  7022. name: "Sitting",
  7023. image: {
  7024. source: "./media/characters/tene/sitting.svg",
  7025. extra: 437 / 415,
  7026. bottom: 0.1
  7027. }
  7028. },
  7029. feral: {
  7030. height: math.unit(3.9, "feet"),
  7031. weight: math.unit(250, "lb"),
  7032. name: "Feral",
  7033. image: {
  7034. source: "./media/characters/tene/feral.svg",
  7035. extra: 717 / 458,
  7036. bottom: 0.179
  7037. }
  7038. },
  7039. },
  7040. [
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(6, "feet")
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(300, "feet"),
  7048. default: true
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(5, "miles")
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Evander" },
  7058. {
  7059. side: {
  7060. height: math.unit(6, "feet"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/evander/side.svg",
  7064. extra: 877 / 477
  7065. }
  7066. },
  7067. },
  7068. [
  7069. {
  7070. name: "Normal",
  7071. height: math.unit(0.83, "meters"),
  7072. default: true
  7073. },
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7078. {
  7079. front: {
  7080. height: math.unit(12, "feet"),
  7081. weight: math.unit(1000, "lb"),
  7082. name: "Front",
  7083. image: {
  7084. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7085. extra: 1762 / 1611
  7086. }
  7087. },
  7088. back: {
  7089. height: math.unit(12, "feet"),
  7090. weight: math.unit(1000, "lb"),
  7091. name: "Back",
  7092. image: {
  7093. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7094. extra: 1762 / 1611
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(12, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Kaiju",
  7106. height: math.unit(150, "feet")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Zero Alurus" },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(150, "lb"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/zero-alurus/front.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(150, "lb"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/zero-alurus/back.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(5 + 10 / 12, "feet")
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(60, "feet"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Macro+",
  7142. height: math.unit(450, "feet")
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Mega Shi" },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(200, "lb"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/mega-shi/front.svg",
  7155. extra: 1279 / 1250,
  7156. bottom: 0.02
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(200, "lb"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/mega-shi/back.svg",
  7165. extra: 1279 / 1250,
  7166. bottom: 0.02
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Micro",
  7173. height: math.unit(16 + 6 / 12, "feet")
  7174. },
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(660, "feet"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Megamacro",
  7182. height: math.unit(10, "miles")
  7183. },
  7184. {
  7185. name: "Planetary Launch",
  7186. height: math.unit(500, "miles")
  7187. },
  7188. {
  7189. name: "Interstellar",
  7190. height: math.unit(1e9, "miles")
  7191. },
  7192. {
  7193. name: "Leaving the Universe",
  7194. height: math.unit(1, "gigaparsec")
  7195. },
  7196. {
  7197. name: "Travelling Universes",
  7198. height: math.unit(30e15, "parsecs")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Odyssey" },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(150, "lb"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/odyssey/front.svg",
  7211. extra: 1782 / 1582,
  7212. bottom: 0.01
  7213. }
  7214. },
  7215. side: {
  7216. height: math.unit(5.6, "feet"),
  7217. weight: math.unit(140, "lb"),
  7218. name: "Side",
  7219. image: {
  7220. source: "./media/characters/odyssey/side.svg",
  7221. extra: 6462 / 5700
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5 + 4 / 12, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(1, "km")
  7233. },
  7234. {
  7235. name: "Megamacro",
  7236. height: math.unit(3000, "km")
  7237. },
  7238. {
  7239. name: "Gigamacro",
  7240. height: math.unit(1, "AU"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Omniversal",
  7245. height: math.unit(100e14, "lightyears")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Mekuto" },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(300, "lb"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/mekuto/front.svg",
  7258. extra: 921 / 832,
  7259. bottom: 0.03
  7260. }
  7261. },
  7262. hand: {
  7263. height: math.unit(6 / 10.24, "feet"),
  7264. name: "Hand",
  7265. image: {
  7266. source: "./media/characters/mekuto/hand.svg"
  7267. }
  7268. },
  7269. foot: {
  7270. height: math.unit(6 / 5.05, "feet"),
  7271. name: "Foot",
  7272. image: {
  7273. source: "./media/characters/mekuto/foot.svg"
  7274. }
  7275. },
  7276. },
  7277. [
  7278. {
  7279. name: "Minimicro",
  7280. height: math.unit(0.2, "inches")
  7281. },
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(1.5, "inches")
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(5 + 11 / 12, "feet"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Minimacro",
  7293. height: math.unit(17 + 9 / 12, "feet")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(177.5, "feet")
  7298. },
  7299. {
  7300. name: "Megamacro",
  7301. height: math.unit(152, "miles")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Dafydd Tomos" },
  7307. {
  7308. front: {
  7309. height: math.unit(6.5, "inches"),
  7310. weight: math.unit(13, "oz"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/dafydd-tomos/front.svg",
  7314. extra: 2990 / 2603,
  7315. bottom: 0.03
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(6.5, "inches"),
  7323. default: true
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Splinter" },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(150, "lb"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/splinter/front.svg",
  7336. extra: 2990 / 2882,
  7337. bottom: 0.04
  7338. }
  7339. },
  7340. back: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(150, "lb"),
  7343. name: "Back",
  7344. image: {
  7345. source: "./media/characters/splinter/back.svg",
  7346. extra: 2990 / 2882,
  7347. bottom: 0.04
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6, "feet")
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(230, "meters"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "SnowGabumon" },
  7365. {
  7366. front: {
  7367. height: math.unit(4 + 10 / 12, "feet"),
  7368. weight: math.unit(480, "lb"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/snow-gabumon/front.svg",
  7372. extra: 1140 / 963,
  7373. bottom: 0.058
  7374. }
  7375. },
  7376. back: {
  7377. height: math.unit(4 + 10 / 12, "feet"),
  7378. weight: math.unit(480, "lb"),
  7379. name: "Back",
  7380. image: {
  7381. source: "./media/characters/snow-gabumon/back.svg",
  7382. extra: 1115 / 962,
  7383. bottom: 0.041
  7384. }
  7385. },
  7386. frontUndresed: {
  7387. height: math.unit(4 + 10 / 12, "feet"),
  7388. weight: math.unit(480, "lb"),
  7389. name: "Front (Undressed)",
  7390. image: {
  7391. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7392. extra: 1061 / 960,
  7393. bottom: 0.045
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Micro",
  7400. height: math.unit(1, "inch")
  7401. },
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(4 + 10 / 12, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(200, "feet")
  7410. },
  7411. {
  7412. name: "Megamacro",
  7413. height: math.unit(120, "miles")
  7414. },
  7415. {
  7416. name: "Gigamacro",
  7417. height: math.unit(9800, "miles")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Moody" },
  7423. {
  7424. front: {
  7425. height: math.unit(1.7, "meters"),
  7426. weight: math.unit(140, "lb"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/moody/front.svg",
  7430. extra: 3226 / 3007,
  7431. bottom: 0.087
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Micro",
  7438. height: math.unit(1, "mm")
  7439. },
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(1.7, "meters"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(80, "meters")
  7448. },
  7449. {
  7450. name: "Macro+",
  7451. height: math.unit(500, "meters")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Zyas" },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(150, "lb"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/zyas/front.svg",
  7464. extra: 1180 / 1120,
  7465. bottom: 0.045
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(10, "feet"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(500, "feet")
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(5, "miles")
  7482. },
  7483. {
  7484. name: "Teramacro",
  7485. height: math.unit(150000, "miles")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Cuon" },
  7491. {
  7492. front: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(150, "lb"),
  7495. name: "Front",
  7496. image: {
  7497. source: "./media/characters/cuon/front.svg",
  7498. extra: 1390 / 1320,
  7499. bottom: 0.008
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Micro",
  7506. height: math.unit(3, "inches")
  7507. },
  7508. {
  7509. name: "Normal",
  7510. height: math.unit(18 + 9 / 12, "feet"),
  7511. default: true
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(360, "feet")
  7516. },
  7517. {
  7518. name: "Megamacro",
  7519. height: math.unit(360, "miles")
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Nyanuxk" },
  7525. {
  7526. front: {
  7527. height: math.unit(2.4, "meters"),
  7528. weight: math.unit(70, "kg"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/nyanuxk/front.svg",
  7532. extra: 1172 / 1084,
  7533. bottom: 0.065
  7534. }
  7535. },
  7536. side: {
  7537. height: math.unit(2.4, "meters"),
  7538. weight: math.unit(70, "kg"),
  7539. name: "Side",
  7540. image: {
  7541. source: "./media/characters/nyanuxk/side.svg",
  7542. extra: 1190 / 1132,
  7543. bottom: 0.007
  7544. }
  7545. },
  7546. back: {
  7547. height: math.unit(2.4, "meters"),
  7548. weight: math.unit(70, "kg"),
  7549. name: "Back",
  7550. image: {
  7551. source: "./media/characters/nyanuxk/back.svg",
  7552. extra: 1200 / 1141,
  7553. bottom: 0.015
  7554. }
  7555. },
  7556. foot: {
  7557. height: math.unit(0.52, "meters"),
  7558. name: "Foot",
  7559. image: {
  7560. source: "./media/characters/nyanuxk/foot.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Micro",
  7567. height: math.unit(2, "cm")
  7568. },
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(2.4, "meters"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Smaller Macro",
  7576. height: math.unit(120, "meters")
  7577. },
  7578. {
  7579. name: "Bigger Macro",
  7580. height: math.unit(1.2, "km")
  7581. },
  7582. {
  7583. name: "Megamacro",
  7584. height: math.unit(15, "kilometers")
  7585. },
  7586. {
  7587. name: "Gigamacro",
  7588. height: math.unit(2000, "km")
  7589. },
  7590. {
  7591. name: "Teramacro",
  7592. height: math.unit(500000, "km")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Ailbhe" },
  7598. {
  7599. side: {
  7600. height: math.unit(6, "feet"),
  7601. name: "Side",
  7602. image: {
  7603. source: "./media/characters/ailbhe/side.svg",
  7604. extra: 757 / 464,
  7605. bottom: 0.041
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(1.07, "meters"),
  7613. default: true
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Zevulfius" },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(120, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/zevulfius/front.svg",
  7626. extra: 965 / 903
  7627. }
  7628. },
  7629. side: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(120, "kg"),
  7632. name: "Side",
  7633. image: {
  7634. source: "./media/characters/zevulfius/side.svg",
  7635. extra: 939 / 900
  7636. }
  7637. },
  7638. back: {
  7639. height: math.unit(6, "feet"),
  7640. weight: math.unit(120, "kg"),
  7641. name: "Back",
  7642. image: {
  7643. source: "./media/characters/zevulfius/back.svg",
  7644. extra: 918 / 854,
  7645. bottom: 0.005
  7646. }
  7647. },
  7648. foot: {
  7649. height: math.unit(6 / 3.72, "feet"),
  7650. name: "Foot",
  7651. image: {
  7652. source: "./media/characters/zevulfius/foot.svg"
  7653. }
  7654. },
  7655. },
  7656. [
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(750, "meters")
  7660. },
  7661. {
  7662. name: "Megamacro",
  7663. height: math.unit(20, "km"),
  7664. default: true
  7665. },
  7666. {
  7667. name: "Gigamacro",
  7668. height: math.unit(2000, "km")
  7669. },
  7670. {
  7671. name: "Teramacro",
  7672. height: math.unit(250000, "km")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Rikes" },
  7678. {
  7679. front: {
  7680. height: math.unit(100, "feet"),
  7681. weight: math.unit(350, "kg"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/rikes/front.svg",
  7685. extra: 1565 / 1483,
  7686. bottom: 0.017
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(100, "feet"),
  7694. default: true
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Adam Silver-Mane" },
  7700. {
  7701. anthro: {
  7702. height: math.unit(8, "feet"),
  7703. weight: math.unit(120, "kg"),
  7704. name: "Anthro",
  7705. image: {
  7706. source: "./media/characters/adam-silver-mane/anthro.svg",
  7707. extra: 5743 / 5339,
  7708. bottom: 0.07
  7709. }
  7710. },
  7711. taur: {
  7712. height: math.unit(16, "feet"),
  7713. weight: math.unit(1500, "kg"),
  7714. name: "Taur",
  7715. image: {
  7716. source: "./media/characters/adam-silver-mane/taur.svg",
  7717. extra: 1713 / 1571,
  7718. bottom: 0.01
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(8, "feet")
  7726. },
  7727. {
  7728. name: "Minimacro",
  7729. height: math.unit(80, "feet")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(800, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(8000, "feet")
  7739. },
  7740. {
  7741. name: "Gigamacro",
  7742. height: math.unit(800, "miles")
  7743. },
  7744. {
  7745. name: "Teramacro",
  7746. height: math.unit(80000, "miles")
  7747. },
  7748. {
  7749. name: "Celestial",
  7750. height: math.unit(8e6, "miles")
  7751. },
  7752. {
  7753. name: "Star Dragon",
  7754. height: math.unit(800000, "parsecs")
  7755. },
  7756. {
  7757. name: "Godly",
  7758. height: math.unit(800, "teraparsecs")
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Ky'owin" },
  7764. {
  7765. front: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(150, "lb"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/ky'owin/front.svg",
  7771. extra: 3888 / 3068,
  7772. bottom: 0.015
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(6 + 8 / 12, "feet")
  7780. },
  7781. {
  7782. name: "Large",
  7783. height: math.unit(68, "feet")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(132, "feet")
  7788. },
  7789. {
  7790. name: "Macro+",
  7791. height: math.unit(340, "feet")
  7792. },
  7793. {
  7794. name: "Macro++",
  7795. height: math.unit(680, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(1, "mile")
  7801. },
  7802. {
  7803. name: "Megamacro+",
  7804. height: math.unit(10, "miles")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Mal" },
  7810. {
  7811. front: {
  7812. height: math.unit(4, "feet"),
  7813. weight: math.unit(50, "lb"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/mal/front.svg",
  7817. extra: 785 / 724,
  7818. bottom: 0.07
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(4, "inches")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(4, "feet"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(200, "feet")
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Jordan Deware" },
  7840. {
  7841. front: {
  7842. height: math.unit(6, "feet"),
  7843. weight: math.unit(150, "lb"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/jordan-deware/front.svg",
  7847. extra: 1191 / 1012
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Nano",
  7854. height: math.unit(0.01, "mm")
  7855. },
  7856. {
  7857. name: "Minimicro",
  7858. height: math.unit(1, "mm")
  7859. },
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(0.5, "inches")
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(4, "feet"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Minimacro",
  7871. height: math.unit(40, "meters")
  7872. },
  7873. {
  7874. name: "Small Macro",
  7875. height: math.unit(400, "meters")
  7876. },
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(4, "miles")
  7880. },
  7881. {
  7882. name: "Megamacro",
  7883. height: math.unit(40, "miles")
  7884. },
  7885. {
  7886. name: "Megamacro+",
  7887. height: math.unit(400, "miles")
  7888. },
  7889. {
  7890. name: "Gigamacro",
  7891. height: math.unit(400000, "miles")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Kimiko" },
  7897. {
  7898. side: {
  7899. height: math.unit(6, "feet"),
  7900. weight: math.unit(150, "lb"),
  7901. name: "Side",
  7902. image: {
  7903. source: "./media/characters/kimiko/side.svg",
  7904. extra: 600 / 358
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(15, "feet"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(220, "feet")
  7917. },
  7918. {
  7919. name: "Macro+",
  7920. height: math.unit(1450, "feet")
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(11500, "feet")
  7925. },
  7926. {
  7927. name: "Gigamacro",
  7928. height: math.unit(9500, "miles")
  7929. },
  7930. {
  7931. name: "Teramacro",
  7932. height: math.unit(2208005005, "miles")
  7933. },
  7934. {
  7935. name: "Examacro",
  7936. height: math.unit(2750, "parsecs")
  7937. },
  7938. {
  7939. name: "Zettamacro",
  7940. height: math.unit(101500, "parsecs")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Andrew Sleepy" },
  7946. {
  7947. front: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(70, "kg"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/andrew-sleepy/front.svg"
  7953. }
  7954. },
  7955. side: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(70, "kg"),
  7958. name: "Side",
  7959. image: {
  7960. source: "./media/characters/andrew-sleepy/side.svg"
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(1, "mm"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Judio" },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(150, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/judio/front.svg",
  7981. extra: 1258 / 1110
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(5 + 6 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(1000, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(10, "miles")
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Nomaxice" },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(68, "kg"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/nomaxice/front.svg",
  8010. extra: 1498 / 1073,
  8011. bottom: 0.075
  8012. }
  8013. },
  8014. foot: {
  8015. height: math.unit(1.1, "feet"),
  8016. name: "Foot",
  8017. image: {
  8018. source: "./media/characters/nomaxice/foot.svg"
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Micro",
  8025. height: math.unit(8, "cm")
  8026. },
  8027. {
  8028. name: "Norm",
  8029. height: math.unit(1.82, "m")
  8030. },
  8031. {
  8032. name: "Norm+",
  8033. height: math.unit(8.8, "feet")
  8034. },
  8035. {
  8036. name: "Big",
  8037. height: math.unit(8, "meters"),
  8038. default: true
  8039. },
  8040. {
  8041. name: "Macro",
  8042. height: math.unit(18, "meters")
  8043. },
  8044. {
  8045. name: "Macro+",
  8046. height: math.unit(88, "meters")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Dydros" },
  8052. {
  8053. front: {
  8054. height: math.unit(12, "feet"),
  8055. weight: math.unit(1.5, "tons"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/dydros/front.svg",
  8059. extra: 863 / 800,
  8060. bottom: 0.015
  8061. }
  8062. },
  8063. back: {
  8064. height: math.unit(12, "feet"),
  8065. weight: math.unit(1.5, "tons"),
  8066. name: "Back",
  8067. image: {
  8068. source: "./media/characters/dydros/back.svg",
  8069. extra: 900 / 843,
  8070. bottom: 0.005
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(12, "feet"),
  8078. default: true
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Riggi" },
  8084. {
  8085. front: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(100, "kg"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/riggi/front.svg",
  8091. extra: 5787 / 5303
  8092. }
  8093. },
  8094. hyper: {
  8095. height: math.unit(6 * 5 / 3, "feet"),
  8096. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8097. name: "Hyper",
  8098. image: {
  8099. source: "./media/characters/riggi/hyper.svg",
  8100. extra: 3595 / 3485
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Small Macro",
  8107. height: math.unit(50, "feet")
  8108. },
  8109. {
  8110. name: "Default",
  8111. height: math.unit(200, "feet"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Loom",
  8116. height: math.unit(10000, "feet")
  8117. },
  8118. {
  8119. name: "Cruising Altitude",
  8120. height: math.unit(30000, "feet")
  8121. },
  8122. {
  8123. name: "Megamacro",
  8124. height: math.unit(100, "miles")
  8125. },
  8126. {
  8127. name: "Continent Sized",
  8128. height: math.unit(2800, "miles")
  8129. },
  8130. {
  8131. name: "Earth Sized",
  8132. height: math.unit(8000, "miles")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Alexi" },
  8138. {
  8139. front: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(250, "lb"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/alexi/front.svg",
  8145. extra: 3483 / 3291,
  8146. bottom: 0.04
  8147. }
  8148. },
  8149. back: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(250, "lb"),
  8152. name: "Back",
  8153. image: {
  8154. source: "./media/characters/alexi/back.svg",
  8155. extra: 3533 / 3356,
  8156. bottom: 0.021
  8157. }
  8158. },
  8159. frontTransformed: {
  8160. height: math.unit(12.5, "feet"),
  8161. weight: math.unit(4000, "lb"),
  8162. name: "Front (Transformed)",
  8163. image: {
  8164. source: "./media/characters/alexi/front-transformed.svg",
  8165. extra: 5345 / 5100,
  8166. bottom: 0.03
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(3, "meters"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Minimacro",
  8178. height: math.unit(30, "meters")
  8179. },
  8180. {
  8181. name: "Macro",
  8182. height: math.unit(500, "meters")
  8183. },
  8184. {
  8185. name: "Megamacro",
  8186. height: math.unit(9000, "km")
  8187. },
  8188. {
  8189. name: "Teramacro",
  8190. height: math.unit(384000, "km")
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Kayroo" },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lb"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/kayroo/front.svg",
  8203. extra: 1153 / 1038,
  8204. bottom: 0.06
  8205. }
  8206. },
  8207. foot: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(150, "lb"),
  8210. name: "Foot",
  8211. image: {
  8212. source: "./media/characters/kayroo/foot.svg"
  8213. }
  8214. },
  8215. },
  8216. [
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(8, "feet"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Minimacro",
  8224. height: math.unit(250, "feet")
  8225. },
  8226. {
  8227. name: "Macro",
  8228. height: math.unit(2800, "feet")
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(5200, "feet")
  8233. },
  8234. {
  8235. name: "Gigamacro",
  8236. height: math.unit(27000, "feet")
  8237. },
  8238. {
  8239. name: "Omega",
  8240. height: math.unit(45000, "feet")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Rhys" },
  8246. {
  8247. front: {
  8248. height: math.unit(18, "feet"),
  8249. weight: math.unit(5800, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/rhys/front.svg",
  8253. extra: 3386 / 3090,
  8254. bottom: 0.07
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Normal",
  8261. height: math.unit(18, "feet"),
  8262. default: true
  8263. },
  8264. {
  8265. name: "Working Size",
  8266. height: math.unit(200, "feet")
  8267. },
  8268. {
  8269. name: "Demolition Size",
  8270. height: math.unit(2000, "feet")
  8271. },
  8272. {
  8273. name: "Maximum Licensed Size",
  8274. height: math.unit(5, "miles")
  8275. },
  8276. {
  8277. name: "Maximum Observed Size",
  8278. height: math.unit(10, "yottameters")
  8279. },
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Toto" },
  8284. {
  8285. front: {
  8286. height: math.unit(6, "feet"),
  8287. weight: math.unit(250, "lb"),
  8288. name: "Front",
  8289. image: {
  8290. source: "./media/characters/toto/front.svg",
  8291. extra: 527 / 479,
  8292. bottom: 0.05
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Micro",
  8299. height: math.unit(3, "feet")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(10, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(150, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(1200, "feet")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "King" },
  8318. {
  8319. back: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(150, "lb"),
  8322. name: "Back",
  8323. image: {
  8324. source: "./media/characters/king/back.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(2, "inches")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(8, "feet")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(200, "feet"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(50, "miles")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Cordite" },
  8350. {
  8351. anthro: {
  8352. height: math.unit(6 + 5 / 12, "feet"),
  8353. weight: math.unit(280, "lb"),
  8354. name: "Anthro",
  8355. image: {
  8356. source: "./media/characters/cordite/anthro.svg",
  8357. extra: 1986 / 1905,
  8358. bottom: 0.025
  8359. }
  8360. },
  8361. feral: {
  8362. height: math.unit(2, "feet"),
  8363. weight: math.unit(90, "lb"),
  8364. name: "Feral",
  8365. image: {
  8366. source: "./media/characters/cordite/feral.svg",
  8367. extra: 1260 / 755,
  8368. bottom: 0.05
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(6 + 5 / 12, "feet"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Pianostrong" },
  8382. {
  8383. front: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(150, "lb"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/pianostrong/front.svg",
  8389. extra: 6577 / 6254,
  8390. bottom: 0.02
  8391. }
  8392. },
  8393. side: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(150, "lb"),
  8396. name: "Side",
  8397. image: {
  8398. source: "./media/characters/pianostrong/side.svg",
  8399. extra: 6106 / 5730
  8400. }
  8401. },
  8402. back: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(150, "lb"),
  8405. name: "Back",
  8406. image: {
  8407. source: "./media/characters/pianostrong/back.svg",
  8408. extra: 6085 / 5733,
  8409. bottom: 0.01
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(100, "feet")
  8417. },
  8418. {
  8419. name: "Macro+",
  8420. height: math.unit(300, "feet"),
  8421. default: true
  8422. },
  8423. {
  8424. name: "Macro++",
  8425. height: math.unit(1000, "feet")
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Kona" },
  8431. {
  8432. front: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(150, "lb"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/kona/front.svg",
  8438. extra: 2960 / 2629,
  8439. bottom: 0.005
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(11 + 8 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(850, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro+",
  8455. height: math.unit(1.5, "km"),
  8456. default: true
  8457. },
  8458. {
  8459. name: "Megamacro",
  8460. height: math.unit(80, "miles")
  8461. },
  8462. {
  8463. name: "Gigamacro",
  8464. height: math.unit(3500, "miles")
  8465. },
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Levi" },
  8470. {
  8471. side: {
  8472. height: math.unit(1.9, "meters"),
  8473. weight: math.unit(326, "kg"),
  8474. name: "Side",
  8475. image: {
  8476. source: "./media/characters/levi/side.svg",
  8477. extra: 1704 / 1334,
  8478. bottom: 0.02
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(1.9, "meters"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(20, "meters")
  8491. },
  8492. {
  8493. name: "Macro+",
  8494. height: math.unit(200, "meters")
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(2, "km")
  8499. },
  8500. {
  8501. name: "Megamacro+",
  8502. height: math.unit(20, "km")
  8503. },
  8504. {
  8505. name: "Gigamacro",
  8506. height: math.unit(2500, "km")
  8507. },
  8508. {
  8509. name: "Gigamacro+",
  8510. height: math.unit(120000, "km")
  8511. },
  8512. {
  8513. name: "Teramacro",
  8514. height: math.unit(7.77e6, "km")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "BMC" },
  8520. {
  8521. front: {
  8522. height: math.unit(6 + 4 / 12, "feet"),
  8523. weight: math.unit(188, "lb"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/bmc/front.svg",
  8527. extra: 1067 / 1022,
  8528. bottom: 0.047
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Human-sized",
  8535. height: math.unit(6 + 4 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Small",
  8539. height: math.unit(250, "feet")
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(1250, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Good Day",
  8548. height: math.unit(88, "miles")
  8549. },
  8550. {
  8551. name: "Largest Measured Size",
  8552. height: math.unit(11.2e6, "lightyears")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Sven the Kaiju" },
  8558. {
  8559. front: {
  8560. height: math.unit(20, "feet"),
  8561. weight: math.unit(2016, "kg"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/sven-the-kaiju/front.svg",
  8565. extra: 1479 / 1449,
  8566. bottom: 0.05
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Fairy",
  8573. height: math.unit(6, "inches")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(20, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Rampage",
  8582. height: math.unit(200, "feet")
  8583. },
  8584. {
  8585. name: "Archfey Forest Guardian",
  8586. height: math.unit(1, "mile")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Marik" },
  8592. {
  8593. front: {
  8594. height: math.unit(4, "meters"),
  8595. weight: math.unit(2, "tons"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/marik/front.svg",
  8599. extra: 1057 / 1003,
  8600. bottom: 0.08
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(4, "meters"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(20, "meters")
  8613. },
  8614. {
  8615. name: "Megamacro",
  8616. height: math.unit(50, "km")
  8617. },
  8618. {
  8619. name: "Gigamacro",
  8620. height: math.unit(100, "km")
  8621. },
  8622. {
  8623. name: "Alpha Macro",
  8624. height: math.unit(7.88e7, "yottameters")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Mel" },
  8630. {
  8631. front: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(110, "lb"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/mel/front.svg",
  8637. extra: 736 / 617,
  8638. bottom: 0.017
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Pico",
  8645. height: math.unit(3, "pm")
  8646. },
  8647. {
  8648. name: "Nano",
  8649. height: math.unit(3, "nm")
  8650. },
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(0.3, "mm"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Micro+",
  8658. height: math.unit(3, "mm")
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 10.5 / 12, "feet")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Lykonous" },
  8668. {
  8669. kaiju: {
  8670. height: math.unit(1.75, "meters"),
  8671. weight: math.unit(55, "kg"),
  8672. name: "Kaiju",
  8673. image: {
  8674. source: "./media/characters/lykonous/kaiju.svg",
  8675. extra: 1055 / 946,
  8676. bottom: 0.135
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(2.5, "meters"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Kaiju Dragon",
  8688. height: math.unit(60, "meters")
  8689. },
  8690. {
  8691. name: "Mega Kaiju",
  8692. height: math.unit(120, "km")
  8693. },
  8694. {
  8695. name: "Giga Kaiju",
  8696. height: math.unit(200, "megameters")
  8697. },
  8698. {
  8699. name: "Terra Kaiju",
  8700. height: math.unit(400, "gigameters")
  8701. },
  8702. {
  8703. name: "Kaiju Dragon God",
  8704. height: math.unit(13000, "exaparsecs")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Blü" },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(150, "lb"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/blü/front.svg",
  8717. extra: 1883 / 1564,
  8718. bottom: 0.031
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(13, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Big Boi",
  8730. height: math.unit(150, "meters")
  8731. },
  8732. {
  8733. name: "Mini Stomper",
  8734. height: math.unit(300, "meters")
  8735. },
  8736. {
  8737. name: "Macro",
  8738. height: math.unit(1000, "meters")
  8739. },
  8740. {
  8741. name: "Megamacro",
  8742. height: math.unit(11000, "meters")
  8743. },
  8744. {
  8745. name: "Gigamacro",
  8746. height: math.unit(11000, "km")
  8747. },
  8748. {
  8749. name: "Teramacro",
  8750. height: math.unit(420000, "km")
  8751. },
  8752. {
  8753. name: "Examacro",
  8754. height: math.unit(120, "parsecs")
  8755. },
  8756. {
  8757. name: "God Tho",
  8758. height: math.unit(98000000000, "parsecs")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Scales" },
  8764. {
  8765. taurFront: {
  8766. height: math.unit(6, "feet"),
  8767. weight: math.unit(200, "lb"),
  8768. name: "Taur (Front)",
  8769. image: {
  8770. source: "./media/characters/scales/taur-front.svg",
  8771. extra: 1,
  8772. bottom: 0.05
  8773. }
  8774. },
  8775. taurBack: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(200, "lb"),
  8778. name: "Taur (Back)",
  8779. image: {
  8780. source: "./media/characters/scales/taur-back.svg",
  8781. extra: 1,
  8782. bottom: 0.08
  8783. }
  8784. },
  8785. anthro: {
  8786. height: math.unit(6 * 7 / 12, "feet"),
  8787. weight: math.unit(100, "lb"),
  8788. name: "Anthro",
  8789. image: {
  8790. source: "./media/characters/scales/anthro.svg",
  8791. extra: 1,
  8792. bottom: 0.06
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(12, "feet"),
  8800. default: true
  8801. },
  8802. ]
  8803. ))
  8804. characterMakers.push(() => makeCharacter(
  8805. { name: "Koragos" },
  8806. {
  8807. front: {
  8808. height: math.unit(6, "feet"),
  8809. weight: math.unit(150, "lb"),
  8810. name: "Front",
  8811. image: {
  8812. source: "./media/characters/koragos/front.svg",
  8813. extra: 841 / 794,
  8814. bottom: 0.035
  8815. }
  8816. },
  8817. back: {
  8818. height: math.unit(6, "feet"),
  8819. weight: math.unit(150, "lb"),
  8820. name: "Back",
  8821. image: {
  8822. source: "./media/characters/koragos/back.svg",
  8823. extra: 841 / 810,
  8824. bottom: 0.022
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(6 + 11 / 12, "feet"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(490, "feet")
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(10, "miles")
  8841. },
  8842. {
  8843. name: "Gigamacro",
  8844. height: math.unit(50, "miles")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Xylrem" },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(250, "lb"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/xylrem/front.svg",
  8857. extra: 3323 / 3050,
  8858. bottom: 0.065
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(4, "feet")
  8866. },
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(16, "feet"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(2720, "feet")
  8875. },
  8876. {
  8877. name: "Megamacro",
  8878. height: math.unit(25000, "miles")
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Ikideru" },
  8884. {
  8885. front: {
  8886. height: math.unit(8, "feet"),
  8887. weight: math.unit(250, "kg"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/ikideru/front.svg",
  8891. extra: 930 / 870,
  8892. bottom: 0.087
  8893. }
  8894. },
  8895. back: {
  8896. height: math.unit(8, "feet"),
  8897. weight: math.unit(250, "kg"),
  8898. name: "Back",
  8899. image: {
  8900. source: "./media/characters/ikideru/back.svg",
  8901. extra: 919 / 852,
  8902. bottom: 0.055
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Rare",
  8909. height: math.unit(8, "feet"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Playful Loom",
  8914. height: math.unit(80, "feet")
  8915. },
  8916. {
  8917. name: "City Leaner",
  8918. height: math.unit(230, "feet")
  8919. },
  8920. {
  8921. name: "Megamacro",
  8922. height: math.unit(2500, "feet")
  8923. },
  8924. {
  8925. name: "Gigamacro",
  8926. height: math.unit(26400, "feet")
  8927. },
  8928. {
  8929. name: "Tectonic Shifter",
  8930. height: math.unit(1.7, "megameters")
  8931. },
  8932. {
  8933. name: "Planet Carer",
  8934. height: math.unit(21, "megameters")
  8935. },
  8936. {
  8937. name: "God",
  8938. height: math.unit(11157.22, "parsecs")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Neo" },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(120, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/neo/front.svg"
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Micro",
  8957. height: math.unit(2, "inches"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Human Size",
  8962. height: math.unit(5 + 8 / 12, "feet")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Chauncey (Chantz)" },
  8968. {
  8969. front: {
  8970. height: math.unit(13 + 10 / 12, "feet"),
  8971. weight: math.unit(5320, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/chauncey-chantz/front.svg",
  8975. extra: 1587 / 1435,
  8976. bottom: 0.02
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(13 + 10 / 12, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(45, "feet")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(250, "miles")
  8993. },
  8994. {
  8995. name: "Planetary",
  8996. height: math.unit(10000, "miles")
  8997. },
  8998. {
  8999. name: "Galactic",
  9000. height: math.unit(40000, "parsecs")
  9001. },
  9002. {
  9003. name: "Universal",
  9004. height: math.unit(1, "yottameter")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Epifox" },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(150, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/epifox/front.svg",
  9017. extra: 1,
  9018. bottom: 0.075
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(6, "inches")
  9026. },
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(12, "feet"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(3810, "feet")
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(500, "miles")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Colin T." },
  9044. {
  9045. front: {
  9046. height: math.unit(1.8796, "m"),
  9047. weight: math.unit(230, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/colin-t/front.svg",
  9051. extra: 1272 / 1193,
  9052. bottom: 0.07
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Micro",
  9059. height: math.unit(0.571, "meters")
  9060. },
  9061. {
  9062. name: "Normal",
  9063. height: math.unit(1.8796, "meters"),
  9064. default: true
  9065. },
  9066. {
  9067. name: "Tall",
  9068. height: math.unit(4, "meters")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(67.241, "meters")
  9073. },
  9074. {
  9075. name: "Megamacro",
  9076. height: math.unit(371.856, "meters")
  9077. },
  9078. {
  9079. name: "Planetary",
  9080. height: math.unit(12631.5689, "km")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Matvei" },
  9086. {
  9087. front: {
  9088. height: math.unit(1.85, "meters"),
  9089. weight: math.unit(80, "kg"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/matvei/front.svg",
  9093. extra: 614 / 594,
  9094. bottom: 0.01
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(1.85, "meters"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Quincy" },
  9108. {
  9109. front: {
  9110. height: math.unit(5 + 9 / 12, "feet"),
  9111. weight: math.unit(70, "lb"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/quincy/front.svg",
  9115. extra: 3041 / 2751
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(5 + 9 / 12, "feet"),
  9120. weight: math.unit(70, "lb"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/quincy/back.svg",
  9124. extra: 3041 / 2751
  9125. }
  9126. },
  9127. flying: {
  9128. height: math.unit(5 + 4 / 12, "feet"),
  9129. weight: math.unit(70, "lb"),
  9130. name: "Flying",
  9131. image: {
  9132. source: "./media/characters/quincy/flying.svg",
  9133. extra: 1044 / 930
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(3, "cm")
  9141. },
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(5 + 9 / 12, "feet")
  9145. },
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(200, "meters"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Megamacro",
  9153. height: math.unit(1000, "meters")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Vanrel" },
  9159. {
  9160. front: {
  9161. height: math.unit(4 + 7 / 12, "feet"),
  9162. weight: math.unit(150, "lb"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/vanrel/front.svg",
  9166. extra: 1,
  9167. bottom: 0.02
  9168. }
  9169. },
  9170. elemental: {
  9171. height: math.unit(4 + 2/12, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Elemental",
  9174. image: {
  9175. source: "./media/characters/vanrel/elemental.svg"
  9176. }
  9177. },
  9178. side: {
  9179. height: math.unit(4 + 7 / 12, "feet"),
  9180. weight: math.unit(150, "lb"),
  9181. name: "Side",
  9182. image: {
  9183. source: "./media/characters/vanrel/side.svg",
  9184. extra: 1,
  9185. bottom: 0.025
  9186. }
  9187. },
  9188. tome: {
  9189. height: math.unit(1.35, "feet"),
  9190. weight: math.unit(10, "lb"),
  9191. name: "Vanrel's Tome",
  9192. rename: true,
  9193. image: {
  9194. source: "./media/characters/vanrel/tome.svg"
  9195. }
  9196. },
  9197. beans: {
  9198. height: math.unit(0.89, "feet"),
  9199. name: "Beans",
  9200. image: {
  9201. source: "./media/characters/vanrel/beans.svg"
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Normal",
  9208. height: math.unit(4 + 7 / 12, "feet"),
  9209. default: true
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Kuiper Vanrel" },
  9215. {
  9216. front: {
  9217. height: math.unit(7 + 5 / 12, "feet"),
  9218. weight: math.unit(150, "lb"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/kuiper-vanrel/front.svg",
  9222. extra: 1118 / 1068,
  9223. bottom: 0.09
  9224. }
  9225. },
  9226. foot: {
  9227. height: math.unit(0.55, "meters"),
  9228. name: "Foot",
  9229. image: {
  9230. source: "./media/characters/kuiper-vanrel/foot.svg",
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(7 + 5 / 12, "feet"),
  9238. default: true
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Keset Vanrel" },
  9244. {
  9245. front: {
  9246. height: math.unit(8 + 5 / 12, "feet"),
  9247. weight: math.unit(150, "lb"),
  9248. name: "Front",
  9249. image: {
  9250. source: "./media/characters/keset-vanrel/front.svg",
  9251. extra: 1150 / 1084,
  9252. bottom: 0.05
  9253. }
  9254. },
  9255. hand: {
  9256. height: math.unit(0.6, "meters"),
  9257. name: "Hand",
  9258. image: {
  9259. source: "./media/characters/keset-vanrel/hand.svg"
  9260. }
  9261. },
  9262. foot: {
  9263. height: math.unit(0.94978, "meters"),
  9264. name: "Foot",
  9265. image: {
  9266. source: "./media/characters/keset-vanrel/foot.svg"
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(8 + 5 / 12, "feet"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Neos" },
  9280. {
  9281. front: {
  9282. height: math.unit(6, "feet"),
  9283. weight: math.unit(150, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/neos/front.svg",
  9287. extra: 1696 / 992,
  9288. bottom: 0.14
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(54, "cm"),
  9296. default: true
  9297. },
  9298. {
  9299. name: "Macro",
  9300. height: math.unit(100, "m")
  9301. },
  9302. {
  9303. name: "Megamacro",
  9304. height: math.unit(10, "km")
  9305. },
  9306. {
  9307. name: "Megamacro+",
  9308. height: math.unit(100, "km")
  9309. },
  9310. {
  9311. name: "Gigamacro",
  9312. height: math.unit(100, "Mm")
  9313. },
  9314. {
  9315. name: "Teramacro",
  9316. height: math.unit(100, "Gm")
  9317. },
  9318. {
  9319. name: "Examacro",
  9320. height: math.unit(100, "Em")
  9321. },
  9322. {
  9323. name: "Godly",
  9324. height: math.unit(10000, "Ym")
  9325. },
  9326. {
  9327. name: "Beyond Godly",
  9328. height: math.unit(10000000, "Ym")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Sammy Mouse" },
  9334. {
  9335. feminine: {
  9336. height: math.unit(5, "feet"),
  9337. weight: math.unit(100, "lb"),
  9338. name: "Feminine",
  9339. image: {
  9340. source: "./media/characters/sammy-mouse/feminine.svg",
  9341. extra: 2526 / 2425,
  9342. bottom: 0.123
  9343. }
  9344. },
  9345. masculine: {
  9346. height: math.unit(5, "feet"),
  9347. weight: math.unit(100, "lb"),
  9348. name: "Masculine",
  9349. image: {
  9350. source: "./media/characters/sammy-mouse/masculine.svg",
  9351. extra: 2526 / 2425,
  9352. bottom: 0.123
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Micro",
  9359. height: math.unit(5, "inches")
  9360. },
  9361. {
  9362. name: "Normal",
  9363. height: math.unit(5, "feet"),
  9364. default: true
  9365. },
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(60, "feet")
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Kole" },
  9374. {
  9375. front: {
  9376. height: math.unit(4, "feet"),
  9377. weight: math.unit(50, "lb"),
  9378. name: "Front",
  9379. image: {
  9380. source: "./media/characters/kole/front.svg",
  9381. extra: 1423 / 1303,
  9382. bottom: 0.025
  9383. }
  9384. },
  9385. back: {
  9386. height: math.unit(4, "feet"),
  9387. weight: math.unit(50, "lb"),
  9388. name: "Back",
  9389. image: {
  9390. source: "./media/characters/kole/back.svg",
  9391. extra: 1426 / 1280,
  9392. bottom: 0.02
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(4, "feet"),
  9400. default: true
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Rufran" },
  9406. {
  9407. front: {
  9408. height: math.unit(2 + 6 / 12, "feet"),
  9409. weight: math.unit(20, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/rufran/front.svg",
  9413. extra: 2041 / 1839,
  9414. bottom: 0.055
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(2 + 6 / 12, "feet"),
  9419. weight: math.unit(20, "lb"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/rufran/back.svg",
  9423. extra: 2054 / 1839,
  9424. bottom: 0.01
  9425. }
  9426. },
  9427. hand: {
  9428. height: math.unit(0.2166, "meters"),
  9429. name: "Hand",
  9430. image: {
  9431. source: "./media/characters/rufran/hand.svg"
  9432. }
  9433. },
  9434. foot: {
  9435. height: math.unit(0.185, "meters"),
  9436. name: "Foot",
  9437. image: {
  9438. source: "./media/characters/rufran/foot.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(1, "inch")
  9446. },
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2 + 6 / 12, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Big",
  9454. height: math.unit(60, "feet")
  9455. },
  9456. {
  9457. name: "Macro",
  9458. height: math.unit(325, "feet")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Chip" },
  9464. {
  9465. front: {
  9466. height: math.unit(0.3, "meters"),
  9467. weight: math.unit(3.5, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/chip/front.svg",
  9471. extra: 748 / 674
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(1, "inch"),
  9479. default: true
  9480. },
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Torvid" },
  9485. {
  9486. side: {
  9487. height: math.unit(2.3, "meters"),
  9488. weight: math.unit(3500, "lb"),
  9489. name: "Side",
  9490. image: {
  9491. source: "./media/characters/torvid/side.svg",
  9492. extra: 1972 / 722,
  9493. bottom: 0.035
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(2.3, "meters"),
  9501. default: true
  9502. },
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Susan" },
  9507. {
  9508. front: {
  9509. height: math.unit(2, "meters"),
  9510. weight: math.unit(150.5, "kg"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/susan/front.svg",
  9514. extra: 693 / 635,
  9515. bottom: 0.05
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(505, "miles"),
  9523. default: true
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Raindrops" },
  9529. {
  9530. front: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(150, "lb"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/raindrops/front.svg",
  9536. extra: 2655 / 2461,
  9537. bottom: 0.02
  9538. }
  9539. },
  9540. back: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(150, "lb"),
  9543. name: "Back",
  9544. image: {
  9545. source: "./media/characters/raindrops/back.svg",
  9546. extra: 2574 / 2400,
  9547. bottom: 0.03
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(6, "inches")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(6 + 2 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(131, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(15, "miles")
  9568. },
  9569. {
  9570. name: "Gigamacro",
  9571. height: math.unit(4000, "miles")
  9572. },
  9573. {
  9574. name: "Teramacro",
  9575. height: math.unit(315000, "miles")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Tezwa" },
  9581. {
  9582. front: {
  9583. height: math.unit(2.794, "meters"),
  9584. weight: math.unit(325, "kg"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/tezwa/front.svg",
  9588. extra: 2083 / 1906,
  9589. bottom: 0.031
  9590. }
  9591. },
  9592. foot: {
  9593. height: math.unit(0.687, "meters"),
  9594. name: "Foot",
  9595. image: {
  9596. source: "./media/characters/tezwa/foot.svg"
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(9 + 2 / 12, "feet"),
  9604. default: true
  9605. },
  9606. ]
  9607. ))
  9608. characterMakers.push(() => makeCharacter(
  9609. { name: "Typhus" },
  9610. {
  9611. front: {
  9612. height: math.unit(58, "feet"),
  9613. weight: math.unit(89000, "lb"),
  9614. name: "Front",
  9615. image: {
  9616. source: "./media/characters/typhus/front.svg",
  9617. extra: 816 / 800,
  9618. bottom: 0.065
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(58, "feet"),
  9626. default: true
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Lyra Von Wulf" },
  9632. {
  9633. front: {
  9634. height: math.unit(12, "feet"),
  9635. weight: math.unit(6, "tonnes"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/lyra-von-wulf/front.svg",
  9639. extra: 1,
  9640. bottom: 0.10
  9641. }
  9642. },
  9643. frontMecha: {
  9644. height: math.unit(12, "feet"),
  9645. weight: math.unit(12, "tonnes"),
  9646. name: "Front (Mecha)",
  9647. image: {
  9648. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9649. extra: 1,
  9650. bottom: 0.042
  9651. }
  9652. },
  9653. maw: {
  9654. height: math.unit(2.2, "feet"),
  9655. name: "Maw",
  9656. image: {
  9657. source: "./media/characters/lyra-von-wulf/maw.svg"
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(12, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Classic",
  9669. height: math.unit(50, "feet")
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(500, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(1, "mile")
  9678. },
  9679. {
  9680. name: "Gigamacro",
  9681. height: math.unit(400, "miles")
  9682. },
  9683. {
  9684. name: "Teramacro",
  9685. height: math.unit(22000, "miles")
  9686. },
  9687. {
  9688. name: "Solarmacro",
  9689. height: math.unit(8600000, "miles")
  9690. },
  9691. {
  9692. name: "Galactic",
  9693. height: math.unit(1057000, "lightyears")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Dixon" },
  9699. {
  9700. front: {
  9701. height: math.unit(6 + 10 / 12, "feet"),
  9702. weight: math.unit(150, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/dixon/front.svg",
  9706. extra: 3361 / 3209,
  9707. bottom: 0.01
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(6 + 10 / 12, "feet"),
  9715. default: true
  9716. },
  9717. {
  9718. name: "Big",
  9719. height: math.unit(12, "meters")
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(500, "meters")
  9724. },
  9725. {
  9726. name: "Megamacro",
  9727. height: math.unit(2, "km")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Kauko" },
  9733. {
  9734. front: {
  9735. height: math.unit(185, "cm"),
  9736. weight: math.unit(68, "kg"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/kauko/front.svg",
  9740. extra: 1455 / 1421,
  9741. bottom: 0.03
  9742. }
  9743. },
  9744. back: {
  9745. height: math.unit(185, "cm"),
  9746. weight: math.unit(68, "kg"),
  9747. name: "Back",
  9748. image: {
  9749. source: "./media/characters/kauko/back.svg",
  9750. extra: 1455 / 1421,
  9751. bottom: 0.004
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(185, "cm"),
  9759. default: true
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Varg" },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(150, "kg"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/varg/front.svg",
  9772. extra: 1108 / 1018,
  9773. bottom: 0.0375
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(5, "meters")
  9781. },
  9782. {
  9783. name: "Gigamacro",
  9784. height: math.unit(211, "km"),
  9785. default: true
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Dayza" },
  9791. {
  9792. front: {
  9793. height: math.unit(7 + 7 / 12, "feet"),
  9794. weight: math.unit(267, "lb"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/dayza/front.svg",
  9798. extra: 1262 / 1200,
  9799. bottom: 0.035
  9800. }
  9801. },
  9802. side: {
  9803. height: math.unit(7 + 7 / 12, "feet"),
  9804. weight: math.unit(267, "lb"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/dayza/side.svg",
  9808. extra: 1295 / 1245,
  9809. bottom: 0.05
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(7 + 7 / 12, "feet"),
  9814. weight: math.unit(267, "lb"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/dayza/back.svg",
  9818. extra: 1241 / 1170
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(7 + 7 / 12, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(155, "feet")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Xanthos" },
  9836. {
  9837. front: {
  9838. height: math.unit(6 + 5 / 12, "feet"),
  9839. weight: math.unit(160, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/xanthos/front.svg",
  9843. extra: 1,
  9844. bottom: 0.04
  9845. }
  9846. },
  9847. back: {
  9848. height: math.unit(6 + 5 / 12, "feet"),
  9849. weight: math.unit(160, "lb"),
  9850. name: "Back",
  9851. image: {
  9852. source: "./media/characters/xanthos/back.svg",
  9853. extra: 1,
  9854. bottom: 0.03
  9855. }
  9856. },
  9857. hand: {
  9858. height: math.unit(0.928, "feet"),
  9859. name: "Hand",
  9860. image: {
  9861. source: "./media/characters/xanthos/hand.svg"
  9862. }
  9863. },
  9864. foot: {
  9865. height: math.unit(1.286, "feet"),
  9866. name: "Foot",
  9867. image: {
  9868. source: "./media/characters/xanthos/foot.svg"
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(6 + 5 / 12, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Normal+",
  9880. height: math.unit(6, "meters")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(40, "feet")
  9885. },
  9886. {
  9887. name: "Macro+",
  9888. height: math.unit(200, "meters")
  9889. },
  9890. {
  9891. name: "Megamacro",
  9892. height: math.unit(20, "km")
  9893. },
  9894. {
  9895. name: "Megamacro+",
  9896. height: math.unit(100, "km")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Grynn" },
  9902. {
  9903. front: {
  9904. height: math.unit(6 + 3 / 12, "feet"),
  9905. weight: math.unit(215, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/grynn/front.svg",
  9909. extra: 4627 / 4209,
  9910. bottom: 0.047
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(6, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(6 + 3 / 12, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Big",
  9926. height: math.unit(104, "feet")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(944, "feet")
  9931. },
  9932. {
  9933. name: "Macro+",
  9934. height: math.unit(9480, "feet")
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(78752, "feet")
  9939. },
  9940. {
  9941. name: "Megamacro+",
  9942. height: math.unit(630128, "feet")
  9943. },
  9944. {
  9945. name: "Megamacro++",
  9946. height: math.unit(3150695, "feet")
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Mocha Aura" },
  9952. {
  9953. front: {
  9954. height: math.unit(7 + 5 / 12, "feet"),
  9955. weight: math.unit(450, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/mocha-aura/front.svg",
  9959. extra: 1907 / 1817,
  9960. bottom: 0.04
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(7 + 5 / 12, "feet"),
  9965. weight: math.unit(450, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/mocha-aura/back.svg",
  9969. extra: 1900 / 1825,
  9970. bottom: 0.045
  9971. }
  9972. },
  9973. },
  9974. [
  9975. {
  9976. name: "Nano",
  9977. height: math.unit(1, "nm")
  9978. },
  9979. {
  9980. name: "Megamicro",
  9981. height: math.unit(1, "mm")
  9982. },
  9983. {
  9984. name: "Micro",
  9985. height: math.unit(3, "inches")
  9986. },
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(7 + 5 / 12, "feet"),
  9990. default: true
  9991. },
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(30, "feet")
  9995. },
  9996. {
  9997. name: "Megamacro",
  9998. height: math.unit(3500, "feet")
  9999. },
  10000. {
  10001. name: "Teramacro",
  10002. height: math.unit(500000, "miles")
  10003. },
  10004. {
  10005. name: "Petamacro",
  10006. height: math.unit(50000000000000000, "parsecs")
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Ilisha Devya" },
  10012. {
  10013. front: {
  10014. height: math.unit(6, "feet"),
  10015. weight: math.unit(150, "lb"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/ilisha-devya/front.svg",
  10019. extra: 1,
  10020. bottom: 0.175
  10021. }
  10022. },
  10023. back: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Back",
  10027. image: {
  10028. source: "./media/characters/ilisha-devya/back.svg",
  10029. extra: 1,
  10030. bottom: 0.015
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(500, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(10, "miles")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(100000, "miles")
  10047. },
  10048. {
  10049. name: "Examacro",
  10050. height: math.unit(1e9, "lightyears")
  10051. },
  10052. {
  10053. name: "Omniversal",
  10054. height: math.unit(1e33, "lightyears")
  10055. },
  10056. {
  10057. name: "Beyond Infinite",
  10058. height: math.unit(1e100, "lightyears")
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Mira" },
  10064. {
  10065. Side: {
  10066. height: math.unit(6, "feet"),
  10067. weight: math.unit(150, "lb"),
  10068. name: "Side",
  10069. image: {
  10070. source: "./media/characters/mira/side.svg",
  10071. extra: 900 / 799,
  10072. bottom: 0.02
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Human Size",
  10079. height: math.unit(6, "feet")
  10080. },
  10081. {
  10082. name: "Macro",
  10083. height: math.unit(100, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Megamacro",
  10088. height: math.unit(10, "miles")
  10089. },
  10090. {
  10091. name: "Gigamacro",
  10092. height: math.unit(25000, "miles")
  10093. },
  10094. {
  10095. name: "Teramacro",
  10096. height: math.unit(300, "AU")
  10097. },
  10098. {
  10099. name: "Full Size",
  10100. height: math.unit(4.5e10, "lightyears")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Holly" },
  10106. {
  10107. front: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(150, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/holly/front.svg",
  10113. extra: 639 / 606
  10114. }
  10115. },
  10116. back: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(150, "lb"),
  10119. name: "Back",
  10120. image: {
  10121. source: "./media/characters/holly/back.svg",
  10122. extra: 623 / 598
  10123. }
  10124. },
  10125. frontWorking: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front (Working)",
  10129. image: {
  10130. source: "./media/characters/holly/front-working.svg",
  10131. extra: 607 / 577,
  10132. bottom: 0.048
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(12 + 3 / 12, "feet"),
  10140. default: true
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Porter" },
  10146. {
  10147. front: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(150, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/porter/front.svg",
  10153. extra: 1,
  10154. bottom: 0.01
  10155. }
  10156. },
  10157. frontRobes: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Front (Robes)",
  10161. image: {
  10162. source: "./media/characters/porter/front-robes.svg",
  10163. extra: 1.01,
  10164. bottom: 0.01
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(11 + 9 / 12, "feet"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Lucy" },
  10178. {
  10179. legendary: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Legendary",
  10183. image: {
  10184. source: "./media/characters/lucy/legendary.svg",
  10185. extra: 1355 / 1100,
  10186. bottom: 0.045
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Legendary",
  10193. height: math.unit(86882 * 2, "miles"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Drusilla" },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/drusilla/front.svg",
  10207. extra: 678 / 635,
  10208. bottom: 0.03
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(150, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/drusilla/back.svg",
  10217. extra: 678 / 635,
  10218. bottom: 0.005
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(100, "feet")
  10226. },
  10227. {
  10228. name: "Canon Height",
  10229. height: math.unit(2000, "feet"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Renard Thatch" },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(180, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/renard-thatch/front.svg",
  10243. extra: 2411 / 2275,
  10244. bottom: 0.01
  10245. }
  10246. },
  10247. frontPosing: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(180, "lb"),
  10250. name: "Front (Posing)",
  10251. image: {
  10252. source: "./media/characters/renard-thatch/front-posing.svg",
  10253. extra: 2381 / 2261,
  10254. bottom: 0.01
  10255. }
  10256. },
  10257. back: {
  10258. height: math.unit(6, "feet"),
  10259. weight: math.unit(180, "lb"),
  10260. name: "Back",
  10261. image: {
  10262. source: "./media/characters/renard-thatch/back.svg",
  10263. extra: 2428 / 2288
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Micro",
  10270. height: math.unit(3, "inches")
  10271. },
  10272. {
  10273. name: "Default",
  10274. height: math.unit(6, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(75, "feet")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Sekvra" },
  10285. {
  10286. front: {
  10287. height: math.unit(1450, "feet"),
  10288. weight: math.unit(1.21e6, "tons"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/sekvra/front.svg",
  10292. extra: 1,
  10293. bottom: 0.03
  10294. }
  10295. },
  10296. frontClothed: {
  10297. height: math.unit(1450, "feet"),
  10298. weight: math.unit(1.21e6, "tons"),
  10299. name: "Front (Clothed)",
  10300. image: {
  10301. source: "./media/characters/sekvra/front-clothed.svg",
  10302. extra: 1,
  10303. bottom: 0.03
  10304. }
  10305. },
  10306. side: {
  10307. height: math.unit(1450, "feet"),
  10308. weight: math.unit(1.21e6, "tons"),
  10309. name: "Side",
  10310. image: {
  10311. source: "./media/characters/sekvra/side.svg",
  10312. extra: 1,
  10313. bottom: 0.025
  10314. }
  10315. },
  10316. back: {
  10317. height: math.unit(1450, "feet"),
  10318. weight: math.unit(1.21e6, "tons"),
  10319. name: "Back",
  10320. image: {
  10321. source: "./media/characters/sekvra/back.svg",
  10322. extra: 1,
  10323. bottom: 0.005
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(1450, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Megamacro",
  10335. height: math.unit(15000, "feet")
  10336. },
  10337. ]
  10338. ))
  10339. characterMakers.push(() => makeCharacter(
  10340. { name: "Carmine" },
  10341. {
  10342. front: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Front",
  10346. image: {
  10347. source: "./media/characters/carmine/front.svg",
  10348. extra: 1,
  10349. bottom: 0.035
  10350. }
  10351. },
  10352. frontArmor: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(150, "lb"),
  10355. name: "Front (Armor)",
  10356. image: {
  10357. source: "./media/characters/carmine/front-armor.svg",
  10358. extra: 1,
  10359. bottom: 0.035
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Large",
  10366. height: math.unit(1, "mile")
  10367. },
  10368. {
  10369. name: "Huge",
  10370. height: math.unit(40, "miles"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Colossal",
  10375. height: math.unit(2500, "miles")
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Elyssia" },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(150, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/elyssia/front.svg",
  10388. extra: 2201 / 2035,
  10389. bottom: 0.05
  10390. }
  10391. },
  10392. frontClothed: {
  10393. height: math.unit(6, "feet"),
  10394. weight: math.unit(150, "lb"),
  10395. name: "Front (Clothed)",
  10396. image: {
  10397. source: "./media/characters/elyssia/front-clothed.svg",
  10398. extra: 2201 / 2035,
  10399. bottom: 0.05
  10400. }
  10401. },
  10402. back: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(150, "lb"),
  10405. name: "Back",
  10406. image: {
  10407. source: "./media/characters/elyssia/back.svg",
  10408. extra: 2201 / 2035,
  10409. bottom: 0.013
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Smaller",
  10416. height: math.unit(150, "feet")
  10417. },
  10418. {
  10419. name: "Standard",
  10420. height: math.unit(1400, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Distracted",
  10425. height: math.unit(15000, "feet")
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Geno Maxwell" },
  10431. {
  10432. front: {
  10433. height: math.unit(7 + 4 / 12, "feet"),
  10434. weight: math.unit(500, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/geno-maxwell/front.svg",
  10438. extra: 2207 / 2040,
  10439. bottom: 0.015
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(3, "inches")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(7 + 4 / 12, "feet"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Macro",
  10455. height: math.unit(220, "feet")
  10456. },
  10457. {
  10458. name: "Megamacro",
  10459. height: math.unit(11, "miles")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Regena Maxwell" },
  10465. {
  10466. front: {
  10467. height: math.unit(7 + 4 / 12, "feet"),
  10468. weight: math.unit(500, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/regena-maxwell/front.svg",
  10472. extra: 3115 / 2770,
  10473. bottom: 0.02
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(7 + 4 / 12, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Macro",
  10485. height: math.unit(220, "feet")
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(11, "miles")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "XGlidingDragonX" },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10502. extra: 860 / 690,
  10503. bottom: 0.03
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(1.7, "meters"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Quilly" },
  10517. {
  10518. front: {
  10519. height: math.unit(6, "feet"),
  10520. weight: math.unit(150, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/quilly/front.svg",
  10524. extra: 890 / 776
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Gigamacro",
  10531. height: math.unit(404090, "miles"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Tempest" },
  10538. {
  10539. front: {
  10540. height: math.unit(7 + 8 / 12, "feet"),
  10541. weight: math.unit(350, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/tempest/front.svg",
  10545. extra: 1175 / 1086,
  10546. bottom: 0.02
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(7 + 8 / 12, "feet"),
  10554. default: true
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Rodger" },
  10560. {
  10561. side: {
  10562. height: math.unit(4 + 5 / 12, "feet"),
  10563. weight: math.unit(80, "lb"),
  10564. name: "Side",
  10565. image: {
  10566. source: "./media/characters/rodger/side.svg",
  10567. extra: 1235 / 1118
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(1, "inch")
  10575. },
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(4 + 5 / 12, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Macro",
  10583. height: math.unit(120, "feet")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Danyel" },
  10589. {
  10590. front: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(150, "lb"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/danyel/front.svg",
  10596. extra: 1185 / 1123,
  10597. bottom: 0.05
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Shrunken",
  10604. height: math.unit(0.5, "mm")
  10605. },
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(1, "mm"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Upsized",
  10613. height: math.unit(5 + 5 / 12, "feet")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Vivian Bijoux" },
  10619. {
  10620. front: {
  10621. height: math.unit(5 + 6 / 12, "feet"),
  10622. weight: math.unit(200, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/vivian-bijoux/front.svg",
  10626. extra: 1,
  10627. bottom: 0.072
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(5 + 6 / 12, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Bad Dream",
  10639. height: math.unit(500, "feet")
  10640. },
  10641. {
  10642. name: "Nightmare",
  10643. height: math.unit(500, "miles")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Zeta" },
  10649. {
  10650. front: {
  10651. height: math.unit(6 + 1 / 12, "feet"),
  10652. weight: math.unit(260, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/zeta/front.svg",
  10656. extra: 1968 / 1889,
  10657. bottom: 0.06
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(6 + 1 / 12, "feet"),
  10662. weight: math.unit(260, "lb"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/zeta/back.svg",
  10666. extra: 1944 / 1858,
  10667. bottom: 0.03
  10668. }
  10669. },
  10670. hand: {
  10671. height: math.unit(1.112, "feet"),
  10672. name: "Hand",
  10673. image: {
  10674. source: "./media/characters/zeta/hand.svg"
  10675. }
  10676. },
  10677. foot: {
  10678. height: math.unit(1.48, "feet"),
  10679. name: "Foot",
  10680. image: {
  10681. source: "./media/characters/zeta/foot.svg"
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(6, "inches")
  10689. },
  10690. {
  10691. name: "Normal",
  10692. height: math.unit(6 + 1 / 12, "feet"),
  10693. default: true
  10694. },
  10695. {
  10696. name: "Macro",
  10697. height: math.unit(20, "feet")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Jamie Larsen" },
  10703. {
  10704. front: {
  10705. height: math.unit(6, "feet"),
  10706. weight: math.unit(150, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/jamie-larsen/front.svg",
  10710. extra: 962 / 933,
  10711. bottom: 0.02
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(150, "lb"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/jamie-larsen/back.svg",
  10720. extra: 997 / 946
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Macro",
  10727. height: math.unit(28 + 7 / 12, "feet"),
  10728. default: true
  10729. },
  10730. {
  10731. name: "Macro+",
  10732. height: math.unit(180, "feet")
  10733. },
  10734. {
  10735. name: "Megamacro",
  10736. height: math.unit(10, "miles")
  10737. },
  10738. {
  10739. name: "Gigamacro",
  10740. height: math.unit(200000, "miles")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Vance" },
  10746. {
  10747. front: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(120, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/vance/front.svg",
  10753. extra: 1980 / 1890,
  10754. bottom: 0.09
  10755. }
  10756. },
  10757. back: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(120, "lb"),
  10760. name: "Back",
  10761. image: {
  10762. source: "./media/characters/vance/back.svg",
  10763. extra: 2081 / 1994,
  10764. bottom: 0.014
  10765. }
  10766. },
  10767. hand: {
  10768. height: math.unit(0.88, "feet"),
  10769. name: "Hand",
  10770. image: {
  10771. source: "./media/characters/vance/hand.svg"
  10772. }
  10773. },
  10774. foot: {
  10775. height: math.unit(0.64, "feet"),
  10776. name: "Foot",
  10777. image: {
  10778. source: "./media/characters/vance/foot.svg"
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Small",
  10785. height: math.unit(90, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Macro",
  10790. height: math.unit(100, "meters")
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(15, "miles")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Xochitl" },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(180, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/xochitl/front.svg",
  10807. extra: 2297 / 2261,
  10808. bottom: 0.065
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(180, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/xochitl/back.svg",
  10817. extra: 2386 / 2354,
  10818. bottom: 0.01
  10819. }
  10820. },
  10821. foot: {
  10822. height: math.unit(6 / 5 * 1.15, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Foot",
  10825. image: {
  10826. source: "./media/characters/xochitl/foot.svg"
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Macro",
  10833. height: math.unit(80, "feet")
  10834. },
  10835. {
  10836. name: "Macro+",
  10837. height: math.unit(400, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(80000, "miles")
  10843. },
  10844. {
  10845. name: "Gigamacro+",
  10846. height: math.unit(400000, "miles")
  10847. },
  10848. {
  10849. name: "Teramacro",
  10850. height: math.unit(300, "AU")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Vincent" },
  10856. {
  10857. front: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(150, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/vincent/front.svg",
  10863. extra: 1130 / 1080,
  10864. bottom: 0.055
  10865. }
  10866. },
  10867. beak: {
  10868. height: math.unit(6 * 0.1, "feet"),
  10869. name: "Beak",
  10870. image: {
  10871. source: "./media/characters/vincent/beak.svg"
  10872. }
  10873. },
  10874. hand: {
  10875. height: math.unit(6 * 0.85, "feet"),
  10876. weight: math.unit(150, "lb"),
  10877. name: "Hand",
  10878. image: {
  10879. source: "./media/characters/vincent/hand.svg"
  10880. }
  10881. },
  10882. foot: {
  10883. height: math.unit(6 * 0.19, "feet"),
  10884. weight: math.unit(150, "lb"),
  10885. name: "Foot",
  10886. image: {
  10887. source: "./media/characters/vincent/foot.svg"
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Base",
  10894. height: math.unit(6 + 5 / 12, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(300, "feet")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(2, "miles")
  10904. },
  10905. {
  10906. name: "Gigamacro",
  10907. height: math.unit(1000, "miles")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Jay" },
  10913. {
  10914. front: {
  10915. height: math.unit(6 + 2 / 12, "feet"),
  10916. weight: math.unit(65, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/jay/front.svg",
  10920. extra: 1510 / 1430,
  10921. bottom: 0.042
  10922. }
  10923. },
  10924. back: {
  10925. height: math.unit(6 + 2 / 12, "feet"),
  10926. weight: math.unit(65, "lb"),
  10927. name: "Back",
  10928. image: {
  10929. source: "./media/characters/jay/back.svg",
  10930. extra: 1510 / 1430,
  10931. bottom: 0.025
  10932. }
  10933. },
  10934. clothed: {
  10935. height: math.unit(6 + 2 / 12, "feet"),
  10936. weight: math.unit(65, "lb"),
  10937. name: "Front (Clothed)",
  10938. image: {
  10939. source: "./media/characters/jay/clothed.svg",
  10940. extra: 744 / 699,
  10941. bottom: 0.043
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Micro",
  10948. height: math.unit(1, "inch")
  10949. },
  10950. {
  10951. name: "Normal",
  10952. height: math.unit(6 + 2 / 12, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Macro",
  10957. height: math.unit(1, "mile")
  10958. },
  10959. {
  10960. name: "Megamacro",
  10961. height: math.unit(100, "miles")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Coatl" },
  10967. {
  10968. front: {
  10969. height: math.unit(2, "meters"),
  10970. weight: math.unit(500, "kg"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/coatl/front.svg",
  10974. extra: 3948 / 3500,
  10975. bottom: 0.082
  10976. }
  10977. },
  10978. },
  10979. [
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(4, "meters")
  10983. },
  10984. {
  10985. name: "Macro",
  10986. height: math.unit(100, "meters"),
  10987. default: true
  10988. },
  10989. {
  10990. name: "Macro+",
  10991. height: math.unit(300, "meters")
  10992. },
  10993. {
  10994. name: "Megamacro",
  10995. height: math.unit(3, "gigameters")
  10996. },
  10997. {
  10998. name: "Megamacro+",
  10999. height: math.unit(300, "terameters")
  11000. },
  11001. {
  11002. name: "Megamacro++",
  11003. height: math.unit(3, "lightyears")
  11004. },
  11005. ]
  11006. ))
  11007. characterMakers.push(() => makeCharacter(
  11008. { name: "Shiroryu" },
  11009. {
  11010. front: {
  11011. height: math.unit(6, "feet"),
  11012. weight: math.unit(50, "kg"),
  11013. name: "front",
  11014. image: {
  11015. source: "./media/characters/shiroryu/front.svg",
  11016. extra: 1990 / 1935
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Mortal Mingling",
  11023. height: math.unit(3, "meters")
  11024. },
  11025. {
  11026. name: "Kaiju-ish",
  11027. height: math.unit(250, "meters")
  11028. },
  11029. {
  11030. name: "Somewhat Godly",
  11031. height: math.unit(400, "km"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Planetary",
  11036. height: math.unit(300, "megameters")
  11037. },
  11038. {
  11039. name: "Galaxy-dwarfing",
  11040. height: math.unit(450, "kiloparsecs")
  11041. },
  11042. {
  11043. name: "Universe Eater",
  11044. height: math.unit(150, "gigaparsecs")
  11045. },
  11046. {
  11047. name: "Almost Immeasurable",
  11048. height: math.unit(1.3e266, "yottaparsecs")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Umeko" },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/umeko/front.svg",
  11061. extra: 1,
  11062. bottom: 0.019
  11063. }
  11064. },
  11065. frontArmored: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(150, "lb"),
  11068. name: "Front (Armored)",
  11069. image: {
  11070. source: "./media/characters/umeko/front-armored.svg",
  11071. extra: 1,
  11072. bottom: 0.021
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(220, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Guardian Dragon",
  11084. height: math.unit(50, "miles")
  11085. },
  11086. {
  11087. name: "Cosmic",
  11088. height: math.unit(800000, "miles")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Cassidy" },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/cassidy/front.svg",
  11101. extra: 1,
  11102. bottom: 0.043
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Canon Height",
  11109. height: math.unit(120, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Macro+",
  11114. height: math.unit(400, "feet")
  11115. },
  11116. {
  11117. name: "Macro++",
  11118. height: math.unit(4000, "feet")
  11119. },
  11120. {
  11121. name: "Megamacro",
  11122. height: math.unit(3, "miles")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Isaac" },
  11128. {
  11129. front: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/isaac/front.svg",
  11135. extra: 896 / 815,
  11136. bottom: 0.11
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Human Size",
  11143. height: math.unit(8, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(400, "feet")
  11149. },
  11150. {
  11151. name: "Megamacro",
  11152. height: math.unit(50, "miles")
  11153. },
  11154. {
  11155. name: "Canon Height",
  11156. height: math.unit(200, "AU")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Sleekit" },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(72, "kg"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/sleekit/front.svg",
  11169. extra: 4693 / 4487,
  11170. bottom: 0.012
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Minimum Height",
  11177. height: math.unit(10, "meters")
  11178. },
  11179. {
  11180. name: "Smaller",
  11181. height: math.unit(25, "meters")
  11182. },
  11183. {
  11184. name: "Larger",
  11185. height: math.unit(38, "meters"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Maximum height",
  11190. height: math.unit(100, "meters")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Nillia" },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/nillia/front.svg",
  11203. extra: 2195 / 2037,
  11204. bottom: 0.005
  11205. }
  11206. },
  11207. back: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Back",
  11211. image: {
  11212. source: "./media/characters/nillia/back.svg",
  11213. extra: 2195 / 2037,
  11214. bottom: 0.005
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Canon Height",
  11221. height: math.unit(489, "feet"),
  11222. default: true
  11223. }
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Mesmyriza" },
  11228. {
  11229. front: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/mesmyriza/front.svg",
  11235. extra: 2067 / 1784,
  11236. bottom: 0.035
  11237. }
  11238. },
  11239. foot: {
  11240. height: math.unit(6 / (250 / 35), "feet"),
  11241. name: "Foot",
  11242. image: {
  11243. source: "./media/characters/mesmyriza/foot.svg"
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(457, "meters"),
  11251. default: true
  11252. },
  11253. {
  11254. name: "Megamacro",
  11255. height: math.unit(8, "megameters")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Saudade" },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(250, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/saudade/front.svg",
  11268. extra: 1172 / 1139,
  11269. bottom: 0.035
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Micro",
  11276. height: math.unit(3, "inches")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(6, "feet"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(50, "feet")
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(2800, "feet")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Keireer" },
  11295. {
  11296. front: {
  11297. height: math.unit(5 + 4 / 12, "feet"),
  11298. weight: math.unit(100, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/keireer/front.svg",
  11302. extra: 716 / 666,
  11303. bottom: 0.05
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(5 + 4 / 12, "feet"),
  11311. default: true
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Mirja" },
  11317. {
  11318. front: {
  11319. height: math.unit(6, "feet"),
  11320. weight: math.unit(90, "kg"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/mirja/front.svg",
  11324. extra: 1789 / 1683,
  11325. bottom: 0.05
  11326. }
  11327. },
  11328. frontDressed: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(90, "lb"),
  11331. name: "Front (Dressed)",
  11332. image: {
  11333. source: "./media/characters/mirja/front-dressed.svg",
  11334. extra: 1789 / 1683,
  11335. bottom: 0.05
  11336. }
  11337. },
  11338. back: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(90, "lb"),
  11341. name: "Back",
  11342. image: {
  11343. source: "./media/characters/mirja/back.svg",
  11344. extra: 953 / 917,
  11345. bottom: 0.017
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "\"Incognito\"",
  11352. height: math.unit(3, "meters")
  11353. },
  11354. {
  11355. name: "Strolling Size",
  11356. height: math.unit(15, "km")
  11357. },
  11358. {
  11359. name: "Larger Strolling Size",
  11360. height: math.unit(400, "km")
  11361. },
  11362. {
  11363. name: "Preferred Size",
  11364. height: math.unit(5000, "km")
  11365. },
  11366. {
  11367. name: "True Size",
  11368. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11369. default: true
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Nightraver" },
  11375. {
  11376. front: {
  11377. height: math.unit(15, "feet"),
  11378. weight: math.unit(880, "kg"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/nightraver/front.svg",
  11382. extra: 2444 / 2160,
  11383. bottom: 0.027
  11384. }
  11385. },
  11386. back: {
  11387. height: math.unit(15, "feet"),
  11388. weight: math.unit(880, "kg"),
  11389. name: "Back",
  11390. image: {
  11391. source: "./media/characters/nightraver/back.svg",
  11392. extra: 2309 / 2180,
  11393. bottom: 0.005
  11394. }
  11395. },
  11396. sole: {
  11397. height: math.unit(2.878, "feet"),
  11398. name: "Sole",
  11399. image: {
  11400. source: "./media/characters/nightraver/sole.svg"
  11401. }
  11402. },
  11403. foot: {
  11404. height: math.unit(2.285, "feet"),
  11405. name: "Foot",
  11406. image: {
  11407. source: "./media/characters/nightraver/foot.svg"
  11408. }
  11409. },
  11410. maw: {
  11411. height: math.unit(2.67, "feet"),
  11412. name: "Maw",
  11413. image: {
  11414. source: "./media/characters/nightraver/maw.svg"
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Micro",
  11421. height: math.unit(1, "cm")
  11422. },
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(15, "feet"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Macro",
  11430. height: math.unit(300, "feet")
  11431. },
  11432. {
  11433. name: "Megamacro",
  11434. height: math.unit(300, "miles")
  11435. },
  11436. {
  11437. name: "Gigamacro",
  11438. height: math.unit(10000, "miles")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Arc" },
  11444. {
  11445. side: {
  11446. height: math.unit(2, "inches"),
  11447. weight: math.unit(5, "grams"),
  11448. name: "Side",
  11449. image: {
  11450. source: "./media/characters/arc/side.svg"
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Micro",
  11457. height: math.unit(2, "inches"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Nebula Shahar" },
  11464. {
  11465. front: {
  11466. height: math.unit(1.1938, "meters"),
  11467. weight: math.unit(54, "kg"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/nebula-shahar/front.svg",
  11471. extra: 1642 / 1436,
  11472. bottom: 0.06
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Megamicro",
  11479. height: math.unit(0.3, "mm")
  11480. },
  11481. {
  11482. name: "Micro",
  11483. height: math.unit(3, "cm")
  11484. },
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(138, "cm"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(30, "m")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Shayla" },
  11498. {
  11499. front: {
  11500. height: math.unit(5.24, "feet"),
  11501. weight: math.unit(150, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/shayla/front.svg",
  11505. extra: 1512 / 1414,
  11506. bottom: 0.01
  11507. }
  11508. },
  11509. back: {
  11510. height: math.unit(5.24, "feet"),
  11511. weight: math.unit(150, "lb"),
  11512. name: "Back",
  11513. image: {
  11514. source: "./media/characters/shayla/back.svg",
  11515. extra: 1512 / 1414
  11516. }
  11517. },
  11518. hand: {
  11519. height: math.unit(0.7781496062992126, "feet"),
  11520. name: "Hand",
  11521. image: {
  11522. source: "./media/characters/shayla/hand.svg"
  11523. }
  11524. },
  11525. foot: {
  11526. height: math.unit(1.4206036745406823, "feet"),
  11527. name: "Foot",
  11528. image: {
  11529. source: "./media/characters/shayla/foot.svg"
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Micro",
  11536. height: math.unit(0.32, "feet")
  11537. },
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(5.24, "feet"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(492.12, "feet")
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(186.41, "miles")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Pia Jr." },
  11555. {
  11556. front: {
  11557. height: math.unit(2.2, "m"),
  11558. weight: math.unit(120, "kg"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/pia-jr/front.svg",
  11562. extra: 1000 / 970,
  11563. bottom: 0.035
  11564. }
  11565. },
  11566. hand: {
  11567. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11568. name: "Hand",
  11569. image: {
  11570. source: "./media/characters/pia-jr/hand.svg"
  11571. }
  11572. },
  11573. paw: {
  11574. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11575. name: "Paw",
  11576. image: {
  11577. source: "./media/characters/pia-jr/paw.svg"
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Micro",
  11584. height: math.unit(1.2, "cm")
  11585. },
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(2.2, "m"),
  11589. default: true
  11590. },
  11591. {
  11592. name: "Macro",
  11593. height: math.unit(180, "m")
  11594. },
  11595. {
  11596. name: "Megamacro",
  11597. height: math.unit(420, "km")
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Pia Sr." },
  11603. {
  11604. front: {
  11605. height: math.unit(2, "m"),
  11606. weight: math.unit(115, "kg"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/pia-sr/front.svg",
  11610. extra: 760 / 730,
  11611. bottom: 0.015
  11612. }
  11613. },
  11614. back: {
  11615. height: math.unit(2, "m"),
  11616. weight: math.unit(115, "kg"),
  11617. name: "Back",
  11618. image: {
  11619. source: "./media/characters/pia-sr/back.svg",
  11620. extra: 760 / 730,
  11621. bottom: 0.01
  11622. }
  11623. },
  11624. hand: {
  11625. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11626. name: "Hand",
  11627. image: {
  11628. source: "./media/characters/pia-sr/hand.svg"
  11629. }
  11630. },
  11631. foot: {
  11632. height: math.unit(1.83, "feet"),
  11633. name: "Foot",
  11634. image: {
  11635. source: "./media/characters/pia-sr/foot.svg"
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Micro",
  11642. height: math.unit(88, "mm")
  11643. },
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(2, "m"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(200, "m")
  11652. },
  11653. {
  11654. name: "Megamacro",
  11655. height: math.unit(420, "km")
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "KIBIBYTE" },
  11661. {
  11662. front: {
  11663. height: math.unit(8 + 2 / 12, "feet"),
  11664. weight: math.unit(300, "lb"),
  11665. name: "Front",
  11666. image: {
  11667. source: "./media/characters/kibibyte/front.svg",
  11668. extra: 2221 / 2098,
  11669. bottom: 0.04
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(8 + 2 / 12, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Socialable Macro",
  11681. height: math.unit(50, "feet")
  11682. },
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(300, "feet")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(500, "miles")
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Felix" },
  11695. {
  11696. front: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/felix/front.svg",
  11702. extra: 762 / 722,
  11703. bottom: 0.02
  11704. }
  11705. },
  11706. frontClothed: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Front (Clothed)",
  11710. image: {
  11711. source: "./media/characters/felix/front-clothed.svg",
  11712. extra: 762 / 722,
  11713. bottom: 0.02
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(6 + 8 / 12, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(2600, "feet")
  11726. },
  11727. {
  11728. name: "Megamacro",
  11729. height: math.unit(450, "miles")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Tobo" },
  11735. {
  11736. front: {
  11737. height: math.unit(6 + 1 / 12, "feet"),
  11738. weight: math.unit(250, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/tobo/front.svg",
  11742. extra: 608 / 586,
  11743. bottom: 0.023
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(6 + 1 / 12, "feet"),
  11748. weight: math.unit(250, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/tobo/back.svg",
  11752. extra: 608 / 586
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Nano",
  11759. height: math.unit(2, "nm")
  11760. },
  11761. {
  11762. name: "Megamicro",
  11763. height: math.unit(0.1, "mm")
  11764. },
  11765. {
  11766. name: "Micro",
  11767. height: math.unit(1, "inch"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Human-sized",
  11772. height: math.unit(6 + 1 / 12, "feet")
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(250, "feet")
  11777. },
  11778. {
  11779. name: "Megamacro",
  11780. height: math.unit(75, "miles")
  11781. },
  11782. {
  11783. name: "Texas-sized",
  11784. height: math.unit(750, "miles")
  11785. },
  11786. {
  11787. name: "Teramacro",
  11788. height: math.unit(50000, "miles")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Danny Kapowsky" },
  11794. {
  11795. front: {
  11796. height: math.unit(6, "feet"),
  11797. weight: math.unit(269, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/danny-kapowsky/front.svg",
  11801. extra: 766 / 736,
  11802. bottom: 0.044
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(269, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/danny-kapowsky/back.svg",
  11811. extra: 797 / 760,
  11812. bottom: 0.025
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(150, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro+",
  11824. height: math.unit(200, "feet")
  11825. },
  11826. {
  11827. name: "Macro++",
  11828. height: math.unit(300, "feet")
  11829. },
  11830. {
  11831. name: "Macro+++",
  11832. height: math.unit(400, "feet")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Finn" },
  11838. {
  11839. side: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(170, "lb"),
  11842. name: "Side",
  11843. image: {
  11844. source: "./media/characters/finn/side.svg",
  11845. extra: 1953 / 1807,
  11846. bottom: 0.057
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Megamacro",
  11853. height: math.unit(14445, "feet"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Roy" },
  11860. {
  11861. front: {
  11862. height: math.unit(5 + 6 / 12, "feet"),
  11863. weight: math.unit(125, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/roy/front.svg",
  11867. extra: 1,
  11868. bottom: 0.11
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(3, "inches"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(5 + 6 / 12, "feet")
  11881. },
  11882. {
  11883. name: "Lesser Macro",
  11884. height: math.unit(60, "feet")
  11885. },
  11886. {
  11887. name: "Greater Macro",
  11888. height: math.unit(120, "feet")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Aevsivs" },
  11894. {
  11895. front: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(100, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/aevsivs/front.svg",
  11901. extra: 1,
  11902. bottom: 0.03
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(100, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/aevsivs/back.svg"
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Micro",
  11917. height: math.unit(2, "inches"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(5, "feet")
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Hildegard" },
  11928. {
  11929. front: {
  11930. height: math.unit(5 + 7 / 12, "feet"),
  11931. weight: math.unit(159, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/hildegard/front.svg",
  11935. extra: 312 / 286,
  11936. bottom: 0.005
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5 + 7 / 12, "feet"),
  11944. default: true
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Bernard & Wilder" },
  11950. {
  11951. bernard: {
  11952. height: math.unit(2 + 7 / 12, "feet"),
  11953. weight: math.unit(66, "lb"),
  11954. name: "Bernard",
  11955. rename: true,
  11956. image: {
  11957. source: "./media/characters/bernard-wilder/bernard.svg",
  11958. extra: 192 / 128,
  11959. bottom: 0.05
  11960. }
  11961. },
  11962. wilder: {
  11963. height: math.unit(5 + 8 / 12, "feet"),
  11964. weight: math.unit(143, "lb"),
  11965. name: "Wilder",
  11966. rename: true,
  11967. image: {
  11968. source: "./media/characters/bernard-wilder/wilder.svg",
  11969. extra: 361 / 312,
  11970. bottom: 0.02
  11971. }
  11972. },
  11973. },
  11974. [
  11975. {
  11976. name: "Normal",
  11977. height: math.unit(2 + 7 / 12, "feet"),
  11978. default: true
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Hearth" },
  11984. {
  11985. anthro: {
  11986. height: math.unit(6 + 1 / 12, "feet"),
  11987. weight: math.unit(155, "lb"),
  11988. name: "Anthro",
  11989. image: {
  11990. source: "./media/characters/hearth/anthro.svg",
  11991. extra: 260 / 250,
  11992. bottom: 0.02
  11993. }
  11994. },
  11995. feral: {
  11996. height: math.unit(3.78, "feet"),
  11997. weight: math.unit(35, "kg"),
  11998. name: "Feral",
  11999. image: {
  12000. source: "./media/characters/hearth/feral.svg",
  12001. extra: 153 / 135,
  12002. bottom: 0.03
  12003. }
  12004. },
  12005. },
  12006. [
  12007. {
  12008. name: "Normal",
  12009. height: math.unit(6 + 1 / 12, "feet"),
  12010. default: true
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "Ingrid" },
  12016. {
  12017. front: {
  12018. height: math.unit(6, "feet"),
  12019. weight: math.unit(182, "lb"),
  12020. name: "Front",
  12021. image: {
  12022. source: "./media/characters/ingrid/front.svg",
  12023. extra: 294 / 268,
  12024. bottom: 0.027
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(6, "feet"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Malgam" },
  12038. {
  12039. eevee: {
  12040. height: math.unit(2 + 10 / 12, "feet"),
  12041. weight: math.unit(86, "lb"),
  12042. name: "Malgam",
  12043. image: {
  12044. source: "./media/characters/malgam/eevee.svg",
  12045. extra: 218 / 180,
  12046. bottom: 0.2
  12047. }
  12048. },
  12049. sylveon: {
  12050. height: math.unit(4, "feet"),
  12051. weight: math.unit(101, "lb"),
  12052. name: "Future Malgam",
  12053. rename: true,
  12054. image: {
  12055. source: "./media/characters/malgam/sylveon.svg",
  12056. extra: 371 / 325,
  12057. bottom: 0.015
  12058. }
  12059. },
  12060. gigantamax: {
  12061. height: math.unit(50, "feet"),
  12062. name: "Gigantamax Malgam",
  12063. rename: true,
  12064. image: {
  12065. source: "./media/characters/malgam/gigantamax.svg"
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(2 + 10 / 12, "feet"),
  12073. default: true
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Fleur" },
  12079. {
  12080. front: {
  12081. height: math.unit(5 + 11 / 12, "feet"),
  12082. weight: math.unit(188, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/fleur/front.svg",
  12086. extra: 309 / 283,
  12087. bottom: 0.007
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(5 + 11 / 12, "feet"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Jude" },
  12101. {
  12102. front: {
  12103. height: math.unit(5 + 4 / 12, "feet"),
  12104. weight: math.unit(122, "lb"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/jude/front.svg",
  12108. extra: 288 / 273,
  12109. bottom: 0.03
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(5 + 4 / 12, "feet"),
  12117. default: true
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Seara" },
  12123. {
  12124. front: {
  12125. height: math.unit(5 + 11 / 12, "feet"),
  12126. weight: math.unit(190, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/seara/front.svg",
  12130. extra: 1,
  12131. bottom: 0.05
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(5 + 11 / 12, "feet"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Caspian" },
  12145. {
  12146. front: {
  12147. height: math.unit(16 + 5 / 12, "feet"),
  12148. weight: math.unit(524, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/caspian/front.svg",
  12152. extra: 1,
  12153. bottom: 0.04
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(16 + 5 / 12, "feet"),
  12161. default: true
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Mika" },
  12167. {
  12168. front: {
  12169. height: math.unit(5 + 7 / 12, "feet"),
  12170. weight: math.unit(170, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/mika/front.svg",
  12174. extra: 1,
  12175. bottom: 0.016
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(5 + 7 / 12, "feet"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Sol" },
  12189. {
  12190. front: {
  12191. height: math.unit(6 + 2 / 12, "feet"),
  12192. weight: math.unit(268, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/sol/front.svg",
  12196. extra: 247 / 231,
  12197. bottom: 0.05
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(6 + 2 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Umiko" },
  12211. {
  12212. buizel: {
  12213. height: math.unit(2 + 5 / 12, "feet"),
  12214. weight: math.unit(87, "lb"),
  12215. name: "Buizel",
  12216. image: {
  12217. source: "./media/characters/umiko/buizel.svg",
  12218. extra: 172 / 157,
  12219. bottom: 0.01
  12220. }
  12221. },
  12222. floatzel: {
  12223. height: math.unit(5 + 9 / 12, "feet"),
  12224. weight: math.unit(250, "lb"),
  12225. name: "Floatzel",
  12226. image: {
  12227. source: "./media/characters/umiko/floatzel.svg",
  12228. extra: 262 / 248
  12229. }
  12230. },
  12231. },
  12232. [
  12233. {
  12234. name: "Normal",
  12235. height: math.unit(2 + 5 / 12, "feet"),
  12236. default: true
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Iliac" },
  12242. {
  12243. front: {
  12244. height: math.unit(6 + 2 / 12, "feet"),
  12245. weight: math.unit(146, "lb"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/iliac/front.svg",
  12249. extra: 389 / 365,
  12250. bottom: 0.035
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(6 + 2 / 12, "feet"),
  12258. default: true
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Topaz" },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(170, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/topaz/front.svg",
  12271. extra: 317 / 303,
  12272. bottom: 0.055
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(6, "feet"),
  12280. default: true
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Gabriel" },
  12286. {
  12287. front: {
  12288. height: math.unit(5 + 11 / 12, "feet"),
  12289. weight: math.unit(144, "lb"),
  12290. name: "Front",
  12291. image: {
  12292. source: "./media/characters/gabriel/front.svg",
  12293. extra: 285 / 262,
  12294. bottom: 0.004
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(5 + 11 / 12, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Tempest (Suicune)" },
  12308. {
  12309. side: {
  12310. height: math.unit(6 + 5 / 12, "feet"),
  12311. weight: math.unit(300, "lb"),
  12312. name: "Side",
  12313. image: {
  12314. source: "./media/characters/tempest-suicune/side.svg",
  12315. extra: 195 / 154,
  12316. bottom: 0.04
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(6 + 5 / 12, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Vulcan" },
  12330. {
  12331. front: {
  12332. height: math.unit(7 + 2 / 12, "feet"),
  12333. weight: math.unit(322, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/vulcan/front.svg",
  12337. extra: 154 / 147,
  12338. bottom: 0.04
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(7 + 2 / 12, "feet"),
  12346. default: true
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Gault" },
  12352. {
  12353. front: {
  12354. height: math.unit(5 + 10 / 12, "feet"),
  12355. weight: math.unit(264, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/gault/front.svg",
  12359. extra: 161 / 140,
  12360. bottom: 0.028
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(5 + 10 / 12, "feet"),
  12368. default: true
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Shard" },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(150, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/shard/front.svg",
  12381. extra: 273 / 238,
  12382. bottom: 0.02
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(3 + 6 / 12, "feet"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Ashe" },
  12396. {
  12397. front: {
  12398. height: math.unit(5 + 11 / 12, "feet"),
  12399. weight: math.unit(146, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/ashe/front.svg",
  12403. extra: 400 / 373,
  12404. bottom: 0.01
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(5 + 11 / 12, "feet"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Beatrix" },
  12418. {
  12419. front: {
  12420. height: math.unit(5 + 5 / 12, "feet"),
  12421. weight: math.unit(135, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/beatrix/front.svg",
  12425. extra: 392 / 379,
  12426. bottom: 0.01
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(6, "feet"),
  12434. default: true
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Ignatius" },
  12440. {
  12441. front: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/ignatius/front.svg",
  12447. extra: 245 / 222,
  12448. bottom: 0.01
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(5 + 5 / 12, "feet"),
  12456. default: true
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Mei Li" },
  12462. {
  12463. front: {
  12464. height: math.unit(6 + 2 / 12, "feet"),
  12465. weight: math.unit(138, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/mei-li/front.svg",
  12469. extra: 237 / 229,
  12470. bottom: 0.03
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(6 + 2 / 12, "feet"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Puru" },
  12484. {
  12485. front: {
  12486. height: math.unit(2 + 4 / 12, "feet"),
  12487. weight: math.unit(62, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/puru/front.svg",
  12491. extra: 206 / 149,
  12492. bottom: 0.06
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(2 + 4 / 12, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Kee" },
  12506. {
  12507. taur: {
  12508. height: math.unit(11, "feet"),
  12509. weight: math.unit(500, "lb"),
  12510. name: "Taur",
  12511. image: {
  12512. source: "./media/characters/kee/taur.svg",
  12513. extra: 1,
  12514. bottom: 0.04
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(11, "feet"),
  12522. default: true
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Cobalt (Dracha)" },
  12528. {
  12529. anthro: {
  12530. height: math.unit(7, "feet"),
  12531. weight: math.unit(190, "lb"),
  12532. name: "Anthro",
  12533. image: {
  12534. source: "./media/characters/cobalt-dracha/anthro.svg",
  12535. extra: 231 / 225,
  12536. bottom: 0.04
  12537. }
  12538. },
  12539. feral: {
  12540. height: math.unit(9 + 7 / 12, "feet"),
  12541. weight: math.unit(294, "lb"),
  12542. name: "Feral",
  12543. image: {
  12544. source: "./media/characters/cobalt-dracha/feral.svg",
  12545. extra: 692 / 633,
  12546. bottom: 0.05
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Normal",
  12553. height: math.unit(7, "feet"),
  12554. default: true
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Java" },
  12560. {
  12561. fallen: {
  12562. height: math.unit(11 + 8 / 12, "feet"),
  12563. weight: math.unit(485, "lb"),
  12564. name: "Java (Fallen)",
  12565. rename: true,
  12566. image: {
  12567. source: "./media/characters/java/fallen.svg",
  12568. extra: 226 / 208,
  12569. bottom: 0.005
  12570. }
  12571. },
  12572. godkin: {
  12573. height: math.unit(10 + 6 / 12, "feet"),
  12574. weight: math.unit(328, "lb"),
  12575. name: "Java (Godkin)",
  12576. rename: true,
  12577. image: {
  12578. source: "./media/characters/java/godkin.svg",
  12579. extra: 270 / 262,
  12580. bottom: 0.02
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(11 + 8 / 12, "feet"),
  12588. default: true
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Skoll" },
  12594. {
  12595. front: {
  12596. height: math.unit(7 + 8 / 12, "feet"),
  12597. weight: math.unit(320, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/skoll/front.svg",
  12601. extra: 232 / 220,
  12602. bottom: 0.02
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(7 + 8 / 12, "feet"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Purna" },
  12616. {
  12617. front: {
  12618. height: math.unit(5 + 9 / 12, "feet"),
  12619. weight: math.unit(170, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/purna/front.svg",
  12623. extra: 239 / 229,
  12624. bottom: 0.01
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(5 + 9 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Kuva" },
  12638. {
  12639. front: {
  12640. height: math.unit(5 + 9 / 12, "feet"),
  12641. weight: math.unit(142, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/kuva/front.svg",
  12645. extra: 281 / 271,
  12646. bottom: 0.006
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(5 + 9 / 12, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Embra" },
  12660. {
  12661. anthro: {
  12662. height: math.unit(9 + 2 / 12, "feet"),
  12663. weight: math.unit(270, "lb"),
  12664. name: "Anthro",
  12665. image: {
  12666. source: "./media/characters/embra/anthro.svg",
  12667. extra: 200 / 187,
  12668. bottom: 0.02
  12669. }
  12670. },
  12671. feral: {
  12672. height: math.unit(18 + 8 / 12, "feet"),
  12673. weight: math.unit(576, "lb"),
  12674. name: "Feral",
  12675. image: {
  12676. source: "./media/characters/embra/feral.svg",
  12677. extra: 152 / 137,
  12678. bottom: 0.037
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(9 + 2 / 12, "feet"),
  12686. default: true
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Grottos" },
  12692. {
  12693. anthro: {
  12694. height: math.unit(10 + 9 / 12, "feet"),
  12695. weight: math.unit(224, "lb"),
  12696. name: "Anthro",
  12697. image: {
  12698. source: "./media/characters/grottos/anthro.svg",
  12699. extra: 350 / 332,
  12700. bottom: 0.045
  12701. }
  12702. },
  12703. feral: {
  12704. height: math.unit(20 + 7 / 12, "feet"),
  12705. weight: math.unit(629, "lb"),
  12706. name: "Feral",
  12707. image: {
  12708. source: "./media/characters/grottos/feral.svg",
  12709. extra: 207 / 190,
  12710. bottom: 0.05
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(10 + 9 / 12, "feet"),
  12718. default: true
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Frifna" },
  12724. {
  12725. anthro: {
  12726. height: math.unit(9 + 6 / 12, "feet"),
  12727. weight: math.unit(298, "lb"),
  12728. name: "Anthro",
  12729. image: {
  12730. source: "./media/characters/frifna/anthro.svg",
  12731. extra: 282 / 269,
  12732. bottom: 0.015
  12733. }
  12734. },
  12735. feral: {
  12736. height: math.unit(16 + 2 / 12, "feet"),
  12737. weight: math.unit(624, "lb"),
  12738. name: "Feral",
  12739. image: {
  12740. source: "./media/characters/frifna/feral.svg"
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(9 + 6 / 12, "feet"),
  12748. default: true
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Elise" },
  12754. {
  12755. front: {
  12756. height: math.unit(6 + 2 / 12, "feet"),
  12757. weight: math.unit(168, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/elise/front.svg",
  12761. extra: 276 / 271
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(6 + 2 / 12, "feet"),
  12769. default: true
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Glade" },
  12775. {
  12776. front: {
  12777. height: math.unit(5 + 10 / 12, "feet"),
  12778. weight: math.unit(210, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/glade/front.svg",
  12782. extra: 258 / 247,
  12783. bottom: 0.008
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(5 + 10 / 12, "feet"),
  12791. default: true
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Rina" },
  12797. {
  12798. front: {
  12799. height: math.unit(5 + 10 / 12, "feet"),
  12800. weight: math.unit(129, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/rina/front.svg",
  12804. extra: 266 / 255,
  12805. bottom: 0.005
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(5 + 10 / 12, "feet"),
  12813. default: true
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Veronica" },
  12819. {
  12820. front: {
  12821. height: math.unit(6 + 1 / 12, "feet"),
  12822. weight: math.unit(192, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/veronica/front.svg",
  12826. extra: 319 / 309,
  12827. bottom: 0.005
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(6 + 1 / 12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Braxton" },
  12841. {
  12842. front: {
  12843. height: math.unit(9 + 3 / 12, "feet"),
  12844. weight: math.unit(1100, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/braxton/front.svg",
  12848. extra: 1057 / 984,
  12849. bottom: 0.05
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(9 + 3 / 12, "feet")
  12857. },
  12858. {
  12859. name: "Giant",
  12860. height: math.unit(300, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(700, "feet")
  12866. },
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(6000, "feet")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Blue Feyonics" },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 7 / 12, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/blue-feyonics/front.svg",
  12882. extra: 1403 / 1306,
  12883. bottom: 0.047
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(6 + 7 / 12, "feet"),
  12891. default: true
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Maxwell" },
  12897. {
  12898. front: {
  12899. height: math.unit(1.8, "meters"),
  12900. weight: math.unit(60, "kg"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/maxwell/front.svg",
  12904. extra: 2060 / 1873
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Micro",
  12911. height: math.unit(1, "mm")
  12912. },
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(1.8, "meter"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(30, "meters")
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(10, "km")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Jack" },
  12930. {
  12931. front: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(150, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/jack/front.svg",
  12937. extra: 1754 / 1640,
  12938. bottom: 0.01
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(80000, "feet"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Max size",
  12950. height: math.unit(10, "lightyears")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Cafat" },
  12956. {
  12957. upright: {
  12958. height: math.unit(7, "feet"),
  12959. weight: math.unit(170, "lb"),
  12960. name: "Upright",
  12961. image: {
  12962. source: "./media/characters/cafat/upright.svg",
  12963. bottom: 0.01
  12964. }
  12965. },
  12966. uprightFull: {
  12967. height: math.unit(7, "feet"),
  12968. weight: math.unit(170, "lb"),
  12969. name: "Upright (Full)",
  12970. image: {
  12971. source: "./media/characters/cafat/upright-full.svg",
  12972. bottom: 0.01
  12973. }
  12974. },
  12975. side: {
  12976. height: math.unit(5, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Side",
  12979. image: {
  12980. source: "./media/characters/cafat/side.svg"
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Small",
  12987. height: math.unit(7, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Large",
  12992. height: math.unit(15.5, "feet")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Verin Raharra" },
  12998. {
  12999. front: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(150, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/verin-raharra/front.svg",
  13005. extra: 5019 / 4835,
  13006. bottom: 0.023
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(7 + 5 / 12, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Upsized",
  13018. height: math.unit(20, "feet")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Nakata" },
  13024. {
  13025. front: {
  13026. height: math.unit(7, "feet"),
  13027. weight: math.unit(230, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/nakata/front.svg",
  13031. extra: 1.005,
  13032. bottom: 0.01
  13033. }
  13034. },
  13035. },
  13036. [
  13037. {
  13038. name: "Normal",
  13039. height: math.unit(7, "feet"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Big",
  13044. height: math.unit(14, "feet")
  13045. },
  13046. {
  13047. name: "Macro",
  13048. height: math.unit(400, "feet")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Lily" },
  13054. {
  13055. front: {
  13056. height: math.unit(4.91, "feet"),
  13057. weight: math.unit(100, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/lily/front.svg",
  13061. extra: 1585 / 1415,
  13062. bottom: 0.02
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(4.91, "feet"),
  13070. default: true
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Sheila" },
  13076. {
  13077. laying: {
  13078. height: math.unit(4 + 4 / 12, "feet"),
  13079. weight: math.unit(600, "lb"),
  13080. name: "Laying",
  13081. image: {
  13082. source: "./media/characters/sheila/laying.svg",
  13083. extra: 1333 / 1265,
  13084. bottom: 0.16
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(4 + 4 / 12, "feet"),
  13092. default: true
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Sax" },
  13098. {
  13099. front: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(190, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/sax/front.svg",
  13105. extra: 1187 / 973,
  13106. bottom: 0.042
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(4, "inches"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Pandora" },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/pandora/front.svg",
  13127. extra: 2720 / 2556,
  13128. bottom: 0.015
  13129. }
  13130. },
  13131. back: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(150, "lb"),
  13134. name: "Back",
  13135. image: {
  13136. source: "./media/characters/pandora/back.svg",
  13137. extra: 2720 / 2556,
  13138. bottom: 0.01
  13139. }
  13140. },
  13141. beans: {
  13142. height: math.unit(6 / 8, "feet"),
  13143. name: "Beans",
  13144. image: {
  13145. source: "./media/characters/pandora/beans.svg"
  13146. }
  13147. },
  13148. skirt: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Skirt",
  13152. image: {
  13153. source: "./media/characters/pandora/skirt.svg",
  13154. extra: 1622 / 1525,
  13155. bottom: 0.015
  13156. }
  13157. },
  13158. hoodie: {
  13159. height: math.unit(6, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Hoodie",
  13162. image: {
  13163. source: "./media/characters/pandora/hoodie.svg",
  13164. extra: 1622 / 1525,
  13165. bottom: 0.015
  13166. }
  13167. },
  13168. casual: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(150, "lb"),
  13171. name: "Casual",
  13172. image: {
  13173. source: "./media/characters/pandora/casual.svg",
  13174. extra: 1622 / 1525,
  13175. bottom: 0.015
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(6, "feet")
  13183. },
  13184. {
  13185. name: "Big Steppy",
  13186. height: math.unit(1, "km"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Venio Darcony" },
  13193. {
  13194. side: {
  13195. height: math.unit(10, "feet"),
  13196. weight: math.unit(800, "kg"),
  13197. name: "Side",
  13198. image: {
  13199. source: "./media/characters/venio-darcony/side.svg",
  13200. extra: 1373 / 1003,
  13201. bottom: 0.037
  13202. }
  13203. },
  13204. front: {
  13205. height: math.unit(19, "feet"),
  13206. weight: math.unit(800, "kg"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/venio-darcony/front.svg"
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(19, "feet"),
  13214. weight: math.unit(800, "kg"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/venio-darcony/back.svg"
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(10, "feet")
  13225. },
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(130, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Macro+",
  13233. height: math.unit(240, "feet")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Veski" },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(150, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/veski/front.svg",
  13246. extra: 1299 / 1225,
  13247. bottom: 0.04
  13248. }
  13249. },
  13250. back: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Back",
  13254. image: {
  13255. source: "./media/characters/veski/back.svg",
  13256. extra: 1299 / 1225,
  13257. bottom: 0.008
  13258. }
  13259. },
  13260. maw: {
  13261. height: math.unit(1.5 * 1.21, "feet"),
  13262. name: "Maw",
  13263. image: {
  13264. source: "./media/characters/veski/maw.svg"
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(2, "km"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Isabelle" },
  13278. {
  13279. front: {
  13280. height: math.unit(5 + 7 / 12, "feet"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/isabelle/front.svg",
  13284. extra: 2130 / 1976,
  13285. bottom: 0.05
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Supermicro",
  13292. height: math.unit(10, "micrometers")
  13293. },
  13294. {
  13295. name: "Micro",
  13296. height: math.unit(1, "inch")
  13297. },
  13298. {
  13299. name: "Tiny",
  13300. height: math.unit(5, "inches")
  13301. },
  13302. {
  13303. name: "Standard",
  13304. height: math.unit(5 + 7 / 12, "inches")
  13305. },
  13306. {
  13307. name: "Macro",
  13308. height: math.unit(80, "meters"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Megamacro",
  13313. height: math.unit(250, "meters")
  13314. },
  13315. {
  13316. name: "Gigamacro",
  13317. height: math.unit(5, "km")
  13318. },
  13319. {
  13320. name: "Cosmic",
  13321. height: math.unit(2.5e6, "miles")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Hanzo" },
  13327. {
  13328. front: {
  13329. height: math.unit(6, "feet"),
  13330. weight: math.unit(150, "lb"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/hanzo/front.svg",
  13334. extra: 374 / 344,
  13335. bottom: 0.02
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(8, "feet"),
  13343. default: true
  13344. },
  13345. ]
  13346. ))
  13347. characterMakers.push(() => makeCharacter(
  13348. { name: "Anna" },
  13349. {
  13350. front: {
  13351. height: math.unit(7, "feet"),
  13352. weight: math.unit(130, "lb"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/anna/front.svg",
  13356. extra: 169 / 145,
  13357. bottom: 0.06
  13358. }
  13359. },
  13360. full: {
  13361. height: math.unit(4.96, "feet"),
  13362. weight: math.unit(220, "lb"),
  13363. name: "Full",
  13364. image: {
  13365. source: "./media/characters/anna/full.svg",
  13366. extra: 138 / 114,
  13367. bottom: 0.15
  13368. }
  13369. },
  13370. tongue: {
  13371. height: math.unit(2.53, "feet"),
  13372. name: "Tongue",
  13373. image: {
  13374. source: "./media/characters/anna/tongue.svg"
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Normal",
  13381. height: math.unit(7, "feet"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Ian Corvid" },
  13388. {
  13389. front: {
  13390. height: math.unit(7, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/ian-corvid/front.svg",
  13395. extra: 150 / 142,
  13396. bottom: 0.02
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(7, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/ian-corvid/back.svg",
  13405. extra: 150 / 143,
  13406. bottom: 0.01
  13407. }
  13408. },
  13409. stomping: {
  13410. height: math.unit(7, "feet"),
  13411. weight: math.unit(150, "lb"),
  13412. name: "Stomping",
  13413. image: {
  13414. source: "./media/characters/ian-corvid/stomping.svg",
  13415. extra: 76 / 72
  13416. }
  13417. },
  13418. sitting: {
  13419. height: math.unit(7 / 1.8, "feet"),
  13420. weight: math.unit(150, "lb"),
  13421. name: "Sitting",
  13422. image: {
  13423. source: "./media/characters/ian-corvid/sitting.svg",
  13424. extra: 1400 / 1269,
  13425. bottom: 0.15
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Tiny Microw",
  13432. height: math.unit(1, "inch")
  13433. },
  13434. {
  13435. name: "Microw",
  13436. height: math.unit(6, "inches")
  13437. },
  13438. {
  13439. name: "Crow",
  13440. height: math.unit(7 + 1 / 12, "feet"),
  13441. default: true
  13442. },
  13443. {
  13444. name: "Macrow",
  13445. height: math.unit(176, "feet")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Natalie Kellon" },
  13451. {
  13452. front: {
  13453. height: math.unit(5 + 7 / 12, "feet"),
  13454. weight: math.unit(147, "lb"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/natalie-kellon/front.svg",
  13458. extra: 1214 / 1141,
  13459. bottom: 0.02
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Micro",
  13466. height: math.unit(1 / 16, "inch")
  13467. },
  13468. {
  13469. name: "Tiny",
  13470. height: math.unit(4, "inches")
  13471. },
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(5 + 7 / 12, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Amazon",
  13479. height: math.unit(12, "feet")
  13480. },
  13481. {
  13482. name: "Giantess",
  13483. height: math.unit(160, "meters")
  13484. },
  13485. {
  13486. name: "Titaness",
  13487. height: math.unit(800, "meters")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Alluria" },
  13493. {
  13494. front: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/alluria/front.svg",
  13500. extra: 806 / 738,
  13501. bottom: 0.01
  13502. }
  13503. },
  13504. side: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Side",
  13508. image: {
  13509. source: "./media/characters/alluria/side.svg",
  13510. extra: 800 / 750,
  13511. }
  13512. },
  13513. back: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Back",
  13517. image: {
  13518. source: "./media/characters/alluria/back.svg",
  13519. extra: 806 / 738,
  13520. }
  13521. },
  13522. frontMaid: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front (Maid)",
  13526. image: {
  13527. source: "./media/characters/alluria/front-maid.svg",
  13528. extra: 806 / 738,
  13529. bottom: 0.01
  13530. }
  13531. },
  13532. sideMaid: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Side (Maid)",
  13536. image: {
  13537. source: "./media/characters/alluria/side-maid.svg",
  13538. extra: 800 / 750,
  13539. bottom: 0.005
  13540. }
  13541. },
  13542. backMaid: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Back (Maid)",
  13546. image: {
  13547. source: "./media/characters/alluria/back-maid.svg",
  13548. extra: 806 / 738,
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(6, "inches"),
  13556. default: true
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Kyle" },
  13562. {
  13563. front: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/kyle/front.svg",
  13569. extra: 1069 / 962,
  13570. bottom: 77.228 / 1727.45
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(150, "feet"),
  13578. default: true
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Duncan" },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(300, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/duncan/front.svg",
  13591. extra: 1650 / 1482,
  13592. bottom: 0.05
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Macro",
  13599. height: math.unit(100, "feet"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Memory" },
  13606. {
  13607. front: {
  13608. height: math.unit(5 + 4 / 12, "feet"),
  13609. weight: math.unit(220, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/memory/front.svg",
  13613. extra: 3641 / 3545,
  13614. bottom: 0.03
  13615. }
  13616. },
  13617. back: {
  13618. height: math.unit(5 + 4 / 12, "feet"),
  13619. weight: math.unit(220, "lb"),
  13620. name: "Back",
  13621. image: {
  13622. source: "./media/characters/memory/back.svg",
  13623. extra: 3641 / 3545,
  13624. bottom: 0.025
  13625. }
  13626. },
  13627. frontSkirt: {
  13628. height: math.unit(5 + 4 / 12, "feet"),
  13629. weight: math.unit(220, "lb"),
  13630. name: "Front (Skirt)",
  13631. image: {
  13632. source: "./media/characters/memory/front-skirt.svg",
  13633. extra: 3641 / 3545,
  13634. bottom: 0.03
  13635. }
  13636. },
  13637. frontDress: {
  13638. height: math.unit(5 + 4 / 12, "feet"),
  13639. weight: math.unit(220, "lb"),
  13640. name: "Front (Dress)",
  13641. image: {
  13642. source: "./media/characters/memory/front-dress.svg",
  13643. extra: 3641 / 3545,
  13644. bottom: 0.03
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Micro",
  13651. height: math.unit(6, "inches"),
  13652. default: true
  13653. },
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(5 + 4 / 12, "feet")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Luno" },
  13662. {
  13663. front: {
  13664. height: math.unit(4 + 11 / 12, "feet"),
  13665. weight: math.unit(100, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/luno/front.svg",
  13669. extra: 1535 / 1487,
  13670. bottom: 0.03
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(3, "inches")
  13678. },
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(4 + 11 / 12, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(300, "feet")
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(700, "miles")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Jamesy" },
  13696. {
  13697. front: {
  13698. height: math.unit(6 + 2 / 12, "feet"),
  13699. weight: math.unit(170, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/jamesy/front.svg",
  13703. extra: 440 / 382,
  13704. bottom: 0.005
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(6 + 2 / 12, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(300, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(700, "miles")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Mark" },
  13730. {
  13731. front: {
  13732. height: math.unit(6, "feet"),
  13733. weight: math.unit(160, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/mark/front.svg",
  13737. extra: 3300 / 3100,
  13738. bottom: 136.42 / 3440.47
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(120, "meters")
  13746. },
  13747. {
  13748. name: "Bigger Macro",
  13749. height: math.unit(350, "meters")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(8, "km"),
  13754. default: true
  13755. },
  13756. {
  13757. name: "Continental",
  13758. height: math.unit(4550, "km")
  13759. },
  13760. {
  13761. name: "Planetary",
  13762. height: math.unit(65000, "km")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Mac" },
  13768. {
  13769. front: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(400, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/mac/front.svg",
  13775. extra: 1048 / 987.7,
  13776. bottom: 60 / 1107.6,
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(500, "feet"),
  13784. default: true
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Bari" },
  13790. {
  13791. front: {
  13792. height: math.unit(5 + 2 / 12, "feet"),
  13793. weight: math.unit(190, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/bari/front.svg",
  13797. extra: 3156 / 2880,
  13798. bottom: 0.03
  13799. }
  13800. },
  13801. back: {
  13802. height: math.unit(5 + 2 / 12, "feet"),
  13803. weight: math.unit(190, "lb"),
  13804. name: "Back",
  13805. image: {
  13806. source: "./media/characters/bari/back.svg",
  13807. extra: 3260 / 2834,
  13808. bottom: 0.025
  13809. }
  13810. },
  13811. frontPlush: {
  13812. height: math.unit(5 + 2 / 12, "feet"),
  13813. weight: math.unit(190, "lb"),
  13814. name: "Front (Plush)",
  13815. image: {
  13816. source: "./media/characters/bari/front-plush.svg",
  13817. extra: 1112 / 1061,
  13818. bottom: 0.002
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Micro",
  13825. height: math.unit(3, "inches")
  13826. },
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(5 + 2 / 12, "feet"),
  13830. default: true
  13831. },
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(20, "feet")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Hunter Misha Raven" },
  13840. {
  13841. front: {
  13842. height: math.unit(6 + 1 / 12, "feet"),
  13843. weight: math.unit(275, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/hunter-misha-raven/front.svg"
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Mortal",
  13853. height: math.unit(6 + 1 / 12, "feet")
  13854. },
  13855. {
  13856. name: "Divine",
  13857. height: math.unit(1.12134e34, "parsecs"),
  13858. default: true
  13859. },
  13860. ]
  13861. ))
  13862. characterMakers.push(() => makeCharacter(
  13863. { name: "Max Calore" },
  13864. {
  13865. front: {
  13866. height: math.unit(6 + 3 / 12, "feet"),
  13867. weight: math.unit(220, "lb"),
  13868. name: "Front",
  13869. image: {
  13870. source: "./media/characters/max-calore/front.svg",
  13871. extra: 1700 / 1648,
  13872. bottom: 0.01
  13873. }
  13874. },
  13875. back: {
  13876. height: math.unit(6 + 3 / 12, "feet"),
  13877. weight: math.unit(220, "lb"),
  13878. name: "Back",
  13879. image: {
  13880. source: "./media/characters/max-calore/back.svg",
  13881. extra: 1700 / 1648,
  13882. bottom: 0.01
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Normal",
  13889. height: math.unit(6 + 3 / 12, "feet"),
  13890. default: true
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Aspen" },
  13896. {
  13897. side: {
  13898. height: math.unit(2 + 8 / 12, "feet"),
  13899. weight: math.unit(99, "lb"),
  13900. name: "Side",
  13901. image: {
  13902. source: "./media/characters/aspen/side.svg",
  13903. extra: 152 / 138,
  13904. bottom: 0.032
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(2 + 8 / 12, "feet"),
  13912. default: true
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Sheila (Wolf)" },
  13918. {
  13919. side: {
  13920. height: math.unit(3 + 2 / 12, "feet"),
  13921. weight: math.unit(224, "lb"),
  13922. name: "Side",
  13923. image: {
  13924. source: "./media/characters/sheila-wolf/side.svg",
  13925. extra: 179 / 166,
  13926. bottom: 0.03
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(3 + 2 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Michelle" },
  13940. {
  13941. side: {
  13942. height: math.unit(1 + 9 / 12, "feet"),
  13943. weight: math.unit(38, "lb"),
  13944. name: "Side",
  13945. image: {
  13946. source: "./media/characters/michelle/side.svg",
  13947. extra: 147 / 136.7,
  13948. bottom: 0.03
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(1 + 9 / 12, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Nino" },
  13962. {
  13963. front: {
  13964. height: math.unit(1 + 1 / 12, "feet"),
  13965. weight: math.unit(18, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/nino/front.svg"
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(1 + 1 / 12, "feet"),
  13976. default: true
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Viola" },
  13982. {
  13983. front: {
  13984. height: math.unit(1, "feet"),
  13985. weight: math.unit(16, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/viola/front.svg"
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(1, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Atlas" },
  14002. {
  14003. front: {
  14004. height: math.unit(6 + 5 / 12, "feet"),
  14005. weight: math.unit(580, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/atlas/front.svg",
  14009. extra: 298.5 / 290,
  14010. bottom: 0.015
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(6 + 5 / 12, "feet"),
  14018. default: true
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Davy" },
  14024. {
  14025. side: {
  14026. height: math.unit(1 + 10 / 12, "feet"),
  14027. weight: math.unit(25, "lb"),
  14028. name: "Side",
  14029. image: {
  14030. source: "./media/characters/davy/side.svg",
  14031. extra: 200 / 170,
  14032. bottom: 0.01
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Normal",
  14039. height: math.unit(1 + 10 / 12, "feet"),
  14040. default: true
  14041. },
  14042. ]
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Fiona" },
  14046. {
  14047. side: {
  14048. height: math.unit(4 + 8 / 12, "feet"),
  14049. weight: math.unit(166, "lb"),
  14050. name: "Side",
  14051. image: {
  14052. source: "./media/characters/fiona/side.svg",
  14053. extra: 232 / 220,
  14054. bottom: 0.03
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(4 + 8 / 12, "feet"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Lyla" },
  14068. {
  14069. front: {
  14070. height: math.unit(2, "feet"),
  14071. weight: math.unit(62, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/lyla/front.svg",
  14075. bottom: 0.1
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(2, "feet"),
  14083. default: true
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Perseus" },
  14089. {
  14090. side: {
  14091. height: math.unit(1.8, "feet"),
  14092. weight: math.unit(44, "lb"),
  14093. name: "Side",
  14094. image: {
  14095. source: "./media/characters/perseus/side.svg",
  14096. bottom: 0.21
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(1.8, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Remus" },
  14110. {
  14111. side: {
  14112. height: math.unit(4 + 2 / 12, "feet"),
  14113. weight: math.unit(20, "lb"),
  14114. name: "Side",
  14115. image: {
  14116. source: "./media/characters/remus/side.svg"
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(4 + 2 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Raf" },
  14130. {
  14131. front: {
  14132. height: math.unit(4 + 11 / 12, "feet"),
  14133. weight: math.unit(114, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/raf/front.svg",
  14137. bottom: 0.01
  14138. }
  14139. },
  14140. side: {
  14141. height: math.unit(4 + 11 / 12, "feet"),
  14142. weight: math.unit(114, "lb"),
  14143. name: "Side",
  14144. image: {
  14145. source: "./media/characters/raf/side.svg",
  14146. bottom: 0.005
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Micro",
  14153. height: math.unit(2, "inches")
  14154. },
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(4 + 11 / 12, "feet"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Macro",
  14162. height: math.unit(70, "feet")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Liam Einarr" },
  14168. {
  14169. front: {
  14170. height: math.unit(1.5, "meters"),
  14171. weight: math.unit(68, "kg"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/liam-einarr/front.svg",
  14175. extra: 2822 / 2666
  14176. }
  14177. },
  14178. back: {
  14179. height: math.unit(1.5, "meters"),
  14180. weight: math.unit(68, "kg"),
  14181. name: "Back",
  14182. image: {
  14183. source: "./media/characters/liam-einarr/back.svg",
  14184. extra: 2822 / 2666,
  14185. bottom: 0.015
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(1.5, "meters"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(150, "meters")
  14198. },
  14199. {
  14200. name: "Megamacro",
  14201. height: math.unit(35, "km")
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Linda" },
  14207. {
  14208. front: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(75, "kg"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/linda/front.svg",
  14214. extra: 930 / 874,
  14215. bottom: 0.004
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(6, "feet"),
  14223. default: true
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Caylex" },
  14229. {
  14230. front: {
  14231. height: math.unit(6 + 8 / 12, "feet"),
  14232. weight: math.unit(220, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/caylex/front.svg",
  14236. extra: 821 / 772,
  14237. bottom: 0.07
  14238. }
  14239. },
  14240. back: {
  14241. height: math.unit(6 + 8 / 12, "feet"),
  14242. weight: math.unit(220, "lb"),
  14243. name: "Back",
  14244. image: {
  14245. source: "./media/characters/caylex/back.svg",
  14246. extra: 821 / 772,
  14247. bottom: 0.022
  14248. }
  14249. },
  14250. hand: {
  14251. height: math.unit(1.25, "feet"),
  14252. name: "Hand",
  14253. image: {
  14254. source: "./media/characters/caylex/hand.svg"
  14255. }
  14256. },
  14257. foot: {
  14258. height: math.unit(1.6, "feet"),
  14259. name: "Foot",
  14260. image: {
  14261. source: "./media/characters/caylex/foot.svg"
  14262. }
  14263. },
  14264. armored: {
  14265. height: math.unit(6 + 8 / 12, "feet"),
  14266. weight: math.unit(250, "lb"),
  14267. name: "Armored",
  14268. image: {
  14269. source: "./media/characters/caylex/armored.svg",
  14270. extra: 1420 / 1310,
  14271. bottom: 0.045
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(6 + 8 / 12, "feet"),
  14279. default: true
  14280. },
  14281. {
  14282. name: "Normal+",
  14283. height: math.unit(12, "feet")
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Alana" },
  14289. {
  14290. front: {
  14291. height: math.unit(7 + 6 / 12, "feet"),
  14292. weight: math.unit(288, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/alana/front.svg",
  14296. extra: 679 / 653,
  14297. bottom: 22.5 / 701
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(7 + 6 / 12, "feet")
  14305. },
  14306. {
  14307. name: "Large",
  14308. height: math.unit(50, "feet")
  14309. },
  14310. {
  14311. name: "Macro",
  14312. height: math.unit(100, "feet"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Macro+",
  14317. height: math.unit(200, "feet")
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Hasani" },
  14323. {
  14324. front: {
  14325. height: math.unit(6 + 1 / 12, "feet"),
  14326. weight: math.unit(210, "lb"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/hasani/front.svg",
  14330. extra: 244 / 232,
  14331. bottom: 0.01
  14332. }
  14333. },
  14334. back: {
  14335. height: math.unit(6 + 1 / 12, "feet"),
  14336. weight: math.unit(210, "lb"),
  14337. name: "Back",
  14338. image: {
  14339. source: "./media/characters/hasani/back.svg",
  14340. extra: 244 / 232,
  14341. bottom: 0.01
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(6 + 1 / 12, "feet")
  14349. },
  14350. {
  14351. name: "Macro",
  14352. height: math.unit(175, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Nita" },
  14359. {
  14360. front: {
  14361. height: math.unit(1.82, "meters"),
  14362. weight: math.unit(140, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/nita/front.svg",
  14366. extra: 2473 / 2363,
  14367. bottom: 0.01
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(1.82, "m")
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(300, "m")
  14379. },
  14380. {
  14381. name: "Mistake Canon",
  14382. height: math.unit(0.5, "miles"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Big Mistake",
  14387. height: math.unit(13, "miles")
  14388. },
  14389. {
  14390. name: "Playing God",
  14391. height: math.unit(2450, "miles")
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Shiriko" },
  14397. {
  14398. front: {
  14399. height: math.unit(4, "feet"),
  14400. weight: math.unit(120, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/shiriko/front.svg",
  14404. extra: 195 / 188
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(4, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Deja" },
  14418. {
  14419. front: {
  14420. height: math.unit(6, "feet"),
  14421. name: "front",
  14422. image: {
  14423. source: "./media/characters/deja/front.svg",
  14424. extra: 926 / 840,
  14425. bottom: 0.07
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Planck Length",
  14432. height: math.unit(1.6e-35, "meters")
  14433. },
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(30.48, "meters"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Universal",
  14441. height: math.unit(8.8e26, "meters")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Anima" },
  14447. {
  14448. side: {
  14449. height: math.unit(8, "feet"),
  14450. weight: math.unit(6300, "lb"),
  14451. name: "Side",
  14452. image: {
  14453. source: "./media/characters/anima/side.svg",
  14454. bottom: 0.035
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(8, "feet"),
  14462. default: true
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Bianca" },
  14468. {
  14469. front: {
  14470. height: math.unit(8, "feet"),
  14471. weight: math.unit(350, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/bianca/front.svg",
  14475. extra: 234 / 225,
  14476. bottom: 0.03
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(8, "feet"),
  14484. default: true
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Adinia" },
  14490. {
  14491. front: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(150, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/adinia/front.svg",
  14497. extra: 1845 / 1672,
  14498. bottom: 0.02
  14499. }
  14500. },
  14501. back: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(150, "lb"),
  14504. name: "Back",
  14505. image: {
  14506. source: "./media/characters/adinia/back.svg",
  14507. extra: 1845 / 1672,
  14508. bottom: 0.002
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(11 + 5 / 12, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Lykasa" },
  14522. {
  14523. front: {
  14524. height: math.unit(3, "meters"),
  14525. weight: math.unit(200, "kg"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/lykasa/front.svg",
  14529. extra: 1076 / 976,
  14530. bottom: 0.06
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(3, "meters")
  14538. },
  14539. {
  14540. name: "Kaiku",
  14541. height: math.unit(120, "meters"),
  14542. default: true
  14543. },
  14544. {
  14545. name: "Mega Kaiju",
  14546. height: math.unit(240, "km")
  14547. },
  14548. {
  14549. name: "Giga Kaiju",
  14550. height: math.unit(400, "megameters")
  14551. },
  14552. {
  14553. name: "Tera Kaiju",
  14554. height: math.unit(800, "gigameters")
  14555. },
  14556. {
  14557. name: "Kaiju Dragon Goddess",
  14558. height: math.unit(26, "zettaparsecs")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Malfaren" },
  14564. {
  14565. side: {
  14566. height: math.unit(283 / 124 * 6, "feet"),
  14567. weight: math.unit(35000, "lb"),
  14568. name: "Side",
  14569. image: {
  14570. source: "./media/characters/malfaren/side.svg",
  14571. extra: 2500 / 1010,
  14572. bottom: 0.01
  14573. }
  14574. },
  14575. front: {
  14576. height: math.unit(22.36, "feet"),
  14577. weight: math.unit(35000, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/malfaren/front.svg",
  14581. extra: 1631 / 1476,
  14582. bottom: 0.01
  14583. }
  14584. },
  14585. maw: {
  14586. height: math.unit(6.9, "feet"),
  14587. name: "Maw",
  14588. image: {
  14589. source: "./media/characters/malfaren/maw.svg"
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Big",
  14596. height: math.unit(283 / 162 * 6, "feet"),
  14597. },
  14598. {
  14599. name: "Bigger",
  14600. height: math.unit(283 / 124 * 6, "feet")
  14601. },
  14602. {
  14603. name: "Massive",
  14604. height: math.unit(283 / 92 * 6, "feet"),
  14605. default: true
  14606. },
  14607. {
  14608. name: "👀💦",
  14609. height: math.unit(283 / 73 * 6, "feet"),
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Kernel" },
  14615. {
  14616. front: {
  14617. height: math.unit(1.7, "m"),
  14618. weight: math.unit(70, "kg"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/kernel/front.svg",
  14622. extra: 222 / 210,
  14623. bottom: 0.007
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Nano",
  14630. height: math.unit(17, "micrometers")
  14631. },
  14632. {
  14633. name: "Micro",
  14634. height: math.unit(1.7, "mm")
  14635. },
  14636. {
  14637. name: "Small",
  14638. height: math.unit(1.7, "cm")
  14639. },
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(1.7, "m"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Jayne Folest" },
  14649. {
  14650. front: {
  14651. height: math.unit(1.75, "meters"),
  14652. weight: math.unit(65, "kg"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/jayne-folest/front.svg",
  14656. extra: 2115 / 2007,
  14657. bottom: 0.02
  14658. }
  14659. },
  14660. back: {
  14661. height: math.unit(1.75, "meters"),
  14662. weight: math.unit(65, "kg"),
  14663. name: "Back",
  14664. image: {
  14665. source: "./media/characters/jayne-folest/back.svg",
  14666. extra: 2115 / 2007,
  14667. bottom: 0.005
  14668. }
  14669. },
  14670. frontClothed: {
  14671. height: math.unit(1.75, "meters"),
  14672. weight: math.unit(65, "kg"),
  14673. name: "Front (Clothed)",
  14674. image: {
  14675. source: "./media/characters/jayne-folest/front-clothed.svg",
  14676. extra: 2115 / 2007,
  14677. bottom: 0.035
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(1 / 1.260, "feet"),
  14682. name: "Hand",
  14683. image: {
  14684. source: "./media/characters/jayne-folest/hand.svg"
  14685. }
  14686. },
  14687. foot: {
  14688. height: math.unit(1 / 0.918, "feet"),
  14689. name: "Foot",
  14690. image: {
  14691. source: "./media/characters/jayne-folest/foot.svg"
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(4, "cm")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(1.75, "meters")
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(47.5, "meters"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Algier" },
  14713. {
  14714. front: {
  14715. height: math.unit(180, "cm"),
  14716. weight: math.unit(70, "kg"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/algier/front.svg",
  14720. extra: 596 / 572,
  14721. bottom: 0.04
  14722. }
  14723. },
  14724. back: {
  14725. height: math.unit(180, "cm"),
  14726. weight: math.unit(70, "kg"),
  14727. name: "Back",
  14728. image: {
  14729. source: "./media/characters/algier/back.svg",
  14730. extra: 596 / 572,
  14731. bottom: 0.025
  14732. }
  14733. },
  14734. frontdressed: {
  14735. height: math.unit(180, "cm"),
  14736. weight: math.unit(150, "kg"),
  14737. name: "Front-dressed",
  14738. image: {
  14739. source: "./media/characters/algier/front-dressed.svg",
  14740. extra: 596 / 572,
  14741. bottom: 0.038
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Micro",
  14748. height: math.unit(5, "cm")
  14749. },
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(180, "cm"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Macro",
  14757. height: math.unit(64, "m")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Pretzel" },
  14763. {
  14764. upright: {
  14765. height: math.unit(7, "feet"),
  14766. weight: math.unit(300, "lb"),
  14767. name: "Upright",
  14768. image: {
  14769. source: "./media/characters/pretzel/upright.svg",
  14770. extra: 534 / 522,
  14771. bottom: 0.065
  14772. }
  14773. },
  14774. sprawling: {
  14775. height: math.unit(3.75, "feet"),
  14776. weight: math.unit(300, "lb"),
  14777. name: "Sprawling",
  14778. image: {
  14779. source: "./media/characters/pretzel/sprawling.svg",
  14780. extra: 314 / 281,
  14781. bottom: 0.1
  14782. }
  14783. },
  14784. tongue: {
  14785. height: math.unit(2, "feet"),
  14786. name: "Tongue",
  14787. image: {
  14788. source: "./media/characters/pretzel/tongue.svg"
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(7, "feet"),
  14796. default: true
  14797. },
  14798. {
  14799. name: "Oversized",
  14800. height: math.unit(15, "feet")
  14801. },
  14802. {
  14803. name: "Huge",
  14804. height: math.unit(30, "feet")
  14805. },
  14806. {
  14807. name: "Macro",
  14808. height: math.unit(250, "feet")
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Roxi" },
  14814. {
  14815. sideFront: {
  14816. height: math.unit(5 + 2 / 12, "feet"),
  14817. weight: math.unit(120, "lb"),
  14818. name: "Front Side",
  14819. image: {
  14820. source: "./media/characters/roxi/side-front.svg",
  14821. extra: 2924 / 2717,
  14822. bottom: 0.08
  14823. }
  14824. },
  14825. sideBack: {
  14826. height: math.unit(5 + 2 / 12, "feet"),
  14827. weight: math.unit(120, "lb"),
  14828. name: "Back Side",
  14829. image: {
  14830. source: "./media/characters/roxi/side-back.svg",
  14831. extra: 2904 / 2693,
  14832. bottom: 0.06
  14833. }
  14834. },
  14835. front: {
  14836. height: math.unit(5 + 2 / 12, "feet"),
  14837. weight: math.unit(120, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/roxi/front.svg",
  14841. extra: 2028 / 1907,
  14842. bottom: 0.01
  14843. }
  14844. },
  14845. frontAlt: {
  14846. height: math.unit(5 + 2 / 12, "feet"),
  14847. weight: math.unit(120, "lb"),
  14848. name: "Front (Alt)",
  14849. image: {
  14850. source: "./media/characters/roxi/front-alt.svg",
  14851. extra: 1828 / 1798,
  14852. bottom: 0.01
  14853. }
  14854. },
  14855. sitting: {
  14856. height: math.unit(2.8, "feet"),
  14857. weight: math.unit(120, "lb"),
  14858. name: "Sitting",
  14859. image: {
  14860. source: "./media/characters/roxi/sitting.svg",
  14861. extra: 2660 / 2462,
  14862. bottom: 0.1
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5 + 2 / 12, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Shadow" },
  14876. {
  14877. side: {
  14878. height: math.unit(55, "feet"),
  14879. weight: math.unit(153, "tons"),
  14880. name: "Side",
  14881. image: {
  14882. source: "./media/characters/shadow/side.svg",
  14883. extra: 701 / 628,
  14884. bottom: 0.02
  14885. }
  14886. },
  14887. flying: {
  14888. height: math.unit(145, "feet"),
  14889. weight: math.unit(153, "tons"),
  14890. name: "Flying",
  14891. image: {
  14892. source: "./media/characters/shadow/flying.svg"
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(55, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Marcie" },
  14906. {
  14907. front: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(200, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/marcie/front.svg",
  14913. extra: 960 / 876,
  14914. bottom: 58 / 1017.87
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Macro",
  14921. height: math.unit(1, "mile"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Kachina" },
  14928. {
  14929. front: {
  14930. height: math.unit(7, "feet"),
  14931. weight: math.unit(200, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/kachina/front.svg",
  14935. extra: 1290.68 / 1119,
  14936. bottom: 36.5 / 1327.18
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(7, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Kash" },
  14950. {
  14951. looking: {
  14952. height: math.unit(2, "meters"),
  14953. weight: math.unit(300, "kg"),
  14954. name: "Looking",
  14955. image: {
  14956. source: "./media/characters/kash/looking.svg",
  14957. extra: 474 / 344,
  14958. bottom: 0.03
  14959. }
  14960. },
  14961. side: {
  14962. height: math.unit(2, "meters"),
  14963. weight: math.unit(300, "kg"),
  14964. name: "Side",
  14965. image: {
  14966. source: "./media/characters/kash/side.svg",
  14967. extra: 302 / 251,
  14968. bottom: 0.03
  14969. }
  14970. },
  14971. front: {
  14972. height: math.unit(2, "meters"),
  14973. weight: math.unit(300, "kg"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/kash/front.svg",
  14977. extra: 495 / 360,
  14978. bottom: 0.015
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(2, "meters"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Big",
  14990. height: math.unit(3, "meters")
  14991. },
  14992. {
  14993. name: "Large",
  14994. height: math.unit(5, "meters")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Lalim" },
  15000. {
  15001. feeding: {
  15002. height: math.unit(6.7, "feet"),
  15003. weight: math.unit(350, "lb"),
  15004. name: "Feeding",
  15005. image: {
  15006. source: "./media/characters/lalim/feeding.svg",
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(6.7, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "De'Vout" },
  15020. {
  15021. front: {
  15022. height: math.unit(9.5, "feet"),
  15023. weight: math.unit(600, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/de'vout/front.svg",
  15027. extra: 1443 / 1328,
  15028. bottom: 0.025
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(9.5, "feet"),
  15033. weight: math.unit(600, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/de'vout/back.svg",
  15037. extra: 1443 / 1328
  15038. }
  15039. },
  15040. frontDressed: {
  15041. height: math.unit(9.5, "feet"),
  15042. weight: math.unit(600, "lb"),
  15043. name: "Front (Dressed",
  15044. image: {
  15045. source: "./media/characters/de'vout/front-dressed.svg",
  15046. extra: 1443 / 1328,
  15047. bottom: 0.025
  15048. }
  15049. },
  15050. backDressed: {
  15051. height: math.unit(9.5, "feet"),
  15052. weight: math.unit(600, "lb"),
  15053. name: "Back (Dressed",
  15054. image: {
  15055. source: "./media/characters/de'vout/back-dressed.svg",
  15056. extra: 1443 / 1328
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(9.5, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Talana" },
  15070. {
  15071. front: {
  15072. height: math.unit(8, "feet"),
  15073. weight: math.unit(225, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/talana/front.svg",
  15077. extra: 1410 / 1300,
  15078. bottom: 0.015
  15079. }
  15080. },
  15081. frontDressed: {
  15082. height: math.unit(8, "feet"),
  15083. weight: math.unit(225, "lb"),
  15084. name: "Front (Dressed",
  15085. image: {
  15086. source: "./media/characters/talana/front-dressed.svg",
  15087. extra: 1410 / 1300,
  15088. bottom: 0.015
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(8, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Xeauvok" },
  15102. {
  15103. side: {
  15104. height: math.unit(7.2, "feet"),
  15105. weight: math.unit(150, "lb"),
  15106. name: "Side",
  15107. image: {
  15108. source: "./media/characters/xeauvok/side.svg",
  15109. extra: 1975 / 1523,
  15110. bottom: 0.07
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(7.2, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Zara" },
  15124. {
  15125. side: {
  15126. height: math.unit(10, "feet"),
  15127. weight: math.unit(900, "kg"),
  15128. name: "Side",
  15129. image: {
  15130. source: "./media/characters/zara/side.svg",
  15131. extra: 504 / 498
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(10, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Richard (Dragon)" },
  15145. {
  15146. side: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Side",
  15150. image: {
  15151. source: "./media/characters/richard-dragon/side.svg",
  15152. extra: 845 / 340,
  15153. bottom: 0.017
  15154. }
  15155. },
  15156. maw: {
  15157. height: math.unit(2.97, "feet"),
  15158. name: "Maw",
  15159. image: {
  15160. source: "./media/characters/richard-dragon/maw.svg"
  15161. }
  15162. },
  15163. },
  15164. [
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Richard (Smeargle)" },
  15169. {
  15170. front: {
  15171. height: math.unit(4, "feet"),
  15172. weight: math.unit(100, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/richard-smeargle/front.svg",
  15176. extra: 2952 / 2820,
  15177. bottom: 0.028
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(4, "feet"),
  15185. default: true
  15186. },
  15187. {
  15188. name: "Dynamax",
  15189. height: math.unit(20, "meters")
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Klay" },
  15195. {
  15196. front: {
  15197. height: math.unit(6, "feet"),
  15198. weight: math.unit(110, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/klay/front.svg",
  15202. extra: 962 / 883,
  15203. bottom: 0.04
  15204. }
  15205. },
  15206. back: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(110, "lb"),
  15209. name: "Back",
  15210. image: {
  15211. source: "./media/characters/klay/back.svg",
  15212. extra: 962 / 883
  15213. }
  15214. },
  15215. beans: {
  15216. height: math.unit(1.15, "feet"),
  15217. name: "Beans",
  15218. image: {
  15219. source: "./media/characters/klay/beans.svg"
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Micro",
  15226. height: math.unit(6, "inches")
  15227. },
  15228. {
  15229. name: "Mini",
  15230. height: math.unit(3, "feet")
  15231. },
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(6, "feet"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Big",
  15239. height: math.unit(25, "feet")
  15240. },
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(100, "feet")
  15244. },
  15245. {
  15246. name: "Megamacro",
  15247. height: math.unit(400, "feet")
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Marcus" },
  15253. {
  15254. front: {
  15255. height: math.unit(6, "feet"),
  15256. weight: math.unit(160, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/marcus/front.svg",
  15260. extra: 734 / 676,
  15261. bottom: 0.03
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Little",
  15268. height: math.unit(6, "feet")
  15269. },
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(110, "feet"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Macro",
  15277. height: math.unit(250, "feet")
  15278. },
  15279. {
  15280. name: "Megamacro",
  15281. height: math.unit(1000, "feet")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Claude DelRoute" },
  15287. {
  15288. front: {
  15289. height: math.unit(7, "feet"),
  15290. weight: math.unit(275, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/claude-delroute/front.svg",
  15294. extra: 230 / 214,
  15295. bottom: 0.007
  15296. }
  15297. },
  15298. side: {
  15299. height: math.unit(7, "feet"),
  15300. weight: math.unit(275, "lb"),
  15301. name: "Side",
  15302. image: {
  15303. source: "./media/characters/claude-delroute/side.svg",
  15304. extra: 222 / 214,
  15305. bottom: 0.01
  15306. }
  15307. },
  15308. back: {
  15309. height: math.unit(7, "feet"),
  15310. weight: math.unit(275, "lb"),
  15311. name: "Back",
  15312. image: {
  15313. source: "./media/characters/claude-delroute/back.svg",
  15314. extra: 230 / 214,
  15315. bottom: 0.015
  15316. }
  15317. },
  15318. maw: {
  15319. height: math.unit(0.6407, "meters"),
  15320. name: "Maw",
  15321. image: {
  15322. source: "./media/characters/claude-delroute/maw.svg"
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(7, "feet"),
  15330. default: true
  15331. },
  15332. {
  15333. name: "Lorge",
  15334. height: math.unit(20, "feet")
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Dragonien" },
  15340. {
  15341. front: {
  15342. height: math.unit(8 + 4 / 12, "feet"),
  15343. weight: math.unit(600, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/dragonien/front.svg",
  15347. extra: 100 / 94,
  15348. bottom: 3.3 / 103.3445
  15349. }
  15350. },
  15351. back: {
  15352. height: math.unit(8 + 4 / 12, "feet"),
  15353. weight: math.unit(600, "lb"),
  15354. name: "Back",
  15355. image: {
  15356. source: "./media/characters/dragonien/back.svg",
  15357. extra: 776 / 746,
  15358. bottom: 6.4 / 782.0616
  15359. }
  15360. },
  15361. foot: {
  15362. height: math.unit(1.54, "feet"),
  15363. name: "Foot",
  15364. image: {
  15365. source: "./media/characters/dragonien/foot.svg",
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(8 + 4 / 12, "feet"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(200, "feet")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(1, "mile")
  15382. },
  15383. {
  15384. name: "Gigamacro",
  15385. height: math.unit(1000, "miles")
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Desta" },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 2 / 12, "feet"),
  15394. weight: math.unit(110, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/desta/front.svg",
  15398. extra: 1482 / 1417
  15399. }
  15400. },
  15401. side: {
  15402. height: math.unit(5 + 2 / 12, "feet"),
  15403. weight: math.unit(110, "lb"),
  15404. name: "Side",
  15405. image: {
  15406. source: "./media/characters/desta/side.svg",
  15407. extra: 2579 / 2491,
  15408. bottom: 0.053
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Micro",
  15415. height: math.unit(6, "inches")
  15416. },
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(5 + 2 / 12, "feet"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Macro",
  15424. height: math.unit(62, "feet")
  15425. },
  15426. {
  15427. name: "Megamacro",
  15428. height: math.unit(1800, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Storm Alystar" },
  15434. {
  15435. front: {
  15436. height: math.unit(10, "feet"),
  15437. weight: math.unit(700, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/storm-alystar/front.svg",
  15441. extra: 2112 / 1898,
  15442. bottom: 0.034
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Micro",
  15449. height: math.unit(3.5, "inches")
  15450. },
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(10, "feet"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Macro",
  15458. height: math.unit(400, "feet")
  15459. },
  15460. {
  15461. name: "Deific",
  15462. height: math.unit(60, "miles")
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Ilia" },
  15468. {
  15469. front: {
  15470. height: math.unit(2.35, "meters"),
  15471. weight: math.unit(119, "kg"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/ilia/front.svg",
  15475. extra: 1285 / 1255,
  15476. bottom: 0.06
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2.35, "meters")
  15484. },
  15485. {
  15486. name: "Macro",
  15487. height: math.unit(140, "meters"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(100, "miles")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "KingDead" },
  15498. {
  15499. front: {
  15500. height: math.unit(6 + 5 / 12, "feet"),
  15501. weight: math.unit(190, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/kingdead/front.svg",
  15505. extra: 1228 / 1177
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Micro",
  15512. height: math.unit(7, "inches")
  15513. },
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(6 + 5 / 12, "feet")
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(150, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(200, "miles")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Kyrehx" },
  15531. {
  15532. front: {
  15533. height: math.unit(8, "feet"),
  15534. weight: math.unit(600, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/kyrehx/front.svg",
  15538. extra: 1195 / 1095,
  15539. bottom: 0.034
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Micro",
  15546. height: math.unit(2, "inches")
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(8, "feet"),
  15551. default: true
  15552. },
  15553. {
  15554. name: "Macro",
  15555. height: math.unit(255, "feet")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Xang" },
  15561. {
  15562. front: {
  15563. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15564. weight: math.unit(184, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/xang/front.svg",
  15568. extra: 845 / 755
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(0.935 * 146, "feet")
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(0.935 * 3, "miles")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Doc Weardno" },
  15590. {
  15591. frontDressed: {
  15592. height: math.unit(5 + 7 / 12, "feet"),
  15593. weight: math.unit(140, "lb"),
  15594. name: "Front (Dressed)",
  15595. image: {
  15596. source: "./media/characters/doc-weardno/front-dressed.svg",
  15597. extra: 263 / 234
  15598. }
  15599. },
  15600. backDressed: {
  15601. height: math.unit(5 + 7 / 12, "feet"),
  15602. weight: math.unit(140, "lb"),
  15603. name: "Back (Dressed)",
  15604. image: {
  15605. source: "./media/characters/doc-weardno/back-dressed.svg",
  15606. extra: 266 / 238
  15607. }
  15608. },
  15609. front: {
  15610. height: math.unit(5 + 7 / 12, "feet"),
  15611. weight: math.unit(140, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/doc-weardno/front.svg",
  15615. extra: 254 / 233
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Micro",
  15622. height: math.unit(3, "inches")
  15623. },
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(5 + 7 / 12, "feet"),
  15627. default: true
  15628. },
  15629. {
  15630. name: "Macro",
  15631. height: math.unit(25, "feet")
  15632. },
  15633. {
  15634. name: "Megamacro",
  15635. height: math.unit(2, "miles")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Seth Whilst" },
  15641. {
  15642. front: {
  15643. height: math.unit(6 + 2 / 12, "feet"),
  15644. weight: math.unit(153, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/seth-whilst/front.svg",
  15648. bottom: 0.07
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Micro",
  15655. height: math.unit(5, "inches")
  15656. },
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(6 + 2 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Pocket Jabari" },
  15666. {
  15667. front: {
  15668. height: math.unit(3, "inches"),
  15669. weight: math.unit(8, "grams"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/pocket-jabari/front.svg",
  15673. extra: 1024 / 974,
  15674. bottom: 0.039
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Minimicro",
  15681. height: math.unit(8, "mm")
  15682. },
  15683. {
  15684. name: "Micro",
  15685. height: math.unit(3, "inches"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(3, "feet")
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Sapphy" },
  15696. {
  15697. front: {
  15698. height: math.unit(15, "feet"),
  15699. weight: math.unit(3280, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/sapphy/front.svg",
  15703. extra: 671 / 577,
  15704. bottom: 0.085
  15705. }
  15706. },
  15707. back: {
  15708. height: math.unit(15, "feet"),
  15709. weight: math.unit(3280, "lb"),
  15710. name: "Back",
  15711. image: {
  15712. source: "./media/characters/sapphy/back.svg",
  15713. extra: 631 / 607,
  15714. bottom: 0.045
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(15, "feet")
  15722. },
  15723. {
  15724. name: "Casual Macro",
  15725. height: math.unit(120, "feet")
  15726. },
  15727. {
  15728. name: "Macro",
  15729. height: math.unit(2150, "feet"),
  15730. default: true
  15731. },
  15732. {
  15733. name: "Megamacro",
  15734. height: math.unit(8, "miles")
  15735. },
  15736. {
  15737. name: "Galaxy Mom",
  15738. height: math.unit(6, "megalightyears")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Kiro" },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(170, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/kiro/front.svg",
  15751. extra: 1064 / 1012,
  15752. bottom: 0.052
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Micro",
  15759. height: math.unit(6, "inches")
  15760. },
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(6, "feet"),
  15764. default: true
  15765. },
  15766. {
  15767. name: "Macro",
  15768. height: math.unit(72, "feet")
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Irishfox" },
  15774. {
  15775. front: {
  15776. height: math.unit(5 + 9 / 12, "feet"),
  15777. weight: math.unit(175, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/irishfox/front.svg",
  15781. extra: 1912 / 1680,
  15782. bottom: 0.02
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Nano",
  15789. height: math.unit(1, "mm")
  15790. },
  15791. {
  15792. name: "Micro",
  15793. height: math.unit(2, "inches")
  15794. },
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(5 + 9 / 12, "feet"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Macro",
  15802. height: math.unit(45, "feet")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Aronai Sieyes" },
  15808. {
  15809. front: {
  15810. height: math.unit(6 + 1 / 12, "feet"),
  15811. weight: math.unit(150, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/aronai-sieyes/front.svg",
  15815. extra: 1556 / 1480,
  15816. bottom: 0.015
  15817. }
  15818. },
  15819. side: {
  15820. height: math.unit(6 + 1 / 12, "feet"),
  15821. weight: math.unit(150, "lb"),
  15822. name: "Side",
  15823. image: {
  15824. source: "./media/characters/aronai-sieyes/side.svg",
  15825. extra: 1433 / 1390,
  15826. bottom: 0.0393
  15827. }
  15828. },
  15829. back: {
  15830. height: math.unit(6 + 1 / 12, "feet"),
  15831. weight: math.unit(150, "lb"),
  15832. name: "Back",
  15833. image: {
  15834. source: "./media/characters/aronai-sieyes/back.svg",
  15835. extra: 1544 / 1494,
  15836. bottom: 0.02
  15837. }
  15838. },
  15839. frontClothed: {
  15840. height: math.unit(6 + 1 / 12, "feet"),
  15841. weight: math.unit(150, "lb"),
  15842. name: "Front (Clothed)",
  15843. image: {
  15844. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15845. extra: 1582 / 1527
  15846. }
  15847. },
  15848. feral: {
  15849. height: math.unit(18, "feet"),
  15850. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15851. name: "Feral",
  15852. image: {
  15853. source: "./media/characters/aronai-sieyes/feral.svg",
  15854. extra: 1530 / 1240,
  15855. bottom: 0.035
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Micro",
  15862. height: math.unit(2, "inches")
  15863. },
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(6 + 1 / 12, "feet"),
  15867. default: true
  15868. }
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Xuna" },
  15873. {
  15874. front: {
  15875. height: math.unit(12, "feet"),
  15876. weight: math.unit(410, "kg"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/xuna/front.svg",
  15880. extra: 2184 / 1980
  15881. }
  15882. },
  15883. side: {
  15884. height: math.unit(12, "feet"),
  15885. weight: math.unit(410, "kg"),
  15886. name: "Side",
  15887. image: {
  15888. source: "./media/characters/xuna/side.svg",
  15889. extra: 2184 / 1980
  15890. }
  15891. },
  15892. back: {
  15893. height: math.unit(12, "feet"),
  15894. weight: math.unit(410, "kg"),
  15895. name: "Back",
  15896. image: {
  15897. source: "./media/characters/xuna/back.svg",
  15898. extra: 2184 / 1980
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Nano glow",
  15905. height: math.unit(10, "nm")
  15906. },
  15907. {
  15908. name: "Micro floof",
  15909. height: math.unit(0.3, "m")
  15910. },
  15911. {
  15912. name: "Huggable softy boi",
  15913. height: math.unit(3.6576, "m"),
  15914. default: true
  15915. },
  15916. {
  15917. name: "Admirable floof",
  15918. height: math.unit(80, "meters")
  15919. },
  15920. {
  15921. name: "Gentle macro",
  15922. height: math.unit(300, "meters")
  15923. },
  15924. {
  15925. name: "Very careful floof",
  15926. height: math.unit(3200, "meters")
  15927. },
  15928. {
  15929. name: "The mega floof",
  15930. height: math.unit(36000, "meters")
  15931. },
  15932. {
  15933. name: "Giga-fur-Wicker",
  15934. height: math.unit(4800000, "meters")
  15935. },
  15936. {
  15937. name: "Licky world",
  15938. height: math.unit(20000000, "meters")
  15939. },
  15940. {
  15941. name: "Floofy cyan sun",
  15942. height: math.unit(1500000000, "meters")
  15943. },
  15944. {
  15945. name: "Milky Wicker",
  15946. height: math.unit(1000000000000000000000, "meters")
  15947. },
  15948. {
  15949. name: "The observing Wicker",
  15950. height: math.unit(999999999999999999999999999, "meters")
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Arokha Sieyes" },
  15956. {
  15957. front: {
  15958. height: math.unit(5 + 9 / 12, "feet"),
  15959. weight: math.unit(150, "lb"),
  15960. name: "Front",
  15961. image: {
  15962. source: "./media/characters/arokha-sieyes/front.svg",
  15963. extra: 1425 / 1284,
  15964. bottom: 0.05
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(5 + 9 / 12, "feet")
  15972. },
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(30, "meters"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Arokh Sieyes" },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(180, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/arokh-sieyes/front.svg",
  15989. extra: 1830 / 1769,
  15990. bottom: 0.01
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(6, "feet")
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(30, "meters"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Goldeneye" },
  16008. {
  16009. side: {
  16010. height: math.unit(13 + 1 / 12, "feet"),
  16011. weight: math.unit(8.5, "tonnes"),
  16012. name: "Side",
  16013. image: {
  16014. source: "./media/characters/goldeneye/side.svg",
  16015. extra: 1182 / 778,
  16016. bottom: 0.067
  16017. }
  16018. },
  16019. paw: {
  16020. height: math.unit(3.4, "feet"),
  16021. name: "Paw",
  16022. image: {
  16023. source: "./media/characters/goldeneye/paw.svg"
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(13 + 1 / 12, "feet"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Leonardo Lycheborne" },
  16037. {
  16038. front: {
  16039. height: math.unit(6 + 1 / 12, "feet"),
  16040. weight: math.unit(210, "lb"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/leonardo-lycheborne/front.svg",
  16044. extra: 390 / 365,
  16045. bottom: 0.032
  16046. }
  16047. },
  16048. side: {
  16049. height: math.unit(6 + 1 / 12, "feet"),
  16050. weight: math.unit(210, "lb"),
  16051. name: "Side",
  16052. image: {
  16053. source: "./media/characters/leonardo-lycheborne/side.svg",
  16054. extra: 390 / 365,
  16055. bottom: 0.005
  16056. }
  16057. },
  16058. back: {
  16059. height: math.unit(6 + 1 / 12, "feet"),
  16060. weight: math.unit(210, "lb"),
  16061. name: "Back",
  16062. image: {
  16063. source: "./media/characters/leonardo-lycheborne/back.svg",
  16064. extra: 392 / 366,
  16065. bottom: 0.01
  16066. }
  16067. },
  16068. hand: {
  16069. height: math.unit(1.08, "feet"),
  16070. name: "Hand",
  16071. image: {
  16072. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16073. }
  16074. },
  16075. foot: {
  16076. height: math.unit(1.32, "feet"),
  16077. name: "Foot",
  16078. image: {
  16079. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16080. }
  16081. },
  16082. were: {
  16083. height: math.unit(20, "feet"),
  16084. weight: math.unit(7800, "lb"),
  16085. name: "Were",
  16086. image: {
  16087. source: "./media/characters/leonardo-lycheborne/were.svg",
  16088. extra: 308 / 294,
  16089. bottom: 0.048
  16090. }
  16091. },
  16092. feral: {
  16093. height: math.unit(7.5, "feet"),
  16094. weight: math.unit(600, "lb"),
  16095. name: "Feral",
  16096. image: {
  16097. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16098. extra: 210 / 186,
  16099. bottom: 0.108
  16100. }
  16101. },
  16102. taur: {
  16103. height: math.unit(11, "feet"),
  16104. weight: math.unit(3300, "lb"),
  16105. name: "Taur",
  16106. image: {
  16107. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16108. extra: 320 / 303,
  16109. bottom: 0.025
  16110. }
  16111. },
  16112. barghest: {
  16113. height: math.unit(11, "feet"),
  16114. weight: math.unit(1300, "lb"),
  16115. name: "Barghest",
  16116. image: {
  16117. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16118. extra: 323 / 302,
  16119. bottom: 0.027
  16120. }
  16121. },
  16122. dick: {
  16123. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  16124. name: "Dick",
  16125. image: {
  16126. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16127. }
  16128. },
  16129. dickWere: {
  16130. height: math.unit((20) / 3.8, "feet"),
  16131. name: "Dick (Were)",
  16132. image: {
  16133. source: "./media/characters/leonardo-lycheborne/dick.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(6 + 1 / 12, "feet"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Jet" },
  16147. {
  16148. front: {
  16149. height: math.unit(10, "feet"),
  16150. weight: math.unit(350, "lb"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/jet/front.svg",
  16154. extra: 2050 / 1980,
  16155. bottom: 0.013
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(10, "feet"),
  16160. weight: math.unit(350, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/jet/back.svg",
  16164. extra: 2050 / 1980,
  16165. bottom: 0.013
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Micro",
  16172. height: math.unit(6, "inches")
  16173. },
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(10, "feet"),
  16177. default: true
  16178. },
  16179. {
  16180. name: "Macro",
  16181. height: math.unit(100, "feet")
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Tanarath" },
  16187. {
  16188. front: {
  16189. height: math.unit(15, "feet"),
  16190. weight: math.unit(2800, "lb"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/tanarath/front.svg",
  16194. extra: 2392 / 2220,
  16195. bottom: 0.03
  16196. }
  16197. },
  16198. back: {
  16199. height: math.unit(15, "feet"),
  16200. weight: math.unit(2800, "lb"),
  16201. name: "Back",
  16202. image: {
  16203. source: "./media/characters/tanarath/back.svg",
  16204. extra: 2392 / 2220,
  16205. bottom: 0.03
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(15, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Patty CattyBatty" },
  16219. {
  16220. front: {
  16221. height: math.unit(7 + 1 / 12, "feet"),
  16222. weight: math.unit(175, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/patty-cattybatty/front.svg",
  16226. extra: 908 / 874,
  16227. bottom: 0.025
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Micro",
  16234. height: math.unit(1, "inch")
  16235. },
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(7 + 1 / 12, "feet")
  16239. },
  16240. {
  16241. name: "Mini Macro",
  16242. height: math.unit(155, "feet")
  16243. },
  16244. {
  16245. name: "Macro",
  16246. height: math.unit(1077, "feet")
  16247. },
  16248. {
  16249. name: "Mega Macro",
  16250. height: math.unit(47650, "feet"),
  16251. default: true
  16252. },
  16253. {
  16254. name: "Giga Macro",
  16255. height: math.unit(440, "miles")
  16256. },
  16257. {
  16258. name: "Tera Macro",
  16259. height: math.unit(8700, "miles")
  16260. },
  16261. {
  16262. name: "Planetary Macro",
  16263. height: math.unit(32700, "miles")
  16264. },
  16265. {
  16266. name: "Solar Macro",
  16267. height: math.unit(550000, "miles")
  16268. },
  16269. {
  16270. name: "Celestial Macro",
  16271. height: math.unit(2.5, "AU")
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Cappu" },
  16277. {
  16278. front: {
  16279. height: math.unit(4 + 5 / 12, "feet"),
  16280. weight: math.unit(90, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/cappu/front.svg",
  16284. extra: 1247 / 1152,
  16285. bottom: 0.012
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(4 + 5 / 12, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Sebi" },
  16299. {
  16300. frontDressed: {
  16301. height: math.unit(70, "cm"),
  16302. weight: math.unit(6, "kg"),
  16303. name: "Front (Dressed)",
  16304. image: {
  16305. source: "./media/characters/sebi/front-dressed.svg",
  16306. extra: 713.5 / 686.5,
  16307. bottom: 0.003
  16308. }
  16309. },
  16310. front: {
  16311. height: math.unit(70, "cm"),
  16312. weight: math.unit(5, "kg"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/sebi/front.svg",
  16316. extra: 713.5 / 686.5,
  16317. bottom: 0.003
  16318. }
  16319. }
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(70, "cm"),
  16325. default: true
  16326. },
  16327. {
  16328. name: "Macro",
  16329. height: math.unit(8, "meters")
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Typhek" },
  16335. {
  16336. front: {
  16337. height: math.unit(6, "feet"),
  16338. weight: math.unit(150, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/typhek/front.svg",
  16342. extra: 1948 / 1929,
  16343. bottom: 0.025
  16344. }
  16345. },
  16346. side: {
  16347. height: math.unit(6, "feet"),
  16348. weight: math.unit(150, "lb"),
  16349. name: "Side",
  16350. image: {
  16351. source: "./media/characters/typhek/side.svg",
  16352. extra: 2034 / 2010,
  16353. bottom: 0.003
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(6, "feet"),
  16358. weight: math.unit(150, "lb"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/typhek/back.svg",
  16362. extra: 2005 / 1978,
  16363. bottom: 0.004
  16364. }
  16365. },
  16366. palm: {
  16367. height: math.unit(1.2, "feet"),
  16368. name: "Palm",
  16369. image: {
  16370. source: "./media/characters/typhek/palm.svg"
  16371. }
  16372. },
  16373. fist: {
  16374. height: math.unit(1.1, "feet"),
  16375. name: "Fist",
  16376. image: {
  16377. source: "./media/characters/typhek/fist.svg"
  16378. }
  16379. },
  16380. foot: {
  16381. height: math.unit(1.57, "feet"),
  16382. name: "Foot",
  16383. image: {
  16384. source: "./media/characters/typhek/foot.svg"
  16385. }
  16386. },
  16387. sole: {
  16388. height: math.unit(2.05, "feet"),
  16389. name: "Sole",
  16390. image: {
  16391. source: "./media/characters/typhek/sole.svg"
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Macro",
  16398. height: math.unit(40, "stories"),
  16399. default: true
  16400. },
  16401. {
  16402. name: "Megamacro",
  16403. height: math.unit(1, "mile")
  16404. },
  16405. {
  16406. name: "Gigamacro",
  16407. height: math.unit(4000, "solarradii")
  16408. },
  16409. {
  16410. name: "Universal",
  16411. height: math.unit(1.1, "universes")
  16412. }
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Kassy" },
  16417. {
  16418. side: {
  16419. height: math.unit(5 + 7 / 12, "feet"),
  16420. weight: math.unit(150, "lb"),
  16421. name: "Side",
  16422. image: {
  16423. source: "./media/characters/kassy/side.svg",
  16424. extra: 1280 / 1225,
  16425. bottom: 0.002
  16426. }
  16427. },
  16428. front: {
  16429. height: math.unit(5 + 7 / 12, "feet"),
  16430. weight: math.unit(150, "lb"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/kassy/front.svg",
  16434. extra: 1280 / 1225,
  16435. bottom: 0.025
  16436. }
  16437. },
  16438. back: {
  16439. height: math.unit(5 + 7 / 12, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Back",
  16442. image: {
  16443. source: "./media/characters/kassy/back.svg",
  16444. extra: 1280 / 1225,
  16445. bottom: 0.002
  16446. }
  16447. },
  16448. foot: {
  16449. height: math.unit(1.266, "feet"),
  16450. name: "Foot",
  16451. image: {
  16452. source: "./media/characters/kassy/foot.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(5 + 7 / 12, "feet")
  16460. },
  16461. {
  16462. name: "Macro",
  16463. height: math.unit(137, "feet"),
  16464. default: true
  16465. },
  16466. {
  16467. name: "Megamacro",
  16468. height: math.unit(1, "mile")
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Neil" },
  16474. {
  16475. front: {
  16476. height: math.unit(6 + 1 / 12, "feet"),
  16477. weight: math.unit(200, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/neil/front.svg",
  16481. extra: 1326 / 1250,
  16482. bottom: 0.023
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(6 + 1 / 12, "feet"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Macro",
  16494. height: math.unit(200, "feet")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Atticus" },
  16500. {
  16501. front: {
  16502. height: math.unit(5 + 9 / 12, "feet"),
  16503. weight: math.unit(190, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/atticus/front.svg",
  16507. extra: 2934 / 2785,
  16508. bottom: 0.025
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(5 + 9 / 12, "feet"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Macro",
  16520. height: math.unit(180, "feet")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Milo" },
  16526. {
  16527. side: {
  16528. height: math.unit(9, "feet"),
  16529. weight: math.unit(650, "lb"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/milo/side.svg",
  16533. extra: 2644 / 2310,
  16534. bottom: 0.032
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(9, "feet"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Macro",
  16546. height: math.unit(300, "feet")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Ijzer" },
  16552. {
  16553. side: {
  16554. height: math.unit(8, "meters"),
  16555. weight: math.unit(90000, "kg"),
  16556. name: "Side",
  16557. image: {
  16558. source: "./media/characters/ijzer/side.svg",
  16559. extra: 2756 / 1600,
  16560. bottom: 0.01
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Small",
  16567. height: math.unit(3, "meters")
  16568. },
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(8, "meters"),
  16572. default: true
  16573. },
  16574. {
  16575. name: "Normal+",
  16576. height: math.unit(10, "meters")
  16577. },
  16578. {
  16579. name: "Bigger",
  16580. height: math.unit(24, "meters")
  16581. },
  16582. {
  16583. name: "Huge",
  16584. height: math.unit(80, "meters")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Luca Cervicum" },
  16590. {
  16591. front: {
  16592. height: math.unit(6 + 2 / 12, "feet"),
  16593. weight: math.unit(153, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/luca-cervicum/front.svg",
  16597. extra: 370 / 327,
  16598. bottom: 0.015
  16599. }
  16600. },
  16601. back: {
  16602. height: math.unit(6 + 2 / 12, "feet"),
  16603. weight: math.unit(153, "lb"),
  16604. name: "Back",
  16605. image: {
  16606. source: "./media/characters/luca-cervicum/back.svg",
  16607. extra: 367 / 333,
  16608. bottom: 0.005
  16609. }
  16610. },
  16611. frontGear: {
  16612. height: math.unit(6 + 2 / 12, "feet"),
  16613. weight: math.unit(173, "lb"),
  16614. name: "Front (Gear)",
  16615. image: {
  16616. source: "./media/characters/luca-cervicum/front-gear.svg",
  16617. extra: 377 / 333,
  16618. bottom: 0.006
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 2 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Oliver" },
  16632. {
  16633. front: {
  16634. height: math.unit(6 + 1 / 12, "feet"),
  16635. weight: math.unit(304, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/oliver/front.svg",
  16639. extra: 157 / 143,
  16640. bottom: 0.08
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(6 + 1 / 12, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Shane" },
  16654. {
  16655. front: {
  16656. height: math.unit(5 + 7 / 12, "feet"),
  16657. weight: math.unit(140, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/shane/front.svg",
  16661. extra: 304 / 289,
  16662. bottom: 0.005
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(5 + 7 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Shin" },
  16676. {
  16677. front: {
  16678. height: math.unit(5 + 9 / 12, "feet"),
  16679. weight: math.unit(178, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/shin/front.svg",
  16683. extra: 159 / 151,
  16684. bottom: 0.015
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(5 + 9 / 12, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Xerxes" },
  16698. {
  16699. front: {
  16700. height: math.unit(5 + 10 / 12, "feet"),
  16701. weight: math.unit(168, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/xerxes/front.svg",
  16705. extra: 282 / 260,
  16706. bottom: 0.045
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(5 + 10 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Chaska" },
  16720. {
  16721. front: {
  16722. height: math.unit(6 + 7 / 12, "feet"),
  16723. weight: math.unit(208, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/chaska/front.svg",
  16727. extra: 332 / 319,
  16728. bottom: 0.015
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(6 + 7 / 12, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Enuk" },
  16742. {
  16743. front: {
  16744. height: math.unit(5 + 8 / 12, "feet"),
  16745. weight: math.unit(208, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/enuk/front.svg",
  16749. extra: 437 / 406,
  16750. bottom: 0.02
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(5 + 8 / 12, "feet"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Bruun" },
  16764. {
  16765. front: {
  16766. height: math.unit(5 + 10 / 12, "feet"),
  16767. weight: math.unit(252, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/bruun/front.svg",
  16771. extra: 197 / 187,
  16772. bottom: 0.012
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(5 + 10 / 12, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Alexeev" },
  16786. {
  16787. front: {
  16788. height: math.unit(6 + 10 / 12, "feet"),
  16789. weight: math.unit(255, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/alexeev/front.svg",
  16793. extra: 213 / 200,
  16794. bottom: 0.05
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(6 + 10 / 12, "feet"),
  16802. default: true
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Evelyn" },
  16808. {
  16809. front: {
  16810. height: math.unit(2 + 8 / 12, "feet"),
  16811. weight: math.unit(22, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/evelyn/front.svg",
  16815. extra: 208 / 180
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(2 + 8 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Inca" },
  16829. {
  16830. front: {
  16831. height: math.unit(5 + 9 / 12, "feet"),
  16832. weight: math.unit(139, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/inca/front.svg",
  16836. extra: 294 / 291,
  16837. bottom: 0.03
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(5 + 9 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Magdalene" },
  16851. {
  16852. front: {
  16853. height: math.unit(5 + 1 / 12, "feet"),
  16854. weight: math.unit(84, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/magdalene/front.svg",
  16858. extra: 293 / 273
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(5 + 1 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Mera" },
  16872. {
  16873. front: {
  16874. height: math.unit(6 + 3 / 12, "feet"),
  16875. weight: math.unit(185, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/mera/front.svg",
  16879. extra: 291 / 277,
  16880. bottom: 0.03
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(6 + 3 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Ceres" },
  16894. {
  16895. front: {
  16896. height: math.unit(6 + 7 / 12, "feet"),
  16897. weight: math.unit(160, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/ceres/front.svg",
  16901. extra: 1023 / 950,
  16902. bottom: 0.027
  16903. }
  16904. },
  16905. back: {
  16906. height: math.unit(6 + 7 / 12, "feet"),
  16907. weight: math.unit(160, "lb"),
  16908. name: "Back",
  16909. image: {
  16910. source: "./media/characters/ceres/back.svg",
  16911. extra: 1023 / 950
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6 + 7 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Kris" },
  16925. {
  16926. front: {
  16927. height: math.unit(5 + 10 / 12, "feet"),
  16928. weight: math.unit(150, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/kris/front.svg",
  16932. extra: 885 / 803,
  16933. bottom: 0.03
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(5 + 10 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Taluthus" },
  16947. {
  16948. front: {
  16949. height: math.unit(7, "feet"),
  16950. weight: math.unit(120, "kg"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/taluthus/front.svg",
  16954. extra: 903 / 833,
  16955. bottom: 0.015
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(7, "feet"),
  16963. default: true
  16964. },
  16965. {
  16966. name: "Macro",
  16967. height: math.unit(300, "feet")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Dawn" },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 9 / 12, "feet"),
  16976. weight: math.unit(145, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/dawn/front.svg",
  16980. extra: 2094 / 2016,
  16981. bottom: 0.025
  16982. }
  16983. },
  16984. back: {
  16985. height: math.unit(5 + 9 / 12, "feet"),
  16986. weight: math.unit(160, "lb"),
  16987. name: "Back",
  16988. image: {
  16989. source: "./media/characters/dawn/back.svg",
  16990. extra: 2112 / 2080,
  16991. bottom: 0.005
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(6 + 7 / 12, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Arador" },
  17005. {
  17006. anthro: {
  17007. height: math.unit(8 + 3 / 12, "feet"),
  17008. weight: math.unit(450, "lb"),
  17009. name: "Anthro",
  17010. image: {
  17011. source: "./media/characters/arador/anthro.svg",
  17012. extra: 1835 / 1718,
  17013. bottom: 0.025
  17014. }
  17015. },
  17016. feral: {
  17017. height: math.unit(4, "feet"),
  17018. weight: math.unit(200, "lb"),
  17019. name: "Feral",
  17020. image: {
  17021. source: "./media/characters/arador/feral.svg",
  17022. extra: 1683 / 1514,
  17023. bottom: 0.07
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(8 + 3 / 12, "feet")
  17031. },
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(82.5, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Dharsi" },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 10 / 12, "feet"),
  17044. weight: math.unit(125, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/dharsi/front.svg",
  17048. extra: 716 / 630,
  17049. bottom: 0.035
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Nano",
  17056. height: math.unit(100, "nm")
  17057. },
  17058. {
  17059. name: "Micro",
  17060. height: math.unit(2, "inches")
  17061. },
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(5 + 10 / 12, "feet"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Macro",
  17069. height: math.unit(1000, "feet")
  17070. },
  17071. {
  17072. name: "Megamacro",
  17073. height: math.unit(10, "miles")
  17074. },
  17075. {
  17076. name: "Gigamacro",
  17077. height: math.unit(3000, "miles")
  17078. },
  17079. {
  17080. name: "Teramacro",
  17081. height: math.unit(500000, "miles")
  17082. },
  17083. {
  17084. name: "Teramacro+",
  17085. height: math.unit(30, "galaxies")
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Deathy" },
  17091. {
  17092. front: {
  17093. height: math.unit(6, "feet"),
  17094. weight: math.unit(150, "lb"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/deathy/front.svg",
  17098. extra: 1552 / 1463,
  17099. bottom: 0.025
  17100. }
  17101. },
  17102. side: {
  17103. height: math.unit(6, "feet"),
  17104. weight: math.unit(150, "lb"),
  17105. name: "Side",
  17106. image: {
  17107. source: "./media/characters/deathy/side.svg",
  17108. extra: 1604 / 1455,
  17109. bottom: 0.025
  17110. }
  17111. },
  17112. back: {
  17113. height: math.unit(6, "feet"),
  17114. weight: math.unit(150, "lb"),
  17115. name: "Back",
  17116. image: {
  17117. source: "./media/characters/deathy/back.svg",
  17118. extra: 1580 / 1463,
  17119. bottom: 0.005
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Micro",
  17126. height: math.unit(5, "millimeters")
  17127. },
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(6 + 5 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Juniper" },
  17137. {
  17138. front: {
  17139. height: math.unit(16, "feet"),
  17140. weight: math.unit(4000, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/juniper/front.svg",
  17144. bottom: 0.04
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(16, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Hipster" },
  17158. {
  17159. front: {
  17160. height: math.unit(6, "feet"),
  17161. weight: math.unit(150, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/hipster/front.svg",
  17165. extra: 1312 / 1209,
  17166. bottom: 0.025
  17167. }
  17168. },
  17169. back: {
  17170. height: math.unit(6, "feet"),
  17171. weight: math.unit(150, "lb"),
  17172. name: "Back",
  17173. image: {
  17174. source: "./media/characters/hipster/back.svg",
  17175. extra: 1281 / 1196,
  17176. bottom: 0.01
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Micro",
  17183. height: math.unit(1, "mm")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(4, "inches"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(500, "feet")
  17193. },
  17194. {
  17195. name: "Megamacro",
  17196. height: math.unit(1000, "miles")
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Tendirmuldr" },
  17202. {
  17203. front: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/tendirmuldr/front.svg",
  17209. extra: 1878 / 1772,
  17210. bottom: 0.015
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Megamacro",
  17217. height: math.unit(1500, "miles"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Mort" },
  17224. {
  17225. front: {
  17226. height: math.unit(14, "feet"),
  17227. weight: math.unit(12000, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/mort/front.svg",
  17231. extra: 365 / 318,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. side: {
  17236. height: math.unit(14, "feet"),
  17237. weight: math.unit(12000, "lb"),
  17238. name: "Side",
  17239. image: {
  17240. source: "./media/characters/mort/side.svg",
  17241. extra: 365 / 318,
  17242. bottom: 0.052
  17243. }
  17244. },
  17245. back: {
  17246. height: math.unit(14, "feet"),
  17247. weight: math.unit(12000, "lb"),
  17248. name: "Back",
  17249. image: {
  17250. source: "./media/characters/mort/back.svg",
  17251. extra: 371 / 332,
  17252. bottom: 0.18
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(14, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Lycoa" },
  17266. {
  17267. front: {
  17268. height: math.unit(8, "feet"),
  17269. weight: math.unit(1, "ton"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/lycoa/front.svg",
  17273. extra: 1875 / 1789,
  17274. bottom: 0.022
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(8, "feet"),
  17279. weight: math.unit(1, "ton"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/lycoa/back.svg",
  17283. extra: 1835 / 1781,
  17284. bottom: 0.03
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(8, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(30, "feet")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Naldara" },
  17302. {
  17303. front: {
  17304. height: math.unit(4 + 2 / 12, "feet"),
  17305. weight: math.unit(70, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/naldara/front.svg",
  17309. extra: 841 / 720,
  17310. bottom: 0.04
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(4 + 2 / 12, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Briar" },
  17324. {
  17325. front: {
  17326. height: math.unit(13 + 7 / 12, "feet"),
  17327. weight: math.unit(1500, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/briar/front.svg",
  17331. extra: 626 / 596,
  17332. bottom: 0.08
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(13 + 7 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Vanguard" },
  17346. {
  17347. side: {
  17348. height: math.unit(10, "feet"),
  17349. weight: math.unit(500, "lb"),
  17350. name: "Side",
  17351. image: {
  17352. source: "./media/characters/vanguard/side.svg",
  17353. extra: 502 / 425,
  17354. bottom: 0.087
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(10, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Artemis" },
  17368. {
  17369. front: {
  17370. height: math.unit(7.5, "feet"),
  17371. weight: math.unit(2, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/artemis/front.svg",
  17375. extra: 1192 / 1075,
  17376. bottom: 0.07
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(7.5, "feet"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Enlarged",
  17388. height: math.unit(12, "feet")
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Kira" },
  17394. {
  17395. front: {
  17396. height: math.unit(5 + 3 / 12, "feet"),
  17397. weight: math.unit(160, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/kira/front.svg",
  17401. extra: 906 / 786,
  17402. bottom: 0.01
  17403. }
  17404. },
  17405. back: {
  17406. height: math.unit(5 + 3 / 12, "feet"),
  17407. weight: math.unit(160, "lb"),
  17408. name: "Back",
  17409. image: {
  17410. source: "./media/characters/kira/back.svg",
  17411. extra: 882 / 757,
  17412. bottom: 0.005
  17413. }
  17414. },
  17415. frontDressed: {
  17416. height: math.unit(5 + 3 / 12, "feet"),
  17417. weight: math.unit(160, "lb"),
  17418. name: "Front (Dressed)",
  17419. image: {
  17420. source: "./media/characters/kira/front-dressed.svg",
  17421. extra: 906 / 786,
  17422. bottom: 0.01
  17423. }
  17424. },
  17425. beans: {
  17426. height: math.unit(0.92, "feet"),
  17427. name: "Beans",
  17428. image: {
  17429. source: "./media/characters/kira/beans.svg"
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(5 + 3 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Scramble" },
  17443. {
  17444. front: {
  17445. height: math.unit(5 + 4 / 12, "feet"),
  17446. weight: math.unit(145, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/scramble/front.svg",
  17450. extra: 763 / 727,
  17451. bottom: 0.05
  17452. }
  17453. },
  17454. back: {
  17455. height: math.unit(5 + 4 / 12, "feet"),
  17456. weight: math.unit(145, "lb"),
  17457. name: "Back",
  17458. image: {
  17459. source: "./media/characters/scramble/back.svg",
  17460. extra: 826 / 737,
  17461. bottom: 0.002
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(5 + 4 / 12, "feet"),
  17469. default: true
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Biscuit" },
  17475. {
  17476. side: {
  17477. height: math.unit(6 + 2 / 12, "feet"),
  17478. weight: math.unit(190, "lb"),
  17479. name: "Side",
  17480. image: {
  17481. source: "./media/characters/biscuit/side.svg",
  17482. extra: 858 / 791,
  17483. bottom: 0.044
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(6 + 2 / 12, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Poffin" },
  17497. {
  17498. front: {
  17499. height: math.unit(5 + 2 / 12, "feet"),
  17500. weight: math.unit(120, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/poffin/front.svg",
  17504. extra: 786 / 680,
  17505. bottom: 0.005
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(5 + 2 / 12, "feet"),
  17513. default: true
  17514. },
  17515. ]
  17516. ))
  17517. characterMakers.push(() => makeCharacter(
  17518. { name: "Dhari" },
  17519. {
  17520. front: {
  17521. height: math.unit(6 + 3 / 12, "feet"),
  17522. weight: math.unit(519, "lb"),
  17523. name: "Front",
  17524. image: {
  17525. source: "./media/characters/dhari/front.svg",
  17526. extra: 1048 / 946,
  17527. bottom: 0.015
  17528. }
  17529. },
  17530. back: {
  17531. height: math.unit(6 + 3 / 12, "feet"),
  17532. weight: math.unit(519, "lb"),
  17533. name: "Back",
  17534. image: {
  17535. source: "./media/characters/dhari/back.svg",
  17536. extra: 1048 / 931,
  17537. bottom: 0.005
  17538. }
  17539. },
  17540. frontDressed: {
  17541. height: math.unit(6 + 3 / 12, "feet"),
  17542. weight: math.unit(519, "lb"),
  17543. name: "Front (Dressed)",
  17544. image: {
  17545. source: "./media/characters/dhari/front-dressed.svg",
  17546. extra: 1713 / 1546,
  17547. bottom: 0.02
  17548. }
  17549. },
  17550. backDressed: {
  17551. height: math.unit(6 + 3 / 12, "feet"),
  17552. weight: math.unit(519, "lb"),
  17553. name: "Back (Dressed)",
  17554. image: {
  17555. source: "./media/characters/dhari/back-dressed.svg",
  17556. extra: 1699 / 1537,
  17557. bottom: 0.01
  17558. }
  17559. },
  17560. maw: {
  17561. height: math.unit(0.95, "feet"),
  17562. name: "Maw",
  17563. image: {
  17564. source: "./media/characters/dhari/maw.svg"
  17565. }
  17566. },
  17567. wereFront: {
  17568. height: math.unit(12 + 8 / 12, "feet"),
  17569. weight: math.unit(4000, "lb"),
  17570. name: "Front (Were)",
  17571. image: {
  17572. source: "./media/characters/dhari/were-front.svg",
  17573. extra: 1065 / 969,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. wereBack: {
  17578. height: math.unit(12 + 8 / 12, "feet"),
  17579. weight: math.unit(4000, "lb"),
  17580. name: "Back (Were)",
  17581. image: {
  17582. source: "./media/characters/dhari/were-back.svg",
  17583. extra: 1065 / 969,
  17584. bottom: 0.012
  17585. }
  17586. },
  17587. wereMaw: {
  17588. height: math.unit(0.625, "meters"),
  17589. name: "Maw (Were)",
  17590. image: {
  17591. source: "./media/characters/dhari/were-maw.svg"
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6 + 3 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Rena Dyne" },
  17605. {
  17606. anthro: {
  17607. height: math.unit(5 + 7 / 12, "feet"),
  17608. weight: math.unit(175, "lb"),
  17609. name: "Anthro",
  17610. image: {
  17611. source: "./media/characters/rena-dyne/anthro.svg",
  17612. extra: 1849 / 1785,
  17613. bottom: 0.005
  17614. }
  17615. },
  17616. taur: {
  17617. height: math.unit(15 + 6 / 12, "feet"),
  17618. weight: math.unit(8000, "lb"),
  17619. name: "Taur",
  17620. image: {
  17621. source: "./media/characters/rena-dyne/taur.svg",
  17622. extra: 2315 / 2234,
  17623. bottom: 0.033
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(5 + 7 / 12, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Weremeep" },
  17637. {
  17638. front: {
  17639. height: math.unit(8, "feet"),
  17640. weight: math.unit(600, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/weremeep/front.svg",
  17644. extra: 967 / 862,
  17645. bottom: 0.01
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(8, "feet"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Lorg",
  17657. height: math.unit(12, "feet")
  17658. },
  17659. {
  17660. name: "Oh Lawd She Comin'",
  17661. height: math.unit(20, "feet")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Reza" },
  17667. {
  17668. front: {
  17669. height: math.unit(4, "feet"),
  17670. weight: math.unit(90, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/reza/front.svg",
  17674. extra: 1183 / 1111,
  17675. bottom: 0.017
  17676. }
  17677. },
  17678. back: {
  17679. height: math.unit(4, "feet"),
  17680. weight: math.unit(90, "lb"),
  17681. name: "Back",
  17682. image: {
  17683. source: "./media/characters/reza/back.svg",
  17684. extra: 1183 / 1111,
  17685. bottom: 0.01
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(4, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Athea" },
  17699. {
  17700. side: {
  17701. height: math.unit(15, "feet"),
  17702. weight: math.unit(14, "tons"),
  17703. name: "Side",
  17704. image: {
  17705. source: "./media/characters/athea/side.svg",
  17706. extra: 960 / 540,
  17707. bottom: 0.003
  17708. }
  17709. },
  17710. sitting: {
  17711. height: math.unit(6 * 2.85, "feet"),
  17712. weight: math.unit(14, "tons"),
  17713. name: "Sitting",
  17714. image: {
  17715. source: "./media/characters/athea/sitting.svg",
  17716. extra: 621 / 581,
  17717. bottom: 0.075
  17718. }
  17719. },
  17720. maw: {
  17721. height: math.unit(7.59498031496063, "feet"),
  17722. name: "Maw",
  17723. image: {
  17724. source: "./media/characters/athea/maw.svg"
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Lap Cat",
  17731. height: math.unit(2.5, "feet")
  17732. },
  17733. {
  17734. name: "Minimacro",
  17735. height: math.unit(15, "feet"),
  17736. default: true
  17737. },
  17738. {
  17739. name: "Macro",
  17740. height: math.unit(120, "feet")
  17741. },
  17742. {
  17743. name: "Macro+",
  17744. height: math.unit(640, "feet")
  17745. },
  17746. {
  17747. name: "Colossus",
  17748. height: math.unit(2.2, "miles")
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Seroko" },
  17754. {
  17755. front: {
  17756. height: math.unit(8 + 8 / 12, "feet"),
  17757. weight: math.unit(130, "kg"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/seroko/front.svg",
  17761. extra: 1385 / 1280,
  17762. bottom: 0.025
  17763. }
  17764. },
  17765. back: {
  17766. height: math.unit(8 + 8 / 12, "feet"),
  17767. weight: math.unit(130, "kg"),
  17768. name: "Back",
  17769. image: {
  17770. source: "./media/characters/seroko/back.svg",
  17771. extra: 1369 / 1238,
  17772. bottom: 0.018
  17773. }
  17774. },
  17775. frontDressed: {
  17776. height: math.unit(8 + 8 / 12, "feet"),
  17777. weight: math.unit(130, "kg"),
  17778. name: "Front (Dressed)",
  17779. image: {
  17780. source: "./media/characters/seroko/front-dressed.svg",
  17781. extra: 1366 / 1275,
  17782. bottom: 0.03
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(8 + 8 / 12, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Quatzi" },
  17796. {
  17797. front: {
  17798. height: math.unit(5.5, "feet"),
  17799. weight: math.unit(160, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/quatzi/front.svg",
  17803. extra: 2346 / 2242,
  17804. bottom: 0.015
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(5.5, "feet"),
  17812. default: true
  17813. },
  17814. {
  17815. name: "Big",
  17816. height: math.unit(7.7, "feet")
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Sen" },
  17822. {
  17823. front: {
  17824. height: math.unit(5 + 11 / 12, "feet"),
  17825. weight: math.unit(180, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/sen/front.svg",
  17829. extra: 1321 / 1254,
  17830. bottom: 0.015
  17831. }
  17832. },
  17833. side: {
  17834. height: math.unit(5 + 11 / 12, "feet"),
  17835. weight: math.unit(180, "lb"),
  17836. name: "Side",
  17837. image: {
  17838. source: "./media/characters/sen/side.svg",
  17839. extra: 1321 / 1254,
  17840. bottom: 0.007
  17841. }
  17842. },
  17843. back: {
  17844. height: math.unit(5 + 11 / 12, "feet"),
  17845. weight: math.unit(180, "lb"),
  17846. name: "Back",
  17847. image: {
  17848. source: "./media/characters/sen/back.svg",
  17849. extra: 1321 / 1254
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(5 + 11 / 12, "feet"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Fruity" },
  17863. {
  17864. front: {
  17865. height: math.unit(166.6, "cm"),
  17866. weight: math.unit(66.6, "kg"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/fruity/front.svg",
  17870. extra: 1510 / 1386,
  17871. bottom: 0.04
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(166.6, "cm"),
  17876. weight: math.unit(66.6, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/fruity/back.svg",
  17880. extra: 1563 / 1435,
  17881. bottom: 0.005
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(166.6, "cm"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Demonic",
  17893. height: math.unit(166.6, "feet")
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Zost" },
  17899. {
  17900. side: {
  17901. height: math.unit(10, "feet"),
  17902. weight: math.unit(500, "lb"),
  17903. name: "Side",
  17904. image: {
  17905. source: "./media/characters/zost/side.svg",
  17906. extra: 966 / 880,
  17907. bottom: 0.075
  17908. }
  17909. },
  17910. mawFront: {
  17911. height: math.unit(1.08, "meters"),
  17912. name: "Maw (Front)",
  17913. image: {
  17914. source: "./media/characters/zost/maw-front.svg"
  17915. }
  17916. },
  17917. mawSide: {
  17918. height: math.unit(2.66, "feet"),
  17919. name: "Maw (Side)",
  17920. image: {
  17921. source: "./media/characters/zost/maw-side.svg"
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(10, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Luci" },
  17935. {
  17936. front: {
  17937. height: math.unit(5 + 4 / 12, "feet"),
  17938. weight: math.unit(120, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/luci/front.svg",
  17942. extra: 1985 / 1884,
  17943. bottom: 0.04
  17944. }
  17945. },
  17946. back: {
  17947. height: math.unit(5 + 4 / 12, "feet"),
  17948. weight: math.unit(120, "lb"),
  17949. name: "Back",
  17950. image: {
  17951. source: "./media/characters/luci/back.svg",
  17952. extra: 1892 / 1791,
  17953. bottom: 0.002
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(5 + 4 / 12, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "2th" },
  17967. {
  17968. front: {
  17969. height: math.unit(1500, "feet"),
  17970. weight: math.unit(3.8e6, "tons"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/2th/front.svg",
  17974. extra: 3489 / 3350,
  17975. bottom: 0.1
  17976. }
  17977. },
  17978. foot: {
  17979. height: math.unit(461, "feet"),
  17980. name: "Foot",
  17981. image: {
  17982. source: "./media/characters/2th/foot.svg"
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "\"Micro\"",
  17989. height: math.unit(15 + 7 / 12, "feet")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(1500, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Macro",
  17998. height: math.unit(5000, "feet")
  17999. },
  18000. {
  18001. name: "Megamacro",
  18002. height: math.unit(15, "miles")
  18003. },
  18004. {
  18005. name: "Gigamacro",
  18006. height: math.unit(4000, "miles")
  18007. },
  18008. {
  18009. name: "Galactic",
  18010. height: math.unit(50, "AU")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Amethyst" },
  18016. {
  18017. front: {
  18018. height: math.unit(5 + 6 / 12, "feet"),
  18019. weight: math.unit(220, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/amethyst/front.svg",
  18023. extra: 2078 / 2040,
  18024. bottom: 0.045
  18025. }
  18026. },
  18027. back: {
  18028. height: math.unit(5 + 6 / 12, "feet"),
  18029. weight: math.unit(220, "lb"),
  18030. name: "Back",
  18031. image: {
  18032. source: "./media/characters/amethyst/back.svg",
  18033. extra: 2021 / 1989,
  18034. bottom: 0.02
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Normal",
  18041. height: math.unit(5 + 6 / 12, "feet"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Yumi Akiyama" },
  18048. {
  18049. front: {
  18050. height: math.unit(4 + 11 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/yumi-akiyama/front.svg",
  18055. extra: 1327 / 1235,
  18056. bottom: 0.02
  18057. }
  18058. },
  18059. back: {
  18060. height: math.unit(4 + 11 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Back",
  18063. image: {
  18064. source: "./media/characters/yumi-akiyama/back.svg",
  18065. extra: 1287 / 1245,
  18066. bottom: 0.002
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Galactic",
  18073. height: math.unit(50, "galaxies"),
  18074. default: true
  18075. },
  18076. {
  18077. name: "Universal",
  18078. height: math.unit(100, "universes")
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Rifter Yrmori" },
  18084. {
  18085. front: {
  18086. height: math.unit(8, "feet"),
  18087. weight: math.unit(500, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/rifter-yrmori/front.svg",
  18091. extra: 1180 / 1125,
  18092. bottom: 0.02
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(8, "feet"),
  18097. weight: math.unit(500, "lb"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/rifter-yrmori/back.svg",
  18101. extra: 1190 / 1145,
  18102. bottom: 0.001
  18103. }
  18104. },
  18105. wings: {
  18106. height: math.unit(7.75, "feet"),
  18107. weight: math.unit(500, "lb"),
  18108. name: "Wings",
  18109. image: {
  18110. source: "./media/characters/rifter-yrmori/wings.svg",
  18111. extra: 1357 / 1285
  18112. }
  18113. },
  18114. maw: {
  18115. height: math.unit(0.8, "feet"),
  18116. name: "Maw",
  18117. image: {
  18118. source: "./media/characters/rifter-yrmori/maw.svg"
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(8, "feet"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(42, "meters")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Tahajin" },
  18136. {
  18137. were: {
  18138. height: math.unit(25 + 6 / 12, "feet"),
  18139. weight: math.unit(10000, "lb"),
  18140. name: "Were",
  18141. image: {
  18142. source: "./media/characters/tahajin/were.svg",
  18143. extra: 801 / 770,
  18144. bottom: 0.042
  18145. }
  18146. },
  18147. aquatic: {
  18148. height: math.unit(6 + 4 / 12, "feet"),
  18149. weight: math.unit(160, "lb"),
  18150. name: "Aquatic",
  18151. image: {
  18152. source: "./media/characters/tahajin/aquatic.svg",
  18153. extra: 572 / 542,
  18154. bottom: 0.04
  18155. }
  18156. },
  18157. chow: {
  18158. height: math.unit(8 + 11 / 12, "feet"),
  18159. weight: math.unit(450, "lb"),
  18160. name: "Chow",
  18161. image: {
  18162. source: "./media/characters/tahajin/chow.svg",
  18163. extra: 660 / 640,
  18164. bottom: 0.015
  18165. }
  18166. },
  18167. demiNaga: {
  18168. height: math.unit(6 + 8 / 12, "feet"),
  18169. weight: math.unit(300, "lb"),
  18170. name: "Demi Naga",
  18171. image: {
  18172. source: "./media/characters/tahajin/demi-naga.svg",
  18173. extra: 643 / 615,
  18174. bottom: 0.1
  18175. }
  18176. },
  18177. data: {
  18178. height: math.unit(5, "inches"),
  18179. weight: math.unit(0.1, "lb"),
  18180. name: "Data",
  18181. image: {
  18182. source: "./media/characters/tahajin/data.svg"
  18183. }
  18184. },
  18185. fluu: {
  18186. height: math.unit(5 + 7 / 12, "feet"),
  18187. weight: math.unit(140, "lb"),
  18188. name: "Fluu",
  18189. image: {
  18190. source: "./media/characters/tahajin/fluu.svg",
  18191. extra: 628 / 592,
  18192. bottom: 0.02
  18193. }
  18194. },
  18195. starWarrior: {
  18196. height: math.unit(4 + 5 / 12, "feet"),
  18197. weight: math.unit(50, "lb"),
  18198. name: "Star Warrior",
  18199. image: {
  18200. source: "./media/characters/tahajin/star-warrior.svg"
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(25 + 6 / 12, "feet"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Gabira" },
  18214. {
  18215. front: {
  18216. height: math.unit(8, "feet"),
  18217. weight: math.unit(350, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/gabira/front.svg",
  18221. extra: 608 / 580,
  18222. bottom: 0.03
  18223. }
  18224. },
  18225. back: {
  18226. height: math.unit(8, "feet"),
  18227. weight: math.unit(350, "lb"),
  18228. name: "Back",
  18229. image: {
  18230. source: "./media/characters/gabira/back.svg",
  18231. extra: 608 / 580,
  18232. bottom: 0.03
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(8, "feet"),
  18240. default: true
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Sasha Katraine" },
  18246. {
  18247. front: {
  18248. height: math.unit(5 + 3 / 12, "feet"),
  18249. weight: math.unit(137, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/sasha-katraine/front.svg",
  18253. bottom: 0.045
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "Micro",
  18260. height: math.unit(5, "inches")
  18261. },
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(5 + 3 / 12, "feet"),
  18265. default: true
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Der" },
  18271. {
  18272. side: {
  18273. height: math.unit(4, "inches"),
  18274. weight: math.unit(200, "grams"),
  18275. name: "Side",
  18276. image: {
  18277. source: "./media/characters/der/side.svg",
  18278. extra: 719 / 400,
  18279. bottom: 30.6 / 749.9187
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Micro",
  18286. height: math.unit(4, "inches"),
  18287. default: true
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Fixerdragon" },
  18293. {
  18294. side: {
  18295. height: math.unit(30, "meters"),
  18296. weight: math.unit(700, "tonnes"),
  18297. name: "Side",
  18298. image: {
  18299. source: "./media/characters/fixerdragon/side.svg",
  18300. extra: (1293.0514-116.03)/1106.86,
  18301. bottom: 116.03/1293.0514
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Planck",
  18308. height: math.unit(1.6e-35, "meters")
  18309. },
  18310. {
  18311. name: "Micro",
  18312. height: math.unit(0.4, "meters")
  18313. },
  18314. {
  18315. name: "Normal",
  18316. height: math.unit(30, "meters"),
  18317. default: true
  18318. },
  18319. {
  18320. name: "Megamacro",
  18321. height: math.unit(1.2, "megameters")
  18322. },
  18323. {
  18324. name: "Teramacro",
  18325. height: math.unit(130, "terameters")
  18326. },
  18327. {
  18328. name: "Yottamacro",
  18329. height: math.unit(6200, "yottameters")
  18330. },
  18331. ]
  18332. ));
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Kite" },
  18335. {
  18336. front: {
  18337. height: math.unit(8, "feet"),
  18338. weight: math.unit(250, "lb"),
  18339. name: "Front",
  18340. image: {
  18341. source: "./media/characters/kite/front.svg",
  18342. extra: 2796/2659,
  18343. bottom: 0.002
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(8, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Macro",
  18355. height: math.unit(360, "feet")
  18356. },
  18357. {
  18358. name: "Megamacro",
  18359. height: math.unit(1500, "feet")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Poojawa Vynar" },
  18365. {
  18366. front: {
  18367. height: math.unit(5 + 10/12, "feet"),
  18368. weight: math.unit(150, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/poojawa-vynar/front.svg",
  18372. extra: (1506.1547-55) / 1356.6,
  18373. bottom: 55/1506.1547
  18374. }
  18375. },
  18376. frontTailless: {
  18377. height: math.unit(5 + 10/12, "feet"),
  18378. weight: math.unit(150, "lb"),
  18379. name: "Front (Tailless)",
  18380. image: {
  18381. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  18382. extra: (1506.1547-55) / 1356.6,
  18383. bottom: 55/1506.1547
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(5 + 10/12, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Violette" },
  18397. {
  18398. front: {
  18399. height: math.unit(293, "meters"),
  18400. weight: math.unit(70400, "tons"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/violette/front.svg",
  18404. extra: 1227/1180
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(293, "meters"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. //characters
  18417. function makeCharacters() {
  18418. const results = [];
  18419. characterMakers.forEach(character => {
  18420. results.push(character());
  18421. });
  18422. return results;
  18423. }