less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

18715 строки
514 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["Fen"] = () => 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["Sofia Fluttertail"] = () => 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["March"] = () => 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["Noir"] = () => 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["Okuri"] = () => 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["Manny"] = () => 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["Adake"] = () => 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["Elijah"] = () => 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["Rai"] = () => 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["Jazzy"] = () => 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["Flamm"] = () => 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["Zephiro"] = () => 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["Fory"] = () => 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["Kurrikage"] = () => 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["Shingo"] = () => 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["Aigey"] = () => 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. characterMakers["Natasha"] = () => makeCharacter(
  765. { name: "Natasha" },
  766. {
  767. front: {
  768. height: math.unit(5 + 5/12, "feet"),
  769. weight: math.unit(75, "kg"),
  770. name: "Front",
  771. image: {
  772. source: "./media/characters/natasha/front.svg",
  773. extra: 875/846,
  774. bottom: 0.01
  775. }
  776. },
  777. },
  778. [
  779. {
  780. name: "Normal",
  781. height: math.unit(5 + 5/12, "feet")
  782. },
  783. {
  784. name: "Large",
  785. height: math.unit(12, "feet")
  786. },
  787. {
  788. name: "Macro",
  789. height: math.unit(100, "feet"),
  790. default: true
  791. },
  792. {
  793. name: "Macro+",
  794. height: math.unit(260, "feet")
  795. },
  796. {
  797. name: "Macro++",
  798. height: math.unit(1, "mile")
  799. },
  800. ]
  801. )
  802. characterMakers["Malik"] = () => makeCharacter(
  803. { name: "Malik" },
  804. {
  805. front: {
  806. height: math.unit(6, "feet"),
  807. weight: math.unit(75, "kg"),
  808. name: "Front",
  809. image: {
  810. source: "./media/characters/malik/front.svg"
  811. }
  812. },
  813. side: {
  814. height: math.unit(6, "feet"),
  815. weight: math.unit(75, "kg"),
  816. name: "Side",
  817. image: {
  818. source: "./media/characters/malik/side.svg",
  819. extra: 1.1539
  820. }
  821. },
  822. back: {
  823. height: math.unit(6, "feet"),
  824. weight: math.unit(75, "kg"),
  825. name: "Back",
  826. image: {
  827. source: "./media/characters/malik/back.svg"
  828. }
  829. },
  830. },
  831. [
  832. {
  833. name: "Macro",
  834. height: math.unit(156, "feet"),
  835. default: true
  836. },
  837. {
  838. name: "Macro+",
  839. height: math.unit(1188, "feet")
  840. },
  841. ]
  842. )
  843. characterMakers["Sefer"] = () => makeCharacter(
  844. { name: "Sefer" },
  845. {
  846. front: {
  847. height: math.unit(6, "feet"),
  848. weight: math.unit(75, "kg"),
  849. name: "Front",
  850. image: {
  851. source: "./media/characters/sefer/front.svg"
  852. }
  853. },
  854. back: {
  855. height: math.unit(6, "feet"),
  856. weight: math.unit(75, "kg"),
  857. name: "Back",
  858. image: {
  859. source: "./media/characters/sefer/back.svg"
  860. }
  861. },
  862. },
  863. [
  864. {
  865. name: "Normal",
  866. height: math.unit(6, "feet"),
  867. default: true
  868. },
  869. ]
  870. )
  871. characterMakers["North"] = () => makeCharacter(
  872. { name: "North" },
  873. {
  874. body: {
  875. height: math.unit(2.2428, "meter"),
  876. weight: math.unit(124.738, "kg"),
  877. name: "Body",
  878. image: {
  879. extra: 1225 / 1050,
  880. source: "./media/characters/north/front.svg"
  881. }
  882. }
  883. },
  884. [
  885. {
  886. name: "Micro",
  887. height: math.unit(4, "inches")
  888. },
  889. {
  890. name: "Macro",
  891. height: math.unit(63, "meters")
  892. },
  893. {
  894. name: "Megamacro",
  895. height: math.unit(101, "miles"),
  896. default: true
  897. }
  898. ]
  899. )
  900. characterMakers["Talan"] = () => makeCharacter(
  901. { name: "Talan" },
  902. {
  903. body: {
  904. height: math.unit(2, "meter"),
  905. weight: math.unit(70, "kg"),
  906. name: "Body",
  907. image: {
  908. bottom: 0.02,
  909. source: "./media/characters/talan/front.svg"
  910. }
  911. }
  912. },
  913. [
  914. {
  915. name: "Normal",
  916. height: math.unit(4, "meters")
  917. },
  918. {
  919. name: "Macro",
  920. height: math.unit(100, "meters")
  921. },
  922. {
  923. name: "Megamacro",
  924. height: math.unit(2, "miles"),
  925. default: true
  926. },
  927. {
  928. name: "Gigamacro",
  929. height: math.unit(5000, "miles")
  930. },
  931. {
  932. name: "Teramacro",
  933. height: math.unit(100, "parsecs")
  934. }
  935. ]
  936. )
  937. characterMakers["Gael'Rathus"] = () => makeCharacter(
  938. { name: "Gael'Rathus" },
  939. {
  940. front: {
  941. height: math.unit(2, "meter"),
  942. weight: math.unit(90, "kg"),
  943. name: "Front",
  944. image: {
  945. source: "./media/characters/gael'rathus/front.svg"
  946. }
  947. },
  948. frontAlt: {
  949. height: math.unit(2, "meter"),
  950. weight: math.unit(90, "kg"),
  951. name: "Front (alt)",
  952. image: {
  953. source: "./media/characters/gael'rathus/front-alt.svg"
  954. }
  955. },
  956. frontAlt2: {
  957. height: math.unit(2, "meter"),
  958. weight: math.unit(90, "kg"),
  959. name: "Front (alt 2)",
  960. image: {
  961. source: "./media/characters/gael'rathus/front-alt-2.svg"
  962. }
  963. }
  964. },
  965. [
  966. {
  967. name: "Normal",
  968. height: math.unit(9, "feet"),
  969. default: true
  970. },
  971. {
  972. name: "Large",
  973. height: math.unit(25, "feet")
  974. },
  975. {
  976. name: "Macro",
  977. height: math.unit(0.25, "miles")
  978. },
  979. {
  980. name: "Megamacro",
  981. height: math.unit(10, "miles")
  982. }
  983. ]
  984. )
  985. characterMakers["Sosha"] = () => makeCharacter(
  986. { name: "Sosha" },
  987. {
  988. side: {
  989. height: math.unit(2, "meter"),
  990. weight: math.unit(140, "kg"),
  991. name: "Side",
  992. image: {
  993. source: "./media/characters/sosha/side.svg",
  994. bottom: 0.042
  995. }
  996. },
  997. },
  998. [
  999. {
  1000. name: "Normal",
  1001. height: math.unit(12, "feet"),
  1002. default: true
  1003. }
  1004. ]
  1005. )
  1006. characterMakers["RuNNoLa"] = () => makeCharacter(
  1007. { name: "RuNNoLa" },
  1008. {
  1009. side: {
  1010. height: math.unit(5 + 5/12, "feet"),
  1011. weight: math.unit(170, "kg"),
  1012. name: "Side",
  1013. image: {
  1014. source: "./media/characters/runnola/side.svg",
  1015. extra: 741/448,
  1016. bottom: 0.05
  1017. }
  1018. },
  1019. },
  1020. [
  1021. {
  1022. name: "Small",
  1023. height: math.unit(3, "feet")
  1024. },
  1025. {
  1026. name: "Normal",
  1027. height: math.unit(5 + 5/12, "feet"),
  1028. default: true
  1029. },
  1030. {
  1031. name: "Big",
  1032. height: math.unit(10, "feet")
  1033. },
  1034. ]
  1035. )
  1036. characterMakers["Kurribird"] = () => makeCharacter(
  1037. { name: "Kurribird" },
  1038. {
  1039. front: {
  1040. height: math.unit(2, "meter"),
  1041. weight: math.unit(50, "kg"),
  1042. name: "Front",
  1043. image: {
  1044. source: "./media/characters/kurribird/front.svg",
  1045. bottom: 0.015
  1046. }
  1047. },
  1048. frontAlt: {
  1049. height: math.unit(1.5, "meter"),
  1050. weight: math.unit(50, "kg"),
  1051. name: "Front (Alt)",
  1052. image: {
  1053. source: "./media/characters/kurribird/front-alt.svg",
  1054. extra: 1.45
  1055. }
  1056. },
  1057. },
  1058. [
  1059. {
  1060. name: "Normal",
  1061. height: math.unit(7, "feet")
  1062. },
  1063. {
  1064. name: "Big",
  1065. height: math.unit(12, "feet"),
  1066. default: true
  1067. },
  1068. {
  1069. name: "Macro",
  1070. height: math.unit(1500, "feet")
  1071. },
  1072. {
  1073. name: "Megamacro",
  1074. height: math.unit(2, "miles")
  1075. }
  1076. ]
  1077. )
  1078. characterMakers["Elbial"] = () => makeCharacter(
  1079. { name: "Elbial" },
  1080. {
  1081. front: {
  1082. height: math.unit(2, "meter"),
  1083. weight: math.unit(80, "kg"),
  1084. name: "Front",
  1085. image: {
  1086. source: "./media/characters/elbial/front.svg"
  1087. }
  1088. },
  1089. side: {
  1090. height: math.unit(2, "meter"),
  1091. weight: math.unit(80, "kg"),
  1092. name: "Side",
  1093. image: {
  1094. source: "./media/characters/elbial/side.svg"
  1095. }
  1096. },
  1097. back: {
  1098. height: math.unit(2, "meter"),
  1099. weight: math.unit(80, "kg"),
  1100. name: "Back",
  1101. image: {
  1102. source: "./media/characters/elbial/back.svg"
  1103. }
  1104. },
  1105. },
  1106. [
  1107. {
  1108. name: "Large",
  1109. height: math.unit(100, "feet")
  1110. },
  1111. {
  1112. name: "Macro",
  1113. height: math.unit(500, "feet"),
  1114. default: true
  1115. },
  1116. {
  1117. name: "Megamacro",
  1118. height: math.unit(10, "miles")
  1119. },
  1120. {
  1121. name: "Gigamacro",
  1122. height: math.unit(25000, "miles")
  1123. },
  1124. {
  1125. name: "Full-Size",
  1126. height: math.unit(8000000, "gigaparsecs")
  1127. }
  1128. ]
  1129. )
  1130. characterMakers["Noah"] = () => makeCharacter(
  1131. { name: "Noah" },
  1132. {
  1133. front: {
  1134. height: math.unit(2, "meter"),
  1135. weight: math.unit(60, "kg"),
  1136. name: "Front",
  1137. image: {
  1138. source: "./media/characters/noah/front.svg"
  1139. }
  1140. },
  1141. talons: {
  1142. height: math.unit(0.315, "meter"),
  1143. name: "Talons",
  1144. image: {
  1145. source: "./media/characters/noah/talons.svg"
  1146. }
  1147. }
  1148. },
  1149. [
  1150. {
  1151. name: "Large",
  1152. height: math.unit(50, "feet")
  1153. },
  1154. {
  1155. name: "Macro",
  1156. height: math.unit(750, "feet"),
  1157. default: true
  1158. },
  1159. {
  1160. name: "Megamacro",
  1161. height: math.unit(50, "miles")
  1162. },
  1163. {
  1164. name: "Gigamacro",
  1165. height: math.unit(100000, "miles")
  1166. },
  1167. {
  1168. name: "Full-Size",
  1169. height: math.unit(3000000000, "miles")
  1170. }
  1171. ]
  1172. )
  1173. characterMakers["Natalya"] = () => makeCharacter(
  1174. { name: "Natalya" },
  1175. {
  1176. front: {
  1177. height: math.unit(2, "meter"),
  1178. weight: math.unit(80, "kg"),
  1179. name: "Front",
  1180. image: {
  1181. source: "./media/characters/natalya/front.svg"
  1182. }
  1183. },
  1184. back: {
  1185. height: math.unit(2, "meter"),
  1186. weight: math.unit(80, "kg"),
  1187. name: "Back",
  1188. image: {
  1189. source: "./media/characters/natalya/back.svg"
  1190. }
  1191. }
  1192. },
  1193. [
  1194. {
  1195. name: "Normal",
  1196. height: math.unit(150, "feet"),
  1197. default: true
  1198. },
  1199. {
  1200. name: "Megamacro",
  1201. height: math.unit(5, "miles")
  1202. },
  1203. {
  1204. name: "Full-Size",
  1205. height: math.unit(600, "kiloparsecs")
  1206. }
  1207. ]
  1208. )
  1209. characterMakers["Erestrebah"] = () => makeCharacter(
  1210. { name: "Erestrebah" },
  1211. {
  1212. front: {
  1213. height: math.unit(2, "meter"),
  1214. weight: math.unit(50, "kg"),
  1215. name: "Front",
  1216. image: {
  1217. source: "./media/characters/erestrebah/front.svg",
  1218. extra: 208/193,
  1219. bottom: 0.055
  1220. }
  1221. },
  1222. back: {
  1223. height: math.unit(2, "meter"),
  1224. weight: math.unit(50, "kg"),
  1225. name: "Back",
  1226. image: {
  1227. source: "./media/characters/erestrebah/back.svg",
  1228. extra: 1.3
  1229. }
  1230. }
  1231. },
  1232. [
  1233. {
  1234. name: "Normal",
  1235. height: math.unit(10, "feet")
  1236. },
  1237. {
  1238. name: "Large",
  1239. height: math.unit(50, "feet"),
  1240. default: true
  1241. },
  1242. {
  1243. name: "Macro",
  1244. height: math.unit(300, "feet")
  1245. },
  1246. {
  1247. name: "Macro+",
  1248. height: math.unit(750, "feet")
  1249. },
  1250. {
  1251. name: "Megamacro",
  1252. height: math.unit(3, "miles")
  1253. }
  1254. ]
  1255. )
  1256. characterMakers["Jennifer"] = () => makeCharacter(
  1257. { name: "Jennifer" },
  1258. {
  1259. front: {
  1260. height: math.unit(2, "meter"),
  1261. weight: math.unit(80, "kg"),
  1262. name: "Front",
  1263. image: {
  1264. source: "./media/characters/jennifer/front.svg",
  1265. bottom: 0.11,
  1266. extra: 1.16
  1267. }
  1268. },
  1269. frontAlt: {
  1270. height: math.unit(2, "meter"),
  1271. weight: math.unit(80, "kg"),
  1272. name: "Front (Alt)",
  1273. image: {
  1274. source: "./media/characters/jennifer/front-alt.svg"
  1275. }
  1276. }
  1277. },
  1278. [
  1279. {
  1280. name: "Canon Height",
  1281. height: math.unit(120, "feet"),
  1282. default: true
  1283. },
  1284. {
  1285. name: "Macro+",
  1286. height: math.unit(300, "feet")
  1287. },
  1288. {
  1289. name: "Megamacro",
  1290. height: math.unit(20000, "feet")
  1291. }
  1292. ]
  1293. )
  1294. characterMakers["Kalista"] = () => makeCharacter(
  1295. { name: "Kalista" },
  1296. {
  1297. front: {
  1298. height: math.unit(2, "meter"),
  1299. weight: math.unit(50, "kg"),
  1300. name: "Front",
  1301. image: {
  1302. source: "./media/characters/kalista/front.svg",
  1303. extra: 1947/1700
  1304. }
  1305. },
  1306. back: {
  1307. height: math.unit(2, "meter"),
  1308. weight: math.unit(50, "kg"),
  1309. name: "Back",
  1310. image: {
  1311. source: "./media/characters/kalista/back.svg",
  1312. extra: 1366/1156
  1313. }
  1314. }
  1315. },
  1316. [
  1317. {
  1318. name: "Uncomfortably Small",
  1319. height: math.unit(10, "feet")
  1320. },
  1321. {
  1322. name: "Small",
  1323. height: math.unit(30, "feet")
  1324. },
  1325. {
  1326. name: "Macro",
  1327. height: math.unit(100, "feet"),
  1328. default: true
  1329. },
  1330. {
  1331. name: "Macro+",
  1332. height: math.unit(2000, "feet")
  1333. },
  1334. {
  1335. name: "True Form",
  1336. height: math.unit(8924, "miles")
  1337. }
  1338. ]
  1339. )
  1340. characterMakers["GiantGrowingVixen"] = () => makeCharacter(
  1341. { name: "GiantGrowingVixen" },
  1342. {
  1343. front: {
  1344. height: math.unit(2, "meter"),
  1345. weight: math.unit(120, "kg"),
  1346. name: "Front",
  1347. image: {
  1348. source: "./media/characters/ggv/front.svg"
  1349. }
  1350. },
  1351. side: {
  1352. height: math.unit(2, "meter"),
  1353. weight: math.unit(120, "kg"),
  1354. name: "Side",
  1355. image: {
  1356. source: "./media/characters/ggv/side.svg"
  1357. }
  1358. }
  1359. },
  1360. [
  1361. {
  1362. name: "Extremely Puny",
  1363. height: math.unit(9 + 5 / 12, "feet")
  1364. },
  1365. {
  1366. name: "Horribly Small",
  1367. height: math.unit(47.7, "miles"),
  1368. default: true
  1369. },
  1370. {
  1371. name: "Reasonably Sized",
  1372. height: math.unit(25000, "parsecs")
  1373. },
  1374. {
  1375. name: "Slightly Uncompressed",
  1376. height: math.unit(7.77e31, "parsecs")
  1377. },
  1378. {
  1379. name: "Omniversal",
  1380. height: math.unit(1e300, "meters")
  1381. },
  1382. ]
  1383. )
  1384. characterMakers["Napalm"] = () => makeCharacter(
  1385. { name: "Napalm" },
  1386. {
  1387. front: {
  1388. height: math.unit(2, "meter"),
  1389. weight: math.unit(75, "lb"),
  1390. name: "Front",
  1391. image: {
  1392. source: "./media/characters/napalm/front.svg"
  1393. }
  1394. },
  1395. back: {
  1396. height: math.unit(2, "meter"),
  1397. weight: math.unit(75, "lb"),
  1398. name: "Back",
  1399. image: {
  1400. source: "./media/characters/napalm/back.svg"
  1401. }
  1402. }
  1403. },
  1404. [
  1405. {
  1406. name: "Standard",
  1407. height: math.unit(55, "feet"),
  1408. default: true
  1409. }
  1410. ]
  1411. )
  1412. characterMakers["Asana"] = () => makeCharacter(
  1413. { name: "Asana" },
  1414. {
  1415. front: {
  1416. height: math.unit(7 + 5 / 6, "feet"),
  1417. weight: math.unit(325, "lb"),
  1418. name: "Front",
  1419. image: {
  1420. source: "./media/characters/asana/front.svg",
  1421. extra: 1128 / 1068
  1422. }
  1423. },
  1424. back: {
  1425. height: math.unit(7 + 5 / 6, "feet"),
  1426. weight: math.unit(325, "lb"),
  1427. name: "Back",
  1428. image: {
  1429. source: "./media/characters/asana/back.svg",
  1430. extra: 1128 / 1068
  1431. }
  1432. },
  1433. },
  1434. [
  1435. {
  1436. name: "Standard",
  1437. height: math.unit(7 + 5 / 6, "feet"),
  1438. default: true
  1439. },
  1440. {
  1441. name: "Large",
  1442. height: math.unit(10, "meters")
  1443. },
  1444. {
  1445. name: "Macro",
  1446. height: math.unit(2500, "meters")
  1447. },
  1448. {
  1449. name: "Megamacro",
  1450. height: math.unit(5e6, "meters")
  1451. },
  1452. {
  1453. name: "Examacro",
  1454. height: math.unit(5e12, "lightyears")
  1455. },
  1456. {
  1457. name: "Max Size",
  1458. height: math.unit(1e31, "lightyears")
  1459. }
  1460. ]
  1461. )
  1462. characterMakers["Ebony"] = () => makeCharacter(
  1463. { name: "Ebony" },
  1464. {
  1465. front: {
  1466. height: math.unit(2, "meter"),
  1467. weight: math.unit(60, "kg"),
  1468. name: "Front",
  1469. image: {
  1470. source: "./media/characters/ebony/front.svg",
  1471. bottom: 0.03,
  1472. extra: 1045 / 810 + 0.03
  1473. }
  1474. },
  1475. side: {
  1476. height: math.unit(2, "meter"),
  1477. weight: math.unit(60, "kg"),
  1478. name: "Side",
  1479. image: {
  1480. source: "./media/characters/ebony/side.svg",
  1481. bottom: 0.03,
  1482. extra: 1045 / 810 + 0.03
  1483. }
  1484. },
  1485. back: {
  1486. height: math.unit(2, "meter"),
  1487. weight: math.unit(60, "kg"),
  1488. name: "Back",
  1489. image: {
  1490. source: "./media/characters/ebony/back.svg",
  1491. bottom: 0.01,
  1492. extra: 1045 / 810 + 0.01
  1493. }
  1494. },
  1495. },
  1496. [
  1497. // TODO check why I did this lol
  1498. {
  1499. name: "Standard",
  1500. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1501. default: true
  1502. },
  1503. {
  1504. name: "Macro",
  1505. height: math.unit(200, "feet")
  1506. },
  1507. {
  1508. name: "Gigamacro",
  1509. height: math.unit(13000, "km")
  1510. }
  1511. ]
  1512. )
  1513. characterMakers["Mountain"] = () => makeCharacter(
  1514. { name: "Mountain" },
  1515. {
  1516. front: {
  1517. height: math.unit(6, "feet"),
  1518. weight: math.unit(175, "lb"),
  1519. name: "Front",
  1520. image: {
  1521. source: "./media/characters/mountain/front.svg"
  1522. }
  1523. },
  1524. back: {
  1525. height: math.unit(6, "feet"),
  1526. weight: math.unit(175, "lb"),
  1527. name: "Back",
  1528. image: {
  1529. source: "./media/characters/mountain/back.svg"
  1530. }
  1531. },
  1532. },
  1533. [
  1534. {
  1535. name: "Large",
  1536. height: math.unit(20, "meters")
  1537. },
  1538. {
  1539. name: "Macro",
  1540. height: math.unit(300, "meters")
  1541. },
  1542. {
  1543. name: "Gigamacro",
  1544. height: math.unit(10000, "km"),
  1545. default: true
  1546. },
  1547. {
  1548. name: "Examacro",
  1549. height: math.unit(10e9, "lightyears")
  1550. }
  1551. ]
  1552. )
  1553. characterMakers["Rick"] = () => makeCharacter(
  1554. { name: "Rick" },
  1555. {
  1556. front: {
  1557. height: math.unit(8, "feet"),
  1558. weight: math.unit(500, "lb"),
  1559. name: "Front",
  1560. image: {
  1561. source: "./media/characters/rick/front.svg"
  1562. }
  1563. }
  1564. },
  1565. [
  1566. {
  1567. name: "Normal",
  1568. height: math.unit(8, "feet"),
  1569. default: true
  1570. },
  1571. {
  1572. name: "Macro",
  1573. height: math.unit(5, "km")
  1574. }
  1575. ]
  1576. )
  1577. characterMakers["Ona"] = () => makeCharacter(
  1578. { name: "Ona" },
  1579. {
  1580. front: {
  1581. height: math.unit(8, "feet"),
  1582. weight: math.unit(120, "lb"),
  1583. name: "Front",
  1584. image: {
  1585. source: "./media/characters/ona/front.svg"
  1586. }
  1587. },
  1588. frontAlt: {
  1589. height: math.unit(8, "feet"),
  1590. weight: math.unit(120, "lb"),
  1591. name: "Front (Alt)",
  1592. image: {
  1593. source: "./media/characters/ona/front-alt.svg"
  1594. }
  1595. },
  1596. back: {
  1597. height: math.unit(8, "feet"),
  1598. weight: math.unit(120, "lb"),
  1599. name: "Back",
  1600. image: {
  1601. source: "./media/characters/ona/back.svg"
  1602. }
  1603. },
  1604. foot: {
  1605. height: math.unit(1.1, "feet"),
  1606. name: "Foot",
  1607. image: {
  1608. source: "./media/characters/ona/foot.svg"
  1609. }
  1610. }
  1611. },
  1612. [
  1613. {
  1614. name: "Megamacro",
  1615. height: math.unit(70, "km"),
  1616. default: true
  1617. },
  1618. {
  1619. name: "Gigamacro",
  1620. height: math.unit(681818, "miles")
  1621. },
  1622. {
  1623. name: "Examacro",
  1624. height: math.unit(3800000, "lightyears")
  1625. },
  1626. ]
  1627. )
  1628. characterMakers["Mech"] = () => makeCharacter(
  1629. { name: "Mech" },
  1630. {
  1631. front: {
  1632. height: math.unit(12, "feet"),
  1633. weight: math.unit(3000, "lb"),
  1634. name: "Front",
  1635. image: {
  1636. source: "./media/characters/mech/front.svg",
  1637. bottom: 0.025,
  1638. }
  1639. },
  1640. back: {
  1641. height: math.unit(12, "feet"),
  1642. weight: math.unit(3000, "lb"),
  1643. name: "Back",
  1644. image: {
  1645. source: "./media/characters/mech/back.svg",
  1646. bottom: 0.03,
  1647. }
  1648. }
  1649. },
  1650. [
  1651. {
  1652. name: "Normal",
  1653. height: math.unit(12, "feet")
  1654. },
  1655. {
  1656. name: "Macro",
  1657. height: math.unit(300, "feet"),
  1658. default: true
  1659. },
  1660. {
  1661. name: "Macro+",
  1662. height: math.unit(1500, "feet")
  1663. },
  1664. ]
  1665. )
  1666. characterMakers["Gregory"] = () => makeCharacter(
  1667. { name: "Gregory" },
  1668. {
  1669. front: {
  1670. height: math.unit(1.3, "meter"),
  1671. weight: math.unit(30, "kg"),
  1672. name: "Front",
  1673. image: {
  1674. source: "./media/characters/gregory/front.svg",
  1675. }
  1676. }
  1677. },
  1678. [
  1679. {
  1680. name: "Normal",
  1681. height: math.unit(1.3, "meter"),
  1682. default: true
  1683. },
  1684. {
  1685. name: "Macro",
  1686. height: math.unit(20, "meter")
  1687. }
  1688. ]
  1689. )
  1690. characterMakers["Elory"] = () => makeCharacter(
  1691. { name: "Elory" },
  1692. {
  1693. front: {
  1694. height: math.unit(2.8, "meter"),
  1695. weight: math.unit(200, "kg"),
  1696. name: "Front",
  1697. image: {
  1698. source: "./media/characters/elory/front.svg",
  1699. }
  1700. }
  1701. },
  1702. [
  1703. {
  1704. name: "Normal",
  1705. height: math.unit(2.8, "meter"),
  1706. default: true
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(38, "meter")
  1711. }
  1712. ]
  1713. )
  1714. characterMakers["Angelpatamon"] = () => makeCharacter(
  1715. { name: "Angelpatamon" },
  1716. {
  1717. front: {
  1718. height: math.unit(470, "feet"),
  1719. weight: math.unit(924, "tons"),
  1720. name: "Front",
  1721. image: {
  1722. source: "./media/characters/angelpatamon/front.svg",
  1723. }
  1724. }
  1725. },
  1726. [
  1727. {
  1728. name: "Normal",
  1729. height: math.unit(470, "feet"),
  1730. default: true
  1731. },
  1732. {
  1733. name: "Deity Size I",
  1734. height: math.unit(28651.2, "km")
  1735. },
  1736. {
  1737. name: "Deity Size II",
  1738. height: math.unit(171907.2, "km")
  1739. }
  1740. ]
  1741. )
  1742. characterMakers["Cryae"] = () => makeCharacter(
  1743. { name: "Cryae" },
  1744. {
  1745. side: {
  1746. height: math.unit(7.2, "meter"),
  1747. weight: math.unit(8.2, "tons"),
  1748. name: "Side",
  1749. image: {
  1750. source: "./media/characters/cryae/side.svg",
  1751. extra: 3500 / 1500
  1752. }
  1753. }
  1754. },
  1755. [
  1756. {
  1757. name: "Normal",
  1758. height: math.unit(7.2, "meter"),
  1759. default: true
  1760. }
  1761. ]
  1762. )
  1763. characterMakers["Xera"] = () => makeCharacter(
  1764. { name: "Xera" },
  1765. {
  1766. front: {
  1767. height: math.unit(6, "feet"),
  1768. weight: math.unit(175, "lb"),
  1769. name: "Front",
  1770. image: {
  1771. source: "./media/characters/xera/front.svg",
  1772. extra: 2300 / 2061
  1773. }
  1774. },
  1775. side: {
  1776. height: math.unit(6, "feet"),
  1777. weight: math.unit(175, "lb"),
  1778. name: "Side",
  1779. image: {
  1780. source: "./media/characters/xera/side.svg",
  1781. extra: 2300 / 2061
  1782. }
  1783. },
  1784. back: {
  1785. height: math.unit(6, "feet"),
  1786. weight: math.unit(175, "lb"),
  1787. name: "Back",
  1788. image: {
  1789. source: "./media/characters/xera/back.svg"
  1790. }
  1791. },
  1792. },
  1793. [
  1794. {
  1795. name: "Small",
  1796. height: math.unit(10, "feet")
  1797. },
  1798. {
  1799. name: "Macro",
  1800. height: math.unit(500, "meters"),
  1801. default: true
  1802. },
  1803. {
  1804. name: "Macro+",
  1805. height: math.unit(10, "km")
  1806. },
  1807. {
  1808. name: "Gigamacro",
  1809. height: math.unit(25000, "km")
  1810. },
  1811. {
  1812. name: "Teramacro",
  1813. height: math.unit(3e6, "km")
  1814. }
  1815. ]
  1816. )
  1817. characterMakers["Nebula"] = () => makeCharacter(
  1818. { name: "Nebula" },
  1819. {
  1820. front: {
  1821. height: math.unit(6, "feet"),
  1822. weight: math.unit(175, "lb"),
  1823. name: "Front",
  1824. image: {
  1825. source: "./media/characters/nebula/front.svg",
  1826. extra: 2600 / 2450
  1827. }
  1828. }
  1829. },
  1830. [
  1831. {
  1832. name: "Small",
  1833. height: math.unit(4.5, "meters")
  1834. },
  1835. {
  1836. name: "Macro",
  1837. height: math.unit(1500, "meters"),
  1838. default: true
  1839. },
  1840. {
  1841. name: "Megamacro",
  1842. height: math.unit(150, "km")
  1843. },
  1844. {
  1845. name: "Gigamacro",
  1846. height: math.unit(27000, "km")
  1847. }
  1848. ]
  1849. )
  1850. characterMakers["Abysgar"] = () => makeCharacter(
  1851. { name: "Abysgar" },
  1852. {
  1853. front: {
  1854. height: math.unit(6, "feet"),
  1855. weight: math.unit(225, "lb"),
  1856. name: "Front",
  1857. image: {
  1858. source: "./media/characters/abysgar/front.svg"
  1859. }
  1860. }
  1861. },
  1862. [
  1863. {
  1864. name: "Small",
  1865. height: math.unit(4.5, "meters")
  1866. },
  1867. {
  1868. name: "Macro",
  1869. height: math.unit(1250, "meters"),
  1870. default: true
  1871. },
  1872. {
  1873. name: "Megamacro",
  1874. height: math.unit(125, "km")
  1875. },
  1876. {
  1877. name: "Gigamacro",
  1878. height: math.unit(26000, "km")
  1879. }
  1880. ]
  1881. )
  1882. characterMakers["Yakuz"] = () => makeCharacter(
  1883. { name: "Yakuz" },
  1884. {
  1885. front: {
  1886. height: math.unit(6, "feet"),
  1887. weight: math.unit(180, "lb"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/yakuz/front.svg"
  1891. }
  1892. }
  1893. },
  1894. [
  1895. {
  1896. name: "Small",
  1897. height: math.unit(5, "meters")
  1898. },
  1899. {
  1900. name: "Macro",
  1901. height: math.unit(1500, "meters"),
  1902. default: true
  1903. },
  1904. {
  1905. name: "Megamacro",
  1906. height: math.unit(200, "km")
  1907. },
  1908. {
  1909. name: "Gigamacro",
  1910. height: math.unit(100000, "km")
  1911. }
  1912. ]
  1913. )
  1914. characterMakers["Mirova"] = () => makeCharacter(
  1915. { name: "Mirova" },
  1916. {
  1917. front: {
  1918. height: math.unit(6, "feet"),
  1919. weight: math.unit(175, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/mirova/front.svg"
  1923. }
  1924. }
  1925. },
  1926. [
  1927. {
  1928. name: "Small",
  1929. height: math.unit(5, "meters")
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(900, "meters"),
  1934. default: true
  1935. },
  1936. {
  1937. name: "Megamacro",
  1938. height: math.unit(135, "km")
  1939. },
  1940. {
  1941. name: "Gigamacro",
  1942. height: math.unit(20000, "km")
  1943. }
  1944. ]
  1945. )
  1946. characterMakers["Asana (Mech)"] = () => makeCharacter(
  1947. { name: "Asana (Mech)" },
  1948. {
  1949. side: {
  1950. height: math.unit(28.35, "feet"),
  1951. weight: math.unit(99.75, "tons"),
  1952. name: "Side",
  1953. image: {
  1954. source: "./media/characters/asana-mech/side.svg"
  1955. }
  1956. }
  1957. },
  1958. [
  1959. {
  1960. name: "Normal",
  1961. height: math.unit(28.35, "feet"),
  1962. default: true
  1963. },
  1964. {
  1965. name: "Macro",
  1966. height: math.unit(2500, "feet")
  1967. },
  1968. {
  1969. name: "Megamacro",
  1970. height: math.unit(25, "miles")
  1971. },
  1972. {
  1973. name: "Examacro",
  1974. height: math.unit(6e8, "lightyears")
  1975. },
  1976. ]
  1977. )
  1978. characterMakers["Ashtrek"] = () => makeCharacter(
  1979. { name: "Ashtrek" },
  1980. {
  1981. front: {
  1982. height: math.unit(2, "meters"),
  1983. weight: math.unit(70, "kg"),
  1984. name: "Front",
  1985. image: {
  1986. source: "./media/characters/ashtrek/front.svg",
  1987. extra: 560/524 ,
  1988. bottom: 0.01
  1989. }
  1990. },
  1991. frontArmor: {
  1992. height: math.unit(2, "meters"),
  1993. weight: math.unit(76, "kg"),
  1994. name: "Front (Armor)",
  1995. image: {
  1996. source: "./media/characters/ashtrek/front-armor.svg",
  1997. extra: 561/527 ,
  1998. bottom: 0.01
  1999. }
  2000. },
  2001. side: {
  2002. height: math.unit(2, "meters"),
  2003. weight: math.unit(70, "kg"),
  2004. name: "Side",
  2005. image: {
  2006. source: "./media/characters/ashtrek/side.svg",
  2007. extra: 1717/1609 ,
  2008. bottom: 0.005
  2009. }
  2010. },
  2011. back: {
  2012. height: math.unit(2, "meters"),
  2013. weight: math.unit(70, "kg"),
  2014. name: "Back",
  2015. image: {
  2016. source: "./media/characters/ashtrek/back.svg",
  2017. extra: 1570/1501
  2018. }
  2019. },
  2020. },
  2021. [
  2022. {
  2023. name: "DEFCON 5",
  2024. height: math.unit(5, "meters")
  2025. },
  2026. {
  2027. name: "DEFCON 4",
  2028. height: math.unit(500, "meters"),
  2029. default: true
  2030. },
  2031. {
  2032. name: "DEFCON 3",
  2033. height: math.unit(5, "km")
  2034. },
  2035. {
  2036. name: "DEFCON 2",
  2037. height: math.unit(500, "km")
  2038. },
  2039. {
  2040. name: "DEFCON 1",
  2041. height: math.unit(500000, "km")
  2042. },
  2043. {
  2044. name: "DEFCON 0",
  2045. height: math.unit(3, "gigaparsecs")
  2046. },
  2047. ]
  2048. )
  2049. characterMakers["Gale"] = () => makeCharacter(
  2050. { name: "Gale" },
  2051. {
  2052. front: {
  2053. height: math.unit(2, "meters"),
  2054. weight: math.unit(76, "kg"),
  2055. name: "Front",
  2056. image: {
  2057. source: "./media/characters/gale/front.svg"
  2058. }
  2059. },
  2060. frontAlt1: {
  2061. height: math.unit(2, "meters"),
  2062. weight: math.unit(76, "kg"),
  2063. name: "Front (Alt 1)",
  2064. image: {
  2065. source: "./media/characters/gale/front-alt-1.svg"
  2066. }
  2067. },
  2068. frontAlt2: {
  2069. height: math.unit(2, "meters"),
  2070. weight: math.unit(76, "kg"),
  2071. name: "Front (Alt 2)",
  2072. image: {
  2073. source: "./media/characters/gale/front-alt-2.svg"
  2074. }
  2075. },
  2076. },
  2077. [
  2078. {
  2079. name: "Normal",
  2080. height: math.unit(7, "feet")
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(150, "feet"),
  2085. default: true
  2086. },
  2087. {
  2088. name: "Macro+",
  2089. height: math.unit(300, "feet")
  2090. },
  2091. ]
  2092. )
  2093. characterMakers["Draylen"] = () => makeCharacter(
  2094. { name: "Draylen" },
  2095. {
  2096. front: {
  2097. height: math.unit(2, "meters"),
  2098. weight: math.unit(76, "kg"),
  2099. name: "Front",
  2100. image: {
  2101. source: "./media/characters/draylen/front.svg"
  2102. }
  2103. }
  2104. },
  2105. [
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(150, "feet"),
  2109. default: true
  2110. }
  2111. ]
  2112. )
  2113. characterMakers["Chez"] = () => makeCharacter(
  2114. { name: "Chez" },
  2115. {
  2116. front: {
  2117. height: math.unit(7 + 9 / 12, "feet"),
  2118. weight: math.unit(379, "lbs"),
  2119. name: "Front",
  2120. image: {
  2121. source: "./media/characters/chez/front.svg"
  2122. }
  2123. },
  2124. side: {
  2125. height: math.unit(7 + 9 / 12, "feet"),
  2126. weight: math.unit(379, "lbs"),
  2127. name: "Side",
  2128. image: {
  2129. source: "./media/characters/chez/side.svg"
  2130. }
  2131. }
  2132. },
  2133. [
  2134. {
  2135. name: "Normal",
  2136. height: math.unit(7 + 9 / 12, "feet"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "God King",
  2141. height: math.unit(9750000, "meters")
  2142. }
  2143. ]
  2144. )
  2145. characterMakers["Kaylum"] = () => makeCharacter(
  2146. { name: "Kaylum" },
  2147. {
  2148. front: {
  2149. height: math.unit(6, "feet"),
  2150. weight: math.unit(275, "lbs"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/kaylum/front.svg",
  2154. bottom: 0.01,
  2155. extra: 1166 / 1031
  2156. }
  2157. },
  2158. frontWingless: {
  2159. height: math.unit(6, "feet"),
  2160. weight: math.unit(275, "lbs"),
  2161. name: "Front (Wingless)",
  2162. image: {
  2163. source: "./media/characters/kaylum/front-wingless.svg",
  2164. bottom: 0.01,
  2165. extra: 1117 / 1031
  2166. }
  2167. }
  2168. },
  2169. [
  2170. {
  2171. name: "Normal",
  2172. height: math.unit(3.05, "meters")
  2173. },
  2174. {
  2175. name: "Master",
  2176. height: math.unit(5.5, "meters")
  2177. },
  2178. {
  2179. name: "Rampage",
  2180. height: math.unit(19, "meters")
  2181. },
  2182. {
  2183. name: "Macro Lite",
  2184. height: math.unit(37, "meters")
  2185. },
  2186. {
  2187. name: "Hyper Predator",
  2188. height: math.unit(61, "meters")
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(138, "meters"),
  2193. default: true
  2194. }
  2195. ]
  2196. )
  2197. characterMakers["Geta"] = () => makeCharacter(
  2198. { name: "Geta" },
  2199. {
  2200. front: {
  2201. height: math.unit(6, "feet"),
  2202. weight: math.unit(150, "lbs"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/geta/front.svg"
  2206. }
  2207. }
  2208. },
  2209. [
  2210. {
  2211. name: "Micro",
  2212. height: math.unit(3, "inches"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Normal",
  2217. height: math.unit(5 + 5 / 12, "feet")
  2218. }
  2219. ]
  2220. )
  2221. characterMakers["Tyrnn"] = () => makeCharacter(
  2222. { name: "Tyrnn" },
  2223. {
  2224. front: {
  2225. height: math.unit(6, "feet"),
  2226. weight: math.unit(300, "lbs"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/tyrnn/front.svg"
  2230. }
  2231. }
  2232. },
  2233. [
  2234. {
  2235. name: "Main Height",
  2236. height: math.unit(355, "feet"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Fave. Height",
  2241. height: math.unit(2400, "feet")
  2242. }
  2243. ]
  2244. )
  2245. characterMakers["Apple"] = () => makeCharacter(
  2246. { name: "Apple" },
  2247. {
  2248. front: {
  2249. height: math.unit(6, "feet"),
  2250. weight: math.unit(300, "lbs"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/appledectomy/front.svg"
  2254. }
  2255. }
  2256. },
  2257. [
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(2500, "feet")
  2261. },
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(50, "miles"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Gigamacro",
  2269. height: math.unit(5000, "miles")
  2270. },
  2271. {
  2272. name: "Teramacro",
  2273. height: math.unit(250000, "miles")
  2274. },
  2275. ]
  2276. )
  2277. characterMakers["Vulpes"] = () => makeCharacter(
  2278. { name: "Vulpes" },
  2279. {
  2280. front: {
  2281. height: math.unit(6, "feet"),
  2282. weight: math.unit(200, "lbs"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/vulpes/front.svg",
  2286. extra: 573/543,
  2287. bottom: 0.033
  2288. }
  2289. },
  2290. side: {
  2291. height: math.unit(6, "feet"),
  2292. weight: math.unit(200, "lbs"),
  2293. name: "Side",
  2294. image: {
  2295. source: "./media/characters/vulpes/side.svg",
  2296. extra: 573/543,
  2297. bottom: 0.01
  2298. }
  2299. },
  2300. back: {
  2301. height: math.unit(6, "feet"),
  2302. weight: math.unit(200, "lbs"),
  2303. name: "Back",
  2304. image: {
  2305. source: "./media/characters/vulpes/back.svg",
  2306. extra: 573/543,
  2307. }
  2308. },
  2309. feet: {
  2310. height: math.unit(1.276, "feet"),
  2311. name: "Feet",
  2312. image: {
  2313. source: "./media/characters/vulpes/feet.svg"
  2314. }
  2315. },
  2316. maw: {
  2317. height: math.unit(1.18, "feet"),
  2318. name: "Maw",
  2319. image: {
  2320. source: "./media/characters/vulpes/maw.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Micro",
  2327. height: math.unit(2, "inches")
  2328. },
  2329. {
  2330. name: "Normal",
  2331. height: math.unit(6.3, "feet")
  2332. },
  2333. {
  2334. name: "Macro",
  2335. height: math.unit(850, "feet")
  2336. },
  2337. {
  2338. name: "Megamacro",
  2339. height: math.unit(7500, "feet"),
  2340. default: true
  2341. },
  2342. {
  2343. name: "Gigamacro",
  2344. height: math.unit(570000, "miles")
  2345. }
  2346. ]
  2347. )
  2348. characterMakers["Rain Fallen"] = () => makeCharacter(
  2349. { name: "Rain Fallen" },
  2350. {
  2351. front: {
  2352. height: math.unit(6, "feet"),
  2353. weight: math.unit(210, "lbs"),
  2354. name: "Front",
  2355. image: {
  2356. source: "./media/characters/rain-fallen/front.svg"
  2357. }
  2358. },
  2359. side: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(210, "lbs"),
  2362. name: "Side",
  2363. image: {
  2364. source: "./media/characters/rain-fallen/side.svg"
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(210, "lbs"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/rain-fallen/back.svg"
  2373. }
  2374. },
  2375. feral: {
  2376. height: math.unit(9, "feet"),
  2377. weight: math.unit(700, "lbs"),
  2378. name: "Feral",
  2379. image: {
  2380. source: "./media/characters/rain-fallen/feral.svg"
  2381. }
  2382. },
  2383. },
  2384. [
  2385. {
  2386. name: "Normal",
  2387. height: math.unit(5, "meter")
  2388. },
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(150, "meter"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Megamacro",
  2396. height: math.unit(278e6, "meter")
  2397. },
  2398. {
  2399. name: "Gigamacro",
  2400. height: math.unit(2e9, "meter")
  2401. },
  2402. {
  2403. name: "Teramacro",
  2404. height: math.unit(8e12, "meter")
  2405. },
  2406. {
  2407. name: "Devourer",
  2408. height: math.unit(14, "zettameters")
  2409. },
  2410. {
  2411. name: "Scarlet King",
  2412. height: math.unit(18, "yottameters")
  2413. },
  2414. {
  2415. name: "Void",
  2416. height: math.unit(6.66e66, "yottameters")
  2417. }
  2418. ]
  2419. )
  2420. characterMakers["Zaakira"] = () => makeCharacter(
  2421. { name: "Zaakira" },
  2422. {
  2423. standing: {
  2424. height: math.unit(6, "feet"),
  2425. weight: math.unit(180, "lbs"),
  2426. name: "Standing",
  2427. image: {
  2428. source: "./media/characters/zaakira/standing.svg"
  2429. }
  2430. },
  2431. laying: {
  2432. height: math.unit(3, "feet"),
  2433. weight: math.unit(180, "lbs"),
  2434. name: "Laying",
  2435. image: {
  2436. source: "./media/characters/zaakira/laying.svg"
  2437. }
  2438. },
  2439. },
  2440. [
  2441. {
  2442. name: "Normal",
  2443. height: math.unit(12, "feet")
  2444. },
  2445. {
  2446. name: "Macro",
  2447. height: math.unit(279, "feet"),
  2448. default: true
  2449. }
  2450. ]
  2451. )
  2452. characterMakers["Sigvald"] = () => makeCharacter(
  2453. { name: "Sigvald" },
  2454. {
  2455. front: {
  2456. height: math.unit(6, "feet"),
  2457. weight: math.unit(250, "lbs"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/sigvald/front.svg",
  2461. extra: 1000 / 850
  2462. }
  2463. },
  2464. back: {
  2465. height: math.unit(6, "feet"),
  2466. weight: math.unit(250, "lbs"),
  2467. name: "Back",
  2468. image: {
  2469. source: "./media/characters/sigvald/back.svg"
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(8, "feet")
  2477. },
  2478. {
  2479. name: "Large",
  2480. height: math.unit(12, "feet")
  2481. },
  2482. {
  2483. name: "Larger",
  2484. height: math.unit(20, "feet")
  2485. },
  2486. {
  2487. name: "Macro",
  2488. height: math.unit(150, "feet")
  2489. },
  2490. {
  2491. name: "Macro+",
  2492. height: math.unit(200, "feet"),
  2493. default: true
  2494. },
  2495. ]
  2496. )
  2497. characterMakers["Scott"] = () => makeCharacter(
  2498. { name: "Scott" },
  2499. {
  2500. side: {
  2501. height: math.unit(12, "feet"),
  2502. weight: math.unit(3000, "lbs"),
  2503. name: "Side",
  2504. image: {
  2505. source: "./media/characters/scott/side.svg",
  2506. extra: 1,
  2507. bottom: 0.069
  2508. }
  2509. },
  2510. upright: {
  2511. height: math.unit(12, "feet"),
  2512. weight: math.unit(3000, "lbs"),
  2513. name: "Upright",
  2514. image: {
  2515. source: "./media/characters/scott/upright.svg",
  2516. extra: 1,
  2517. bottom: 0.05
  2518. }
  2519. },
  2520. },
  2521. [
  2522. {
  2523. name: "Normal",
  2524. height: math.unit(12, "feet"),
  2525. default: true
  2526. },
  2527. ]
  2528. )
  2529. characterMakers["Tobias"] = () => makeCharacter(
  2530. { name: "Tobias" },
  2531. {
  2532. side: {
  2533. height: math.unit(8, "meters"),
  2534. weight: math.unit(84755, "lbs"),
  2535. name: "Side",
  2536. image: {
  2537. source: "./media/characters/tobias/side.svg",
  2538. extra: 5 / 4
  2539. }
  2540. },
  2541. },
  2542. [
  2543. {
  2544. name: "Normal",
  2545. height: math.unit(8, "meters"),
  2546. default: true
  2547. },
  2548. ]
  2549. )
  2550. characterMakers["Kieran"] = () => makeCharacter(
  2551. { name: "Kieran" },
  2552. {
  2553. front: {
  2554. height: math.unit(5.5, "feet"),
  2555. weight: math.unit(400, "lbs"),
  2556. name: "Front",
  2557. image: {
  2558. source: "./media/characters/kieran/front.svg",
  2559. extra: 1.05
  2560. }
  2561. },
  2562. side: {
  2563. height: math.unit(5.5, "feet"),
  2564. weight: math.unit(400, "lbs"),
  2565. name: "Side",
  2566. image: {
  2567. source: "./media/characters/kieran/side.svg",
  2568. extra: 950 / 850
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(5.5, "feet"),
  2576. default: true
  2577. },
  2578. ]
  2579. )
  2580. characterMakers["Sanya"] = () => makeCharacter(
  2581. { name: "Sanya" },
  2582. {
  2583. side: {
  2584. height: math.unit(2, "meters"),
  2585. weight: math.unit(70, "kg"),
  2586. name: "Side",
  2587. image: {
  2588. source: "./media/characters/sanya/side.svg",
  2589. bottom: 0.02,
  2590. extra: 1.02
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Small",
  2597. height: math.unit(2, "meters")
  2598. },
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(3, "meters")
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(16, "meters"),
  2606. default: true
  2607. },
  2608. ]
  2609. )
  2610. characterMakers["Miranda"] = () => makeCharacter(
  2611. { name: "Miranda" },
  2612. {
  2613. side: {
  2614. height: math.unit(2, "meters"),
  2615. weight: math.unit(120, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/miranda/front.svg",
  2619. extra: 10.6 / 10
  2620. }
  2621. },
  2622. },
  2623. [
  2624. {
  2625. name: "Normal",
  2626. height: math.unit(10, "feet"),
  2627. default: true
  2628. }
  2629. ]
  2630. )
  2631. characterMakers["James"] = () => makeCharacter(
  2632. { name: "James" },
  2633. {
  2634. side: {
  2635. height: math.unit(2, "meters"),
  2636. weight: math.unit(100, "kg"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/james/front.svg",
  2640. extra: 10 / 8.5
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(8.5, "feet"),
  2648. default: true
  2649. }
  2650. ]
  2651. )
  2652. characterMakers["Heather"] = () => makeCharacter(
  2653. { name: "Heather" },
  2654. {
  2655. side: {
  2656. height: math.unit(9.5, "feet"),
  2657. weight: math.unit(2500, "lbs"),
  2658. name: "Side",
  2659. image: {
  2660. source: "./media/characters/heather/side.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Normal",
  2667. height: math.unit(9.5, "feet"),
  2668. default: true
  2669. }
  2670. ]
  2671. )
  2672. characterMakers["Lukas"] = () => makeCharacter(
  2673. { name: "Lukas" },
  2674. {
  2675. side: {
  2676. height: math.unit(6.5, "feet"),
  2677. weight: math.unit(400, "lbs"),
  2678. name: "Side",
  2679. image: {
  2680. source: "./media/characters/lukas/side.svg",
  2681. extra: 7.25 / 6.5
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Normal",
  2688. height: math.unit(6.5, "feet"),
  2689. default: true
  2690. }
  2691. ]
  2692. )
  2693. characterMakers["Louise"] = () => makeCharacter(
  2694. { name: "Louise" },
  2695. {
  2696. side: {
  2697. height: math.unit(5, "feet"),
  2698. weight: math.unit(3000, "lbs"),
  2699. name: "Side",
  2700. image: {
  2701. source: "./media/characters/louise/side.svg"
  2702. }
  2703. },
  2704. },
  2705. [
  2706. {
  2707. name: "Normal",
  2708. height: math.unit(5, "feet"),
  2709. default: true
  2710. }
  2711. ]
  2712. )
  2713. characterMakers["Ramona"] = () => makeCharacter(
  2714. { name: "Ramona" },
  2715. {
  2716. side: {
  2717. height: math.unit(6, "feet"),
  2718. weight: math.unit(150, "lbs"),
  2719. name: "Side",
  2720. image: {
  2721. source: "./media/characters/ramona/side.svg"
  2722. }
  2723. },
  2724. },
  2725. [
  2726. {
  2727. name: "Normal",
  2728. height: math.unit(5.3, "meters"),
  2729. default: true
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(20, "stories")
  2734. },
  2735. {
  2736. name: "Macro+",
  2737. height: math.unit(50, "stories")
  2738. },
  2739. ]
  2740. )
  2741. characterMakers["Deerpuff"] = () => makeCharacter(
  2742. { name: "Deerpuff" },
  2743. {
  2744. standing: {
  2745. height: math.unit(5.75, "feet"),
  2746. weight: math.unit(160, "lbs"),
  2747. name: "Standing",
  2748. image: {
  2749. source: "./media/characters/deerpuff/standing.svg",
  2750. extra: 682 / 624
  2751. }
  2752. },
  2753. sitting: {
  2754. height: math.unit(5.75 / 1.79, "feet"),
  2755. weight: math.unit(160, "lbs"),
  2756. name: "Sitting",
  2757. image: {
  2758. source: "./media/characters/deerpuff/sitting.svg",
  2759. bottom: 44 / 400,
  2760. extra: 1
  2761. }
  2762. },
  2763. taurLaying: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(400, "lbs"),
  2766. name: "Taur (Laying)",
  2767. image: {
  2768. source: "./media/characters/deerpuff/taur-laying.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Puffball",
  2775. height: math.unit(6, "inches")
  2776. },
  2777. {
  2778. name: "Normalpuff",
  2779. height: math.unit(5.75, "feet")
  2780. },
  2781. {
  2782. name: "Macropuff",
  2783. height: math.unit(1500, "feet"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Megapuff",
  2788. height: math.unit(500, "miles")
  2789. },
  2790. {
  2791. name: "Gigapuff",
  2792. height: math.unit(250000, "miles")
  2793. },
  2794. {
  2795. name: "Omegapuff",
  2796. height: math.unit(1000, "lightyears")
  2797. },
  2798. ]
  2799. )
  2800. characterMakers["Vivian"] = () => makeCharacter(
  2801. { name: "Vivian" },
  2802. {
  2803. stomping: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(170, "lbs"),
  2806. name: "Stomping",
  2807. image: {
  2808. source: "./media/characters/vivian/stomping.svg"
  2809. }
  2810. },
  2811. sitting: {
  2812. height: math.unit(6 / 1.75, "feet"),
  2813. weight: math.unit(170, "lbs"),
  2814. name: "Sitting",
  2815. image: {
  2816. source: "./media/characters/vivian/sitting.svg",
  2817. bottom: 1 / 6.4,
  2818. extra: 1,
  2819. }
  2820. },
  2821. },
  2822. [
  2823. {
  2824. name: "Normal",
  2825. height: math.unit(7, "feet"),
  2826. default: true
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(10, "stories")
  2831. },
  2832. {
  2833. name: "Macro+",
  2834. height: math.unit(30, "stories")
  2835. },
  2836. {
  2837. name: "Megamacro",
  2838. height: math.unit(10, "miles")
  2839. },
  2840. {
  2841. name: "Megamacro+",
  2842. height: math.unit(2750000, "meters")
  2843. },
  2844. ]
  2845. )
  2846. characterMakers["Prince"] = () => makeCharacter(
  2847. { name: "Prince" },
  2848. {
  2849. front: {
  2850. height: math.unit(6, "feet"),
  2851. weight: math.unit(160, "lbs"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/prince/front.svg",
  2855. extra: 3400/3000
  2856. }
  2857. },
  2858. jumping: {
  2859. height: math.unit(6, "feet"),
  2860. weight: math.unit(160, "lbs"),
  2861. name: "Jumping",
  2862. image: {
  2863. source: "./media/characters/prince/jump.svg",
  2864. extra: 2555/2134
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "Normal",
  2871. height: math.unit(7.75, "feet"),
  2872. default: true
  2873. },
  2874. {
  2875. name: "Not cute",
  2876. height: math.unit(17, "feet")
  2877. },
  2878. {
  2879. name: "I said NOT",
  2880. height: math.unit(91, "feet")
  2881. },
  2882. {
  2883. name: "Please stop",
  2884. height: math.unit(560, "feet")
  2885. },
  2886. {
  2887. name: "What have you done",
  2888. height: math.unit(2200, "feet")
  2889. },
  2890. {
  2891. name: "Deer God",
  2892. height: math.unit(3.6, "miles")
  2893. },
  2894. ]
  2895. )
  2896. characterMakers["Psymon"] = () => makeCharacter(
  2897. { name: "Psymon" },
  2898. {
  2899. standing: {
  2900. height: math.unit(6, "feet"),
  2901. weight: math.unit(300, "lbs"),
  2902. name: "Standing",
  2903. image: {
  2904. source: "./media/characters/psymon/standing.svg",
  2905. extra: 1888/1810,
  2906. bottom: 0.05
  2907. }
  2908. },
  2909. slithering: {
  2910. height: math.unit(6, "feet"),
  2911. weight: math.unit(300, "lbs"),
  2912. name: "Slithering",
  2913. image: {
  2914. source: "./media/characters/psymon/slithering.svg",
  2915. extra: 1330/1224
  2916. }
  2917. },
  2918. slitheringAlt: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(300, "lbs"),
  2921. name: "Slithering (Alt)",
  2922. image: {
  2923. source: "./media/characters/psymon/slithering-alt.svg",
  2924. extra: 1330/1224
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(11.25, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Large",
  2936. height: math.unit(27, "feet")
  2937. },
  2938. {
  2939. name: "Giant",
  2940. height: math.unit(87, "feet")
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(365, "feet")
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(3, "miles")
  2949. },
  2950. {
  2951. name: "World Serpent",
  2952. height: math.unit(8000, "miles")
  2953. },
  2954. ]
  2955. )
  2956. characterMakers["Daimos"] = () => makeCharacter(
  2957. { name: "Daimos" },
  2958. {
  2959. front: {
  2960. height: math.unit(6, "feet"),
  2961. weight: math.unit(180, "lbs"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/daimos/front.svg",
  2965. extra: 4160/3897,
  2966. bottom: 0.021
  2967. }
  2968. }
  2969. },
  2970. [
  2971. {
  2972. name: "Normal",
  2973. height: math.unit(8, "feet"),
  2974. default: true
  2975. },
  2976. {
  2977. name: "Big Dog",
  2978. height: math.unit(22, "feet")
  2979. },
  2980. {
  2981. name: "Macro",
  2982. height: math.unit(127, "feet")
  2983. },
  2984. {
  2985. name: "Megamacro",
  2986. height: math.unit(3600, "feet")
  2987. },
  2988. ]
  2989. )
  2990. characterMakers["Blake"] = () => makeCharacter(
  2991. { name: "Blake" },
  2992. {
  2993. side: {
  2994. height: math.unit(6, "feet"),
  2995. weight: math.unit(180, "lbs"),
  2996. name: "Side",
  2997. image: {
  2998. source: "./media/characters/blake/side.svg",
  2999. extra: 1212/1120 ,
  3000. bottom: 0.05
  3001. }
  3002. },
  3003. crouched: {
  3004. height: math.unit(6*0.57, "feet"),
  3005. weight: math.unit(180, "lbs"),
  3006. name: "Crouched",
  3007. image: {
  3008. source: "./media/characters/blake/crouched.svg",
  3009. extra: 840/587 ,
  3010. bottom: 0.04
  3011. }
  3012. },
  3013. bent: {
  3014. height: math.unit(6*0.75, "feet"),
  3015. weight: math.unit(180, "lbs"),
  3016. name: "Bent",
  3017. image: {
  3018. source: "./media/characters/blake/bent.svg",
  3019. extra: 592/544 ,
  3020. bottom: 0.035
  3021. }
  3022. },
  3023. },
  3024. [
  3025. {
  3026. name: "Normal",
  3027. height: math.unit(8 + 1/6, "feet"),
  3028. default: true
  3029. },
  3030. {
  3031. name: "Big Backside",
  3032. height: math.unit(37, "feet")
  3033. },
  3034. {
  3035. name: "Subway Shredder",
  3036. height: math.unit(72, "feet")
  3037. },
  3038. {
  3039. name: "City Carver",
  3040. height: math.unit(1675, "feet")
  3041. },
  3042. {
  3043. name: "Tectonic Tweaker",
  3044. height: math.unit(2300, "miles")
  3045. },
  3046. ]
  3047. )
  3048. characterMakers["Guisetto"] = () => makeCharacter(
  3049. { name: "Guisetto" },
  3050. {
  3051. front: {
  3052. height: math.unit(6, "feet"),
  3053. weight: math.unit(180, "lbs"),
  3054. name: "Front",
  3055. image: {
  3056. source: "./media/characters/guisetto/front.svg",
  3057. extra: 856/817,
  3058. bottom: 0.06
  3059. }
  3060. },
  3061. airborne: {
  3062. height: math.unit(6, "feet"),
  3063. weight: math.unit(180, "lbs"),
  3064. name: "Airborne",
  3065. image: {
  3066. source: "./media/characters/guisetto/airborne.svg",
  3067. extra: 584/525
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(10 + 11/12, "feet"),
  3075. default: true
  3076. },
  3077. {
  3078. name: "Large",
  3079. height: math.unit(35, "feet")
  3080. },
  3081. {
  3082. name: "Macro",
  3083. height: math.unit(475, "feet")
  3084. },
  3085. ]
  3086. )
  3087. characterMakers["Luxor"] = () => makeCharacter(
  3088. { name: "Luxor" },
  3089. {
  3090. front: {
  3091. height: math.unit(6, "feet"),
  3092. weight: math.unit(180, "lbs"),
  3093. name: "Front",
  3094. image: {
  3095. source: "./media/characters/luxor/front.svg",
  3096. extra: 2940/2152
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(180, "lbs"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/luxor/back.svg",
  3105. extra: 1083/960
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(5 + 5/6, "feet"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Lamp",
  3117. height: math.unit(50, "feet")
  3118. },
  3119. {
  3120. name: "Lämp",
  3121. height: math.unit(300, "feet")
  3122. },
  3123. {
  3124. name: "The sun is a lamp",
  3125. height: math.unit(250000, "miles")
  3126. },
  3127. ]
  3128. )
  3129. characterMakers["Huoyan"] = () => makeCharacter(
  3130. { name: "Huoyan" },
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(50, "lbs"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/huoyan/front.svg"
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(180, "lbs"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/huoyan/side.svg"
  3146. }
  3147. },
  3148. },
  3149. [
  3150. {
  3151. name: "Chef",
  3152. height: math.unit(9, "feet")
  3153. },
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(65, "feet"),
  3157. default: true
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(780, "feet")
  3162. },
  3163. {
  3164. name: "Flaming Mountain",
  3165. height: math.unit(4.8, "miles")
  3166. },
  3167. {
  3168. name: "Celestial",
  3169. height: math.unit(765000, "miles")
  3170. },
  3171. ]
  3172. )
  3173. characterMakers["Tails"] = () => makeCharacter(
  3174. { name: "Tails" },
  3175. {
  3176. front: {
  3177. height: math.unit(5 + 3/4, "feet"),
  3178. weight: math.unit(120, "lbs"),
  3179. name: "Front",
  3180. image: {
  3181. source: "./media/characters/tails/front.svg"
  3182. }
  3183. }
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 3/4, "feet"),
  3189. default: true
  3190. }
  3191. ]
  3192. )
  3193. characterMakers["Rainy"] = () => makeCharacter(
  3194. { name: "Rainy" },
  3195. {
  3196. front: {
  3197. height: math.unit(4, "feet"),
  3198. weight: math.unit(50, "lbs"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/rainy/front.svg"
  3202. }
  3203. }
  3204. },
  3205. [
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(800, "feet"),
  3209. default: true
  3210. }
  3211. ]
  3212. )
  3213. characterMakers["Rainier"] = () => makeCharacter(
  3214. { name: "Rainier" },
  3215. {
  3216. front: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(150, "lbs"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/rainier/front.svg"
  3222. }
  3223. }
  3224. },
  3225. [
  3226. {
  3227. name: "Micro",
  3228. height: math.unit(2, "mm"),
  3229. default: true
  3230. }
  3231. ]
  3232. )
  3233. characterMakers["Andy"] = () => makeCharacter(
  3234. { name: "Andy" },
  3235. {
  3236. front: {
  3237. height: math.unit(6, "feet"),
  3238. weight: math.unit(180, "lbs"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/andy/front.svg"
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Normal",
  3248. height: math.unit(8, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(1000, "feet")
  3254. },
  3255. {
  3256. name: "Megamacro",
  3257. height: math.unit(5, "miles")
  3258. },
  3259. {
  3260. name: "Gigamacro",
  3261. height: math.unit(5000, "miles")
  3262. },
  3263. ]
  3264. )
  3265. characterMakers["Cimmaron"] = () => makeCharacter(
  3266. { name: "Cimmaron" },
  3267. {
  3268. frontClothed: {
  3269. height: math.unit(6, "feet"),
  3270. weight: math.unit(210, "lbs"),
  3271. name: "Front (Clothed)",
  3272. image: {
  3273. source: "./media/characters/cimmaron/front-clothed.svg",
  3274. extra: 701/676 ,
  3275. bottom: 0.046
  3276. }
  3277. },
  3278. backClothed: {
  3279. height: math.unit(6, "feet"),
  3280. weight: math.unit(210, "lbs"),
  3281. name: "Back (Clothed)",
  3282. image: {
  3283. source: "./media/characters/cimmaron/back-clothed.svg",
  3284. extra: 701/676 ,
  3285. bottom: 0.046
  3286. }
  3287. },
  3288. frontNude: {
  3289. height: math.unit(6, "feet"),
  3290. weight: math.unit(210, "lbs"),
  3291. name: "Front (Nude)",
  3292. image: {
  3293. source: "./media/characters/cimmaron/front-nude.svg",
  3294. extra: 701/676 ,
  3295. bottom: 0.046
  3296. }
  3297. },
  3298. backNude: {
  3299. height: math.unit(6, "feet"),
  3300. weight: math.unit(210, "lbs"),
  3301. name: "Back (Nude)",
  3302. image: {
  3303. source: "./media/characters/cimmaron/back-nude.svg",
  3304. extra: 701/676 ,
  3305. bottom: 0.046
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(6, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Macro Mayor",
  3317. height: math.unit(350, "meters")
  3318. },
  3319. ]
  3320. )
  3321. characterMakers["Akari Kaen"] = () => makeCharacter(
  3322. { name: "Akari Kaen" },
  3323. {
  3324. front: {
  3325. height: math.unit(6, "feet"),
  3326. weight: math.unit(200, "lbs"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/akari/front.svg",
  3330. extra: 962/901,
  3331. bottom: 0.04
  3332. }
  3333. }
  3334. },
  3335. [
  3336. {
  3337. name: "Micro",
  3338. height: math.unit(5, "inches"),
  3339. default: true
  3340. },
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(7, "feet")
  3344. },
  3345. ]
  3346. )
  3347. characterMakers["Cynosura"] = () => makeCharacter(
  3348. { name: "Cynosura" },
  3349. {
  3350. front: {
  3351. height: math.unit(6, "feet"),
  3352. weight: math.unit(140, "lbs"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/cynosura/front.svg",
  3356. extra: 896/847
  3357. }
  3358. },
  3359. back: {
  3360. height: math.unit(6, "feet"),
  3361. weight: math.unit(140, "lbs"),
  3362. name: "Back",
  3363. image: {
  3364. source: "./media/characters/cynosura/back.svg",
  3365. extra: 1365/1250
  3366. }
  3367. },
  3368. },
  3369. [
  3370. {
  3371. name: "Micro",
  3372. height: math.unit(4, "inches")
  3373. },
  3374. {
  3375. name: "Normal",
  3376. height: math.unit(5.75, "feet"),
  3377. default: true
  3378. },
  3379. {
  3380. name: "Tall",
  3381. height: math.unit(10, "feet")
  3382. },
  3383. {
  3384. name: "Big",
  3385. height: math.unit(20, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(50, "feet")
  3390. },
  3391. ]
  3392. )
  3393. characterMakers["Gin"] = () => makeCharacter(
  3394. { name: "Gin" },
  3395. {
  3396. front: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(170, "lbs"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/gin/front.svg",
  3402. extra: 1.053,
  3403. bottom: 0.025
  3404. }
  3405. },
  3406. foot: {
  3407. height: math.unit(6/4.25, "feet"),
  3408. name: "Foot",
  3409. image: {
  3410. source: "./media/characters/gin/foot.svg"
  3411. }
  3412. },
  3413. sole: {
  3414. height: math.unit(6/4.40, "feet"),
  3415. name: "Sole",
  3416. image: {
  3417. source: "./media/characters/gin/sole.svg"
  3418. }
  3419. },
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(9 + 4/12, "feet")
  3425. },
  3426. {
  3427. name: "Macro",
  3428. height: math.unit(1500, "feet")
  3429. },
  3430. {
  3431. name: "Megamacro",
  3432. height: math.unit(200, "miles"),
  3433. default: true
  3434. },
  3435. {
  3436. name: "Gigamacro",
  3437. height: math.unit(500, "megameters")
  3438. },
  3439. {
  3440. name: "Teramacro",
  3441. height: math.unit(15, "lightyears")
  3442. }
  3443. ]
  3444. )
  3445. characterMakers["Guy"] = () => makeCharacter(
  3446. { name: "Guy" },
  3447. {
  3448. front: {
  3449. height: math.unit(6 + 1/6, "feet"),
  3450. weight: math.unit(178, "lbs"),
  3451. name: "Front",
  3452. image: {
  3453. source: "./media/characters/guy/front.svg"
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(6 + 1/6, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Large",
  3465. height: math.unit(25 + 7/12, "feet")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(60 + 9/12, "feet")
  3470. },
  3471. {
  3472. name: "Macro+",
  3473. height: math.unit(246, "feet")
  3474. },
  3475. {
  3476. name: "Macro++",
  3477. height: math.unit(878, "feet")
  3478. }
  3479. ]
  3480. )
  3481. characterMakers["Tiberius"] = () => makeCharacter(
  3482. { name: "Tiberius" },
  3483. {
  3484. front: {
  3485. height: math.unit(9, "feet"),
  3486. weight: math.unit(800, "lbs"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/tiberius/front.svg",
  3490. extra: 2295/2071
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(9, "feet"),
  3495. weight: math.unit(800, "lbs"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/tiberius/back.svg",
  3499. extra: 2373/2160
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(9, "feet"),
  3507. default: true
  3508. }
  3509. ]
  3510. )
  3511. characterMakers["Surgo"] = () => makeCharacter(
  3512. { name: "Surgo" },
  3513. {
  3514. front: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(600, "lbs"),
  3517. name: "Front",
  3518. image: {
  3519. source: "./media/characters/surgo/front.svg",
  3520. extra: 3591/2227
  3521. }
  3522. },
  3523. back: {
  3524. height: math.unit(6, "feet"),
  3525. weight: math.unit(600, "lbs"),
  3526. name: "Back",
  3527. image: {
  3528. source: "./media/characters/surgo/back.svg",
  3529. extra: 3557/2228
  3530. }
  3531. },
  3532. laying: {
  3533. height: math.unit(6 * 0.85, "feet"),
  3534. weight: math.unit(600, "lbs"),
  3535. name: "Laying",
  3536. image: {
  3537. source: "./media/characters/surgo/laying.svg"
  3538. }
  3539. },
  3540. },
  3541. [
  3542. {
  3543. name: "Normal",
  3544. height: math.unit(6, "feet"),
  3545. default: true
  3546. }
  3547. ]
  3548. )
  3549. characterMakers["Cibus"] = () => makeCharacter(
  3550. { name: "Cibus" },
  3551. {
  3552. side: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(150, "lbs"),
  3555. name: "Side",
  3556. image: {
  3557. source: "./media/characters/cibus/side.svg",
  3558. extra: 800/400
  3559. }
  3560. },
  3561. },
  3562. [
  3563. {
  3564. name: "Normal",
  3565. height: math.unit(6, "feet"),
  3566. default: true
  3567. }
  3568. ]
  3569. )
  3570. characterMakers["Nibbles"] = () => makeCharacter(
  3571. { name: "Nibbles" },
  3572. {
  3573. front: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(240, "lbs"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/nibbles/front.svg"
  3579. }
  3580. },
  3581. side: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(240, "lbs"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/nibbles/side.svg"
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Normal",
  3593. height: math.unit(9, "feet"),
  3594. default: true
  3595. }
  3596. ]
  3597. )
  3598. characterMakers["Rikky"] = () => makeCharacter(
  3599. { name: "Rikky" },
  3600. {
  3601. side: {
  3602. height: math.unit(5 + 1/6, "feet"),
  3603. weight: math.unit(130, "lbs"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/rikky/side.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(5 + 1/6, "feet")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(152, "feet"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Megamacro",
  3622. height: math.unit(7, "miles")
  3623. }
  3624. ]
  3625. )
  3626. characterMakers["Malfressa"] = () => makeCharacter(
  3627. { name: "Malfressa" },
  3628. {
  3629. side: {
  3630. height: math.unit(370, "cm"),
  3631. weight: math.unit(350, "lbs"),
  3632. name: "Side",
  3633. image: {
  3634. source: "./media/characters/malfressa/side.svg"
  3635. }
  3636. },
  3637. walking: {
  3638. height: math.unit(370, "cm"),
  3639. weight: math.unit(350, "lbs"),
  3640. name: "Walking",
  3641. image: {
  3642. source: "./media/characters/malfressa/walking.svg"
  3643. }
  3644. },
  3645. feral: {
  3646. height: math.unit(2500, "cm"),
  3647. weight: math.unit(100000, "lbs"),
  3648. name: "Feral",
  3649. image: {
  3650. source: "./media/characters/malfressa/feral.svg",
  3651. extra: 2108/837 ,
  3652. bottom: 0.02
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(370, "cm")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(300, "meters"),
  3664. default: true
  3665. }
  3666. ]
  3667. )
  3668. characterMakers["Jaro"] = () => makeCharacter(
  3669. { name: "Jaro" },
  3670. {
  3671. front: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(60, "kg"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/jaro/front.svg"
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(60, "kg"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/jaro/back.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Micro",
  3691. height: math.unit(7, "inches")
  3692. },
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(5.5, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Minimacro",
  3700. height: math.unit(20, "feet")
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(200, "meters")
  3705. }
  3706. ]
  3707. )
  3708. characterMakers["Rogue"] = () => makeCharacter(
  3709. { name: "Rogue" },
  3710. {
  3711. front: {
  3712. height: math.unit(6, "feet"),
  3713. weight: math.unit(195, "lb"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/rogue/front.svg"
  3717. }
  3718. },
  3719. },
  3720. [
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(90, "feet"),
  3724. default: true
  3725. },
  3726. ]
  3727. )
  3728. characterMakers["Piper"] = () => makeCharacter(
  3729. { name: "Piper" },
  3730. {
  3731. front: {
  3732. height: math.unit(5 + 8/12, "feet"),
  3733. weight: math.unit(140, "lb"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/piper/front.svg",
  3737. extra: 3928/3681
  3738. }
  3739. },
  3740. },
  3741. [
  3742. {
  3743. name: "Micro",
  3744. height: math.unit(2, "inches")
  3745. },
  3746. {
  3747. name: "Normal",
  3748. height: math.unit(5 + 8/12, "feet")
  3749. },
  3750. {
  3751. name: "Macro",
  3752. height: math.unit(250, "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Megamacro",
  3757. height: math.unit(7, "miles")
  3758. },
  3759. ]
  3760. )
  3761. characterMakers["Gemini"] = () => makeCharacter(
  3762. { name: "Gemini" },
  3763. {
  3764. front: {
  3765. height: math.unit(6, "feet"),
  3766. weight: math.unit(220, "lb"),
  3767. name: "Front",
  3768. image: {
  3769. source: "./media/characters/gemini/front.svg"
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(220, "lb"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/gemini/back.svg"
  3778. }
  3779. },
  3780. kneeling: {
  3781. height: math.unit(6/1.5, "feet"),
  3782. weight: math.unit(220, "lb"),
  3783. name: "Kneeling",
  3784. image: {
  3785. source: "./media/characters/gemini/kneeling.svg",
  3786. bottom: 0.02
  3787. }
  3788. },
  3789. },
  3790. [
  3791. {
  3792. name: "Macro",
  3793. height: math.unit(300, "meters"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Megamacro",
  3798. height: math.unit(6900, "meters")
  3799. },
  3800. ]
  3801. )
  3802. characterMakers["Alicia"] = () => makeCharacter(
  3803. { name: "Alicia" },
  3804. {
  3805. anthro: {
  3806. height: math.unit(2.35, "meters"),
  3807. weight: math.unit(73, "kg"),
  3808. name: "Anthro",
  3809. image: {
  3810. source: "./media/characters/alicia/anthro.svg"
  3811. }
  3812. },
  3813. feral: {
  3814. height: math.unit(1.69, "meters"),
  3815. weight: math.unit(73, "kg"),
  3816. name: "Feral",
  3817. image: {
  3818. source: "./media/characters/alicia/feral.svg"
  3819. }
  3820. },
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(2.35, "meters")
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(60, "meters"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "Megamacro",
  3834. height: math.unit(10000, "kilometers")
  3835. },
  3836. ]
  3837. )
  3838. characterMakers["Archy"] = () => makeCharacter(
  3839. { name: "Archy" },
  3840. {
  3841. front: {
  3842. height: math.unit(7, "feet"),
  3843. weight: math.unit(250, "lbs"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/archy/front.svg"
  3847. }
  3848. }
  3849. },
  3850. [
  3851. {
  3852. name: "Micro",
  3853. height: math.unit(1, "inch")
  3854. },
  3855. {
  3856. name: "Shorty",
  3857. height: math.unit(5, "feet")
  3858. },
  3859. {
  3860. name: "Normal",
  3861. height: math.unit(7, "feet")
  3862. },
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(600, "meters"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Megamacro",
  3870. height: math.unit(1, "mile")
  3871. },
  3872. ]
  3873. )
  3874. characterMakers["Berri"] = () => makeCharacter(
  3875. { name: "Berri" },
  3876. {
  3877. front: {
  3878. height: math.unit(1.65, "meters"),
  3879. weight: math.unit(74, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/berri/front.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(1.65, "meters")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(60, "m"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(9.213, "km")
  3899. },
  3900. {
  3901. name: "Planet Eater",
  3902. height: math.unit(489, "megameters")
  3903. },
  3904. {
  3905. name: "Teramacro",
  3906. height: math.unit(2471635000000, "meters")
  3907. },
  3908. {
  3909. name: "Examacro",
  3910. height: math.unit(8.0624e+26, "meters")
  3911. }
  3912. ]
  3913. )
  3914. characterMakers["Lexi"] = () => makeCharacter(
  3915. { name: "Lexi" },
  3916. {
  3917. front: {
  3918. height: math.unit(1.72, "meters"),
  3919. weight: math.unit(68, "kg"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/lexi/front.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Very Smol",
  3929. height: math.unit(10, "mm")
  3930. },
  3931. {
  3932. name: "Micro",
  3933. height: math.unit(6.8, "cm"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Normal",
  3938. height: math.unit(1.72, "m")
  3939. }
  3940. ]
  3941. )
  3942. characterMakers["Martin"] = () => makeCharacter(
  3943. { name: "Martin" },
  3944. {
  3945. front: {
  3946. height: math.unit(1.69, "meters"),
  3947. weight: math.unit(68, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/martin/front.svg",
  3951. extra: 596/581
  3952. }
  3953. }
  3954. },
  3955. [
  3956. {
  3957. name: "Micro",
  3958. height: math.unit(6.85, "cm"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(1.69, "m")
  3964. }
  3965. ]
  3966. )
  3967. characterMakers["Juno"] = () => makeCharacter(
  3968. { name: "Juno" },
  3969. {
  3970. front: {
  3971. height: math.unit(1.69, "meters"),
  3972. weight: math.unit(68, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/juno/front.svg"
  3976. }
  3977. }
  3978. },
  3979. [
  3980. {
  3981. name: "Micro",
  3982. height: math.unit(7, "cm")
  3983. },
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(1.89, "m")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(353, "meters"),
  3991. default: true
  3992. }
  3993. ]
  3994. )
  3995. characterMakers["Samantha"] = () => makeCharacter(
  3996. { name: "Samantha" },
  3997. {
  3998. front: {
  3999. height: math.unit(1.93, "meters"),
  4000. weight: math.unit(83, "kg"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/samantha/front.svg"
  4004. }
  4005. },
  4006. frontClothed: {
  4007. height: math.unit(1.93, "meters"),
  4008. weight: math.unit(83, "kg"),
  4009. name: "Front (Clothed)",
  4010. image: {
  4011. source: "./media/characters/samantha/front-clothed.svg"
  4012. }
  4013. },
  4014. back: {
  4015. height: math.unit(1.93, "meters"),
  4016. weight: math.unit(83, "kg"),
  4017. name: "Back",
  4018. image: {
  4019. source: "./media/characters/samantha/back.svg"
  4020. }
  4021. },
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(1.93, "m")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(74, "meters"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro+",
  4035. height: math.unit(223, "meters"),
  4036. },
  4037. {
  4038. name: "Megamacro",
  4039. height: math.unit(8381, "meters"),
  4040. },
  4041. {
  4042. name: "Megamacro+",
  4043. height: math.unit(12000, "kilometers")
  4044. },
  4045. ]
  4046. )
  4047. characterMakers["Dr. Clay"] = () => makeCharacter(
  4048. { name: "Dr. Clay" },
  4049. {
  4050. front: {
  4051. height: math.unit(1.92, "meters"),
  4052. weight: math.unit(80, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/dr-clay/front.svg"
  4056. }
  4057. },
  4058. frontClothed: {
  4059. height: math.unit(1.92, "meters"),
  4060. weight: math.unit(80, "kg"),
  4061. name: "Front (Clothed)",
  4062. image: {
  4063. source: "./media/characters/dr-clay/front-clothed.svg"
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(1.92, "m")
  4071. },
  4072. {
  4073. name: "Macro",
  4074. height: math.unit(214, "meters"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Macro+",
  4079. height: math.unit(12.237, "meters"),
  4080. },
  4081. {
  4082. name: "Megamacro",
  4083. height: math.unit(557, "megameters"),
  4084. },
  4085. {
  4086. name: "Unimaginable",
  4087. height: math.unit(120e9, "lightyears")
  4088. },
  4089. ]
  4090. )
  4091. characterMakers["Wyvrn Ripsnarl"] = () => makeCharacter(
  4092. { name: "Wyvrn Ripsnarl" },
  4093. {
  4094. front: {
  4095. height: math.unit(2, "meters"),
  4096. weight: math.unit(80, "kg"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4100. }
  4101. }
  4102. },
  4103. [
  4104. {
  4105. name: "Teramacro",
  4106. height: math.unit(500000, "lightyears"),
  4107. default: true
  4108. },
  4109. ]
  4110. )
  4111. characterMakers["Vemus"] = () => makeCharacter(
  4112. { name: "Vemus" },
  4113. {
  4114. front: {
  4115. height: math.unit(2, "meters"),
  4116. weight: math.unit(150, "kg"),
  4117. name: "Front",
  4118. image: {
  4119. source: "./media/characters/vemus/front.svg",
  4120. extra: 2384/2084,
  4121. bottom: 0.0123
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(3.75, "meters"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Big",
  4133. height: math.unit(8, "meters")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(100, "meters")
  4138. },
  4139. {
  4140. name: "Macro+",
  4141. height: math.unit(1500, "meters")
  4142. },
  4143. {
  4144. name: "Stellar",
  4145. height: math.unit(14e8, "meters")
  4146. },
  4147. ]
  4148. )
  4149. characterMakers["Beherit"] = () => makeCharacter(
  4150. { name: "Beherit" },
  4151. {
  4152. front: {
  4153. height: math.unit(2, "meters"),
  4154. weight: math.unit(70, "kg"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/beherit/front.svg",
  4158. extra: 1408/1242
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(6, "feet")
  4166. },
  4167. {
  4168. name: "Lorg",
  4169. height: math.unit(25, "feet"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Lorger",
  4174. height: math.unit(75, "feet")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(200, "meters")
  4179. },
  4180. ]
  4181. )
  4182. characterMakers["Everett"] = () => makeCharacter(
  4183. { name: "Everett" },
  4184. {
  4185. front: {
  4186. height: math.unit(2, "meters"),
  4187. weight: math.unit(150, "kg"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/everett/front.svg",
  4191. extra: 2038/1737 ,
  4192. bottom: 0.03
  4193. }
  4194. },
  4195. paw: {
  4196. height: math.unit(2/3.6, "meters"),
  4197. name: "Paw",
  4198. image: {
  4199. source: "./media/characters/everett/paw.svg"
  4200. }
  4201. },
  4202. },
  4203. [
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(15, "feet"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Lorg",
  4211. height: math.unit(70, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Lorger",
  4216. height: math.unit(250, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(500, "meters")
  4221. },
  4222. ]
  4223. )
  4224. characterMakers["Rose Lion"] = () => makeCharacter(
  4225. { name: "Rose Lion" },
  4226. {
  4227. front: {
  4228. height: math.unit(2, "meters"),
  4229. weight: math.unit(86, "kg"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/rose-lion/front.svg"
  4233. }
  4234. },
  4235. bent: {
  4236. height: math.unit(2/1.4288, "meters"),
  4237. weight: math.unit(86, "kg"),
  4238. name: "Bent",
  4239. image: {
  4240. source: "./media/characters/rose-lion/bent.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Mini-Micro",
  4247. height: math.unit(1, "cm")
  4248. },
  4249. {
  4250. name: "Micro",
  4251. height: math.unit(3.5, "inches"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(6 + 1/6, "feet")
  4257. },
  4258. {
  4259. name: "Mini-Macro",
  4260. height: math.unit(9 + 10/12, "feet")
  4261. },
  4262. ]
  4263. )
  4264. characterMakers["Regal"] = () => makeCharacter(
  4265. { name: "Regal" },
  4266. {
  4267. front: {
  4268. height: math.unit(2, "meters"),
  4269. weight: math.unit(350, "lbs"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/regal/front.svg"
  4273. }
  4274. },
  4275. back: {
  4276. height: math.unit(2, "meters"),
  4277. weight: math.unit(350, "lbs"),
  4278. name: "Back",
  4279. image: {
  4280. source: "./media/characters/regal/back.svg"
  4281. }
  4282. },
  4283. },
  4284. [
  4285. {
  4286. name: "Macro",
  4287. height: math.unit(350, "feet"),
  4288. default: true
  4289. }
  4290. ]
  4291. )
  4292. characterMakers["Opal"] = () => makeCharacter(
  4293. { name: "Opal" },
  4294. {
  4295. front: {
  4296. height: math.unit(4 + 11/12, "feet"),
  4297. weight: math.unit(100, "lbs"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/opal/front.svg"
  4301. }
  4302. },
  4303. frontAlt: {
  4304. height: math.unit(4 + 11/12, "feet"),
  4305. weight: math.unit(100, "lbs"),
  4306. name: "Front (Alt)",
  4307. image: {
  4308. source: "./media/characters/opal/front-alt.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Small",
  4315. height: math.unit(4 + 11/12, "feet")
  4316. },
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(20, "feet"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(120, "feet")
  4325. },
  4326. {
  4327. name: "Megamacro",
  4328. height: math.unit(80, "miles")
  4329. },
  4330. {
  4331. name: "True Size",
  4332. height: math.unit(100000, "lightyears")
  4333. },
  4334. ]
  4335. )
  4336. characterMakers["Vector Wuff"] = () => makeCharacter(
  4337. { name: "Vector Wuff" },
  4338. {
  4339. front: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(200, "lbs"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/vector-wuff/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(2.8, "meters")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(450, "meters"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Megamacro",
  4360. height: math.unit(15, "kilometers")
  4361. }
  4362. ]
  4363. )
  4364. characterMakers["Dannik"] = () => makeCharacter(
  4365. { name: "Dannik" },
  4366. {
  4367. front: {
  4368. height: math.unit(6, "feet"),
  4369. weight: math.unit(256, "lbs"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/dannik/front.svg"
  4373. }
  4374. }
  4375. },
  4376. [
  4377. {
  4378. name: "Macro",
  4379. height: math.unit(69.57, "meters"),
  4380. default: true
  4381. },
  4382. ]
  4383. )
  4384. characterMakers["Azura Saharah"] = () => makeCharacter(
  4385. { name: "Azura Saharah" },
  4386. {
  4387. front: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(120, "lbs"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/azura-saharah/front.svg"
  4393. }
  4394. },
  4395. back: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(120, "lbs"),
  4398. name: "Back",
  4399. image: {
  4400. source: "./media/characters/azura-saharah/back.svg"
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(100, "feet"),
  4408. default: true
  4409. },
  4410. ]
  4411. )
  4412. characterMakers["Kennedy"] = () => makeCharacter(
  4413. { name: "Kennedy" },
  4414. {
  4415. side: {
  4416. height: math.unit(5 + 4/12, "feet"),
  4417. weight: math.unit(163, "lbs"),
  4418. name: "Side",
  4419. image: {
  4420. source: "./media/characters/kennedy/side.svg"
  4421. }
  4422. }
  4423. },
  4424. [
  4425. {
  4426. name: "Standard Doggo",
  4427. height: math.unit(5 + 4/12, "feet")
  4428. },
  4429. {
  4430. name: "Big Doggo",
  4431. height: math.unit(25 + 3/12, "feet"),
  4432. default: true
  4433. },
  4434. ]
  4435. )
  4436. characterMakers["Odi Lunar"] = () => makeCharacter(
  4437. { name: "Odi Lunar" },
  4438. {
  4439. front: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(90, "lbs"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/odi-lunar/front.svg"
  4445. }
  4446. }
  4447. },
  4448. [
  4449. {
  4450. name: "Micro",
  4451. height: math.unit(3, "inches"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Normal",
  4456. height: math.unit(5.5, "feet")
  4457. }
  4458. ]
  4459. )
  4460. characterMakers["Mandake"] = () => makeCharacter(
  4461. { name: "Mandake" },
  4462. {
  4463. back: {
  4464. height: math.unit(6, "feet"),
  4465. weight: math.unit(220, "lbs"),
  4466. name: "Back",
  4467. image: {
  4468. source: "./media/characters/mandake/back.svg"
  4469. }
  4470. }
  4471. },
  4472. [
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(7, "feet"),
  4476. default: true
  4477. },
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(78, "feet")
  4481. },
  4482. {
  4483. name: "Macro+",
  4484. height: math.unit(300, "meters")
  4485. },
  4486. {
  4487. name: "Macro++",
  4488. height: math.unit(2400, "feet")
  4489. },
  4490. {
  4491. name: "Megamacro",
  4492. height: math.unit(5167, "meters")
  4493. },
  4494. {
  4495. name: "Gigamacro",
  4496. height: math.unit(41769, "miles")
  4497. },
  4498. ]
  4499. )
  4500. characterMakers["Yozey"] = () => makeCharacter(
  4501. { name: "Yozey" },
  4502. {
  4503. front: {
  4504. height: math.unit(6, "feet"),
  4505. weight: math.unit(120, "lbs"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/yozey/front.svg"
  4509. }
  4510. },
  4511. frontAlt: {
  4512. height: math.unit(6, "feet"),
  4513. weight: math.unit(120, "lbs"),
  4514. name: "Front (Alt)",
  4515. image: {
  4516. source: "./media/characters/yozey/front-alt.svg"
  4517. }
  4518. },
  4519. side: {
  4520. height: math.unit(6, "feet"),
  4521. weight: math.unit(120, "lbs"),
  4522. name: "Side",
  4523. image: {
  4524. source: "./media/characters/yozey/side.svg"
  4525. }
  4526. },
  4527. },
  4528. [
  4529. {
  4530. name: "Micro",
  4531. height: math.unit(3, "inches"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(6, "feet")
  4537. }
  4538. ]
  4539. )
  4540. characterMakers["Valeska Voss"] = () => makeCharacter(
  4541. { name: "Valeska Voss" },
  4542. {
  4543. front: {
  4544. height: math.unit(6, "feet"),
  4545. weight: math.unit(103, "lbs"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/valeska-voss/front.svg"
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Mini-Sized Sub",
  4555. height: math.unit(3.1, "inches")
  4556. },
  4557. {
  4558. name: "Mid-Sized Sub",
  4559. height: math.unit(6.2, "inches")
  4560. },
  4561. {
  4562. name: "Full-Sized Sub",
  4563. height: math.unit(9.3, "inches")
  4564. },
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(5 + 2/12, "foot"),
  4568. default: true
  4569. },
  4570. ]
  4571. )
  4572. characterMakers["Gene Zeta"] = () => makeCharacter(
  4573. { name: "Gene Zeta" },
  4574. {
  4575. front: {
  4576. height: math.unit(6, "feet"),
  4577. weight: math.unit(160, "lbs"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/gene-zeta/front.svg",
  4581. bottom: 0.03,
  4582. extra: 1
  4583. }
  4584. }
  4585. },
  4586. [
  4587. {
  4588. name: "Normal",
  4589. height: math.unit(6.25, "foot"),
  4590. default: true
  4591. },
  4592. ]
  4593. )
  4594. characterMakers["Razinox"] = () => makeCharacter(
  4595. { name: "Razinox" },
  4596. {
  4597. front: {
  4598. height: math.unit(6, "feet"),
  4599. weight: math.unit(350, "lbs"),
  4600. name: "Front",
  4601. image: {
  4602. source: "./media/characters/razinox/front.svg",
  4603. extra: 1686/1548
  4604. }
  4605. },
  4606. back: {
  4607. height: math.unit(6, "feet"),
  4608. weight: math.unit(350, "lbs"),
  4609. name: "Back",
  4610. image: {
  4611. source: "./media/characters/razinox/back.svg",
  4612. extra: 1660/1590
  4613. }
  4614. },
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(10 + 8/12, "foot")
  4620. },
  4621. {
  4622. name: "Minimacro",
  4623. height: math.unit(15, "foot")
  4624. },
  4625. {
  4626. name: "Macro",
  4627. height: math.unit(60, "foot"),
  4628. default: true
  4629. },
  4630. {
  4631. name: "Megamacro",
  4632. height: math.unit(5, "miles")
  4633. },
  4634. {
  4635. name: "Gigamacro",
  4636. height: math.unit(6000, "miles")
  4637. },
  4638. ]
  4639. )
  4640. characterMakers["Cobalt"] = () => makeCharacter(
  4641. { name: "Cobalt" },
  4642. {
  4643. front: {
  4644. height: math.unit(6, "feet"),
  4645. weight: math.unit(150, "lbs"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/cobalt/front.svg"
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(8 + 1/12, "foot")
  4656. },
  4657. {
  4658. name: "Macro",
  4659. height: math.unit(111, "foot"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Supracosmic",
  4664. height: math.unit(1e42, "feet")
  4665. },
  4666. ]
  4667. )
  4668. characterMakers["Amanda"] = () => makeCharacter(
  4669. { name: "Amanda" },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(140, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/amanda/front.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Micro",
  4683. height: math.unit(5, "inches"),
  4684. default: true
  4685. },
  4686. ]
  4687. )
  4688. characterMakers["Teal"] = () => makeCharacter(
  4689. { name: "Teal" },
  4690. {
  4691. front: {
  4692. height: math.unit(5.59, "feet"),
  4693. weight: math.unit(250, "lbs"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/teal/front.svg"
  4697. }
  4698. },
  4699. frontAlt: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(250, "lbs"),
  4702. name: "Front (Alt)",
  4703. image: {
  4704. source: "./media/characters/teal/front-alt.svg",
  4705. bottom: 0.04,
  4706. extra: 1
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(12, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. )
  4722. characterMakers["Ravin Amulet"] = () => makeCharacter(
  4723. { name: "Ravin Amulet" },
  4724. {
  4725. frontCat: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(180, "lbs"),
  4728. name: "Front (Cat)",
  4729. image: {
  4730. source: "./media/characters/ravin-amulet/front-cat.svg"
  4731. }
  4732. },
  4733. frontCatAlt: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(180, "lbs"),
  4736. name: "Front (Alt, Cat)",
  4737. image: {
  4738. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  4739. }
  4740. },
  4741. frontWerewolf: {
  4742. height: math.unit(6*1.2, "feet"),
  4743. weight: math.unit(225, "lbs"),
  4744. name: "Front (Werewolf)",
  4745. image: {
  4746. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  4747. }
  4748. },
  4749. backWerewolf: {
  4750. height: math.unit(6*1.2, "feet"),
  4751. weight: math.unit(225, "lbs"),
  4752. name: "Back (Werewolf)",
  4753. image: {
  4754. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Nano",
  4761. height: math.unit(1, "micrometer")
  4762. },
  4763. {
  4764. name: "Micro",
  4765. height: math.unit(1, "inch")
  4766. },
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(6, "feet"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Macro",
  4774. height: math.unit(60, "feet")
  4775. }
  4776. ]
  4777. )
  4778. characterMakers["Fluoresce"] = () => makeCharacter(
  4779. { name: "Fluoresce" },
  4780. {
  4781. front: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(165, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/fluoresce/front.svg"
  4787. }
  4788. }
  4789. },
  4790. [
  4791. {
  4792. name: "Micro",
  4793. height: math.unit(6, "cm")
  4794. },
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(5 + 7/12, "feet"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "Macro",
  4802. height: math.unit(56, "feet")
  4803. },
  4804. {
  4805. name: "Megamacro",
  4806. height: math.unit(1.9, "miles")
  4807. },
  4808. ]
  4809. )
  4810. characterMakers["Aurora"] = () => makeCharacter(
  4811. { name: "Aurora" },
  4812. {
  4813. front: {
  4814. height: math.unit(9 + 6/12, "feet"),
  4815. weight: math.unit(523, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/aurora/side.svg"
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(9 + 6/12, "feet")
  4826. },
  4827. {
  4828. name: "Macro",
  4829. height: math.unit(96, "feet"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Macro+",
  4834. height: math.unit(243, "feet")
  4835. },
  4836. ]
  4837. )
  4838. characterMakers["Ranek"] = () => makeCharacter(
  4839. { name: "Ranek" },
  4840. {
  4841. front: {
  4842. height: math.unit(194, "cm"),
  4843. weight: math.unit(90, "kg"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/ranek/front.svg"
  4847. }
  4848. },
  4849. side: {
  4850. height: math.unit(194, "cm"),
  4851. weight: math.unit(90, "kg"),
  4852. name: "Side",
  4853. image: {
  4854. source: "./media/characters/ranek/side.svg"
  4855. }
  4856. },
  4857. back: {
  4858. height: math.unit(194, "cm"),
  4859. weight: math.unit(90, "kg"),
  4860. name: "Back",
  4861. image: {
  4862. source: "./media/characters/ranek/back.svg"
  4863. }
  4864. },
  4865. feral: {
  4866. height: math.unit(30, "cm"),
  4867. weight: math.unit(1.6, "lbs"),
  4868. name: "Feral",
  4869. image: {
  4870. source: "./media/characters/ranek/feral.svg"
  4871. }
  4872. },
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(194, "cm"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Macro",
  4882. height: math.unit(100, "meters")
  4883. },
  4884. ]
  4885. )
  4886. characterMakers["Andrew Cooper"] = () => makeCharacter(
  4887. { name: "Andrew Cooper" },
  4888. {
  4889. front: {
  4890. height: math.unit(5 + 6/12, "feet"),
  4891. weight: math.unit(153, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/andrew-cooper/front.svg"
  4895. }
  4896. },
  4897. },
  4898. [
  4899. {
  4900. name: "Nano",
  4901. height: math.unit(1, "mm")
  4902. },
  4903. {
  4904. name: "Micro",
  4905. height: math.unit(2, "inches")
  4906. },
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(5 + 6/12, "feet"),
  4910. default: true
  4911. }
  4912. ]
  4913. )
  4914. characterMakers["Akane Sato"] = () => makeCharacter(
  4915. { name: "Akane Sato" },
  4916. {
  4917. front: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/akane-sato/front.svg",
  4923. extra: 1219/1140
  4924. }
  4925. },
  4926. back: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(180, "lbs"),
  4929. name: "Back",
  4930. image: {
  4931. source: "./media/characters/akane-sato/back.svg",
  4932. extra: 1219/1170
  4933. }
  4934. },
  4935. },
  4936. [
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(2.5, "meters")
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(250, "meters"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(25, "km")
  4949. },
  4950. ]
  4951. )
  4952. characterMakers["Rook"] = () => makeCharacter(
  4953. { name: "Rook" },
  4954. {
  4955. front: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(65, "kg"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/rook/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(8.8, "feet")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(88, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Megamacro",
  4976. height: math.unit(8, "miles")
  4977. },
  4978. ]
  4979. )
  4980. characterMakers["Prodigy"] = () => makeCharacter(
  4981. { name: "Prodigy" },
  4982. {
  4983. front: {
  4984. height: math.unit(12 + 2/12, "feet"),
  4985. weight: math.unit(808, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/prodigy/front.svg"
  4989. }
  4990. }
  4991. },
  4992. [
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(12 + 2/12, "feet"),
  4996. default: true
  4997. },
  4998. {
  4999. name: "Macro",
  5000. height: math.unit(143, "feet")
  5001. },
  5002. {
  5003. name: "Macro+",
  5004. height: math.unit(400, "feet")
  5005. },
  5006. ]
  5007. )
  5008. characterMakers["Daniel"] = () => makeCharacter(
  5009. { name: "Daniel" },
  5010. {
  5011. front: {
  5012. height: math.unit(6, "feet"),
  5013. weight: math.unit(225, "lbs"),
  5014. name: "Front",
  5015. image: {
  5016. source: "./media/characters/daniel/front.svg"
  5017. }
  5018. },
  5019. leaning: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(225, "lbs"),
  5022. name: "Leaning",
  5023. image: {
  5024. source: "./media/characters/daniel/leaning.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(1000, "feet"),
  5032. default: true
  5033. },
  5034. ]
  5035. )
  5036. characterMakers["Chiros"] = () => makeCharacter(
  5037. { name: "Chiros" },
  5038. {
  5039. front: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(88, "lbs"),
  5042. name: "Front",
  5043. image: {
  5044. source: "./media/characters/chiros/front.svg",
  5045. extra: 306/226
  5046. }
  5047. },
  5048. side: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(88, "lbs"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/chiros/side.svg",
  5054. extra: 306/226
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(6, "cm"),
  5062. default: true
  5063. },
  5064. ]
  5065. )
  5066. characterMakers["Selka"] = () => makeCharacter(
  5067. { name: "Selka" },
  5068. {
  5069. front: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(100, "lbs"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/selka/front.svg",
  5075. extra: 947/887
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(5, "cm"),
  5083. default: true
  5084. },
  5085. ]
  5086. )
  5087. characterMakers["Verin"] = () => makeCharacter(
  5088. { name: "Verin" },
  5089. {
  5090. front: {
  5091. height: math.unit(8 + 3/12, "feet"),
  5092. weight: math.unit(424, "lbs"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/verin/front.svg",
  5096. extra: 1845/1550
  5097. }
  5098. },
  5099. frontArmored: {
  5100. height: math.unit(8 + 3/12, "feet"),
  5101. weight: math.unit(424, "lbs"),
  5102. name: "Front (Armored)",
  5103. image: {
  5104. source: "./media/characters/verin/front-armor.svg",
  5105. extra: 1845/1550 ,
  5106. bottom: 0.01
  5107. }
  5108. },
  5109. back: {
  5110. height: math.unit(8 + 3/12, "feet"),
  5111. weight: math.unit(424, "lbs"),
  5112. name: "Back",
  5113. image: {
  5114. source: "./media/characters/verin/back.svg",
  5115. bottom: 0.1,
  5116. extra: 1
  5117. }
  5118. },
  5119. foot: {
  5120. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5121. name: "Foot",
  5122. image: {
  5123. source: "./media/characters/verin/foot.svg"
  5124. }
  5125. },
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(8 + 3/12, "feet")
  5131. },
  5132. {
  5133. name: "Minimacro",
  5134. height: math.unit(21, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(626, "feet")
  5140. },
  5141. ]
  5142. )
  5143. characterMakers["Sovrim Terraquian"] = () => makeCharacter(
  5144. { name: "Sovrim Terraquian" },
  5145. {
  5146. front: {
  5147. height: math.unit(2.718, "meters"),
  5148. weight: math.unit(150, "lbs"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/sovrim-terraquian/front.svg"
  5152. }
  5153. },
  5154. back: {
  5155. height: math.unit(2.718, "meters"),
  5156. weight: math.unit(150, "lbs"),
  5157. name: "Back",
  5158. image: {
  5159. source: "./media/characters/sovrim-terraquian/back.svg"
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Micro",
  5166. height: math.unit(2, "inches")
  5167. },
  5168. {
  5169. name: "Small",
  5170. height: math.unit(1, "meter")
  5171. },
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(Math.E, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Macro",
  5179. height: math.unit(20, "meters")
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(400, "meters")
  5184. },
  5185. ]
  5186. )
  5187. characterMakers["Reece Silvermane"] = () => makeCharacter(
  5188. { name: "Reece Silvermane" },
  5189. {
  5190. front: {
  5191. height: math.unit(7, "feet"),
  5192. weight: math.unit(489, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/reece-silvermane/front.svg",
  5196. bottom: 0.02,
  5197. extra: 1
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(1.5, "miles"),
  5205. default: true
  5206. },
  5207. ]
  5208. )
  5209. characterMakers["Kane"] = () => makeCharacter(
  5210. { name: "Kane" },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(78, "kg"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/kane/front.svg",
  5218. extra: 978/899
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(2.1, "m"),
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(1, "km"),
  5230. default: true
  5231. },
  5232. ]
  5233. )
  5234. characterMakers["Tegon"] = () => makeCharacter(
  5235. { name: "Tegon" },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(200, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/tegon/front.svg",
  5243. bottom: 0.01,
  5244. extra: 1
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Micro",
  5251. height: math.unit(1, "inch")
  5252. },
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(6 + 3/12, "feet"),
  5256. default: true
  5257. },
  5258. {
  5259. name: "Macro",
  5260. height: math.unit(300, "feet")
  5261. },
  5262. {
  5263. name: "Megamacro",
  5264. height: math.unit(69, "miles")
  5265. },
  5266. ]
  5267. )
  5268. characterMakers["Arcturax"] = () => makeCharacter(
  5269. { name: "Arcturax" },
  5270. {
  5271. side: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(2304, "lbs"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/arcturax/side.svg",
  5277. extra: 790/376 ,
  5278. bottom: 0.01
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Micro",
  5285. height: math.unit(2, "inch")
  5286. },
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(6, "feet")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(39, "feet"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Megamacro",
  5298. height: math.unit(7, "miles")
  5299. },
  5300. ]
  5301. )
  5302. characterMakers["Sentri"] = () => makeCharacter(
  5303. { name: "Sentri" },
  5304. {
  5305. front: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(50, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/sentri/front.svg",
  5311. extra: 1750/1570 ,
  5312. bottom: 0.025
  5313. }
  5314. },
  5315. frontAlt: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(50, "lbs"),
  5318. name: "Front (Alt)",
  5319. image: {
  5320. source: "./media/characters/sentri/front-alt.svg",
  5321. extra: 1750/1570 ,
  5322. bottom: 0.025
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(15, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Macro",
  5334. height: math.unit(2500, "feet")
  5335. }
  5336. ]
  5337. )
  5338. characterMakers["Corvin"] = () => makeCharacter(
  5339. { name: "Corvin" },
  5340. {
  5341. front: {
  5342. height: math.unit(5 + 8/12, "feet"),
  5343. weight: math.unit(130, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/corvin/front.svg",
  5347. extra: 1803/1629
  5348. }
  5349. },
  5350. frontShirt: {
  5351. height: math.unit(5 + 8/12, "feet"),
  5352. weight: math.unit(130, "lbs"),
  5353. name: "Front (Shirt)",
  5354. image: {
  5355. source: "./media/characters/corvin/front-shirt.svg",
  5356. extra: 1803/1629
  5357. }
  5358. },
  5359. frontPoncho: {
  5360. height: math.unit(5 + 8/12, "feet"),
  5361. weight: math.unit(130, "lbs"),
  5362. name: "Front (Poncho)",
  5363. image: {
  5364. source: "./media/characters/corvin/front-poncho.svg",
  5365. extra: 1803/1629
  5366. }
  5367. },
  5368. side: {
  5369. height: math.unit(5 + 8/12, "feet"),
  5370. weight: math.unit(130, "lbs"),
  5371. name: "Side",
  5372. image: {
  5373. source: "./media/characters/corvin/side.svg",
  5374. extra: 1012/945
  5375. }
  5376. },
  5377. back: {
  5378. height: math.unit(5 + 8/12, "feet"),
  5379. weight: math.unit(130, "lbs"),
  5380. name: "Back",
  5381. image: {
  5382. source: "./media/characters/corvin/back.svg",
  5383. extra: 1803/1629
  5384. }
  5385. },
  5386. },
  5387. [
  5388. {
  5389. name: "Micro",
  5390. height: math.unit(3, "inches")
  5391. },
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(5 + 8/12, "feet")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(300, "feet"),
  5399. default: true
  5400. },
  5401. {
  5402. name: "Megamacro",
  5403. height: math.unit(500, "miles")
  5404. }
  5405. ]
  5406. )
  5407. characterMakers["Q"] = () => makeCharacter(
  5408. { name: "Q" },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(135, "lbs"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/q/front.svg",
  5416. extra: 854/752 ,
  5417. bottom: 0.005
  5418. }
  5419. },
  5420. back: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(130, "lbs"),
  5423. name: "Back",
  5424. image: {
  5425. source: "./media/characters/q/back.svg",
  5426. extra: 854/752
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(90, "feet"),
  5434. default: true
  5435. },
  5436. {
  5437. name: "Extra Macro",
  5438. height: math.unit(300, "feet"),
  5439. },
  5440. {
  5441. name: "BIG WALF",
  5442. height: math.unit(750, "feet"),
  5443. },
  5444. ]
  5445. )
  5446. characterMakers["Carley"] = () => makeCharacter(
  5447. { name: "Carley" },
  5448. {
  5449. front: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(150, "lbs"),
  5452. name: "Front",
  5453. image: {
  5454. source: "./media/characters/carley/front.svg",
  5455. extra: 3927/3540 ,
  5456. bottom: 0.03
  5457. }
  5458. }
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(6 + 3/12, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(185, "feet"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "Megamacro",
  5472. height: math.unit(8, "miles"),
  5473. },
  5474. ]
  5475. )
  5476. characterMakers["Citrine"] = () => makeCharacter(
  5477. { name: "Citrine" },
  5478. {
  5479. front: {
  5480. height: math.unit(3, "feet"),
  5481. weight: math.unit(28, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/citrine/front.svg"
  5485. }
  5486. }
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(3, "feet"),
  5492. default: true
  5493. }
  5494. ]
  5495. )
  5496. characterMakers["Aura Starwind"] = () => makeCharacter(
  5497. { name: "Aura Starwind" },
  5498. {
  5499. front: {
  5500. height: math.unit(14, "feet"),
  5501. weight: math.unit(1450, "kg"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/aura-starwind/front.svg",
  5505. extra: 1455/1335
  5506. }
  5507. },
  5508. side: {
  5509. height: math.unit(14, "feet"),
  5510. weight: math.unit(1450, "kg"),
  5511. name: "Side",
  5512. image: {
  5513. source: "./media/characters/aura-starwind/side.svg",
  5514. extra: 1654/1497
  5515. }
  5516. },
  5517. taur: {
  5518. height: math.unit(18, "feet"),
  5519. weight: math.unit(5500, "kg"),
  5520. name: "Taur",
  5521. image: {
  5522. source: "./media/characters/aura-starwind/taur.svg",
  5523. extra: 1760/1650
  5524. }
  5525. },
  5526. feral: {
  5527. height: math.unit(46, "feet"),
  5528. weight: math.unit(25000, "kg"),
  5529. name: "Feral",
  5530. image: {
  5531. source: "./media/characters/aura-starwind/feral.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(14, "feet"),
  5539. default: true
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(50, "meters")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(5000, "meters")
  5548. },
  5549. {
  5550. name: "Gigamacro",
  5551. height: math.unit(100000, "kilometers")
  5552. },
  5553. ]
  5554. )
  5555. characterMakers["Rivet"] = () => makeCharacter(
  5556. { name: "Rivet" },
  5557. {
  5558. front: {
  5559. height: math.unit(2 + 7/12, "feet"),
  5560. weight: math.unit(32, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/rivet/front.svg",
  5564. extra: 1716/1658 ,
  5565. bottom: 0.03
  5566. }
  5567. },
  5568. foot: {
  5569. height: math.unit(0.551, "feet"),
  5570. name: "Rivet's Foot",
  5571. image: {
  5572. source: "./media/characters/rivet/foot.svg"
  5573. },
  5574. rename: true
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Micro",
  5580. height: math.unit(1.5, "inches"),
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(2 + 7/12, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(85, "feet")
  5590. },
  5591. {
  5592. name: "Megamacro",
  5593. height: math.unit(2.2, "km")
  5594. }
  5595. ]
  5596. )
  5597. characterMakers["Coffee"] = () => makeCharacter(
  5598. { name: "Coffee" },
  5599. {
  5600. front: {
  5601. height: math.unit(5 + 9/12, "feet"),
  5602. weight: math.unit(150, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/coffee/front.svg",
  5606. extra: 3666/3032 ,
  5607. bottom: 0.04
  5608. }
  5609. },
  5610. foot: {
  5611. height: math.unit(1.29, "feet"),
  5612. name: "Foot",
  5613. image: {
  5614. source: "./media/characters/coffee/foot.svg"
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Micro",
  5621. height: math.unit(2, "inches"),
  5622. },
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(5 + 9/12, "feet"),
  5626. default: true
  5627. },
  5628. {
  5629. name: "Macro",
  5630. height: math.unit(800, "feet")
  5631. },
  5632. {
  5633. name: "Megamacro",
  5634. height: math.unit(25, "miles")
  5635. }
  5636. ]
  5637. )
  5638. characterMakers["Chari-Gal"] = () => makeCharacter(
  5639. { name: "Chari-Gal" },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(200, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/chari-gal/front.svg",
  5647. extra: 1568/1385 ,
  5648. bottom: 0.047
  5649. }
  5650. },
  5651. gigantamax: {
  5652. height: math.unit(6*16, "feet"),
  5653. weight: math.unit(200*16*16*16, "lbs"),
  5654. name: "Gigantamax",
  5655. image: {
  5656. source: "./media/characters/chari-gal/gigantamax.svg",
  5657. extra: 1124/888 ,
  5658. bottom: 0.03
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 7/12, "feet")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(200, "feet"),
  5670. default: true
  5671. }
  5672. ]
  5673. )
  5674. characterMakers["Nova"] = () => makeCharacter(
  5675. { name: "Nova" },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(150, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/nova/front.svg",
  5683. extra: 5000/4722 ,
  5684. bottom: 0.02
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Micro-",
  5691. height: math.unit(0.8, "inches")
  5692. },
  5693. {
  5694. name: "Micro",
  5695. height: math.unit(2, "inches"),
  5696. default: true
  5697. },
  5698. ]
  5699. )
  5700. characterMakers["Argent"] = () => makeCharacter(
  5701. { name: "Argent" },
  5702. {
  5703. front: {
  5704. height: math.unit(3 + 1/12, "feet"),
  5705. weight: math.unit(21.7, "lbs"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/argent/front.svg",
  5709. extra: 1565/1416 ,
  5710. bottom: 0.01
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Micro",
  5717. height: math.unit(2, "inches")
  5718. },
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(3 + 1/12, "feet"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(120, "feet")
  5727. },
  5728. ]
  5729. )
  5730. characterMakers["Mira al-Cul"] = () => makeCharacter(
  5731. { name: "Mira al-Cul" },
  5732. {
  5733. lamp: {
  5734. height: math.unit(7 * 1559 / 989, "feet"),
  5735. name: "Magic Lamp",
  5736. image: {
  5737. source: "./media/characters/mira-al-cul/lamp.svg",
  5738. extra: 1617/1559
  5739. }
  5740. },
  5741. front: {
  5742. height: math.unit(7, "feet"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/mira-al-cul/front.svg",
  5746. extra: 1044/990
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Heavily Restricted",
  5753. height: math.unit(7 * 1559 / 989, "feet")
  5754. },
  5755. {
  5756. name: "Freshly Freed",
  5757. height: math.unit(50 * 1559 / 989, "feet")
  5758. },
  5759. {
  5760. name: "World Encompassing",
  5761. height: math.unit(10000 * 1559 / 989, "miles")
  5762. },
  5763. {
  5764. name: "Galactic",
  5765. height: math.unit(1.433 * 1559 / 989, "zettameters")
  5766. },
  5767. {
  5768. name: "Palmed Universe",
  5769. height: math.unit(6000 * 1559 / 989, "yottameters"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Multiversal Matriarch",
  5774. height: math.unit(8.87e10, "yottameters")
  5775. },
  5776. {
  5777. name: "Void Mother",
  5778. height: math.unit(3.14e110, "yottaparsecs")
  5779. },
  5780. ]
  5781. )
  5782. characterMakers["Kuro-shi Uchū"] = () => makeCharacter(
  5783. { name: "Kuro-shi Uchū" },
  5784. {
  5785. front: {
  5786. height: math.unit(17 + 1/12, "feet"),
  5787. weight: math.unit(476.2*5, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/kuro-shi-uchū/front.svg",
  5791. extra: 2329/1835 ,
  5792. bottom: 0.02
  5793. }
  5794. },
  5795. },
  5796. [
  5797. {
  5798. name: "Micro",
  5799. height: math.unit(2, "inches")
  5800. },
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(12, "meters")
  5804. },
  5805. {
  5806. name: "Planetary",
  5807. height: math.unit(0.00929, "AU"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Universal",
  5812. height: math.unit(20, "gigaparsecs")
  5813. },
  5814. ]
  5815. )
  5816. characterMakers["Katherine"] = () => makeCharacter(
  5817. { name: "Katherine" },
  5818. {
  5819. front: {
  5820. height: math.unit(5 + 2/12, "feet"),
  5821. weight: math.unit(120, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/katherine/front.svg",
  5825. extra: 2075/1969
  5826. }
  5827. },
  5828. dress: {
  5829. height: math.unit(5 + 2/12, "feet"),
  5830. weight: math.unit(120, "lbs"),
  5831. name: "Dress",
  5832. image: {
  5833. source: "./media/characters/katherine/dress.svg",
  5834. extra: 2258/2064
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Micro",
  5841. height: math.unit(1, "inches"),
  5842. default: true
  5843. },
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(5 + 2/12, "feet")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(100, "meters")
  5851. },
  5852. {
  5853. name: "Megamacro",
  5854. height: math.unit(80, "miles")
  5855. },
  5856. ]
  5857. )
  5858. characterMakers["Yevis"] = () => makeCharacter(
  5859. { name: "Yevis" },
  5860. {
  5861. front: {
  5862. height: math.unit(7 + 8/12, "feet"),
  5863. weight: math.unit(250, "lbs"),
  5864. name: "Front",
  5865. image: {
  5866. source: "./media/characters/yevis/front.svg",
  5867. extra: 1938/1755
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Mortal",
  5874. height: math.unit(7 + 8/12, "feet")
  5875. },
  5876. {
  5877. name: "Battle",
  5878. height: math.unit(25 + 11/12, "feet")
  5879. },
  5880. {
  5881. name: "Wrath",
  5882. height: math.unit(1654 + 11/12, "feet")
  5883. },
  5884. {
  5885. name: "Planet Destroyer",
  5886. height: math.unit(12000, "miles")
  5887. },
  5888. {
  5889. name: "Galaxy Conqueror",
  5890. height: math.unit(1.45, "zettameters"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Universal War",
  5895. height: math.unit(184, "gigaparsecs")
  5896. },
  5897. {
  5898. name: "Eternity War",
  5899. height: math.unit(1.98e55, "yottaparsecs")
  5900. },
  5901. ]
  5902. )
  5903. characterMakers["Xavier"] = () => makeCharacter(
  5904. { name: "Xavier" },
  5905. {
  5906. front: {
  5907. height: math.unit(5 + 8/12, "feet"),
  5908. weight: math.unit(63, "kg"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/xavier/front.svg",
  5912. extra: 944/883
  5913. }
  5914. },
  5915. frontStretch: {
  5916. height: math.unit(5 + 8/12, "feet"),
  5917. weight: math.unit(63, "kg"),
  5918. name: "Stretching",
  5919. image: {
  5920. source: "./media/characters/xavier/front-stretch.svg",
  5921. extra: 962/820
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(5 + 8/12, "feet")
  5929. },
  5930. {
  5931. name: "Macro",
  5932. height: math.unit(100, "meters"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "McLargeHuge",
  5937. height: math.unit(10, "miles")
  5938. },
  5939. ]
  5940. )
  5941. characterMakers["Joshii"] = () => makeCharacter(
  5942. { name: "Joshii" },
  5943. {
  5944. front: {
  5945. height: math.unit(5 + 5/12, "feet"),
  5946. weight: math.unit(150, "lb"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/joshii/front.svg"
  5950. }
  5951. },
  5952. foot: {
  5953. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  5954. name: "Foot",
  5955. image: {
  5956. source: "./media/characters/joshii/foot.svg"
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Micro",
  5963. height: math.unit(2, "inches")
  5964. },
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(5 + 5/12, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(785, "feet")
  5973. },
  5974. {
  5975. name: "Megamacro",
  5976. height: math.unit(24.5, "miles")
  5977. },
  5978. ]
  5979. )
  5980. characterMakers["Goddess Elizabeth"] = () => makeCharacter(
  5981. { name: "Goddess Elizabeth" },
  5982. {
  5983. front: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(150, "lb"),
  5986. name: "Front",
  5987. image: {
  5988. source: "./media/characters/goddess-elizabeth/front.svg",
  5989. extra: 1800/1525,
  5990. bottom: 0.005
  5991. }
  5992. },
  5993. foot: {
  5994. height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
  5995. name: "Foot",
  5996. image: {
  5997. source: "./media/characters/goddess-elizabeth/foot.svg"
  5998. }
  5999. },
  6000. },
  6001. [
  6002. {
  6003. name: "Micro",
  6004. height: math.unit(12, "feet")
  6005. },
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(80, "miles"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(15000, "parsecs")
  6014. },
  6015. ]
  6016. )
  6017. characterMakers["Kara"] = () => makeCharacter(
  6018. { name: "Kara" },
  6019. {
  6020. front: {
  6021. height: math.unit(5 + 9/12, "feet"),
  6022. weight: math.unit(144, "lb"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/kara/front.svg"
  6026. }
  6027. },
  6028. feet: {
  6029. height: math.unit(6/6.765, "feet"),
  6030. name: "Kara's Feet",
  6031. rename: true,
  6032. image: {
  6033. source: "./media/characters/kara/feet.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(5 + 9/12, "feet")
  6041. },
  6042. {
  6043. name: "Macro",
  6044. height: math.unit(174, "feet"),
  6045. default: true
  6046. },
  6047. ]
  6048. )
  6049. characterMakers["Tyrone"] = () => makeCharacter(
  6050. { name: "Tyrone" },
  6051. {
  6052. front: {
  6053. height: math.unit(18, "feet"),
  6054. weight: math.unit(4050, "lb"),
  6055. name: "Front",
  6056. image: {
  6057. source: "./media/characters/tyrone/front.svg",
  6058. extra: 2520/2402 ,
  6059. bottom: 0.025
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(18, "feet"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Macro",
  6071. height: math.unit(300, "feet")
  6072. },
  6073. ]
  6074. )
  6075. characterMakers["Danny"] = () => makeCharacter(
  6076. { name: "Danny" },
  6077. {
  6078. front: {
  6079. height: math.unit(7 + 8/12, "feet"),
  6080. weight: math.unit(120, "lb"),
  6081. name: "Front",
  6082. image: {
  6083. source: "./media/characters/danny/front.svg",
  6084. extra: 1490/1350
  6085. }
  6086. },
  6087. back: {
  6088. height: math.unit(7 + 8/12, "feet"),
  6089. weight: math.unit(120, "lb"),
  6090. name: "Back",
  6091. image: {
  6092. source: "./media/characters/danny/back.svg",
  6093. extra: 1490/1350
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(7 + 8/12, "feet"),
  6101. default: true
  6102. },
  6103. ]
  6104. )
  6105. characterMakers["Mallow"] = () => makeCharacter(
  6106. { name: "Mallow" },
  6107. {
  6108. front: {
  6109. height: math.unit(3.5, "inches"),
  6110. weight: math.unit(19, "grams"),
  6111. name: "Front",
  6112. image: {
  6113. source: "./media/characters/mallow/front.svg",
  6114. extra: 471/431
  6115. }
  6116. },
  6117. back: {
  6118. height: math.unit(3.5, "inches"),
  6119. weight: math.unit(19, "grams"),
  6120. name: "Back",
  6121. image: {
  6122. source: "./media/characters/mallow/back.svg",
  6123. extra: 471/431
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(3.5, "inches"),
  6131. default: true
  6132. },
  6133. ]
  6134. )
  6135. characterMakers["Starry Aqua"] = () => makeCharacter(
  6136. { name: "Starry Aqua" },
  6137. {
  6138. front: {
  6139. height: math.unit(9, "feet"),
  6140. weight: math.unit(230, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/starry-aqua/front.svg"
  6144. }
  6145. },
  6146. back: {
  6147. height: math.unit(9, "feet"),
  6148. weight: math.unit(230, "kg"),
  6149. name: "Back",
  6150. image: {
  6151. source: "./media/characters/starry-aqua/back.svg"
  6152. }
  6153. },
  6154. hand: {
  6155. height: math.unit(9 * 0.1168, "feet"),
  6156. name: "Hand",
  6157. image: {
  6158. source: "./media/characters/starry-aqua/hand.svg"
  6159. }
  6160. },
  6161. foot: {
  6162. height: math.unit(9 * 0.18, "feet"),
  6163. name: "Foot",
  6164. image: {
  6165. source: "./media/characters/starry-aqua/foot.svg"
  6166. }
  6167. }
  6168. },
  6169. [
  6170. {
  6171. name: "Micro",
  6172. height: math.unit(3, "inches")
  6173. },
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(9, "feet")
  6177. },
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(300, "feet"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Megamacro",
  6185. height: math.unit(3200, "feet")
  6186. }
  6187. ]
  6188. )
  6189. characterMakers["Luka"] = () => makeCharacter(
  6190. { name: "Luka" },
  6191. {
  6192. front: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(230, "lb"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/luka/front.svg",
  6198. extra: 1,
  6199. bottom: 0.025
  6200. }
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(12 + 8/12, "feet"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Minimacro",
  6211. height: math.unit(20, "feet")
  6212. },
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(250, "feet")
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(5, "miles")
  6220. },
  6221. {
  6222. name: "Gigamacro",
  6223. height: math.unit(8000, "miles")
  6224. },
  6225. ]
  6226. )
  6227. characterMakers["Natalie Nightring"] = () => makeCharacter(
  6228. { name: "Natalie Nightring" },
  6229. {
  6230. front: {
  6231. height: math.unit(6, "feet"),
  6232. weight: math.unit(150, "lb"),
  6233. name: "Front",
  6234. image: {
  6235. source: "./media/characters/natalie-nightring/front.svg",
  6236. extra: 1,
  6237. bottom: 0.06
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Uh Oh",
  6244. height: math.unit(0.1, "mm")
  6245. },
  6246. {
  6247. name: "Small",
  6248. height: math.unit(3, "inches")
  6249. },
  6250. {
  6251. name: "Human Scale",
  6252. height: math.unit(6, "feet")
  6253. },
  6254. {
  6255. name: "Librarian",
  6256. height: math.unit(50, "feet"),
  6257. default: true
  6258. },
  6259. {
  6260. name: "Immense",
  6261. height: math.unit(200, "miles")
  6262. },
  6263. ]
  6264. )
  6265. characterMakers["Danni Rosie"] = () => makeCharacter(
  6266. { name: "Danni Rosie" },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(180, "lbs"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/danni-rosie/front.svg",
  6274. extra: 1260/1128 ,
  6275. bottom: 0.022
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Micro",
  6282. height: math.unit(2, "inches"),
  6283. default: true
  6284. },
  6285. ]
  6286. )
  6287. characterMakers["Samantha Kruse"] = () => makeCharacter(
  6288. { name: "Samantha Kruse" },
  6289. {
  6290. front: {
  6291. height: math.unit(5 + 9/12, "feet"),
  6292. weight: math.unit(220, "lb"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/samantha-kruse/front.svg",
  6296. extra: (985 / 935) ,
  6297. bottom: 0.03
  6298. }
  6299. },
  6300. frontUndressed: {
  6301. height: math.unit(5 + 9/12, "feet"),
  6302. weight: math.unit(220, "lb"),
  6303. name: "Front (Undressed)",
  6304. image: {
  6305. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6306. extra: (973 / 923) ,
  6307. bottom: 0.025
  6308. }
  6309. },
  6310. fat: {
  6311. height: math.unit(5 + 9/12, "feet"),
  6312. weight: math.unit(900, "lb"),
  6313. name: "Front (Fat)",
  6314. image: {
  6315. source: "./media/characters/samantha-kruse/fat.svg",
  6316. extra: 2688/2561
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(5 + 9/12, "feet"),
  6324. default: true
  6325. }
  6326. ]
  6327. )
  6328. characterMakers["Amelia Rosie"] = () => makeCharacter(
  6329. { name: "Amelia Rosie" },
  6330. {
  6331. back: {
  6332. height: math.unit(5 + 4/12, "feet"),
  6333. weight: math.unit(4963, "lb"),
  6334. name: "Back",
  6335. image: {
  6336. source: "./media/characters/amelia-rosie/back.svg",
  6337. extra: 1113/963 ,
  6338. bottom: 0.01
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Level 0",
  6345. height: math.unit(5 + 4/12, "feet")
  6346. },
  6347. {
  6348. name: "Level 1",
  6349. height: math.unit(164597, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Level 2",
  6354. height: math.unit(956243, "miles")
  6355. },
  6356. {
  6357. name: "Level 3",
  6358. height: math.unit(29421709423, "miles")
  6359. },
  6360. {
  6361. name: "Level 4",
  6362. height: math.unit(154, "lightyears")
  6363. },
  6364. {
  6365. name: "Level 5",
  6366. height: math.unit(4738272, "lightyears")
  6367. },
  6368. {
  6369. name: "Level 6",
  6370. height: math.unit(145787152896, "lightyears")
  6371. },
  6372. ]
  6373. )
  6374. characterMakers["Rook Kitara"] = () => makeCharacter(
  6375. { name: "Rook Kitara" },
  6376. {
  6377. front: {
  6378. height: math.unit(5 + 11/12, "feet"),
  6379. weight: math.unit(65, "kg"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/rook-kitara/front.svg",
  6383. extra: 1347/1274 ,
  6384. bottom: 0.005
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Totally Unfair",
  6391. height: math.unit(1.8, "mm")
  6392. },
  6393. {
  6394. name: "Lap Rookie",
  6395. height: math.unit(1.4, "feet")
  6396. },
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(5 + 11/12, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "How Did This Happen",
  6404. height: math.unit(80, "miles")
  6405. }
  6406. ]
  6407. )
  6408. characterMakers["Pisces"] = () => makeCharacter(
  6409. { name: "Pisces" },
  6410. {
  6411. front: {
  6412. height: math.unit(7, "feet"),
  6413. weight: math.unit(300, "lb"),
  6414. name: "Front",
  6415. image: {
  6416. source: "./media/characters/pisces/front.svg",
  6417. extra: 2255/2115 ,
  6418. bottom: 0.03
  6419. }
  6420. },
  6421. back: {
  6422. height: math.unit(7, "feet"),
  6423. weight: math.unit(300, "lb"),
  6424. name: "Back",
  6425. image: {
  6426. source: "./media/characters/pisces/back.svg",
  6427. extra: 2146/2055 ,
  6428. bottom: 0.04
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(7, "feet"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Swimming Pool",
  6440. height: math.unit(12.2, "meters")
  6441. },
  6442. {
  6443. name: "Olympic Swimming Pool",
  6444. height: math.unit(56.3, "meters")
  6445. },
  6446. {
  6447. name: "Lake Superior",
  6448. height: math.unit(93900, "meters")
  6449. },
  6450. {
  6451. name: "Mediterranean Sea",
  6452. height: math.unit(644457, "meters")
  6453. },
  6454. {
  6455. name: "World's Oceans",
  6456. height: math.unit(4567491, "meters")
  6457. },
  6458. ]
  6459. )
  6460. characterMakers["Zelas"] = () => makeCharacter(
  6461. { name: "Zelas" },
  6462. {
  6463. front: {
  6464. height: math.unit(2.3, "meters"),
  6465. weight: math.unit(120, "kg"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/zelas/front.svg"
  6469. }
  6470. },
  6471. side: {
  6472. height: math.unit(2.3, "meters"),
  6473. weight: math.unit(120, "kg"),
  6474. name: "Side",
  6475. image: {
  6476. source: "./media/characters/zelas/side.svg"
  6477. }
  6478. },
  6479. back: {
  6480. height: math.unit(2.3, "meters"),
  6481. weight: math.unit(120, "kg"),
  6482. name: "Back",
  6483. image: {
  6484. source: "./media/characters/zelas/back.svg"
  6485. }
  6486. },
  6487. foot: {
  6488. height: math.unit(1.116, "feet"),
  6489. name: "Foot",
  6490. image: {
  6491. source: "./media/characters/zelas/foot.svg"
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(2.3, "meters")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(30, "meters"),
  6503. default: true
  6504. },
  6505. ]
  6506. )
  6507. characterMakers["Talbot"] = () => makeCharacter(
  6508. { name: "Talbot" },
  6509. {
  6510. front: {
  6511. height: math.unit(1, "inch"),
  6512. weight: math.unit(0.21, "grams"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/talbot/front.svg",
  6516. extra: 594/544
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(1, "inch"),
  6524. default: true
  6525. },
  6526. ]
  6527. )
  6528. characterMakers["Fliss"] = () => makeCharacter(
  6529. { name: "Fliss" },
  6530. {
  6531. front: {
  6532. height: math.unit(3 + 3/12, "feet"),
  6533. weight: math.unit(51.8, "lb"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/fliss/front.svg",
  6537. extra: 840/640
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Teeny Tiny",
  6544. height: math.unit(1, "mm")
  6545. },
  6546. {
  6547. name: "Small",
  6548. height: math.unit(1, "inch"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Standard Sylveon",
  6553. height: math.unit(3 + 3/12, "feet")
  6554. },
  6555. {
  6556. name: "Large Nuisance",
  6557. height: math.unit(33, "feet")
  6558. },
  6559. {
  6560. name: "City Filler",
  6561. height: math.unit(3000, "feet")
  6562. },
  6563. {
  6564. name: "New Horizon",
  6565. height: math.unit(6000, "miles")
  6566. },
  6567. ]
  6568. )
  6569. characterMakers["Fleta"] = () => makeCharacter(
  6570. { name: "Fleta" },
  6571. {
  6572. front: {
  6573. height: math.unit(5, "cm"),
  6574. weight: math.unit(1.94, "g"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/fleta/front.svg",
  6578. extra: 835/803
  6579. }
  6580. },
  6581. back: {
  6582. height: math.unit(5, "cm"),
  6583. weight: math.unit(1.94, "g"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/fleta/back.svg",
  6587. extra: 835/803
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Micro",
  6594. height: math.unit(5, "cm"),
  6595. default: true
  6596. },
  6597. ]
  6598. )
  6599. characterMakers["Dominic"] = () => makeCharacter(
  6600. { name: "Dominic" },
  6601. {
  6602. front: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(225, "lb"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/dominic/front.svg",
  6608. extra: 1770/1620 ,
  6609. bottom: 0.025
  6610. }
  6611. },
  6612. back: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(225, "lb"),
  6615. name: "Back",
  6616. image: {
  6617. source: "./media/characters/dominic/back.svg",
  6618. extra: 1745/1620 ,
  6619. bottom: 0.065
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "Nano",
  6626. height: math.unit(0.1, "mm")
  6627. },
  6628. {
  6629. name: "Micro-",
  6630. height: math.unit(1, "mm")
  6631. },
  6632. {
  6633. name: "Micro",
  6634. height: math.unit(4, "inches")
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(6 + 4/12, "feet"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(115, "feet")
  6644. },
  6645. {
  6646. name: "Macro+",
  6647. height: math.unit(955, "feet")
  6648. },
  6649. {
  6650. name: "Megamacro",
  6651. height: math.unit(8990, "feet")
  6652. },
  6653. {
  6654. name: "Gigmacro",
  6655. height: math.unit(9310, "miles")
  6656. },
  6657. {
  6658. name: "Teramacro",
  6659. height: math.unit(1567005010, "miles")
  6660. },
  6661. {
  6662. name: "Examacro",
  6663. height: math.unit(1425, "parsecs")
  6664. },
  6665. ]
  6666. )
  6667. characterMakers["Major Colonel"] = () => makeCharacter(
  6668. { name: "Major Colonel" },
  6669. {
  6670. front: {
  6671. height: math.unit(400, "feet"),
  6672. weight: math.unit(44444444, "lb"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/major-colonel/front.svg"
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(400, "feet"),
  6680. weight: math.unit(44444444, "lb"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/major-colonel/back.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(400, "feet"),
  6691. default: true
  6692. },
  6693. ]
  6694. )
  6695. characterMakers["Axel Lycan"] = () => makeCharacter(
  6696. { name: "Axel Lycan" },
  6697. {
  6698. front: {
  6699. height: math.unit(6, "feet"),
  6700. weight: math.unit(120, "lb"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/axel-lycan/front.svg",
  6704. extra: 1,
  6705. bottom: 0.08
  6706. }
  6707. },
  6708. },
  6709. [
  6710. {
  6711. name: "Macro",
  6712. height: math.unit(1, "km"),
  6713. default: true
  6714. },
  6715. ]
  6716. )
  6717. characterMakers["Vanrel (Hyena)"] = () => makeCharacter(
  6718. { name: "Vanrel (Hyena)" },
  6719. {
  6720. front: {
  6721. height: math.unit(5 + 9/12, "feet"),
  6722. weight: math.unit(175, "lb"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/vanrel-hyena/front.svg",
  6726. extra: 1086/1010 ,
  6727. bottom: 0.04
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(5 + 9/12, "feet"),
  6735. default: true
  6736. },
  6737. ]
  6738. )
  6739. characterMakers["Abbott Absol"] = () => makeCharacter(
  6740. { name: "Abbott Absol" },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(103, "lb"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/abbott-absol/front.svg",
  6748. extra: 2010/1842
  6749. }
  6750. },
  6751. },
  6752. [
  6753. {
  6754. name: "Megamicro",
  6755. height: math.unit(0.1, "mm")
  6756. },
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(1, "inch")
  6760. },
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(6, "feet"),
  6764. default: true
  6765. },
  6766. ]
  6767. )
  6768. characterMakers["Hector"] = () => makeCharacter(
  6769. { name: "Hector" },
  6770. {
  6771. front: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(264, "lb"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/hector/front.svg",
  6777. extra: 2280/2130 ,
  6778. bottom: 0.07
  6779. }
  6780. },
  6781. },
  6782. [
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(12.25, "foot"),
  6786. default: true
  6787. },
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(160, "feet")
  6791. },
  6792. ]
  6793. )
  6794. characterMakers["Sal"] = () => makeCharacter(
  6795. { name: "Sal" },
  6796. {
  6797. front: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(150, "lb"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/sal/front.svg",
  6803. extra: 1846/1699 ,
  6804. bottom: 0.04
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Megamacro",
  6811. height: math.unit(10, "miles"),
  6812. default: true
  6813. },
  6814. ]
  6815. )
  6816. characterMakers["Ranger"] = () => makeCharacter(
  6817. { name: "Ranger" },
  6818. {
  6819. front: {
  6820. height: math.unit(3, "meters"),
  6821. weight: math.unit(450, "kg"),
  6822. name: "front",
  6823. image: {
  6824. source: "./media/characters/ranger/front.svg",
  6825. extra: 2401/2243 ,
  6826. bottom: 0.05
  6827. }
  6828. },
  6829. },
  6830. [
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(3, "meters"),
  6834. default: true
  6835. },
  6836. ]
  6837. )
  6838. characterMakers["Theresa"] = () => makeCharacter(
  6839. { name: "Theresa" },
  6840. {
  6841. front: {
  6842. height: math.unit(14, "feet"),
  6843. weight: math.unit(800, "kg"),
  6844. name: "Front",
  6845. image: {
  6846. source: "./media/characters/theresa/front.svg",
  6847. extra: 3575/3346 ,
  6848. bottom: 0.03
  6849. }
  6850. },
  6851. },
  6852. [
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(14, "feet"),
  6856. default: true
  6857. },
  6858. ]
  6859. )
  6860. characterMakers["Ine"] = () => makeCharacter(
  6861. { name: "Ine" },
  6862. {
  6863. front: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(3, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/ine/front.svg",
  6869. extra: 678/539 ,
  6870. bottom: 0.023
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(2.265, "feet"),
  6878. default: true
  6879. },
  6880. ]
  6881. )
  6882. characterMakers["Vial"] = () => makeCharacter(
  6883. { name: "Vial" },
  6884. {
  6885. front: {
  6886. height: math.unit(5, "feet"),
  6887. weight: math.unit(30, "kg"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/vial/front.svg",
  6891. extra: 1365/1277 ,
  6892. bottom: 0.04
  6893. }
  6894. },
  6895. },
  6896. [
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(5, "feet"),
  6900. default: true
  6901. },
  6902. ]
  6903. )
  6904. characterMakers["Rovoska"] = () => makeCharacter(
  6905. { name: "Rovoska" },
  6906. {
  6907. side: {
  6908. height: math.unit(3.4, "meters"),
  6909. weight: math.unit(1000, "lb"),
  6910. name: "Side",
  6911. image: {
  6912. source: "./media/characters/rovoska/side.svg",
  6913. extra: 4403/1515
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(3.4, "meters"),
  6921. default: true
  6922. },
  6923. ]
  6924. )
  6925. characterMakers["Gunner Rotthbauer"] = () => makeCharacter(
  6926. { name: "Gunner Rotthbauer" },
  6927. {
  6928. front: {
  6929. height: math.unit(8, "feet"),
  6930. weight: math.unit(315, "lb"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/gunner-rotthbauer/front.svg"
  6934. }
  6935. },
  6936. back: {
  6937. height: math.unit(8, "feet"),
  6938. weight: math.unit(315, "lb"),
  6939. name: "Back",
  6940. image: {
  6941. source: "./media/characters/gunner-rotthbauer/back.svg"
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Micro",
  6948. height: math.unit(3.5, "inches")
  6949. },
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(8, "feet"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(250, "feet")
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(1, "AU")
  6962. },
  6963. ]
  6964. )
  6965. characterMakers["Allatia"] = () => makeCharacter(
  6966. { name: "Allatia" },
  6967. {
  6968. front: {
  6969. height: math.unit(5 + 5/12, "feet"),
  6970. weight: math.unit(140, "lb"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/allatia/front.svg",
  6974. extra: 1227/1180 ,
  6975. bottom: 0.027
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(5 + 5/12, "feet")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(250, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(8, "miles")
  6992. }
  6993. ]
  6994. )
  6995. characterMakers["Tene"] = () => makeCharacter(
  6996. { name: "Tene" },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(120, "lb"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/tene/front.svg",
  7004. extra: 1728/1578 ,
  7005. bottom: 0.022
  7006. }
  7007. },
  7008. stomping: {
  7009. height: math.unit(2.025, "meters"),
  7010. weight: math.unit(120, "lb"),
  7011. name: "Stomping",
  7012. image: {
  7013. source: "./media/characters/tene/stomping.svg",
  7014. extra: 938/873 ,
  7015. bottom: 0.01
  7016. }
  7017. },
  7018. sitting: {
  7019. height: math.unit(1, "meter"),
  7020. weight: math.unit(120, "lb"),
  7021. name: "Sitting",
  7022. image: {
  7023. source: "./media/characters/tene/sitting.svg",
  7024. extra: 437/415 ,
  7025. bottom: 0.1
  7026. }
  7027. },
  7028. feral: {
  7029. height: math.unit(3.9, "feet"),
  7030. weight: math.unit(250, "lb"),
  7031. name: "Feral",
  7032. image: {
  7033. source: "./media/characters/tene/feral.svg",
  7034. extra: 717/458 ,
  7035. bottom: 0.179
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(6, "feet")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(300, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Megamacro",
  7051. height: math.unit(5, "miles")
  7052. },
  7053. ]
  7054. )
  7055. characterMakers["Evander"] = () => makeCharacter(
  7056. { name: "Evander" },
  7057. {
  7058. side: {
  7059. height: math.unit(6, "feet"),
  7060. name: "Side",
  7061. image: {
  7062. source: "./media/characters/evander/side.svg",
  7063. extra: 877/477
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(0.83, "meters"),
  7071. default: true
  7072. },
  7073. ]
  7074. )
  7075. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => makeCharacter(
  7076. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7077. {
  7078. front: {
  7079. height: math.unit(12, "feet"),
  7080. weight: math.unit(1000, "lb"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7084. extra: 1762/1611
  7085. }
  7086. },
  7087. back: {
  7088. height: math.unit(12, "feet"),
  7089. weight: math.unit(1000, "lb"),
  7090. name: "Back",
  7091. image: {
  7092. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7093. extra: 1762/1611
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(12, "feet"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Kaiju",
  7105. height: math.unit(150, "feet")
  7106. },
  7107. ]
  7108. )
  7109. characterMakers["Zero Alurus"] = () => makeCharacter(
  7110. { name: "Zero Alurus" },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(150, "lb"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/zero-alurus/front.svg"
  7118. }
  7119. },
  7120. back: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(150, "lb"),
  7123. name: "Back",
  7124. image: {
  7125. source: "./media/characters/zero-alurus/back.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(5 + 10/12, "feet")
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(60, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Macro+",
  7141. height: math.unit(450, "feet")
  7142. },
  7143. ]
  7144. )
  7145. characterMakers["Mega Shi"] = () => makeCharacter(
  7146. { name: "Mega Shi" },
  7147. {
  7148. front: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(200, "lb"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/mega-shi/front.svg",
  7154. extra: 1279/1250 ,
  7155. bottom: 0.02
  7156. }
  7157. },
  7158. back: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(200, "lb"),
  7161. name: "Back",
  7162. image: {
  7163. source: "./media/characters/mega-shi/back.svg",
  7164. extra: 1279/1250 ,
  7165. bottom: 0.02
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(16 + 6/12, "feet")
  7173. },
  7174. {
  7175. name: "Normal",
  7176. height: math.unit(660, "feet"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Megamacro",
  7181. height: math.unit(10, "miles")
  7182. },
  7183. {
  7184. name: "Planetary Launch",
  7185. height: math.unit(500, "miles")
  7186. },
  7187. {
  7188. name: "Interstellar",
  7189. height: math.unit(1e9, "miles")
  7190. },
  7191. {
  7192. name: "Leaving the Universe",
  7193. height: math.unit(1, "gigaparsec")
  7194. },
  7195. {
  7196. name: "Travelling Universes",
  7197. height: math.unit(30e15, "parsecs")
  7198. },
  7199. ]
  7200. )
  7201. characterMakers["Odyssey"] = () => makeCharacter(
  7202. { name: "Odyssey" },
  7203. {
  7204. front: {
  7205. height: math.unit(6, "feet"),
  7206. weight: math.unit(150, "lb"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/odyssey/front.svg",
  7210. extra: 1782/1582 ,
  7211. bottom: 0.01
  7212. }
  7213. },
  7214. side: {
  7215. height: math.unit(5.6, "feet"),
  7216. weight: math.unit(140, "lb"),
  7217. name: "Side",
  7218. image: {
  7219. source: "./media/characters/odyssey/side.svg",
  7220. extra: 6462/5700
  7221. }
  7222. },
  7223. },
  7224. [
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(5 + 4/12, "feet")
  7228. },
  7229. {
  7230. name: "Macro",
  7231. height: math.unit(1, "km")
  7232. },
  7233. {
  7234. name: "Megamacro",
  7235. height: math.unit(3000, "km")
  7236. },
  7237. {
  7238. name: "Gigamacro",
  7239. height: math.unit(1, "AU"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Omniversal",
  7244. height: math.unit(100e14, "lightyears")
  7245. },
  7246. ]
  7247. )
  7248. characterMakers["Mekuto"] = () => makeCharacter(
  7249. { name: "Mekuto" },
  7250. {
  7251. front: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(300, "lb"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/mekuto/front.svg",
  7257. extra: 921/832 ,
  7258. bottom: 0.03
  7259. }
  7260. },
  7261. hand: {
  7262. height: math.unit(6/10.24, "feet"),
  7263. name: "Hand",
  7264. image: {
  7265. source: "./media/characters/mekuto/hand.svg"
  7266. }
  7267. },
  7268. foot: {
  7269. height: math.unit(6/5.05, "feet"),
  7270. name: "Foot",
  7271. image: {
  7272. source: "./media/characters/mekuto/foot.svg"
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Minimicro",
  7279. height: math.unit(0.2, "inches")
  7280. },
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(1.5, "inches")
  7284. },
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(5 + 11/12, "feet"),
  7288. default: true
  7289. },
  7290. {
  7291. name: "Minimacro",
  7292. height: math.unit(17 + 9/12, "feet")
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(177.5, "feet")
  7297. },
  7298. {
  7299. name: "Megamacro",
  7300. height: math.unit(152, "miles")
  7301. },
  7302. ]
  7303. )
  7304. characterMakers["Dafydd Tomos"] = () => makeCharacter(
  7305. { name: "Dafydd Tomos" },
  7306. {
  7307. front: {
  7308. height: math.unit(6.5, "inches"),
  7309. weight: math.unit(13, "oz"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/dafydd-tomos/front.svg",
  7313. extra: 2990/2603 ,
  7314. bottom: 0.03
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(6.5, "inches"),
  7322. default: true
  7323. },
  7324. ]
  7325. )
  7326. characterMakers["Splinter"] = () => makeCharacter(
  7327. { name: "Splinter" },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(150, "lb"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/splinter/front.svg",
  7335. extra: 2990/2882 ,
  7336. bottom: 0.04
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(150, "lb"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/splinter/back.svg",
  7345. extra: 2990/2882 ,
  7346. bottom: 0.04
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(6, "feet")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(230, "meters"),
  7358. default: true
  7359. },
  7360. ]
  7361. )
  7362. characterMakers["SnowGabumon"] = () => makeCharacter(
  7363. { name: "SnowGabumon" },
  7364. {
  7365. front: {
  7366. height: math.unit(4 + 10/12, "feet"),
  7367. weight: math.unit(480, "lb"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/snow-gabumon/front.svg",
  7371. extra: 1140/963 ,
  7372. bottom: 0.058
  7373. }
  7374. },
  7375. back: {
  7376. height: math.unit(4 + 10/12, "feet"),
  7377. weight: math.unit(480, "lb"),
  7378. name: "Back",
  7379. image: {
  7380. source: "./media/characters/snow-gabumon/back.svg",
  7381. extra: 1115/962 ,
  7382. bottom: 0.041
  7383. }
  7384. },
  7385. frontUndresed: {
  7386. height: math.unit(4 + 10/12, "feet"),
  7387. weight: math.unit(480, "lb"),
  7388. name: "Front (Undressed)",
  7389. image: {
  7390. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7391. extra: 1061/960 ,
  7392. bottom: 0.045
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Micro",
  7399. height: math.unit(1, "inch")
  7400. },
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(4 + 10/12, "feet"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Macro",
  7408. height: math.unit(200, "feet")
  7409. },
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(120, "miles")
  7413. },
  7414. {
  7415. name: "Gigamacro",
  7416. height: math.unit(9800, "miles")
  7417. },
  7418. ]
  7419. )
  7420. characterMakers["Moody"] = () => makeCharacter(
  7421. { name: "Moody" },
  7422. {
  7423. front: {
  7424. height: math.unit(1.7, "meters"),
  7425. weight: math.unit(140, "lb"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/moody/front.svg",
  7429. extra: 3226/3007 ,
  7430. bottom: 0.087
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(1, "mm")
  7438. },
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(1.7, "meters"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(80, "meters")
  7447. },
  7448. {
  7449. name: "Macro+",
  7450. height: math.unit(500, "meters")
  7451. },
  7452. ]
  7453. )
  7454. characterMakers["Zyas"] = () => makeCharacter(
  7455. { name: "Zyas" },
  7456. {
  7457. front: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(150, "lb"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/zyas/front.svg",
  7463. extra: 1180/1120 ,
  7464. bottom: 0.045
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(10, "feet"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(500, "feet")
  7477. },
  7478. {
  7479. name: "Megamacro",
  7480. height: math.unit(5, "miles")
  7481. },
  7482. {
  7483. name: "Teramacro",
  7484. height: math.unit(150000, "miles")
  7485. },
  7486. ]
  7487. )
  7488. characterMakers["Cuon"] = () => makeCharacter(
  7489. { name: "Cuon" },
  7490. {
  7491. front: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(150, "lb"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/cuon/front.svg",
  7497. extra: 1390/1320 ,
  7498. bottom: 0.008
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(3, "inches")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(18 + 9/12, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(360, "feet")
  7515. },
  7516. {
  7517. name: "Megamacro",
  7518. height: math.unit(360, "miles")
  7519. },
  7520. ]
  7521. )
  7522. characterMakers["Nyanuxk"] = () => makeCharacter(
  7523. { name: "Nyanuxk" },
  7524. {
  7525. front: {
  7526. height: math.unit(2.4, "meters"),
  7527. weight: math.unit(70, "kg"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/nyanuxk/front.svg",
  7531. extra: 1172/1084 ,
  7532. bottom: 0.065
  7533. }
  7534. },
  7535. side: {
  7536. height: math.unit(2.4, "meters"),
  7537. weight: math.unit(70, "kg"),
  7538. name: "Side",
  7539. image: {
  7540. source: "./media/characters/nyanuxk/side.svg",
  7541. extra: 1190/1132 ,
  7542. bottom: 0.007
  7543. }
  7544. },
  7545. back: {
  7546. height: math.unit(2.4, "meters"),
  7547. weight: math.unit(70, "kg"),
  7548. name: "Back",
  7549. image: {
  7550. source: "./media/characters/nyanuxk/back.svg",
  7551. extra: 1200/1141 ,
  7552. bottom: 0.015
  7553. }
  7554. },
  7555. foot: {
  7556. height: math.unit(0.52, "meters"),
  7557. name: "Foot",
  7558. image: {
  7559. source: "./media/characters/nyanuxk/foot.svg"
  7560. }
  7561. },
  7562. },
  7563. [
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(2, "cm")
  7567. },
  7568. {
  7569. name: "Normal",
  7570. height: math.unit(2.4, "meters"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Smaller Macro",
  7575. height: math.unit(120, "meters")
  7576. },
  7577. {
  7578. name: "Bigger Macro",
  7579. height: math.unit(1.2, "km")
  7580. },
  7581. {
  7582. name: "Megamacro",
  7583. height: math.unit(15, "kilometers")
  7584. },
  7585. {
  7586. name: "Gigamacro",
  7587. height: math.unit(2000, "km")
  7588. },
  7589. {
  7590. name: "Teramacro",
  7591. height: math.unit(500000, "km")
  7592. },
  7593. ]
  7594. )
  7595. characterMakers["Ailbhe"] = () => makeCharacter(
  7596. { name: "Ailbhe" },
  7597. {
  7598. side: {
  7599. height: math.unit(6, "feet"),
  7600. name: "Side",
  7601. image: {
  7602. source: "./media/characters/ailbhe/side.svg",
  7603. extra: 757/464 ,
  7604. bottom: 0.041
  7605. }
  7606. },
  7607. },
  7608. [
  7609. {
  7610. name: "Normal",
  7611. height: math.unit(1.07, "meters"),
  7612. default: true
  7613. },
  7614. ]
  7615. )
  7616. characterMakers["Zevulfius"] = () => makeCharacter(
  7617. { name: "Zevulfius" },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(120, "kg"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/zevulfius/front.svg",
  7625. extra: 965/903
  7626. }
  7627. },
  7628. side: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(120, "kg"),
  7631. name: "Side",
  7632. image: {
  7633. source: "./media/characters/zevulfius/side.svg",
  7634. extra: 939/900
  7635. }
  7636. },
  7637. back: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(120, "kg"),
  7640. name: "Back",
  7641. image: {
  7642. source: "./media/characters/zevulfius/back.svg",
  7643. extra: 918/854 ,
  7644. bottom: 0.005
  7645. }
  7646. },
  7647. foot: {
  7648. height: math.unit(6/3.72, "feet"),
  7649. name: "Foot",
  7650. image: {
  7651. source: "./media/characters/zevulfius/foot.svg"
  7652. }
  7653. },
  7654. },
  7655. [
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(750, "meters")
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(20, "km"),
  7663. default: true
  7664. },
  7665. {
  7666. name: "Gigamacro",
  7667. height: math.unit(2000, "km")
  7668. },
  7669. {
  7670. name: "Teramacro",
  7671. height: math.unit(250000, "km")
  7672. },
  7673. ]
  7674. )
  7675. characterMakers["Rikes"] = () => makeCharacter(
  7676. { name: "Rikes" },
  7677. {
  7678. front: {
  7679. height: math.unit(100, "feet"),
  7680. weight: math.unit(350, "kg"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/rikes/front.svg",
  7684. extra: 1565/1483 ,
  7685. bottom: 0.017
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(100, "feet"),
  7693. default: true
  7694. },
  7695. ]
  7696. )
  7697. characterMakers["Adam Silver-Mane"] = () => makeCharacter(
  7698. { name: "Adam Silver-Mane" },
  7699. {
  7700. anthro: {
  7701. height: math.unit(8, "feet"),
  7702. weight: math.unit(120, "kg"),
  7703. name: "Anthro",
  7704. image: {
  7705. source: "./media/characters/adam-silver-mane/anthro.svg",
  7706. extra: 5743/5339 ,
  7707. bottom: 0.07
  7708. }
  7709. },
  7710. taur: {
  7711. height: math.unit(16, "feet"),
  7712. weight: math.unit(1500, "kg"),
  7713. name: "Taur",
  7714. image: {
  7715. source: "./media/characters/adam-silver-mane/taur.svg",
  7716. extra: 1713/1571 ,
  7717. bottom: 0.01
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(8, "feet")
  7725. },
  7726. {
  7727. name: "Minimacro",
  7728. height: math.unit(80, "feet")
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(800, "feet"),
  7733. default: true
  7734. },
  7735. {
  7736. name: "Megamacro",
  7737. height: math.unit(8000, "feet")
  7738. },
  7739. {
  7740. name: "Gigamacro",
  7741. height: math.unit(800, "miles")
  7742. },
  7743. {
  7744. name: "Teramacro",
  7745. height: math.unit(80000, "miles")
  7746. },
  7747. {
  7748. name: "Celestial",
  7749. height: math.unit(8e6, "miles")
  7750. },
  7751. {
  7752. name: "Star Dragon",
  7753. height: math.unit(800000, "parsecs")
  7754. },
  7755. {
  7756. name: "Godly",
  7757. height: math.unit(800, "teraparsecs")
  7758. },
  7759. ]
  7760. )
  7761. characterMakers["Ky'owin"] = () => makeCharacter(
  7762. { name: "Ky'owin" },
  7763. {
  7764. front: {
  7765. height: math.unit(6, "feet"),
  7766. weight: math.unit(150, "lb"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/ky'owin/front.svg",
  7770. extra: 3888/3068 ,
  7771. bottom: 0.015
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(6 + 8/12, "feet")
  7779. },
  7780. {
  7781. name: "Large",
  7782. height: math.unit(68, "feet")
  7783. },
  7784. {
  7785. name: "Macro",
  7786. height: math.unit(132, "feet")
  7787. },
  7788. {
  7789. name: "Macro+",
  7790. height: math.unit(340, "feet")
  7791. },
  7792. {
  7793. name: "Macro++",
  7794. height: math.unit(680, "feet"),
  7795. default: true
  7796. },
  7797. {
  7798. name: "Megamacro",
  7799. height: math.unit(1, "mile")
  7800. },
  7801. {
  7802. name: "Megamacro+",
  7803. height: math.unit(10, "miles")
  7804. },
  7805. ]
  7806. )
  7807. characterMakers["Mal"] = () => makeCharacter(
  7808. { name: "Mal" },
  7809. {
  7810. front: {
  7811. height: math.unit(4, "feet"),
  7812. weight: math.unit(50, "lb"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/mal/front.svg",
  7816. extra: 785/724 ,
  7817. bottom: 0.07
  7818. }
  7819. },
  7820. },
  7821. [
  7822. {
  7823. name: "Micro",
  7824. height: math.unit(4, "inches")
  7825. },
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(4, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(200, "feet")
  7834. },
  7835. ]
  7836. )
  7837. characterMakers["Jordan Deware"] = () => makeCharacter(
  7838. { name: "Jordan Deware" },
  7839. {
  7840. front: {
  7841. height: math.unit(6, "feet"),
  7842. weight: math.unit(150, "lb"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/jordan-deware/front.svg",
  7846. extra: 1191/1012
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Nano",
  7853. height: math.unit(0.01, "mm")
  7854. },
  7855. {
  7856. name: "Minimicro",
  7857. height: math.unit(1, "mm")
  7858. },
  7859. {
  7860. name: "Micro",
  7861. height: math.unit(0.5, "inches")
  7862. },
  7863. {
  7864. name: "Normal",
  7865. height: math.unit(4, "feet"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Minimacro",
  7870. height: math.unit(40, "meters")
  7871. },
  7872. {
  7873. name: "Small Macro",
  7874. height: math.unit(400, "meters")
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(4, "miles")
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(40, "miles")
  7883. },
  7884. {
  7885. name: "Megamacro+",
  7886. height: math.unit(400, "miles")
  7887. },
  7888. {
  7889. name: "Gigamacro",
  7890. height: math.unit(400000, "miles")
  7891. },
  7892. ]
  7893. )
  7894. characterMakers["Kimiko"] = () => makeCharacter(
  7895. { name: "Kimiko" },
  7896. {
  7897. side: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(150, "lb"),
  7900. name: "Side",
  7901. image: {
  7902. source: "./media/characters/kimiko/side.svg",
  7903. extra: 600/358
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(15, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(220, "feet")
  7916. },
  7917. {
  7918. name: "Macro+",
  7919. height: math.unit(1450, "feet")
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(11500, "feet")
  7924. },
  7925. {
  7926. name: "Gigamacro",
  7927. height: math.unit(9500, "miles")
  7928. },
  7929. {
  7930. name: "Teramacro",
  7931. height: math.unit(2208005005, "miles")
  7932. },
  7933. {
  7934. name: "Examacro",
  7935. height: math.unit(2750, "parsecs")
  7936. },
  7937. {
  7938. name: "Zettamacro",
  7939. height: math.unit(101500, "parsecs")
  7940. },
  7941. ]
  7942. )
  7943. characterMakers["Andrew Sleepy"] = () => makeCharacter(
  7944. { name: "Andrew Sleepy" },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(70, "kg"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/andrew-sleepy/front.svg"
  7952. }
  7953. },
  7954. side: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(70, "kg"),
  7957. name: "Side",
  7958. image: {
  7959. source: "./media/characters/andrew-sleepy/side.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Micro",
  7966. height: math.unit(1, "mm"),
  7967. default: true
  7968. },
  7969. ]
  7970. )
  7971. characterMakers["Judio"] = () => makeCharacter(
  7972. { name: "Judio" },
  7973. {
  7974. front: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(150, "lb"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/judio/front.svg",
  7980. extra: 1258/1110
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(5 + 6/12, "feet")
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(1000, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Megamacro",
  7996. height: math.unit(10, "miles")
  7997. },
  7998. ]
  7999. )
  8000. characterMakers["Nomaxice"] = () => makeCharacter(
  8001. { name: "Nomaxice" },
  8002. {
  8003. front: {
  8004. height: math.unit(6, "feet"),
  8005. weight: math.unit(68, "kg"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/nomaxice/front.svg",
  8009. extra: 1498/1073 ,
  8010. bottom: 0.075
  8011. }
  8012. },
  8013. foot: {
  8014. height: math.unit(1.1, "feet"),
  8015. name: "Foot",
  8016. image: {
  8017. source: "./media/characters/nomaxice/foot.svg"
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Micro",
  8024. height: math.unit(8, "cm")
  8025. },
  8026. {
  8027. name: "Norm",
  8028. height: math.unit(1.82, "m")
  8029. },
  8030. {
  8031. name: "Norm+",
  8032. height: math.unit(8.8, "feet")
  8033. },
  8034. {
  8035. name: "Big",
  8036. height: math.unit(8, "meters"),
  8037. default: true
  8038. },
  8039. {
  8040. name: "Macro",
  8041. height: math.unit(18, "meters")
  8042. },
  8043. {
  8044. name: "Macro+",
  8045. height: math.unit(88, "meters")
  8046. },
  8047. ]
  8048. )
  8049. characterMakers["Dydros"] = () => makeCharacter(
  8050. { name: "Dydros" },
  8051. {
  8052. front: {
  8053. height: math.unit(12, "feet"),
  8054. weight: math.unit(1.5, "tons"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/dydros/front.svg",
  8058. extra: 863/800 ,
  8059. bottom: 0.015
  8060. }
  8061. },
  8062. back: {
  8063. height: math.unit(12, "feet"),
  8064. weight: math.unit(1.5, "tons"),
  8065. name: "Back",
  8066. image: {
  8067. source: "./media/characters/dydros/back.svg",
  8068. extra: 900/843 ,
  8069. bottom: 0.005
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(12, "feet"),
  8077. default: true
  8078. },
  8079. ]
  8080. )
  8081. characterMakers["Riggi"] = () => makeCharacter(
  8082. { name: "Riggi" },
  8083. {
  8084. front: {
  8085. height: math.unit(6, "feet"),
  8086. weight: math.unit(100, "kg"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/riggi/front.svg",
  8090. extra: 5787/5303
  8091. }
  8092. },
  8093. hyper: {
  8094. height: math.unit(6*5/3, "feet"),
  8095. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8096. name: "Hyper",
  8097. image: {
  8098. source: "./media/characters/riggi/hyper.svg",
  8099. extra: 3595/3485
  8100. }
  8101. },
  8102. },
  8103. [
  8104. {
  8105. name: "Small Macro",
  8106. height: math.unit(50, "feet")
  8107. },
  8108. {
  8109. name: "Default",
  8110. height: math.unit(200, "feet"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Loom",
  8115. height: math.unit(10000, "feet")
  8116. },
  8117. {
  8118. name: "Cruising Altitude",
  8119. height: math.unit(30000, "feet")
  8120. },
  8121. {
  8122. name: "Megamacro",
  8123. height: math.unit(100, "miles")
  8124. },
  8125. {
  8126. name: "Continent Sized",
  8127. height: math.unit(2800, "miles")
  8128. },
  8129. {
  8130. name: "Earth Sized",
  8131. height: math.unit(8000, "miles")
  8132. },
  8133. ]
  8134. )
  8135. characterMakers["Alexi"] = () => makeCharacter(
  8136. { name: "Alexi" },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(250, "lb"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/alexi/front.svg",
  8144. extra: 3483/3291 ,
  8145. bottom: 0.04
  8146. }
  8147. },
  8148. back: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(250, "lb"),
  8151. name: "Back",
  8152. image: {
  8153. source: "./media/characters/alexi/back.svg",
  8154. extra: 3533/3356 ,
  8155. bottom: 0.021
  8156. }
  8157. },
  8158. frontTransformed: {
  8159. height: math.unit(12.5, "feet"),
  8160. weight: math.unit(4000, "lb"),
  8161. name: "Front (Transformed)",
  8162. image: {
  8163. source: "./media/characters/alexi/front-transformed.svg",
  8164. extra: 5345/5100 ,
  8165. bottom: 0.03
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(3, "meters"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Minimacro",
  8177. height: math.unit(30, "meters")
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(500, "meters")
  8182. },
  8183. {
  8184. name: "Megamacro",
  8185. height: math.unit(9000, "km")
  8186. },
  8187. {
  8188. name: "Teramacro",
  8189. height: math.unit(384000, "km")
  8190. },
  8191. ]
  8192. )
  8193. characterMakers["Kayroo"] = () => makeCharacter(
  8194. { name: "Kayroo" },
  8195. {
  8196. front: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(150, "lb"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/kayroo/front.svg",
  8202. extra: 1153/1038 ,
  8203. bottom: 0.06
  8204. }
  8205. },
  8206. foot: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(150, "lb"),
  8209. name: "Foot",
  8210. image: {
  8211. source: "./media/characters/kayroo/foot.svg"
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(8, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Minimacro",
  8223. height: math.unit(250, "feet")
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(2800, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(5200, "feet")
  8232. },
  8233. {
  8234. name: "Gigamacro",
  8235. height: math.unit(27000, "feet")
  8236. },
  8237. {
  8238. name: "Omega",
  8239. height: math.unit(45000, "feet")
  8240. },
  8241. ]
  8242. )
  8243. characterMakers["Rhys"] = () => makeCharacter(
  8244. { name: "Rhys" },
  8245. {
  8246. front: {
  8247. height: math.unit(18, "feet"),
  8248. weight: math.unit(5800, "lb"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/rhys/front.svg",
  8252. extra: 3386/3090 ,
  8253. bottom: 0.07
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(18, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Working Size",
  8265. height: math.unit(200, "feet")
  8266. },
  8267. {
  8268. name: "Demolition Size",
  8269. height: math.unit(2000, "feet")
  8270. },
  8271. {
  8272. name: "Maximum Licensed Size",
  8273. height: math.unit(5, "miles")
  8274. },
  8275. {
  8276. name: "Maximum Observed Size",
  8277. height: math.unit(10, "yottameters")
  8278. },
  8279. ]
  8280. )
  8281. characterMakers["Toto"] = () => makeCharacter(
  8282. { name: "Toto" },
  8283. {
  8284. front: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(250, "lb"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/toto/front.svg",
  8290. extra: 527 / 479,
  8291. bottom: 0.05
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Micro",
  8298. height: math.unit(3, "feet")
  8299. },
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(10, "feet")
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(150, "feet"),
  8307. default: true
  8308. },
  8309. {
  8310. name: "Megamacro",
  8311. height: math.unit(1200, "feet")
  8312. },
  8313. ]
  8314. )
  8315. characterMakers["King"] = () => makeCharacter(
  8316. { name: "King" },
  8317. {
  8318. back: {
  8319. height: math.unit(6, "feet"),
  8320. weight: math.unit(150, "lb"),
  8321. name: "Back",
  8322. image: {
  8323. source: "./media/characters/king/back.svg"
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Micro",
  8330. height: math.unit(2, "inches")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(8, "feet")
  8335. },
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(200, "feet"),
  8339. default: true
  8340. },
  8341. {
  8342. name: "Megamacro",
  8343. height: math.unit(50, "miles")
  8344. },
  8345. ]
  8346. )
  8347. characterMakers["Cordite"] = () => makeCharacter(
  8348. { name: "Cordite" },
  8349. {
  8350. anthro: {
  8351. height: math.unit(6 + 5/12, "feet"),
  8352. weight: math.unit(280, "lb"),
  8353. name: "Anthro",
  8354. image: {
  8355. source: "./media/characters/cordite/anthro.svg",
  8356. extra: 1986/1905 ,
  8357. bottom: 0.025
  8358. }
  8359. },
  8360. feral: {
  8361. height: math.unit(2, "feet"),
  8362. weight: math.unit(90, "lb"),
  8363. name: "Feral",
  8364. image: {
  8365. source: "./media/characters/cordite/feral.svg",
  8366. extra: 1260/755 ,
  8367. bottom: 0.05
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(6 + 5/12, "feet"),
  8375. default: true
  8376. },
  8377. ]
  8378. )
  8379. characterMakers["Pianostrong"] = () => makeCharacter(
  8380. { name: "Pianostrong" },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(150, "lb"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/pianostrong/front.svg",
  8388. extra: 6577/6254 ,
  8389. bottom: 0.02
  8390. }
  8391. },
  8392. side: {
  8393. height: math.unit(6, "feet"),
  8394. weight: math.unit(150, "lb"),
  8395. name: "Side",
  8396. image: {
  8397. source: "./media/characters/pianostrong/side.svg",
  8398. extra: 6106/5730
  8399. }
  8400. },
  8401. back: {
  8402. height: math.unit(6, "feet"),
  8403. weight: math.unit(150, "lb"),
  8404. name: "Back",
  8405. image: {
  8406. source: "./media/characters/pianostrong/back.svg",
  8407. extra: 6085/5733 ,
  8408. bottom: 0.01
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(100, "feet")
  8416. },
  8417. {
  8418. name: "Macro+",
  8419. height: math.unit(300, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro++",
  8424. height: math.unit(1000, "feet")
  8425. },
  8426. ]
  8427. )
  8428. characterMakers["Kona"] = () => makeCharacter(
  8429. { name: "Kona" },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(150, "lb"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/kona/front.svg",
  8437. extra: 2960/2629 ,
  8438. bottom: 0.005
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(11 + 8/12, "feet")
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(850, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Macro+",
  8454. height: math.unit(1.5, "km"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(80, "miles")
  8460. },
  8461. {
  8462. name: "Gigamacro",
  8463. height: math.unit(3500, "miles")
  8464. },
  8465. ]
  8466. )
  8467. characterMakers["Levi"] = () => makeCharacter(
  8468. { name: "Levi" },
  8469. {
  8470. side: {
  8471. height: math.unit(1.9, "meters"),
  8472. weight: math.unit(326, "kg"),
  8473. name: "Side",
  8474. image: {
  8475. source: "./media/characters/levi/side.svg",
  8476. extra: 1704/1334 ,
  8477. bottom: 0.02
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Normal",
  8484. height: math.unit(1.9, "meters"),
  8485. default: true
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(20, "meters")
  8490. },
  8491. {
  8492. name: "Macro+",
  8493. height: math.unit(200, "meters")
  8494. },
  8495. {
  8496. name: "Megamacro",
  8497. height: math.unit(2, "km")
  8498. },
  8499. {
  8500. name: "Megamacro+",
  8501. height: math.unit(20, "km")
  8502. },
  8503. {
  8504. name: "Gigamacro",
  8505. height: math.unit(2500, "km")
  8506. },
  8507. {
  8508. name: "Gigamacro+",
  8509. height: math.unit(120000, "km")
  8510. },
  8511. {
  8512. name: "Teramacro",
  8513. height: math.unit(7.77e6, "km")
  8514. },
  8515. ]
  8516. )
  8517. characterMakers["BMC"] = () => makeCharacter(
  8518. { name: "BMC" },
  8519. {
  8520. front: {
  8521. height: math.unit(6 + 4/12, "feet"),
  8522. weight: math.unit(188, "lb"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/bmc/front.svg",
  8526. extra: 1067/1022 ,
  8527. bottom: 0.047
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Human-sized",
  8534. height: math.unit(6 + 4/12, "feet")
  8535. },
  8536. {
  8537. name: "Small",
  8538. height: math.unit(250, "feet")
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(1250, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Good Day",
  8547. height: math.unit(88, "miles")
  8548. },
  8549. {
  8550. name: "Largest Measured Size",
  8551. height: math.unit(11.2e6, "lightyears")
  8552. },
  8553. ]
  8554. )
  8555. characterMakers["Sven the Kaiju"] = () => makeCharacter(
  8556. { name: "Sven the Kaiju" },
  8557. {
  8558. front: {
  8559. height: math.unit(20, "feet"),
  8560. weight: math.unit(2016, "kg"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/sven-the-kaiju/front.svg",
  8564. extra: 1479/1449 ,
  8565. bottom: 0.05
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Fairy",
  8572. height: math.unit(6, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(20, "feet"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Rampage",
  8581. height: math.unit(200, "feet")
  8582. },
  8583. {
  8584. name: "Archfey Forest Guardian",
  8585. height: math.unit(1, "mile")
  8586. },
  8587. ]
  8588. )
  8589. characterMakers["Marik"] = () => makeCharacter(
  8590. { name: "Marik" },
  8591. {
  8592. front: {
  8593. height: math.unit(4, "meters"),
  8594. weight: math.unit(2, "tons"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/marik/front.svg",
  8598. extra: 1057/1003 ,
  8599. bottom: 0.08
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(4, "meters"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(20, "meters")
  8612. },
  8613. {
  8614. name: "Megamacro",
  8615. height: math.unit(50, "km")
  8616. },
  8617. {
  8618. name: "Gigamacro",
  8619. height: math.unit(100, "km")
  8620. },
  8621. {
  8622. name: "Alpha Macro",
  8623. height: math.unit(7.88e7, "yottameters")
  8624. },
  8625. ]
  8626. )
  8627. characterMakers["Mel"] = () => makeCharacter(
  8628. { name: "Mel" },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(110, "lb"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/mel/front.svg",
  8636. extra: 736/617 ,
  8637. bottom: 0.017
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Pico",
  8644. height: math.unit(3, "pm")
  8645. },
  8646. {
  8647. name: "Nano",
  8648. height: math.unit(3, "nm")
  8649. },
  8650. {
  8651. name: "Micro",
  8652. height: math.unit(0.3, "mm"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Micro+",
  8657. height: math.unit(3, "mm")
  8658. },
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(5 + 10.5/12, "feet")
  8662. },
  8663. ]
  8664. )
  8665. characterMakers["Lykonous"] = () => makeCharacter(
  8666. { name: "Lykonous" },
  8667. {
  8668. kaiju: {
  8669. height: math.unit(1.75, "meters"),
  8670. weight: math.unit(55, "kg"),
  8671. name: "Kaiju",
  8672. image: {
  8673. source: "./media/characters/lykonous/kaiju.svg",
  8674. extra: 1055/946 ,
  8675. bottom: 0.135
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(2.5, "meters"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Kaiju Dragon",
  8687. height: math.unit(60, "meters")
  8688. },
  8689. {
  8690. name: "Mega Kaiju",
  8691. height: math.unit(120, "km")
  8692. },
  8693. {
  8694. name: "Giga Kaiju",
  8695. height: math.unit(200, "megameters")
  8696. },
  8697. {
  8698. name: "Terra Kaiju",
  8699. height: math.unit(400, "gigameters")
  8700. },
  8701. {
  8702. name: "Kaiju Dragon God",
  8703. height: math.unit(13000, "exaparsecs")
  8704. },
  8705. ]
  8706. )
  8707. characterMakers["Blü"] = () => makeCharacter(
  8708. { name: "Blü" },
  8709. {
  8710. front: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(150, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/blü/front.svg",
  8716. extra: 1883/1564 ,
  8717. bottom: 0.031
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(13, "feet"),
  8725. default: true
  8726. },
  8727. {
  8728. name: "Big Boi",
  8729. height: math.unit(150, "meters")
  8730. },
  8731. {
  8732. name: "Mini Stomper",
  8733. height: math.unit(300, "meters")
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(1000, "meters")
  8738. },
  8739. {
  8740. name: "Megamacro",
  8741. height: math.unit(11000, "meters")
  8742. },
  8743. {
  8744. name: "Gigamacro",
  8745. height: math.unit(11000, "km")
  8746. },
  8747. {
  8748. name: "Teramacro",
  8749. height: math.unit(420000, "km")
  8750. },
  8751. {
  8752. name: "Examacro",
  8753. height: math.unit(120, "parsecs")
  8754. },
  8755. {
  8756. name: "God Tho",
  8757. height: math.unit(98000000000, "parsecs")
  8758. },
  8759. ]
  8760. )
  8761. characterMakers["Scales"] = () => makeCharacter(
  8762. { name: "Scales" },
  8763. {
  8764. taurFront: {
  8765. height: math.unit(6, "feet"),
  8766. weight: math.unit(200, "lb"),
  8767. name: "Taur (Front)",
  8768. image: {
  8769. source: "./media/characters/scales/taur-front.svg",
  8770. extra: 1,
  8771. bottom: 0.05
  8772. }
  8773. },
  8774. taurBack: {
  8775. height: math.unit(6, "feet"),
  8776. weight: math.unit(200, "lb"),
  8777. name: "Taur (Back)",
  8778. image: {
  8779. source: "./media/characters/scales/taur-back.svg",
  8780. extra: 1,
  8781. bottom: 0.08
  8782. }
  8783. },
  8784. anthro: {
  8785. height: math.unit(6*7/12, "feet"),
  8786. weight: math.unit(100, "lb"),
  8787. name: "Anthro",
  8788. image: {
  8789. source: "./media/characters/scales/anthro.svg",
  8790. extra: 1,
  8791. bottom: 0.06
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(12, "feet"),
  8799. default: true
  8800. },
  8801. ]
  8802. )
  8803. characterMakers["Koragos"] = () => makeCharacter(
  8804. { name: "Koragos" },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(150, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/koragos/front.svg",
  8812. extra: 841/794 ,
  8813. bottom: 0.035
  8814. }
  8815. },
  8816. back: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(150, "lb"),
  8819. name: "Back",
  8820. image: {
  8821. source: "./media/characters/koragos/back.svg",
  8822. extra: 841/810 ,
  8823. bottom: 0.022
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(6 + 11/12, "feet"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(490, "feet")
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(10, "miles")
  8840. },
  8841. {
  8842. name: "Gigamacro",
  8843. height: math.unit(50, "miles")
  8844. },
  8845. ]
  8846. )
  8847. characterMakers["Xylrem"] = () => makeCharacter(
  8848. { name: "Xylrem" },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(250, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/xylrem/front.svg",
  8856. extra: 3323/3050 ,
  8857. bottom: 0.065
  8858. }
  8859. },
  8860. },
  8861. [
  8862. {
  8863. name: "Micro",
  8864. height: math.unit(4, "feet")
  8865. },
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(16, "feet"),
  8869. default: true
  8870. },
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(2720, "feet")
  8874. },
  8875. {
  8876. name: "Megamacro",
  8877. height: math.unit(25000, "miles")
  8878. },
  8879. ]
  8880. )
  8881. characterMakers["Ikideru"] = () => makeCharacter(
  8882. { name: "Ikideru" },
  8883. {
  8884. front: {
  8885. height: math.unit(8, "feet"),
  8886. weight: math.unit(250, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/ikideru/front.svg",
  8890. extra: 930/870 ,
  8891. bottom: 0.087
  8892. }
  8893. },
  8894. back: {
  8895. height: math.unit(8, "feet"),
  8896. weight: math.unit(250, "kg"),
  8897. name: "Back",
  8898. image: {
  8899. source: "./media/characters/ikideru/back.svg",
  8900. extra: 919/852 ,
  8901. bottom: 0.055
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Rare",
  8908. height: math.unit(8, "feet"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "Playful Loom",
  8913. height: math.unit(80, "feet")
  8914. },
  8915. {
  8916. name: "City Leaner",
  8917. height: math.unit(230, "feet")
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(2500, "feet")
  8922. },
  8923. {
  8924. name: "Gigamacro",
  8925. height: math.unit(26400, "feet")
  8926. },
  8927. {
  8928. name: "Tectonic Shifter",
  8929. height: math.unit(1.7, "megameters")
  8930. },
  8931. {
  8932. name: "Planet Carer",
  8933. height: math.unit(21, "megameters")
  8934. },
  8935. {
  8936. name: "God",
  8937. height: math.unit(11157.22, "parsecs")
  8938. },
  8939. ]
  8940. )
  8941. characterMakers["Neo"] = () => makeCharacter(
  8942. { name: "Neo" },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(120, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/neo/front.svg"
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Micro",
  8956. height: math.unit(2, "inches"),
  8957. default: true
  8958. },
  8959. {
  8960. name: "Human Size",
  8961. height: math.unit(5 + 8/12, "feet")
  8962. },
  8963. ]
  8964. )
  8965. characterMakers["Chauncey (Chantz)"] = () => makeCharacter(
  8966. { name: "Chauncey (Chantz)" },
  8967. {
  8968. front: {
  8969. height: math.unit(13 + 10/12, "feet"),
  8970. weight: math.unit(5320, "lb"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/chauncey-chantz/front.svg",
  8974. extra: 1587/1435 ,
  8975. bottom: 0.02
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(13 + 10/12, "feet"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(45, "feet")
  8988. },
  8989. {
  8990. name: "Megamacro",
  8991. height: math.unit(250, "miles")
  8992. },
  8993. {
  8994. name: "Planetary",
  8995. height: math.unit(10000, "miles")
  8996. },
  8997. {
  8998. name: "Galactic",
  8999. height: math.unit(40000, "parsecs")
  9000. },
  9001. {
  9002. name: "Universal",
  9003. height: math.unit(1, "yottameter")
  9004. },
  9005. ]
  9006. )
  9007. characterMakers["Epifox"] = () => makeCharacter(
  9008. { name: "Epifox" },
  9009. {
  9010. front: {
  9011. height: math.unit(6, "feet"),
  9012. weight: math.unit(150, "lb"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/epifox/front.svg",
  9016. extra: 1,
  9017. bottom: 0.075
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Micro",
  9024. height: math.unit(6, "inches")
  9025. },
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(12, "feet"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(3810, "feet")
  9034. },
  9035. {
  9036. name: "Megamacro",
  9037. height: math.unit(500, "miles")
  9038. },
  9039. ]
  9040. )
  9041. characterMakers["Colin T."] = () => makeCharacter(
  9042. { name: "Colin T." },
  9043. {
  9044. front: {
  9045. height: math.unit(1.8796, "m"),
  9046. weight: math.unit(230, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/colin-t/front.svg",
  9050. extra: 1272/1193 ,
  9051. bottom: 0.07
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Micro",
  9058. height: math.unit(0.571, "meters")
  9059. },
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(1.8796, "meters"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Tall",
  9067. height: math.unit(4, "meters")
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(67.241, "meters")
  9072. },
  9073. {
  9074. name: "Megamacro",
  9075. height: math.unit(371.856, "meters")
  9076. },
  9077. {
  9078. name: "Planetary",
  9079. height: math.unit(12631.5689, "km")
  9080. },
  9081. ]
  9082. )
  9083. characterMakers["Matvei"] = () => makeCharacter(
  9084. { name: "Matvei" },
  9085. {
  9086. front: {
  9087. height: math.unit(1.85, "meters"),
  9088. weight: math.unit(80, "kg"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/matvei/front.svg",
  9092. extra: 614/594 ,
  9093. bottom: 0.01
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(1.85, "meters"),
  9101. default: true
  9102. },
  9103. ]
  9104. )
  9105. characterMakers["Quincy"] = () => makeCharacter(
  9106. { name: "Quincy" },
  9107. {
  9108. front: {
  9109. height: math.unit(5 + 9/12, "feet"),
  9110. weight: math.unit(70, "lb"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/quincy/front.svg",
  9114. extra: 3041/2751
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(5 + 9/12, "feet"),
  9119. weight: math.unit(70, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/quincy/back.svg",
  9123. extra: 3041/2751
  9124. }
  9125. },
  9126. flying: {
  9127. height: math.unit(5 + 4/12, "feet"),
  9128. weight: math.unit(70, "lb"),
  9129. name: "Flying",
  9130. image: {
  9131. source: "./media/characters/quincy/flying.svg",
  9132. extra: 1044/930
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Micro",
  9139. height: math.unit(3, "cm")
  9140. },
  9141. {
  9142. name: "Normal",
  9143. height: math.unit(5 + 9/12, "feet")
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(200, "meters"),
  9148. default: true
  9149. },
  9150. {
  9151. name: "Megamacro",
  9152. height: math.unit(1000, "meters")
  9153. },
  9154. ]
  9155. )
  9156. characterMakers["Vanrel"] = () => makeCharacter(
  9157. { name: "Vanrel" },
  9158. {
  9159. front: {
  9160. height: math.unit(4 + 7/12, "feet"),
  9161. weight: math.unit(150, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/vanrel/front.svg",
  9165. extra: 1,
  9166. bottom: 0.02
  9167. }
  9168. },
  9169. side: {
  9170. height: math.unit(4 + 7/12, "feet"),
  9171. weight: math.unit(150, "lb"),
  9172. name: "Side",
  9173. image: {
  9174. source: "./media/characters/vanrel/side.svg",
  9175. extra: 1,
  9176. bottom: 0.025
  9177. }
  9178. },
  9179. tome: {
  9180. height: math.unit(1.35, "feet"),
  9181. weight: math.unit(10, "lb"),
  9182. name: "Vanrel's Tome",
  9183. rename: true,
  9184. image: {
  9185. source: "./media/characters/vanrel/tome.svg"
  9186. }
  9187. },
  9188. beans: {
  9189. height: math.unit(0.89, "feet"),
  9190. name: "Beans",
  9191. image: {
  9192. source: "./media/characters/vanrel/beans.svg"
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(4 + 7/12, "feet"),
  9200. default: true
  9201. },
  9202. ]
  9203. )
  9204. characterMakers["Kuiper Vanrel"] = () => makeCharacter(
  9205. { name: "Kuiper Vanrel" },
  9206. {
  9207. front: {
  9208. height: math.unit(7 + 5/12, "feet"),
  9209. weight: math.unit(150, "lb"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/kuiper-vanrel/front.svg",
  9213. extra: 1118/1068 ,
  9214. bottom: 0.09
  9215. }
  9216. },
  9217. foot: {
  9218. height: math.unit(0.55, "meters"),
  9219. name: "Foot",
  9220. image: {
  9221. source: "./media/characters/kuiper-vanrel/foot.svg",
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(7 + 5/12, "feet"),
  9229. default: true
  9230. },
  9231. ]
  9232. )
  9233. characterMakers["Keset Vanrel"] = () => makeCharacter(
  9234. { name: "Keset Vanrel" },
  9235. {
  9236. front: {
  9237. height: math.unit(8 + 5/12, "feet"),
  9238. weight: math.unit(150, "lb"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/keset-vanrel/front.svg",
  9242. extra: 1150/1084 ,
  9243. bottom: 0.05
  9244. }
  9245. },
  9246. hand: {
  9247. height: math.unit(0.6, "meters"),
  9248. name: "Hand",
  9249. image: {
  9250. source: "./media/characters/keset-vanrel/hand.svg"
  9251. }
  9252. },
  9253. foot: {
  9254. height: math.unit(0.94978, "meters"),
  9255. name: "Foot",
  9256. image: {
  9257. source: "./media/characters/keset-vanrel/foot.svg"
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(8 + 5/12, "feet"),
  9265. default: true
  9266. },
  9267. ]
  9268. )
  9269. characterMakers["Neos"] = () => makeCharacter(
  9270. { name: "Neos" },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(150, "lb"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/neos/front.svg",
  9278. extra: 1696/992 ,
  9279. bottom: 0.14
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Normal",
  9286. height: math.unit(54, "cm"),
  9287. default: true
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(100, "m")
  9292. },
  9293. {
  9294. name: "Megamacro",
  9295. height: math.unit(10, "km")
  9296. },
  9297. {
  9298. name: "Megamacro+",
  9299. height: math.unit(100, "km")
  9300. },
  9301. {
  9302. name: "Gigamacro",
  9303. height: math.unit(100, "Mm")
  9304. },
  9305. {
  9306. name: "Teramacro",
  9307. height: math.unit(100, "Gm")
  9308. },
  9309. {
  9310. name: "Examacro",
  9311. height: math.unit(100, "Em")
  9312. },
  9313. {
  9314. name: "Godly",
  9315. height: math.unit(10000, "Ym")
  9316. },
  9317. {
  9318. name: "Beyond Godly",
  9319. height: math.unit(10000000, "Ym")
  9320. },
  9321. ]
  9322. )
  9323. characterMakers["Sammy Mouse"] = () => makeCharacter(
  9324. { name: "Sammy Mouse" },
  9325. {
  9326. feminine: {
  9327. height: math.unit(5, "feet"),
  9328. weight: math.unit(100, "lb"),
  9329. name: "Feminine",
  9330. image: {
  9331. source: "./media/characters/sammy-mouse/feminine.svg",
  9332. extra: 2526/2425 ,
  9333. bottom: 0.123
  9334. }
  9335. },
  9336. masculine: {
  9337. height: math.unit(5, "feet"),
  9338. weight: math.unit(100, "lb"),
  9339. name: "Masculine",
  9340. image: {
  9341. source: "./media/characters/sammy-mouse/masculine.svg",
  9342. extra: 2526/2425 ,
  9343. bottom: 0.123
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Micro",
  9350. height: math.unit(5, "inches")
  9351. },
  9352. {
  9353. name: "Normal",
  9354. height: math.unit(5, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(60, "feet")
  9360. },
  9361. ]
  9362. )
  9363. characterMakers["Kole"] = () => makeCharacter(
  9364. { name: "Kole" },
  9365. {
  9366. front: {
  9367. height: math.unit(4, "feet"),
  9368. weight: math.unit(50, "lb"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/kole/front.svg",
  9372. extra: 1423/1303 ,
  9373. bottom: 0.025
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(4, "feet"),
  9378. weight: math.unit(50, "lb"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/kole/back.svg",
  9382. extra: 1426/1280 ,
  9383. bottom: 0.02
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(4, "feet"),
  9391. default: true
  9392. },
  9393. ]
  9394. )
  9395. characterMakers["Rufran"] = () => makeCharacter(
  9396. { name: "Rufran" },
  9397. {
  9398. front: {
  9399. height: math.unit(2 + 6/12, "feet"),
  9400. weight: math.unit(20, "lb"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/rufran/front.svg",
  9404. extra: 2041/1839 ,
  9405. bottom: 0.055
  9406. }
  9407. },
  9408. back: {
  9409. height: math.unit(2 + 6/12, "feet"),
  9410. weight: math.unit(20, "lb"),
  9411. name: "Back",
  9412. image: {
  9413. source: "./media/characters/rufran/back.svg",
  9414. extra: 2054/1839 ,
  9415. bottom: 0.01
  9416. }
  9417. },
  9418. hand: {
  9419. height: math.unit(0.2166, "meters"),
  9420. name: "Hand",
  9421. image: {
  9422. source: "./media/characters/rufran/hand.svg"
  9423. }
  9424. },
  9425. foot: {
  9426. height: math.unit(0.185, "meters"),
  9427. name: "Foot",
  9428. image: {
  9429. source: "./media/characters/rufran/foot.svg"
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(1, "inch")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(2 + 6/12, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Big",
  9445. height: math.unit(60, "feet")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(325, "feet")
  9450. },
  9451. ]
  9452. )
  9453. characterMakers["Chip"] = () => makeCharacter(
  9454. { name: "Chip" },
  9455. {
  9456. front: {
  9457. height: math.unit(0.3, "meters"),
  9458. weight: math.unit(3.5, "kg"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/chip/front.svg",
  9462. extra: 748/674
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Micro",
  9469. height: math.unit(1, "inch"),
  9470. default: true
  9471. },
  9472. ]
  9473. )
  9474. characterMakers["Torvid"] = () => makeCharacter(
  9475. { name: "Torvid" },
  9476. {
  9477. side: {
  9478. height: math.unit(2.3, "meters"),
  9479. weight: math.unit(3500, "lb"),
  9480. name: "Side",
  9481. image: {
  9482. source: "./media/characters/torvid/side.svg",
  9483. extra: 1972/722 ,
  9484. bottom: 0.035
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(2.3, "meters"),
  9492. default: true
  9493. },
  9494. ]
  9495. )
  9496. characterMakers["Susan"] = () => makeCharacter(
  9497. { name: "Susan" },
  9498. {
  9499. front: {
  9500. height: math.unit(2, "meters"),
  9501. weight: math.unit(150.5, "kg"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/susan/front.svg",
  9505. extra: 693/635 ,
  9506. bottom: 0.05
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Megamacro",
  9513. height: math.unit(505, "miles"),
  9514. default: true
  9515. },
  9516. ]
  9517. )
  9518. characterMakers["Raindrops"] = () => makeCharacter(
  9519. { name: "Raindrops" },
  9520. {
  9521. front: {
  9522. height: math.unit(6, "feet"),
  9523. weight: math.unit(150, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/raindrops/front.svg",
  9527. extra: 2655/2461 ,
  9528. bottom: 0.02
  9529. }
  9530. },
  9531. back: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(150, "lb"),
  9534. name: "Back",
  9535. image: {
  9536. source: "./media/characters/raindrops/back.svg",
  9537. extra: 2574/2400 ,
  9538. bottom: 0.03
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(6, "inches")
  9546. },
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(6 + 2/12, "feet")
  9550. },
  9551. {
  9552. name: "Macro",
  9553. height: math.unit(131, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(15, "miles")
  9559. },
  9560. {
  9561. name: "Gigamacro",
  9562. height: math.unit(4000, "miles")
  9563. },
  9564. {
  9565. name: "Teramacro",
  9566. height: math.unit(315000, "miles")
  9567. },
  9568. ]
  9569. )
  9570. characterMakers["Tezwa"] = () => makeCharacter(
  9571. { name: "Tezwa" },
  9572. {
  9573. front: {
  9574. height: math.unit(2.794, "meters"),
  9575. weight: math.unit(325, "kg"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/tezwa/front.svg",
  9579. extra: 2083/1906 ,
  9580. bottom: 0.031
  9581. }
  9582. },
  9583. foot: {
  9584. height: math.unit(0.687, "meters"),
  9585. name: "Foot",
  9586. image: {
  9587. source: "./media/characters/tezwa/foot.svg"
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(9 + 2/12, "feet"),
  9595. default: true
  9596. },
  9597. ]
  9598. )
  9599. characterMakers["Typhus"] = () => makeCharacter(
  9600. { name: "Typhus" },
  9601. {
  9602. front: {
  9603. height: math.unit(58, "feet"),
  9604. weight: math.unit(89000, "lb"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/typhus/front.svg",
  9608. extra: 816/800 ,
  9609. bottom: 0.065
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(58, "feet"),
  9617. default: true
  9618. },
  9619. ]
  9620. )
  9621. characterMakers["Lyra Von Wulf"] = () => makeCharacter(
  9622. { name: "Lyra Von Wulf" },
  9623. {
  9624. front: {
  9625. height: math.unit(12, "feet"),
  9626. weight: math.unit(6, "tonnes"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/lyra-von-wulf/front.svg",
  9630. extra: 1,
  9631. bottom: 0.10
  9632. }
  9633. },
  9634. frontMecha: {
  9635. height: math.unit(12, "feet"),
  9636. weight: math.unit(12, "tonnes"),
  9637. name: "Front (Mecha)",
  9638. image: {
  9639. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  9640. extra: 1,
  9641. bottom: 0.042
  9642. }
  9643. },
  9644. maw: {
  9645. height: math.unit(2.2, "feet"),
  9646. name: "Maw",
  9647. image: {
  9648. source: "./media/characters/lyra-von-wulf/maw.svg"
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(12, "feet"),
  9656. default: true
  9657. },
  9658. {
  9659. name: "Classic",
  9660. height: math.unit(50, "feet")
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(500, "feet")
  9665. },
  9666. {
  9667. name: "Megamacro",
  9668. height: math.unit(1, "mile")
  9669. },
  9670. {
  9671. name: "Gigamacro",
  9672. height: math.unit(400, "miles")
  9673. },
  9674. {
  9675. name: "Teramacro",
  9676. height: math.unit(22000, "miles")
  9677. },
  9678. {
  9679. name: "Solarmacro",
  9680. height: math.unit(8600000, "miles")
  9681. },
  9682. {
  9683. name: "Galactic",
  9684. height: math.unit(1057000, "lightyears")
  9685. },
  9686. ]
  9687. )
  9688. characterMakers["Dixon"] = () => makeCharacter(
  9689. { name: "Dixon" },
  9690. {
  9691. front: {
  9692. height: math.unit(6 + 10/12, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/dixon/front.svg",
  9697. extra: 3361/3209 ,
  9698. bottom: 0.01
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Normal",
  9705. height: math.unit(6 + 10/12, "feet"),
  9706. default: true
  9707. },
  9708. {
  9709. name: "Big",
  9710. height: math.unit(12, "meters")
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(500, "meters")
  9715. },
  9716. {
  9717. name: "Megamacro",
  9718. height: math.unit(2, "km")
  9719. },
  9720. ]
  9721. )
  9722. characterMakers["Kauko"] = () => makeCharacter(
  9723. { name: "Kauko" },
  9724. {
  9725. front: {
  9726. height: math.unit(185, "cm"),
  9727. weight: math.unit(68, "kg"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/kauko/front.svg",
  9731. extra: 1455/1421 ,
  9732. bottom: 0.03
  9733. }
  9734. },
  9735. back: {
  9736. height: math.unit(185, "cm"),
  9737. weight: math.unit(68, "kg"),
  9738. name: "Back",
  9739. image: {
  9740. source: "./media/characters/kauko/back.svg",
  9741. extra: 1455/1421 ,
  9742. bottom: 0.004
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(185, "cm"),
  9750. default: true
  9751. },
  9752. ]
  9753. )
  9754. characterMakers["Varg"] = () => makeCharacter(
  9755. { name: "Varg" },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(150, "kg"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/varg/front.svg",
  9763. extra: 1108/1018 ,
  9764. bottom: 0.0375
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(5, "meters")
  9772. },
  9773. {
  9774. name: "Gigamacro",
  9775. height: math.unit(211, "km"),
  9776. default: true
  9777. },
  9778. ]
  9779. )
  9780. characterMakers["Dayza"] = () => makeCharacter(
  9781. { name: "Dayza" },
  9782. {
  9783. front: {
  9784. height: math.unit(7 + 7/12, "feet"),
  9785. weight: math.unit(267, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/dayza/front.svg",
  9789. extra: 1262/1200 ,
  9790. bottom: 0.035
  9791. }
  9792. },
  9793. side: {
  9794. height: math.unit(7 + 7/12, "feet"),
  9795. weight: math.unit(267, "lb"),
  9796. name: "Side",
  9797. image: {
  9798. source: "./media/characters/dayza/side.svg",
  9799. extra: 1295/1245 ,
  9800. bottom: 0.05
  9801. }
  9802. },
  9803. back: {
  9804. height: math.unit(7 + 7/12, "feet"),
  9805. weight: math.unit(267, "lb"),
  9806. name: "Back",
  9807. image: {
  9808. source: "./media/characters/dayza/back.svg",
  9809. extra: 1241/1170
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(7 + 7/12, "feet"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(155, "feet")
  9822. },
  9823. ]
  9824. )
  9825. characterMakers["Xanthos"] = () => makeCharacter(
  9826. { name: "Xanthos" },
  9827. {
  9828. front: {
  9829. height: math.unit(6 + 5/12, "feet"),
  9830. weight: math.unit(160, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/xanthos/front.svg",
  9834. extra: 1,
  9835. bottom: 0.04
  9836. }
  9837. },
  9838. back: {
  9839. height: math.unit(6 + 5/12, "feet"),
  9840. weight: math.unit(160, "lb"),
  9841. name: "Back",
  9842. image: {
  9843. source: "./media/characters/xanthos/back.svg",
  9844. extra: 1,
  9845. bottom: 0.03
  9846. }
  9847. },
  9848. hand: {
  9849. height: math.unit(0.928, "feet"),
  9850. name: "Hand",
  9851. image: {
  9852. source: "./media/characters/xanthos/hand.svg"
  9853. }
  9854. },
  9855. foot: {
  9856. height: math.unit(1.286, "feet"),
  9857. name: "Foot",
  9858. image: {
  9859. source: "./media/characters/xanthos/foot.svg"
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(6 + 5/12, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Normal+",
  9871. height: math.unit(6, "meters")
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(40, "feet")
  9876. },
  9877. {
  9878. name: "Macro+",
  9879. height: math.unit(200, "meters")
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(20, "km")
  9884. },
  9885. {
  9886. name: "Megamacro+",
  9887. height: math.unit(100, "km")
  9888. },
  9889. ]
  9890. )
  9891. characterMakers["Grynn"] = () => makeCharacter(
  9892. { name: "Grynn" },
  9893. {
  9894. front: {
  9895. height: math.unit(6 + 3/12, "feet"),
  9896. weight: math.unit(215, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/grynn/front.svg",
  9900. extra: 4627/4209 ,
  9901. bottom: 0.047
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Micro",
  9908. height: math.unit(6, "inches")
  9909. },
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(6 + 3/12, "feet"),
  9913. default: true
  9914. },
  9915. {
  9916. name: "Big",
  9917. height: math.unit(104, "feet")
  9918. },
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(944, "feet")
  9922. },
  9923. {
  9924. name: "Macro+",
  9925. height: math.unit(9480, "feet")
  9926. },
  9927. {
  9928. name: "Megamacro",
  9929. height: math.unit(78752, "feet")
  9930. },
  9931. {
  9932. name: "Megamacro+",
  9933. height: math.unit(630128, "feet")
  9934. },
  9935. {
  9936. name: "Megamacro++",
  9937. height: math.unit(3150695, "feet")
  9938. },
  9939. ]
  9940. )
  9941. characterMakers["Mocha Aura"] = () => makeCharacter(
  9942. { name: "Mocha Aura" },
  9943. {
  9944. front: {
  9945. height: math.unit(7 + 5/12, "feet"),
  9946. weight: math.unit(450, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/mocha-aura/front.svg",
  9950. extra: 1907/1817 ,
  9951. bottom: 0.04
  9952. }
  9953. },
  9954. back: {
  9955. height: math.unit(7 + 5/12, "feet"),
  9956. weight: math.unit(450, "lb"),
  9957. name: "Back",
  9958. image: {
  9959. source: "./media/characters/mocha-aura/back.svg",
  9960. extra: 1900/1825 ,
  9961. bottom: 0.045
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Nano",
  9968. height: math.unit(1, "nm")
  9969. },
  9970. {
  9971. name: "Megamicro",
  9972. height: math.unit(1, "mm")
  9973. },
  9974. {
  9975. name: "Micro",
  9976. height: math.unit(3, "inches")
  9977. },
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(7 + 5/12, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(30, "feet")
  9986. },
  9987. {
  9988. name: "Megamacro",
  9989. height: math.unit(3500, "feet")
  9990. },
  9991. {
  9992. name: "Teramacro",
  9993. height: math.unit(500000, "miles")
  9994. },
  9995. {
  9996. name: "Petamacro",
  9997. height: math.unit(50000000000000000 , "parsecs")
  9998. },
  9999. ]
  10000. )
  10001. characterMakers["Ilisha Devya"] = () => makeCharacter(
  10002. { name: "Ilisha Devya" },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(150, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/ilisha-devya/front.svg",
  10010. extra: 1,
  10011. bottom: 0.175
  10012. }
  10013. },
  10014. back: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(150, "lb"),
  10017. name: "Back",
  10018. image: {
  10019. source: "./media/characters/ilisha-devya/back.svg",
  10020. extra: 1,
  10021. bottom: 0.015
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(500, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Megamacro",
  10033. height: math.unit(10, "miles")
  10034. },
  10035. {
  10036. name: "Gigamacro",
  10037. height: math.unit(100000, "miles")
  10038. },
  10039. {
  10040. name: "Examacro",
  10041. height: math.unit(1e9, "lightyears")
  10042. },
  10043. {
  10044. name: "Omniversal",
  10045. height: math.unit(1e33, "lightyears")
  10046. },
  10047. {
  10048. name: "Beyond Infinite",
  10049. height: math.unit(1e100, "lightyears")
  10050. },
  10051. ]
  10052. )
  10053. characterMakers["Mira"] = () => makeCharacter(
  10054. { name: "Mira" },
  10055. {
  10056. Side: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(150, "lb"),
  10059. name: "Side",
  10060. image: {
  10061. source: "./media/characters/mira/side.svg",
  10062. extra: 900/799 ,
  10063. bottom: 0.02
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Human Size",
  10070. height: math.unit(6, "feet")
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(100, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(10, "miles")
  10080. },
  10081. {
  10082. name: "Gigamacro",
  10083. height: math.unit(25000, "miles")
  10084. },
  10085. {
  10086. name: "Teramacro",
  10087. height: math.unit(300, "AU")
  10088. },
  10089. {
  10090. name: "Full Size",
  10091. height: math.unit(4.5e10, "lightyears")
  10092. },
  10093. ]
  10094. )
  10095. characterMakers["Holly"] = () => makeCharacter(
  10096. { name: "Holly" },
  10097. {
  10098. front: {
  10099. height: math.unit(6, "feet"),
  10100. weight: math.unit(150, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/holly/front.svg",
  10104. extra: 639/606
  10105. }
  10106. },
  10107. back: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(150, "lb"),
  10110. name: "Back",
  10111. image: {
  10112. source: "./media/characters/holly/back.svg",
  10113. extra: 623/598
  10114. }
  10115. },
  10116. frontWorking: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(150, "lb"),
  10119. name: "Front (Working)",
  10120. image: {
  10121. source: "./media/characters/holly/front-working.svg",
  10122. extra: 607/577 ,
  10123. bottom: 0.048
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Normal",
  10130. height: math.unit(12 + 3/12, "feet"),
  10131. default: true
  10132. },
  10133. ]
  10134. )
  10135. characterMakers["Porter"] = () => makeCharacter(
  10136. { name: "Porter" },
  10137. {
  10138. front: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(150, "lb"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/porter/front.svg",
  10144. extra: 1,
  10145. bottom: 0.01
  10146. }
  10147. },
  10148. frontRobes: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(150, "lb"),
  10151. name: "Front (Robes)",
  10152. image: {
  10153. source: "./media/characters/porter/front-robes.svg",
  10154. extra: 1.01 ,
  10155. bottom: 0.01
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(11 + 9/12, "feet"),
  10163. default: true
  10164. },
  10165. ]
  10166. )
  10167. characterMakers["Lucy"] = () => makeCharacter(
  10168. { name: "Lucy" },
  10169. {
  10170. legendary: {
  10171. height: math.unit(6, "feet"),
  10172. weight: math.unit(150, "lb"),
  10173. name: "Legendary",
  10174. image: {
  10175. source: "./media/characters/lucy/legendary.svg",
  10176. extra: 1355/1100 ,
  10177. bottom: 0.045
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Legendary",
  10184. height: math.unit(86882*2, "miles"),
  10185. default: true
  10186. },
  10187. ]
  10188. )
  10189. characterMakers["Drusilla"] = () => makeCharacter(
  10190. { name: "Drusilla" },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/drusilla/front.svg",
  10198. extra: 678/635 ,
  10199. bottom: 0.03
  10200. }
  10201. },
  10202. back: {
  10203. height: math.unit(6, "feet"),
  10204. weight: math.unit(150, "lb"),
  10205. name: "Back",
  10206. image: {
  10207. source: "./media/characters/drusilla/back.svg",
  10208. extra: 678/635 ,
  10209. bottom: 0.005
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Macro",
  10216. height: math.unit(100, "feet")
  10217. },
  10218. {
  10219. name: "Canon Height",
  10220. height: math.unit(2000, "feet"),
  10221. default: true
  10222. },
  10223. ]
  10224. )
  10225. characterMakers["Renard Thatch"] = () => makeCharacter(
  10226. { name: "Renard Thatch" },
  10227. {
  10228. front: {
  10229. height: math.unit(6, "feet"),
  10230. weight: math.unit(180, "lb"),
  10231. name: "Front",
  10232. image: {
  10233. source: "./media/characters/renard-thatch/front.svg",
  10234. extra: 2411/2275 ,
  10235. bottom: 0.01
  10236. }
  10237. },
  10238. frontPosing: {
  10239. height: math.unit(6, "feet"),
  10240. weight: math.unit(180, "lb"),
  10241. name: "Front (Posing)",
  10242. image: {
  10243. source: "./media/characters/renard-thatch/front-posing.svg",
  10244. extra: 2381/2261 ,
  10245. bottom: 0.01
  10246. }
  10247. },
  10248. back: {
  10249. height: math.unit(6, "feet"),
  10250. weight: math.unit(180, "lb"),
  10251. name: "Back",
  10252. image: {
  10253. source: "./media/characters/renard-thatch/back.svg",
  10254. extra: 2428/2288
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(3, "inches")
  10262. },
  10263. {
  10264. name: "Default",
  10265. height: math.unit(6, "feet"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(75, "feet")
  10271. },
  10272. ]
  10273. )
  10274. characterMakers["Sekvra"] = () => makeCharacter(
  10275. { name: "Sekvra" },
  10276. {
  10277. front: {
  10278. height: math.unit(1450, "feet"),
  10279. weight: math.unit(1.21e6, "tons"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/sekvra/front.svg",
  10283. extra: 1,
  10284. bottom: 0.03
  10285. }
  10286. },
  10287. frontClothed: {
  10288. height: math.unit(1450, "feet"),
  10289. weight: math.unit(1.21e6, "tons"),
  10290. name: "Front (Clothed)",
  10291. image: {
  10292. source: "./media/characters/sekvra/front-clothed.svg",
  10293. extra: 1,
  10294. bottom: 0.03
  10295. }
  10296. },
  10297. side: {
  10298. height: math.unit(1450, "feet"),
  10299. weight: math.unit(1.21e6, "tons"),
  10300. name: "Side",
  10301. image: {
  10302. source: "./media/characters/sekvra/side.svg",
  10303. extra: 1,
  10304. bottom: 0.025
  10305. }
  10306. },
  10307. back: {
  10308. height: math.unit(1450, "feet"),
  10309. weight: math.unit(1.21e6, "tons"),
  10310. name: "Back",
  10311. image: {
  10312. source: "./media/characters/sekvra/back.svg",
  10313. extra: 1,
  10314. bottom: 0.005
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Macro",
  10321. height: math.unit(1450, "feet"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Megamacro",
  10326. height: math.unit(15000, "feet")
  10327. },
  10328. ]
  10329. )
  10330. characterMakers["Carmine"] = () => makeCharacter(
  10331. { name: "Carmine" },
  10332. {
  10333. front: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(150, "lb"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/carmine/front.svg",
  10339. extra: 1,
  10340. bottom: 0.035
  10341. }
  10342. },
  10343. frontArmor: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(150, "lb"),
  10346. name: "Front (Armor)",
  10347. image: {
  10348. source: "./media/characters/carmine/front-armor.svg",
  10349. extra: 1,
  10350. bottom: 0.035
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Large",
  10357. height: math.unit(1, "mile")
  10358. },
  10359. {
  10360. name: "Huge",
  10361. height: math.unit(40, "miles"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Colossal",
  10366. height: math.unit(2500, "miles")
  10367. },
  10368. ]
  10369. )
  10370. characterMakers["Elyssia"] = () => makeCharacter(
  10371. { name: "Elyssia" },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/elyssia/front.svg",
  10379. extra: 2201/2035 ,
  10380. bottom: 0.05
  10381. }
  10382. },
  10383. frontClothed: {
  10384. height: math.unit(6, "feet"),
  10385. weight: math.unit(150, "lb"),
  10386. name: "Front (Clothed)",
  10387. image: {
  10388. source: "./media/characters/elyssia/front-clothed.svg",
  10389. extra: 2201/2035 ,
  10390. bottom: 0.05
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(150, "lb"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/elyssia/back.svg",
  10399. extra: 2201/2035 ,
  10400. bottom: 0.013
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Smaller",
  10407. height: math.unit(150, "feet")
  10408. },
  10409. {
  10410. name: "Standard",
  10411. height: math.unit(1400, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Distracted",
  10416. height: math.unit(15000, "feet")
  10417. },
  10418. ]
  10419. )
  10420. characterMakers["Geno Maxwell"] = () => makeCharacter(
  10421. { name: "Geno Maxwell" },
  10422. {
  10423. front: {
  10424. height: math.unit(7 + 4/12, "feet"),
  10425. weight: math.unit(500, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/geno-maxwell/front.svg",
  10429. extra: 2207/2040 ,
  10430. bottom: 0.015
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Micro",
  10437. height: math.unit(3, "inches")
  10438. },
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(7 + 4/12, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(220, "feet")
  10447. },
  10448. {
  10449. name: "Megamacro",
  10450. height: math.unit(11, "miles")
  10451. },
  10452. ]
  10453. )
  10454. characterMakers["Regena Maxwell"] = () => makeCharacter(
  10455. { name: "Regena Maxwell" },
  10456. {
  10457. front: {
  10458. height: math.unit(7 + 4/12, "feet"),
  10459. weight: math.unit(500, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/regena-maxwell/front.svg",
  10463. extra: 3115/2770 ,
  10464. bottom: 0.02
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(7 + 4/12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(220, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(11, "miles")
  10481. },
  10482. ]
  10483. )
  10484. characterMakers["XGlidingDragonX"] = () => makeCharacter(
  10485. { name: "XGlidingDragonX" },
  10486. {
  10487. front: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/x-gliding-dragon-x/front.svg",
  10493. extra: 860/690 ,
  10494. bottom: 0.03
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(1.7, "meters"),
  10502. default: true
  10503. },
  10504. ]
  10505. )
  10506. characterMakers["Quilly"] = () => makeCharacter(
  10507. { name: "Quilly" },
  10508. {
  10509. front: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(150, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/quilly/front.svg",
  10515. extra: 890/776
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Gigamacro",
  10522. height: math.unit(404090, "miles"),
  10523. default: true
  10524. },
  10525. ]
  10526. )
  10527. characterMakers["Tempest"] = () => makeCharacter(
  10528. { name: "Tempest" },
  10529. {
  10530. front: {
  10531. height: math.unit(7 + 8/12, "feet"),
  10532. weight: math.unit(350, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/tempest/front.svg",
  10536. extra: 1175/1086 ,
  10537. bottom: 0.02
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Normal",
  10544. height: math.unit(7 + 8/12, "feet"),
  10545. default: true
  10546. },
  10547. ]
  10548. )
  10549. characterMakers["Rodger"] = () => makeCharacter(
  10550. { name: "Rodger" },
  10551. {
  10552. side: {
  10553. height: math.unit(4 + 5/12, "feet"),
  10554. weight: math.unit(80, "lb"),
  10555. name: "Side",
  10556. image: {
  10557. source: "./media/characters/rodger/side.svg",
  10558. extra: 1235/1118
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Micro",
  10565. height: math.unit(1, "inch")
  10566. },
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(4 + 5/12, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(120, "feet")
  10575. },
  10576. ]
  10577. )
  10578. characterMakers["Danyel"] = () => makeCharacter(
  10579. { name: "Danyel" },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(150, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/danyel/front.svg",
  10587. extra: 1185/1123 ,
  10588. bottom: 0.05
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Shrunken",
  10595. height: math.unit(0.5, "mm")
  10596. },
  10597. {
  10598. name: "Micro",
  10599. height: math.unit(1, "mm"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Upsized",
  10604. height: math.unit(5 + 5/12, "feet")
  10605. },
  10606. ]
  10607. )
  10608. characterMakers["Vivian Bijoux"] = () => makeCharacter(
  10609. { name: "Vivian Bijoux" },
  10610. {
  10611. front: {
  10612. height: math.unit(5 + 6/12, "feet"),
  10613. weight: math.unit(200, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/vivian-bijoux/front.svg",
  10617. extra: 1,
  10618. bottom: 0.072
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(5 + 6/12, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Bad Dream",
  10630. height: math.unit(500, "feet")
  10631. },
  10632. {
  10633. name: "Nightmare",
  10634. height: math.unit(500, "miles")
  10635. },
  10636. ]
  10637. )
  10638. characterMakers["Zeta"] = () => makeCharacter(
  10639. { name: "Zeta" },
  10640. {
  10641. front: {
  10642. height: math.unit(6 + 1/12, "feet"),
  10643. weight: math.unit(260, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/zeta/front.svg",
  10647. extra: 1968/1889 ,
  10648. bottom: 0.06
  10649. }
  10650. },
  10651. back: {
  10652. height: math.unit(6 + 1/12, "feet"),
  10653. weight: math.unit(260, "lb"),
  10654. name: "Back",
  10655. image: {
  10656. source: "./media/characters/zeta/back.svg",
  10657. extra: 1944/1858 ,
  10658. bottom: 0.03
  10659. }
  10660. },
  10661. hand: {
  10662. height: math.unit(1.112, "feet"),
  10663. name: "Hand",
  10664. image: {
  10665. source: "./media/characters/zeta/hand.svg"
  10666. }
  10667. },
  10668. foot: {
  10669. height: math.unit(1.48, "feet"),
  10670. name: "Foot",
  10671. image: {
  10672. source: "./media/characters/zeta/foot.svg"
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Micro",
  10679. height: math.unit(6, "inches")
  10680. },
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(6 + 1/12, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(20, "feet")
  10689. },
  10690. ]
  10691. )
  10692. characterMakers["Jamie Larsen"] = () => makeCharacter(
  10693. { name: "Jamie Larsen" },
  10694. {
  10695. front: {
  10696. height: math.unit(6, "feet"),
  10697. weight: math.unit(150, "lb"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/jamie-larsen/front.svg",
  10701. extra: 962/933 ,
  10702. bottom: 0.02
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/jamie-larsen/back.svg",
  10711. extra: 997/946
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(28 + 7/12, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Macro+",
  10723. height: math.unit(180, "feet")
  10724. },
  10725. {
  10726. name: "Megamacro",
  10727. height: math.unit(10, "miles")
  10728. },
  10729. {
  10730. name: "Gigamacro",
  10731. height: math.unit(200000, "miles")
  10732. },
  10733. ]
  10734. )
  10735. characterMakers["Vance"] = () => makeCharacter(
  10736. { name: "Vance" },
  10737. {
  10738. front: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(120, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/vance/front.svg",
  10744. extra: 1980/1890 ,
  10745. bottom: 0.09
  10746. }
  10747. },
  10748. back: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(120, "lb"),
  10751. name: "Back",
  10752. image: {
  10753. source: "./media/characters/vance/back.svg",
  10754. extra: 2081/1994 ,
  10755. bottom: 0.014
  10756. }
  10757. },
  10758. hand: {
  10759. height: math.unit(0.88, "feet"),
  10760. name: "Hand",
  10761. image: {
  10762. source: "./media/characters/vance/hand.svg"
  10763. }
  10764. },
  10765. foot: {
  10766. height: math.unit(0.64, "feet"),
  10767. name: "Foot",
  10768. image: {
  10769. source: "./media/characters/vance/foot.svg"
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Small",
  10776. height: math.unit(90, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Macro",
  10781. height: math.unit(100, "meters")
  10782. },
  10783. {
  10784. name: "Megamacro",
  10785. height: math.unit(15, "miles")
  10786. },
  10787. ]
  10788. )
  10789. characterMakers["Xochitl"] = () => makeCharacter(
  10790. { name: "Xochitl" },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(180, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/xochitl/front.svg",
  10798. extra: 2297/2261 ,
  10799. bottom: 0.065
  10800. }
  10801. },
  10802. back: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(180, "lb"),
  10805. name: "Back",
  10806. image: {
  10807. source: "./media/characters/xochitl/back.svg",
  10808. extra: 2386/2354 ,
  10809. bottom: 0.01
  10810. }
  10811. },
  10812. foot: {
  10813. height: math.unit(6/5 * 1.15, "feet"),
  10814. weight: math.unit(150, "lb"),
  10815. name: "Foot",
  10816. image: {
  10817. source: "./media/characters/xochitl/foot.svg"
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(80, "feet")
  10825. },
  10826. {
  10827. name: "Macro+",
  10828. height: math.unit(400, "feet"),
  10829. default: true
  10830. },
  10831. {
  10832. name: "Gigamacro",
  10833. height: math.unit(80000, "miles")
  10834. },
  10835. {
  10836. name: "Gigamacro+",
  10837. height: math.unit(400000, "miles")
  10838. },
  10839. {
  10840. name: "Teramacro",
  10841. height: math.unit(300, "AU")
  10842. },
  10843. ]
  10844. )
  10845. characterMakers["Vincent"] = () => makeCharacter(
  10846. { name: "Vincent" },
  10847. {
  10848. front: {
  10849. height: math.unit(6, "feet"),
  10850. weight: math.unit(150, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/vincent/front.svg",
  10854. extra: 1130/1080 ,
  10855. bottom: 0.055
  10856. }
  10857. },
  10858. beak: {
  10859. height: math.unit(6 * 0.1, "feet"),
  10860. name: "Beak",
  10861. image: {
  10862. source: "./media/characters/vincent/beak.svg"
  10863. }
  10864. },
  10865. hand: {
  10866. height: math.unit(6 * 0.85, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Hand",
  10869. image: {
  10870. source: "./media/characters/vincent/hand.svg"
  10871. }
  10872. },
  10873. foot: {
  10874. height: math.unit(6 * 0.19, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Foot",
  10877. image: {
  10878. source: "./media/characters/vincent/foot.svg"
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Base",
  10885. height: math.unit(6 + 5/12, "feet"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Macro",
  10890. height: math.unit(300, "feet")
  10891. },
  10892. {
  10893. name: "Megamacro",
  10894. height: math.unit(2, "miles")
  10895. },
  10896. {
  10897. name: "Gigamacro",
  10898. height: math.unit(1000, "miles")
  10899. },
  10900. ]
  10901. )
  10902. characterMakers["Jay"] = () => makeCharacter(
  10903. { name: "Jay" },
  10904. {
  10905. front: {
  10906. height: math.unit(6 + 2/12, "feet"),
  10907. weight: math.unit(65, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/jay/front.svg",
  10911. extra: 1510/1430 ,
  10912. bottom: 0.042
  10913. }
  10914. },
  10915. back: {
  10916. height: math.unit(6 + 2/12, "feet"),
  10917. weight: math.unit(65, "lb"),
  10918. name: "Back",
  10919. image: {
  10920. source: "./media/characters/jay/back.svg",
  10921. extra: 1510/1430 ,
  10922. bottom: 0.025
  10923. }
  10924. },
  10925. clothed: {
  10926. height: math.unit(6 + 2/12, "feet"),
  10927. weight: math.unit(65, "lb"),
  10928. name: "Front (Clothed)",
  10929. image: {
  10930. source: "./media/characters/jay/clothed.svg",
  10931. extra: 744/699 ,
  10932. bottom: 0.043
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Micro",
  10939. height: math.unit(1, "inch")
  10940. },
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(6 + 2/12, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(1, "mile")
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(100, "miles")
  10953. },
  10954. ]
  10955. )
  10956. characterMakers["Coatl"] = () => makeCharacter(
  10957. { name: "Coatl" },
  10958. {
  10959. front: {
  10960. height: math.unit(2, "meters"),
  10961. weight: math.unit(500 , "kg"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/coatl/front.svg",
  10965. extra: 3948 / 3500 ,
  10966. bottom: 0.082
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(4, "meters")
  10974. },
  10975. {
  10976. name: "Macro",
  10977. height: math.unit(100, "meters"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Macro+",
  10982. height: math.unit(300, "meters")
  10983. },
  10984. {
  10985. name: "Megamacro",
  10986. height: math.unit(3, "gigameters")
  10987. },
  10988. {
  10989. name: "Megamacro+",
  10990. height: math.unit(300, "terameters")
  10991. },
  10992. {
  10993. name: "Megamacro++",
  10994. height: math.unit(3, "lightyears")
  10995. },
  10996. ]
  10997. )
  10998. characterMakers["Shiroryu"] = () => makeCharacter(
  10999. { name: "Shiroryu" },
  11000. {
  11001. front: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(50, "kg"),
  11004. name: "front",
  11005. image: {
  11006. source: "./media/characters/shiroryu/front.svg",
  11007. extra: 1990/1935
  11008. }
  11009. },
  11010. },
  11011. [
  11012. {
  11013. name: "Mortal Mingling",
  11014. height: math.unit(3, "meters")
  11015. },
  11016. {
  11017. name: "Kaiju-ish",
  11018. height: math.unit(250, "meters")
  11019. },
  11020. {
  11021. name: "Somewhat Godly",
  11022. height: math.unit(400, "km"),
  11023. default: true
  11024. },
  11025. {
  11026. name: "Planetary",
  11027. height: math.unit(300, "megameters")
  11028. },
  11029. {
  11030. name: "Galaxy-dwarfing",
  11031. height: math.unit(450, "kiloparsecs")
  11032. },
  11033. {
  11034. name: "Universe Eater",
  11035. height: math.unit(150, "gigaparsecs")
  11036. },
  11037. {
  11038. name: "Almost Immeasurable",
  11039. height: math.unit(1.3e266, "yottaparsecs")
  11040. },
  11041. ]
  11042. )
  11043. characterMakers["Umeko"] = () => makeCharacter(
  11044. { name: "Umeko" },
  11045. {
  11046. front: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(150, "lb"),
  11049. name: "Front",
  11050. image: {
  11051. source: "./media/characters/umeko/front.svg",
  11052. extra: 1,
  11053. bottom: 0.019
  11054. }
  11055. },
  11056. frontArmored: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(150, "lb"),
  11059. name: "Front (Armored)",
  11060. image: {
  11061. source: "./media/characters/umeko/front-armored.svg",
  11062. extra: 1,
  11063. bottom: 0.021
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(220, "feet"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Guardian Dragon",
  11075. height: math.unit(50, "miles")
  11076. },
  11077. {
  11078. name: "Cosmic",
  11079. height: math.unit(800000, "miles")
  11080. },
  11081. ]
  11082. )
  11083. characterMakers["Cassidy"] = () => makeCharacter(
  11084. { name: "Cassidy" },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/cassidy/front.svg",
  11092. extra: 1,
  11093. bottom: 0.043
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Canon Height",
  11100. height: math.unit(120, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Macro+",
  11105. height: math.unit(400, "feet")
  11106. },
  11107. {
  11108. name: "Macro++",
  11109. height: math.unit(4000, "feet")
  11110. },
  11111. {
  11112. name: "Megamacro",
  11113. height: math.unit(3, "miles")
  11114. },
  11115. ]
  11116. )
  11117. characterMakers["Isaac"] = () => makeCharacter(
  11118. { name: "Isaac" },
  11119. {
  11120. front: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(150, "lb"),
  11123. name: "Front",
  11124. image: {
  11125. source: "./media/characters/isaac/front.svg",
  11126. extra: 896/815 ,
  11127. bottom: 0.11
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Human Size",
  11134. height: math.unit(8, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(400, "feet")
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(50, "miles")
  11144. },
  11145. {
  11146. name: "Canon Height",
  11147. height: math.unit(200, "AU")
  11148. },
  11149. ]
  11150. )
  11151. characterMakers["Sleekit"] = () => makeCharacter(
  11152. { name: "Sleekit" },
  11153. {
  11154. front: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(72, "kg"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/sleekit/front.svg",
  11160. extra: 4693/4487 ,
  11161. bottom: 0.012
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Minimum Height",
  11168. height: math.unit(10, "meters")
  11169. },
  11170. {
  11171. name: "Smaller",
  11172. height: math.unit(25, "meters")
  11173. },
  11174. {
  11175. name: "Larger",
  11176. height: math.unit(38, "meters"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Maximum height",
  11181. height: math.unit(100, "meters")
  11182. },
  11183. ]
  11184. )
  11185. characterMakers["Nillia"] = () => makeCharacter(
  11186. { name: "Nillia" },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/nillia/front.svg",
  11194. extra: 2195/2037 ,
  11195. bottom: 0.005
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(6, "feet"),
  11200. weight: math.unit(150, "lb"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/nillia/back.svg",
  11204. extra: 2195/2037 ,
  11205. bottom: 0.005
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Canon Height",
  11212. height: math.unit(489, "feet"),
  11213. default: true
  11214. }
  11215. ]
  11216. )
  11217. characterMakers["Mesmyriza"] = () => makeCharacter(
  11218. { name: "Mesmyriza" },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(150, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/mesmyriza/front.svg",
  11226. extra: 2067/1784 ,
  11227. bottom: 0.035
  11228. }
  11229. },
  11230. foot: {
  11231. height: math.unit(6/(250/35), "feet"),
  11232. name: "Foot",
  11233. image: {
  11234. source: "./media/characters/mesmyriza/foot.svg"
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Macro",
  11241. height: math.unit(457, "meters"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(8, "megameters")
  11247. },
  11248. ]
  11249. )
  11250. characterMakers["Saudade"] = () => makeCharacter(
  11251. { name: "Saudade" },
  11252. {
  11253. front: {
  11254. height: math.unit(6, "feet"),
  11255. weight: math.unit(250, "lb"),
  11256. name: "Front",
  11257. image: {
  11258. source: "./media/characters/saudade/front.svg",
  11259. extra: 1172/1139 ,
  11260. bottom: 0.035
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(3, "inches")
  11268. },
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(6, "feet"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(50, "feet")
  11277. },
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(2800, "feet")
  11281. },
  11282. ]
  11283. )
  11284. characterMakers["Keireer"] = () => makeCharacter(
  11285. { name: "Keireer" },
  11286. {
  11287. front: {
  11288. height: math.unit(5 + 4/12, "feet"),
  11289. weight: math.unit(100, "lb"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/keireer/front.svg",
  11293. extra: 716/666 ,
  11294. bottom: 0.05
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(5 + 4/12, "feet"),
  11302. default: true
  11303. },
  11304. ]
  11305. )
  11306. characterMakers["Mirja"] = () => makeCharacter(
  11307. { name: "Mirja" },
  11308. {
  11309. front: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(90, "kg"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/mirja/front.svg",
  11315. extra: 1789/1683 ,
  11316. bottom: 0.05
  11317. }
  11318. },
  11319. frontDressed: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(90, "lb"),
  11322. name: "Front (Dressed)",
  11323. image: {
  11324. source: "./media/characters/mirja/front-dressed.svg",
  11325. extra: 1789/1683 ,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. back: {
  11330. height: math.unit(6, "feet"),
  11331. weight: math.unit(90, "lb"),
  11332. name: "Back",
  11333. image: {
  11334. source: "./media/characters/mirja/back.svg",
  11335. extra: 953/917 ,
  11336. bottom: 0.017
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "\"Incognito\"",
  11343. height: math.unit(3, "meters")
  11344. },
  11345. {
  11346. name: "Strolling Size",
  11347. height: math.unit(15, "km")
  11348. },
  11349. {
  11350. name: "Larger Strolling Size",
  11351. height: math.unit(400, "km")
  11352. },
  11353. {
  11354. name: "Preferred Size",
  11355. height: math.unit(5000, "km")
  11356. },
  11357. {
  11358. name: "True Size",
  11359. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11360. default: true
  11361. },
  11362. ]
  11363. )
  11364. characterMakers["Nightraver"] = () => makeCharacter(
  11365. { name: "Nightraver" },
  11366. {
  11367. front: {
  11368. height: math.unit(15, "feet"),
  11369. weight: math.unit(880, "kg"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/nightraver/front.svg",
  11373. extra: 2444/2160 ,
  11374. bottom: 0.027
  11375. }
  11376. },
  11377. back: {
  11378. height: math.unit(15, "feet"),
  11379. weight: math.unit(880, "kg"),
  11380. name: "Back",
  11381. image: {
  11382. source: "./media/characters/nightraver/back.svg",
  11383. extra: 2309/2180 ,
  11384. bottom: 0.005
  11385. }
  11386. },
  11387. sole: {
  11388. height: math.unit(2.878, "feet"),
  11389. name: "Sole",
  11390. image: {
  11391. source: "./media/characters/nightraver/sole.svg"
  11392. }
  11393. },
  11394. foot: {
  11395. height: math.unit(2.285, "feet"),
  11396. name: "Foot",
  11397. image: {
  11398. source: "./media/characters/nightraver/foot.svg"
  11399. }
  11400. },
  11401. maw: {
  11402. height: math.unit(2.67, "feet"),
  11403. name: "Maw",
  11404. image: {
  11405. source: "./media/characters/nightraver/maw.svg"
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Micro",
  11412. height: math.unit(1, "cm")
  11413. },
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(15, "feet"),
  11417. default: true
  11418. },
  11419. {
  11420. name: "Macro",
  11421. height: math.unit(300, "feet")
  11422. },
  11423. {
  11424. name: "Megamacro",
  11425. height: math.unit(300, "miles")
  11426. },
  11427. {
  11428. name: "Gigamacro",
  11429. height: math.unit(10000, "miles")
  11430. },
  11431. ]
  11432. )
  11433. characterMakers["Arc"] = () => makeCharacter(
  11434. { name: "Arc" },
  11435. {
  11436. side: {
  11437. height: math.unit(2, "inches"),
  11438. weight: math.unit(5, "grams"),
  11439. name: "Side",
  11440. image: {
  11441. source: "./media/characters/arc/side.svg"
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Micro",
  11448. height: math.unit(2, "inches"),
  11449. default: true
  11450. },
  11451. ]
  11452. )
  11453. characterMakers["Nebula Shahar"] = () => makeCharacter(
  11454. { name: "Nebula Shahar" },
  11455. {
  11456. front: {
  11457. height: math.unit(1.1938, "meters"),
  11458. weight: math.unit(54, "kg"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/nebula-shahar/front.svg",
  11462. extra: 1642/1436 ,
  11463. bottom: 0.06
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Megamicro",
  11470. height: math.unit(0.3, "mm")
  11471. },
  11472. {
  11473. name: "Micro",
  11474. height: math.unit(3, "cm")
  11475. },
  11476. {
  11477. name: "Normal",
  11478. height: math.unit(138, "cm"),
  11479. default: true
  11480. },
  11481. {
  11482. name: "Macro",
  11483. height: math.unit(30, "m")
  11484. },
  11485. ]
  11486. )
  11487. characterMakers["Shayla"] = () => makeCharacter(
  11488. { name: "Shayla" },
  11489. {
  11490. front: {
  11491. height: math.unit(5.24, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/shayla/front.svg",
  11496. extra: 1512/1414 ,
  11497. bottom: 0.01
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(5.24, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/shayla/back.svg",
  11506. extra: 1512/1414
  11507. }
  11508. },
  11509. hand: {
  11510. height: math.unit(0.7781496062992126, "feet"),
  11511. name: "Hand",
  11512. image: {
  11513. source: "./media/characters/shayla/hand.svg"
  11514. }
  11515. },
  11516. foot: {
  11517. height: math.unit(1.4206036745406823, "feet"),
  11518. name: "Foot",
  11519. image: {
  11520. source: "./media/characters/shayla/foot.svg"
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Micro",
  11527. height: math.unit(0.32, "feet")
  11528. },
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(5.24, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Macro",
  11536. height: math.unit(492.12, "feet")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(186.41, "miles")
  11541. },
  11542. ]
  11543. )
  11544. characterMakers["Pia Jr."] = () => makeCharacter(
  11545. { name: "Pia Jr." },
  11546. {
  11547. front: {
  11548. height: math.unit(2.2, "m"),
  11549. weight: math.unit(120, "kg"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/pia-jr/front.svg",
  11553. extra: 1000/970 ,
  11554. bottom: 0.035
  11555. }
  11556. },
  11557. hand: {
  11558. height: math.unit(0.759 * 7.21 / 6, "feet"),
  11559. name: "Hand",
  11560. image: {
  11561. source: "./media/characters/pia-jr/hand.svg"
  11562. }
  11563. },
  11564. paw: {
  11565. height: math.unit(1.185 * 7.21 / 6, "feet"),
  11566. name: "Paw",
  11567. image: {
  11568. source: "./media/characters/pia-jr/paw.svg"
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(1.2, "cm")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(2.2, "m"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(180, "m")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(420, "km")
  11589. },
  11590. ]
  11591. )
  11592. characterMakers["Pia Sr."] = () => makeCharacter(
  11593. { name: "Pia Sr." },
  11594. {
  11595. front: {
  11596. height: math.unit(2, "m"),
  11597. weight: math.unit(115, "kg"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/pia-sr/front.svg",
  11601. extra: 760/730 ,
  11602. bottom: 0.015
  11603. }
  11604. },
  11605. back: {
  11606. height: math.unit(2, "m"),
  11607. weight: math.unit(115, "kg"),
  11608. name: "Back",
  11609. image: {
  11610. source: "./media/characters/pia-sr/back.svg",
  11611. extra: 760/730 ,
  11612. bottom: 0.01
  11613. }
  11614. },
  11615. hand: {
  11616. height: math.unit(0.89 * 6.56 / 6, "feet"),
  11617. name: "Hand",
  11618. image: {
  11619. source: "./media/characters/pia-sr/hand.svg"
  11620. }
  11621. },
  11622. foot: {
  11623. height: math.unit(1.83, "feet"),
  11624. name: "Foot",
  11625. image: {
  11626. source: "./media/characters/pia-sr/foot.svg"
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Micro",
  11633. height: math.unit(88, "mm")
  11634. },
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(2, "m"),
  11638. default: true
  11639. },
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(200, "m")
  11643. },
  11644. {
  11645. name: "Megamacro",
  11646. height: math.unit(420, "km")
  11647. },
  11648. ]
  11649. )
  11650. characterMakers["KIBIBYTE"] = () => makeCharacter(
  11651. { name: "KIBIBYTE" },
  11652. {
  11653. front: {
  11654. height: math.unit(8 + 2/12, "feet"),
  11655. weight: math.unit(300, "lb"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/kibibyte/front.svg",
  11659. extra: 2221/2098 ,
  11660. bottom: 0.04
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(8 + 2/12, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Socialable Macro",
  11672. height: math.unit(50, "feet")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(300, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(500, "miles")
  11681. },
  11682. ]
  11683. )
  11684. characterMakers["Felix"] = () => makeCharacter(
  11685. { name: "Felix" },
  11686. {
  11687. front: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/felix/front.svg",
  11693. extra: 762/722 ,
  11694. bottom: 0.02
  11695. }
  11696. },
  11697. frontClothed: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(150, "lb"),
  11700. name: "Front (Clothed)",
  11701. image: {
  11702. source: "./media/characters/felix/front-clothed.svg",
  11703. extra: 762/722 ,
  11704. bottom: 0.02
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(6 + 8/12, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(2600, "feet")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(450, "miles")
  11721. },
  11722. ]
  11723. )
  11724. characterMakers["Tobo"] = () => makeCharacter(
  11725. { name: "Tobo" },
  11726. {
  11727. front: {
  11728. height: math.unit(6 + 1/12, "feet"),
  11729. weight: math.unit(250, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/tobo/front.svg",
  11733. extra: 608/586 ,
  11734. bottom: 0.023
  11735. }
  11736. },
  11737. back: {
  11738. height: math.unit(6 + 1/12, "feet"),
  11739. weight: math.unit(250, "lb"),
  11740. name: "Back",
  11741. image: {
  11742. source: "./media/characters/tobo/back.svg",
  11743. extra: 608/586
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Nano",
  11750. height: math.unit(2, "nm")
  11751. },
  11752. {
  11753. name: "Megamicro",
  11754. height: math.unit(0.1, "mm")
  11755. },
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(1, "inch"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Human-sized",
  11763. height: math.unit(6 + 1/12, "feet")
  11764. },
  11765. {
  11766. name: "Macro",
  11767. height: math.unit(250, "feet")
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(75, "miles")
  11772. },
  11773. {
  11774. name: "Texas-sized",
  11775. height: math.unit(750, "miles")
  11776. },
  11777. {
  11778. name: "Teramacro",
  11779. height: math.unit(50000, "miles")
  11780. },
  11781. ]
  11782. )
  11783. characterMakers["Danny Kapowsky"] = () => makeCharacter(
  11784. { name: "Danny Kapowsky" },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(269, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/danny-kapowsky/front.svg",
  11792. extra: 766/736 ,
  11793. bottom: 0.044
  11794. }
  11795. },
  11796. back: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(269, "lb"),
  11799. name: "Back",
  11800. image: {
  11801. source: "./media/characters/danny-kapowsky/back.svg",
  11802. extra: 797/760 ,
  11803. bottom: 0.025
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Macro",
  11810. height: math.unit(150, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Macro+",
  11815. height: math.unit(200, "feet")
  11816. },
  11817. {
  11818. name: "Macro++",
  11819. height: math.unit(300, "feet")
  11820. },
  11821. {
  11822. name: "Macro+++",
  11823. height: math.unit(400, "feet")
  11824. },
  11825. ]
  11826. )
  11827. characterMakers["Finn"] = () => makeCharacter(
  11828. { name: "Finn" },
  11829. {
  11830. side: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(170, "lb"),
  11833. name: "Side",
  11834. image: {
  11835. source: "./media/characters/finn/side.svg",
  11836. extra: 1953/1807 ,
  11837. bottom: 0.057
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Megamacro",
  11844. height: math.unit(14445, "feet"),
  11845. default: true
  11846. },
  11847. ]
  11848. )
  11849. characterMakers["Roy"] = () => makeCharacter(
  11850. { name: "Roy" },
  11851. {
  11852. front: {
  11853. height: math.unit(5 + 6/12, "feet"),
  11854. weight: math.unit(125, "lb"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/roy/front.svg",
  11858. extra: 1,
  11859. bottom: 0.11
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(3, "inches"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(5 + 6/12, "feet")
  11872. },
  11873. {
  11874. name: "Lesser Macro",
  11875. height: math.unit(60, "feet")
  11876. },
  11877. {
  11878. name: "Greater Macro",
  11879. height: math.unit(120, "feet")
  11880. },
  11881. ]
  11882. )
  11883. characterMakers["Aevsivs"] = () => makeCharacter(
  11884. { name: "Aevsivs" },
  11885. {
  11886. front: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(100, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/aevsivs/front.svg",
  11892. extra: 1,
  11893. bottom: 0.03
  11894. }
  11895. },
  11896. back: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(100, "lb"),
  11899. name: "Back",
  11900. image: {
  11901. source: "./media/characters/aevsivs/back.svg"
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Micro",
  11908. height: math.unit(2, "inches"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Normal",
  11913. height: math.unit(5, "feet")
  11914. },
  11915. ]
  11916. )
  11917. characterMakers["Hildegard"] = () => makeCharacter(
  11918. { name: "Hildegard" },
  11919. {
  11920. front: {
  11921. height: math.unit(5 + 7/12, "feet"),
  11922. weight: math.unit(159, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/hildegard/front.svg",
  11926. extra: 312/286 ,
  11927. bottom: 0.005
  11928. }
  11929. },
  11930. },
  11931. [
  11932. {
  11933. name: "Normal",
  11934. height: math.unit(5 + 7/12, "feet"),
  11935. default: true
  11936. },
  11937. ]
  11938. )
  11939. characterMakers["Bernard & Wilder"] = () => makeCharacter(
  11940. { name: "Bernard & Wilder" },
  11941. {
  11942. bernard: {
  11943. height: math.unit(2 + 7/12, "feet"),
  11944. weight: math.unit(66, "lb"),
  11945. name: "Bernard",
  11946. rename: true,
  11947. image: {
  11948. source: "./media/characters/bernard-wilder/bernard.svg",
  11949. extra: 192/128 ,
  11950. bottom: 0.05
  11951. }
  11952. },
  11953. wilder: {
  11954. height: math.unit(5 + 8/12, "feet"),
  11955. weight: math.unit(143, "lb"),
  11956. name: "Wilder",
  11957. rename: true,
  11958. image: {
  11959. source: "./media/characters/bernard-wilder/wilder.svg",
  11960. extra: 361/312 ,
  11961. bottom: 0.02
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(2 + 7/12, "feet"),
  11969. default: true
  11970. },
  11971. ]
  11972. )
  11973. characterMakers["Hearth"] = () => makeCharacter(
  11974. { name: "Hearth" },
  11975. {
  11976. anthro: {
  11977. height: math.unit(6 + 1/12, "feet"),
  11978. weight: math.unit(155, "lb"),
  11979. name: "Anthro",
  11980. image: {
  11981. source: "./media/characters/hearth/anthro.svg",
  11982. extra: 260/250 ,
  11983. bottom: 0.02
  11984. }
  11985. },
  11986. feral: {
  11987. height: math.unit(3.78, "feet"),
  11988. weight: math.unit(35, "kg"),
  11989. name: "Feral",
  11990. image: {
  11991. source: "./media/characters/hearth/feral.svg",
  11992. extra: 153/135 ,
  11993. bottom: 0.03
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(6 + 1/12, "feet"),
  12001. default: true
  12002. },
  12003. ]
  12004. )
  12005. characterMakers["Ingrid"] = () => makeCharacter(
  12006. { name: "Ingrid" },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(182, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/ingrid/front.svg",
  12014. extra: 294/268 ,
  12015. bottom: 0.027
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(6, "feet"),
  12023. default: true
  12024. },
  12025. ]
  12026. )
  12027. characterMakers["Malgam"] = () => makeCharacter(
  12028. { name: "Malgam" },
  12029. {
  12030. eevee: {
  12031. height: math.unit(2 + 10/12, "feet"),
  12032. weight: math.unit(86, "lb"),
  12033. name: "Malgam",
  12034. image: {
  12035. source: "./media/characters/malgam/eevee.svg",
  12036. extra: 218/180 ,
  12037. bottom: 0.2
  12038. }
  12039. },
  12040. sylveon: {
  12041. height: math.unit(4, "feet"),
  12042. weight: math.unit(101, "lb"),
  12043. name: "Future Malgam",
  12044. rename: true,
  12045. image: {
  12046. source: "./media/characters/malgam/sylveon.svg",
  12047. extra: 371/325 ,
  12048. bottom: 0.015
  12049. }
  12050. },
  12051. gigantamax: {
  12052. height: math.unit(50, "feet"),
  12053. name: "Gigantamax Malgam",
  12054. rename: true,
  12055. image: {
  12056. source: "./media/characters/malgam/gigantamax.svg"
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(2 + 10/12, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. )
  12068. characterMakers["Fleur"] = () => makeCharacter(
  12069. { name: "Fleur" },
  12070. {
  12071. front: {
  12072. height: math.unit(5 + 11/12, "feet"),
  12073. weight: math.unit(188, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/fleur/front.svg",
  12077. extra: 309/283 ,
  12078. bottom: 0.007
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(5 + 11/12, "feet"),
  12086. default: true
  12087. },
  12088. ]
  12089. )
  12090. characterMakers["Jude"] = () => makeCharacter(
  12091. { name: "Jude" },
  12092. {
  12093. front: {
  12094. height: math.unit(5 + 4/12, "feet"),
  12095. weight: math.unit(122, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/jude/front.svg",
  12099. extra: 288/273 ,
  12100. bottom: 0.03
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Normal",
  12107. height: math.unit(5 + 4/12, "feet"),
  12108. default: true
  12109. },
  12110. ]
  12111. )
  12112. characterMakers["Seara"] = () => makeCharacter(
  12113. { name: "Seara" },
  12114. {
  12115. front: {
  12116. height: math.unit(5 + 11/12, "feet"),
  12117. weight: math.unit(190, "lb"),
  12118. name: "Front",
  12119. image: {
  12120. source: "./media/characters/seara/front.svg",
  12121. extra: 1,
  12122. bottom: 0.05
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(5 + 11/12, "feet"),
  12130. default: true
  12131. },
  12132. ]
  12133. )
  12134. characterMakers["Caspian"] = () => makeCharacter(
  12135. { name: "Caspian" },
  12136. {
  12137. front: {
  12138. height: math.unit(16 + 5/12, "feet"),
  12139. weight: math.unit(524, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/caspian/front.svg",
  12143. extra: 1,
  12144. bottom: 0.04
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(16 + 5/12, "feet"),
  12152. default: true
  12153. },
  12154. ]
  12155. )
  12156. characterMakers["Mika"] = () => makeCharacter(
  12157. { name: "Mika" },
  12158. {
  12159. front: {
  12160. height: math.unit(5 + 7/12, "feet"),
  12161. weight: math.unit(170, "lb"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/mika/front.svg",
  12165. extra: 1,
  12166. bottom: 0.016
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(5 + 7/12, "feet"),
  12174. default: true
  12175. },
  12176. ]
  12177. )
  12178. characterMakers["Sol"] = () => makeCharacter(
  12179. { name: "Sol" },
  12180. {
  12181. front: {
  12182. height: math.unit(6 + 2/12, "feet"),
  12183. weight: math.unit(268, "lb"),
  12184. name: "Front",
  12185. image: {
  12186. source: "./media/characters/sol/front.svg",
  12187. extra: 247/231 ,
  12188. bottom: 0.05
  12189. }
  12190. },
  12191. },
  12192. [
  12193. {
  12194. name: "Normal",
  12195. height: math.unit(6 + 2/12, "feet"),
  12196. default: true
  12197. },
  12198. ]
  12199. )
  12200. characterMakers["Umiko"] = () => makeCharacter(
  12201. { name: "Umiko" },
  12202. {
  12203. buizel: {
  12204. height: math.unit(2 + 5/12, "feet"),
  12205. weight: math.unit(87, "lb"),
  12206. name: "Buizel",
  12207. image: {
  12208. source: "./media/characters/umiko/buizel.svg",
  12209. extra: 172/157 ,
  12210. bottom: 0.01
  12211. }
  12212. },
  12213. floatzel: {
  12214. height: math.unit(5 + 9/12, "feet"),
  12215. weight: math.unit(250, "lb"),
  12216. name: "Floatzel",
  12217. image: {
  12218. source: "./media/characters/umiko/floatzel.svg",
  12219. extra: 262/248
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(2 + 5/12, "feet"),
  12227. default: true
  12228. },
  12229. ]
  12230. )
  12231. characterMakers["Iliac"] = () => makeCharacter(
  12232. { name: "Iliac" },
  12233. {
  12234. front: {
  12235. height: math.unit(6 + 2/12, "feet"),
  12236. weight: math.unit(146, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/iliac/front.svg",
  12240. extra: 389/365 ,
  12241. bottom: 0.035
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(6 + 2/12, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. )
  12253. characterMakers["Topaz"] = () => makeCharacter(
  12254. { name: "Topaz" },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(170, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/topaz/front.svg",
  12262. extra: 317/303 ,
  12263. bottom: 0.055
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(6, "feet"),
  12271. default: true
  12272. },
  12273. ]
  12274. )
  12275. characterMakers["Gabriel"] = () => makeCharacter(
  12276. { name: "Gabriel" },
  12277. {
  12278. front: {
  12279. height: math.unit(5 + 11/12, "feet"),
  12280. weight: math.unit(144, "lb"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/gabriel/front.svg",
  12284. extra: 285/262 ,
  12285. bottom: 0.004
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(5 + 11/12, "feet"),
  12293. default: true
  12294. },
  12295. ]
  12296. )
  12297. characterMakers["Tempest (Suicune)"] = () => makeCharacter(
  12298. { name: "Tempest (Suicune)" },
  12299. {
  12300. side: {
  12301. height: math.unit(6 + 5/12, "feet"),
  12302. weight: math.unit(300, "lb"),
  12303. name: "Side",
  12304. image: {
  12305. source: "./media/characters/tempest-suicune/side.svg",
  12306. extra: 195/154 ,
  12307. bottom: 0.04
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Normal",
  12314. height: math.unit(6 + 5/12, "feet"),
  12315. default: true
  12316. },
  12317. ]
  12318. )
  12319. characterMakers["Vulcan"] = () => makeCharacter(
  12320. { name: "Vulcan" },
  12321. {
  12322. front: {
  12323. height: math.unit(7 + 2/12, "feet"),
  12324. weight: math.unit(322, "lb"),
  12325. name: "Front",
  12326. image: {
  12327. source: "./media/characters/vulcan/front.svg",
  12328. extra: 154/147 ,
  12329. bottom: 0.04
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(7 + 2/12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. )
  12341. characterMakers["Gault"] = () => makeCharacter(
  12342. { name: "Gault" },
  12343. {
  12344. front: {
  12345. height: math.unit(5 + 10/12, "feet"),
  12346. weight: math.unit(264, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/gault/front.svg",
  12350. extra: 161/140 ,
  12351. bottom: 0.028
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(5 + 10/12, "feet"),
  12359. default: true
  12360. },
  12361. ]
  12362. )
  12363. characterMakers["Shard"] = () => makeCharacter(
  12364. { name: "Shard" },
  12365. {
  12366. front: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(150, "lb"),
  12369. name: "Front",
  12370. image: {
  12371. source: "./media/characters/shard/front.svg",
  12372. extra: 273/238 ,
  12373. bottom: 0.02
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(3 + 6/12, "feet"),
  12381. default: true
  12382. },
  12383. ]
  12384. )
  12385. characterMakers["Ashe"] = () => makeCharacter(
  12386. { name: "Ashe" },
  12387. {
  12388. front: {
  12389. height: math.unit(5 + 11/12, "feet"),
  12390. weight: math.unit(146, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/ashe/front.svg",
  12394. extra: 400/373 ,
  12395. bottom: 0.01
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(5 + 11/12, "feet"),
  12403. default: true
  12404. },
  12405. ]
  12406. )
  12407. characterMakers["Beatrix"] = () => makeCharacter(
  12408. { name: "Beatrix" },
  12409. {
  12410. front: {
  12411. height: math.unit(5 + 5/12, "feet"),
  12412. weight: math.unit(135, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/beatrix/front.svg",
  12416. extra: 392/379 ,
  12417. bottom: 0.01
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(6, "feet"),
  12425. default: true
  12426. },
  12427. ]
  12428. )
  12429. characterMakers["Ignatius"] = () => makeCharacter(
  12430. { name: "Ignatius" },
  12431. {
  12432. front: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Front",
  12436. image: {
  12437. source: "./media/characters/ignatius/front.svg",
  12438. extra: 245/222 ,
  12439. bottom: 0.01
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(5 + 5/12, "feet"),
  12447. default: true
  12448. },
  12449. ]
  12450. )
  12451. characterMakers["Mei Li"] = () => makeCharacter(
  12452. { name: "Mei Li" },
  12453. {
  12454. front: {
  12455. height: math.unit(6 + 2/12, "feet"),
  12456. weight: math.unit(138, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/mei-li/front.svg",
  12460. extra: 237/229 ,
  12461. bottom: 0.03
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(6 + 2/12, "feet"),
  12469. default: true
  12470. },
  12471. ]
  12472. )
  12473. characterMakers["Puru"] = () => makeCharacter(
  12474. { name: "Puru" },
  12475. {
  12476. front: {
  12477. height: math.unit(2 + 4/12, "feet"),
  12478. weight: math.unit(62, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/puru/front.svg",
  12482. extra: 206/149 ,
  12483. bottom: 0.06
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Normal",
  12490. height: math.unit(2 + 4/12, "feet"),
  12491. default: true
  12492. },
  12493. ]
  12494. )
  12495. characterMakers["Kee"] = () => makeCharacter(
  12496. { name: "Kee" },
  12497. {
  12498. taur: {
  12499. height: math.unit(11, "feet"),
  12500. weight: math.unit(500, "lb"),
  12501. name: "Taur",
  12502. image: {
  12503. source: "./media/characters/kee/taur.svg",
  12504. extra: 1,
  12505. bottom: 0.04
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(11, "feet"),
  12513. default: true
  12514. },
  12515. ]
  12516. )
  12517. characterMakers["Cobalt (Dracha)"] = () => makeCharacter(
  12518. { name: "Cobalt (Dracha)" },
  12519. {
  12520. anthro: {
  12521. height: math.unit(7, "feet"),
  12522. weight: math.unit(190, "lb"),
  12523. name: "Anthro",
  12524. image: {
  12525. source: "./media/characters/cobalt-dracha/anthro.svg",
  12526. extra: 231/225 ,
  12527. bottom: 0.04
  12528. }
  12529. },
  12530. feral: {
  12531. height: math.unit(9 + 7/12, "feet"),
  12532. weight: math.unit(294, "lb"),
  12533. name: "Feral",
  12534. image: {
  12535. source: "./media/characters/cobalt-dracha/feral.svg",
  12536. extra: 692/633 ,
  12537. bottom: 0.05
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(7, "feet"),
  12545. default: true
  12546. },
  12547. ]
  12548. )
  12549. characterMakers["Java"] = () => makeCharacter(
  12550. { name: "Java" },
  12551. {
  12552. fallen: {
  12553. height: math.unit(11 + 8/12, "feet"),
  12554. weight: math.unit(485, "lb"),
  12555. name: "Java (Fallen)",
  12556. rename: true,
  12557. image: {
  12558. source: "./media/characters/java/fallen.svg",
  12559. extra: 226/208 ,
  12560. bottom: 0.005
  12561. }
  12562. },
  12563. godkin: {
  12564. height: math.unit(10 + 6/12, "feet"),
  12565. weight: math.unit(328, "lb"),
  12566. name: "Java (Godkin)",
  12567. rename: true,
  12568. image: {
  12569. source: "./media/characters/java/godkin.svg",
  12570. extra: 270/262 ,
  12571. bottom: 0.02
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(11 + 8/12, "feet"),
  12579. default: true
  12580. },
  12581. ]
  12582. )
  12583. characterMakers["Skoll"] = () => makeCharacter(
  12584. { name: "Skoll" },
  12585. {
  12586. front: {
  12587. height: math.unit(7 + 8/12, "feet"),
  12588. weight: math.unit(320, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/skoll/front.svg",
  12592. extra: 232/220 ,
  12593. bottom: 0.02
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Normal",
  12600. height: math.unit(7 + 8/12, "feet"),
  12601. default: true
  12602. },
  12603. ]
  12604. )
  12605. characterMakers["Purna"] = () => makeCharacter(
  12606. { name: "Purna" },
  12607. {
  12608. front: {
  12609. height: math.unit(5 + 9/12, "feet"),
  12610. weight: math.unit(170, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/purna/front.svg",
  12614. extra: 239/229 ,
  12615. bottom: 0.01
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(5 + 9/12, "feet"),
  12623. default: true
  12624. },
  12625. ]
  12626. )
  12627. characterMakers["Kuva"] = () => makeCharacter(
  12628. { name: "Kuva" },
  12629. {
  12630. front: {
  12631. height: math.unit(5 + 9/12, "feet"),
  12632. weight: math.unit(142, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/kuva/front.svg",
  12636. extra: 281/271 ,
  12637. bottom: 0.006
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(5 + 9/12, "feet"),
  12645. default: true
  12646. },
  12647. ]
  12648. )
  12649. characterMakers["Embra"] = () => makeCharacter(
  12650. { name: "Embra" },
  12651. {
  12652. anthro: {
  12653. height: math.unit(9 + 2/12, "feet"),
  12654. weight: math.unit(270, "lb"),
  12655. name: "Anthro",
  12656. image: {
  12657. source: "./media/characters/embra/anthro.svg",
  12658. extra: 200/187 ,
  12659. bottom: 0.02
  12660. }
  12661. },
  12662. feral: {
  12663. height: math.unit(18 + 8/12, "feet"),
  12664. weight: math.unit(576, "lb"),
  12665. name: "Feral",
  12666. image: {
  12667. source: "./media/characters/embra/feral.svg",
  12668. extra: 152/137 ,
  12669. bottom: 0.037
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(9 + 2/12, "feet"),
  12677. default: true
  12678. },
  12679. ]
  12680. )
  12681. characterMakers["Grottos"] = () => makeCharacter(
  12682. { name: "Grottos" },
  12683. {
  12684. anthro: {
  12685. height: math.unit(10 + 9/12, "feet"),
  12686. weight: math.unit(224, "lb"),
  12687. name: "Anthro",
  12688. image: {
  12689. source: "./media/characters/grottos/anthro.svg",
  12690. extra: 350/332 ,
  12691. bottom: 0.045
  12692. }
  12693. },
  12694. feral: {
  12695. height: math.unit(20 + 7/12, "feet"),
  12696. weight: math.unit(629, "lb"),
  12697. name: "Feral",
  12698. image: {
  12699. source: "./media/characters/grottos/feral.svg",
  12700. extra: 207/190 ,
  12701. bottom: 0.05
  12702. }
  12703. },
  12704. },
  12705. [
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(10 + 9/12, "feet"),
  12709. default: true
  12710. },
  12711. ]
  12712. )
  12713. characterMakers["Frifna"] = () => makeCharacter(
  12714. { name: "Frifna" },
  12715. {
  12716. anthro: {
  12717. height: math.unit(9 + 6/12, "feet"),
  12718. weight: math.unit(298, "lb"),
  12719. name: "Anthro",
  12720. image: {
  12721. source: "./media/characters/frifna/anthro.svg",
  12722. extra: 282/269 ,
  12723. bottom: 0.015
  12724. }
  12725. },
  12726. feral: {
  12727. height: math.unit(16 + 2/12, "feet"),
  12728. weight: math.unit(624, "lb"),
  12729. name: "Feral",
  12730. image: {
  12731. source: "./media/characters/frifna/feral.svg"
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(9 + 6/12, "feet"),
  12739. default: true
  12740. },
  12741. ]
  12742. )
  12743. characterMakers["Elise"] = () => makeCharacter(
  12744. { name: "Elise" },
  12745. {
  12746. front: {
  12747. height: math.unit(6 + 2/12, "feet"),
  12748. weight: math.unit(168, "lb"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/elise/front.svg",
  12752. extra: 276/271
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(6 + 2/12, "feet"),
  12760. default: true
  12761. },
  12762. ]
  12763. )
  12764. characterMakers["Glade"] = () => makeCharacter(
  12765. { name: "Glade" },
  12766. {
  12767. front: {
  12768. height: math.unit(5 + 10/12, "feet"),
  12769. weight: math.unit(210, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/glade/front.svg",
  12773. extra: 258/247 ,
  12774. bottom: 0.008
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(5 + 10/12, "feet"),
  12782. default: true
  12783. },
  12784. ]
  12785. )
  12786. characterMakers["Rina"] = () => makeCharacter(
  12787. { name: "Rina" },
  12788. {
  12789. front: {
  12790. height: math.unit(5 + 10/12, "feet"),
  12791. weight: math.unit(129, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/rina/front.svg",
  12795. extra: 266/255 ,
  12796. bottom: 0.005
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(5 + 10/12, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. )
  12808. characterMakers["Veronica"] = () => makeCharacter(
  12809. { name: "Veronica" },
  12810. {
  12811. front: {
  12812. height: math.unit(6 + 1/12, "feet"),
  12813. weight: math.unit(192, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/veronica/front.svg",
  12817. extra: 319/309 ,
  12818. bottom: 0.005
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(6 + 1/12, "feet"),
  12826. default: true
  12827. },
  12828. ]
  12829. )
  12830. characterMakers["Braxton"] = () => makeCharacter(
  12831. { name: "Braxton" },
  12832. {
  12833. front: {
  12834. height: math.unit(9 + 3/12, "feet"),
  12835. weight: math.unit(1100, "lb"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/braxton/front.svg",
  12839. extra: 1057/984 ,
  12840. bottom: 0.05
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(9 + 3/12, "feet")
  12848. },
  12849. {
  12850. name: "Giant",
  12851. height: math.unit(300, "feet"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Macro",
  12856. height: math.unit(700, "feet")
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(6000, "feet")
  12861. },
  12862. ]
  12863. )
  12864. characterMakers["Blue Feyonics"] = () => makeCharacter(
  12865. { name: "Blue Feyonics" },
  12866. {
  12867. front: {
  12868. height: math.unit(6 + 7/12, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/blue-feyonics/front.svg",
  12873. extra: 1403/1306 ,
  12874. bottom: 0.047
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Normal",
  12881. height: math.unit(6 + 7/12, "feet"),
  12882. default: true
  12883. },
  12884. ]
  12885. )
  12886. characterMakers["Maxwell"] = () => makeCharacter(
  12887. { name: "Maxwell" },
  12888. {
  12889. front: {
  12890. height: math.unit(1.8, "meters"),
  12891. weight: math.unit(60, "kg"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/maxwell/front.svg",
  12895. extra: 2060/1873
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Micro",
  12902. height: math.unit(1, "mm")
  12903. },
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(1.8, "meter"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(30, "meters")
  12912. },
  12913. {
  12914. name: "Megamacro",
  12915. height: math.unit(10, "km")
  12916. },
  12917. ]
  12918. )
  12919. characterMakers["Jack"] = () => makeCharacter(
  12920. { name: "Jack" },
  12921. {
  12922. front: {
  12923. height: math.unit(6, "feet"),
  12924. weight: math.unit(150, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/jack/front.svg",
  12928. extra: 1754/1640,
  12929. bottom: 0.01
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(80000, "feet"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Max size",
  12941. height: math.unit(10, "lightyears")
  12942. },
  12943. ]
  12944. )
  12945. characterMakers["Cafat"] = () => makeCharacter(
  12946. { name: "Cafat" },
  12947. {
  12948. upright: {
  12949. height: math.unit(7, "feet"),
  12950. weight: math.unit(170, "lb"),
  12951. name: "Upright",
  12952. image: {
  12953. source: "./media/characters/cafat/upright.svg",
  12954. bottom: 0.01
  12955. }
  12956. },
  12957. uprightFull: {
  12958. height: math.unit(7, "feet"),
  12959. weight: math.unit(170, "lb"),
  12960. name: "Upright (Full)",
  12961. image: {
  12962. source: "./media/characters/cafat/upright-full.svg",
  12963. bottom: 0.01
  12964. }
  12965. },
  12966. side: {
  12967. height: math.unit(5, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Side",
  12970. image: {
  12971. source: "./media/characters/cafat/side.svg"
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Small",
  12978. height: math.unit(7, "feet"),
  12979. default: true
  12980. },
  12981. {
  12982. name: "Large",
  12983. height: math.unit(15.5, "feet")
  12984. },
  12985. ]
  12986. )
  12987. characterMakers["Verin Raharra"] = () => makeCharacter(
  12988. { name: "Verin Raharra" },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/verin-raharra/front.svg",
  12996. extra: 5019/4835,
  12997. bottom: 0.023
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Normal",
  13004. height: math.unit(7 + 5/12, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Upsized",
  13009. height: math.unit(20, "feet")
  13010. },
  13011. ]
  13012. )
  13013. characterMakers["Nakata"] = () => makeCharacter(
  13014. { name: "Nakata" },
  13015. {
  13016. front: {
  13017. height: math.unit(7, "feet"),
  13018. weight: math.unit(230, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/nakata/front.svg",
  13022. extra: 1.005,
  13023. bottom: 0.01
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(7, "feet"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Big",
  13035. height: math.unit(14, "feet")
  13036. },
  13037. {
  13038. name: "Macro",
  13039. height: math.unit(400, "feet")
  13040. },
  13041. ]
  13042. )
  13043. characterMakers["Lily"] = () => makeCharacter(
  13044. { name: "Lily" },
  13045. {
  13046. front: {
  13047. height: math.unit(4.91, "feet"),
  13048. weight: math.unit(100, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/lily/front.svg",
  13052. extra: 1585/1415,
  13053. bottom: 0.02
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(4.91, "feet"),
  13061. default: true
  13062. },
  13063. ]
  13064. )
  13065. characterMakers["Sheila"] = () => makeCharacter(
  13066. { name: "Sheila" },
  13067. {
  13068. laying: {
  13069. height: math.unit(4 + 4/12, "feet"),
  13070. weight: math.unit(600, "lb"),
  13071. name: "Laying",
  13072. image: {
  13073. source: "./media/characters/sheila/laying.svg",
  13074. extra: 1333/1265,
  13075. bottom: 0.16
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(4 + 4/12, "feet"),
  13083. default: true
  13084. },
  13085. ]
  13086. )
  13087. characterMakers["Sax"] = () => makeCharacter(
  13088. { name: "Sax" },
  13089. {
  13090. front: {
  13091. height: math.unit(6, "feet"),
  13092. weight: math.unit(190, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/sax/front.svg",
  13096. extra: 1187/973,
  13097. bottom: 0.042
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Micro",
  13104. height: math.unit(4, "inches"),
  13105. default: true
  13106. },
  13107. ]
  13108. )
  13109. characterMakers["Pandora"] = () => makeCharacter(
  13110. { name: "Pandora" },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/pandora/front.svg",
  13118. extra: 2720/2556,
  13119. bottom: 0.015
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/pandora/back.svg",
  13128. extra: 2720/2556,
  13129. bottom: 0.01
  13130. }
  13131. },
  13132. beans: {
  13133. height: math.unit(6/8, "feet"),
  13134. name: "Beans",
  13135. image: {
  13136. source: "./media/characters/pandora/beans.svg"
  13137. }
  13138. },
  13139. skirt: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(150, "lb"),
  13142. name: "Skirt",
  13143. image: {
  13144. source: "./media/characters/pandora/skirt.svg",
  13145. extra: 1622/1525,
  13146. bottom: 0.015
  13147. }
  13148. },
  13149. hoodie: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(150, "lb"),
  13152. name: "Hoodie",
  13153. image: {
  13154. source: "./media/characters/pandora/hoodie.svg",
  13155. extra: 1622/1525,
  13156. bottom: 0.015
  13157. }
  13158. },
  13159. casual: {
  13160. height: math.unit(6, "feet"),
  13161. weight: math.unit(150, "lb"),
  13162. name: "Casual",
  13163. image: {
  13164. source: "./media/characters/pandora/casual.svg",
  13165. extra: 1622/1525,
  13166. bottom: 0.015
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(6, "feet")
  13174. },
  13175. {
  13176. name: "Big Steppy",
  13177. height: math.unit(1, "km"),
  13178. default: true
  13179. },
  13180. ]
  13181. )
  13182. characterMakers["Venio Darcony"] = () => makeCharacter(
  13183. { name: "Venio Darcony" },
  13184. {
  13185. side: {
  13186. height: math.unit(10, "feet"),
  13187. weight: math.unit(800, "kg"),
  13188. name: "Side",
  13189. image: {
  13190. source: "./media/characters/venio-darcony/side.svg",
  13191. extra: 1373/1003,
  13192. bottom: 0.037
  13193. }
  13194. },
  13195. front: {
  13196. height: math.unit(19, "feet"),
  13197. weight: math.unit(800, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/venio-darcony/front.svg"
  13201. }
  13202. },
  13203. back: {
  13204. height: math.unit(19, "feet"),
  13205. weight: math.unit(800, "kg"),
  13206. name: "Back",
  13207. image: {
  13208. source: "./media/characters/venio-darcony/back.svg"
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(10, "feet")
  13216. },
  13217. {
  13218. name: "Macro",
  13219. height: math.unit(130, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Macro+",
  13224. height: math.unit(240, "feet")
  13225. },
  13226. ]
  13227. )
  13228. characterMakers["Veski"] = () => makeCharacter(
  13229. { name: "Veski" },
  13230. {
  13231. front: {
  13232. height: math.unit(6, "feet"),
  13233. weight: math.unit(150, "lb"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/veski/front.svg",
  13237. extra: 1299/1225,
  13238. bottom: 0.04
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(150, "lb"),
  13244. name: "Back",
  13245. image: {
  13246. source: "./media/characters/veski/back.svg",
  13247. extra: 1299/1225,
  13248. bottom: 0.008
  13249. }
  13250. },
  13251. maw: {
  13252. height: math.unit(1.5 * 1.21, "feet"),
  13253. name: "Maw",
  13254. image: {
  13255. source: "./media/characters/veski/maw.svg"
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Macro",
  13262. height: math.unit(2, "km"),
  13263. default: true
  13264. },
  13265. ]
  13266. )
  13267. characterMakers["Isabelle"] = () => makeCharacter(
  13268. { name: "Isabelle" },
  13269. {
  13270. front: {
  13271. height: math.unit(5 + 7/12, "feet"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/isabelle/front.svg",
  13275. extra: 2130/1976,
  13276. bottom: 0.05
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Supermicro",
  13283. height: math.unit(10, "micrometers")
  13284. },
  13285. {
  13286. name: "Micro",
  13287. height: math.unit(1, "inch")
  13288. },
  13289. {
  13290. name: "Tiny",
  13291. height: math.unit(5, "inches")
  13292. },
  13293. {
  13294. name: "Standard",
  13295. height: math.unit(5 + 7/12, "inches")
  13296. },
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(80, "meters"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(250, "meters")
  13305. },
  13306. {
  13307. name: "Gigamacro",
  13308. height: math.unit(5, "km")
  13309. },
  13310. {
  13311. name: "Cosmic",
  13312. height: math.unit(2.5e6, "miles")
  13313. },
  13314. ]
  13315. )
  13316. characterMakers["Hanzo"] = () => makeCharacter(
  13317. { name: "Hanzo" },
  13318. {
  13319. front: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(150, "lb"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/hanzo/front.svg",
  13325. extra: 374/344,
  13326. bottom: 0.02
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(8, "feet"),
  13334. default: true
  13335. },
  13336. ]
  13337. )
  13338. characterMakers["Anna"] = () => makeCharacter(
  13339. { name: "Anna" },
  13340. {
  13341. front: {
  13342. height: math.unit(7, "feet"),
  13343. weight: math.unit(130, "lb"),
  13344. name: "Front",
  13345. image: {
  13346. source: "./media/characters/anna/front.svg",
  13347. extra: 169/145,
  13348. bottom: 0.06
  13349. }
  13350. },
  13351. full: {
  13352. height: math.unit(4.96, "feet"),
  13353. weight: math.unit(220, "lb"),
  13354. name: "Full",
  13355. image: {
  13356. source: "./media/characters/anna/full.svg",
  13357. extra: 138/114,
  13358. bottom: 0.15
  13359. }
  13360. },
  13361. tongue: {
  13362. height: math.unit(2.53, "feet"),
  13363. name: "Tongue",
  13364. image: {
  13365. source: "./media/characters/anna/tongue.svg"
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(7, "feet"),
  13373. default: true
  13374. },
  13375. ]
  13376. )
  13377. characterMakers["Ian Corvid"] = () => makeCharacter(
  13378. { name: "Ian Corvid" },
  13379. {
  13380. front: {
  13381. height: math.unit(7, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/ian-corvid/front.svg",
  13386. extra: 150/142,
  13387. bottom: 0.02
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(7, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/ian-corvid/back.svg",
  13396. extra: 150/143,
  13397. bottom: 0.01
  13398. }
  13399. },
  13400. stomping: {
  13401. height: math.unit(7, "feet"),
  13402. weight: math.unit(150, "lb"),
  13403. name: "Stomping",
  13404. image: {
  13405. source: "./media/characters/ian-corvid/stomping.svg",
  13406. extra: 76/72
  13407. }
  13408. },
  13409. sitting: {
  13410. height: math.unit(7/1.8, "feet"),
  13411. weight: math.unit(150, "lb"),
  13412. name: "Sitting",
  13413. image: {
  13414. source: "./media/characters/ian-corvid/sitting.svg",
  13415. extra: 1400/1269,
  13416. bottom: 0.15
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Tiny Microw",
  13423. height: math.unit(1, "inch")
  13424. },
  13425. {
  13426. name: "Microw",
  13427. height: math.unit(6, "inches")
  13428. },
  13429. {
  13430. name: "Crow",
  13431. height: math.unit(7 + 1/12, "feet"),
  13432. default: true
  13433. },
  13434. {
  13435. name: "Macrow",
  13436. height: math.unit(176, "feet")
  13437. },
  13438. ]
  13439. )
  13440. characterMakers["Natalie Kellon"] = () => makeCharacter(
  13441. { name: "Natalie Kellon" },
  13442. {
  13443. front: {
  13444. height: math.unit(5 + 7/12, "feet"),
  13445. weight: math.unit(147, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/natalie-kellon/front.svg",
  13449. extra: 1214/1141,
  13450. bottom: 0.02
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Micro",
  13457. height: math.unit(1/16, "inch")
  13458. },
  13459. {
  13460. name: "Tiny",
  13461. height: math.unit(4, "inches")
  13462. },
  13463. {
  13464. name: "Normal",
  13465. height: math.unit(5 + 7/12, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Amazon",
  13470. height: math.unit(12, "feet")
  13471. },
  13472. {
  13473. name: "Giantess",
  13474. height: math.unit(160, "meters")
  13475. },
  13476. {
  13477. name: "Titaness",
  13478. height: math.unit(800, "meters")
  13479. },
  13480. ]
  13481. )
  13482. characterMakers["Alluria"] = () => makeCharacter(
  13483. { name: "Alluria" },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/alluria/front.svg",
  13491. extra: 806/738,
  13492. bottom: 0.01
  13493. }
  13494. },
  13495. side: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Side",
  13499. image: {
  13500. source: "./media/characters/alluria/side.svg",
  13501. extra: 800/750,
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/alluria/back.svg",
  13510. extra: 806/738,
  13511. }
  13512. },
  13513. frontMaid: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front (Maid)",
  13517. image: {
  13518. source: "./media/characters/alluria/front-maid.svg",
  13519. extra: 806/738,
  13520. bottom: 0.01
  13521. }
  13522. },
  13523. sideMaid: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Side (Maid)",
  13527. image: {
  13528. source: "./media/characters/alluria/side-maid.svg",
  13529. extra: 800/750,
  13530. bottom: 0.005
  13531. }
  13532. },
  13533. backMaid: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Back (Maid)",
  13537. image: {
  13538. source: "./media/characters/alluria/back-maid.svg",
  13539. extra: 806/738,
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(6, "inches"),
  13547. default: true
  13548. },
  13549. ]
  13550. )
  13551. characterMakers["Kyle"] = () => makeCharacter(
  13552. { name: "Kyle" },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/kyle/front.svg",
  13560. extra: 1069/962,
  13561. bottom: 77.228/1727.45
  13562. }
  13563. },
  13564. },
  13565. [
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(150, "feet"),
  13569. default: true
  13570. },
  13571. ]
  13572. )
  13573. characterMakers["Duncan"] = () => makeCharacter(
  13574. { name: "Duncan" },
  13575. {
  13576. front: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(300, "lb"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/duncan/front.svg",
  13582. extra: 1650/1482,
  13583. bottom: 0.05
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(100, "feet"),
  13591. default: true
  13592. },
  13593. ]
  13594. )
  13595. characterMakers["Memory"] = () => makeCharacter(
  13596. { name: "Memory" },
  13597. {
  13598. front: {
  13599. height: math.unit(5 + 4/12, "feet"),
  13600. weight: math.unit(220, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/memory/front.svg",
  13604. extra: 3641/3545,
  13605. bottom: 0.03
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(5 + 4/12, "feet"),
  13610. weight: math.unit(220, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/memory/back.svg",
  13614. extra: 3641/3545,
  13615. bottom: 0.025
  13616. }
  13617. },
  13618. frontSkirt: {
  13619. height: math.unit(5 + 4/12, "feet"),
  13620. weight: math.unit(220, "lb"),
  13621. name: "Front (Skirt)",
  13622. image: {
  13623. source: "./media/characters/memory/front-skirt.svg",
  13624. extra: 3641/3545,
  13625. bottom: 0.03
  13626. }
  13627. },
  13628. frontDress: {
  13629. height: math.unit(5 + 4/12, "feet"),
  13630. weight: math.unit(220, "lb"),
  13631. name: "Front (Dress)",
  13632. image: {
  13633. source: "./media/characters/memory/front-dress.svg",
  13634. extra: 3641/3545,
  13635. bottom: 0.03
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Micro",
  13642. height: math.unit(6, "inches"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(5 + 4/12, "feet")
  13648. },
  13649. ]
  13650. )
  13651. characterMakers["Luno"] = () => makeCharacter(
  13652. { name: "Luno" },
  13653. {
  13654. front: {
  13655. height: math.unit(4 + 11/12, "feet"),
  13656. weight: math.unit(100, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/luno/front.svg",
  13660. extra: 1535/1487,
  13661. bottom: 0.03
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Micro",
  13668. height: math.unit(3, "inches")
  13669. },
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(4 + 11/12, "feet"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(300, "feet")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(700, "miles")
  13682. },
  13683. ]
  13684. )
  13685. characterMakers["Jamesy"] = () => makeCharacter(
  13686. { name: "Jamesy" },
  13687. {
  13688. front: {
  13689. height: math.unit(6 + 2/12, "feet"),
  13690. weight: math.unit(170, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/jamesy/front.svg",
  13694. extra: 440/382,
  13695. bottom: 0.005
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Micro",
  13702. height: math.unit(3, "inches")
  13703. },
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(6 + 2/12, "feet"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(300, "feet")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(700, "miles")
  13716. },
  13717. ]
  13718. )
  13719. characterMakers["Mark"] = () => makeCharacter(
  13720. { name: "Mark" },
  13721. {
  13722. front: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(160, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/mark/front.svg",
  13728. extra: 3300/3100,
  13729. bottom: 136.42/3440.47
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(120, "meters")
  13737. },
  13738. {
  13739. name: "Bigger Macro",
  13740. height: math.unit(350, "meters")
  13741. },
  13742. {
  13743. name: "Megamacro",
  13744. height: math.unit(8, "km"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Continental",
  13749. height: math.unit(4550, "km")
  13750. },
  13751. {
  13752. name: "Planetary",
  13753. height: math.unit(65000, "km")
  13754. },
  13755. ]
  13756. )
  13757. characterMakers["Mac"] = () => makeCharacter(
  13758. { name: "Mac" },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(400, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/mac/front.svg",
  13766. extra: 1048/987.7,
  13767. bottom: 60/1107.6,
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(500, "feet"),
  13775. default: true
  13776. },
  13777. ]
  13778. )
  13779. characterMakers["Bari"] = () => makeCharacter(
  13780. { name: "Bari" },
  13781. {
  13782. front: {
  13783. height: math.unit(5 + 2/12, "feet"),
  13784. weight: math.unit(190, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/bari/front.svg",
  13788. extra: 3156/2880,
  13789. bottom: 0.03
  13790. }
  13791. },
  13792. back: {
  13793. height: math.unit(5 + 2/12, "feet"),
  13794. weight: math.unit(190, "lb"),
  13795. name: "Back",
  13796. image: {
  13797. source: "./media/characters/bari/back.svg",
  13798. extra: 3260/2834,
  13799. bottom: 0.025
  13800. }
  13801. },
  13802. frontPlush: {
  13803. height: math.unit(5 + 2/12, "feet"),
  13804. weight: math.unit(190, "lb"),
  13805. name: "Front (Plush)",
  13806. image: {
  13807. source: "./media/characters/bari/front-plush.svg",
  13808. extra: 1112/1061,
  13809. bottom: 0.002
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Micro",
  13816. height: math.unit(3, "inches")
  13817. },
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(5 + 2/12, "feet"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Macro",
  13825. height: math.unit(20, "feet")
  13826. },
  13827. ]
  13828. )
  13829. characterMakers["Hunter Misha Raven"] = () => makeCharacter(
  13830. { name: "Hunter Misha Raven" },
  13831. {
  13832. front: {
  13833. height: math.unit(6 + 1/12, "feet"),
  13834. weight: math.unit(275, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/hunter-misha-raven/front.svg"
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Mortal",
  13844. height: math.unit(6 + 1/12, "feet")
  13845. },
  13846. {
  13847. name: "Divine",
  13848. height: math.unit(1.12134e34, "parsecs"),
  13849. default: true
  13850. },
  13851. ]
  13852. )
  13853. characterMakers["Max Calore"] = () => makeCharacter(
  13854. { name: "Max Calore" },
  13855. {
  13856. front: {
  13857. height: math.unit(6 + 3/12, "feet"),
  13858. weight: math.unit(220, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/max-calore/front.svg",
  13862. extra: 1700/1648,
  13863. bottom: 0.01
  13864. }
  13865. },
  13866. back: {
  13867. height: math.unit(6 + 3/12, "feet"),
  13868. weight: math.unit(220, "lb"),
  13869. name: "Back",
  13870. image: {
  13871. source: "./media/characters/max-calore/back.svg",
  13872. extra: 1700/1648,
  13873. bottom: 0.01
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(6 + 3/12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. )
  13885. characterMakers["Aspen"] = () => makeCharacter(
  13886. { name: "Aspen" },
  13887. {
  13888. side: {
  13889. height: math.unit(2 + 8/12, "feet"),
  13890. weight: math.unit(99, "lb"),
  13891. name: "Side",
  13892. image: {
  13893. source: "./media/characters/aspen/side.svg",
  13894. extra: 152/138,
  13895. bottom: 0.032
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(2 + 8/12, "feet"),
  13903. default: true
  13904. },
  13905. ]
  13906. )
  13907. characterMakers["Sheila (Wolf)"] = () => makeCharacter(
  13908. { name: "Sheila (Wolf)" },
  13909. {
  13910. side: {
  13911. height: math.unit(3 + 2/12, "feet"),
  13912. weight: math.unit(224, "lb"),
  13913. name: "Side",
  13914. image: {
  13915. source: "./media/characters/sheila-wolf/side.svg",
  13916. extra: 179/166,
  13917. bottom: 0.03
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(3 + 2/12, "feet"),
  13925. default: true
  13926. },
  13927. ]
  13928. )
  13929. characterMakers["Michelle"] = () => makeCharacter(
  13930. { name: "Michelle" },
  13931. {
  13932. side: {
  13933. height: math.unit(1 + 9/12, "feet"),
  13934. weight: math.unit(38, "lb"),
  13935. name: "Side",
  13936. image: {
  13937. source: "./media/characters/michelle/side.svg",
  13938. extra: 147/136.7,
  13939. bottom: 0.03
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(1 + 9/12, "feet"),
  13947. default: true
  13948. },
  13949. ]
  13950. )
  13951. characterMakers["Nino"] = () => makeCharacter(
  13952. { name: "Nino" },
  13953. {
  13954. front: {
  13955. height: math.unit(1 + 1/12, "feet"),
  13956. weight: math.unit(18, "lb"),
  13957. name: "Front",
  13958. image: {
  13959. source: "./media/characters/nino/front.svg"
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(1 + 1/12, "feet"),
  13967. default: true
  13968. },
  13969. ]
  13970. )
  13971. characterMakers["Viola"] = () => makeCharacter(
  13972. { name: "Viola" },
  13973. {
  13974. front: {
  13975. height: math.unit(1, "feet"),
  13976. weight: math.unit(16, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/viola/front.svg"
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Normal",
  13986. height: math.unit(1, "feet"),
  13987. default: true
  13988. },
  13989. ]
  13990. )
  13991. characterMakers["Atlas"] = () => makeCharacter(
  13992. { name: "Atlas" },
  13993. {
  13994. front: {
  13995. height: math.unit(6 + 5/12, "feet"),
  13996. weight: math.unit(580, "lb"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/atlas/front.svg",
  14000. extra: 298.5/290,
  14001. bottom: 0.015
  14002. }
  14003. },
  14004. },
  14005. [
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(6 + 5/12, "feet"),
  14009. default: true
  14010. },
  14011. ]
  14012. )
  14013. characterMakers["Davy"] = () => makeCharacter(
  14014. { name: "Davy" },
  14015. {
  14016. side: {
  14017. height: math.unit(1 + 10/12, "feet"),
  14018. weight: math.unit(25, "lb"),
  14019. name: "Side",
  14020. image: {
  14021. source: "./media/characters/davy/side.svg",
  14022. extra: 200/170,
  14023. bottom: 0.01
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(1 + 10/12, "feet"),
  14031. default: true
  14032. },
  14033. ]
  14034. )
  14035. characterMakers["Fiona"] = () => makeCharacter(
  14036. { name: "Fiona" },
  14037. {
  14038. side: {
  14039. height: math.unit(4 + 8/12, "feet"),
  14040. weight: math.unit(166, "lb"),
  14041. name: "Side",
  14042. image: {
  14043. source: "./media/characters/fiona/side.svg",
  14044. extra: 232/220,
  14045. bottom: 0.03
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(4 + 8/12, "feet"),
  14053. default: true
  14054. },
  14055. ]
  14056. )
  14057. characterMakers["Lyla"] = () => makeCharacter(
  14058. { name: "Lyla" },
  14059. {
  14060. front: {
  14061. height: math.unit(2, "feet"),
  14062. weight: math.unit(62, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/lyla/front.svg",
  14066. bottom: 0.1
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(2, "feet"),
  14074. default: true
  14075. },
  14076. ]
  14077. )
  14078. characterMakers["Perseus"] = () => makeCharacter(
  14079. { name: "Perseus" },
  14080. {
  14081. side: {
  14082. height: math.unit(1.8, "feet"),
  14083. weight: math.unit(44, "lb"),
  14084. name: "Side",
  14085. image: {
  14086. source: "./media/characters/perseus/side.svg",
  14087. bottom: 0.21
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(1.8, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. )
  14099. characterMakers["Remus"] = () => makeCharacter(
  14100. { name: "Remus" },
  14101. {
  14102. side: {
  14103. height: math.unit(4 + 2/12, "feet"),
  14104. weight: math.unit(20, "lb"),
  14105. name: "Side",
  14106. image: {
  14107. source: "./media/characters/remus/side.svg"
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(4 + 2/12, "feet"),
  14115. default: true
  14116. },
  14117. ]
  14118. )
  14119. characterMakers["Raf"] = () => makeCharacter(
  14120. { name: "Raf" },
  14121. {
  14122. front: {
  14123. height: math.unit(4 + 11/12, "feet"),
  14124. weight: math.unit(114, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/raf/front.svg",
  14128. bottom: 0.01
  14129. }
  14130. },
  14131. side: {
  14132. height: math.unit(4 + 11/12, "feet"),
  14133. weight: math.unit(114, "lb"),
  14134. name: "Side",
  14135. image: {
  14136. source: "./media/characters/raf/side.svg",
  14137. bottom: 0.005
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Micro",
  14144. height: math.unit(2, "inches")
  14145. },
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(4 + 11/12, "feet"),
  14149. default: true
  14150. },
  14151. {
  14152. name: "Macro",
  14153. height: math.unit(70, "feet")
  14154. },
  14155. ]
  14156. )
  14157. characterMakers["Liam Einarr"] = () => makeCharacter(
  14158. { name: "Liam Einarr" },
  14159. {
  14160. front: {
  14161. height: math.unit(1.5, "meters"),
  14162. weight: math.unit(68, "kg"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/liam-einarr/front.svg",
  14166. extra: 2822/2666
  14167. }
  14168. },
  14169. back: {
  14170. height: math.unit(1.5, "meters"),
  14171. weight: math.unit(68, "kg"),
  14172. name: "Back",
  14173. image: {
  14174. source: "./media/characters/liam-einarr/back.svg",
  14175. extra: 2822/2666,
  14176. bottom: 0.015
  14177. }
  14178. },
  14179. },
  14180. [
  14181. {
  14182. name: "Normal",
  14183. height: math.unit(1.5, "meters"),
  14184. default: true
  14185. },
  14186. {
  14187. name: "Macro",
  14188. height: math.unit(150, "meters")
  14189. },
  14190. {
  14191. name: "Megamacro",
  14192. height: math.unit(35, "km")
  14193. },
  14194. ]
  14195. )
  14196. characterMakers["Linda"] = () => makeCharacter(
  14197. { name: "Linda" },
  14198. {
  14199. front: {
  14200. height: math.unit(6, "feet"),
  14201. weight: math.unit(75, "kg"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/linda/front.svg",
  14205. extra: 930/874,
  14206. bottom: 0.004
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(6, "feet"),
  14214. default: true
  14215. },
  14216. ]
  14217. )
  14218. characterMakers["Caylex"] = () => makeCharacter(
  14219. { name: "Caylex" },
  14220. {
  14221. front: {
  14222. height: math.unit(6 + 8/12, "feet"),
  14223. weight: math.unit(220, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/caylex/front.svg",
  14227. extra: 821/772,
  14228. bottom: 0.07
  14229. }
  14230. },
  14231. back: {
  14232. height: math.unit(6 + 8/12, "feet"),
  14233. weight: math.unit(220, "lb"),
  14234. name: "Back",
  14235. image: {
  14236. source: "./media/characters/caylex/back.svg",
  14237. extra: 821/772,
  14238. bottom: 0.022
  14239. }
  14240. },
  14241. hand: {
  14242. height: math.unit(1.25, "feet"),
  14243. name: "Hand",
  14244. image: {
  14245. source: "./media/characters/caylex/hand.svg"
  14246. }
  14247. },
  14248. foot: {
  14249. height: math.unit(1.6, "feet"),
  14250. name: "Foot",
  14251. image: {
  14252. source: "./media/characters/caylex/foot.svg"
  14253. }
  14254. },
  14255. armored: {
  14256. height: math.unit(6 + 8/12, "feet"),
  14257. weight: math.unit(250, "lb"),
  14258. name: "Armored",
  14259. image: {
  14260. source: "./media/characters/caylex/armored.svg",
  14261. extra: 1420/1310,
  14262. bottom: 0.045
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(6 + 8/12, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Normal+",
  14274. height: math.unit(12, "feet")
  14275. },
  14276. ]
  14277. )
  14278. characterMakers["Alana"] = () => makeCharacter(
  14279. { name: "Alana" },
  14280. {
  14281. front: {
  14282. height: math.unit(7 + 6/12, "feet"),
  14283. weight: math.unit(288, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/alana/front.svg",
  14287. extra: 679/653,
  14288. bottom: 22.5/701
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(7 + 6/12, "feet")
  14296. },
  14297. {
  14298. name: "Large",
  14299. height: math.unit(50, "feet")
  14300. },
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(100, "feet"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Macro+",
  14308. height: math.unit(200, "feet")
  14309. },
  14310. ]
  14311. )
  14312. characterMakers["Hasani"] = () => makeCharacter(
  14313. { name: "Hasani" },
  14314. {
  14315. front: {
  14316. height: math.unit(6 + 1/12, "feet"),
  14317. weight: math.unit(210, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/hasani/front.svg",
  14321. extra: 244/232,
  14322. bottom: 0.01
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(6 + 1/12, "feet"),
  14327. weight: math.unit(210, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/hasani/back.svg",
  14331. extra: 244/232,
  14332. bottom: 0.01
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(6 + 1/12, "feet")
  14340. },
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(175, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. )
  14348. characterMakers["Nita"] = () => makeCharacter(
  14349. { name: "Nita" },
  14350. {
  14351. front: {
  14352. height: math.unit(1.82, "meters"),
  14353. weight: math.unit(140, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/nita/front.svg",
  14357. extra: 2473/2363,
  14358. bottom: 0.01
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(1.82, "m")
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(300, "m")
  14370. },
  14371. {
  14372. name: "Mistake Canon",
  14373. height: math.unit(0.5, "miles"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Big Mistake",
  14378. height: math.unit(13, "miles")
  14379. },
  14380. {
  14381. name: "Playing God",
  14382. height: math.unit(2450, "miles")
  14383. },
  14384. ]
  14385. )
  14386. characterMakers["Shiriko"] = () => makeCharacter(
  14387. { name: "Shiriko" },
  14388. {
  14389. front: {
  14390. height: math.unit(4, "feet"),
  14391. weight: math.unit(120, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/shiriko/front.svg",
  14395. extra: 195/188
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(4, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. )
  14407. characterMakers["Deja"] = () => makeCharacter(
  14408. { name: "Deja" },
  14409. {
  14410. front: {
  14411. height: math.unit(6, "feet"),
  14412. name: "front",
  14413. image: {
  14414. source: "./media/characters/deja/front.svg",
  14415. extra: 926/840,
  14416. bottom: 0.07
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Planck Length",
  14423. height: math.unit(1.6e-35, "meters")
  14424. },
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(30.48, "meters"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Universal",
  14432. height: math.unit(8.8e26, "meters")
  14433. },
  14434. ]
  14435. )
  14436. characterMakers["Anima"] = () => makeCharacter(
  14437. { name: "Anima" },
  14438. {
  14439. side: {
  14440. height: math.unit(8, "feet"),
  14441. weight: math.unit(6300, "lb"),
  14442. name: "Side",
  14443. image: {
  14444. source: "./media/characters/anima/side.svg",
  14445. bottom: 0.035
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Normal",
  14452. height: math.unit(8, "feet"),
  14453. default: true
  14454. },
  14455. ]
  14456. )
  14457. characterMakers["Bianca"] = () => makeCharacter(
  14458. { name: "Bianca" },
  14459. {
  14460. front: {
  14461. height: math.unit(8, "feet"),
  14462. weight: math.unit(350, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/bianca/front.svg",
  14466. extra: 234/225,
  14467. bottom: 0.03
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(8, "feet"),
  14475. default: true
  14476. },
  14477. ]
  14478. )
  14479. characterMakers["Adinia"] = () => makeCharacter(
  14480. { name: "Adinia" },
  14481. {
  14482. front: {
  14483. height: math.unit(6, "feet"),
  14484. weight: math.unit(150, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/adinia/front.svg",
  14488. extra: 1845/1672,
  14489. bottom: 0.02
  14490. }
  14491. },
  14492. back: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(150, "lb"),
  14495. name: "Back",
  14496. image: {
  14497. source: "./media/characters/adinia/back.svg",
  14498. extra: 1845/1672,
  14499. bottom: 0.002
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(11 + 5/12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. )
  14511. characterMakers["Lykasa"] = () => makeCharacter(
  14512. { name: "Lykasa" },
  14513. {
  14514. front: {
  14515. height: math.unit(3, "meters"),
  14516. weight: math.unit(200, "kg"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/lykasa/front.svg",
  14520. extra: 1076/976,
  14521. bottom: 0.06
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(3, "meters")
  14529. },
  14530. {
  14531. name: "Kaiku",
  14532. height: math.unit(120, "meters"),
  14533. default: true
  14534. },
  14535. {
  14536. name: "Mega Kaiju",
  14537. height: math.unit(240, "km")
  14538. },
  14539. {
  14540. name: "Giga Kaiju",
  14541. height: math.unit(400, "megameters")
  14542. },
  14543. {
  14544. name: "Tera Kaiju",
  14545. height: math.unit(800, "gigameters")
  14546. },
  14547. {
  14548. name: "Kaiju Dragon Goddess",
  14549. height: math.unit(26, "zettaparsecs")
  14550. },
  14551. ]
  14552. )
  14553. characterMakers["Malfaren"] = () => makeCharacter(
  14554. { name: "Malfaren" },
  14555. {
  14556. side: {
  14557. height: math.unit(283/124*6, "feet"),
  14558. weight: math.unit(35000, "lb"),
  14559. name: "Side",
  14560. image: {
  14561. source: "./media/characters/malfaren/side.svg",
  14562. extra: 2500/1010,
  14563. bottom: 0.01
  14564. }
  14565. },
  14566. front: {
  14567. height: math.unit(22.36, "feet"),
  14568. weight: math.unit(35000, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/malfaren/front.svg",
  14572. extra: 1631/1476,
  14573. bottom: 0.01
  14574. }
  14575. },
  14576. maw: {
  14577. height: math.unit(6.9, "feet"),
  14578. name: "Maw",
  14579. image: {
  14580. source: "./media/characters/malfaren/maw.svg"
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Big",
  14587. height: math.unit(283/162*6, "feet"),
  14588. },
  14589. {
  14590. name: "Bigger",
  14591. height: math.unit(283/124*6, "feet")
  14592. },
  14593. {
  14594. name: "Massive",
  14595. height: math.unit(283/92*6, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "👀💦",
  14600. height: math.unit(283/73*6, "feet"),
  14601. },
  14602. ]
  14603. )
  14604. characterMakers["Kernel"] = () => makeCharacter(
  14605. { name: "Kernel" },
  14606. {
  14607. front: {
  14608. height: math.unit(1.7, "m"),
  14609. weight: math.unit(70, "kg"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/kernel/front.svg",
  14613. extra: 222/210,
  14614. bottom: 0.007
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Nano",
  14621. height: math.unit(17, "micrometers")
  14622. },
  14623. {
  14624. name: "Micro",
  14625. height: math.unit(1.7, "mm")
  14626. },
  14627. {
  14628. name: "Small",
  14629. height: math.unit(1.7, "cm")
  14630. },
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(1.7, "m"),
  14634. default: true
  14635. },
  14636. ]
  14637. )
  14638. characterMakers["Jayne Folest"] = () => makeCharacter(
  14639. { name: "Jayne Folest" },
  14640. {
  14641. front: {
  14642. height: math.unit(1.75, "meters"),
  14643. weight: math.unit(65, "kg"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/jayne-folest/front.svg",
  14647. extra: 2115/2007,
  14648. bottom: 0.02
  14649. }
  14650. },
  14651. back: {
  14652. height: math.unit(1.75, "meters"),
  14653. weight: math.unit(65, "kg"),
  14654. name: "Back",
  14655. image: {
  14656. source: "./media/characters/jayne-folest/back.svg",
  14657. extra: 2115/2007,
  14658. bottom: 0.005
  14659. }
  14660. },
  14661. frontClothed: {
  14662. height: math.unit(1.75, "meters"),
  14663. weight: math.unit(65, "kg"),
  14664. name: "Front (Clothed)",
  14665. image: {
  14666. source: "./media/characters/jayne-folest/front-clothed.svg",
  14667. extra: 2115/2007,
  14668. bottom: 0.035
  14669. }
  14670. },
  14671. hand: {
  14672. height: math.unit(1/1.260, "feet"),
  14673. name: "Hand",
  14674. image: {
  14675. source: "./media/characters/jayne-folest/hand.svg"
  14676. }
  14677. },
  14678. foot: {
  14679. height: math.unit(1/0.918, "feet"),
  14680. name: "Foot",
  14681. image: {
  14682. source: "./media/characters/jayne-folest/foot.svg"
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Micro",
  14689. height: math.unit(4, "cm")
  14690. },
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(1.75, "meters")
  14694. },
  14695. {
  14696. name: "Macro",
  14697. height: math.unit(47.5, "meters"),
  14698. default: true
  14699. },
  14700. ]
  14701. )
  14702. characterMakers["Algier"] = () => makeCharacter(
  14703. { name: "Algier" },
  14704. {
  14705. front: {
  14706. height: math.unit(180, "cm"),
  14707. weight: math.unit(70, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/algier/front.svg",
  14711. extra: 596/572,
  14712. bottom: 0.04
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(180, "cm"),
  14717. weight: math.unit(70, "kg"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/algier/back.svg",
  14721. extra: 596/572,
  14722. bottom: 0.025
  14723. }
  14724. },
  14725. frontdressed: {
  14726. height: math.unit(180, "cm"),
  14727. weight: math.unit(150, "kg"),
  14728. name: "Front-dressed",
  14729. image: {
  14730. source: "./media/characters/algier/front-dressed.svg",
  14731. extra: 596/572,
  14732. bottom: 0.038
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Micro",
  14739. height: math.unit(5, "cm")
  14740. },
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(180, "cm"),
  14744. default: true
  14745. },
  14746. {
  14747. name: "Macro",
  14748. height: math.unit(64, "m")
  14749. },
  14750. ]
  14751. )
  14752. characterMakers["Pretzel"] = () => makeCharacter(
  14753. { name: "Pretzel" },
  14754. {
  14755. upright: {
  14756. height: math.unit(7, "feet"),
  14757. weight: math.unit(300, "lb"),
  14758. name: "Upright",
  14759. image: {
  14760. source: "./media/characters/pretzel/upright.svg",
  14761. extra: 534/522,
  14762. bottom: 0.065
  14763. }
  14764. },
  14765. sprawling: {
  14766. height: math.unit(3.75, "feet"),
  14767. weight: math.unit(300, "lb"),
  14768. name: "Sprawling",
  14769. image: {
  14770. source: "./media/characters/pretzel/sprawling.svg",
  14771. extra: 314/281,
  14772. bottom: 0.1
  14773. }
  14774. },
  14775. tongue: {
  14776. height: math.unit(2, "feet"),
  14777. name: "Tongue",
  14778. image: {
  14779. source: "./media/characters/pretzel/tongue.svg"
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(7, "feet"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Oversized",
  14791. height: math.unit(15, "feet")
  14792. },
  14793. {
  14794. name: "Huge",
  14795. height: math.unit(30, "feet")
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(250, "feet")
  14800. },
  14801. ]
  14802. )
  14803. characterMakers["Roxi"] = () => makeCharacter(
  14804. { name: "Roxi" },
  14805. {
  14806. sideFront: {
  14807. height: math.unit(5 + 2/12, "feet"),
  14808. weight: math.unit(120, "lb"),
  14809. name: "Front Side",
  14810. image: {
  14811. source: "./media/characters/roxi/side-front.svg",
  14812. extra: 2924/2717,
  14813. bottom: 0.08
  14814. }
  14815. },
  14816. sideBack: {
  14817. height: math.unit(5 + 2/12, "feet"),
  14818. weight: math.unit(120, "lb"),
  14819. name: "Back Side",
  14820. image: {
  14821. source: "./media/characters/roxi/side-back.svg",
  14822. extra: 2904/2693,
  14823. bottom: 0.06
  14824. }
  14825. },
  14826. front: {
  14827. height: math.unit(5 + 2/12, "feet"),
  14828. weight: math.unit(120, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/roxi/front.svg",
  14832. extra: 2028/1907,
  14833. bottom: 0.01
  14834. }
  14835. },
  14836. frontAlt: {
  14837. height: math.unit(5 + 2/12, "feet"),
  14838. weight: math.unit(120, "lb"),
  14839. name: "Front (Alt)",
  14840. image: {
  14841. source: "./media/characters/roxi/front-alt.svg",
  14842. extra: 1828/1798,
  14843. bottom: 0.01
  14844. }
  14845. },
  14846. sitting: {
  14847. height: math.unit(2.8, "feet"),
  14848. weight: math.unit(120, "lb"),
  14849. name: "Sitting",
  14850. image: {
  14851. source: "./media/characters/roxi/sitting.svg",
  14852. extra: 2660/2462,
  14853. bottom: 0.1
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(5 + 2/12, "feet"),
  14861. default: true
  14862. },
  14863. ]
  14864. )
  14865. characterMakers["Shadow"] = () => makeCharacter(
  14866. { name: "Shadow" },
  14867. {
  14868. side: {
  14869. height: math.unit(55, "feet"),
  14870. weight: math.unit(153, "tons"),
  14871. name: "Side",
  14872. image: {
  14873. source: "./media/characters/shadow/side.svg",
  14874. extra: 701/628,
  14875. bottom: 0.02
  14876. }
  14877. },
  14878. flying: {
  14879. height: math.unit(145, "feet"),
  14880. weight: math.unit(153, "tons"),
  14881. name: "Flying",
  14882. image: {
  14883. source: "./media/characters/shadow/flying.svg"
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(55, "feet"),
  14891. default: true
  14892. },
  14893. ]
  14894. )
  14895. characterMakers["Marcie"] = () => makeCharacter(
  14896. { name: "Marcie" },
  14897. {
  14898. front: {
  14899. height: math.unit(6, "feet"),
  14900. weight: math.unit(200, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/marcie/front.svg",
  14904. extra: 960/876,
  14905. bottom: 58/1017.87
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Macro",
  14912. height: math.unit(1, "mile"),
  14913. default: true
  14914. },
  14915. ]
  14916. )
  14917. characterMakers["Kachina"] = () => makeCharacter(
  14918. { name: "Kachina" },
  14919. {
  14920. front: {
  14921. height: math.unit(7, "feet"),
  14922. weight: math.unit(200, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/kachina/front.svg",
  14926. extra: 1290.68/1119,
  14927. bottom: 36.5/1327.18
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(7, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. )
  14939. characterMakers["Kash"] = () => makeCharacter(
  14940. { name: "Kash" },
  14941. {
  14942. looking: {
  14943. height: math.unit(2, "meters"),
  14944. weight: math.unit(300, "kg"),
  14945. name: "Looking",
  14946. image: {
  14947. source: "./media/characters/kash/looking.svg",
  14948. extra: 474/344,
  14949. bottom: 0.03
  14950. }
  14951. },
  14952. side: {
  14953. height: math.unit(2, "meters"),
  14954. weight: math.unit(300, "kg"),
  14955. name: "Side",
  14956. image: {
  14957. source: "./media/characters/kash/side.svg",
  14958. extra: 302/251,
  14959. bottom: 0.03
  14960. }
  14961. },
  14962. front: {
  14963. height: math.unit(2, "meters"),
  14964. weight: math.unit(300, "kg"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/kash/front.svg",
  14968. extra: 495/360,
  14969. bottom: 0.015
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(2, "meters"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Big",
  14981. height: math.unit(3, "meters")
  14982. },
  14983. {
  14984. name: "Large",
  14985. height: math.unit(5, "meters")
  14986. },
  14987. ]
  14988. )
  14989. characterMakers["Lalim"] = () => makeCharacter(
  14990. { name: "Lalim" },
  14991. {
  14992. feeding: {
  14993. height: math.unit(6.7, "feet"),
  14994. weight: math.unit(350, "lb"),
  14995. name: "Feeding",
  14996. image: {
  14997. source: "./media/characters/lalim/feeding.svg",
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(6.7, "feet"),
  15005. default: true
  15006. },
  15007. ]
  15008. )
  15009. characterMakers["De'Vout"] = () => makeCharacter(
  15010. { name: "De'Vout" },
  15011. {
  15012. front: {
  15013. height: math.unit(9.5, "feet"),
  15014. weight: math.unit(600, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/de'vout/front.svg",
  15018. extra: 1443/1328,
  15019. bottom: 0.025
  15020. }
  15021. },
  15022. back: {
  15023. height: math.unit(9.5, "feet"),
  15024. weight: math.unit(600, "lb"),
  15025. name: "Back",
  15026. image: {
  15027. source: "./media/characters/de'vout/back.svg",
  15028. extra: 1443/1328
  15029. }
  15030. },
  15031. frontDressed: {
  15032. height: math.unit(9.5, "feet"),
  15033. weight: math.unit(600, "lb"),
  15034. name: "Front (Dressed",
  15035. image: {
  15036. source: "./media/characters/de'vout/front-dressed.svg",
  15037. extra: 1443/1328,
  15038. bottom: 0.025
  15039. }
  15040. },
  15041. backDressed: {
  15042. height: math.unit(9.5, "feet"),
  15043. weight: math.unit(600, "lb"),
  15044. name: "Back (Dressed",
  15045. image: {
  15046. source: "./media/characters/de'vout/back-dressed.svg",
  15047. extra: 1443/1328
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(9.5, "feet"),
  15055. default: true
  15056. },
  15057. ]
  15058. )
  15059. characterMakers["Talana"] = () => makeCharacter(
  15060. { name: "Talana" },
  15061. {
  15062. front: {
  15063. height: math.unit(8, "feet"),
  15064. weight: math.unit(225, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/talana/front.svg",
  15068. extra: 1410/1300,
  15069. bottom: 0.015
  15070. }
  15071. },
  15072. frontDressed: {
  15073. height: math.unit(8, "feet"),
  15074. weight: math.unit(225, "lb"),
  15075. name: "Front (Dressed",
  15076. image: {
  15077. source: "./media/characters/talana/front-dressed.svg",
  15078. extra: 1410/1300,
  15079. bottom: 0.015
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(8, "feet"),
  15087. default: true
  15088. },
  15089. ]
  15090. )
  15091. characterMakers["Xeauvok"] = () => makeCharacter(
  15092. { name: "Xeauvok" },
  15093. {
  15094. side: {
  15095. height: math.unit(7.2, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Side",
  15098. image: {
  15099. source: "./media/characters/xeauvok/side.svg",
  15100. extra: 1975/1523,
  15101. bottom: 0.07
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Normal",
  15108. height: math.unit(7.2, "feet"),
  15109. default: true
  15110. },
  15111. ]
  15112. )
  15113. characterMakers["Zara"] = () => makeCharacter(
  15114. { name: "Zara" },
  15115. {
  15116. side: {
  15117. height: math.unit(10, "feet"),
  15118. weight: math.unit(900, "kg"),
  15119. name: "Side",
  15120. image: {
  15121. source: "./media/characters/zara/side.svg",
  15122. extra: 504/498
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(10, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. )
  15134. characterMakers["Richard (Dragon)"] = () => makeCharacter(
  15135. { name: "Richard (Dragon)" },
  15136. {
  15137. side: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Side",
  15141. image: {
  15142. source: "./media/characters/richard-dragon/side.svg",
  15143. extra: 845/340,
  15144. bottom: 0.017
  15145. }
  15146. },
  15147. maw: {
  15148. height: math.unit(2.97, "feet"),
  15149. name: "Maw",
  15150. image: {
  15151. source: "./media/characters/richard-dragon/maw.svg"
  15152. }
  15153. },
  15154. },
  15155. [
  15156. ]
  15157. )
  15158. characterMakers["Richard (Smeargle)"] = () => makeCharacter(
  15159. { name: "Richard (Smeargle)" },
  15160. {
  15161. front: {
  15162. height: math.unit(4, "feet"),
  15163. weight: math.unit(100, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/richard-smeargle/front.svg",
  15167. extra: 2952/2820,
  15168. bottom: 0.028
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(4, "feet"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Dynamax",
  15180. height: math.unit(20, "meters")
  15181. },
  15182. ]
  15183. )
  15184. characterMakers["Klay"] = () => makeCharacter(
  15185. { name: "Klay" },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(110, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/klay/front.svg",
  15193. extra: 962/883,
  15194. bottom: 0.04
  15195. }
  15196. },
  15197. back: {
  15198. height: math.unit(6, "feet"),
  15199. weight: math.unit(110, "lb"),
  15200. name: "Back",
  15201. image: {
  15202. source: "./media/characters/klay/back.svg",
  15203. extra: 962/883
  15204. }
  15205. },
  15206. beans: {
  15207. height: math.unit(1.15, "feet"),
  15208. name: "Beans",
  15209. image: {
  15210. source: "./media/characters/klay/beans.svg"
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Micro",
  15217. height: math.unit(6, "inches")
  15218. },
  15219. {
  15220. name: "Mini",
  15221. height: math.unit(3, "feet")
  15222. },
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(6, "feet"),
  15226. default: true
  15227. },
  15228. {
  15229. name: "Big",
  15230. height: math.unit(25, "feet")
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(100, "feet")
  15235. },
  15236. {
  15237. name: "Megamacro",
  15238. height: math.unit(400, "feet")
  15239. },
  15240. ]
  15241. )
  15242. characterMakers["Marcus"] = () => makeCharacter(
  15243. { name: "Marcus" },
  15244. {
  15245. front: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(160, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/marcus/front.svg",
  15251. extra: 734/676,
  15252. bottom: 0.03
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Little",
  15259. height: math.unit(6, "feet")
  15260. },
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(110, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Macro",
  15268. height: math.unit(250, "feet")
  15269. },
  15270. {
  15271. name: "Megamacro",
  15272. height: math.unit(1000, "feet")
  15273. },
  15274. ]
  15275. )
  15276. characterMakers["Claude DelRoute"] = () => makeCharacter(
  15277. { name: "Claude DelRoute" },
  15278. {
  15279. front: {
  15280. height: math.unit(7, "feet"),
  15281. weight: math.unit(275, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/claude-delroute/front.svg",
  15285. extra: 230/214,
  15286. bottom: 0.007
  15287. }
  15288. },
  15289. side: {
  15290. height: math.unit(7, "feet"),
  15291. weight: math.unit(275, "lb"),
  15292. name: "Side",
  15293. image: {
  15294. source: "./media/characters/claude-delroute/side.svg",
  15295. extra: 222/214,
  15296. bottom: 0.01
  15297. }
  15298. },
  15299. back: {
  15300. height: math.unit(7, "feet"),
  15301. weight: math.unit(275, "lb"),
  15302. name: "Back",
  15303. image: {
  15304. source: "./media/characters/claude-delroute/back.svg",
  15305. extra: 230/214,
  15306. bottom: 0.015
  15307. }
  15308. },
  15309. maw: {
  15310. height: math.unit(0.6407, "meters"),
  15311. name: "Maw",
  15312. image: {
  15313. source: "./media/characters/claude-delroute/maw.svg"
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(7, "feet"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Lorge",
  15325. height: math.unit(20, "feet")
  15326. },
  15327. ]
  15328. )
  15329. characterMakers["Dragonien"] = () => makeCharacter(
  15330. { name: "Dragonien" },
  15331. {
  15332. front: {
  15333. height: math.unit(8 + 4/12, "feet"),
  15334. weight: math.unit(600, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/dragonien/front.svg",
  15338. extra: 100/94,
  15339. bottom: 3.3/103.3445
  15340. }
  15341. },
  15342. back: {
  15343. height: math.unit(8 + 4/12, "feet"),
  15344. weight: math.unit(600, "lb"),
  15345. name: "Back",
  15346. image: {
  15347. source: "./media/characters/dragonien/back.svg",
  15348. extra: 776/746,
  15349. bottom: 6.4/782.0616
  15350. }
  15351. },
  15352. foot: {
  15353. height: math.unit(1.54, "feet"),
  15354. name: "Foot",
  15355. image: {
  15356. source: "./media/characters/dragonien/foot.svg",
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(8 + 4/12, "feet"),
  15364. default: true
  15365. },
  15366. {
  15367. name: "Macro",
  15368. height: math.unit(200, "feet")
  15369. },
  15370. {
  15371. name: "Megamacro",
  15372. height: math.unit(1, "mile")
  15373. },
  15374. {
  15375. name: "Gigamacro",
  15376. height: math.unit(1000, "miles")
  15377. },
  15378. ]
  15379. )
  15380. characterMakers["Desta"] = () => makeCharacter(
  15381. { name: "Desta" },
  15382. {
  15383. front: {
  15384. height: math.unit(5 + 2/12, "feet"),
  15385. weight: math.unit(110, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/desta/front.svg",
  15389. extra: 1482/1417
  15390. }
  15391. },
  15392. side: {
  15393. height: math.unit(5 + 2/12, "feet"),
  15394. weight: math.unit(110, "lb"),
  15395. name: "Side",
  15396. image: {
  15397. source: "./media/characters/desta/side.svg",
  15398. extra: 2579/2491,
  15399. bottom: 0.053
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Micro",
  15406. height: math.unit(6, "inches")
  15407. },
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 2/12, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(62, "feet")
  15416. },
  15417. {
  15418. name: "Megamacro",
  15419. height: math.unit(1800, "feet")
  15420. },
  15421. ]
  15422. )
  15423. characterMakers["Storm Alystar"] = () => makeCharacter(
  15424. { name: "Storm Alystar" },
  15425. {
  15426. front: {
  15427. height: math.unit(10, "feet"),
  15428. weight: math.unit(700, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/storm-alystar/front.svg",
  15432. extra: 2112/1898,
  15433. bottom: 0.034
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Micro",
  15440. height: math.unit(3.5, "inches")
  15441. },
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(10, "feet"),
  15445. default: true
  15446. },
  15447. {
  15448. name: "Macro",
  15449. height: math.unit(400, "feet")
  15450. },
  15451. {
  15452. name: "Deific",
  15453. height: math.unit(60, "miles")
  15454. },
  15455. ]
  15456. )
  15457. characterMakers["Ilia"] = () => makeCharacter(
  15458. { name: "Ilia" },
  15459. {
  15460. front: {
  15461. height: math.unit(2.35, "meters"),
  15462. weight: math.unit(119, "kg"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/ilia/front.svg",
  15466. extra: 1285/1255,
  15467. bottom: 0.06
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(2.35, "meters")
  15475. },
  15476. {
  15477. name: "Macro",
  15478. height: math.unit(140, "meters"),
  15479. default: true
  15480. },
  15481. {
  15482. name: "Megamacro",
  15483. height: math.unit(100, "miles")
  15484. },
  15485. ]
  15486. )
  15487. characterMakers["KingDead"] = () => makeCharacter(
  15488. { name: "KingDead" },
  15489. {
  15490. front: {
  15491. height: math.unit(6 + 5/12, "feet"),
  15492. weight: math.unit(190, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/kingdead/front.svg",
  15496. extra: 1228/1177
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(7, "inches")
  15504. },
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(6 + 5/12, "feet")
  15508. },
  15509. {
  15510. name: "Macro",
  15511. height: math.unit(150, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(200, "miles")
  15517. },
  15518. ]
  15519. )
  15520. characterMakers["Kyrehx"] = () => makeCharacter(
  15521. { name: "Kyrehx" },
  15522. {
  15523. front: {
  15524. height: math.unit(8, "feet"),
  15525. weight: math.unit(600, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/kyrehx/front.svg",
  15529. extra: 1195/1095,
  15530. bottom: 0.034
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Micro",
  15537. height: math.unit(2, "inches")
  15538. },
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(8, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Macro",
  15546. height: math.unit(255, "feet")
  15547. },
  15548. ]
  15549. )
  15550. characterMakers["Xang"] = () => makeCharacter(
  15551. { name: "Xang" },
  15552. {
  15553. front: {
  15554. height: math.unit(0.935 * (6 + 8/12), "feet"),
  15555. weight: math.unit(184, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/xang/front.svg",
  15559. extra: 845/755
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(0.935 * (6 + 8/12), "feet"),
  15567. default: true
  15568. },
  15569. {
  15570. name: "Macro",
  15571. height: math.unit(0.935 * 146, "feet")
  15572. },
  15573. {
  15574. name: "Megamacro",
  15575. height: math.unit(0.935 * 3, "miles")
  15576. },
  15577. ]
  15578. )
  15579. characterMakers["Doc Weardno"] = () => makeCharacter(
  15580. { name: "Doc Weardno" },
  15581. {
  15582. frontDressed: {
  15583. height: math.unit(5 + 7/12, "feet"),
  15584. weight: math.unit(140, "lb"),
  15585. name: "Front (Dressed)",
  15586. image: {
  15587. source: "./media/characters/doc-weardno/front-dressed.svg",
  15588. extra: 263/234
  15589. }
  15590. },
  15591. backDressed: {
  15592. height: math.unit(5 + 7/12, "feet"),
  15593. weight: math.unit(140, "lb"),
  15594. name: "Back (Dressed)",
  15595. image: {
  15596. source: "./media/characters/doc-weardno/back-dressed.svg",
  15597. extra: 266/238
  15598. }
  15599. },
  15600. front: {
  15601. height: math.unit(5 + 7/12, "feet"),
  15602. weight: math.unit(140, "lb"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/doc-weardno/front.svg",
  15606. extra: 254/233
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Micro",
  15613. height: math.unit(3, "inches")
  15614. },
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(5 + 7/12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(25, "feet")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(2, "miles")
  15627. },
  15628. ]
  15629. )
  15630. characterMakers["Seth Whilst"] = () => makeCharacter(
  15631. { name: "Seth Whilst" },
  15632. {
  15633. front: {
  15634. height: math.unit(6 + 2/12, "feet"),
  15635. weight: math.unit(153, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/seth-whilst/front.svg",
  15639. bottom: 0.07
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Micro",
  15646. height: math.unit(5, "inches")
  15647. },
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(6 + 2/12, "feet"),
  15651. default: true
  15652. },
  15653. ]
  15654. )
  15655. characterMakers["Pocket Jabari"] = () => makeCharacter(
  15656. { name: "Pocket Jabari" },
  15657. {
  15658. front: {
  15659. height: math.unit(3, "inches"),
  15660. weight: math.unit(8, "grams"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/pocket-jabari/front.svg",
  15664. extra: 1024/974,
  15665. bottom: 0.039
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Minimicro",
  15672. height: math.unit(8, "mm")
  15673. },
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(3, "inches"),
  15677. default: true
  15678. },
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(3, "feet")
  15682. },
  15683. ]
  15684. )
  15685. characterMakers["Sapphy"] = () => makeCharacter(
  15686. { name: "Sapphy" },
  15687. {
  15688. front: {
  15689. height: math.unit(15, "feet"),
  15690. weight: math.unit(3280, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/sapphy/front.svg",
  15694. extra: 671/577,
  15695. bottom: 0.085
  15696. }
  15697. },
  15698. back: {
  15699. height: math.unit(15, "feet"),
  15700. weight: math.unit(3280, "lb"),
  15701. name: "Back",
  15702. image: {
  15703. source: "./media/characters/sapphy/back.svg",
  15704. extra: 631/607,
  15705. bottom: 0.045
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(15, "feet")
  15713. },
  15714. {
  15715. name: "Casual Macro",
  15716. height: math.unit(120, "feet")
  15717. },
  15718. {
  15719. name: "Macro",
  15720. height: math.unit(2150, "feet"),
  15721. default: true
  15722. },
  15723. {
  15724. name: "Megamacro",
  15725. height: math.unit(8, "miles")
  15726. },
  15727. {
  15728. name: "Galaxy Mom",
  15729. height: math.unit(6, "megalightyears")
  15730. },
  15731. ]
  15732. )
  15733. characterMakers["Kiro"] = () => makeCharacter(
  15734. { name: "Kiro" },
  15735. {
  15736. front: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(170, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/kiro/front.svg",
  15742. extra: 1064/1012,
  15743. bottom: 0.052
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Micro",
  15750. height: math.unit(6, "inches")
  15751. },
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(6, "feet"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Macro",
  15759. height: math.unit(72, "feet")
  15760. },
  15761. ]
  15762. )
  15763. characterMakers["Irishfox"] = () => makeCharacter(
  15764. { name: "Irishfox" },
  15765. {
  15766. front: {
  15767. height: math.unit(5 + 9/12, "feet"),
  15768. weight: math.unit(175, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/irishfox/front.svg",
  15772. extra: 1912/1680,
  15773. bottom: 0.02
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Nano",
  15780. height: math.unit(1, "mm")
  15781. },
  15782. {
  15783. name: "Micro",
  15784. height: math.unit(2, "inches")
  15785. },
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(5 + 9/12, "feet"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Macro",
  15793. height: math.unit(45, "feet")
  15794. },
  15795. ]
  15796. )
  15797. characterMakers["Aronai Sieyes"] = () => makeCharacter(
  15798. { name: "Aronai Sieyes" },
  15799. {
  15800. front: {
  15801. height: math.unit(6 + 1/12, "feet"),
  15802. weight: math.unit(150, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/aronai-sieyes/front.svg",
  15806. extra: 1556/1480,
  15807. bottom: 0.015
  15808. }
  15809. },
  15810. side: {
  15811. height: math.unit(6 + 1/12, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Side",
  15814. image: {
  15815. source: "./media/characters/aronai-sieyes/side.svg",
  15816. extra: 1433/1390,
  15817. bottom: 0.0393
  15818. }
  15819. },
  15820. back: {
  15821. height: math.unit(6 + 1/12, "feet"),
  15822. weight: math.unit(150, "lb"),
  15823. name: "Back",
  15824. image: {
  15825. source: "./media/characters/aronai-sieyes/back.svg",
  15826. extra: 1544/1494,
  15827. bottom: 0.02
  15828. }
  15829. },
  15830. frontClothed: {
  15831. height: math.unit(6 + 1/12, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front (Clothed)",
  15834. image: {
  15835. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  15836. extra: 1582/1527
  15837. }
  15838. },
  15839. feral: {
  15840. height: math.unit(18, "feet"),
  15841. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  15842. name: "Feral",
  15843. image: {
  15844. source: "./media/characters/aronai-sieyes/feral.svg",
  15845. extra: 1530/1240,
  15846. bottom: 0.035
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(2, "inches")
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(6 + 1/12, "feet"),
  15858. default: true
  15859. }
  15860. ]
  15861. )
  15862. characterMakers["Xuna"] = () => makeCharacter(
  15863. { name: "Xuna" },
  15864. {
  15865. front: {
  15866. height: math.unit(12, "feet"),
  15867. weight: math.unit(410, "kg"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/xuna/front.svg",
  15871. extra: 2184/1980
  15872. }
  15873. },
  15874. side: {
  15875. height: math.unit(12, "feet"),
  15876. weight: math.unit(410, "kg"),
  15877. name: "Side",
  15878. image: {
  15879. source: "./media/characters/xuna/side.svg",
  15880. extra: 2184/1980
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(12, "feet"),
  15885. weight: math.unit(410, "kg"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/xuna/back.svg",
  15889. extra: 2184/1980
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Nano glow",
  15896. height: math.unit(10, "nm")
  15897. },
  15898. {
  15899. name: "Micro floof",
  15900. height: math.unit(0.3, "m")
  15901. },
  15902. {
  15903. name: "Huggable softy boi",
  15904. height: math.unit(3.6576, "m"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Admirable floof",
  15909. height: math.unit(80, "meters")
  15910. },
  15911. {
  15912. name: "Gentle macro",
  15913. height: math.unit(300, "meters")
  15914. },
  15915. {
  15916. name: "Very careful floof",
  15917. height: math.unit(3200, "meters")
  15918. },
  15919. {
  15920. name: "The mega floof",
  15921. height: math.unit(36000, "meters")
  15922. },
  15923. {
  15924. name: "Giga-fur-Wicker",
  15925. height: math.unit(4800000, "meters")
  15926. },
  15927. {
  15928. name: "Licky world",
  15929. height: math.unit(20000000, "meters")
  15930. },
  15931. {
  15932. name: "Floofy cyan sun",
  15933. height: math.unit(1500000000, "meters")
  15934. },
  15935. {
  15936. name: "Milky Wicker",
  15937. height: math.unit(1000000000000000000000, "meters")
  15938. },
  15939. {
  15940. name: "The observing Wicker",
  15941. height: math.unit(999999999999999999999999999, "meters")
  15942. },
  15943. ]
  15944. )
  15945. characterMakers["Arokha Sieyes"] = () => makeCharacter(
  15946. { name: "Arokha Sieyes" },
  15947. {
  15948. front: {
  15949. height: math.unit(5 + 9/12, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/arokha-sieyes/front.svg",
  15954. extra: 1425/1284,
  15955. bottom: 0.05
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(5 + 9/12, "feet")
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(30, "meters"),
  15967. default: true
  15968. },
  15969. ]
  15970. )
  15971. characterMakers["Arokh Sieyes"] = () => makeCharacter(
  15972. { name: "Arokh Sieyes" },
  15973. {
  15974. front: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(180, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/arokh-sieyes/front.svg",
  15980. extra: 1830/1769,
  15981. bottom: 0.01
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(6, "feet")
  15989. },
  15990. {
  15991. name: "Macro",
  15992. height: math.unit(30, "meters"),
  15993. default: true
  15994. },
  15995. ]
  15996. )
  15997. characterMakers["Goldeneye"] = () => makeCharacter(
  15998. { name: "Goldeneye" },
  15999. {
  16000. side: {
  16001. height: math.unit(13 + 1/12, "feet"),
  16002. weight: math.unit(8.5, "tonnes"),
  16003. name: "Side",
  16004. image: {
  16005. source: "./media/characters/goldeneye/side.svg",
  16006. extra: 1182/778,
  16007. bottom: 0.067
  16008. }
  16009. },
  16010. paw: {
  16011. height: math.unit(3.4, "feet"),
  16012. name: "Paw",
  16013. image: {
  16014. source: "./media/characters/goldeneye/paw.svg"
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(13 + 1/12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. )
  16026. characterMakers["Leonardo Lycheborne"] = () => makeCharacter(
  16027. { name: "Leonardo Lycheborne" },
  16028. {
  16029. front: {
  16030. height: math.unit(6 + 1/12, "feet"),
  16031. weight: math.unit(210, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/leonardo-lycheborne/front.svg",
  16035. extra: 390/365,
  16036. bottom: 0.032
  16037. }
  16038. },
  16039. side: {
  16040. height: math.unit(6 + 1/12, "feet"),
  16041. weight: math.unit(210, "lb"),
  16042. name: "Side",
  16043. image: {
  16044. source: "./media/characters/leonardo-lycheborne/side.svg",
  16045. extra: 390/365,
  16046. bottom: 0.005
  16047. }
  16048. },
  16049. back: {
  16050. height: math.unit(6 + 1/12, "feet"),
  16051. weight: math.unit(210, "lb"),
  16052. name: "Back",
  16053. image: {
  16054. source: "./media/characters/leonardo-lycheborne/back.svg",
  16055. extra: 392/366,
  16056. bottom: 0.01
  16057. }
  16058. },
  16059. hand: {
  16060. height: math.unit(1.08, "feet"),
  16061. name: "Hand",
  16062. image: {
  16063. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16064. }
  16065. },
  16066. foot: {
  16067. height: math.unit(1.32, "feet"),
  16068. name: "Foot",
  16069. image: {
  16070. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16071. }
  16072. },
  16073. were: {
  16074. height: math.unit(20, "feet"),
  16075. weight: math.unit(7800, "lb"),
  16076. name: "Were",
  16077. image: {
  16078. source: "./media/characters/leonardo-lycheborne/were.svg",
  16079. extra: 308/294,
  16080. bottom: 0.048
  16081. }
  16082. },
  16083. feral: {
  16084. height: math.unit(7.5, "feet"),
  16085. weight: math.unit(600, "lb"),
  16086. name: "Feral",
  16087. image: {
  16088. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16089. extra: 210/186,
  16090. bottom: 0.108
  16091. }
  16092. },
  16093. taur: {
  16094. height: math.unit(11, "feet"),
  16095. weight: math.unit(3300, "lb"),
  16096. name: "Taur",
  16097. image: {
  16098. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16099. extra: 320/303,
  16100. bottom: 0.025
  16101. }
  16102. },
  16103. barghest: {
  16104. height: math.unit(11, "feet"),
  16105. weight: math.unit(1300, "lb"),
  16106. name: "Barghest",
  16107. image: {
  16108. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  16109. extra: 323/302,
  16110. bottom: 0.027
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(6 + 1/12, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. )
  16122. characterMakers["Jet"] = () => makeCharacter(
  16123. { name: "Jet" },
  16124. {
  16125. front: {
  16126. height: math.unit(10, "feet"),
  16127. weight: math.unit(350, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/jet/front.svg",
  16131. extra: 2050/1980,
  16132. bottom: 0.013
  16133. }
  16134. },
  16135. back: {
  16136. height: math.unit(10, "feet"),
  16137. weight: math.unit(350, "lb"),
  16138. name: "Back",
  16139. image: {
  16140. source: "./media/characters/jet/back.svg",
  16141. extra: 2050/1980,
  16142. bottom: 0.013
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Micro",
  16149. height: math.unit(6, "inches")
  16150. },
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(10, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(100, "feet")
  16159. },
  16160. ]
  16161. )
  16162. characterMakers["Tanarath"] = () => makeCharacter(
  16163. { name: "Tanarath" },
  16164. {
  16165. front: {
  16166. height: math.unit(15, "feet"),
  16167. weight: math.unit(2800, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/tanarath/front.svg",
  16171. extra: 2392/2220,
  16172. bottom: 0.03
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(15, "feet"),
  16177. weight: math.unit(2800, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/tanarath/back.svg",
  16181. extra: 2392/2220,
  16182. bottom: 0.03
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(15, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. )
  16194. characterMakers["Patty CattyBatty"] = () => makeCharacter(
  16195. { name: "Patty CattyBatty" },
  16196. {
  16197. front: {
  16198. height: math.unit(7 + 1/12, "feet"),
  16199. weight: math.unit(175, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/patty-cattybatty/front.svg",
  16203. extra: 908/874,
  16204. bottom: 0.025
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Micro",
  16211. height: math.unit(1, "inch")
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(7 + 1/12, "feet")
  16216. },
  16217. {
  16218. name: "Mini Macro",
  16219. height: math.unit(155, "feet")
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(1077, "feet")
  16224. },
  16225. {
  16226. name: "Mega Macro",
  16227. height: math.unit(47650, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Giga Macro",
  16232. height: math.unit(440, "miles")
  16233. },
  16234. {
  16235. name: "Tera Macro",
  16236. height: math.unit(8700, "miles")
  16237. },
  16238. {
  16239. name: "Planetary Macro",
  16240. height: math.unit(32700, "miles")
  16241. },
  16242. {
  16243. name: "Solar Macro",
  16244. height: math.unit(550000, "miles")
  16245. },
  16246. {
  16247. name: "Celestial Macro",
  16248. height: math.unit(2.5, "AU")
  16249. },
  16250. ]
  16251. )
  16252. characterMakers["Cappu"] = () => makeCharacter(
  16253. { name: "Cappu" },
  16254. {
  16255. front: {
  16256. height: math.unit(4 + 5/12, "feet"),
  16257. weight: math.unit(90, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/cappu/front.svg",
  16261. extra: 1247/1152,
  16262. bottom: 0.012
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(4 + 5/12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. )
  16274. characterMakers["Sebi"] = () => makeCharacter(
  16275. { name: "Sebi" },
  16276. {
  16277. frontDressed: {
  16278. height: math.unit(70, "cm"),
  16279. weight: math.unit(6, "kg"),
  16280. name: "Front (Dressed)",
  16281. image: {
  16282. source: "./media/characters/sebi/front-dressed.svg",
  16283. extra: 713.5/686.5,
  16284. bottom: 0.003
  16285. }
  16286. },
  16287. front: {
  16288. height: math.unit(70, "cm"),
  16289. weight: math.unit(5, "kg"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/sebi/front.svg",
  16293. extra: 713.5/686.5,
  16294. bottom: 0.003
  16295. }
  16296. }
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(70, "cm"),
  16302. default: true
  16303. },
  16304. {
  16305. name: "Macro",
  16306. height: math.unit(8, "meters")
  16307. },
  16308. ]
  16309. )
  16310. characterMakers["Typhek"] = () => makeCharacter(
  16311. { name: "Typhek" },
  16312. {
  16313. front: {
  16314. height: math.unit(6, "feet"),
  16315. weight: math.unit(150, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/typhek/front.svg",
  16319. extra: 1948/1929,
  16320. bottom: 0.025
  16321. }
  16322. },
  16323. side: {
  16324. height: math.unit(6, "feet"),
  16325. weight: math.unit(150, "lb"),
  16326. name: "Side",
  16327. image: {
  16328. source: "./media/characters/typhek/side.svg",
  16329. extra: 2034/2010,
  16330. bottom: 0.003
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(150, "lb"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/typhek/back.svg",
  16339. extra: 2005/1978,
  16340. bottom: 0.004
  16341. }
  16342. },
  16343. palm: {
  16344. height: math.unit(1.2, "feet"),
  16345. name: "Palm",
  16346. image: {
  16347. source: "./media/characters/typhek/palm.svg"
  16348. }
  16349. },
  16350. fist: {
  16351. height: math.unit(1.1, "feet"),
  16352. name: "Fist",
  16353. image: {
  16354. source: "./media/characters/typhek/fist.svg"
  16355. }
  16356. },
  16357. foot: {
  16358. height: math.unit(1.57, "feet"),
  16359. name: "Foot",
  16360. image: {
  16361. source: "./media/characters/typhek/foot.svg"
  16362. }
  16363. },
  16364. sole: {
  16365. height: math.unit(2.05, "feet"),
  16366. name: "Sole",
  16367. image: {
  16368. source: "./media/characters/typhek/sole.svg"
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Macro",
  16375. height: math.unit(40, "stories"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Megamacro",
  16380. height: math.unit(1, "mile")
  16381. },
  16382. {
  16383. name: "Gigamacro",
  16384. height: math.unit(4000, "solarradii")
  16385. },
  16386. {
  16387. name: "Universal",
  16388. height: math.unit(1.1, "universes")
  16389. }
  16390. ]
  16391. )
  16392. characterMakers["Kassy"] = () => makeCharacter(
  16393. { name: "Kassy" },
  16394. {
  16395. side: {
  16396. height: math.unit(5 + 7/12, "feet"),
  16397. weight: math.unit(150, "lb"),
  16398. name: "Side",
  16399. image: {
  16400. source: "./media/characters/kassy/side.svg",
  16401. extra: 1280/1225,
  16402. bottom: 0.002
  16403. }
  16404. },
  16405. front: {
  16406. height: math.unit(5 + 7/12, "feet"),
  16407. weight: math.unit(150, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/kassy/front.svg",
  16411. extra: 1280/1225,
  16412. bottom: 0.025
  16413. }
  16414. },
  16415. back: {
  16416. height: math.unit(5 + 7/12, "feet"),
  16417. weight: math.unit(150, "lb"),
  16418. name: "Back",
  16419. image: {
  16420. source: "./media/characters/kassy/back.svg",
  16421. extra: 1280/1225,
  16422. bottom: 0.002
  16423. }
  16424. },
  16425. foot: {
  16426. height: math.unit(1.266, "feet"),
  16427. name: "Foot",
  16428. image: {
  16429. source: "./media/characters/kassy/foot.svg"
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(5 + 7/12, "feet")
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(137, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Megamacro",
  16445. height: math.unit(1, "mile")
  16446. },
  16447. ]
  16448. )
  16449. characterMakers["Neil"] = () => makeCharacter(
  16450. { name: "Neil" },
  16451. {
  16452. front: {
  16453. height: math.unit(6 + 1/12, "feet"),
  16454. weight: math.unit(200, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/neil/front.svg",
  16458. extra: 1326/1250,
  16459. bottom: 0.023
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 1/12, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Macro",
  16471. height: math.unit(200, "feet")
  16472. },
  16473. ]
  16474. )
  16475. characterMakers["Atticus"] = () => makeCharacter(
  16476. { name: "Atticus" },
  16477. {
  16478. front: {
  16479. height: math.unit(5 + 9/12, "feet"),
  16480. weight: math.unit(190, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/atticus/front.svg",
  16484. extra: 2934/2785,
  16485. bottom: 0.025
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(5 + 9/12, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(180, "feet")
  16498. },
  16499. ]
  16500. )
  16501. characterMakers["Milo"] = () => makeCharacter(
  16502. { name: "Milo" },
  16503. {
  16504. side: {
  16505. height: math.unit(9, "feet"),
  16506. weight: math.unit(650, "lb"),
  16507. name: "Side",
  16508. image: {
  16509. source: "./media/characters/milo/side.svg",
  16510. extra: 2644/2310,
  16511. bottom: 0.032
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(9, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(300, "feet")
  16524. },
  16525. ]
  16526. )
  16527. characterMakers["Ijzer"] = () => makeCharacter(
  16528. { name: "Ijzer" },
  16529. {
  16530. side: {
  16531. height: math.unit(8, "meters"),
  16532. weight: math.unit(90000, "kg"),
  16533. name: "Side",
  16534. image: {
  16535. source: "./media/characters/ijzer/side.svg",
  16536. extra: 2756/1600,
  16537. bottom: 0.01
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Small",
  16544. height: math.unit(3, "meters")
  16545. },
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(8, "meters"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Normal+",
  16553. height: math.unit(10, "meters")
  16554. },
  16555. {
  16556. name: "Bigger",
  16557. height: math.unit(24, "meters")
  16558. },
  16559. {
  16560. name: "Huge",
  16561. height: math.unit(80, "meters")
  16562. },
  16563. ]
  16564. )
  16565. characterMakers["Luca Cervicum"] = () => makeCharacter(
  16566. { name: "Luca Cervicum" },
  16567. {
  16568. front: {
  16569. height: math.unit(6 + 2/12, "feet"),
  16570. weight: math.unit(153, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/luca-cervicum/front.svg",
  16574. extra: 370/327,
  16575. bottom: 0.015
  16576. }
  16577. },
  16578. back: {
  16579. height: math.unit(6 + 2/12, "feet"),
  16580. weight: math.unit(153, "lb"),
  16581. name: "Back",
  16582. image: {
  16583. source: "./media/characters/luca-cervicum/back.svg",
  16584. extra: 367/333,
  16585. bottom: 0.005
  16586. }
  16587. },
  16588. frontGear: {
  16589. height: math.unit(6 + 2/12, "feet"),
  16590. weight: math.unit(173, "lb"),
  16591. name: "Front (Gear)",
  16592. image: {
  16593. source: "./media/characters/luca-cervicum/front-gear.svg",
  16594. extra: 377/333,
  16595. bottom: 0.006
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(6 + 2/12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. )
  16607. characterMakers["Oliver"] = () => makeCharacter(
  16608. { name: "Oliver" },
  16609. {
  16610. front: {
  16611. height: math.unit(6 + 1/12, "feet"),
  16612. weight: math.unit(304, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/oliver/front.svg",
  16616. extra: 157/143,
  16617. bottom: 0.08
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(6 + 1/12, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. )
  16629. characterMakers["Shane"] = () => makeCharacter(
  16630. { name: "Shane" },
  16631. {
  16632. front: {
  16633. height: math.unit(5 + 7/12, "feet"),
  16634. weight: math.unit(140, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/shane/front.svg",
  16638. extra: 304/289,
  16639. bottom: 0.005
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(5 + 7/12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. )
  16651. characterMakers["Shin"] = () => makeCharacter(
  16652. { name: "Shin" },
  16653. {
  16654. front: {
  16655. height: math.unit(5 + 9/12, "feet"),
  16656. weight: math.unit(178, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/shin/front.svg",
  16660. extra: 159/151,
  16661. bottom: 0.015
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(5 + 9/12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. )
  16673. characterMakers["Xerxes"] = () => makeCharacter(
  16674. { name: "Xerxes" },
  16675. {
  16676. front: {
  16677. height: math.unit(5 + 10/12, "feet"),
  16678. weight: math.unit(168, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/xerxes/front.svg",
  16682. extra: 282/260,
  16683. bottom: 0.045
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(5 + 10/12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. )
  16695. characterMakers["Chaska"] = () => makeCharacter(
  16696. { name: "Chaska" },
  16697. {
  16698. front: {
  16699. height: math.unit(6 + 7/12, "feet"),
  16700. weight: math.unit(208, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/chaska/front.svg",
  16704. extra: 332/319,
  16705. bottom: 0.015
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(6 + 7/12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. )
  16717. characterMakers["Enuk"] = () => makeCharacter(
  16718. { name: "Enuk" },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 8/12, "feet"),
  16722. weight: math.unit(208, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/enuk/front.svg",
  16726. extra: 437/406,
  16727. bottom: 0.02
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 8/12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. )
  16739. characterMakers["Bruun"] = () => makeCharacter(
  16740. { name: "Bruun" },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 10/12, "feet"),
  16744. weight: math.unit(252, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/bruun/front.svg",
  16748. extra: 197/187,
  16749. bottom: 0.012
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 10/12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. )
  16761. characterMakers["Alexeev"] = () => makeCharacter(
  16762. { name: "Alexeev" },
  16763. {
  16764. front: {
  16765. height: math.unit(6 + 10/12, "feet"),
  16766. weight: math.unit(255, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/alexeev/front.svg",
  16770. extra: 213/200,
  16771. bottom: 0.05
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(6 + 10/12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. )
  16783. characterMakers["Evelyn"] = () => makeCharacter(
  16784. { name: "Evelyn" },
  16785. {
  16786. front: {
  16787. height: math.unit(2 + 8/12, "feet"),
  16788. weight: math.unit(22, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/evelyn/front.svg",
  16792. extra: 208/180
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(2 + 8/12, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. )
  16804. characterMakers["Inca"] = () => makeCharacter(
  16805. { name: "Inca" },
  16806. {
  16807. front: {
  16808. height: math.unit(5 + 9/12, "feet"),
  16809. weight: math.unit(139, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/inca/front.svg",
  16813. extra: 294/291,
  16814. bottom: 0.03
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(5 + 9/12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. )
  16826. characterMakers["Magdalene"] = () => makeCharacter(
  16827. { name: "Magdalene" },
  16828. {
  16829. front: {
  16830. height: math.unit(5 + 1/12, "feet"),
  16831. weight: math.unit(84, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/magdalene/front.svg",
  16835. extra: 293/273
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(5 + 1/12, "feet"),
  16843. default: true
  16844. },
  16845. ]
  16846. )
  16847. characterMakers["Mera"] = () => makeCharacter(
  16848. { name: "Mera" },
  16849. {
  16850. front: {
  16851. height: math.unit(6 + 3/12, "feet"),
  16852. weight: math.unit(185, "lb"),
  16853. name: "Front",
  16854. image: {
  16855. source: "./media/characters/mera/front.svg",
  16856. extra: 291/277,
  16857. bottom: 0.03
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(6 + 3/12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. )
  16869. characterMakers["Ceres"] = () => makeCharacter(
  16870. { name: "Ceres" },
  16871. {
  16872. front: {
  16873. height: math.unit(6 + 7/12, "feet"),
  16874. weight: math.unit(160, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/ceres/front.svg",
  16878. extra: 1023/950,
  16879. bottom: 0.027
  16880. }
  16881. },
  16882. back: {
  16883. height: math.unit(6 + 7/12, "feet"),
  16884. weight: math.unit(160, "lb"),
  16885. name: "Back",
  16886. image: {
  16887. source: "./media/characters/ceres/back.svg",
  16888. extra: 1023/950
  16889. }
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(6 + 7/12, "feet"),
  16896. default: true
  16897. },
  16898. ]
  16899. )
  16900. characterMakers["Kris"] = () => makeCharacter(
  16901. { name: "Kris" },
  16902. {
  16903. front: {
  16904. height: math.unit(5 + 10/12, "feet"),
  16905. weight: math.unit(150, "lb"),
  16906. name: "Front",
  16907. image: {
  16908. source: "./media/characters/kris/front.svg",
  16909. extra: 885/803,
  16910. bottom: 0.03
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(5 + 10/12, "feet"),
  16918. default: true
  16919. },
  16920. ]
  16921. )
  16922. characterMakers["Taluthus"] = () => makeCharacter(
  16923. { name: "Taluthus" },
  16924. {
  16925. front: {
  16926. height: math.unit(7, "feet"),
  16927. weight: math.unit(120, "kg"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/taluthus/front.svg",
  16931. extra: 903/833,
  16932. bottom: 0.015
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(7, "feet"),
  16940. default: true
  16941. },
  16942. {
  16943. name: "Macro",
  16944. height: math.unit(300, "feet")
  16945. },
  16946. ]
  16947. )
  16948. characterMakers["Dawn"] = () => makeCharacter(
  16949. { name: "Dawn" },
  16950. {
  16951. front: {
  16952. height: math.unit(5 + 9/12, "feet"),
  16953. weight: math.unit(145, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/dawn/front.svg",
  16957. extra: 2094/2016,
  16958. bottom: 0.025
  16959. }
  16960. },
  16961. back: {
  16962. height: math.unit(5 + 9/12, "feet"),
  16963. weight: math.unit(160, "lb"),
  16964. name: "Back",
  16965. image: {
  16966. source: "./media/characters/dawn/back.svg",
  16967. extra: 2112/2080,
  16968. bottom: 0.005
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(6 + 7/12, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. )
  16980. characterMakers["Arador"] = () => makeCharacter(
  16981. { name: "Arador" },
  16982. {
  16983. anthro: {
  16984. height: math.unit(8 + 3/12, "feet"),
  16985. weight: math.unit(450, "lb"),
  16986. name: "Anthro",
  16987. image: {
  16988. source: "./media/characters/arador/anthro.svg",
  16989. extra: 1835/1718,
  16990. bottom: 0.025
  16991. }
  16992. },
  16993. feral: {
  16994. height: math.unit(4, "feet"),
  16995. weight: math.unit(200, "lb"),
  16996. name: "Feral",
  16997. image: {
  16998. source: "./media/characters/arador/feral.svg",
  16999. extra: 1683/1514,
  17000. bottom: 0.07
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(8 + 3/12, "feet")
  17008. },
  17009. {
  17010. name: "Macro",
  17011. height: math.unit(82.5, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. )
  17016. characterMakers["Dharsi"] = () => makeCharacter(
  17017. { name: "Dharsi" },
  17018. {
  17019. front: {
  17020. height: math.unit(5 + 10/12, "feet"),
  17021. weight: math.unit(125, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/dharsi/front.svg",
  17025. extra: 716/630,
  17026. bottom: 0.035
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Nano",
  17033. height: math.unit(100, "nm")
  17034. },
  17035. {
  17036. name: "Micro",
  17037. height: math.unit(2, "inches")
  17038. },
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(5 + 10/12, "feet"),
  17042. default: true
  17043. },
  17044. {
  17045. name: "Macro",
  17046. height: math.unit(1000, "feet")
  17047. },
  17048. {
  17049. name: "Megamacro",
  17050. height: math.unit(10, "miles")
  17051. },
  17052. {
  17053. name: "Gigamacro",
  17054. height: math.unit(3000, "miles")
  17055. },
  17056. {
  17057. name: "Teramacro",
  17058. height: math.unit(500000, "miles")
  17059. },
  17060. {
  17061. name: "Teramacro+",
  17062. height: math.unit(30, "galaxies")
  17063. },
  17064. ]
  17065. )
  17066. characterMakers["Deathy"] = () => makeCharacter(
  17067. { name: "Deathy" },
  17068. {
  17069. front: {
  17070. height: math.unit(6, "feet"),
  17071. weight: math.unit(150, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/deathy/front.svg",
  17075. extra: 1552/1463,
  17076. bottom: 0.025
  17077. }
  17078. },
  17079. side: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Side",
  17083. image: {
  17084. source: "./media/characters/deathy/side.svg",
  17085. extra: 1604/1455,
  17086. bottom: 0.025
  17087. }
  17088. },
  17089. back: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Back",
  17093. image: {
  17094. source: "./media/characters/deathy/back.svg",
  17095. extra: 1580/1463,
  17096. bottom: 0.005
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Micro",
  17103. height: math.unit(5, "millimeters")
  17104. },
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 5/12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. )
  17112. characterMakers["Juniper"] = () => makeCharacter(
  17113. { name: "Juniper" },
  17114. {
  17115. front: {
  17116. height: math.unit(16, "feet"),
  17117. weight: math.unit(4000, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/juniper/front.svg",
  17121. bottom: 0.04
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(16, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. )
  17133. characterMakers["Hipster"] = () => makeCharacter(
  17134. { name: "Hipster" },
  17135. {
  17136. front: {
  17137. height: math.unit(6, "feet"),
  17138. weight: math.unit(150, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/hipster/front.svg",
  17142. extra: 1312/1209,
  17143. bottom: 0.025
  17144. }
  17145. },
  17146. back: {
  17147. height: math.unit(6, "feet"),
  17148. weight: math.unit(150, "lb"),
  17149. name: "Back",
  17150. image: {
  17151. source: "./media/characters/hipster/back.svg",
  17152. extra: 1281/1196,
  17153. bottom: 0.01
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Micro",
  17160. height: math.unit(1, "mm")
  17161. },
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(4, "inches"),
  17165. default: true
  17166. },
  17167. {
  17168. name: "Macro",
  17169. height: math.unit(500, "feet")
  17170. },
  17171. {
  17172. name: "Megamacro",
  17173. height: math.unit(1000, "miles")
  17174. },
  17175. ]
  17176. )
  17177. characterMakers["Tendirmuldr"] = () => makeCharacter(
  17178. { name: "Tendirmuldr" },
  17179. {
  17180. front: {
  17181. height: math.unit(6, "feet"),
  17182. weight: math.unit(150, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/tendirmuldr/front.svg",
  17186. extra: 1878/1772,
  17187. bottom: 0.015
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Megamacro",
  17194. height: math.unit(1500, "miles"),
  17195. default: true
  17196. },
  17197. ]
  17198. )
  17199. characterMakers["Mort"] = () => makeCharacter(
  17200. { name: "Mort" },
  17201. {
  17202. front: {
  17203. height: math.unit(14, "feet"),
  17204. weight: math.unit(12000, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/mort/front.svg",
  17208. extra: 365/318,
  17209. bottom: 0.01
  17210. }
  17211. },
  17212. side: {
  17213. height: math.unit(14, "feet"),
  17214. weight: math.unit(12000, "lb"),
  17215. name: "Side",
  17216. image: {
  17217. source: "./media/characters/mort/side.svg",
  17218. extra: 365/318,
  17219. bottom: 0.052
  17220. }
  17221. },
  17222. back: {
  17223. height: math.unit(14, "feet"),
  17224. weight: math.unit(12000, "lb"),
  17225. name: "Back",
  17226. image: {
  17227. source: "./media/characters/mort/back.svg",
  17228. extra: 371/332,
  17229. bottom: 0.18
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(14, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. )
  17241. characterMakers["Lycoa"] = () => makeCharacter(
  17242. { name: "Lycoa" },
  17243. {
  17244. front: {
  17245. height: math.unit(8, "feet"),
  17246. weight: math.unit(1, "ton"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/lycoa/front.svg",
  17250. extra: 1875/1789,
  17251. bottom: 0.022
  17252. }
  17253. },
  17254. back: {
  17255. height: math.unit(8, "feet"),
  17256. weight: math.unit(1, "ton"),
  17257. name: "Back",
  17258. image: {
  17259. source: "./media/characters/lycoa/back.svg",
  17260. extra: 1835/1781,
  17261. bottom: 0.03
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(8, "feet"),
  17269. default: true
  17270. },
  17271. {
  17272. name: "Macro",
  17273. height: math.unit(30, "feet")
  17274. },
  17275. ]
  17276. )
  17277. characterMakers["Naldara"] = () => makeCharacter(
  17278. { name: "Naldara" },
  17279. {
  17280. front: {
  17281. height: math.unit(4 + 2/12, "feet"),
  17282. weight: math.unit(70, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/naldara/front.svg",
  17286. extra: 841/720,
  17287. bottom: 0.04
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(4 + 2/12, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. )
  17299. characterMakers["Briar"] = () => makeCharacter(
  17300. { name: "Briar" },
  17301. {
  17302. front: {
  17303. height: math.unit(13 + 7/12, "feet"),
  17304. weight: math.unit(1500, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/briar/front.svg",
  17308. extra: 626/596,
  17309. bottom: 0.08
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(13 + 7/12, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. )
  17321. characterMakers["Vanguard"] = () => makeCharacter(
  17322. { name: "Vanguard" },
  17323. {
  17324. side: {
  17325. height: math.unit(10, "feet"),
  17326. weight: math.unit(500, "lb"),
  17327. name: "Side",
  17328. image: {
  17329. source: "./media/characters/vanguard/side.svg",
  17330. extra: 502/425,
  17331. bottom: 0.087
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(10, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. )
  17343. characterMakers["Artemis"] = () => makeCharacter(
  17344. { name: "Artemis" },
  17345. {
  17346. front: {
  17347. height: math.unit(7.5, "feet"),
  17348. weight: math.unit(2, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/artemis/front.svg",
  17352. extra: 1192/1075,
  17353. bottom: 0.07
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(7.5, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Enlarged",
  17365. height: math.unit(12, "feet")
  17366. },
  17367. ]
  17368. )
  17369. characterMakers["Kira"] = () => makeCharacter(
  17370. { name: "Kira" },
  17371. {
  17372. front: {
  17373. height: math.unit(5 + 3/12, "feet"),
  17374. weight: math.unit(160, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/kira/front.svg",
  17378. extra: 906/786,
  17379. bottom: 0.01
  17380. }
  17381. },
  17382. back: {
  17383. height: math.unit(5 + 3/12, "feet"),
  17384. weight: math.unit(160, "lb"),
  17385. name: "Back",
  17386. image: {
  17387. source: "./media/characters/kira/back.svg",
  17388. extra: 882/757,
  17389. bottom: 0.005
  17390. }
  17391. },
  17392. frontDressed: {
  17393. height: math.unit(5 + 3/12, "feet"),
  17394. weight: math.unit(160, "lb"),
  17395. name: "Front (Dressed)",
  17396. image: {
  17397. source: "./media/characters/kira/front-dressed.svg",
  17398. extra: 906/786,
  17399. bottom: 0.01
  17400. }
  17401. },
  17402. beans: {
  17403. height: math.unit(0.92, "feet"),
  17404. name: "Beans",
  17405. image: {
  17406. source: "./media/characters/kira/beans.svg"
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(5 + 3/12, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. )
  17418. characterMakers["Scramble"] = () => makeCharacter(
  17419. { name: "Scramble" },
  17420. {
  17421. front: {
  17422. height: math.unit(5 + 4/12, "feet"),
  17423. weight: math.unit(145, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/scramble/front.svg",
  17427. extra: 763/727,
  17428. bottom: 0.05
  17429. }
  17430. },
  17431. back: {
  17432. height: math.unit(5 + 4/12, "feet"),
  17433. weight: math.unit(145, "lb"),
  17434. name: "Back",
  17435. image: {
  17436. source: "./media/characters/scramble/back.svg",
  17437. extra: 826/737,
  17438. bottom: 0.002
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 4/12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. )
  17450. characterMakers["Biscuit"] = () => makeCharacter(
  17451. { name: "Biscuit" },
  17452. {
  17453. side: {
  17454. height: math.unit(6 + 2/12, "feet"),
  17455. weight: math.unit(190, "lb"),
  17456. name: "Side",
  17457. image: {
  17458. source: "./media/characters/biscuit/side.svg",
  17459. extra: 858/791,
  17460. bottom: 0.044
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(6 + 2/12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. )
  17472. characterMakers["Poffin"] = () => makeCharacter(
  17473. { name: "Poffin" },
  17474. {
  17475. front: {
  17476. height: math.unit(5 + 2/12, "feet"),
  17477. weight: math.unit(120, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/poffin/front.svg",
  17481. extra: 786/680,
  17482. bottom: 0.005
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(5 + 2/12, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. )
  17494. characterMakers["Dhari"] = () => makeCharacter(
  17495. { name: "Dhari" },
  17496. {
  17497. front: {
  17498. height: math.unit(6 + 3/12, "feet"),
  17499. weight: math.unit(519, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/dhari/front.svg",
  17503. extra: 1048/946,
  17504. bottom: 0.015
  17505. }
  17506. },
  17507. back: {
  17508. height: math.unit(6 + 3/12, "feet"),
  17509. weight: math.unit(519, "lb"),
  17510. name: "Back",
  17511. image: {
  17512. source: "./media/characters/dhari/back.svg",
  17513. extra: 1048/931,
  17514. bottom: 0.005
  17515. }
  17516. },
  17517. frontDressed: {
  17518. height: math.unit(6 + 3/12, "feet"),
  17519. weight: math.unit(519, "lb"),
  17520. name: "Front (Dressed)",
  17521. image: {
  17522. source: "./media/characters/dhari/front-dressed.svg",
  17523. extra: 1713/1546,
  17524. bottom: 0.02
  17525. }
  17526. },
  17527. backDressed: {
  17528. height: math.unit(6 + 3/12, "feet"),
  17529. weight: math.unit(519, "lb"),
  17530. name: "Back (Dressed)",
  17531. image: {
  17532. source: "./media/characters/dhari/back-dressed.svg",
  17533. extra: 1699/1537,
  17534. bottom: 0.01
  17535. }
  17536. },
  17537. maw: {
  17538. height: math.unit(0.95, "feet"),
  17539. name: "Maw",
  17540. image: {
  17541. source: "./media/characters/dhari/maw.svg"
  17542. }
  17543. },
  17544. wereFront: {
  17545. height: math.unit(12 + 8/12, "feet"),
  17546. weight: math.unit(4000, "lb"),
  17547. name: "Front (Were)",
  17548. image: {
  17549. source: "./media/characters/dhari/were-front.svg",
  17550. extra: 1065/969,
  17551. bottom: 0.015
  17552. }
  17553. },
  17554. wereBack: {
  17555. height: math.unit(12 + 8/12, "feet"),
  17556. weight: math.unit(4000, "lb"),
  17557. name: "Back (Were)",
  17558. image: {
  17559. source: "./media/characters/dhari/were-back.svg",
  17560. extra: 1065/969,
  17561. bottom: 0.012
  17562. }
  17563. },
  17564. wereMaw: {
  17565. height: math.unit(0.625, "meters"),
  17566. name: "Maw (Were)",
  17567. image: {
  17568. source: "./media/characters/dhari/were-maw.svg"
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(6 + 3/12, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. )
  17580. characterMakers["Rena Dyne"] = () => makeCharacter(
  17581. { name: "Rena Dyne" },
  17582. {
  17583. anthro: {
  17584. height: math.unit(5 + 7/12, "feet"),
  17585. weight: math.unit(175, "lb"),
  17586. name: "Anthro",
  17587. image: {
  17588. source: "./media/characters/rena-dyne/anthro.svg",
  17589. extra: 1849/1785,
  17590. bottom: 0.005
  17591. }
  17592. },
  17593. taur: {
  17594. height: math.unit(15 + 6/12, "feet"),
  17595. weight: math.unit(8000, "lb"),
  17596. name: "Taur",
  17597. image: {
  17598. source: "./media/characters/rena-dyne/taur.svg",
  17599. extra: 2315/2234,
  17600. bottom: 0.033
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(5 + 7/12, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. )
  17612. characterMakers["Weremeep"] = () => makeCharacter(
  17613. { name: "Weremeep" },
  17614. {
  17615. front: {
  17616. height: math.unit(8, "feet"),
  17617. weight: math.unit(600, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/weremeep/front.svg",
  17621. extra: 967/862,
  17622. bottom: 0.01
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(8, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Lorg",
  17634. height: math.unit(12, "feet")
  17635. },
  17636. {
  17637. name: "Oh Lawd She Comin'",
  17638. height: math.unit(20, "feet")
  17639. },
  17640. ]
  17641. )
  17642. characterMakers["Reza"] = () => makeCharacter(
  17643. { name: "Reza" },
  17644. {
  17645. front: {
  17646. height: math.unit(4, "feet"),
  17647. weight: math.unit(90, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/reza/front.svg",
  17651. extra: 1183/1111,
  17652. bottom: 0.017
  17653. }
  17654. },
  17655. back: {
  17656. height: math.unit(4, "feet"),
  17657. weight: math.unit(90, "lb"),
  17658. name: "Back",
  17659. image: {
  17660. source: "./media/characters/reza/back.svg",
  17661. extra: 1183/1111,
  17662. bottom: 0.01
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(4, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. )
  17674. characterMakers["Athea"] = () => makeCharacter(
  17675. { name: "Athea" },
  17676. {
  17677. side: {
  17678. height: math.unit(15, "feet"),
  17679. weight: math.unit(14, "tons"),
  17680. name: "Side",
  17681. image: {
  17682. source: "./media/characters/athea/side.svg",
  17683. extra: 960/540,
  17684. bottom: 0.003
  17685. }
  17686. },
  17687. sitting: {
  17688. height: math.unit(6*2.85, "feet"),
  17689. weight: math.unit(14, "tons"),
  17690. name: "Sitting",
  17691. image: {
  17692. source: "./media/characters/athea/sitting.svg",
  17693. extra: 621/581,
  17694. bottom: 0.075
  17695. }
  17696. },
  17697. maw: {
  17698. height: math.unit(7.59498031496063, "feet"),
  17699. name: "Maw",
  17700. image: {
  17701. source: "./media/characters/athea/maw.svg"
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Lap Cat",
  17708. height: math.unit(2.5, "feet")
  17709. },
  17710. {
  17711. name: "Minimacro",
  17712. height: math.unit(15, "feet"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Macro",
  17717. height: math.unit(120, "feet")
  17718. },
  17719. {
  17720. name: "Macro+",
  17721. height: math.unit(640, "feet")
  17722. },
  17723. ]
  17724. )
  17725. characterMakers["Seroko"] = () => makeCharacter(
  17726. { name: "Seroko" },
  17727. {
  17728. front: {
  17729. height: math.unit(8 + 8/12, "feet"),
  17730. weight: math.unit(130, "kg"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/seroko/front.svg",
  17734. extra: 1385/1280,
  17735. bottom: 0.025
  17736. }
  17737. },
  17738. back: {
  17739. height: math.unit(8 + 8/12, "feet"),
  17740. weight: math.unit(130, "kg"),
  17741. name: "Back",
  17742. image: {
  17743. source: "./media/characters/seroko/back.svg",
  17744. extra: 1369/1238,
  17745. bottom: 0.018
  17746. }
  17747. },
  17748. frontDressed: {
  17749. height: math.unit(8 + 8/12, "feet"),
  17750. weight: math.unit(130, "kg"),
  17751. name: "Front (Dressed)",
  17752. image: {
  17753. source: "./media/characters/seroko/front-dressed.svg",
  17754. extra: 1366/1275,
  17755. bottom: 0.03
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(8 + 8/12, "feet"),
  17763. default: true
  17764. },
  17765. ]
  17766. )
  17767. characterMakers["Quatzi"] = () => makeCharacter(
  17768. { name: "Quatzi" },
  17769. {
  17770. front: {
  17771. height: math.unit(5.5, "feet"),
  17772. weight: math.unit(160, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/quatzi/front.svg",
  17776. extra: 2346/2242,
  17777. bottom: 0.015
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(5.5, "feet"),
  17785. default: true
  17786. },
  17787. {
  17788. name: "Big",
  17789. height: math.unit(7.7, "feet")
  17790. },
  17791. ]
  17792. )
  17793. characterMakers["Sen"] = () => makeCharacter(
  17794. { name: "Sen" },
  17795. {
  17796. front: {
  17797. height: math.unit(5 + 11/12, "feet"),
  17798. weight: math.unit(180, "lb"),
  17799. name: "Front",
  17800. image: {
  17801. source: "./media/characters/sen/front.svg",
  17802. extra: 1321/1254,
  17803. bottom: 0.015
  17804. }
  17805. },
  17806. side: {
  17807. height: math.unit(5 + 11/12, "feet"),
  17808. weight: math.unit(180, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/sen/side.svg",
  17812. extra: 1321/1254,
  17813. bottom: 0.007
  17814. }
  17815. },
  17816. back: {
  17817. height: math.unit(5 + 11/12, "feet"),
  17818. weight: math.unit(180, "lb"),
  17819. name: "Back",
  17820. image: {
  17821. source: "./media/characters/sen/back.svg",
  17822. extra: 1321/1254
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(5 + 11/12, "feet"),
  17830. default: true
  17831. },
  17832. ]
  17833. )
  17834. characterMakers["Fruity"] = () => makeCharacter(
  17835. { name: "Fruity" },
  17836. {
  17837. front: {
  17838. height: math.unit(166.6, "cm"),
  17839. weight: math.unit(66.6, "kg"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/fruity/front.svg",
  17843. extra: 1510/1386,
  17844. bottom: 0.04
  17845. }
  17846. },
  17847. back: {
  17848. height: math.unit(166.6, "cm"),
  17849. weight: math.unit(66.6, "lb"),
  17850. name: "Back",
  17851. image: {
  17852. source: "./media/characters/fruity/back.svg",
  17853. extra: 1563/1435,
  17854. bottom: 0.005
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(166.6, "cm"),
  17862. default: true
  17863. },
  17864. {
  17865. name: "Demonic",
  17866. height: math.unit(166.6, "feet")
  17867. },
  17868. ]
  17869. )
  17870. characterMakers["Zost"] = () => makeCharacter(
  17871. { name: "Zost" },
  17872. {
  17873. side: {
  17874. height: math.unit(10, "feet"),
  17875. weight: math.unit(500, "lb"),
  17876. name: "Side",
  17877. image: {
  17878. source: "./media/characters/zost/side.svg",
  17879. extra: 966/880,
  17880. bottom: 0.075
  17881. }
  17882. },
  17883. mawFront: {
  17884. height: math.unit(1.08, "meters"),
  17885. name: "Maw (Front)",
  17886. image: {
  17887. source: "./media/characters/zost/maw-front.svg"
  17888. }
  17889. },
  17890. mawSide: {
  17891. height: math.unit(2.66, "feet"),
  17892. name: "Maw (Side)",
  17893. image: {
  17894. source: "./media/characters/zost/maw-side.svg"
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(10, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. )
  17906. characterMakers["Luci"] = () => makeCharacter(
  17907. { name: "Luci" },
  17908. {
  17909. front: {
  17910. height: math.unit(5 + 4/12, "feet"),
  17911. weight: math.unit(120, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/luci/front.svg",
  17915. extra: 1985/1884,
  17916. bottom: 0.04
  17917. }
  17918. },
  17919. back: {
  17920. height: math.unit(5 + 4/12, "feet"),
  17921. weight: math.unit(120, "lb"),
  17922. name: "Back",
  17923. image: {
  17924. source: "./media/characters/luci/back.svg",
  17925. extra: 1892/1791,
  17926. bottom: 0.002
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(5 + 4/12, "feet"),
  17934. default: true
  17935. },
  17936. ]
  17937. )
  17938. characterMakers["2th"] = () => makeCharacter(
  17939. { name: "2th" },
  17940. {
  17941. front: {
  17942. height: math.unit(1500, "feet"),
  17943. weight: math.unit(3.8e6, "tons"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/2th/front.svg",
  17947. extra: 3489/3350,
  17948. bottom: 0.1
  17949. }
  17950. },
  17951. foot: {
  17952. height: math.unit(461, "feet"),
  17953. name: "Foot",
  17954. image: {
  17955. source: "./media/characters/2th/foot.svg"
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "\"Micro\"",
  17962. height: math.unit(15 + 7/12, "feet")
  17963. },
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(1500, "feet"),
  17967. default: true
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(5000, "feet")
  17972. },
  17973. {
  17974. name: "Megamacro",
  17975. height: math.unit(15, "miles")
  17976. },
  17977. {
  17978. name: "Gigamacro",
  17979. height: math.unit(4000, "miles")
  17980. },
  17981. {
  17982. name: "Galactic",
  17983. height: math.unit(50, "AU")
  17984. },
  17985. ]
  17986. )
  17987. characterMakers["Amethyst"] = () => makeCharacter(
  17988. { name: "Amethyst" },
  17989. {
  17990. front: {
  17991. height: math.unit(5 + 6/12, "feet"),
  17992. weight: math.unit(220, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/amethyst/front.svg",
  17996. extra: 2078/2040,
  17997. bottom: 0.045
  17998. }
  17999. },
  18000. back: {
  18001. height: math.unit(5 + 6/12, "feet"),
  18002. weight: math.unit(220, "lb"),
  18003. name: "Back",
  18004. image: {
  18005. source: "./media/characters/amethyst/back.svg",
  18006. extra: 2021/1989,
  18007. bottom: 0.02
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(5 + 6/12, "feet"),
  18015. default: true
  18016. },
  18017. ]
  18018. )
  18019. characterMakers["Yumi Akiyama"] = () => makeCharacter(
  18020. { name: "Yumi Akiyama" },
  18021. {
  18022. front: {
  18023. height: math.unit(4 + 11/12, "feet"),
  18024. weight: math.unit(120, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/yumi-akiyama/front.svg",
  18028. extra: 1327/1235,
  18029. bottom: 0.02
  18030. }
  18031. },
  18032. back: {
  18033. height: math.unit(4 + 11/12, "feet"),
  18034. weight: math.unit(120, "lb"),
  18035. name: "Back",
  18036. image: {
  18037. source: "./media/characters/yumi-akiyama/back.svg",
  18038. extra: 1287/1245,
  18039. bottom: 0.002
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Galactic",
  18046. height: math.unit(50, "galaxies"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Universal",
  18051. height: math.unit(100, "universes")
  18052. },
  18053. ]
  18054. )
  18055. characterMakers["Rifter Yrmori"] = () => makeCharacter(
  18056. { name: "Rifter Yrmori" },
  18057. {
  18058. front: {
  18059. height: math.unit(8, "feet"),
  18060. weight: math.unit(500, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/rifter-yrmori/front.svg",
  18064. extra: 1180/1125,
  18065. bottom: 0.02
  18066. }
  18067. },
  18068. back: {
  18069. height: math.unit(8, "feet"),
  18070. weight: math.unit(500, "lb"),
  18071. name: "Back",
  18072. image: {
  18073. source: "./media/characters/rifter-yrmori/back.svg",
  18074. extra: 1190/1145,
  18075. bottom: 0.001
  18076. }
  18077. },
  18078. wings: {
  18079. height: math.unit(7.75, "feet"),
  18080. weight: math.unit(500, "lb"),
  18081. name: "Wings",
  18082. image: {
  18083. source: "./media/characters/rifter-yrmori/wings.svg",
  18084. extra: 1357/1285
  18085. }
  18086. },
  18087. maw: {
  18088. height: math.unit(0.8, "feet"),
  18089. name: "Maw",
  18090. image: {
  18091. source: "./media/characters/rifter-yrmori/maw.svg"
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(8, "feet"),
  18099. default: true
  18100. },
  18101. {
  18102. name: "Macro",
  18103. height: math.unit(42, "meters")
  18104. },
  18105. ]
  18106. )
  18107. characterMakers["Tahajin"] = () => makeCharacter(
  18108. { name: "Tahajin" },
  18109. {
  18110. were: {
  18111. height: math.unit(25 + 6/12, "feet"),
  18112. weight: math.unit(10000, "lb"),
  18113. name: "Were",
  18114. image: {
  18115. source: "./media/characters/tahajin/were.svg",
  18116. extra: 801/770,
  18117. bottom: 0.042
  18118. }
  18119. },
  18120. aquatic: {
  18121. height: math.unit(6 + 4/12, "feet"),
  18122. weight: math.unit(160, "lb"),
  18123. name: "Aquatic",
  18124. image: {
  18125. source: "./media/characters/tahajin/aquatic.svg",
  18126. extra: 572/542,
  18127. bottom: 0.04
  18128. }
  18129. },
  18130. chow: {
  18131. height: math.unit(8 + 11/12, "feet"),
  18132. weight: math.unit(450, "lb"),
  18133. name: "Chow",
  18134. image: {
  18135. source: "./media/characters/tahajin/chow.svg",
  18136. extra: 660/640,
  18137. bottom: 0.015
  18138. }
  18139. },
  18140. demiNaga: {
  18141. height: math.unit(6 + 8/12, "feet"),
  18142. weight: math.unit(300, "lb"),
  18143. name: "Demi Naga",
  18144. image: {
  18145. source: "./media/characters/tahajin/demi-naga.svg",
  18146. extra: 643/615,
  18147. bottom: 0.1
  18148. }
  18149. },
  18150. data: {
  18151. height: math.unit(5, "inches"),
  18152. weight: math.unit(0.1, "lb"),
  18153. name: "Data",
  18154. image: {
  18155. source: "./media/characters/tahajin/data.svg"
  18156. }
  18157. },
  18158. fluu: {
  18159. height: math.unit(5 + 7/12, "feet"),
  18160. weight: math.unit(140, "lb"),
  18161. name: "Fluu",
  18162. image: {
  18163. source: "./media/characters/tahajin/fluu.svg",
  18164. extra: 628/592,
  18165. bottom: 0.02
  18166. }
  18167. },
  18168. starWarrior: {
  18169. height: math.unit(4 + 5/12, "feet"),
  18170. weight: math.unit(50, "lb"),
  18171. name: "Star Warrior",
  18172. image: {
  18173. source: "./media/characters/tahajin/star-warrior.svg"
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(25 + 6/12, "feet"),
  18181. default: true
  18182. },
  18183. ]
  18184. )
  18185. //characters
  18186. function makeCharacters() {
  18187. const results = [];
  18188. Object.entries(characterMakers).forEach(([key, value]) => {
  18189. results.push(value());
  18190. });
  18191. return results;
  18192. }