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

19602 rindas
513 KiB

  1. const characterMakers = [];
  2. math.createUnit("parsec", {
  3. definition: "3.086e16 meters",
  4. prefixes: "long"
  5. })
  6. math.createUnit("parsecs", {
  7. definition: "3.086e16 meters",
  8. prefixes: "long"
  9. })
  10. math.createUnit("lightyears", {
  11. definition: "9.461e15 meters",
  12. prefixes: "long"
  13. })
  14. math.createUnit("AU", {
  15. definition: "149597870700 meters"
  16. })
  17. math.createUnit("AUs", {
  18. definition: "149597870700 meters"
  19. })
  20. function makeCharacter(name, viewInfo, defaultSizes, extraInfo) {
  21. if (extraInfo === undefined) {
  22. extraInfo = {};
  23. }
  24. views = {};
  25. Object.entries(viewInfo).forEach(([key, value]) => {
  26. views[key] = {
  27. attributes: {
  28. height: {
  29. name: "Height",
  30. power: 1,
  31. type: "length",
  32. base: value.height
  33. }
  34. },
  35. image: value.image,
  36. name: value.name,
  37. info: value.info,
  38. rename: value.rename
  39. }
  40. if (value.weight) {
  41. views[key].attributes.weight = {
  42. name: "Mass",
  43. power: 3,
  44. type: "mass",
  45. base: value.weight
  46. };
  47. }
  48. });
  49. const entity = makeEntity(Object.assign(extraInfo, { name: name }), views, defaultSizes);
  50. return entity;
  51. }
  52. characterMakers["Fen"] = () => {
  53. return makeCharacter(
  54. "Fen",
  55. {
  56. back: {
  57. height: math.unit(2.2428, "meter"),
  58. weight: math.unit(124.738, "kg"),
  59. name: "Back",
  60. image: {
  61. source: "./media/characters/fen/back.svg",
  62. extra: 1025/935
  63. },
  64. info: {
  65. description: {
  66. mode: "append",
  67. text: "\n\nHe is not currently looking at you."
  68. }
  69. }
  70. },
  71. full: {
  72. height: math.unit(1.34, "meter"),
  73. weight: math.unit(225, "kg"),
  74. name: "Full",
  75. image: {
  76. source: "./media/characters/fen/full.svg"
  77. },
  78. info: {
  79. description: {
  80. mode: "append",
  81. text: "\n\nMunch."
  82. }
  83. }
  84. },
  85. kneeling: {
  86. height: math.unit(5.4, "feet"),
  87. weight: math.unit(124.738, "kg"),
  88. name: "Kneeling",
  89. image: {
  90. source: "./media/characters/fen/kneeling.svg",
  91. extra: 563/507
  92. }
  93. },
  94. },
  95. [
  96. {
  97. name: "Normal",
  98. height: math.unit(2.2428, "meter")
  99. },
  100. {
  101. name: "Big",
  102. height: math.unit(12, "feet")
  103. },
  104. {
  105. name: "Minimacro",
  106. height: math.unit(30, "meter"),
  107. default: true,
  108. info: {
  109. description: {
  110. mode: "append",
  111. text: "\n\nTOO DAMN BIG"
  112. }
  113. }
  114. },
  115. {
  116. name: "Macro",
  117. height: math.unit(100, "meter"),
  118. info: {
  119. description: {
  120. mode: "append",
  121. text: "\n\nTOO DAMN BIG"
  122. }
  123. }
  124. },
  125. {
  126. name: "Macro+",
  127. height: math.unit(1000, "meter")
  128. },
  129. {
  130. name: "Megamacro",
  131. height: math.unit(10, "miles")
  132. }
  133. ],
  134. {
  135. description: {
  136. title: "Bio",
  137. text: "Very furry. Sheds on everything."
  138. }
  139. }
  140. )
  141. };
  142. characterMakers["Sofia"] = () => {
  143. return makeCharacter(
  144. "Sofia",
  145. {
  146. front: {
  147. height: math.unit(183, "cm"),
  148. weight: math.unit(80, "kg"),
  149. name: "Front",
  150. image: {
  151. source: "./media/characters/sofia/front.svg",
  152. bottom: 0.01,
  153. extra: 1
  154. }
  155. },
  156. frontAlt: {
  157. height: math.unit(183, "cm"),
  158. weight: math.unit(80, "kg"),
  159. name: "Front (alt)",
  160. image: {
  161. source: "./media/characters/sofia/front-alt.svg"
  162. }
  163. },
  164. back: {
  165. height: math.unit(183, "cm"),
  166. weight: math.unit(80, "kg"),
  167. name: "Back",
  168. image: {
  169. source: "./media/characters/sofia/back.svg"
  170. }
  171. },
  172. },
  173. [
  174. {
  175. name: "Normal",
  176. height: math.unit(1.83, "meter")
  177. },
  178. {
  179. name: "Macro",
  180. height: math.unit(96, "feet"),
  181. default: true
  182. },
  183. {
  184. name: "Megamerger",
  185. height: math.unit(650, "feet")
  186. },
  187. ]
  188. )
  189. };
  190. characterMakers["March"] = () => {
  191. return makeCharacter(
  192. "March",
  193. {
  194. front: {
  195. height: math.unit(7, "feet"),
  196. weight: math.unit(100, "kg"),
  197. name: "Front",
  198. image: {
  199. source: "./media/characters/march/front.svg",
  200. extra: 1,
  201. bottom: 0.015
  202. }
  203. },
  204. foot: {
  205. height: math.unit(0.9, "feet"),
  206. name: "Foot",
  207. image: {
  208. source: "./media/characters/march/foot.svg"
  209. }
  210. },
  211. },
  212. [
  213. {
  214. name: "Normal",
  215. height: math.unit(7.9, "feet")
  216. },
  217. {
  218. name: "Macro",
  219. height: math.unit(220, "meters")
  220. },
  221. {
  222. name: "Megamacro",
  223. height: math.unit(2.98, "km"),
  224. default: true
  225. },
  226. {
  227. name: "Gigamacro",
  228. height: math.unit(15963, "km")
  229. },
  230. {
  231. name: "Teramacro",
  232. height: math.unit(2980000000, "km")
  233. },
  234. {
  235. name: "Examacro",
  236. height: math.unit(250, "parsecs")
  237. },
  238. ]
  239. )
  240. };
  241. characterMakers["Noir"] = () => {
  242. return makeCharacter(
  243. "Noir",
  244. {
  245. front: {
  246. height: math.unit(6, "feet"),
  247. weight: math.unit(60, "kg"),
  248. name: "Front",
  249. image: {
  250. source: "./media/characters/noir/front.svg",
  251. extra: 1,
  252. bottom: 0.032
  253. }
  254. },
  255. },
  256. [
  257. {
  258. name: "Normal",
  259. height: math.unit(6.6, "feet")
  260. },
  261. {
  262. name: "Macro",
  263. height: math.unit(500, "feet")
  264. },
  265. {
  266. name: "Megamacro",
  267. height: math.unit(2.5, "km"),
  268. default: true
  269. },
  270. {
  271. name: "Gigamacro",
  272. height: math.unit(22500, "km")
  273. },
  274. {
  275. name: "Teramacro",
  276. height: math.unit(2500000000, "km")
  277. },
  278. {
  279. name: "Examacro",
  280. height: math.unit(200, "parsecs")
  281. },
  282. ]
  283. )
  284. };
  285. characterMakers["Okuri"] = () => {
  286. return makeCharacter(
  287. "Okuri",
  288. {
  289. front: {
  290. height: math.unit(7, "feet"),
  291. weight: math.unit(100, "kg"),
  292. name: "Front",
  293. image: {
  294. source: "./media/characters/okuri/front.svg",
  295. extra: 1,
  296. bottom: 0.037
  297. }
  298. },
  299. back: {
  300. height: math.unit(7, "feet"),
  301. weight: math.unit(100, "kg"),
  302. name: "Back",
  303. image: {
  304. source: "./media/characters/okuri/back.svg",
  305. extra: 1,
  306. bottom: 0.007
  307. }
  308. },
  309. },
  310. [
  311. {
  312. name: "Megamacro",
  313. height: math.unit(100, "miles"),
  314. default: true
  315. },
  316. ]
  317. )
  318. };
  319. characterMakers["Manny"] = () => {
  320. return makeCharacter(
  321. "Manny",
  322. {
  323. front: {
  324. height: math.unit(7, "feet"),
  325. weight: math.unit(100, "kg"),
  326. name: "Front",
  327. image: {
  328. source: "./media/characters/manny/front.svg",
  329. extra: 1,
  330. bottom: 0.06
  331. }
  332. },
  333. back: {
  334. height: math.unit(7, "feet"),
  335. weight: math.unit(100, "kg"),
  336. name: "Back",
  337. image: {
  338. source: "./media/characters/manny/back.svg",
  339. extra: 1,
  340. bottom: 0.014
  341. }
  342. },
  343. },
  344. [
  345. {
  346. name: "Normal",
  347. height: math.unit(7, "feet"),
  348. },
  349. {
  350. name: "Macro",
  351. height: math.unit(78, "feet"),
  352. default: true
  353. },
  354. {
  355. name: "Macro+",
  356. height: math.unit(300, "meters")
  357. },
  358. {
  359. name: "Macro++",
  360. height: math.unit(2400, "meters")
  361. },
  362. {
  363. name: "Megamacro",
  364. height: math.unit(5167, "meters")
  365. },
  366. {
  367. name: "Gigamacro",
  368. height: math.unit(41769, "miles")
  369. },
  370. ]
  371. )
  372. };
  373. characterMakers["Adake"] = () => {
  374. return makeCharacter(
  375. "Adake",
  376. {
  377. front: {
  378. height: math.unit(7, "feet"),
  379. weight: math.unit(100, "kg"),
  380. name: "Front",
  381. image: {
  382. source: "./media/characters/adake/front-1.svg"
  383. }
  384. },
  385. frontAlt: {
  386. height: math.unit(7, "feet"),
  387. weight: math.unit(100, "kg"),
  388. name: "Front (Alt)",
  389. image: {
  390. source: "./media/characters/adake/front-2.svg",
  391. extra: 1,
  392. bottom: 0.01
  393. }
  394. },
  395. back: {
  396. height: math.unit(7, "feet"),
  397. weight: math.unit(100, "kg"),
  398. name: "Back",
  399. image: {
  400. source: "./media/characters/adake/back.svg",
  401. }
  402. },
  403. kneel: {
  404. height: math.unit(5.385, "feet"),
  405. weight: math.unit(100, "kg"),
  406. name: "Kneeling",
  407. image: {
  408. source: "./media/characters/adake/kneel.svg",
  409. bottom: 0.052
  410. }
  411. },
  412. },
  413. [
  414. {
  415. name: "Normal",
  416. height: math.unit(7, "feet"),
  417. },
  418. {
  419. name: "Macro",
  420. height: math.unit(78, "feet"),
  421. default: true
  422. },
  423. {
  424. name: "Macro+",
  425. height: math.unit(300, "meters")
  426. },
  427. {
  428. name: "Macro++",
  429. height: math.unit(2400, "meters")
  430. },
  431. {
  432. name: "Megamacro",
  433. height: math.unit(5167, "meters")
  434. },
  435. {
  436. name: "Gigamacro",
  437. height: math.unit(41769, "miles")
  438. },
  439. ]
  440. )
  441. };
  442. characterMakers["Elijah"] = () => {
  443. return makeCharacter(
  444. "Elijah",
  445. {
  446. side: {
  447. height: math.unit(7, "feet"),
  448. weight: math.unit(50, "kg"),
  449. name: "Side",
  450. image: {
  451. source: "./media/characters/elijah/side.svg",
  452. extra: 1,
  453. bottom: 0.065
  454. }
  455. },
  456. foot: {
  457. height: math.unit(2.05, "feet"),
  458. name: "Foot",
  459. image: {
  460. source: "./media/characters/elijah/foot.svg"
  461. }
  462. },
  463. },
  464. [
  465. {
  466. name: "Normal",
  467. height: math.unit(1.65, "meters")
  468. },
  469. {
  470. name: "Macro",
  471. height: math.unit(55, "meters"),
  472. default: true
  473. },
  474. {
  475. name: "Macro+",
  476. height: math.unit(105, "meters")
  477. },
  478. ]
  479. )
  480. };
  481. characterMakers["Rai"] = () => {
  482. return makeCharacter(
  483. "Rai",
  484. {
  485. front: {
  486. height: math.unit(11, "feet"),
  487. weight: math.unit(80, "kg"),
  488. name: "Front",
  489. image: {
  490. source: "./media/characters/rai/front.svg",
  491. extra: 1,
  492. bottom: 0.03
  493. }
  494. },
  495. side: {
  496. height: math.unit(11, "feet"),
  497. weight: math.unit(80, "kg"),
  498. name: "Side",
  499. image: {
  500. source: "./media/characters/rai/side.svg"
  501. }
  502. },
  503. back: {
  504. height: math.unit(11, "feet"),
  505. weight: math.unit(80, "lb"),
  506. name: "Back",
  507. image: {
  508. source: "./media/characters/rai/back.svg",
  509. extra: 1,
  510. bottom: 0.01
  511. }
  512. },
  513. feral: {
  514. height: math.unit(11, "feet"),
  515. weight: math.unit(800, "lb"),
  516. name: "Feral",
  517. image: {
  518. source: "./media/characters/rai/feral.svg",
  519. extra: 1050/659 ,
  520. bottom: 0.07
  521. }
  522. },
  523. maw: {
  524. height: math.unit(6/3.81416, "feet"),
  525. name: "Maw",
  526. image: {
  527. source: "./media/characters/rai/maw.svg"
  528. }
  529. },
  530. },
  531. [
  532. {
  533. name: "Normal",
  534. height: math.unit(11, "feet")
  535. },
  536. {
  537. name: "Macro",
  538. height: math.unit(302, "feet"),
  539. default: true
  540. },
  541. ]
  542. )
  543. };
  544. characterMakers["Jazzy"] = () => {
  545. return makeCharacter(
  546. "Jazzy",
  547. {
  548. front: {
  549. height: math.unit(7, "feet"),
  550. weight: math.unit(80, "kg"),
  551. name: "Front",
  552. image: {
  553. source: "./media/characters/jazzy/front.svg",
  554. extra: 1,
  555. bottom: 0.01
  556. }
  557. },
  558. back: {
  559. height: math.unit(7, "feet"),
  560. weight: math.unit(80, "kg"),
  561. name: "Back",
  562. image: {
  563. source: "./media/characters/jazzy/back.svg",
  564. extra: 1,
  565. bottom: 0.01
  566. }
  567. },
  568. },
  569. [
  570. {
  571. name: "Macro",
  572. height: math.unit(216, "feet"),
  573. default: true
  574. },
  575. ]
  576. )
  577. };
  578. characterMakers["Flamm"] = () => {
  579. return makeCharacter(
  580. "Flamm",
  581. {
  582. front: {
  583. height: math.unit(7, "feet"),
  584. weight: math.unit(80, "kg"),
  585. name: "Front",
  586. image: {
  587. source: "./media/characters/flamm/front.svg",
  588. extra: 1,
  589. bottom: 0.02
  590. }
  591. },
  592. },
  593. [
  594. {
  595. name: "Normal",
  596. height: math.unit(9.5, "feet")
  597. },
  598. {
  599. name: "Macro",
  600. height: math.unit(200, "feet"),
  601. default: true
  602. },
  603. ]
  604. )
  605. };
  606. characterMakers["Zephiro"] = () => {
  607. return makeCharacter(
  608. "Zephiro",
  609. {
  610. front: {
  611. height: math.unit(7, "feet"),
  612. weight: math.unit(80, "kg"),
  613. name: "Front",
  614. image: {
  615. source: "./media/characters/zephiro/front.svg",
  616. extra: 2309/2162 ,
  617. bottom: 0.069
  618. }
  619. },
  620. side: {
  621. height: math.unit(7, "feet"),
  622. weight: math.unit(80, "kg"),
  623. name: "Side",
  624. image: {
  625. source: "./media/characters/zephiro/side.svg",
  626. extra: 2403/2279 ,
  627. bottom: 0.015
  628. }
  629. },
  630. back: {
  631. height: math.unit(7, "feet"),
  632. weight: math.unit(80, "kg"),
  633. name: "Back",
  634. image: {
  635. source: "./media/characters/zephiro/back.svg",
  636. extra: 2373/2244 ,
  637. bottom: 0.013
  638. }
  639. },
  640. },
  641. [
  642. {
  643. name: "Micro",
  644. height: math.unit(3, "inches")
  645. },
  646. {
  647. name: "Normal",
  648. height: math.unit(5 + 3/12, "feet"),
  649. default: true
  650. },
  651. {
  652. name: "Macro",
  653. height: math.unit(118, "feet")
  654. },
  655. ]
  656. )
  657. };
  658. characterMakers["Fory"] = () => {
  659. return makeCharacter(
  660. "Fory",
  661. {
  662. front: {
  663. height: math.unit(7, "feet"),
  664. weight: math.unit(90, "kg"),
  665. name: "Front",
  666. image: {
  667. source: "./media/characters/fory/front.svg",
  668. extra: 1,
  669. bottom: 0.03
  670. }
  671. },
  672. },
  673. [
  674. {
  675. name: "Normal",
  676. height: math.unit(5, "feet")
  677. },
  678. {
  679. name: "Macro",
  680. height: math.unit(50, "feet"),
  681. default: true
  682. },
  683. ]
  684. )
  685. };
  686. characterMakers["Kurrikage"] = () => {
  687. return makeCharacter(
  688. "Kurrikage",
  689. {
  690. front: {
  691. height: math.unit(7, "feet"),
  692. weight: math.unit(90, "kg"),
  693. name: "Front",
  694. image: {
  695. source: "./media/characters/kurrikage/front.svg",
  696. extra: 1,
  697. bottom: 0.035
  698. }
  699. },
  700. back: {
  701. height: math.unit(7, "feet"),
  702. weight: math.unit(90, "lb"),
  703. name: "Back",
  704. image: {
  705. source: "./media/characters/kurrikage/back.svg"
  706. }
  707. },
  708. paw: {
  709. height: math.unit(1.5, "feet"),
  710. name: "Paw",
  711. image: {
  712. source: "./media/characters/kurrikage/paw.svg"
  713. }
  714. },
  715. staff: {
  716. height: math.unit(6.7, "feet"),
  717. name: "Staff",
  718. image: {
  719. source: "./media/characters/kurrikage/staff.svg"
  720. }
  721. },
  722. peek: {
  723. height: math.unit(1.05, "feet"),
  724. name: "Peeking",
  725. image: {
  726. source: "./media/characters/kurrikage/peek.svg",
  727. bottom: 0.08
  728. }
  729. },
  730. },
  731. [
  732. {
  733. name: "Normal",
  734. height: math.unit(12, "feet"),
  735. default: true
  736. },
  737. {
  738. name: "Big",
  739. height: math.unit(20, "feet")
  740. },
  741. {
  742. name: "Macro",
  743. height: math.unit(500, "feet")
  744. },
  745. {
  746. name: "Megamacro",
  747. height: math.unit(20, "miles")
  748. },
  749. ]
  750. )
  751. };
  752. characterMakers["Shingo"] = () => {
  753. return makeCharacter(
  754. "Shingo",
  755. {
  756. front: {
  757. height: math.unit(6, "feet"),
  758. weight: math.unit(75, "kg"),
  759. name: "Front",
  760. image: {
  761. source: "./media/characters/shingo/front.svg",
  762. extra: 3511/3338 ,
  763. bottom: 0.005
  764. }
  765. },
  766. },
  767. [
  768. {
  769. name: "Micro",
  770. height: math.unit(4, "inches")
  771. },
  772. {
  773. name: "Normal",
  774. height: math.unit(6, "feet"),
  775. default: true
  776. },
  777. {
  778. name: "Macro",
  779. height: math.unit(108, "feet")
  780. }
  781. ]
  782. )
  783. };
  784. characterMakers["Aigey"] = () => {
  785. return makeCharacter(
  786. "Aigey",
  787. {
  788. side: {
  789. height: math.unit(6, "feet"),
  790. weight: math.unit(75, "kg"),
  791. name: "Side",
  792. image: {
  793. source: "./media/characters/aigey/side.svg"
  794. }
  795. },
  796. },
  797. [
  798. {
  799. name: "Macro",
  800. height: math.unit(200, "feet"),
  801. default: true
  802. },
  803. {
  804. name: "Megamacro",
  805. height: math.unit(100, "miles")
  806. },
  807. ]
  808. )
  809. };
  810. characterMakers["Natasha"] = () => {
  811. return makeCharacter(
  812. "Natasha",
  813. {
  814. front: {
  815. height: math.unit(5 + 5/12, "feet"),
  816. weight: math.unit(75, "kg"),
  817. name: "Front",
  818. image: {
  819. source: "./media/characters/natasha/front.svg",
  820. extra: 875/846,
  821. bottom: 0.01
  822. }
  823. },
  824. },
  825. [
  826. {
  827. name: "Normal",
  828. height: math.unit(5 + 5/12, "feet")
  829. },
  830. {
  831. name: "Large",
  832. height: math.unit(12, "feet")
  833. },
  834. {
  835. name: "Macro",
  836. height: math.unit(100, "feet"),
  837. default: true
  838. },
  839. {
  840. name: "Macro+",
  841. height: math.unit(260, "feet")
  842. },
  843. {
  844. name: "Macro++",
  845. height: math.unit(1, "mile")
  846. },
  847. ]
  848. )
  849. };
  850. characterMakers["Malik"] = () => {
  851. return makeCharacter(
  852. "Malik",
  853. {
  854. front: {
  855. height: math.unit(6, "feet"),
  856. weight: math.unit(75, "kg"),
  857. name: "Front",
  858. image: {
  859. source: "./media/characters/malik/front.svg"
  860. }
  861. },
  862. side: {
  863. height: math.unit(6, "feet"),
  864. weight: math.unit(75, "kg"),
  865. name: "Side",
  866. image: {
  867. source: "./media/characters/malik/side.svg",
  868. extra: 1.1539
  869. }
  870. },
  871. back: {
  872. height: math.unit(6, "feet"),
  873. weight: math.unit(75, "kg"),
  874. name: "Back",
  875. image: {
  876. source: "./media/characters/malik/back.svg"
  877. }
  878. },
  879. },
  880. [
  881. {
  882. name: "Macro",
  883. height: math.unit(156, "feet"),
  884. default: true
  885. },
  886. {
  887. name: "Macro+",
  888. height: math.unit(1188, "feet")
  889. },
  890. ]
  891. )
  892. };
  893. characterMakers["Sefer"] = () => {
  894. return makeCharacter(
  895. "Sefer",
  896. {
  897. front: {
  898. height: math.unit(6, "feet"),
  899. weight: math.unit(75, "kg"),
  900. name: "Front",
  901. image: {
  902. source: "./media/characters/sefer/front.svg"
  903. }
  904. },
  905. back: {
  906. height: math.unit(6, "feet"),
  907. weight: math.unit(75, "kg"),
  908. name: "Back",
  909. image: {
  910. source: "./media/characters/sefer/back.svg"
  911. }
  912. },
  913. },
  914. [
  915. {
  916. name: "Normal",
  917. height: math.unit(6, "feet"),
  918. default: true
  919. },
  920. ]
  921. )
  922. };
  923. characterMakers["North"] = () => {
  924. return makeCharacter(
  925. "North",
  926. {
  927. body: {
  928. height: math.unit(2.2428, "meter"),
  929. weight: math.unit(124.738, "kg"),
  930. name: "Body",
  931. image: {
  932. extra: 1225 / 1050,
  933. source: "./media/characters/north/front.svg"
  934. }
  935. }
  936. },
  937. [
  938. {
  939. name: "Micro",
  940. height: math.unit(4, "inches")
  941. },
  942. {
  943. name: "Macro",
  944. height: math.unit(63, "meters")
  945. },
  946. {
  947. name: "Megamacro",
  948. height: math.unit(101, "miles"),
  949. default: true
  950. }
  951. ]
  952. )
  953. };
  954. characterMakers["Talan"] = () => {
  955. return makeCharacter(
  956. "Talan",
  957. {
  958. body: {
  959. height: math.unit(2, "meter"),
  960. weight: math.unit(70, "kg"),
  961. name: "Body",
  962. image: {
  963. bottom: 0.02,
  964. source: "./media/characters/talan/front.svg"
  965. }
  966. }
  967. },
  968. [
  969. {
  970. name: "Normal",
  971. height: math.unit(4, "meters")
  972. },
  973. {
  974. name: "Macro",
  975. height: math.unit(100, "meters")
  976. },
  977. {
  978. name: "Megamacro",
  979. height: math.unit(2, "miles"),
  980. default: true
  981. },
  982. {
  983. name: "Gigamacro",
  984. height: math.unit(5000, "miles")
  985. },
  986. {
  987. name: "Teramacro",
  988. height: math.unit(100, "parsecs")
  989. }
  990. ]
  991. )
  992. };
  993. characterMakers["Gael'Rathus"] = () => {
  994. return makeCharacter(
  995. "Gael'Rathus",
  996. {
  997. front: {
  998. height: math.unit(2, "meter"),
  999. weight: math.unit(90, "kg"),
  1000. name: "Front",
  1001. image: {
  1002. source: "./media/characters/gael'rathus/front.svg"
  1003. }
  1004. },
  1005. frontAlt: {
  1006. height: math.unit(2, "meter"),
  1007. weight: math.unit(90, "kg"),
  1008. name: "Front (alt)",
  1009. image: {
  1010. source: "./media/characters/gael'rathus/front-alt.svg"
  1011. }
  1012. },
  1013. frontAlt2: {
  1014. height: math.unit(2, "meter"),
  1015. weight: math.unit(90, "kg"),
  1016. name: "Front (alt 2)",
  1017. image: {
  1018. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1019. }
  1020. }
  1021. },
  1022. [
  1023. {
  1024. name: "Normal",
  1025. height: math.unit(9, "feet"),
  1026. default: true
  1027. },
  1028. {
  1029. name: "Large",
  1030. height: math.unit(25, "feet")
  1031. },
  1032. {
  1033. name: "Macro",
  1034. height: math.unit(0.25, "miles")
  1035. },
  1036. {
  1037. name: "Megamacro",
  1038. height: math.unit(10, "miles")
  1039. }
  1040. ]
  1041. )
  1042. };
  1043. characterMakers["Sosha"] = () => {
  1044. return makeCharacter(
  1045. "Sosha",
  1046. {
  1047. side: {
  1048. height: math.unit(2, "meter"),
  1049. weight: math.unit(140, "kg"),
  1050. name: "Side",
  1051. image: {
  1052. source: "./media/characters/sosha/side.svg",
  1053. bottom: 0.042
  1054. }
  1055. },
  1056. },
  1057. [
  1058. {
  1059. name: "Normal",
  1060. height: math.unit(12, "feet"),
  1061. default: true
  1062. }
  1063. ]
  1064. )
  1065. };
  1066. characterMakers["RuNNoLa"] = () => {
  1067. return makeCharacter(
  1068. "RuNNoLa",
  1069. {
  1070. side: {
  1071. height: math.unit(5 + 5/12, "feet"),
  1072. weight: math.unit(170, "kg"),
  1073. name: "Side",
  1074. image: {
  1075. source: "./media/characters/runnola/side.svg",
  1076. extra: 741/448,
  1077. bottom: 0.05
  1078. }
  1079. },
  1080. },
  1081. [
  1082. {
  1083. name: "Small",
  1084. height: math.unit(3, "feet")
  1085. },
  1086. {
  1087. name: "Normal",
  1088. height: math.unit(5 + 5/12, "feet"),
  1089. default: true
  1090. },
  1091. {
  1092. name: "Big",
  1093. height: math.unit(10, "feet")
  1094. },
  1095. ]
  1096. )
  1097. };
  1098. characterMakers["Kurribird"] = () => {
  1099. return makeCharacter(
  1100. "Kurribird",
  1101. {
  1102. front: {
  1103. height: math.unit(2, "meter"),
  1104. weight: math.unit(50, "kg"),
  1105. name: "Front",
  1106. image: {
  1107. source: "./media/characters/kurribird/front.svg",
  1108. bottom: 0.015
  1109. }
  1110. },
  1111. frontAlt: {
  1112. height: math.unit(1.5, "meter"),
  1113. weight: math.unit(50, "kg"),
  1114. name: "Front (Alt)",
  1115. image: {
  1116. source: "./media/characters/kurribird/front-alt.svg",
  1117. extra: 1.45
  1118. }
  1119. },
  1120. },
  1121. [
  1122. {
  1123. name: "Normal",
  1124. height: math.unit(7, "feet")
  1125. },
  1126. {
  1127. name: "Big",
  1128. height: math.unit(12, "feet"),
  1129. default: true
  1130. },
  1131. {
  1132. name: "Macro",
  1133. height: math.unit(1500, "feet")
  1134. },
  1135. {
  1136. name: "Megamacro",
  1137. height: math.unit(2, "miles")
  1138. }
  1139. ]
  1140. )
  1141. };
  1142. characterMakers["Elbial"] = () => {
  1143. return makeCharacter(
  1144. "Elbial",
  1145. {
  1146. front: {
  1147. height: math.unit(2, "meter"),
  1148. weight: math.unit(80, "kg"),
  1149. name: "Front",
  1150. image: {
  1151. source: "./media/characters/elbial/front.svg"
  1152. }
  1153. },
  1154. side: {
  1155. height: math.unit(2, "meter"),
  1156. weight: math.unit(80, "kg"),
  1157. name: "Side",
  1158. image: {
  1159. source: "./media/characters/elbial/side.svg"
  1160. }
  1161. },
  1162. back: {
  1163. height: math.unit(2, "meter"),
  1164. weight: math.unit(80, "kg"),
  1165. name: "Back",
  1166. image: {
  1167. source: "./media/characters/elbial/back.svg"
  1168. }
  1169. },
  1170. },
  1171. [
  1172. {
  1173. name: "Large",
  1174. height: math.unit(100, "feet")
  1175. },
  1176. {
  1177. name: "Macro",
  1178. height: math.unit(500, "feet"),
  1179. default: true
  1180. },
  1181. {
  1182. name: "Megamacro",
  1183. height: math.unit(10, "miles")
  1184. },
  1185. {
  1186. name: "Gigamacro",
  1187. height: math.unit(25000, "miles")
  1188. },
  1189. {
  1190. name: "Full-Size",
  1191. height: math.unit(8000000, "gigaparsecs")
  1192. }
  1193. ]
  1194. )
  1195. };
  1196. characterMakers["Noah"] = () => {
  1197. return makeCharacter(
  1198. "Noah",
  1199. {
  1200. front: {
  1201. height: math.unit(2, "meter"),
  1202. weight: math.unit(60, "kg"),
  1203. name: "Front",
  1204. image: {
  1205. source: "./media/characters/noah/front.svg"
  1206. }
  1207. },
  1208. talons: {
  1209. height: math.unit(0.315, "meter"),
  1210. name: "Talons",
  1211. image: {
  1212. source: "./media/characters/noah/talons.svg"
  1213. }
  1214. }
  1215. },
  1216. [
  1217. {
  1218. name: "Large",
  1219. height: math.unit(50, "feet")
  1220. },
  1221. {
  1222. name: "Macro",
  1223. height: math.unit(750, "feet"),
  1224. default: true
  1225. },
  1226. {
  1227. name: "Megamacro",
  1228. height: math.unit(50, "miles")
  1229. },
  1230. {
  1231. name: "Gigamacro",
  1232. height: math.unit(100000, "miles")
  1233. },
  1234. {
  1235. name: "Full-Size",
  1236. height: math.unit(3000000000, "miles")
  1237. }
  1238. ]
  1239. )
  1240. };
  1241. characterMakers["Natalya"] = () => {
  1242. return makeCharacter(
  1243. "Natalya",
  1244. {
  1245. front: {
  1246. height: math.unit(2, "meter"),
  1247. weight: math.unit(80, "kg"),
  1248. name: "Front",
  1249. image: {
  1250. source: "./media/characters/natalya/front.svg"
  1251. }
  1252. },
  1253. back: {
  1254. height: math.unit(2, "meter"),
  1255. weight: math.unit(80, "kg"),
  1256. name: "Back",
  1257. image: {
  1258. source: "./media/characters/natalya/back.svg"
  1259. }
  1260. }
  1261. },
  1262. [
  1263. {
  1264. name: "Normal",
  1265. height: math.unit(150, "feet"),
  1266. default: true
  1267. },
  1268. {
  1269. name: "Megamacro",
  1270. height: math.unit(5, "miles")
  1271. },
  1272. {
  1273. name: "Full-Size",
  1274. height: math.unit(600, "kiloparsecs")
  1275. }
  1276. ]
  1277. )
  1278. };
  1279. characterMakers["Erestrebah"] = () => {
  1280. return makeCharacter(
  1281. "Erestrebah",
  1282. {
  1283. front: {
  1284. height: math.unit(2, "meter"),
  1285. weight: math.unit(50, "kg"),
  1286. name: "Front",
  1287. image: {
  1288. source: "./media/characters/erestrebah/front.svg",
  1289. extra: 208/193,
  1290. bottom: 0.055
  1291. }
  1292. },
  1293. back: {
  1294. height: math.unit(2, "meter"),
  1295. weight: math.unit(50, "kg"),
  1296. name: "Back",
  1297. image: {
  1298. source: "./media/characters/erestrebah/back.svg",
  1299. extra: 1.3
  1300. }
  1301. }
  1302. },
  1303. [
  1304. {
  1305. name: "Normal",
  1306. height: math.unit(10, "feet")
  1307. },
  1308. {
  1309. name: "Large",
  1310. height: math.unit(50, "feet"),
  1311. default: true
  1312. },
  1313. {
  1314. name: "Macro",
  1315. height: math.unit(300, "feet")
  1316. },
  1317. {
  1318. name: "Macro+",
  1319. height: math.unit(750, "feet")
  1320. },
  1321. {
  1322. name: "Megamacro",
  1323. height: math.unit(3, "miles")
  1324. }
  1325. ]
  1326. )
  1327. };
  1328. characterMakers["Jennifer"] = () => {
  1329. return makeCharacter(
  1330. "Jennifer",
  1331. {
  1332. front: {
  1333. height: math.unit(2, "meter"),
  1334. weight: math.unit(80, "kg"),
  1335. name: "Front",
  1336. image: {
  1337. source: "./media/characters/jennifer/front.svg",
  1338. bottom: 0.11,
  1339. extra: 1.16
  1340. }
  1341. },
  1342. frontAlt: {
  1343. height: math.unit(2, "meter"),
  1344. weight: math.unit(80, "kg"),
  1345. name: "Front (Alt)",
  1346. image: {
  1347. source: "./media/characters/jennifer/front-alt.svg"
  1348. }
  1349. }
  1350. },
  1351. [
  1352. {
  1353. name: "Canon Height",
  1354. height: math.unit(120, "feet"),
  1355. default: true
  1356. },
  1357. {
  1358. name: "Macro+",
  1359. height: math.unit(300, "feet")
  1360. },
  1361. {
  1362. name: "Megamacro",
  1363. height: math.unit(20000, "feet")
  1364. }
  1365. ]
  1366. )
  1367. };
  1368. characterMakers["Kalista"] = () => {
  1369. return makeCharacter(
  1370. "Kalista",
  1371. {
  1372. front: {
  1373. height: math.unit(2, "meter"),
  1374. weight: math.unit(50, "kg"),
  1375. name: "Front",
  1376. image: {
  1377. source: "./media/characters/kalista/front.svg",
  1378. extra: 1947/1700
  1379. }
  1380. },
  1381. back: {
  1382. height: math.unit(2, "meter"),
  1383. weight: math.unit(50, "kg"),
  1384. name: "Back",
  1385. image: {
  1386. source: "./media/characters/kalista/back.svg",
  1387. extra: 1366/1156
  1388. }
  1389. }
  1390. },
  1391. [
  1392. {
  1393. name: "Uncomfortably Small",
  1394. height: math.unit(10, "feet")
  1395. },
  1396. {
  1397. name: "Small",
  1398. height: math.unit(30, "feet")
  1399. },
  1400. {
  1401. name: "Macro",
  1402. height: math.unit(100, "feet"),
  1403. default: true
  1404. },
  1405. {
  1406. name: "Macro+",
  1407. height: math.unit(2000, "feet")
  1408. },
  1409. {
  1410. name: "True Form",
  1411. height: math.unit(8924, "miles")
  1412. }
  1413. ]
  1414. )
  1415. };
  1416. characterMakers["GiantGrowingVixen"] = () => {
  1417. return makeCharacter(
  1418. "GiantGrowingVixen",
  1419. {
  1420. front: {
  1421. height: math.unit(2, "meter"),
  1422. weight: math.unit(120, "kg"),
  1423. name: "Front",
  1424. image: {
  1425. source: "./media/characters/ggv/front.svg"
  1426. }
  1427. },
  1428. side: {
  1429. height: math.unit(2, "meter"),
  1430. weight: math.unit(120, "kg"),
  1431. name: "Side",
  1432. image: {
  1433. source: "./media/characters/ggv/side.svg"
  1434. }
  1435. }
  1436. },
  1437. [
  1438. {
  1439. name: "Extremely Puny",
  1440. height: math.unit(9 + 5 / 12, "feet")
  1441. },
  1442. {
  1443. name: "Horribly Small",
  1444. height: math.unit(47.7, "miles"),
  1445. default: true
  1446. },
  1447. {
  1448. name: "Reasonably Sized",
  1449. height: math.unit(25000, "parsecs")
  1450. },
  1451. {
  1452. name: "Slightly Uncompressed",
  1453. height: math.unit(7.77e31, "parsecs")
  1454. },
  1455. {
  1456. name: "Omniversal",
  1457. height: math.unit(1e300, "meters")
  1458. },
  1459. ]
  1460. )
  1461. };
  1462. characterMakers["Napalm"] = () => {
  1463. return makeCharacter(
  1464. "Napalm",
  1465. {
  1466. front: {
  1467. height: math.unit(2, "meter"),
  1468. weight: math.unit(75, "lb"),
  1469. name: "Front",
  1470. image: {
  1471. source: "./media/characters/napalm/front.svg"
  1472. }
  1473. },
  1474. back: {
  1475. height: math.unit(2, "meter"),
  1476. weight: math.unit(75, "lb"),
  1477. name: "Back",
  1478. image: {
  1479. source: "./media/characters/napalm/back.svg"
  1480. }
  1481. }
  1482. },
  1483. [
  1484. {
  1485. name: "Standard",
  1486. height: math.unit(55, "feet"),
  1487. default: true
  1488. }
  1489. ]
  1490. )
  1491. };
  1492. characterMakers["Asana"] = () => {
  1493. return makeCharacter(
  1494. "Asana",
  1495. {
  1496. front: {
  1497. height: math.unit(7 + 5 / 6, "feet"),
  1498. weight: math.unit(325, "lb"),
  1499. name: "Front",
  1500. image: {
  1501. source: "./media/characters/asana/front.svg",
  1502. extra: 1128 / 1068
  1503. }
  1504. },
  1505. back: {
  1506. height: math.unit(7 + 5 / 6, "feet"),
  1507. weight: math.unit(325, "lb"),
  1508. name: "Back",
  1509. image: {
  1510. source: "./media/characters/asana/back.svg",
  1511. extra: 1128 / 1068
  1512. }
  1513. },
  1514. },
  1515. [
  1516. {
  1517. name: "Standard",
  1518. height: math.unit(7 + 5 / 6, "feet"),
  1519. default: true
  1520. },
  1521. {
  1522. name: "Large",
  1523. height: math.unit(10, "meters")
  1524. },
  1525. {
  1526. name: "Macro",
  1527. height: math.unit(2500, "meters")
  1528. },
  1529. {
  1530. name: "Megamacro",
  1531. height: math.unit(5e6, "meters")
  1532. },
  1533. {
  1534. name: "Examacro",
  1535. height: math.unit(5e12, "lightyears")
  1536. },
  1537. {
  1538. name: "Max Size",
  1539. height: math.unit(1e31, "lightyears")
  1540. }
  1541. ]
  1542. )
  1543. };
  1544. characterMakers["Ebony"] = () => {
  1545. return makeCharacter(
  1546. "Ebony",
  1547. {
  1548. front: {
  1549. height: math.unit(2, "meter"),
  1550. weight: math.unit(60, "kg"),
  1551. name: "Front",
  1552. image: {
  1553. source: "./media/characters/ebony/front.svg",
  1554. bottom: 0.03,
  1555. extra: 1045 / 810 + 0.03
  1556. }
  1557. },
  1558. side: {
  1559. height: math.unit(2, "meter"),
  1560. weight: math.unit(60, "kg"),
  1561. name: "Side",
  1562. image: {
  1563. source: "./media/characters/ebony/side.svg",
  1564. bottom: 0.03,
  1565. extra: 1045 / 810 + 0.03
  1566. }
  1567. },
  1568. back: {
  1569. height: math.unit(2, "meter"),
  1570. weight: math.unit(60, "kg"),
  1571. name: "Back",
  1572. image: {
  1573. source: "./media/characters/ebony/back.svg",
  1574. bottom: 0.01,
  1575. extra: 1045 / 810 + 0.01
  1576. }
  1577. },
  1578. },
  1579. [
  1580. // TODO check why I did this lol
  1581. {
  1582. name: "Standard",
  1583. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1584. default: true
  1585. },
  1586. {
  1587. name: "Macro",
  1588. height: math.unit(200, "feet")
  1589. },
  1590. {
  1591. name: "Gigamacro",
  1592. height: math.unit(13000, "km")
  1593. }
  1594. ]
  1595. )
  1596. };
  1597. characterMakers["Mountain"] = () => {
  1598. return makeCharacter(
  1599. "Mountain",
  1600. {
  1601. front: {
  1602. height: math.unit(6, "feet"),
  1603. weight: math.unit(175, "lb"),
  1604. name: "Front",
  1605. image: {
  1606. source: "./media/characters/mountain/front.svg"
  1607. }
  1608. },
  1609. back: {
  1610. height: math.unit(6, "feet"),
  1611. weight: math.unit(175, "lb"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/mountain/back.svg"
  1615. }
  1616. },
  1617. },
  1618. [
  1619. {
  1620. name: "Large",
  1621. height: math.unit(20, "meters")
  1622. },
  1623. {
  1624. name: "Macro",
  1625. height: math.unit(300, "meters")
  1626. },
  1627. {
  1628. name: "Gigamacro",
  1629. height: math.unit(10000, "km"),
  1630. default: true
  1631. },
  1632. {
  1633. name: "Examacro",
  1634. height: math.unit(10e9, "lightyears")
  1635. }
  1636. ]
  1637. )
  1638. };
  1639. characterMakers["Rick"] = () => {
  1640. return makeCharacter(
  1641. "Rick",
  1642. {
  1643. front: {
  1644. height: math.unit(8, "feet"),
  1645. weight: math.unit(500, "lb"),
  1646. name: "Front",
  1647. image: {
  1648. source: "./media/characters/rick/front.svg"
  1649. }
  1650. }
  1651. },
  1652. [
  1653. {
  1654. name: "Normal",
  1655. height: math.unit(8, "feet"),
  1656. default: true
  1657. },
  1658. {
  1659. name: "Macro",
  1660. height: math.unit(5, "km")
  1661. }
  1662. ]
  1663. )
  1664. };
  1665. characterMakers["Ona"] = () => {
  1666. return makeCharacter(
  1667. "Ona",
  1668. {
  1669. front: {
  1670. height: math.unit(8, "feet"),
  1671. weight: math.unit(120, "lb"),
  1672. name: "Front",
  1673. image: {
  1674. source: "./media/characters/ona/front.svg"
  1675. }
  1676. },
  1677. frontAlt: {
  1678. height: math.unit(8, "feet"),
  1679. weight: math.unit(120, "lb"),
  1680. name: "Front (Alt)",
  1681. image: {
  1682. source: "./media/characters/ona/front-alt.svg"
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(8, "feet"),
  1687. weight: math.unit(120, "lb"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/ona/back.svg"
  1691. }
  1692. },
  1693. foot: {
  1694. height: math.unit(1.1, "feet"),
  1695. name: "Foot",
  1696. image: {
  1697. source: "./media/characters/ona/foot.svg"
  1698. }
  1699. }
  1700. },
  1701. [
  1702. {
  1703. name: "Megamacro",
  1704. height: math.unit(70, "km"),
  1705. default: true
  1706. },
  1707. {
  1708. name: "Gigamacro",
  1709. height: math.unit(681818, "miles")
  1710. },
  1711. {
  1712. name: "Examacro",
  1713. height: math.unit(3800000, "lightyears")
  1714. },
  1715. ]
  1716. )
  1717. };
  1718. characterMakers["Mech"] = () => {
  1719. return makeCharacter(
  1720. "Mech",
  1721. {
  1722. front: {
  1723. height: math.unit(12, "feet"),
  1724. weight: math.unit(3000, "lb"),
  1725. name: "Front",
  1726. image: {
  1727. source: "./media/characters/mech/front.svg",
  1728. bottom: 0.025,
  1729. }
  1730. },
  1731. back: {
  1732. height: math.unit(12, "feet"),
  1733. weight: math.unit(3000, "lb"),
  1734. name: "Back",
  1735. image: {
  1736. source: "./media/characters/mech/back.svg",
  1737. bottom: 0.03,
  1738. }
  1739. }
  1740. },
  1741. [
  1742. {
  1743. name: "Normal",
  1744. height: math.unit(12, "feet")
  1745. },
  1746. {
  1747. name: "Macro",
  1748. height: math.unit(300, "feet"),
  1749. default: true
  1750. },
  1751. {
  1752. name: "Macro+",
  1753. height: math.unit(1500, "feet")
  1754. },
  1755. ]
  1756. )
  1757. };
  1758. characterMakers["Gregory"] = () => {
  1759. return makeCharacter(
  1760. "Gregory",
  1761. {
  1762. front: {
  1763. height: math.unit(1.3, "meter"),
  1764. weight: math.unit(30, "kg"),
  1765. name: "Front",
  1766. image: {
  1767. source: "./media/characters/gregory/front.svg",
  1768. }
  1769. }
  1770. },
  1771. [
  1772. {
  1773. name: "Normal",
  1774. height: math.unit(1.3, "meter"),
  1775. default: true
  1776. },
  1777. {
  1778. name: "Macro",
  1779. height: math.unit(20, "meter")
  1780. }
  1781. ]
  1782. )
  1783. };
  1784. characterMakers["Elory"] = () => {
  1785. return makeCharacter(
  1786. "Elory",
  1787. {
  1788. front: {
  1789. height: math.unit(2.8, "meter"),
  1790. weight: math.unit(200, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/elory/front.svg",
  1794. }
  1795. }
  1796. },
  1797. [
  1798. {
  1799. name: "Normal",
  1800. height: math.unit(2.8, "meter"),
  1801. default: true
  1802. },
  1803. {
  1804. name: "Macro",
  1805. height: math.unit(38, "meter")
  1806. }
  1807. ]
  1808. )
  1809. };
  1810. characterMakers["Angelpatamon"] = () => {
  1811. return makeCharacter(
  1812. "Angelpatamon",
  1813. {
  1814. front: {
  1815. height: math.unit(470, "feet"),
  1816. weight: math.unit(924, "tons"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/angelpatamon/front.svg",
  1820. }
  1821. }
  1822. },
  1823. [
  1824. {
  1825. name: "Normal",
  1826. height: math.unit(470, "feet"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Deity Size I",
  1831. height: math.unit(28651.2, "km")
  1832. },
  1833. {
  1834. name: "Deity Size II",
  1835. height: math.unit(171907.2, "km")
  1836. }
  1837. ]
  1838. )
  1839. };
  1840. characterMakers["Cryae"] = () => {
  1841. return makeCharacter(
  1842. "Cryae",
  1843. {
  1844. side: {
  1845. height: math.unit(7.2, "meter"),
  1846. weight: math.unit(8.2, "tons"),
  1847. name: "Side",
  1848. image: {
  1849. source: "./media/characters/cryae/side.svg",
  1850. extra: 3500 / 1500
  1851. }
  1852. }
  1853. },
  1854. [
  1855. {
  1856. name: "Normal",
  1857. height: math.unit(7.2, "meter"),
  1858. default: true
  1859. }
  1860. ]
  1861. )
  1862. };
  1863. characterMakers["Xera"] = () => {
  1864. return makeCharacter(
  1865. "Xera",
  1866. {
  1867. front: {
  1868. height: math.unit(6, "feet"),
  1869. weight: math.unit(175, "lb"),
  1870. name: "Front",
  1871. image: {
  1872. source: "./media/characters/xera/front.svg",
  1873. extra: 2300 / 2061
  1874. }
  1875. },
  1876. side: {
  1877. height: math.unit(6, "feet"),
  1878. weight: math.unit(175, "lb"),
  1879. name: "Side",
  1880. image: {
  1881. source: "./media/characters/xera/side.svg",
  1882. extra: 2300 / 2061
  1883. }
  1884. },
  1885. back: {
  1886. height: math.unit(6, "feet"),
  1887. weight: math.unit(175, "lb"),
  1888. name: "Back",
  1889. image: {
  1890. source: "./media/characters/xera/back.svg"
  1891. }
  1892. },
  1893. },
  1894. [
  1895. {
  1896. name: "Small",
  1897. height: math.unit(10, "feet")
  1898. },
  1899. {
  1900. name: "Macro",
  1901. height: math.unit(500, "meters"),
  1902. default: true
  1903. },
  1904. {
  1905. name: "Macro+",
  1906. height: math.unit(10, "km")
  1907. },
  1908. {
  1909. name: "Gigamacro",
  1910. height: math.unit(25000, "km")
  1911. },
  1912. {
  1913. name: "Teramacro",
  1914. height: math.unit(3e6, "km")
  1915. }
  1916. ]
  1917. )
  1918. };
  1919. characterMakers["Nebula"] = () => {
  1920. return makeCharacter(
  1921. "Nebula",
  1922. {
  1923. front: {
  1924. height: math.unit(6, "feet"),
  1925. weight: math.unit(175, "lb"),
  1926. name: "Front",
  1927. image: {
  1928. source: "./media/characters/nebula/front.svg",
  1929. extra: 2600 / 2450
  1930. }
  1931. }
  1932. },
  1933. [
  1934. {
  1935. name: "Small",
  1936. height: math.unit(4.5, "meters")
  1937. },
  1938. {
  1939. name: "Macro",
  1940. height: math.unit(1500, "meters"),
  1941. default: true
  1942. },
  1943. {
  1944. name: "Megamacro",
  1945. height: math.unit(150, "km")
  1946. },
  1947. {
  1948. name: "Gigamacro",
  1949. height: math.unit(27000, "km")
  1950. }
  1951. ]
  1952. )
  1953. };
  1954. characterMakers["Abysgar"] = () => {
  1955. return makeCharacter(
  1956. "Abysgar",
  1957. {
  1958. front: {
  1959. height: math.unit(6, "feet"),
  1960. weight: math.unit(225, "lb"),
  1961. name: "Front",
  1962. image: {
  1963. source: "./media/characters/abysgar/front.svg"
  1964. }
  1965. }
  1966. },
  1967. [
  1968. {
  1969. name: "Small",
  1970. height: math.unit(4.5, "meters")
  1971. },
  1972. {
  1973. name: "Macro",
  1974. height: math.unit(1250, "meters"),
  1975. default: true
  1976. },
  1977. {
  1978. name: "Megamacro",
  1979. height: math.unit(125, "km")
  1980. },
  1981. {
  1982. name: "Gigamacro",
  1983. height: math.unit(26000, "km")
  1984. }
  1985. ]
  1986. )
  1987. };
  1988. characterMakers["Yakuz"] = () => {
  1989. return makeCharacter(
  1990. "Yakuz",
  1991. {
  1992. front: {
  1993. height: math.unit(6, "feet"),
  1994. weight: math.unit(180, "lb"),
  1995. name: "Front",
  1996. image: {
  1997. source: "./media/characters/yakuz/front.svg"
  1998. }
  1999. }
  2000. },
  2001. [
  2002. {
  2003. name: "Small",
  2004. height: math.unit(5, "meters")
  2005. },
  2006. {
  2007. name: "Macro",
  2008. height: math.unit(1500, "meters"),
  2009. default: true
  2010. },
  2011. {
  2012. name: "Megamacro",
  2013. height: math.unit(200, "km")
  2014. },
  2015. {
  2016. name: "Gigamacro",
  2017. height: math.unit(100000, "km")
  2018. }
  2019. ]
  2020. )
  2021. };
  2022. characterMakers["Mirova"] = () => {
  2023. return makeCharacter(
  2024. "Mirova",
  2025. {
  2026. front: {
  2027. height: math.unit(6, "feet"),
  2028. weight: math.unit(175, "lb"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/mirova/front.svg"
  2032. }
  2033. }
  2034. },
  2035. [
  2036. {
  2037. name: "Small",
  2038. height: math.unit(5, "meters")
  2039. },
  2040. {
  2041. name: "Macro",
  2042. height: math.unit(900, "meters"),
  2043. default: true
  2044. },
  2045. {
  2046. name: "Megamacro",
  2047. height: math.unit(135, "km")
  2048. },
  2049. {
  2050. name: "Gigamacro",
  2051. height: math.unit(20000, "km")
  2052. }
  2053. ]
  2054. )
  2055. };
  2056. characterMakers["Asana (Mech)"] = () => {
  2057. return makeCharacter(
  2058. "Asana (Mech)",
  2059. {
  2060. side: {
  2061. height: math.unit(28.35, "feet"),
  2062. weight: math.unit(99.75, "tons"),
  2063. name: "Side",
  2064. image: {
  2065. source: "./media/characters/asana-mech/side.svg"
  2066. }
  2067. }
  2068. },
  2069. [
  2070. {
  2071. name: "Normal",
  2072. height: math.unit(28.35, "feet"),
  2073. default: true
  2074. },
  2075. {
  2076. name: "Macro",
  2077. height: math.unit(2500, "feet")
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(25, "miles")
  2082. },
  2083. {
  2084. name: "Examacro",
  2085. height: math.unit(6e8, "lightyears")
  2086. },
  2087. ]
  2088. )
  2089. };
  2090. characterMakers["Ashtrek"] = () => {
  2091. return makeCharacter(
  2092. "Ashtrek",
  2093. {
  2094. front: {
  2095. height: math.unit(2, "meters"),
  2096. weight: math.unit(70, "kg"),
  2097. name: "Front",
  2098. image: {
  2099. source: "./media/characters/ashtrek/front.svg",
  2100. extra: 560/524 ,
  2101. bottom: 0.01
  2102. }
  2103. },
  2104. frontArmor: {
  2105. height: math.unit(2, "meters"),
  2106. weight: math.unit(76, "kg"),
  2107. name: "Front (Armor)",
  2108. image: {
  2109. source: "./media/characters/ashtrek/front-armor.svg",
  2110. extra: 561/527 ,
  2111. bottom: 0.01
  2112. }
  2113. },
  2114. side: {
  2115. height: math.unit(2, "meters"),
  2116. weight: math.unit(70, "kg"),
  2117. name: "Side",
  2118. image: {
  2119. source: "./media/characters/ashtrek/side.svg",
  2120. extra: 1717/1609 ,
  2121. bottom: 0.005
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(2, "meters"),
  2126. weight: math.unit(70, "kg"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/ashtrek/back.svg",
  2130. extra: 1570/1501
  2131. }
  2132. },
  2133. },
  2134. [
  2135. {
  2136. name: "DEFCON 5",
  2137. height: math.unit(5, "meters")
  2138. },
  2139. {
  2140. name: "DEFCON 4",
  2141. height: math.unit(500, "meters"),
  2142. default: true
  2143. },
  2144. {
  2145. name: "DEFCON 3",
  2146. height: math.unit(5, "km")
  2147. },
  2148. {
  2149. name: "DEFCON 2",
  2150. height: math.unit(500, "km")
  2151. },
  2152. {
  2153. name: "DEFCON 1",
  2154. height: math.unit(500000, "km")
  2155. },
  2156. {
  2157. name: "DEFCON 0",
  2158. height: math.unit(3, "gigaparsecs")
  2159. },
  2160. ]
  2161. )
  2162. };
  2163. characterMakers["Gale"] = () => {
  2164. return makeCharacter(
  2165. "Gale",
  2166. {
  2167. front: {
  2168. height: math.unit(2, "meters"),
  2169. weight: math.unit(76, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/gale/front.svg"
  2173. }
  2174. },
  2175. frontAlt1: {
  2176. height: math.unit(2, "meters"),
  2177. weight: math.unit(76, "kg"),
  2178. name: "Front (Alt 1)",
  2179. image: {
  2180. source: "./media/characters/gale/front-alt-1.svg"
  2181. }
  2182. },
  2183. frontAlt2: {
  2184. height: math.unit(2, "meters"),
  2185. weight: math.unit(76, "kg"),
  2186. name: "Front (Alt 2)",
  2187. image: {
  2188. source: "./media/characters/gale/front-alt-2.svg"
  2189. }
  2190. },
  2191. },
  2192. [
  2193. {
  2194. name: "Normal",
  2195. height: math.unit(7, "feet")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(150, "feet"),
  2200. default: true
  2201. },
  2202. {
  2203. name: "Macro+",
  2204. height: math.unit(300, "feet")
  2205. },
  2206. ]
  2207. )
  2208. };
  2209. characterMakers["Draylen"] = () => {
  2210. return makeCharacter(
  2211. "Draylen",
  2212. {
  2213. front: {
  2214. height: math.unit(2, "meters"),
  2215. weight: math.unit(76, "kg"),
  2216. name: "Front",
  2217. image: {
  2218. source: "./media/characters/draylen/front.svg"
  2219. }
  2220. }
  2221. },
  2222. [
  2223. {
  2224. name: "Macro",
  2225. height: math.unit(150, "feet"),
  2226. default: true
  2227. }
  2228. ]
  2229. )
  2230. };
  2231. characterMakers["Chez"] = () => {
  2232. return makeCharacter(
  2233. "Chez",
  2234. {
  2235. front: {
  2236. height: math.unit(7 + 9 / 12, "feet"),
  2237. weight: math.unit(379, "lbs"),
  2238. name: "Front",
  2239. image: {
  2240. source: "./media/characters/chez/front.svg"
  2241. }
  2242. },
  2243. side: {
  2244. height: math.unit(7 + 9 / 12, "feet"),
  2245. weight: math.unit(379, "lbs"),
  2246. name: "Side",
  2247. image: {
  2248. source: "./media/characters/chez/side.svg"
  2249. }
  2250. }
  2251. },
  2252. [
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(7 + 9 / 12, "feet"),
  2256. default: true
  2257. },
  2258. {
  2259. name: "God King",
  2260. height: math.unit(9750000, "meters")
  2261. }
  2262. ]
  2263. )
  2264. };
  2265. characterMakers["Kaylum"] = () => {
  2266. return makeCharacter(
  2267. "Kaylum",
  2268. {
  2269. front: {
  2270. height: math.unit(6, "feet"),
  2271. weight: math.unit(275, "lbs"),
  2272. name: "Front",
  2273. image: {
  2274. source: "./media/characters/kaylum/front.svg",
  2275. bottom: 0.01,
  2276. extra: 1166 / 1031
  2277. }
  2278. },
  2279. frontWingless: {
  2280. height: math.unit(6, "feet"),
  2281. weight: math.unit(275, "lbs"),
  2282. name: "Front (Wingless)",
  2283. image: {
  2284. source: "./media/characters/kaylum/front-wingless.svg",
  2285. bottom: 0.01,
  2286. extra: 1117 / 1031
  2287. }
  2288. }
  2289. },
  2290. [
  2291. {
  2292. name: "Normal",
  2293. height: math.unit(3.05, "meters")
  2294. },
  2295. {
  2296. name: "Master",
  2297. height: math.unit(5.5, "meters")
  2298. },
  2299. {
  2300. name: "Rampage",
  2301. height: math.unit(19, "meters")
  2302. },
  2303. {
  2304. name: "Macro Lite",
  2305. height: math.unit(37, "meters")
  2306. },
  2307. {
  2308. name: "Hyper Predator",
  2309. height: math.unit(61, "meters")
  2310. },
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(138, "meters"),
  2314. default: true
  2315. }
  2316. ]
  2317. )
  2318. };
  2319. characterMakers["Geta"] = () => {
  2320. return makeCharacter(
  2321. "Geta",
  2322. {
  2323. front: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(150, "lbs"),
  2326. name: "Front",
  2327. image: {
  2328. source: "./media/characters/geta/front.svg"
  2329. }
  2330. }
  2331. },
  2332. [
  2333. {
  2334. name: "Micro",
  2335. height: math.unit(3, "inches"),
  2336. default: true
  2337. },
  2338. {
  2339. name: "Normal",
  2340. height: math.unit(5 + 5 / 12, "feet")
  2341. }
  2342. ]
  2343. )
  2344. };
  2345. characterMakers["Tyrnn"] = () => {
  2346. return makeCharacter(
  2347. "Tyrnn",
  2348. {
  2349. front: {
  2350. height: math.unit(6, "feet"),
  2351. weight: math.unit(300, "lbs"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/tyrnn/front.svg"
  2355. }
  2356. }
  2357. },
  2358. [
  2359. {
  2360. name: "Main Height",
  2361. height: math.unit(355, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Fave. Height",
  2366. height: math.unit(2400, "feet")
  2367. }
  2368. ]
  2369. )
  2370. };
  2371. characterMakers["Apple"] = () => {
  2372. return makeCharacter(
  2373. "Apple",
  2374. {
  2375. front: {
  2376. height: math.unit(6, "feet"),
  2377. weight: math.unit(300, "lbs"),
  2378. name: "Front",
  2379. image: {
  2380. source: "./media/characters/appledectomy/front.svg"
  2381. }
  2382. }
  2383. },
  2384. [
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(2500, "feet")
  2388. },
  2389. {
  2390. name: "Megamacro",
  2391. height: math.unit(50, "miles"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Gigamacro",
  2396. height: math.unit(5000, "miles")
  2397. },
  2398. {
  2399. name: "Teramacro",
  2400. height: math.unit(250000, "miles")
  2401. },
  2402. ]
  2403. )
  2404. };
  2405. characterMakers["Vulpes"] = () => {
  2406. return makeCharacter(
  2407. "Vulpes",
  2408. {
  2409. front: {
  2410. height: math.unit(6, "feet"),
  2411. weight: math.unit(200, "lbs"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/vulpes/front.svg",
  2415. extra: 573/543,
  2416. bottom: 0.033
  2417. }
  2418. },
  2419. side: {
  2420. height: math.unit(6, "feet"),
  2421. weight: math.unit(200, "lbs"),
  2422. name: "Side",
  2423. image: {
  2424. source: "./media/characters/vulpes/side.svg",
  2425. extra: 573/543,
  2426. bottom: 0.01
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(6, "feet"),
  2431. weight: math.unit(200, "lbs"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/vulpes/back.svg",
  2435. extra: 573/543,
  2436. }
  2437. },
  2438. feet: {
  2439. height: math.unit(1.276, "feet"),
  2440. name: "Feet",
  2441. image: {
  2442. source: "./media/characters/vulpes/feet.svg"
  2443. }
  2444. },
  2445. maw: {
  2446. height: math.unit(1.18, "feet"),
  2447. name: "Maw",
  2448. image: {
  2449. source: "./media/characters/vulpes/maw.svg"
  2450. }
  2451. },
  2452. },
  2453. [
  2454. {
  2455. name: "Micro",
  2456. height: math.unit(2, "inches")
  2457. },
  2458. {
  2459. name: "Normal",
  2460. height: math.unit(6.3, "feet")
  2461. },
  2462. {
  2463. name: "Macro",
  2464. height: math.unit(850, "feet")
  2465. },
  2466. {
  2467. name: "Megamacro",
  2468. height: math.unit(7500, "feet"),
  2469. default: true
  2470. },
  2471. {
  2472. name: "Gigamacro",
  2473. height: math.unit(570000, "miles")
  2474. }
  2475. ]
  2476. )
  2477. };
  2478. characterMakers["Rain Fallen"] = () => {
  2479. return makeCharacter(
  2480. "Rain Fallen",
  2481. {
  2482. front: {
  2483. height: math.unit(6, "feet"),
  2484. weight: math.unit(210, "lbs"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/rain-fallen/front.svg"
  2488. }
  2489. },
  2490. side: {
  2491. height: math.unit(6, "feet"),
  2492. weight: math.unit(210, "lbs"),
  2493. name: "Side",
  2494. image: {
  2495. source: "./media/characters/rain-fallen/side.svg"
  2496. }
  2497. },
  2498. back: {
  2499. height: math.unit(6, "feet"),
  2500. weight: math.unit(210, "lbs"),
  2501. name: "Back",
  2502. image: {
  2503. source: "./media/characters/rain-fallen/back.svg"
  2504. }
  2505. },
  2506. feral: {
  2507. height: math.unit(9, "feet"),
  2508. weight: math.unit(700, "lbs"),
  2509. name: "Feral",
  2510. image: {
  2511. source: "./media/characters/rain-fallen/feral.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(5, "meter")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(150, "meter"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Megamacro",
  2527. height: math.unit(278e6, "meter")
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(2e9, "meter")
  2532. },
  2533. {
  2534. name: "Teramacro",
  2535. height: math.unit(8e12, "meter")
  2536. },
  2537. {
  2538. name: "Devourer",
  2539. height: math.unit(14, "zettameters")
  2540. },
  2541. {
  2542. name: "Scarlet King",
  2543. height: math.unit(18, "yottameters")
  2544. },
  2545. {
  2546. name: "Void",
  2547. height: math.unit(6.66e66, "yottameters")
  2548. }
  2549. ]
  2550. )
  2551. };
  2552. characterMakers["Zaakira"] = () => {
  2553. return makeCharacter(
  2554. "Zaakira",
  2555. {
  2556. standing: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(180, "lbs"),
  2559. name: "Standing",
  2560. image: {
  2561. source: "./media/characters/zaakira/standing.svg"
  2562. }
  2563. },
  2564. laying: {
  2565. height: math.unit(3, "feet"),
  2566. weight: math.unit(180, "lbs"),
  2567. name: "Laying",
  2568. image: {
  2569. source: "./media/characters/zaakira/laying.svg"
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(12, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(279, "feet"),
  2581. default: true
  2582. }
  2583. ]
  2584. )
  2585. };
  2586. characterMakers["Sigvald"] = () => {
  2587. return makeCharacter(
  2588. "Sigvald",
  2589. {
  2590. front: {
  2591. height: math.unit(6, "feet"),
  2592. weight: math.unit(250, "lbs"),
  2593. name: "Front",
  2594. image: {
  2595. source: "./media/characters/sigvald/front.svg",
  2596. extra: 1000 / 850
  2597. }
  2598. },
  2599. back: {
  2600. height: math.unit(6, "feet"),
  2601. weight: math.unit(250, "lbs"),
  2602. name: "Back",
  2603. image: {
  2604. source: "./media/characters/sigvald/back.svg"
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(8, "feet")
  2612. },
  2613. {
  2614. name: "Large",
  2615. height: math.unit(12, "feet")
  2616. },
  2617. {
  2618. name: "Larger",
  2619. height: math.unit(20, "feet")
  2620. },
  2621. {
  2622. name: "Macro",
  2623. height: math.unit(150, "feet")
  2624. },
  2625. {
  2626. name: "Macro+",
  2627. height: math.unit(200, "feet"),
  2628. default: true
  2629. },
  2630. ]
  2631. )
  2632. };
  2633. characterMakers["Scott"] = () => {
  2634. return makeCharacter(
  2635. "Scott",
  2636. {
  2637. side: {
  2638. height: math.unit(12, "feet"),
  2639. weight: math.unit(3000, "lbs"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/scott/side.svg",
  2643. extra: 1,
  2644. bottom: 0.069
  2645. }
  2646. },
  2647. upright: {
  2648. height: math.unit(12, "feet"),
  2649. weight: math.unit(3000, "lbs"),
  2650. name: "Upright",
  2651. image: {
  2652. source: "./media/characters/scott/upright.svg",
  2653. extra: 1,
  2654. bottom: 0.05
  2655. }
  2656. },
  2657. },
  2658. [
  2659. {
  2660. name: "Normal",
  2661. height: math.unit(12, "feet"),
  2662. default: true
  2663. },
  2664. ]
  2665. )
  2666. };
  2667. characterMakers["Tobias"] = () => {
  2668. return makeCharacter(
  2669. "Tobias",
  2670. {
  2671. side: {
  2672. height: math.unit(8, "meters"),
  2673. weight: math.unit(84755, "lbs"),
  2674. name: "Side",
  2675. image: {
  2676. source: "./media/characters/tobias/side.svg",
  2677. extra: 5 / 4
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(8, "meters"),
  2685. default: true
  2686. },
  2687. ]
  2688. )
  2689. };
  2690. characterMakers["Kieran"] = () => {
  2691. return makeCharacter(
  2692. "Kieran",
  2693. {
  2694. front: {
  2695. height: math.unit(5.5, "feet"),
  2696. weight: math.unit(400, "lbs"),
  2697. name: "Front",
  2698. image: {
  2699. source: "./media/characters/kieran/front.svg",
  2700. extra: 1.05
  2701. }
  2702. },
  2703. side: {
  2704. height: math.unit(5.5, "feet"),
  2705. weight: math.unit(400, "lbs"),
  2706. name: "Side",
  2707. image: {
  2708. source: "./media/characters/kieran/side.svg",
  2709. extra: 950 / 850
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(5.5, "feet"),
  2717. default: true
  2718. },
  2719. ]
  2720. )
  2721. };
  2722. characterMakers["Sanya"] = () => {
  2723. return makeCharacter(
  2724. "Sanya",
  2725. {
  2726. side: {
  2727. height: math.unit(2, "meters"),
  2728. weight: math.unit(70, "kg"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/sanya/side.svg",
  2732. bottom: 0.02,
  2733. extra: 1.02
  2734. }
  2735. },
  2736. },
  2737. [
  2738. {
  2739. name: "Small",
  2740. height: math.unit(2, "meters")
  2741. },
  2742. {
  2743. name: "Normal",
  2744. height: math.unit(3, "meters")
  2745. },
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(16, "meters"),
  2749. default: true
  2750. },
  2751. ]
  2752. )
  2753. };
  2754. characterMakers["Miranda"] = () => {
  2755. return makeCharacter(
  2756. "Miranda",
  2757. {
  2758. side: {
  2759. height: math.unit(2, "meters"),
  2760. weight: math.unit(120, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/miranda/front.svg",
  2764. extra: 10.6 / 10
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(10, "feet"),
  2772. default: true
  2773. }
  2774. ]
  2775. )
  2776. };
  2777. characterMakers["James"] = () => {
  2778. return makeCharacter(
  2779. "James",
  2780. {
  2781. side: {
  2782. height: math.unit(2, "meters"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/james/front.svg",
  2787. extra: 10 / 8.5
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Normal",
  2794. height: math.unit(8.5, "feet"),
  2795. default: true
  2796. }
  2797. ]
  2798. )
  2799. };
  2800. characterMakers["Heather"] = () => {
  2801. return makeCharacter(
  2802. "Heather",
  2803. {
  2804. side: {
  2805. height: math.unit(9.5, "feet"),
  2806. weight: math.unit(2500, "lbs"),
  2807. name: "Side",
  2808. image: {
  2809. source: "./media/characters/heather/side.svg"
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Normal",
  2816. height: math.unit(9.5, "feet"),
  2817. default: true
  2818. }
  2819. ]
  2820. )
  2821. };
  2822. characterMakers["Lukas"] = () => {
  2823. return makeCharacter(
  2824. "Lukas",
  2825. {
  2826. side: {
  2827. height: math.unit(6.5, "feet"),
  2828. weight: math.unit(400, "lbs"),
  2829. name: "Side",
  2830. image: {
  2831. source: "./media/characters/lukas/side.svg",
  2832. extra: 7.25 / 6.5
  2833. }
  2834. },
  2835. },
  2836. [
  2837. {
  2838. name: "Normal",
  2839. height: math.unit(6.5, "feet"),
  2840. default: true
  2841. }
  2842. ]
  2843. )
  2844. };
  2845. characterMakers["Louise"] = () => {
  2846. return makeCharacter(
  2847. "Louise",
  2848. {
  2849. side: {
  2850. height: math.unit(5, "feet"),
  2851. weight: math.unit(3000, "lbs"),
  2852. name: "Side",
  2853. image: {
  2854. source: "./media/characters/louise/side.svg"
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(5, "feet"),
  2862. default: true
  2863. }
  2864. ]
  2865. )
  2866. };
  2867. characterMakers["Ramona"] = () => {
  2868. return makeCharacter(
  2869. "Ramona",
  2870. {
  2871. side: {
  2872. height: math.unit(6, "feet"),
  2873. weight: math.unit(150, "lbs"),
  2874. name: "Side",
  2875. image: {
  2876. source: "./media/characters/ramona/side.svg"
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(5.3, "meters"),
  2884. default: true
  2885. },
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(20, "stories")
  2889. },
  2890. {
  2891. name: "Macro+",
  2892. height: math.unit(50, "stories")
  2893. },
  2894. ]
  2895. )
  2896. };
  2897. characterMakers["Deerpuff"] = () => {
  2898. return makeCharacter(
  2899. "Deerpuff",
  2900. {
  2901. standing: {
  2902. height: math.unit(5.75, "feet"),
  2903. weight: math.unit(160, "lbs"),
  2904. name: "Standing",
  2905. image: {
  2906. source: "./media/characters/deerpuff/standing.svg",
  2907. extra: 682 / 624
  2908. }
  2909. },
  2910. sitting: {
  2911. height: math.unit(5.75 / 1.79, "feet"),
  2912. weight: math.unit(160, "lbs"),
  2913. name: "Sitting",
  2914. image: {
  2915. source: "./media/characters/deerpuff/sitting.svg",
  2916. bottom: 44 / 400,
  2917. extra: 1
  2918. }
  2919. },
  2920. taurLaying: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(400, "lbs"),
  2923. name: "Taur (Laying)",
  2924. image: {
  2925. source: "./media/characters/deerpuff/taur-laying.svg"
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Puffball",
  2932. height: math.unit(6, "inches")
  2933. },
  2934. {
  2935. name: "Normalpuff",
  2936. height: math.unit(5.75, "feet")
  2937. },
  2938. {
  2939. name: "Macropuff",
  2940. height: math.unit(1500, "feet"),
  2941. default: true
  2942. },
  2943. {
  2944. name: "Megapuff",
  2945. height: math.unit(500, "miles")
  2946. },
  2947. {
  2948. name: "Gigapuff",
  2949. height: math.unit(250000, "miles")
  2950. },
  2951. {
  2952. name: "Omegapuff",
  2953. height: math.unit(1000, "lightyears")
  2954. },
  2955. ]
  2956. )
  2957. };
  2958. characterMakers["Vivian"] = () => {
  2959. return makeCharacter(
  2960. "Vivian",
  2961. {
  2962. stomping: {
  2963. height: math.unit(6, "feet"),
  2964. weight: math.unit(170, "lbs"),
  2965. name: "Stomping",
  2966. image: {
  2967. source: "./media/characters/vivian/stomping.svg"
  2968. }
  2969. },
  2970. sitting: {
  2971. height: math.unit(6 / 1.75, "feet"),
  2972. weight: math.unit(170, "lbs"),
  2973. name: "Sitting",
  2974. image: {
  2975. source: "./media/characters/vivian/sitting.svg",
  2976. bottom: 1 / 6.4,
  2977. extra: 1,
  2978. }
  2979. },
  2980. },
  2981. [
  2982. {
  2983. name: "Normal",
  2984. height: math.unit(7, "feet"),
  2985. default: true
  2986. },
  2987. {
  2988. name: "Macro",
  2989. height: math.unit(10, "stories")
  2990. },
  2991. {
  2992. name: "Macro+",
  2993. height: math.unit(30, "stories")
  2994. },
  2995. {
  2996. name: "Megamacro",
  2997. height: math.unit(10, "miles")
  2998. },
  2999. {
  3000. name: "Megamacro+",
  3001. height: math.unit(2750000, "meters")
  3002. },
  3003. ]
  3004. )
  3005. };
  3006. characterMakers["Prince"] = () => {
  3007. return makeCharacter(
  3008. "Prince",
  3009. {
  3010. front: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(160, "lbs"),
  3013. name: "Front",
  3014. image: {
  3015. source: "./media/characters/prince/front.svg",
  3016. extra: 3400/3000
  3017. }
  3018. },
  3019. jumping: {
  3020. height: math.unit(6, "feet"),
  3021. weight: math.unit(160, "lbs"),
  3022. name: "Jumping",
  3023. image: {
  3024. source: "./media/characters/prince/jump.svg",
  3025. extra: 2555/2134
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(7.75, "feet"),
  3033. default: true
  3034. },
  3035. {
  3036. name: "Not cute",
  3037. height: math.unit(17, "feet")
  3038. },
  3039. {
  3040. name: "I said NOT",
  3041. height: math.unit(91, "feet")
  3042. },
  3043. {
  3044. name: "Please stop",
  3045. height: math.unit(560, "feet")
  3046. },
  3047. {
  3048. name: "What have you done",
  3049. height: math.unit(2200, "feet")
  3050. },
  3051. {
  3052. name: "Deer God",
  3053. height: math.unit(3.6, "miles")
  3054. },
  3055. ]
  3056. )
  3057. };
  3058. characterMakers["Psymon"] = () => {
  3059. return makeCharacter(
  3060. "Psymon",
  3061. {
  3062. standing: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(300, "lbs"),
  3065. name: "Standing",
  3066. image: {
  3067. source: "./media/characters/psymon/standing.svg",
  3068. extra: 1888/1810,
  3069. bottom: 0.05
  3070. }
  3071. },
  3072. slithering: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(300, "lbs"),
  3075. name: "Slithering",
  3076. image: {
  3077. source: "./media/characters/psymon/slithering.svg",
  3078. extra: 1330/1224
  3079. }
  3080. },
  3081. slitheringAlt: {
  3082. height: math.unit(6, "feet"),
  3083. weight: math.unit(300, "lbs"),
  3084. name: "Slithering (Alt)",
  3085. image: {
  3086. source: "./media/characters/psymon/slithering-alt.svg",
  3087. extra: 1330/1224
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(11.25, "feet"),
  3095. default: true
  3096. },
  3097. {
  3098. name: "Large",
  3099. height: math.unit(27, "feet")
  3100. },
  3101. {
  3102. name: "Giant",
  3103. height: math.unit(87, "feet")
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(365, "feet")
  3108. },
  3109. {
  3110. name: "Megamacro",
  3111. height: math.unit(3, "miles")
  3112. },
  3113. {
  3114. name: "World Serpent",
  3115. height: math.unit(8000, "miles")
  3116. },
  3117. ]
  3118. )
  3119. };
  3120. characterMakers["Daimos"] = () => {
  3121. return makeCharacter(
  3122. "Daimos",
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(180, "lbs"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/daimos/front.svg",
  3130. extra: 4160/3897,
  3131. bottom: 0.021
  3132. }
  3133. }
  3134. },
  3135. [
  3136. {
  3137. name: "Normal",
  3138. height: math.unit(8, "feet"),
  3139. default: true
  3140. },
  3141. {
  3142. name: "Big Dog",
  3143. height: math.unit(22, "feet")
  3144. },
  3145. {
  3146. name: "Macro",
  3147. height: math.unit(127, "feet")
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(3600, "feet")
  3152. },
  3153. ]
  3154. )
  3155. };
  3156. characterMakers["Blake"] = () => {
  3157. return makeCharacter(
  3158. "Blake",
  3159. {
  3160. side: {
  3161. height: math.unit(6, "feet"),
  3162. weight: math.unit(180, "lbs"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/blake/side.svg",
  3166. extra: 1212/1120 ,
  3167. bottom: 0.05
  3168. }
  3169. },
  3170. crouched: {
  3171. height: math.unit(6*0.57, "feet"),
  3172. weight: math.unit(180, "lbs"),
  3173. name: "Crouched",
  3174. image: {
  3175. source: "./media/characters/blake/crouched.svg",
  3176. extra: 840/587 ,
  3177. bottom: 0.04
  3178. }
  3179. },
  3180. bent: {
  3181. height: math.unit(6*0.75, "feet"),
  3182. weight: math.unit(180, "lbs"),
  3183. name: "Bent",
  3184. image: {
  3185. source: "./media/characters/blake/bent.svg",
  3186. extra: 592/544 ,
  3187. bottom: 0.035
  3188. }
  3189. },
  3190. },
  3191. [
  3192. {
  3193. name: "Normal",
  3194. height: math.unit(8 + 1/6, "feet"),
  3195. default: true
  3196. },
  3197. {
  3198. name: "Big Backside",
  3199. height: math.unit(37, "feet")
  3200. },
  3201. {
  3202. name: "Subway Shredder",
  3203. height: math.unit(72, "feet")
  3204. },
  3205. {
  3206. name: "City Carver",
  3207. height: math.unit(1675, "feet")
  3208. },
  3209. {
  3210. name: "Tectonic Tweaker",
  3211. height: math.unit(2300, "miles")
  3212. },
  3213. ]
  3214. )
  3215. };
  3216. characterMakers["Guisetto"] = () => {
  3217. return makeCharacter(
  3218. "Guisetto",
  3219. {
  3220. front: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(180, "lbs"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/guisetto/front.svg",
  3226. extra: 856/817,
  3227. bottom: 0.06
  3228. }
  3229. },
  3230. airborne: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(180, "lbs"),
  3233. name: "Airborne",
  3234. image: {
  3235. source: "./media/characters/guisetto/airborne.svg",
  3236. extra: 584/525
  3237. }
  3238. },
  3239. },
  3240. [
  3241. {
  3242. name: "Normal",
  3243. height: math.unit(10 + 11/12, "feet"),
  3244. default: true
  3245. },
  3246. {
  3247. name: "Large",
  3248. height: math.unit(35, "feet")
  3249. },
  3250. {
  3251. name: "Macro",
  3252. height: math.unit(475, "feet")
  3253. },
  3254. ]
  3255. )
  3256. };
  3257. characterMakers["Luxor"] = () => {
  3258. return makeCharacter(
  3259. "Luxor",
  3260. {
  3261. front: {
  3262. height: math.unit(6, "feet"),
  3263. weight: math.unit(180, "lbs"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/luxor/front.svg",
  3267. extra: 2940/2152
  3268. }
  3269. },
  3270. back: {
  3271. height: math.unit(6, "feet"),
  3272. weight: math.unit(180, "lbs"),
  3273. name: "Back",
  3274. image: {
  3275. source: "./media/characters/luxor/back.svg",
  3276. extra: 1083/960
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5 + 5/6, "feet"),
  3284. default: true
  3285. },
  3286. {
  3287. name: "Lamp",
  3288. height: math.unit(50, "feet")
  3289. },
  3290. {
  3291. name: "Lämp",
  3292. height: math.unit(300, "feet")
  3293. },
  3294. {
  3295. name: "The sun is a lamp",
  3296. height: math.unit(250000, "miles")
  3297. },
  3298. ]
  3299. )
  3300. };
  3301. characterMakers["Huoyan"] = () => {
  3302. return makeCharacter(
  3303. "Huoyan",
  3304. {
  3305. front: {
  3306. height: math.unit(6, "feet"),
  3307. weight: math.unit(50, "lbs"),
  3308. name: "Front",
  3309. image: {
  3310. source: "./media/characters/huoyan/front.svg"
  3311. }
  3312. },
  3313. side: {
  3314. height: math.unit(6, "feet"),
  3315. weight: math.unit(180, "lbs"),
  3316. name: "Side",
  3317. image: {
  3318. source: "./media/characters/huoyan/side.svg"
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Chef",
  3325. height: math.unit(9, "feet")
  3326. },
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(65, "feet"),
  3330. default: true
  3331. },
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(780, "feet")
  3335. },
  3336. {
  3337. name: "Flaming Mountain",
  3338. height: math.unit(4.8, "miles")
  3339. },
  3340. {
  3341. name: "Celestial",
  3342. height: math.unit(765000, "miles")
  3343. },
  3344. ]
  3345. )
  3346. };
  3347. characterMakers["Tails"] = () => {
  3348. return makeCharacter(
  3349. "Tails",
  3350. {
  3351. front: {
  3352. height: math.unit(5 + 3/4, "feet"),
  3353. weight: math.unit(120, "lbs"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/tails/front.svg"
  3357. }
  3358. }
  3359. },
  3360. [
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(5 + 3/4, "feet"),
  3364. default: true
  3365. }
  3366. ]
  3367. )
  3368. };
  3369. characterMakers["Rainy"] = () => {
  3370. return makeCharacter(
  3371. "Rainy",
  3372. {
  3373. front: {
  3374. height: math.unit(4, "feet"),
  3375. weight: math.unit(50, "lbs"),
  3376. name: "Front",
  3377. image: {
  3378. source: "./media/characters/rainy/front.svg"
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(800, "feet"),
  3386. default: true
  3387. }
  3388. ]
  3389. )
  3390. };
  3391. characterMakers["Rainier"] = () => {
  3392. return makeCharacter(
  3393. "Rainier",
  3394. {
  3395. front: {
  3396. height: math.unit(6, "feet"),
  3397. weight: math.unit(150, "lbs"),
  3398. name: "Front",
  3399. image: {
  3400. source: "./media/characters/rainier/front.svg"
  3401. }
  3402. }
  3403. },
  3404. [
  3405. {
  3406. name: "Micro",
  3407. height: math.unit(2, "mm"),
  3408. default: true
  3409. }
  3410. ]
  3411. )
  3412. };
  3413. characterMakers["Andy"] = () => {
  3414. return makeCharacter(
  3415. "Andy",
  3416. {
  3417. front: {
  3418. height: math.unit(6, "feet"),
  3419. weight: math.unit(180, "lbs"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/andy/front.svg"
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(8, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(1000, "feet")
  3435. },
  3436. {
  3437. name: "Megamacro",
  3438. height: math.unit(5, "miles")
  3439. },
  3440. {
  3441. name: "Gigamacro",
  3442. height: math.unit(5000, "miles")
  3443. },
  3444. ]
  3445. )
  3446. };
  3447. characterMakers["Cimmaron"] = () => {
  3448. return makeCharacter(
  3449. "Cimmaron",
  3450. {
  3451. frontClothed: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(210, "lbs"),
  3454. name: "Front (Clothed)",
  3455. image: {
  3456. source: "./media/characters/cimmaron/front-clothed.svg",
  3457. extra: 701/676 ,
  3458. bottom: 0.046
  3459. }
  3460. },
  3461. backClothed: {
  3462. height: math.unit(6, "feet"),
  3463. weight: math.unit(210, "lbs"),
  3464. name: "Back (Clothed)",
  3465. image: {
  3466. source: "./media/characters/cimmaron/back-clothed.svg",
  3467. extra: 701/676 ,
  3468. bottom: 0.046
  3469. }
  3470. },
  3471. frontNude: {
  3472. height: math.unit(6, "feet"),
  3473. weight: math.unit(210, "lbs"),
  3474. name: "Front (Nude)",
  3475. image: {
  3476. source: "./media/characters/cimmaron/front-nude.svg",
  3477. extra: 701/676 ,
  3478. bottom: 0.046
  3479. }
  3480. },
  3481. backNude: {
  3482. height: math.unit(6, "feet"),
  3483. weight: math.unit(210, "lbs"),
  3484. name: "Back (Nude)",
  3485. image: {
  3486. source: "./media/characters/cimmaron/back-nude.svg",
  3487. extra: 701/676 ,
  3488. bottom: 0.046
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(6, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro Mayor",
  3500. height: math.unit(350, "meters")
  3501. },
  3502. ]
  3503. )
  3504. };
  3505. characterMakers["Akari Kaen"] = () => {
  3506. return makeCharacter(
  3507. "Akari Kaen",
  3508. {
  3509. front: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(200, "lbs"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/akari/front.svg",
  3515. extra: 962/901,
  3516. bottom: 0.04
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Micro",
  3523. height: math.unit(5, "inches"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(7, "feet")
  3529. },
  3530. ]
  3531. )
  3532. };
  3533. characterMakers["Cynosura"] = () => {
  3534. return makeCharacter(
  3535. "Cynosura",
  3536. {
  3537. front: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(140, "lbs"),
  3540. name: "Front",
  3541. image: {
  3542. source: "./media/characters/cynosura/front.svg",
  3543. extra: 896/847
  3544. }
  3545. },
  3546. back: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(140, "lbs"),
  3549. name: "Back",
  3550. image: {
  3551. source: "./media/characters/cynosura/back.svg",
  3552. extra: 1365/1250
  3553. }
  3554. },
  3555. },
  3556. [
  3557. {
  3558. name: "Micro",
  3559. height: math.unit(4, "inches")
  3560. },
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(5.75, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Tall",
  3568. height: math.unit(10, "feet")
  3569. },
  3570. {
  3571. name: "Big",
  3572. height: math.unit(20, "feet")
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(50, "feet")
  3577. },
  3578. ]
  3579. )
  3580. };
  3581. characterMakers["Gin"] = () => {
  3582. return makeCharacter(
  3583. "Gin",
  3584. {
  3585. front: {
  3586. height: math.unit(6, "feet"),
  3587. weight: math.unit(170, "lbs"),
  3588. name: "Front",
  3589. image: {
  3590. source: "./media/characters/gin/front.svg",
  3591. extra: 1.053,
  3592. bottom: 0.025
  3593. }
  3594. },
  3595. foot: {
  3596. height: math.unit(6/4.25, "feet"),
  3597. name: "Foot",
  3598. image: {
  3599. source: "./media/characters/gin/foot.svg"
  3600. }
  3601. },
  3602. sole: {
  3603. height: math.unit(6/4.40, "feet"),
  3604. name: "Sole",
  3605. image: {
  3606. source: "./media/characters/gin/sole.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(9 + 4/12, "feet")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(1500, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(200, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Gigamacro",
  3626. height: math.unit(500, "megameters")
  3627. },
  3628. {
  3629. name: "Teramacro",
  3630. height: math.unit(15, "lightyears")
  3631. }
  3632. ]
  3633. )
  3634. };
  3635. characterMakers["Guy"] = () => {
  3636. return makeCharacter(
  3637. "Guy",
  3638. {
  3639. front: {
  3640. height: math.unit(6 + 1/6, "feet"),
  3641. weight: math.unit(178, "lbs"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/guy/front.svg"
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(6 + 1/6, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Large",
  3656. height: math.unit(25 + 7/12, "feet")
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(60 + 9/12, "feet")
  3661. },
  3662. {
  3663. name: "Macro+",
  3664. height: math.unit(246, "feet")
  3665. },
  3666. {
  3667. name: "Macro++",
  3668. height: math.unit(878, "feet")
  3669. }
  3670. ]
  3671. )
  3672. };
  3673. characterMakers["Tiberius"] = () => {
  3674. return makeCharacter(
  3675. "Tiberius",
  3676. {
  3677. front: {
  3678. height: math.unit(9, "feet"),
  3679. weight: math.unit(800, "lbs"),
  3680. name: "Front",
  3681. image: {
  3682. source: "./media/characters/tiberius/front.svg",
  3683. extra: 2295/2071
  3684. }
  3685. },
  3686. back: {
  3687. height: math.unit(9, "feet"),
  3688. weight: math.unit(800, "lbs"),
  3689. name: "Back",
  3690. image: {
  3691. source: "./media/characters/tiberius/back.svg",
  3692. extra: 2373/2160
  3693. }
  3694. },
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(9, "feet"),
  3700. default: true
  3701. }
  3702. ]
  3703. )
  3704. };
  3705. characterMakers["Surgo"] = () => {
  3706. return makeCharacter(
  3707. "Surgo",
  3708. {
  3709. front: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(600, "lbs"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/surgo/front.svg",
  3715. extra: 3591/2227
  3716. }
  3717. },
  3718. back: {
  3719. height: math.unit(6, "feet"),
  3720. weight: math.unit(600, "lbs"),
  3721. name: "Back",
  3722. image: {
  3723. source: "./media/characters/surgo/back.svg",
  3724. extra: 3557/2228
  3725. }
  3726. },
  3727. laying: {
  3728. height: math.unit(6 * 0.85, "feet"),
  3729. weight: math.unit(600, "lbs"),
  3730. name: "Laying",
  3731. image: {
  3732. source: "./media/characters/surgo/laying.svg"
  3733. }
  3734. },
  3735. },
  3736. [
  3737. {
  3738. name: "Normal",
  3739. height: math.unit(6, "feet"),
  3740. default: true
  3741. }
  3742. ]
  3743. )
  3744. };
  3745. characterMakers["Cibus"] = () => {
  3746. return makeCharacter(
  3747. "Cibus",
  3748. {
  3749. side: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(150, "lbs"),
  3752. name: "Side",
  3753. image: {
  3754. source: "./media/characters/cibus/side.svg",
  3755. extra: 800/400
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(6, "feet"),
  3763. default: true
  3764. }
  3765. ]
  3766. )
  3767. };
  3768. characterMakers["Nibbles"] = () => {
  3769. return makeCharacter(
  3770. "Nibbles",
  3771. {
  3772. front: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(240, "lbs"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/nibbles/front.svg"
  3778. }
  3779. },
  3780. side: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(240, "lbs"),
  3783. name: "Side",
  3784. image: {
  3785. source: "./media/characters/nibbles/side.svg"
  3786. }
  3787. },
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(9, "feet"),
  3793. default: true
  3794. }
  3795. ]
  3796. )
  3797. };
  3798. characterMakers["Rikky"] = () => {
  3799. return makeCharacter(
  3800. "Rikky",
  3801. {
  3802. side: {
  3803. height: math.unit(5 + 1/6, "feet"),
  3804. weight: math.unit(130, "lbs"),
  3805. name: "Side",
  3806. image: {
  3807. source: "./media/characters/rikky/side.svg"
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(5 + 1/6, "feet")
  3815. },
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(152, "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(7, "miles")
  3824. }
  3825. ]
  3826. )
  3827. };
  3828. characterMakers["Malfressa"] = () => {
  3829. return makeCharacter(
  3830. "Malfressa",
  3831. {
  3832. side: {
  3833. height: math.unit(370, "cm"),
  3834. weight: math.unit(350, "lbs"),
  3835. name: "Side",
  3836. image: {
  3837. source: "./media/characters/malfressa/side.svg"
  3838. }
  3839. },
  3840. walking: {
  3841. height: math.unit(370, "cm"),
  3842. weight: math.unit(350, "lbs"),
  3843. name: "Walking",
  3844. image: {
  3845. source: "./media/characters/malfressa/walking.svg"
  3846. }
  3847. },
  3848. feral: {
  3849. height: math.unit(2500, "cm"),
  3850. weight: math.unit(100000, "lbs"),
  3851. name: "Feral",
  3852. image: {
  3853. source: "./media/characters/malfressa/feral.svg",
  3854. extra: 2108/837 ,
  3855. bottom: 0.02
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(370, "cm")
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(300, "meters"),
  3867. default: true
  3868. }
  3869. ]
  3870. )
  3871. };
  3872. characterMakers["Jaro"] = () => {
  3873. return makeCharacter(
  3874. "Jaro",
  3875. {
  3876. front: {
  3877. height: math.unit(6, "feet"),
  3878. weight: math.unit(60, "kg"),
  3879. name: "Front",
  3880. image: {
  3881. source: "./media/characters/jaro/front.svg"
  3882. }
  3883. },
  3884. back: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(60, "kg"),
  3887. name: "Back",
  3888. image: {
  3889. source: "./media/characters/jaro/back.svg"
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Micro",
  3896. height: math.unit(7, "inches")
  3897. },
  3898. {
  3899. name: "Normal",
  3900. height: math.unit(5.5, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Minimacro",
  3905. height: math.unit(20, "feet")
  3906. },
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(200, "meters")
  3910. }
  3911. ]
  3912. )
  3913. };
  3914. characterMakers["Rogue"] = () => {
  3915. return makeCharacter(
  3916. "Rogue",
  3917. {
  3918. front: {
  3919. height: math.unit(6, "feet"),
  3920. weight: math.unit(195, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/rogue/front.svg"
  3924. }
  3925. },
  3926. },
  3927. [
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(90, "feet"),
  3931. default: true
  3932. },
  3933. ]
  3934. )
  3935. };
  3936. characterMakers["Piper"] = () => {
  3937. return makeCharacter(
  3938. "Piper",
  3939. {
  3940. front: {
  3941. height: math.unit(5 + 8/12, "feet"),
  3942. weight: math.unit(140, "lb"),
  3943. name: "Front",
  3944. image: {
  3945. source: "./media/characters/piper/front.svg",
  3946. extra: 3928/3681
  3947. }
  3948. },
  3949. },
  3950. [
  3951. {
  3952. name: "Micro",
  3953. height: math.unit(2, "inches")
  3954. },
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(5 + 8/12, "feet")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(250, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Megamacro",
  3966. height: math.unit(7, "miles")
  3967. },
  3968. ]
  3969. )
  3970. };
  3971. characterMakers["Gemini"] = () => {
  3972. return makeCharacter(
  3973. "Gemini",
  3974. {
  3975. front: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(220, "lb"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/gemini/front.svg"
  3981. }
  3982. },
  3983. back: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(220, "lb"),
  3986. name: "Back",
  3987. image: {
  3988. source: "./media/characters/gemini/back.svg"
  3989. }
  3990. },
  3991. kneeling: {
  3992. height: math.unit(6/1.5, "feet"),
  3993. weight: math.unit(220, "lb"),
  3994. name: "Kneeling",
  3995. image: {
  3996. source: "./media/characters/gemini/kneeling.svg",
  3997. bottom: 0.02
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(300, "meters"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Megamacro",
  4009. height: math.unit(6900, "meters")
  4010. },
  4011. ]
  4012. )
  4013. };
  4014. characterMakers["Alicia"] = () => {
  4015. return makeCharacter(
  4016. "Alicia",
  4017. {
  4018. anthro: {
  4019. height: math.unit(2.35, "meters"),
  4020. weight: math.unit(73, "kg"),
  4021. name: "Anthro",
  4022. image: {
  4023. source: "./media/characters/alicia/anthro.svg"
  4024. }
  4025. },
  4026. feral: {
  4027. height: math.unit(1.69, "meters"),
  4028. weight: math.unit(73, "kg"),
  4029. name: "Feral",
  4030. image: {
  4031. source: "./media/characters/alicia/feral.svg"
  4032. }
  4033. },
  4034. },
  4035. [
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(2.35, "meters")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(60, "meters"),
  4043. default: true
  4044. },
  4045. {
  4046. name: "Megamacro",
  4047. height: math.unit(10000, "kilometers")
  4048. },
  4049. ]
  4050. )
  4051. };
  4052. characterMakers["Archy"] = () => {
  4053. return makeCharacter(
  4054. "Archy",
  4055. {
  4056. front: {
  4057. height: math.unit(7, "feet"),
  4058. weight: math.unit(250, "lbs"),
  4059. name: "Front",
  4060. image: {
  4061. source: "./media/characters/archy/front.svg"
  4062. }
  4063. }
  4064. },
  4065. [
  4066. {
  4067. name: "Micro",
  4068. height: math.unit(1, "inch")
  4069. },
  4070. {
  4071. name: "Shorty",
  4072. height: math.unit(5, "feet")
  4073. },
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(7, "feet")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(600, "meters"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Megamacro",
  4085. height: math.unit(1, "mile")
  4086. },
  4087. ]
  4088. )
  4089. };
  4090. characterMakers["Berri"] = () => {
  4091. return makeCharacter(
  4092. "Berri",
  4093. {
  4094. front: {
  4095. height: math.unit(1.65, "meters"),
  4096. weight: math.unit(74, "kg"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/berri/front.svg"
  4100. }
  4101. }
  4102. },
  4103. [
  4104. {
  4105. name: "Normal",
  4106. height: math.unit(1.65, "meters")
  4107. },
  4108. {
  4109. name: "Macro",
  4110. height: math.unit(60, "m"),
  4111. default: true
  4112. },
  4113. {
  4114. name: "Megamacro",
  4115. height: math.unit(9.213, "km")
  4116. },
  4117. {
  4118. name: "Planet Eater",
  4119. height: math.unit(489, "megameters")
  4120. },
  4121. {
  4122. name: "Teramacro",
  4123. height: math.unit(2471635000000, "meters")
  4124. },
  4125. {
  4126. name: "Examacro",
  4127. height: math.unit(8.0624e+26, "meters")
  4128. }
  4129. ]
  4130. )
  4131. };
  4132. characterMakers["Lexi"] = () => {
  4133. return makeCharacter(
  4134. "Lexi",
  4135. {
  4136. front: {
  4137. height: math.unit(1.72, "meters"),
  4138. weight: math.unit(68, "kg"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/lexi/front.svg"
  4142. }
  4143. }
  4144. },
  4145. [
  4146. {
  4147. name: "Very Smol",
  4148. height: math.unit(10, "mm")
  4149. },
  4150. {
  4151. name: "Micro",
  4152. height: math.unit(6.8, "cm"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(1.72, "m")
  4158. }
  4159. ]
  4160. )
  4161. };
  4162. characterMakers["Martin"] = () => {
  4163. return makeCharacter(
  4164. "Martin",
  4165. {
  4166. front: {
  4167. height: math.unit(1.69, "meters"),
  4168. weight: math.unit(68, "kg"),
  4169. name: "Front",
  4170. image: {
  4171. source: "./media/characters/martin/front.svg",
  4172. extra: 596/581
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Micro",
  4179. height: math.unit(6.85, "cm"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Normal",
  4184. height: math.unit(1.69, "m")
  4185. }
  4186. ]
  4187. )
  4188. };
  4189. characterMakers["Juno"] = () => {
  4190. return makeCharacter(
  4191. "Juno",
  4192. {
  4193. front: {
  4194. height: math.unit(1.69, "meters"),
  4195. weight: math.unit(68, "kg"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/juno/front.svg"
  4199. }
  4200. }
  4201. },
  4202. [
  4203. {
  4204. name: "Micro",
  4205. height: math.unit(7, "cm")
  4206. },
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(1.89, "m")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(353, "meters"),
  4214. default: true
  4215. }
  4216. ]
  4217. )
  4218. };
  4219. characterMakers["Samantha"] = () => {
  4220. return makeCharacter(
  4221. "Samantha",
  4222. {
  4223. front: {
  4224. height: math.unit(1.93, "meters"),
  4225. weight: math.unit(83, "kg"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/samantha/front.svg"
  4229. }
  4230. },
  4231. frontClothed: {
  4232. height: math.unit(1.93, "meters"),
  4233. weight: math.unit(83, "kg"),
  4234. name: "Front (Clothed)",
  4235. image: {
  4236. source: "./media/characters/samantha/front-clothed.svg"
  4237. }
  4238. },
  4239. back: {
  4240. height: math.unit(1.93, "meters"),
  4241. weight: math.unit(83, "kg"),
  4242. name: "Back",
  4243. image: {
  4244. source: "./media/characters/samantha/back.svg"
  4245. }
  4246. },
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(1.93, "m")
  4252. },
  4253. {
  4254. name: "Macro",
  4255. height: math.unit(74, "meters"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Macro+",
  4260. height: math.unit(223, "meters"),
  4261. },
  4262. {
  4263. name: "Megamacro",
  4264. height: math.unit(8381, "meters"),
  4265. },
  4266. {
  4267. name: "Megamacro+",
  4268. height: math.unit(12000, "kilometers")
  4269. },
  4270. ]
  4271. )
  4272. };
  4273. characterMakers["Dr. Clay"] = () => {
  4274. return makeCharacter(
  4275. "Dr. Clay",
  4276. {
  4277. front: {
  4278. height: math.unit(1.92, "meters"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/dr-clay/front.svg"
  4283. }
  4284. },
  4285. frontClothed: {
  4286. height: math.unit(1.92, "meters"),
  4287. weight: math.unit(80, "kg"),
  4288. name: "Front (Clothed)",
  4289. image: {
  4290. source: "./media/characters/dr-clay/front-clothed.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(1.92, "m")
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(214, "meters"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Macro+",
  4306. height: math.unit(12.237, "meters"),
  4307. },
  4308. {
  4309. name: "Megamacro",
  4310. height: math.unit(557, "megameters"),
  4311. },
  4312. {
  4313. name: "Unimaginable",
  4314. height: math.unit(120e9, "lightyears")
  4315. },
  4316. ]
  4317. )
  4318. };
  4319. characterMakers["Wyvrn Ripsnarl"] = () => {
  4320. return makeCharacter(
  4321. "Wyvrn Ripsnarl",
  4322. {
  4323. front: {
  4324. height: math.unit(2, "meters"),
  4325. weight: math.unit(80, "kg"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4329. }
  4330. }
  4331. },
  4332. [
  4333. {
  4334. name: "Teramacro",
  4335. height: math.unit(500000, "lightyears"),
  4336. default: true
  4337. },
  4338. ]
  4339. )
  4340. };
  4341. characterMakers["Vemus"] = () => {
  4342. return makeCharacter(
  4343. "Vemus",
  4344. {
  4345. front: {
  4346. height: math.unit(2, "meters"),
  4347. weight: math.unit(150, "kg"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/vemus/front.svg",
  4351. extra: 2384/2084,
  4352. bottom: 0.0123
  4353. }
  4354. }
  4355. },
  4356. [
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(3.75, "meters"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Big",
  4364. height: math.unit(8, "meters")
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(100, "meters")
  4369. },
  4370. {
  4371. name: "Macro+",
  4372. height: math.unit(1500, "meters")
  4373. },
  4374. {
  4375. name: "Stellar",
  4376. height: math.unit(14e8, "meters")
  4377. },
  4378. ]
  4379. )
  4380. };
  4381. characterMakers["Beherit"] = () => {
  4382. return makeCharacter(
  4383. "Beherit",
  4384. {
  4385. front: {
  4386. height: math.unit(2, "meters"),
  4387. weight: math.unit(70, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/beherit/front.svg",
  4391. extra: 1408/1242
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Normal",
  4398. height: math.unit(6, "feet")
  4399. },
  4400. {
  4401. name: "Lorg",
  4402. height: math.unit(25, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Lorger",
  4407. height: math.unit(75, "feet")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(200, "meters")
  4412. },
  4413. ]
  4414. )
  4415. };
  4416. characterMakers["Everett"] = () => {
  4417. return makeCharacter(
  4418. "Everett",
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(150, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/everett/front.svg",
  4426. extra: 2038/1737 ,
  4427. bottom: 0.03
  4428. }
  4429. },
  4430. paw: {
  4431. height: math.unit(2/3.6, "meters"),
  4432. name: "Paw",
  4433. image: {
  4434. source: "./media/characters/everett/paw.svg"
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(15, "feet"),
  4442. default: true
  4443. },
  4444. {
  4445. name: "Lorg",
  4446. height: math.unit(70, "feet"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Lorger",
  4451. height: math.unit(250, "feet")
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(500, "meters")
  4456. },
  4457. ]
  4458. )
  4459. };
  4460. characterMakers["Rose Lion"] = () => {
  4461. return makeCharacter(
  4462. "Rose Lion",
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meters"),
  4466. weight: math.unit(86, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/rose-lion/front.svg"
  4470. }
  4471. },
  4472. bent: {
  4473. height: math.unit(2/1.4288, "meters"),
  4474. weight: math.unit(86, "kg"),
  4475. name: "Bent",
  4476. image: {
  4477. source: "./media/characters/rose-lion/bent.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Mini-Micro",
  4484. height: math.unit(1, "cm")
  4485. },
  4486. {
  4487. name: "Micro",
  4488. height: math.unit(3.5, "inches"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(6 + 1/6, "feet")
  4494. },
  4495. {
  4496. name: "Mini-Macro",
  4497. height: math.unit(9 + 10/12, "feet")
  4498. },
  4499. ]
  4500. )
  4501. };
  4502. characterMakers["Regal"] = () => {
  4503. return makeCharacter(
  4504. "Regal",
  4505. {
  4506. front: {
  4507. height: math.unit(2, "meters"),
  4508. weight: math.unit(350, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/regal/front.svg"
  4512. }
  4513. },
  4514. back: {
  4515. height: math.unit(2, "meters"),
  4516. weight: math.unit(350, "lbs"),
  4517. name: "Back",
  4518. image: {
  4519. source: "./media/characters/regal/back.svg"
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Macro",
  4526. height: math.unit(350, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. )
  4531. };
  4532. characterMakers["Opal"] = () => {
  4533. return makeCharacter(
  4534. "Opal",
  4535. {
  4536. front: {
  4537. height: math.unit(4 + 11/12, "feet"),
  4538. weight: math.unit(100, "lbs"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/opal/front.svg"
  4542. }
  4543. },
  4544. frontAlt: {
  4545. height: math.unit(4 + 11/12, "feet"),
  4546. weight: math.unit(100, "lbs"),
  4547. name: "Front (Alt)",
  4548. image: {
  4549. source: "./media/characters/opal/front-alt.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Small",
  4556. height: math.unit(4 + 11/12, "feet")
  4557. },
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(20, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Macro",
  4565. height: math.unit(120, "feet")
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(80, "miles")
  4570. },
  4571. {
  4572. name: "True Size",
  4573. height: math.unit(100000, "lightyears")
  4574. },
  4575. ]
  4576. )
  4577. };
  4578. characterMakers["Vector Wuff"] = () => {
  4579. return makeCharacter(
  4580. "Vector Wuff",
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(200, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/vector-wuff/front.svg"
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(2.8, "meters")
  4595. },
  4596. {
  4597. name: "Macro",
  4598. height: math.unit(450, "meters"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Megamacro",
  4603. height: math.unit(15, "kilometers")
  4604. }
  4605. ]
  4606. )
  4607. };
  4608. characterMakers["Dannik"] = () => {
  4609. return makeCharacter(
  4610. "Dannik",
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(256, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/dannik/front.svg"
  4618. }
  4619. }
  4620. },
  4621. [
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(69.57, "meters"),
  4625. default: true
  4626. },
  4627. ]
  4628. )
  4629. };
  4630. characterMakers["Azura Saharah"] = () => {
  4631. return makeCharacter(
  4632. "Azura Saharah",
  4633. {
  4634. front: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(120, "lbs"),
  4637. name: "Front",
  4638. image: {
  4639. source: "./media/characters/azura-saharah/front.svg"
  4640. }
  4641. },
  4642. back: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(120, "lbs"),
  4645. name: "Back",
  4646. image: {
  4647. source: "./media/characters/azura-saharah/back.svg"
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(100, "feet"),
  4655. default: true
  4656. },
  4657. ]
  4658. )
  4659. };
  4660. characterMakers["Kennedy"] = () => {
  4661. return makeCharacter(
  4662. "Kennedy",
  4663. {
  4664. side: {
  4665. height: math.unit(5 + 4/12, "feet"),
  4666. weight: math.unit(163, "lbs"),
  4667. name: "Side",
  4668. image: {
  4669. source: "./media/characters/kennedy/side.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Standard Doggo",
  4676. height: math.unit(5 + 4/12, "feet")
  4677. },
  4678. {
  4679. name: "Big Doggo",
  4680. height: math.unit(25 + 3/12, "feet"),
  4681. default: true
  4682. },
  4683. ]
  4684. )
  4685. };
  4686. characterMakers["Odi Lunar"] = () => {
  4687. return makeCharacter(
  4688. "Odi Lunar",
  4689. {
  4690. front: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(90, "lbs"),
  4693. name: "Front",
  4694. image: {
  4695. source: "./media/characters/odi-lunar/front.svg"
  4696. }
  4697. }
  4698. },
  4699. [
  4700. {
  4701. name: "Micro",
  4702. height: math.unit(3, "inches"),
  4703. default: true
  4704. },
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(5.5, "feet")
  4708. }
  4709. ]
  4710. )
  4711. };
  4712. characterMakers["Mandake"] = () => {
  4713. return makeCharacter(
  4714. "Mandake",
  4715. {
  4716. back: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(220, "lbs"),
  4719. name: "Back",
  4720. image: {
  4721. source: "./media/characters/mandake/back.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(7, "feet"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Macro",
  4733. height: math.unit(78, "feet")
  4734. },
  4735. {
  4736. name: "Macro+",
  4737. height: math.unit(300, "meters")
  4738. },
  4739. {
  4740. name: "Macro++",
  4741. height: math.unit(2400, "feet")
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(5167, "meters")
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(41769, "miles")
  4750. },
  4751. ]
  4752. )
  4753. };
  4754. characterMakers["Yozey"] = () => {
  4755. return makeCharacter(
  4756. "Yozey",
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(120, "lbs"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/yozey/front.svg"
  4764. }
  4765. },
  4766. frontAlt: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(120, "lbs"),
  4769. name: "Front (Alt)",
  4770. image: {
  4771. source: "./media/characters/yozey/front-alt.svg"
  4772. }
  4773. },
  4774. side: {
  4775. height: math.unit(6, "feet"),
  4776. weight: math.unit(120, "lbs"),
  4777. name: "Side",
  4778. image: {
  4779. source: "./media/characters/yozey/side.svg"
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Micro",
  4786. height: math.unit(3, "inches"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(6, "feet")
  4792. }
  4793. ]
  4794. )
  4795. };
  4796. characterMakers["Valeska Voss"] = () => {
  4797. return makeCharacter(
  4798. "Valeska Voss",
  4799. {
  4800. front: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(103, "lbs"),
  4803. name: "Front",
  4804. image: {
  4805. source: "./media/characters/valeska-voss/front.svg"
  4806. }
  4807. }
  4808. },
  4809. [
  4810. {
  4811. name: "Mini-Sized Sub",
  4812. height: math.unit(3.1, "inches")
  4813. },
  4814. {
  4815. name: "Mid-Sized Sub",
  4816. height: math.unit(6.2, "inches")
  4817. },
  4818. {
  4819. name: "Full-Sized Sub",
  4820. height: math.unit(9.3, "inches")
  4821. },
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(5 + 2/12, "foot"),
  4825. default: true
  4826. },
  4827. ]
  4828. )
  4829. };
  4830. characterMakers["Gene Zeta"] = () => {
  4831. return makeCharacter(
  4832. "Gene Zeta",
  4833. {
  4834. front: {
  4835. height: math.unit(6, "feet"),
  4836. weight: math.unit(160, "lbs"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/gene-zeta/front.svg",
  4840. bottom: 0.03,
  4841. extra: 1
  4842. }
  4843. }
  4844. },
  4845. [
  4846. {
  4847. name: "Normal",
  4848. height: math.unit(6.25, "foot"),
  4849. default: true
  4850. },
  4851. ]
  4852. )
  4853. };
  4854. characterMakers["Razinox"] = () => {
  4855. return makeCharacter(
  4856. "Razinox",
  4857. {
  4858. front: {
  4859. height: math.unit(6, "feet"),
  4860. weight: math.unit(350, "lbs"),
  4861. name: "Front",
  4862. image: {
  4863. source: "./media/characters/razinox/front.svg",
  4864. extra: 1686/1548
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(350, "lbs"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/razinox/back.svg",
  4873. extra: 1660/1590
  4874. }
  4875. },
  4876. },
  4877. [
  4878. {
  4879. name: "Normal",
  4880. height: math.unit(10 + 8/12, "foot")
  4881. },
  4882. {
  4883. name: "Minimacro",
  4884. height: math.unit(15, "foot")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(60, "foot"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Megamacro",
  4893. height: math.unit(5, "miles")
  4894. },
  4895. {
  4896. name: "Gigamacro",
  4897. height: math.unit(6000, "miles")
  4898. },
  4899. ]
  4900. )
  4901. };
  4902. characterMakers["Cobalt"] = () => {
  4903. return makeCharacter(
  4904. "Cobalt",
  4905. {
  4906. front: {
  4907. height: math.unit(6, "feet"),
  4908. weight: math.unit(150, "lbs"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/cobalt/front.svg"
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(8 + 1/12, "foot")
  4919. },
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(111, "foot"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Supracosmic",
  4927. height: math.unit(1e42, "feet")
  4928. },
  4929. ]
  4930. )
  4931. };
  4932. characterMakers["Amanda"] = () => {
  4933. return makeCharacter(
  4934. "Amanda",
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(140, "lbs"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/amanda/front.svg"
  4942. }
  4943. }
  4944. },
  4945. [
  4946. {
  4947. name: "Micro",
  4948. height: math.unit(5, "inches"),
  4949. default: true
  4950. },
  4951. ]
  4952. )
  4953. };
  4954. characterMakers["Teal"] = () => {
  4955. return makeCharacter(
  4956. "Teal",
  4957. {
  4958. front: {
  4959. height: math.unit(5.59, "feet"),
  4960. weight: math.unit(250, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/teal/front.svg"
  4964. }
  4965. },
  4966. frontAlt: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(250, "lbs"),
  4969. name: "Front (Alt)",
  4970. image: {
  4971. source: "./media/characters/teal/front-alt.svg",
  4972. bottom: 0.04,
  4973. extra: 1
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(12, "feet"),
  4981. default: true
  4982. },
  4983. {
  4984. name: "Macro",
  4985. height: math.unit(300, "feet")
  4986. },
  4987. ]
  4988. )
  4989. };
  4990. characterMakers["Ravin Amulet"] = () => {
  4991. return makeCharacter(
  4992. "Ravin Amulet",
  4993. {
  4994. frontCat: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(180, "lbs"),
  4997. name: "Front (Cat)",
  4998. image: {
  4999. source: "./media/characters/ravin-amulet/front-cat.svg"
  5000. }
  5001. },
  5002. frontCatAlt: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(180, "lbs"),
  5005. name: "Front (Alt, Cat)",
  5006. image: {
  5007. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5008. }
  5009. },
  5010. frontWerewolf: {
  5011. height: math.unit(6*1.2, "feet"),
  5012. weight: math.unit(225, "lbs"),
  5013. name: "Front (Werewolf)",
  5014. image: {
  5015. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5016. }
  5017. },
  5018. backWerewolf: {
  5019. height: math.unit(6*1.2, "feet"),
  5020. weight: math.unit(225, "lbs"),
  5021. name: "Back (Werewolf)",
  5022. image: {
  5023. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Nano",
  5030. height: math.unit(1, "micrometer")
  5031. },
  5032. {
  5033. name: "Micro",
  5034. height: math.unit(1, "inch")
  5035. },
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(6, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(60, "feet")
  5044. }
  5045. ]
  5046. )
  5047. };
  5048. characterMakers["Fluoresce"] = () => {
  5049. return makeCharacter(
  5050. "Fluoresce",
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(165, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/fluoresce/front.svg"
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Micro",
  5064. height: math.unit(6, "cm")
  5065. },
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(5 + 7/12, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(56, "feet")
  5074. },
  5075. {
  5076. name: "Megamacro",
  5077. height: math.unit(1.9, "miles")
  5078. },
  5079. ]
  5080. )
  5081. };
  5082. characterMakers["Aurora"] = () => {
  5083. return makeCharacter(
  5084. "Aurora",
  5085. {
  5086. front: {
  5087. height: math.unit(9 + 6/12, "feet"),
  5088. weight: math.unit(523, "lbs"),
  5089. name: "Side",
  5090. image: {
  5091. source: "./media/characters/aurora/side.svg"
  5092. }
  5093. }
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(9 + 6/12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(96, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Macro+",
  5107. height: math.unit(243, "feet")
  5108. },
  5109. ]
  5110. )
  5111. };
  5112. characterMakers["Ranek"] = () => {
  5113. return makeCharacter(
  5114. "Ranek",
  5115. {
  5116. front: {
  5117. height: math.unit(194, "cm"),
  5118. weight: math.unit(90, "kg"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/ranek/front.svg"
  5122. }
  5123. },
  5124. side: {
  5125. height: math.unit(194, "cm"),
  5126. weight: math.unit(90, "kg"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/ranek/side.svg"
  5130. }
  5131. },
  5132. back: {
  5133. height: math.unit(194, "cm"),
  5134. weight: math.unit(90, "kg"),
  5135. name: "Back",
  5136. image: {
  5137. source: "./media/characters/ranek/back.svg"
  5138. }
  5139. },
  5140. feral: {
  5141. height: math.unit(30, "cm"),
  5142. weight: math.unit(1.6, "lbs"),
  5143. name: "Feral",
  5144. image: {
  5145. source: "./media/characters/ranek/feral.svg"
  5146. }
  5147. },
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(194, "cm"),
  5153. default: true
  5154. },
  5155. {
  5156. name: "Macro",
  5157. height: math.unit(100, "meters")
  5158. },
  5159. ]
  5160. )
  5161. };
  5162. characterMakers["Andrew Cooper"] = () => {
  5163. return makeCharacter(
  5164. "Andrew Cooper",
  5165. {
  5166. front: {
  5167. height: math.unit(5 + 6/12, "feet"),
  5168. weight: math.unit(153, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/andrew-cooper/front.svg"
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Nano",
  5178. height: math.unit(1, "mm")
  5179. },
  5180. {
  5181. name: "Micro",
  5182. height: math.unit(2, "inches")
  5183. },
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5 + 6/12, "feet"),
  5187. default: true
  5188. }
  5189. ]
  5190. )
  5191. };
  5192. characterMakers["Akane Sato"] = () => {
  5193. return makeCharacter(
  5194. "Akane Sato",
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/akane-sato/front.svg",
  5202. extra: 1219/1140
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(180, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/akane-sato/back.svg",
  5211. extra: 1219/1170
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(2.5, "meters")
  5219. },
  5220. {
  5221. name: "Macro",
  5222. height: math.unit(250, "meters"),
  5223. default: true
  5224. },
  5225. {
  5226. name: "Megamacro",
  5227. height: math.unit(25, "km")
  5228. },
  5229. ]
  5230. )
  5231. };
  5232. characterMakers["Rook"] = () => {
  5233. return makeCharacter(
  5234. "Rook",
  5235. {
  5236. front: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(65, "kg"),
  5239. name: "Front",
  5240. image: {
  5241. source: "./media/characters/rook/front.svg"
  5242. }
  5243. }
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8.8, "feet")
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(88, "feet"),
  5253. default: true
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(8, "miles")
  5258. },
  5259. ]
  5260. )
  5261. };
  5262. characterMakers["Prodigy"] = () => {
  5263. return makeCharacter(
  5264. "Prodigy",
  5265. {
  5266. front: {
  5267. height: math.unit(12 + 2/12, "feet"),
  5268. weight: math.unit(808, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/prodigy/front.svg"
  5272. }
  5273. }
  5274. },
  5275. [
  5276. {
  5277. name: "Normal",
  5278. height: math.unit(12 + 2/12, "feet"),
  5279. default: true
  5280. },
  5281. {
  5282. name: "Macro",
  5283. height: math.unit(143, "feet")
  5284. },
  5285. {
  5286. name: "Macro+",
  5287. height: math.unit(400, "feet")
  5288. },
  5289. ]
  5290. )
  5291. };
  5292. characterMakers["Daniel"] = () => {
  5293. return makeCharacter(
  5294. "Daniel",
  5295. {
  5296. front: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(225, "lbs"),
  5299. name: "Front",
  5300. image: {
  5301. source: "./media/characters/daniel/front.svg"
  5302. }
  5303. },
  5304. leaning: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(225, "lbs"),
  5307. name: "Leaning",
  5308. image: {
  5309. source: "./media/characters/daniel/leaning.svg"
  5310. }
  5311. },
  5312. },
  5313. [
  5314. {
  5315. name: "Macro",
  5316. height: math.unit(1000, "feet"),
  5317. default: true
  5318. },
  5319. ]
  5320. )
  5321. };
  5322. characterMakers["Chiros"] = () => {
  5323. return makeCharacter(
  5324. "Chiros",
  5325. {
  5326. front: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(88, "lbs"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/chiros/front.svg",
  5332. extra: 306/226
  5333. }
  5334. },
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(88, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/chiros/side.svg",
  5341. extra: 306/226
  5342. }
  5343. },
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(6, "cm"),
  5349. default: true
  5350. },
  5351. ]
  5352. )
  5353. };
  5354. characterMakers["Selka"] = () => {
  5355. return makeCharacter(
  5356. "Selka",
  5357. {
  5358. front: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(100, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/selka/front.svg",
  5364. extra: 947/887
  5365. }
  5366. }
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(5, "cm"),
  5372. default: true
  5373. },
  5374. ]
  5375. )
  5376. };
  5377. characterMakers["Verin"] = () => {
  5378. return makeCharacter(
  5379. "Verin",
  5380. {
  5381. front: {
  5382. height: math.unit(8 + 3/12, "feet"),
  5383. weight: math.unit(424, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/verin/front.svg",
  5387. extra: 1845/1550
  5388. }
  5389. },
  5390. frontArmored: {
  5391. height: math.unit(8 + 3/12, "feet"),
  5392. weight: math.unit(424, "lbs"),
  5393. name: "Front (Armored)",
  5394. image: {
  5395. source: "./media/characters/verin/front-armor.svg",
  5396. extra: 1845/1550 ,
  5397. bottom: 0.01
  5398. }
  5399. },
  5400. back: {
  5401. height: math.unit(8 + 3/12, "feet"),
  5402. weight: math.unit(424, "lbs"),
  5403. name: "Back",
  5404. image: {
  5405. source: "./media/characters/verin/back.svg",
  5406. bottom: 0.1,
  5407. extra: 1
  5408. }
  5409. },
  5410. foot: {
  5411. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5412. name: "Foot",
  5413. image: {
  5414. source: "./media/characters/verin/foot.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(8 + 3/12, "feet")
  5422. },
  5423. {
  5424. name: "Minimacro",
  5425. height: math.unit(21, "feet"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Macro",
  5430. height: math.unit(626, "feet")
  5431. },
  5432. ]
  5433. )
  5434. };
  5435. characterMakers["Sovrim Terraquian"] = () => {
  5436. return makeCharacter(
  5437. "Sovrim Terraquian",
  5438. {
  5439. front: {
  5440. height: math.unit(2.718, "meters"),
  5441. weight: math.unit(150, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/sovrim-terraquian/front.svg"
  5445. }
  5446. },
  5447. back: {
  5448. height: math.unit(2.718, "meters"),
  5449. weight: math.unit(150, "lbs"),
  5450. name: "Back",
  5451. image: {
  5452. source: "./media/characters/sovrim-terraquian/back.svg"
  5453. }
  5454. }
  5455. },
  5456. [
  5457. {
  5458. name: "Micro",
  5459. height: math.unit(2, "inches")
  5460. },
  5461. {
  5462. name: "Small",
  5463. height: math.unit(1, "meter")
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(Math.E, "meters"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(20, "meters")
  5473. },
  5474. {
  5475. name: "Macro+",
  5476. height: math.unit(400, "meters")
  5477. },
  5478. ]
  5479. )
  5480. };
  5481. characterMakers["Reece Silvermane"] = () => {
  5482. return makeCharacter(
  5483. "Reece Silvermane",
  5484. {
  5485. front: {
  5486. height: math.unit(7, "feet"),
  5487. weight: math.unit(489, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/reece-silvermane/front.svg",
  5491. bottom: 0.02,
  5492. extra: 1
  5493. }
  5494. },
  5495. },
  5496. [
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(1.5, "miles"),
  5500. default: true
  5501. },
  5502. ]
  5503. )
  5504. };
  5505. characterMakers["Kane"] = () => {
  5506. return makeCharacter(
  5507. "Kane",
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(78, "kg"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/kane/front.svg",
  5515. extra: 978/899
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(2.1, "m"),
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(1, "km"),
  5527. default: true
  5528. },
  5529. ]
  5530. )
  5531. };
  5532. characterMakers["Tegon"] = () => {
  5533. return makeCharacter(
  5534. "Tegon",
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(200, "kg"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/tegon/front.svg",
  5542. bottom: 0.01,
  5543. extra: 1
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Micro",
  5550. height: math.unit(1, "inch")
  5551. },
  5552. {
  5553. name: "Normal",
  5554. height: math.unit(6 + 3/12, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(300, "feet")
  5560. },
  5561. {
  5562. name: "Megamacro",
  5563. height: math.unit(69, "miles")
  5564. },
  5565. ]
  5566. )
  5567. };
  5568. characterMakers["Arcturax"] = () => {
  5569. return makeCharacter(
  5570. "Arcturax",
  5571. {
  5572. side: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(2304, "lbs"),
  5575. name: "Side",
  5576. image: {
  5577. source: "./media/characters/arcturax/side.svg",
  5578. extra: 790/376 ,
  5579. bottom: 0.01
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Micro",
  5586. height: math.unit(2, "inch")
  5587. },
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(6, "feet")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(39, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(7, "miles")
  5600. },
  5601. ]
  5602. )
  5603. };
  5604. characterMakers["Sentri"] = () => {
  5605. return makeCharacter(
  5606. "Sentri",
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/sentri/front.svg",
  5614. extra: 1750/1570 ,
  5615. bottom: 0.025
  5616. }
  5617. },
  5618. frontAlt: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(50, "lbs"),
  5621. name: "Front (Alt)",
  5622. image: {
  5623. source: "./media/characters/sentri/front-alt.svg",
  5624. extra: 1750/1570 ,
  5625. bottom: 0.025
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(15, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(2500, "feet")
  5638. }
  5639. ]
  5640. )
  5641. };
  5642. characterMakers["Corvin"] = () => {
  5643. return makeCharacter(
  5644. "Corvin",
  5645. {
  5646. front: {
  5647. height: math.unit(5 + 8/12, "feet"),
  5648. weight: math.unit(130, "lbs"),
  5649. name: "Front",
  5650. image: {
  5651. source: "./media/characters/corvin/front.svg",
  5652. extra: 1803/1629
  5653. }
  5654. },
  5655. frontShirt: {
  5656. height: math.unit(5 + 8/12, "feet"),
  5657. weight: math.unit(130, "lbs"),
  5658. name: "Front (Shirt)",
  5659. image: {
  5660. source: "./media/characters/corvin/front-shirt.svg",
  5661. extra: 1803/1629
  5662. }
  5663. },
  5664. frontPoncho: {
  5665. height: math.unit(5 + 8/12, "feet"),
  5666. weight: math.unit(130, "lbs"),
  5667. name: "Front (Poncho)",
  5668. image: {
  5669. source: "./media/characters/corvin/front-poncho.svg",
  5670. extra: 1803/1629
  5671. }
  5672. },
  5673. side: {
  5674. height: math.unit(5 + 8/12, "feet"),
  5675. weight: math.unit(130, "lbs"),
  5676. name: "Side",
  5677. image: {
  5678. source: "./media/characters/corvin/side.svg",
  5679. extra: 1012/945
  5680. }
  5681. },
  5682. back: {
  5683. height: math.unit(5 + 8/12, "feet"),
  5684. weight: math.unit(130, "lbs"),
  5685. name: "Back",
  5686. image: {
  5687. source: "./media/characters/corvin/back.svg",
  5688. extra: 1803/1629
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Micro",
  5695. height: math.unit(3, "inches")
  5696. },
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(5 + 8/12, "feet")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(300, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(500, "miles")
  5709. }
  5710. ]
  5711. )
  5712. };
  5713. characterMakers["Q"] = () => {
  5714. return makeCharacter(
  5715. "Q",
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(135, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/q/front.svg",
  5723. extra: 854/752 ,
  5724. bottom: 0.005
  5725. }
  5726. },
  5727. back: {
  5728. height: math.unit(6, "feet"),
  5729. weight: math.unit(130, "lbs"),
  5730. name: "Back",
  5731. image: {
  5732. source: "./media/characters/q/back.svg",
  5733. extra: 854/752
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(90, "feet"),
  5741. default: true
  5742. },
  5743. {
  5744. name: "Extra Macro",
  5745. height: math.unit(300, "feet"),
  5746. },
  5747. {
  5748. name: "BIG WALF",
  5749. height: math.unit(750, "feet"),
  5750. },
  5751. ]
  5752. )
  5753. };
  5754. characterMakers["Carley"] = () => {
  5755. return makeCharacter(
  5756. "Carley",
  5757. {
  5758. front: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(150, "lbs"),
  5761. name: "Front",
  5762. image: {
  5763. source: "./media/characters/carley/front.svg",
  5764. extra: 3927/3540 ,
  5765. bottom: 0.03
  5766. }
  5767. }
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(6 + 3/12, "feet")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(185, "feet"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Megamacro",
  5781. height: math.unit(8, "miles"),
  5782. },
  5783. ]
  5784. )
  5785. };
  5786. characterMakers["Citrine"] = () => {
  5787. return makeCharacter(
  5788. "Citrine",
  5789. {
  5790. front: {
  5791. height: math.unit(3, "feet"),
  5792. weight: math.unit(28, "lbs"),
  5793. name: "Front",
  5794. image: {
  5795. source: "./media/characters/citrine/front.svg"
  5796. }
  5797. }
  5798. },
  5799. [
  5800. {
  5801. name: "Normal",
  5802. height: math.unit(3, "feet"),
  5803. default: true
  5804. }
  5805. ]
  5806. )
  5807. };
  5808. characterMakers["Aura Starwind"] = () => {
  5809. return makeCharacter(
  5810. "Aura Starwind",
  5811. {
  5812. front: {
  5813. height: math.unit(14, "feet"),
  5814. weight: math.unit(1450, "kg"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/aura-starwind/front.svg",
  5818. extra: 1455/1335
  5819. }
  5820. },
  5821. side: {
  5822. height: math.unit(14, "feet"),
  5823. weight: math.unit(1450, "kg"),
  5824. name: "Side",
  5825. image: {
  5826. source: "./media/characters/aura-starwind/side.svg",
  5827. extra: 1654/1497
  5828. }
  5829. },
  5830. taur: {
  5831. height: math.unit(18, "feet"),
  5832. weight: math.unit(5500, "kg"),
  5833. name: "Taur",
  5834. image: {
  5835. source: "./media/characters/aura-starwind/taur.svg",
  5836. extra: 1760/1650
  5837. }
  5838. },
  5839. feral: {
  5840. height: math.unit(46, "feet"),
  5841. weight: math.unit(25000, "kg"),
  5842. name: "Feral",
  5843. image: {
  5844. source: "./media/characters/aura-starwind/feral.svg"
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(14, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(50, "meters")
  5857. },
  5858. {
  5859. name: "Megamacro",
  5860. height: math.unit(5000, "meters")
  5861. },
  5862. {
  5863. name: "Gigamacro",
  5864. height: math.unit(100000, "kilometers")
  5865. },
  5866. ]
  5867. )
  5868. };
  5869. characterMakers["Rivet"] = () => {
  5870. return makeCharacter(
  5871. "Rivet",
  5872. {
  5873. front: {
  5874. height: math.unit(2 + 7/12, "feet"),
  5875. weight: math.unit(32, "lbs"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/rivet/front.svg",
  5879. extra: 1716/1658 ,
  5880. bottom: 0.03
  5881. }
  5882. },
  5883. foot: {
  5884. height: math.unit(0.551, "feet"),
  5885. name: "Rivet's Foot",
  5886. image: {
  5887. source: "./media/characters/rivet/foot.svg"
  5888. },
  5889. rename: true
  5890. }
  5891. },
  5892. [
  5893. {
  5894. name: "Micro",
  5895. height: math.unit(1.5, "inches"),
  5896. },
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(2 + 7/12, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(85, "feet")
  5905. },
  5906. {
  5907. name: "Megamacro",
  5908. height: math.unit(2.2, "km")
  5909. }
  5910. ]
  5911. )
  5912. };
  5913. characterMakers["Coffee"] = () => {
  5914. return makeCharacter(
  5915. "Coffee",
  5916. {
  5917. front: {
  5918. height: math.unit(5 + 9/12, "feet"),
  5919. weight: math.unit(150, "lbs"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/coffee/front.svg",
  5923. extra: 3666/3032 ,
  5924. bottom: 0.04
  5925. }
  5926. },
  5927. foot: {
  5928. height: math.unit(1.29, "feet"),
  5929. name: "Foot",
  5930. image: {
  5931. source: "./media/characters/coffee/foot.svg"
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Micro",
  5938. height: math.unit(2, "inches"),
  5939. },
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(5 + 9/12, "feet"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(800, "feet")
  5948. },
  5949. {
  5950. name: "Megamacro",
  5951. height: math.unit(25, "miles")
  5952. }
  5953. ]
  5954. )
  5955. };
  5956. characterMakers["Chari-Gal"] = () => {
  5957. return makeCharacter(
  5958. "Chari-Gal",
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(200, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/chari-gal/front.svg",
  5966. extra: 1568/1385 ,
  5967. bottom: 0.047
  5968. }
  5969. },
  5970. gigantamax: {
  5971. height: math.unit(6*16, "feet"),
  5972. weight: math.unit(200*16*16*16, "lbs"),
  5973. name: "Gigantamax",
  5974. image: {
  5975. source: "./media/characters/chari-gal/gigantamax.svg",
  5976. extra: 1124/888 ,
  5977. bottom: 0.03
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5 + 7/12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(200, "feet"),
  5989. default: true
  5990. }
  5991. ]
  5992. )
  5993. };
  5994. characterMakers["Nova"] = () => {
  5995. return makeCharacter(
  5996. "Nova",
  5997. {
  5998. front: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(150, "lbs"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/nova/front.svg",
  6004. extra: 5000/4722 ,
  6005. bottom: 0.02
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Micro-",
  6012. height: math.unit(0.8, "inches")
  6013. },
  6014. {
  6015. name: "Micro",
  6016. height: math.unit(2, "inches"),
  6017. default: true
  6018. },
  6019. ]
  6020. )
  6021. };
  6022. characterMakers["Argent"] = () => {
  6023. return makeCharacter(
  6024. "Argent",
  6025. {
  6026. front: {
  6027. height: math.unit(3 + 1/12, "feet"),
  6028. weight: math.unit(21.7, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/argent/front.svg",
  6032. extra: 1565/1416 ,
  6033. bottom: 0.01
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Micro",
  6040. height: math.unit(2, "inches")
  6041. },
  6042. {
  6043. name: "Normal",
  6044. height: math.unit(3 + 1/12, "feet"),
  6045. default: true
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(120, "feet")
  6050. },
  6051. ]
  6052. )
  6053. };
  6054. characterMakers["Mira al-Cul"] = () => {
  6055. return makeCharacter(
  6056. "Mira al-Cul",
  6057. {
  6058. lamp: {
  6059. height: math.unit(7 * 1559 / 989, "feet"),
  6060. name: "Magic Lamp",
  6061. image: {
  6062. source: "./media/characters/mira-al-cul/lamp.svg",
  6063. extra: 1617/1559
  6064. }
  6065. },
  6066. front: {
  6067. height: math.unit(7, "feet"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/mira-al-cul/front.svg",
  6071. extra: 1044/990
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Heavily Restricted",
  6078. height: math.unit(7 * 1559 / 989, "feet")
  6079. },
  6080. {
  6081. name: "Freshly Freed",
  6082. height: math.unit(50 * 1559 / 989, "feet")
  6083. },
  6084. {
  6085. name: "World Encompassing",
  6086. height: math.unit(10000 * 1559 / 989, "miles")
  6087. },
  6088. {
  6089. name: "Galactic",
  6090. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6091. },
  6092. {
  6093. name: "Palmed Universe",
  6094. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Multiversal Matriarch",
  6099. height: math.unit(8.87e10, "yottameters")
  6100. },
  6101. {
  6102. name: "Void Mother",
  6103. height: math.unit(3.14e110, "yottaparsecs")
  6104. },
  6105. ]
  6106. )
  6107. };
  6108. characterMakers["Kuro-shi Uchū"] = () => {
  6109. return makeCharacter(
  6110. "Kuro-shi Uchū",
  6111. {
  6112. front: {
  6113. height: math.unit(17 + 1/12, "feet"),
  6114. weight: math.unit(476.2*5, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/kuro-shi-uchū/front.svg",
  6118. extra: 2329/1835 ,
  6119. bottom: 0.02
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Micro",
  6126. height: math.unit(2, "inches")
  6127. },
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(12, "meters")
  6131. },
  6132. {
  6133. name: "Planetary",
  6134. height: math.unit(0.00929, "AU"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Universal",
  6139. height: math.unit(20, "gigaparsecs")
  6140. },
  6141. ]
  6142. )
  6143. };
  6144. characterMakers["Katherine"] = () => {
  6145. return makeCharacter(
  6146. "Katherine",
  6147. {
  6148. front: {
  6149. height: math.unit(5 + 2/12, "feet"),
  6150. weight: math.unit(120, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/katherine/front.svg",
  6154. extra: 2075/1969
  6155. }
  6156. },
  6157. dress: {
  6158. height: math.unit(5 + 2/12, "feet"),
  6159. weight: math.unit(120, "lbs"),
  6160. name: "Dress",
  6161. image: {
  6162. source: "./media/characters/katherine/dress.svg",
  6163. extra: 2258/2064
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Micro",
  6170. height: math.unit(1, "inches"),
  6171. default: true
  6172. },
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(5 + 2/12, "feet")
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(100, "meters")
  6180. },
  6181. {
  6182. name: "Megamacro",
  6183. height: math.unit(80, "miles")
  6184. },
  6185. ]
  6186. )
  6187. };
  6188. characterMakers["Yevis"] = () => {
  6189. return makeCharacter(
  6190. "Yevis",
  6191. {
  6192. front: {
  6193. height: math.unit(7 + 8/12, "feet"),
  6194. weight: math.unit(250, "lbs"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/yevis/front.svg",
  6198. extra: 1938/1755
  6199. }
  6200. }
  6201. },
  6202. [
  6203. {
  6204. name: "Mortal",
  6205. height: math.unit(7 + 8/12, "feet")
  6206. },
  6207. {
  6208. name: "Battle",
  6209. height: math.unit(25 + 11/12, "feet")
  6210. },
  6211. {
  6212. name: "Wrath",
  6213. height: math.unit(1654 + 11/12, "feet")
  6214. },
  6215. {
  6216. name: "Planet Destroyer",
  6217. height: math.unit(12000, "miles")
  6218. },
  6219. {
  6220. name: "Galaxy Conqueror",
  6221. height: math.unit(1.45, "zettameters"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Universal War",
  6226. height: math.unit(184, "gigaparsecs")
  6227. },
  6228. {
  6229. name: "Eternity War",
  6230. height: math.unit(1.98e55, "yottaparsecs")
  6231. },
  6232. ]
  6233. )
  6234. };
  6235. characterMakers["Xavier"] = () => {
  6236. return makeCharacter(
  6237. "Xavier",
  6238. {
  6239. front: {
  6240. height: math.unit(5 + 8/12, "feet"),
  6241. weight: math.unit(63, "kg"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/xavier/front.svg",
  6245. extra: 944/883
  6246. }
  6247. },
  6248. frontStretch: {
  6249. height: math.unit(5 + 8/12, "feet"),
  6250. weight: math.unit(63, "kg"),
  6251. name: "Stretching",
  6252. image: {
  6253. source: "./media/characters/xavier/front-stretch.svg",
  6254. extra: 962/820
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(5 + 8/12, "feet")
  6262. },
  6263. {
  6264. name: "Macro",
  6265. height: math.unit(100, "meters"),
  6266. default: true
  6267. },
  6268. {
  6269. name: "McLargeHuge",
  6270. height: math.unit(10, "miles")
  6271. },
  6272. ]
  6273. )
  6274. };
  6275. characterMakers["Joshii"] = () => {
  6276. return makeCharacter(
  6277. "Joshii",
  6278. {
  6279. front: {
  6280. height: math.unit(5 + 5/12, "feet"),
  6281. weight: math.unit(150, "lb"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/joshii/front.svg"
  6285. }
  6286. },
  6287. foot: {
  6288. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6289. name: "Foot",
  6290. image: {
  6291. source: "./media/characters/joshii/foot.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Micro",
  6298. height: math.unit(2, "inches")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(5 + 5/12, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(785, "feet")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(24.5, "miles")
  6312. },
  6313. ]
  6314. )
  6315. };
  6316. characterMakers["Goddess Elizabeth"] = () => {
  6317. return makeCharacter(
  6318. "Goddess Elizabeth",
  6319. {
  6320. front: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(150, "lb"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/goddess-elizabeth/front.svg",
  6326. extra: 1800/1525,
  6327. bottom: 0.005
  6328. }
  6329. },
  6330. foot: {
  6331. height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
  6332. name: "Foot",
  6333. image: {
  6334. source: "./media/characters/goddess-elizabeth/foot.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Micro",
  6341. height: math.unit(12, "feet")
  6342. },
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(80, "miles"),
  6346. default: true
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(15000, "parsecs")
  6351. },
  6352. ]
  6353. )
  6354. };
  6355. characterMakers["Kara"] = () => {
  6356. return makeCharacter(
  6357. "Kara",
  6358. {
  6359. front: {
  6360. height: math.unit(5 + 9/12, "feet"),
  6361. weight: math.unit(144, "lb"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/kara/front.svg"
  6365. }
  6366. },
  6367. feet: {
  6368. height: math.unit(6/6.765, "feet"),
  6369. name: "Kara's Feet",
  6370. rename: true,
  6371. image: {
  6372. source: "./media/characters/kara/feet.svg"
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(5 + 9/12, "feet")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(174, "feet"),
  6384. default: true
  6385. },
  6386. ]
  6387. )
  6388. };
  6389. characterMakers["Tyrone"] = () => {
  6390. return makeCharacter(
  6391. "Tyrone",
  6392. {
  6393. front: {
  6394. height: math.unit(18, "feet"),
  6395. weight: math.unit(4050, "lb"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/tyrone/front.svg",
  6399. extra: 2520/2402 ,
  6400. bottom: 0.025
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(18, "feet"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(300, "feet")
  6413. },
  6414. ]
  6415. )
  6416. };
  6417. characterMakers["Danny"] = () => {
  6418. return makeCharacter(
  6419. "Danny",
  6420. {
  6421. front: {
  6422. height: math.unit(7 + 8/12, "feet"),
  6423. weight: math.unit(120, "lb"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/danny/front.svg",
  6427. extra: 1490/1350
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(7 + 8/12, "feet"),
  6432. weight: math.unit(120, "lb"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/danny/back.svg",
  6436. extra: 1490/1350
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(7 + 8/12, "feet"),
  6444. default: true
  6445. },
  6446. ]
  6447. )
  6448. };
  6449. characterMakers["Mallow"] = () => {
  6450. return makeCharacter(
  6451. "Mallow",
  6452. {
  6453. front: {
  6454. height: math.unit(3.5, "inches"),
  6455. weight: math.unit(19, "grams"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/mallow/front.svg",
  6459. extra: 471/431
  6460. }
  6461. },
  6462. back: {
  6463. height: math.unit(3.5, "inches"),
  6464. weight: math.unit(19, "grams"),
  6465. name: "Back",
  6466. image: {
  6467. source: "./media/characters/mallow/back.svg",
  6468. extra: 471/431
  6469. }
  6470. },
  6471. },
  6472. [
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(3.5, "inches"),
  6476. default: true
  6477. },
  6478. ]
  6479. )
  6480. };
  6481. characterMakers["Starry Aqua"] = () => {
  6482. return makeCharacter(
  6483. "Starry Aqua",
  6484. {
  6485. front: {
  6486. height: math.unit(9, "feet"),
  6487. weight: math.unit(230, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/starry-aqua/front.svg"
  6491. }
  6492. },
  6493. back: {
  6494. height: math.unit(9, "feet"),
  6495. weight: math.unit(230, "kg"),
  6496. name: "Back",
  6497. image: {
  6498. source: "./media/characters/starry-aqua/back.svg"
  6499. }
  6500. },
  6501. hand: {
  6502. height: math.unit(9 * 0.1168, "feet"),
  6503. name: "Hand",
  6504. image: {
  6505. source: "./media/characters/starry-aqua/hand.svg"
  6506. }
  6507. },
  6508. foot: {
  6509. height: math.unit(9 * 0.18, "feet"),
  6510. name: "Foot",
  6511. image: {
  6512. source: "./media/characters/starry-aqua/foot.svg"
  6513. }
  6514. }
  6515. },
  6516. [
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(3, "inches")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(9, "feet")
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(300, "feet"),
  6528. default: true
  6529. },
  6530. {
  6531. name: "Megamacro",
  6532. height: math.unit(3200, "feet")
  6533. }
  6534. ]
  6535. )
  6536. };
  6537. characterMakers["Luka"] = () => {
  6538. return makeCharacter(
  6539. "Luka",
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(230, "lb"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/luka/front.svg",
  6547. extra: 1,
  6548. bottom: 0.025
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(12 + 8/12, "feet"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Minimacro",
  6560. height: math.unit(20, "feet")
  6561. },
  6562. {
  6563. name: "Macro",
  6564. height: math.unit(250, "feet")
  6565. },
  6566. {
  6567. name: "Megamacro",
  6568. height: math.unit(5, "miles")
  6569. },
  6570. {
  6571. name: "Gigamacro",
  6572. height: math.unit(8000, "miles")
  6573. },
  6574. ]
  6575. )
  6576. };
  6577. characterMakers["Natalie Nightring"] = () => {
  6578. return makeCharacter(
  6579. "Natalie Nightring",
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(150, "lb"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/natalie-nightring/front.svg",
  6587. extra: 1,
  6588. bottom: 0.06
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Uh Oh",
  6595. height: math.unit(0.1, "mm")
  6596. },
  6597. {
  6598. name: "Small",
  6599. height: math.unit(3, "inches")
  6600. },
  6601. {
  6602. name: "Human Scale",
  6603. height: math.unit(6, "feet")
  6604. },
  6605. {
  6606. name: "Librarian",
  6607. height: math.unit(50, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Immense",
  6612. height: math.unit(200, "miles")
  6613. },
  6614. ]
  6615. )
  6616. };
  6617. characterMakers["Danni Rosie"] = () => {
  6618. return makeCharacter(
  6619. "Danni Rosie",
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(180, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/danni-rosie/front.svg",
  6627. extra: 1260/1128 ,
  6628. bottom: 0.022
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(2, "inches"),
  6636. default: true
  6637. },
  6638. ]
  6639. )
  6640. };
  6641. characterMakers["Samantha Kruse"] = () => {
  6642. return makeCharacter(
  6643. "Samantha Kruse",
  6644. {
  6645. front: {
  6646. height: math.unit(5 + 9/12, "feet"),
  6647. weight: math.unit(220, "lb"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/samantha-kruse/front.svg",
  6651. extra: (985 / 935) ,
  6652. bottom: 0.03
  6653. }
  6654. },
  6655. frontUndressed: {
  6656. height: math.unit(5 + 9/12, "feet"),
  6657. weight: math.unit(220, "lb"),
  6658. name: "Front (Undressed)",
  6659. image: {
  6660. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6661. extra: (973 / 923) ,
  6662. bottom: 0.025
  6663. }
  6664. },
  6665. fat: {
  6666. height: math.unit(5 + 9/12, "feet"),
  6667. weight: math.unit(900, "lb"),
  6668. name: "Front (Fat)",
  6669. image: {
  6670. source: "./media/characters/samantha-kruse/fat.svg",
  6671. extra: 2688/2561
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(5 + 9/12, "feet"),
  6679. default: true
  6680. }
  6681. ]
  6682. )
  6683. };
  6684. characterMakers["Amelia Rosie"] = () => {
  6685. return makeCharacter(
  6686. "Amelia Rosie",
  6687. {
  6688. back: {
  6689. height: math.unit(5 + 4/12, "feet"),
  6690. weight: math.unit(4963, "lb"),
  6691. name: "Back",
  6692. image: {
  6693. source: "./media/characters/amelia-rosie/back.svg",
  6694. extra: 1113/963 ,
  6695. bottom: 0.01
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Level 0",
  6702. height: math.unit(5 + 4/12, "feet")
  6703. },
  6704. {
  6705. name: "Level 1",
  6706. height: math.unit(164597, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Level 2",
  6711. height: math.unit(956243, "miles")
  6712. },
  6713. {
  6714. name: "Level 3",
  6715. height: math.unit(29421709423, "miles")
  6716. },
  6717. {
  6718. name: "Level 4",
  6719. height: math.unit(154, "lightyears")
  6720. },
  6721. {
  6722. name: "Level 5",
  6723. height: math.unit(4738272, "lightyears")
  6724. },
  6725. {
  6726. name: "Level 6",
  6727. height: math.unit(145787152896, "lightyears")
  6728. },
  6729. ]
  6730. )
  6731. };
  6732. characterMakers["Rook Kitara"] = () => {
  6733. return makeCharacter(
  6734. "Rook Kitara",
  6735. {
  6736. front: {
  6737. height: math.unit(5 + 11/12, "feet"),
  6738. weight: math.unit(65, "kg"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/rook-kitara/front.svg",
  6742. extra: 1347/1274 ,
  6743. bottom: 0.005
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Totally Unfair",
  6750. height: math.unit(1.8, "mm")
  6751. },
  6752. {
  6753. name: "Lap Rookie",
  6754. height: math.unit(1.4, "feet")
  6755. },
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(5 + 11/12, "feet"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "How Did This Happen",
  6763. height: math.unit(80, "miles")
  6764. }
  6765. ]
  6766. )
  6767. };
  6768. characterMakers["Pisces"] = () => {
  6769. return makeCharacter(
  6770. "Pisces",
  6771. {
  6772. front: {
  6773. height: math.unit(7, "feet"),
  6774. weight: math.unit(300, "lb"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/pisces/front.svg",
  6778. extra: 2255/2115 ,
  6779. bottom: 0.03
  6780. }
  6781. },
  6782. back: {
  6783. height: math.unit(7, "feet"),
  6784. weight: math.unit(300, "lb"),
  6785. name: "Back",
  6786. image: {
  6787. source: "./media/characters/pisces/back.svg",
  6788. extra: 2146/2055 ,
  6789. bottom: 0.04
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(7, "feet"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Swimming Pool",
  6801. height: math.unit(12.2, "meters")
  6802. },
  6803. {
  6804. name: "Olympic Swimming Pool",
  6805. height: math.unit(56.3, "meters")
  6806. },
  6807. {
  6808. name: "Lake Superior",
  6809. height: math.unit(93900, "meters")
  6810. },
  6811. {
  6812. name: "Mediterranean Sea",
  6813. height: math.unit(644457, "meters")
  6814. },
  6815. {
  6816. name: "World's Oceans",
  6817. height: math.unit(4567491, "meters")
  6818. },
  6819. ]
  6820. )
  6821. };
  6822. characterMakers["Zelas"] = () => {
  6823. return makeCharacter(
  6824. "Zelas",
  6825. {
  6826. front: {
  6827. height: math.unit(2.3, "meters"),
  6828. weight: math.unit(120, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/zelas/front.svg"
  6832. }
  6833. },
  6834. side: {
  6835. height: math.unit(2.3, "meters"),
  6836. weight: math.unit(120, "kg"),
  6837. name: "Side",
  6838. image: {
  6839. source: "./media/characters/zelas/side.svg"
  6840. }
  6841. },
  6842. back: {
  6843. height: math.unit(2.3, "meters"),
  6844. weight: math.unit(120, "kg"),
  6845. name: "Back",
  6846. image: {
  6847. source: "./media/characters/zelas/back.svg"
  6848. }
  6849. },
  6850. foot: {
  6851. height: math.unit(1.116, "feet"),
  6852. name: "Foot",
  6853. image: {
  6854. source: "./media/characters/zelas/foot.svg"
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Normal",
  6861. height: math.unit(2.3, "meters")
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(30, "meters"),
  6866. default: true
  6867. },
  6868. ]
  6869. )
  6870. };
  6871. characterMakers["Talbot"] = () => {
  6872. return makeCharacter(
  6873. "Talbot",
  6874. {
  6875. front: {
  6876. height: math.unit(1, "inch"),
  6877. weight: math.unit(0.21, "grams"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/talbot/front.svg",
  6881. extra: 594/544
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Micro",
  6888. height: math.unit(1, "inch"),
  6889. default: true
  6890. },
  6891. ]
  6892. )
  6893. };
  6894. characterMakers["Fliss"] = () => {
  6895. return makeCharacter(
  6896. "Fliss",
  6897. {
  6898. front: {
  6899. height: math.unit(3 + 3/12, "feet"),
  6900. weight: math.unit(51.8, "lb"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/fliss/front.svg",
  6904. extra: 840/640
  6905. }
  6906. },
  6907. },
  6908. [
  6909. {
  6910. name: "Teeny Tiny",
  6911. height: math.unit(1, "mm")
  6912. },
  6913. {
  6914. name: "Small",
  6915. height: math.unit(1, "inch"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Standard Sylveon",
  6920. height: math.unit(3 + 3/12, "feet")
  6921. },
  6922. {
  6923. name: "Large Nuisance",
  6924. height: math.unit(33, "feet")
  6925. },
  6926. {
  6927. name: "City Filler",
  6928. height: math.unit(3000, "feet")
  6929. },
  6930. {
  6931. name: "New Horizon",
  6932. height: math.unit(6000, "miles")
  6933. },
  6934. ]
  6935. )
  6936. };
  6937. characterMakers["Fleta"] = () => {
  6938. return makeCharacter(
  6939. "Fleta",
  6940. {
  6941. front: {
  6942. height: math.unit(5, "cm"),
  6943. weight: math.unit(1.94, "g"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/fleta/front.svg",
  6947. extra: 835/803
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(5, "cm"),
  6952. weight: math.unit(1.94, "g"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/fleta/back.svg",
  6956. extra: 835/803
  6957. }
  6958. },
  6959. },
  6960. [
  6961. {
  6962. name: "Micro",
  6963. height: math.unit(5, "cm"),
  6964. default: true
  6965. },
  6966. ]
  6967. )
  6968. };
  6969. characterMakers["Dominic"] = () => {
  6970. return makeCharacter(
  6971. "Dominic",
  6972. {
  6973. front: {
  6974. height: math.unit(6, "feet"),
  6975. weight: math.unit(225, "lb"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/dominic/front.svg",
  6979. extra: 1770/1620 ,
  6980. bottom: 0.025
  6981. }
  6982. },
  6983. back: {
  6984. height: math.unit(6, "feet"),
  6985. weight: math.unit(225, "lb"),
  6986. name: "Back",
  6987. image: {
  6988. source: "./media/characters/dominic/back.svg",
  6989. extra: 1745/1620 ,
  6990. bottom: 0.065
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Nano",
  6997. height: math.unit(0.1, "mm")
  6998. },
  6999. {
  7000. name: "Micro-",
  7001. height: math.unit(1, "mm")
  7002. },
  7003. {
  7004. name: "Micro",
  7005. height: math.unit(4, "inches")
  7006. },
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(6 + 4/12, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Macro",
  7014. height: math.unit(115, "feet")
  7015. },
  7016. {
  7017. name: "Macro+",
  7018. height: math.unit(955, "feet")
  7019. },
  7020. {
  7021. name: "Megamacro",
  7022. height: math.unit(8990, "feet")
  7023. },
  7024. {
  7025. name: "Gigmacro",
  7026. height: math.unit(9310, "miles")
  7027. },
  7028. {
  7029. name: "Teramacro",
  7030. height: math.unit(1567005010, "miles")
  7031. },
  7032. {
  7033. name: "Examacro",
  7034. height: math.unit(1425, "parsecs")
  7035. },
  7036. ]
  7037. )
  7038. };
  7039. characterMakers["Major Colonel"] = () => {
  7040. return makeCharacter(
  7041. "Major Colonel",
  7042. {
  7043. front: {
  7044. height: math.unit(400, "feet"),
  7045. weight: math.unit(44444444, "lb"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/major-colonel/front.svg"
  7049. }
  7050. },
  7051. back: {
  7052. height: math.unit(400, "feet"),
  7053. weight: math.unit(44444444, "lb"),
  7054. name: "Back",
  7055. image: {
  7056. source: "./media/characters/major-colonel/back.svg"
  7057. }
  7058. },
  7059. },
  7060. [
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(400, "feet"),
  7064. default: true
  7065. },
  7066. ]
  7067. )
  7068. };
  7069. characterMakers["Axel Lycan"] = () => {
  7070. return makeCharacter(
  7071. "Axel Lycan",
  7072. {
  7073. front: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(120, "lb"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/axel-lycan/front.svg",
  7079. extra: 1,
  7080. bottom: 0.08
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(1, "km"),
  7088. default: true
  7089. },
  7090. ]
  7091. )
  7092. };
  7093. characterMakers["Vanrel (Hyena)"] = () => {
  7094. return makeCharacter(
  7095. "Vanrel (Hyena)",
  7096. {
  7097. front: {
  7098. height: math.unit(5 + 9/12, "feet"),
  7099. weight: math.unit(175, "lb"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/vanrel-hyena/front.svg",
  7103. extra: 1086/1010 ,
  7104. bottom: 0.04
  7105. }
  7106. },
  7107. },
  7108. [
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(5 + 9/12, "feet"),
  7112. default: true
  7113. },
  7114. ]
  7115. )
  7116. };
  7117. characterMakers["Abbott Absol"] = () => {
  7118. return makeCharacter(
  7119. "Abbott Absol",
  7120. {
  7121. front: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(103, "lb"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/abbott-absol/front.svg",
  7127. extra: 2010/1842
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Megamicro",
  7134. height: math.unit(0.1, "mm")
  7135. },
  7136. {
  7137. name: "Micro",
  7138. height: math.unit(1, "inch")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(6, "feet"),
  7143. default: true
  7144. },
  7145. ]
  7146. )
  7147. };
  7148. characterMakers["Hector"] = () => {
  7149. return makeCharacter(
  7150. "Hector",
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(264, "lb"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/hector/front.svg",
  7158. extra: 2280/2130 ,
  7159. bottom: 0.07
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(12.25, "foot"),
  7167. default: true
  7168. },
  7169. {
  7170. name: "Macro",
  7171. height: math.unit(160, "feet")
  7172. },
  7173. ]
  7174. )
  7175. };
  7176. characterMakers["Sal"] = () => {
  7177. return makeCharacter(
  7178. "Sal",
  7179. {
  7180. front: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(150, "lb"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/sal/front.svg",
  7186. extra: 1846/1699 ,
  7187. bottom: 0.04
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Megamacro",
  7194. height: math.unit(10, "miles"),
  7195. default: true
  7196. },
  7197. ]
  7198. )
  7199. };
  7200. characterMakers["Ranger"] = () => {
  7201. return makeCharacter(
  7202. "Ranger",
  7203. {
  7204. front: {
  7205. height: math.unit(3, "meters"),
  7206. weight: math.unit(450, "kg"),
  7207. name: "front",
  7208. image: {
  7209. source: "./media/characters/ranger/front.svg",
  7210. extra: 2401/2243 ,
  7211. bottom: 0.05
  7212. }
  7213. },
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(3, "meters"),
  7219. default: true
  7220. },
  7221. ]
  7222. )
  7223. };
  7224. characterMakers["Theresa"] = () => {
  7225. return makeCharacter(
  7226. "Theresa",
  7227. {
  7228. front: {
  7229. height: math.unit(14, "feet"),
  7230. weight: math.unit(800, "kg"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/theresa/front.svg",
  7234. extra: 3575/3346 ,
  7235. bottom: 0.03
  7236. }
  7237. },
  7238. },
  7239. [
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(14, "feet"),
  7243. default: true
  7244. },
  7245. ]
  7246. )
  7247. };
  7248. characterMakers["Ine"] = () => {
  7249. return makeCharacter(
  7250. "Ine",
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(3, "kg"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/ine/front.svg",
  7258. extra: 678/539 ,
  7259. bottom: 0.023
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(2.265, "feet"),
  7267. default: true
  7268. },
  7269. ]
  7270. )
  7271. };
  7272. characterMakers["Vial"] = () => {
  7273. return makeCharacter(
  7274. "Vial",
  7275. {
  7276. front: {
  7277. height: math.unit(5, "feet"),
  7278. weight: math.unit(30, "kg"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/vial/front.svg",
  7282. extra: 1365/1277 ,
  7283. bottom: 0.04
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(5, "feet"),
  7291. default: true
  7292. },
  7293. ]
  7294. )
  7295. };
  7296. characterMakers["Rovoska"] = () => {
  7297. return makeCharacter(
  7298. "Rovoska",
  7299. {
  7300. side: {
  7301. height: math.unit(3.4, "meters"),
  7302. weight: math.unit(1000, "lb"),
  7303. name: "Side",
  7304. image: {
  7305. source: "./media/characters/rovoska/side.svg",
  7306. extra: 4403/1515
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(3.4, "meters"),
  7314. default: true
  7315. },
  7316. ]
  7317. )
  7318. };
  7319. characterMakers["Gunner Rotthbauer"] = () => {
  7320. return makeCharacter(
  7321. "Gunner Rotthbauer",
  7322. {
  7323. front: {
  7324. height: math.unit(8, "feet"),
  7325. weight: math.unit(315, "lb"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/gunner-rotthbauer/front.svg"
  7329. }
  7330. },
  7331. back: {
  7332. height: math.unit(8, "feet"),
  7333. weight: math.unit(315, "lb"),
  7334. name: "Back",
  7335. image: {
  7336. source: "./media/characters/gunner-rotthbauer/back.svg"
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Micro",
  7343. height: math.unit(3.5, "inches")
  7344. },
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(8, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(250, "feet")
  7353. },
  7354. {
  7355. name: "Megamacro",
  7356. height: math.unit(1, "AU")
  7357. },
  7358. ]
  7359. )
  7360. };
  7361. characterMakers["Allatia"] = () => {
  7362. return makeCharacter(
  7363. "Allatia",
  7364. {
  7365. front: {
  7366. height: math.unit(5 + 5/12, "feet"),
  7367. weight: math.unit(140, "lb"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/allatia/front.svg",
  7371. extra: 1227/1180 ,
  7372. bottom: 0.027
  7373. }
  7374. },
  7375. },
  7376. [
  7377. {
  7378. name: "Normal",
  7379. height: math.unit(5 + 5/12, "feet")
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(250, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Megamacro",
  7388. height: math.unit(8, "miles")
  7389. }
  7390. ]
  7391. )
  7392. };
  7393. characterMakers["Tene"] = () => {
  7394. return makeCharacter(
  7395. "Tene",
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(120, "lb"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/tene/front.svg",
  7403. extra: 1728/1578 ,
  7404. bottom: 0.022
  7405. }
  7406. },
  7407. stomping: {
  7408. height: math.unit(2.025, "meters"),
  7409. weight: math.unit(120, "lb"),
  7410. name: "Stomping",
  7411. image: {
  7412. source: "./media/characters/tene/stomping.svg",
  7413. extra: 938/873 ,
  7414. bottom: 0.01
  7415. }
  7416. },
  7417. sitting: {
  7418. height: math.unit(1, "meter"),
  7419. weight: math.unit(120, "lb"),
  7420. name: "Sitting",
  7421. image: {
  7422. source: "./media/characters/tene/sitting.svg",
  7423. extra: 437/415 ,
  7424. bottom: 0.1
  7425. }
  7426. },
  7427. feral: {
  7428. height: math.unit(3.9, "feet"),
  7429. weight: math.unit(250, "lb"),
  7430. name: "Feral",
  7431. image: {
  7432. source: "./media/characters/tene/feral.svg",
  7433. extra: 717/458 ,
  7434. bottom: 0.179
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(6, "feet")
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(300, "feet"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(5, "miles")
  7451. },
  7452. ]
  7453. )
  7454. };
  7455. characterMakers["Evander"] = () => {
  7456. return makeCharacter(
  7457. "Evander",
  7458. {
  7459. side: {
  7460. height: math.unit(6, "feet"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/evander/side.svg",
  7464. extra: 877/477
  7465. }
  7466. },
  7467. },
  7468. [
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(0.83, "meters"),
  7472. default: true
  7473. },
  7474. ]
  7475. )
  7476. };
  7477. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7478. return makeCharacter(
  7479. "Ka'Tamra \"Spaz\" Ci'Karan",
  7480. {
  7481. front: {
  7482. height: math.unit(12, "feet"),
  7483. weight: math.unit(1000, "lb"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7487. extra: 1762/1611
  7488. }
  7489. },
  7490. back: {
  7491. height: math.unit(12, "feet"),
  7492. weight: math.unit(1000, "lb"),
  7493. name: "Back",
  7494. image: {
  7495. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7496. extra: 1762/1611
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Normal",
  7503. height: math.unit(12, "feet"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Kaiju",
  7508. height: math.unit(150, "feet")
  7509. },
  7510. ]
  7511. )
  7512. };
  7513. characterMakers["Zero Alurus"] = () => {
  7514. return makeCharacter(
  7515. "Zero Alurus",
  7516. {
  7517. front: {
  7518. height: math.unit(6, "feet"),
  7519. weight: math.unit(150, "lb"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/zero-alurus/front.svg"
  7523. }
  7524. },
  7525. back: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(150, "lb"),
  7528. name: "Back",
  7529. image: {
  7530. source: "./media/characters/zero-alurus/back.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(5 + 10/12, "feet")
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(60, "feet"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Macro+",
  7546. height: math.unit(450, "feet")
  7547. },
  7548. ]
  7549. )
  7550. };
  7551. characterMakers["Mega Shi"] = () => {
  7552. return makeCharacter(
  7553. "Mega Shi",
  7554. {
  7555. front: {
  7556. height: math.unit(6, "feet"),
  7557. weight: math.unit(200, "lb"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/mega-shi/front.svg",
  7561. extra: 1279/1250 ,
  7562. bottom: 0.02
  7563. }
  7564. },
  7565. back: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(200, "lb"),
  7568. name: "Back",
  7569. image: {
  7570. source: "./media/characters/mega-shi/back.svg",
  7571. extra: 1279/1250 ,
  7572. bottom: 0.02
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(16 + 6/12, "feet")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(660, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Megamacro",
  7588. height: math.unit(10, "miles")
  7589. },
  7590. {
  7591. name: "Planetary Launch",
  7592. height: math.unit(500, "miles")
  7593. },
  7594. {
  7595. name: "Interstellar",
  7596. height: math.unit(1e9, "miles")
  7597. },
  7598. {
  7599. name: "Leaving the Universe",
  7600. height: math.unit(1, "gigaparsec")
  7601. },
  7602. {
  7603. name: "Travelling Universes",
  7604. height: math.unit(30e15, "parsecs")
  7605. },
  7606. ]
  7607. )
  7608. };
  7609. characterMakers["Odyssey"] = () => {
  7610. return makeCharacter(
  7611. "Odyssey",
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(150, "lb"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/odyssey/front.svg",
  7619. extra: 1782/1582 ,
  7620. bottom: 0.01
  7621. }
  7622. },
  7623. side: {
  7624. height: math.unit(5.6, "feet"),
  7625. weight: math.unit(140, "lb"),
  7626. name: "Side",
  7627. image: {
  7628. source: "./media/characters/odyssey/side.svg",
  7629. extra: 6462/5700
  7630. }
  7631. },
  7632. },
  7633. [
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(5 + 4/12, "feet")
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(1, "km")
  7641. },
  7642. {
  7643. name: "Megamacro",
  7644. height: math.unit(3000, "km")
  7645. },
  7646. {
  7647. name: "Gigamacro",
  7648. height: math.unit(1, "AU"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Omniversal",
  7653. height: math.unit(100e14, "lightyears")
  7654. },
  7655. ]
  7656. )
  7657. };
  7658. characterMakers["Mekuto"] = () => {
  7659. return makeCharacter(
  7660. "Mekuto",
  7661. {
  7662. front: {
  7663. height: math.unit(6, "feet"),
  7664. weight: math.unit(300, "lb"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/mekuto/front.svg",
  7668. extra: 921/832 ,
  7669. bottom: 0.03
  7670. }
  7671. },
  7672. hand: {
  7673. height: math.unit(6/10.24, "feet"),
  7674. name: "Hand",
  7675. image: {
  7676. source: "./media/characters/mekuto/hand.svg"
  7677. }
  7678. },
  7679. foot: {
  7680. height: math.unit(6/5.05, "feet"),
  7681. name: "Foot",
  7682. image: {
  7683. source: "./media/characters/mekuto/foot.svg"
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Minimicro",
  7690. height: math.unit(0.2, "inches")
  7691. },
  7692. {
  7693. name: "Micro",
  7694. height: math.unit(1.5, "inches")
  7695. },
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(5 + 11/12, "feet"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Minimacro",
  7703. height: math.unit(17 + 9/12, "feet")
  7704. },
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(177.5, "feet")
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(152, "miles")
  7712. },
  7713. ]
  7714. )
  7715. };
  7716. characterMakers["Dafydd Tomos"] = () => {
  7717. return makeCharacter(
  7718. "Dafydd Tomos",
  7719. {
  7720. front: {
  7721. height: math.unit(6.5, "inches"),
  7722. weight: math.unit(13, "oz"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/dafydd-tomos/front.svg",
  7726. extra: 2990/2603 ,
  7727. bottom: 0.03
  7728. }
  7729. },
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(6.5, "inches"),
  7735. default: true
  7736. },
  7737. ]
  7738. )
  7739. };
  7740. characterMakers["Splinter"] = () => {
  7741. return makeCharacter(
  7742. "Splinter",
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(150, "lb"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/splinter/front.svg",
  7750. extra: 2990/2882 ,
  7751. bottom: 0.04
  7752. }
  7753. },
  7754. back: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(150, "lb"),
  7757. name: "Back",
  7758. image: {
  7759. source: "./media/characters/splinter/back.svg",
  7760. extra: 2990/2882 ,
  7761. bottom: 0.04
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(6, "feet")
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(230, "meters"),
  7773. default: true
  7774. },
  7775. ]
  7776. )
  7777. };
  7778. characterMakers["SnowGabumon"] = () => {
  7779. return makeCharacter(
  7780. "SnowGabumon",
  7781. {
  7782. front: {
  7783. height: math.unit(4 + 10/12, "feet"),
  7784. weight: math.unit(480, "lb"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/snow-gabumon/front.svg",
  7788. extra: 1140/963 ,
  7789. bottom: 0.058
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(4 + 10/12, "feet"),
  7794. weight: math.unit(480, "lb"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/snow-gabumon/back.svg",
  7798. extra: 1115/962 ,
  7799. bottom: 0.041
  7800. }
  7801. },
  7802. frontUndresed: {
  7803. height: math.unit(4 + 10/12, "feet"),
  7804. weight: math.unit(480, "lb"),
  7805. name: "Front (Undressed)",
  7806. image: {
  7807. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7808. extra: 1061/960 ,
  7809. bottom: 0.045
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Micro",
  7816. height: math.unit(1, "inch")
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(4 + 10/12, "feet"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(200, "feet")
  7826. },
  7827. {
  7828. name: "Megamacro",
  7829. height: math.unit(120, "miles")
  7830. },
  7831. {
  7832. name: "Gigamacro",
  7833. height: math.unit(9800, "miles")
  7834. },
  7835. ]
  7836. )
  7837. };
  7838. characterMakers["Moody"] = () => {
  7839. return makeCharacter(
  7840. "Moody",
  7841. {
  7842. front: {
  7843. height: math.unit(1.7, "meters"),
  7844. weight: math.unit(140, "lb"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/moody/front.svg",
  7848. extra: 3226/3007 ,
  7849. bottom: 0.087
  7850. }
  7851. },
  7852. },
  7853. [
  7854. {
  7855. name: "Micro",
  7856. height: math.unit(1, "mm")
  7857. },
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(1.7, "meters"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(80, "meters")
  7866. },
  7867. {
  7868. name: "Macro+",
  7869. height: math.unit(500, "meters")
  7870. },
  7871. ]
  7872. )
  7873. };
  7874. characterMakers["Zyas"] = () => {
  7875. return makeCharacter(
  7876. "Zyas",
  7877. {
  7878. front: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(150, "lb"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/zyas/front.svg",
  7884. extra: 1180/1120 ,
  7885. bottom: 0.045
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(10, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(500, "feet")
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(5, "miles")
  7902. },
  7903. {
  7904. name: "Teramacro",
  7905. height: math.unit(150000, "miles")
  7906. },
  7907. ]
  7908. )
  7909. };
  7910. characterMakers["Cuon"] = () => {
  7911. return makeCharacter(
  7912. "Cuon",
  7913. {
  7914. front: {
  7915. height: math.unit(6, "feet"),
  7916. weight: math.unit(150, "lb"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/cuon/front.svg",
  7920. extra: 1390/1320 ,
  7921. bottom: 0.008
  7922. }
  7923. },
  7924. },
  7925. [
  7926. {
  7927. name: "Micro",
  7928. height: math.unit(3, "inches")
  7929. },
  7930. {
  7931. name: "Normal",
  7932. height: math.unit(18 + 9/12, "feet"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Macro",
  7937. height: math.unit(360, "feet")
  7938. },
  7939. {
  7940. name: "Megamacro",
  7941. height: math.unit(360, "miles")
  7942. },
  7943. ]
  7944. )
  7945. };
  7946. characterMakers["Nyanuxk"] = () => {
  7947. return makeCharacter(
  7948. "Nyanuxk",
  7949. {
  7950. front: {
  7951. height: math.unit(2.4, "meters"),
  7952. weight: math.unit(70, "kg"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/nyanuxk/front.svg",
  7956. extra: 1172/1084 ,
  7957. bottom: 0.065
  7958. }
  7959. },
  7960. side: {
  7961. height: math.unit(2.4, "meters"),
  7962. weight: math.unit(70, "kg"),
  7963. name: "Side",
  7964. image: {
  7965. source: "./media/characters/nyanuxk/side.svg",
  7966. extra: 1190/1132 ,
  7967. bottom: 0.007
  7968. }
  7969. },
  7970. back: {
  7971. height: math.unit(2.4, "meters"),
  7972. weight: math.unit(70, "kg"),
  7973. name: "Back",
  7974. image: {
  7975. source: "./media/characters/nyanuxk/back.svg",
  7976. extra: 1200/1141 ,
  7977. bottom: 0.015
  7978. }
  7979. },
  7980. foot: {
  7981. height: math.unit(0.52, "meters"),
  7982. name: "Foot",
  7983. image: {
  7984. source: "./media/characters/nyanuxk/foot.svg"
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(2, "cm")
  7992. },
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(2.4, "meters"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Smaller Macro",
  8000. height: math.unit(120, "meters")
  8001. },
  8002. {
  8003. name: "Bigger Macro",
  8004. height: math.unit(1.2, "km")
  8005. },
  8006. {
  8007. name: "Megamacro",
  8008. height: math.unit(15, "kilometers")
  8009. },
  8010. {
  8011. name: "Gigamacro",
  8012. height: math.unit(2000, "km")
  8013. },
  8014. {
  8015. name: "Teramacro",
  8016. height: math.unit(500000, "km")
  8017. },
  8018. ]
  8019. )
  8020. };
  8021. characterMakers["Ailbhe"] = () => {
  8022. return makeCharacter(
  8023. "Ailbhe",
  8024. {
  8025. side: {
  8026. height: math.unit(6, "feet"),
  8027. name: "Side",
  8028. image: {
  8029. source: "./media/characters/ailbhe/side.svg",
  8030. extra: 757/464 ,
  8031. bottom: 0.041
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(1.07, "meters"),
  8039. default: true
  8040. },
  8041. ]
  8042. )
  8043. };
  8044. characterMakers["Zevulfius"] = () => {
  8045. return makeCharacter(
  8046. "Zevulfius",
  8047. {
  8048. front: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(120, "kg"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/zevulfius/front.svg",
  8054. extra: 965/903
  8055. }
  8056. },
  8057. side: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(120, "kg"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/zevulfius/side.svg",
  8063. extra: 939/900
  8064. }
  8065. },
  8066. back: {
  8067. height: math.unit(6, "feet"),
  8068. weight: math.unit(120, "kg"),
  8069. name: "Back",
  8070. image: {
  8071. source: "./media/characters/zevulfius/back.svg",
  8072. extra: 918/854 ,
  8073. bottom: 0.005
  8074. }
  8075. },
  8076. foot: {
  8077. height: math.unit(6/3.72, "feet"),
  8078. name: "Foot",
  8079. image: {
  8080. source: "./media/characters/zevulfius/foot.svg"
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Macro",
  8087. height: math.unit(750, "meters")
  8088. },
  8089. {
  8090. name: "Megamacro",
  8091. height: math.unit(20, "km"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Gigamacro",
  8096. height: math.unit(2000, "km")
  8097. },
  8098. {
  8099. name: "Teramacro",
  8100. height: math.unit(250000, "km")
  8101. },
  8102. ]
  8103. )
  8104. };
  8105. characterMakers["Rikes"] = () => {
  8106. return makeCharacter(
  8107. "Rikes",
  8108. {
  8109. front: {
  8110. height: math.unit(100, "feet"),
  8111. weight: math.unit(350, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/rikes/front.svg",
  8115. extra: 1565/1483 ,
  8116. bottom: 0.017
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(100, "feet"),
  8124. default: true
  8125. },
  8126. ]
  8127. )
  8128. };
  8129. characterMakers["Adam Silver-Mane"] = () => {
  8130. return makeCharacter(
  8131. "Adam Silver-Mane",
  8132. {
  8133. anthro: {
  8134. height: math.unit(8, "feet"),
  8135. weight: math.unit(120, "kg"),
  8136. name: "Anthro",
  8137. image: {
  8138. source: "./media/characters/adam-silver-mane/anthro.svg",
  8139. extra: 5743/5339 ,
  8140. bottom: 0.07
  8141. }
  8142. },
  8143. taur: {
  8144. height: math.unit(16, "feet"),
  8145. weight: math.unit(1500, "kg"),
  8146. name: "Taur",
  8147. image: {
  8148. source: "./media/characters/adam-silver-mane/taur.svg",
  8149. extra: 1713/1571 ,
  8150. bottom: 0.01
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Normal",
  8157. height: math.unit(8, "feet")
  8158. },
  8159. {
  8160. name: "Minimacro",
  8161. height: math.unit(80, "feet")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(800, "feet"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(8000, "feet")
  8171. },
  8172. {
  8173. name: "Gigamacro",
  8174. height: math.unit(800, "miles")
  8175. },
  8176. {
  8177. name: "Teramacro",
  8178. height: math.unit(80000, "miles")
  8179. },
  8180. {
  8181. name: "Celestial",
  8182. height: math.unit(8e6, "miles")
  8183. },
  8184. {
  8185. name: "Star Dragon",
  8186. height: math.unit(800000, "parsecs")
  8187. },
  8188. {
  8189. name: "Godly",
  8190. height: math.unit(800, "teraparsecs")
  8191. },
  8192. ]
  8193. )
  8194. };
  8195. characterMakers["Ky'owin"] = () => {
  8196. return makeCharacter(
  8197. "Ky'owin",
  8198. {
  8199. front: {
  8200. height: math.unit(6, "feet"),
  8201. weight: math.unit(150, "lb"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/ky'owin/front.svg",
  8205. extra: 3888/3068 ,
  8206. bottom: 0.015
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(6 + 8/12, "feet")
  8214. },
  8215. {
  8216. name: "Large",
  8217. height: math.unit(68, "feet")
  8218. },
  8219. {
  8220. name: "Macro",
  8221. height: math.unit(132, "feet")
  8222. },
  8223. {
  8224. name: "Macro+",
  8225. height: math.unit(340, "feet")
  8226. },
  8227. {
  8228. name: "Macro++",
  8229. height: math.unit(680, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Megamacro",
  8234. height: math.unit(1, "mile")
  8235. },
  8236. {
  8237. name: "Megamacro+",
  8238. height: math.unit(10, "miles")
  8239. },
  8240. ]
  8241. )
  8242. };
  8243. characterMakers["Mal"] = () => {
  8244. return makeCharacter(
  8245. "Mal",
  8246. {
  8247. front: {
  8248. height: math.unit(4, "feet"),
  8249. weight: math.unit(50, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/mal/front.svg",
  8253. extra: 785/724 ,
  8254. bottom: 0.07
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Micro",
  8261. height: math.unit(4, "inches")
  8262. },
  8263. {
  8264. name: "Normal",
  8265. height: math.unit(4, "feet"),
  8266. default: true
  8267. },
  8268. {
  8269. name: "Macro",
  8270. height: math.unit(200, "feet")
  8271. },
  8272. ]
  8273. )
  8274. };
  8275. characterMakers["Jordan Deware"] = () => {
  8276. return makeCharacter(
  8277. "Jordan Deware",
  8278. {
  8279. front: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(150, "lb"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/jordan-deware/front.svg",
  8285. extra: 1191/1012
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Nano",
  8292. height: math.unit(0.01, "mm")
  8293. },
  8294. {
  8295. name: "Minimicro",
  8296. height: math.unit(1, "mm")
  8297. },
  8298. {
  8299. name: "Micro",
  8300. height: math.unit(0.5, "inches")
  8301. },
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(4, "feet"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Minimacro",
  8309. height: math.unit(40, "meters")
  8310. },
  8311. {
  8312. name: "Small Macro",
  8313. height: math.unit(400, "meters")
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(4, "miles")
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(40, "miles")
  8322. },
  8323. {
  8324. name: "Megamacro+",
  8325. height: math.unit(400, "miles")
  8326. },
  8327. {
  8328. name: "Gigamacro",
  8329. height: math.unit(400000, "miles")
  8330. },
  8331. ]
  8332. )
  8333. };
  8334. characterMakers["Kimiko"] = () => {
  8335. return makeCharacter(
  8336. "Kimiko",
  8337. {
  8338. side: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(150, "lb"),
  8341. name: "Side",
  8342. image: {
  8343. source: "./media/characters/kimiko/side.svg",
  8344. extra: 600/358
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(15, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(220, "feet")
  8357. },
  8358. {
  8359. name: "Macro+",
  8360. height: math.unit(1450, "feet")
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(11500, "feet")
  8365. },
  8366. {
  8367. name: "Gigamacro",
  8368. height: math.unit(9500, "miles")
  8369. },
  8370. {
  8371. name: "Teramacro",
  8372. height: math.unit(2208005005, "miles")
  8373. },
  8374. {
  8375. name: "Examacro",
  8376. height: math.unit(2750, "parsecs")
  8377. },
  8378. {
  8379. name: "Zettamacro",
  8380. height: math.unit(101500, "parsecs")
  8381. },
  8382. ]
  8383. )
  8384. };
  8385. characterMakers["Andrew Sleepy"] = () => {
  8386. return makeCharacter(
  8387. "Andrew Sleepy",
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(70, "kg"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/andrew-sleepy/front.svg"
  8395. }
  8396. },
  8397. side: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(70, "kg"),
  8400. name: "Side",
  8401. image: {
  8402. source: "./media/characters/andrew-sleepy/side.svg"
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Micro",
  8409. height: math.unit(1, "mm"),
  8410. default: true
  8411. },
  8412. ]
  8413. )
  8414. };
  8415. characterMakers["Judio"] = () => {
  8416. return makeCharacter(
  8417. "Judio",
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(150, "lb"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/judio/front.svg",
  8425. extra: 1258/1110
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(5 + 6/12, "feet")
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(1000, "feet"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Megamacro",
  8441. height: math.unit(10, "miles")
  8442. },
  8443. ]
  8444. )
  8445. };
  8446. characterMakers["Nomaxice"] = () => {
  8447. return makeCharacter(
  8448. "Nomaxice",
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(68, "kg"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/nomaxice/front.svg",
  8456. extra: 1498/1073 ,
  8457. bottom: 0.075
  8458. }
  8459. },
  8460. foot: {
  8461. height: math.unit(1.1, "feet"),
  8462. name: "Foot",
  8463. image: {
  8464. source: "./media/characters/nomaxice/foot.svg"
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Micro",
  8471. height: math.unit(8, "cm")
  8472. },
  8473. {
  8474. name: "Norm",
  8475. height: math.unit(1.82, "m")
  8476. },
  8477. {
  8478. name: "Norm+",
  8479. height: math.unit(8.8, "feet")
  8480. },
  8481. {
  8482. name: "Big",
  8483. height: math.unit(8, "meters"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Macro",
  8488. height: math.unit(18, "meters")
  8489. },
  8490. {
  8491. name: "Macro+",
  8492. height: math.unit(88, "meters")
  8493. },
  8494. ]
  8495. )
  8496. };
  8497. characterMakers["Dydros"] = () => {
  8498. return makeCharacter(
  8499. "Dydros",
  8500. {
  8501. front: {
  8502. height: math.unit(12, "feet"),
  8503. weight: math.unit(1.5, "tons"),
  8504. name: "Front",
  8505. image: {
  8506. source: "./media/characters/dydros/front.svg",
  8507. extra: 863/800 ,
  8508. bottom: 0.015
  8509. }
  8510. },
  8511. back: {
  8512. height: math.unit(12, "feet"),
  8513. weight: math.unit(1.5, "tons"),
  8514. name: "Back",
  8515. image: {
  8516. source: "./media/characters/dydros/back.svg",
  8517. extra: 900/843 ,
  8518. bottom: 0.005
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(12, "feet"),
  8526. default: true
  8527. },
  8528. ]
  8529. )
  8530. };
  8531. characterMakers["Riggi"] = () => {
  8532. return makeCharacter(
  8533. "Riggi",
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(100, "kg"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/riggi/front.svg",
  8541. extra: 5787/5303
  8542. }
  8543. },
  8544. hyper: {
  8545. height: math.unit(6*5/3, "feet"),
  8546. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8547. name: "Hyper",
  8548. image: {
  8549. source: "./media/characters/riggi/hyper.svg",
  8550. extra: 3595/3485
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Small Macro",
  8557. height: math.unit(50, "feet")
  8558. },
  8559. {
  8560. name: "Default",
  8561. height: math.unit(200, "feet"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Loom",
  8566. height: math.unit(10000, "feet")
  8567. },
  8568. {
  8569. name: "Cruising Altitude",
  8570. height: math.unit(30000, "feet")
  8571. },
  8572. {
  8573. name: "Megamacro",
  8574. height: math.unit(100, "miles")
  8575. },
  8576. {
  8577. name: "Continent Sized",
  8578. height: math.unit(2800, "miles")
  8579. },
  8580. {
  8581. name: "Earth Sized",
  8582. height: math.unit(8000, "miles")
  8583. },
  8584. ]
  8585. )
  8586. };
  8587. characterMakers["Alexi"] = () => {
  8588. return makeCharacter(
  8589. "Alexi",
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(250, "lb"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/alexi/front.svg",
  8597. extra: 3483/3291 ,
  8598. bottom: 0.04
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(250, "lb"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/alexi/back.svg",
  8607. extra: 3533/3356 ,
  8608. bottom: 0.021
  8609. }
  8610. },
  8611. frontTransformed: {
  8612. height: math.unit(12.5, "feet"),
  8613. weight: math.unit(4000, "lb"),
  8614. name: "Front (Transformed)",
  8615. image: {
  8616. source: "./media/characters/alexi/front-transformed.svg",
  8617. extra: 5345/5100 ,
  8618. bottom: 0.03
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(3, "meters"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Minimacro",
  8630. height: math.unit(30, "meters")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(500, "meters")
  8635. },
  8636. {
  8637. name: "Megamacro",
  8638. height: math.unit(9000, "km")
  8639. },
  8640. {
  8641. name: "Teramacro",
  8642. height: math.unit(384000, "km")
  8643. },
  8644. ]
  8645. )
  8646. };
  8647. characterMakers["Kayroo"] = () => {
  8648. return makeCharacter(
  8649. "Kayroo",
  8650. {
  8651. front: {
  8652. height: math.unit(6, "feet"),
  8653. weight: math.unit(150, "lb"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/kayroo/front.svg",
  8657. extra: 1153/1038 ,
  8658. bottom: 0.06
  8659. }
  8660. },
  8661. foot: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(150, "lb"),
  8664. name: "Foot",
  8665. image: {
  8666. source: "./media/characters/kayroo/foot.svg"
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(8, "feet"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Minimacro",
  8678. height: math.unit(250, "feet")
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(2800, "feet")
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(5200, "feet")
  8687. },
  8688. {
  8689. name: "Gigamacro",
  8690. height: math.unit(27000, "feet")
  8691. },
  8692. {
  8693. name: "Omega",
  8694. height: math.unit(45000, "feet")
  8695. },
  8696. ]
  8697. )
  8698. };
  8699. characterMakers["Rhys"] = () => {
  8700. return makeCharacter(
  8701. "Rhys",
  8702. {
  8703. front: {
  8704. height: math.unit(18, "feet"),
  8705. weight: math.unit(5800, "lb"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/rhys/front.svg",
  8709. extra: 3386/3090 ,
  8710. bottom: 0.07
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(18, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Working Size",
  8722. height: math.unit(200, "feet")
  8723. },
  8724. {
  8725. name: "Demolition Size",
  8726. height: math.unit(2000, "feet")
  8727. },
  8728. {
  8729. name: "Maximum Licensed Size",
  8730. height: math.unit(5, "miles")
  8731. },
  8732. {
  8733. name: "Maximum Observed Size",
  8734. height: math.unit(10, "yottameters")
  8735. },
  8736. ]
  8737. )
  8738. };
  8739. characterMakers["Toto"] = () => {
  8740. return makeCharacter(
  8741. "Toto",
  8742. {
  8743. front: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(250, "lb"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/toto/front.svg",
  8749. extra: 527 / 479,
  8750. bottom: 0.05
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Micro",
  8757. height: math.unit(3, "feet")
  8758. },
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(10, "feet")
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(150, "feet"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "Megamacro",
  8770. height: math.unit(1200, "feet")
  8771. },
  8772. ]
  8773. )
  8774. };
  8775. characterMakers["King"] = () => {
  8776. return makeCharacter(
  8777. "King",
  8778. {
  8779. back: {
  8780. height: math.unit(6, "feet"),
  8781. weight: math.unit(150, "lb"),
  8782. name: "Back",
  8783. image: {
  8784. source: "./media/characters/king/back.svg"
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Micro",
  8791. height: math.unit(2, "inches")
  8792. },
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(8, "feet")
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(200, "feet"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Megamacro",
  8804. height: math.unit(50, "miles")
  8805. },
  8806. ]
  8807. )
  8808. };
  8809. characterMakers["Cordite"] = () => {
  8810. return makeCharacter(
  8811. "Cordite",
  8812. {
  8813. anthro: {
  8814. height: math.unit(6 + 5/12, "feet"),
  8815. weight: math.unit(280, "lb"),
  8816. name: "Anthro",
  8817. image: {
  8818. source: "./media/characters/cordite/anthro.svg",
  8819. extra: 1986/1905 ,
  8820. bottom: 0.025
  8821. }
  8822. },
  8823. feral: {
  8824. height: math.unit(2, "feet"),
  8825. weight: math.unit(90, "lb"),
  8826. name: "Feral",
  8827. image: {
  8828. source: "./media/characters/cordite/feral.svg",
  8829. extra: 1260/755 ,
  8830. bottom: 0.05
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Normal",
  8837. height: math.unit(6 + 5/12, "feet"),
  8838. default: true
  8839. },
  8840. ]
  8841. )
  8842. };
  8843. characterMakers["Pianostrong"] = () => {
  8844. return makeCharacter(
  8845. "Pianostrong",
  8846. {
  8847. front: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(150, "lb"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/pianostrong/front.svg",
  8853. extra: 6577/6254 ,
  8854. bottom: 0.02
  8855. }
  8856. },
  8857. side: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(150, "lb"),
  8860. name: "Side",
  8861. image: {
  8862. source: "./media/characters/pianostrong/side.svg",
  8863. extra: 6106/5730
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(150, "lb"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/pianostrong/back.svg",
  8872. extra: 6085/5733 ,
  8873. bottom: 0.01
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(100, "feet")
  8881. },
  8882. {
  8883. name: "Macro+",
  8884. height: math.unit(300, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro++",
  8889. height: math.unit(1000, "feet")
  8890. },
  8891. ]
  8892. )
  8893. };
  8894. characterMakers["Kona"] = () => {
  8895. return makeCharacter(
  8896. "Kona",
  8897. {
  8898. front: {
  8899. height: math.unit(6, "feet"),
  8900. weight: math.unit(150, "lb"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/kona/front.svg",
  8904. extra: 2960/2629 ,
  8905. bottom: 0.005
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(11 + 8/12, "feet")
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(850, "feet"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Macro+",
  8921. height: math.unit(1.5, "km"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Megamacro",
  8926. height: math.unit(80, "miles")
  8927. },
  8928. {
  8929. name: "Gigamacro",
  8930. height: math.unit(3500, "miles")
  8931. },
  8932. ]
  8933. )
  8934. };
  8935. characterMakers["Levi"] = () => {
  8936. return makeCharacter(
  8937. "Levi",
  8938. {
  8939. side: {
  8940. height: math.unit(1.9, "meters"),
  8941. weight: math.unit(326, "kg"),
  8942. name: "Side",
  8943. image: {
  8944. source: "./media/characters/levi/side.svg",
  8945. extra: 1704/1334 ,
  8946. bottom: 0.02
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(1.9, "meters"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(20, "meters")
  8959. },
  8960. {
  8961. name: "Macro+",
  8962. height: math.unit(200, "meters")
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(2, "km")
  8967. },
  8968. {
  8969. name: "Megamacro+",
  8970. height: math.unit(20, "km")
  8971. },
  8972. {
  8973. name: "Gigamacro",
  8974. height: math.unit(2500, "km")
  8975. },
  8976. {
  8977. name: "Gigamacro+",
  8978. height: math.unit(120000, "km")
  8979. },
  8980. {
  8981. name: "Teramacro",
  8982. height: math.unit(7.77e6, "km")
  8983. },
  8984. ]
  8985. )
  8986. };
  8987. characterMakers["BMC"] = () => {
  8988. return makeCharacter(
  8989. "BMC",
  8990. {
  8991. front: {
  8992. height: math.unit(6 + 4/12, "feet"),
  8993. weight: math.unit(188, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/bmc/front.svg",
  8997. extra: 1067/1022 ,
  8998. bottom: 0.047
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Human-sized",
  9005. height: math.unit(6 + 4/12, "feet")
  9006. },
  9007. {
  9008. name: "Small",
  9009. height: math.unit(250, "feet")
  9010. },
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(1250, "feet"),
  9014. default: true
  9015. },
  9016. {
  9017. name: "Good Day",
  9018. height: math.unit(88, "miles")
  9019. },
  9020. {
  9021. name: "Largest Measured Size",
  9022. height: math.unit(11.2e6, "lightyears")
  9023. },
  9024. ]
  9025. )
  9026. };
  9027. characterMakers["Sven the Kaiju"] = () => {
  9028. return makeCharacter(
  9029. "Sven the Kaiju",
  9030. {
  9031. front: {
  9032. height: math.unit(20, "feet"),
  9033. weight: math.unit(2016, "kg"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/sven-the-kaiju/front.svg",
  9037. extra: 1479/1449 ,
  9038. bottom: 0.05
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Fairy",
  9045. height: math.unit(6, "inches")
  9046. },
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(20, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Rampage",
  9054. height: math.unit(200, "feet")
  9055. },
  9056. {
  9057. name: "Archfey Forest Guardian",
  9058. height: math.unit(1, "mile")
  9059. },
  9060. ]
  9061. )
  9062. };
  9063. characterMakers["Marik"] = () => {
  9064. return makeCharacter(
  9065. "Marik",
  9066. {
  9067. front: {
  9068. height: math.unit(4, "meters"),
  9069. weight: math.unit(2, "tons"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/marik/front.svg",
  9073. extra: 1057/1003 ,
  9074. bottom: 0.08
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(4, "meters"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(20, "meters")
  9087. },
  9088. {
  9089. name: "Megamacro",
  9090. height: math.unit(50, "km")
  9091. },
  9092. {
  9093. name: "Gigamacro",
  9094. height: math.unit(100, "km")
  9095. },
  9096. {
  9097. name: "Alpha Macro",
  9098. height: math.unit(7.88e7, "yottameters")
  9099. },
  9100. ]
  9101. )
  9102. };
  9103. characterMakers["Mel"] = () => {
  9104. return makeCharacter(
  9105. "Mel",
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(110, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/mel/front.svg",
  9113. extra: 736/617 ,
  9114. bottom: 0.017
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Pico",
  9121. height: math.unit(3, "pm")
  9122. },
  9123. {
  9124. name: "Nano",
  9125. height: math.unit(3, "nm")
  9126. },
  9127. {
  9128. name: "Micro",
  9129. height: math.unit(0.3, "mm"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Micro+",
  9134. height: math.unit(3, "mm")
  9135. },
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(5 + 10.5/12, "feet")
  9139. },
  9140. ]
  9141. )
  9142. };
  9143. characterMakers["Lykonous"] = () => {
  9144. return makeCharacter(
  9145. "Lykonous",
  9146. {
  9147. kaiju: {
  9148. height: math.unit(1.75, "meters"),
  9149. weight: math.unit(55, "kg"),
  9150. name: "Kaiju",
  9151. image: {
  9152. source: "./media/characters/lykonous/kaiju.svg",
  9153. extra: 1055/946 ,
  9154. bottom: 0.135
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(2.5, "meters"),
  9162. default: true
  9163. },
  9164. {
  9165. name: "Kaiju Dragon",
  9166. height: math.unit(60, "meters")
  9167. },
  9168. {
  9169. name: "Mega Kaiju",
  9170. height: math.unit(120, "km")
  9171. },
  9172. {
  9173. name: "Giga Kaiju",
  9174. height: math.unit(200, "megameters")
  9175. },
  9176. {
  9177. name: "Terra Kaiju",
  9178. height: math.unit(400, "gigameters")
  9179. },
  9180. {
  9181. name: "Kaiju Dragon God",
  9182. height: math.unit(13000, "exaparsecs")
  9183. },
  9184. ]
  9185. )
  9186. };
  9187. characterMakers["Blü"] = () => {
  9188. return makeCharacter(
  9189. "Blü",
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(150, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/blü/front.svg",
  9197. extra: 1883/1564 ,
  9198. bottom: 0.031
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(13, "feet"),
  9206. default: true
  9207. },
  9208. {
  9209. name: "Big Boi",
  9210. height: math.unit(150, "meters")
  9211. },
  9212. {
  9213. name: "Mini Stomper",
  9214. height: math.unit(300, "meters")
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(1000, "meters")
  9219. },
  9220. {
  9221. name: "Megamacro",
  9222. height: math.unit(11000, "meters")
  9223. },
  9224. {
  9225. name: "Gigamacro",
  9226. height: math.unit(11000, "km")
  9227. },
  9228. {
  9229. name: "Teramacro",
  9230. height: math.unit(420000, "km")
  9231. },
  9232. {
  9233. name: "Examacro",
  9234. height: math.unit(120, "parsecs")
  9235. },
  9236. {
  9237. name: "God Tho",
  9238. height: math.unit(98000000000, "parsecs")
  9239. },
  9240. ]
  9241. )
  9242. };
  9243. characterMakers["Scales"] = () => {
  9244. return makeCharacter(
  9245. "Scales",
  9246. {
  9247. taurFront: {
  9248. height: math.unit(6, "feet"),
  9249. weight: math.unit(200, "lb"),
  9250. name: "Taur (Front)",
  9251. image: {
  9252. source: "./media/characters/scales/taur-front.svg",
  9253. extra: 1,
  9254. bottom: 0.05
  9255. }
  9256. },
  9257. taurBack: {
  9258. height: math.unit(6, "feet"),
  9259. weight: math.unit(200, "lb"),
  9260. name: "Taur (Back)",
  9261. image: {
  9262. source: "./media/characters/scales/taur-back.svg",
  9263. extra: 1,
  9264. bottom: 0.08
  9265. }
  9266. },
  9267. anthro: {
  9268. height: math.unit(6*7/12, "feet"),
  9269. weight: math.unit(100, "lb"),
  9270. name: "Anthro",
  9271. image: {
  9272. source: "./media/characters/scales/anthro.svg",
  9273. extra: 1,
  9274. bottom: 0.06
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(12, "feet"),
  9282. default: true
  9283. },
  9284. ]
  9285. )
  9286. };
  9287. characterMakers["Koragos"] = () => {
  9288. return makeCharacter(
  9289. "Koragos",
  9290. {
  9291. front: {
  9292. height: math.unit(6, "feet"),
  9293. weight: math.unit(150, "lb"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/koragos/front.svg",
  9297. extra: 841/794 ,
  9298. bottom: 0.035
  9299. }
  9300. },
  9301. back: {
  9302. height: math.unit(6, "feet"),
  9303. weight: math.unit(150, "lb"),
  9304. name: "Back",
  9305. image: {
  9306. source: "./media/characters/koragos/back.svg",
  9307. extra: 841/810 ,
  9308. bottom: 0.022
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(6 + 11/12, "feet"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(490, "feet")
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(10, "miles")
  9325. },
  9326. {
  9327. name: "Gigamacro",
  9328. height: math.unit(50, "miles")
  9329. },
  9330. ]
  9331. )
  9332. };
  9333. characterMakers["Xylrem"] = () => {
  9334. return makeCharacter(
  9335. "Xylrem",
  9336. {
  9337. front: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(250, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/xylrem/front.svg",
  9343. extra: 3323/3050 ,
  9344. bottom: 0.065
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(4, "feet")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(16, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(2720, "feet")
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(25000, "miles")
  9365. },
  9366. ]
  9367. )
  9368. };
  9369. characterMakers["Ikideru"] = () => {
  9370. return makeCharacter(
  9371. "Ikideru",
  9372. {
  9373. front: {
  9374. height: math.unit(8, "feet"),
  9375. weight: math.unit(250, "kg"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/ikideru/front.svg",
  9379. extra: 930/870 ,
  9380. bottom: 0.087
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(8, "feet"),
  9385. weight: math.unit(250, "kg"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/ikideru/back.svg",
  9389. extra: 919/852 ,
  9390. bottom: 0.055
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Rare",
  9397. height: math.unit(8, "feet"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Playful Loom",
  9402. height: math.unit(80, "feet")
  9403. },
  9404. {
  9405. name: "City Leaner",
  9406. height: math.unit(230, "feet")
  9407. },
  9408. {
  9409. name: "Megamacro",
  9410. height: math.unit(2500, "feet")
  9411. },
  9412. {
  9413. name: "Gigamacro",
  9414. height: math.unit(26400, "feet")
  9415. },
  9416. {
  9417. name: "Tectonic Shifter",
  9418. height: math.unit(1.7, "megameters")
  9419. },
  9420. {
  9421. name: "Planet Carer",
  9422. height: math.unit(21, "megameters")
  9423. },
  9424. {
  9425. name: "God",
  9426. height: math.unit(11157.22, "parsecs")
  9427. },
  9428. ]
  9429. )
  9430. };
  9431. characterMakers["Neo"] = () => {
  9432. return makeCharacter(
  9433. "Neo",
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/neo/front.svg"
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Micro",
  9447. height: math.unit(2, "inches"),
  9448. default: true
  9449. },
  9450. {
  9451. name: "Human Size",
  9452. height: math.unit(5 + 8/12, "feet")
  9453. },
  9454. ]
  9455. )
  9456. };
  9457. characterMakers["Chauncey (Chantz)"] = () => {
  9458. return makeCharacter(
  9459. "Chauncey (Chantz)",
  9460. {
  9461. front: {
  9462. height: math.unit(13 + 10/12, "feet"),
  9463. weight: math.unit(5320, "lb"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/chauncey-chantz/front.svg",
  9467. extra: 1587/1435 ,
  9468. bottom: 0.02
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(13 + 10/12, "feet"),
  9476. default: true
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(45, "feet")
  9481. },
  9482. {
  9483. name: "Megamacro",
  9484. height: math.unit(250, "miles")
  9485. },
  9486. {
  9487. name: "Planetary",
  9488. height: math.unit(10000, "miles")
  9489. },
  9490. {
  9491. name: "Galactic",
  9492. height: math.unit(40000, "parsecs")
  9493. },
  9494. {
  9495. name: "Universal",
  9496. height: math.unit(1, "yottameter")
  9497. },
  9498. ]
  9499. )
  9500. };
  9501. characterMakers["Epifox"] = () => {
  9502. return makeCharacter(
  9503. "Epifox",
  9504. {
  9505. front: {
  9506. height: math.unit(6, "feet"),
  9507. weight: math.unit(150, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/epifox/front.svg",
  9511. extra: 1,
  9512. bottom: 0.075
  9513. }
  9514. },
  9515. },
  9516. [
  9517. {
  9518. name: "Micro",
  9519. height: math.unit(6, "inches")
  9520. },
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(12, "feet"),
  9524. default: true
  9525. },
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(3810, "feet")
  9529. },
  9530. {
  9531. name: "Megamacro",
  9532. height: math.unit(500, "miles")
  9533. },
  9534. ]
  9535. )
  9536. };
  9537. characterMakers["Colin T."] = () => {
  9538. return makeCharacter(
  9539. "Colin T.",
  9540. {
  9541. front: {
  9542. height: math.unit(1.8796, "m"),
  9543. weight: math.unit(230, "lb"),
  9544. name: "Front",
  9545. image: {
  9546. source: "./media/characters/colin-t/front.svg",
  9547. extra: 1272/1193 ,
  9548. bottom: 0.07
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(0.571, "meters")
  9556. },
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(1.8796, "meters"),
  9560. default: true
  9561. },
  9562. {
  9563. name: "Tall",
  9564. height: math.unit(4, "meters")
  9565. },
  9566. {
  9567. name: "Macro",
  9568. height: math.unit(67.241, "meters")
  9569. },
  9570. {
  9571. name: "Megamacro",
  9572. height: math.unit(371.856, "meters")
  9573. },
  9574. {
  9575. name: "Planetary",
  9576. height: math.unit(12631.5689, "km")
  9577. },
  9578. ]
  9579. )
  9580. };
  9581. characterMakers["Matvei"] = () => {
  9582. return makeCharacter(
  9583. "Matvei",
  9584. {
  9585. front: {
  9586. height: math.unit(1.85, "meters"),
  9587. weight: math.unit(80, "kg"),
  9588. name: "Front",
  9589. image: {
  9590. source: "./media/characters/matvei/front.svg",
  9591. extra: 614/594 ,
  9592. bottom: 0.01
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Normal",
  9599. height: math.unit(1.85, "meters"),
  9600. default: true
  9601. },
  9602. ]
  9603. )
  9604. };
  9605. characterMakers["Quincy"] = () => {
  9606. return makeCharacter(
  9607. "Quincy",
  9608. {
  9609. front: {
  9610. height: math.unit(5 + 9/12, "feet"),
  9611. weight: math.unit(70, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/quincy/front.svg",
  9615. extra: 3041/2751
  9616. }
  9617. },
  9618. back: {
  9619. height: math.unit(5 + 9/12, "feet"),
  9620. weight: math.unit(70, "lb"),
  9621. name: "Back",
  9622. image: {
  9623. source: "./media/characters/quincy/back.svg",
  9624. extra: 3041/2751
  9625. }
  9626. },
  9627. flying: {
  9628. height: math.unit(5 + 4/12, "feet"),
  9629. weight: math.unit(70, "lb"),
  9630. name: "Flying",
  9631. image: {
  9632. source: "./media/characters/quincy/flying.svg",
  9633. extra: 1044/930
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Micro",
  9640. height: math.unit(3, "cm")
  9641. },
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 9/12, "feet")
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(200, "meters"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Megamacro",
  9653. height: math.unit(1000, "meters")
  9654. },
  9655. ]
  9656. )
  9657. };
  9658. characterMakers["Vanrel"] = () => {
  9659. return makeCharacter(
  9660. "Vanrel",
  9661. {
  9662. front: {
  9663. height: math.unit(4 + 7/12, "feet"),
  9664. weight: math.unit(150, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/vanrel/front.svg",
  9668. extra: 1,
  9669. bottom: 0.02
  9670. }
  9671. },
  9672. side: {
  9673. height: math.unit(4 + 7/12, "feet"),
  9674. weight: math.unit(150, "lb"),
  9675. name: "Side",
  9676. image: {
  9677. source: "./media/characters/vanrel/side.svg",
  9678. extra: 1,
  9679. bottom: 0.025
  9680. }
  9681. },
  9682. tome: {
  9683. height: math.unit(1.35, "feet"),
  9684. weight: math.unit(10, "lb"),
  9685. name: "Vanrel's Tome",
  9686. rename: true,
  9687. image: {
  9688. source: "./media/characters/vanrel/tome.svg"
  9689. }
  9690. },
  9691. beans: {
  9692. height: math.unit(0.89, "feet"),
  9693. name: "Beans",
  9694. image: {
  9695. source: "./media/characters/vanrel/beans.svg"
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(4 + 7/12, "feet"),
  9703. default: true
  9704. },
  9705. ]
  9706. )
  9707. };
  9708. characterMakers["Kuiper Vanrel"] = () => {
  9709. return makeCharacter(
  9710. "Kuiper Vanrel",
  9711. {
  9712. front: {
  9713. height: math.unit(7 + 5/12, "feet"),
  9714. weight: math.unit(150, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/kuiper-vanrel/front.svg",
  9718. extra: 1118/1068 ,
  9719. bottom: 0.09
  9720. }
  9721. },
  9722. foot: {
  9723. height: math.unit(0.55, "meters"),
  9724. name: "Foot",
  9725. image: {
  9726. source: "./media/characters/kuiper-vanrel/foot.svg",
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(7 + 5/12, "feet"),
  9734. default: true
  9735. },
  9736. ]
  9737. )
  9738. };
  9739. characterMakers["Keset Vanrel"] = () => {
  9740. return makeCharacter(
  9741. "Keset Vanrel",
  9742. {
  9743. front: {
  9744. height: math.unit(8 + 5/12, "feet"),
  9745. weight: math.unit(150, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/keset-vanrel/front.svg",
  9749. extra: 1150/1084 ,
  9750. bottom: 0.05
  9751. }
  9752. },
  9753. hand: {
  9754. height: math.unit(0.6, "meters"),
  9755. name: "Hand",
  9756. image: {
  9757. source: "./media/characters/keset-vanrel/hand.svg"
  9758. }
  9759. },
  9760. foot: {
  9761. height: math.unit(0.94978, "meters"),
  9762. name: "Foot",
  9763. image: {
  9764. source: "./media/characters/keset-vanrel/foot.svg"
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(8 + 5/12, "feet"),
  9772. default: true
  9773. },
  9774. ]
  9775. )
  9776. };
  9777. characterMakers["Neos"] = () => {
  9778. return makeCharacter(
  9779. "Neos",
  9780. {
  9781. front: {
  9782. height: math.unit(6, "feet"),
  9783. weight: math.unit(150, "lb"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/neos/front.svg",
  9787. extra: 1696/992 ,
  9788. bottom: 0.14
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(54, "cm"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(100, "m")
  9801. },
  9802. {
  9803. name: "Megamacro",
  9804. height: math.unit(10, "km")
  9805. },
  9806. {
  9807. name: "Megamacro+",
  9808. height: math.unit(100, "km")
  9809. },
  9810. {
  9811. name: "Gigamacro",
  9812. height: math.unit(100, "Mm")
  9813. },
  9814. {
  9815. name: "Teramacro",
  9816. height: math.unit(100, "Gm")
  9817. },
  9818. {
  9819. name: "Examacro",
  9820. height: math.unit(100, "Em")
  9821. },
  9822. {
  9823. name: "Godly",
  9824. height: math.unit(10000, "Ym")
  9825. },
  9826. {
  9827. name: "Beyond Godly",
  9828. height: math.unit(10000000, "Ym")
  9829. },
  9830. ]
  9831. )
  9832. };
  9833. characterMakers["Sammy Mouse"] = () => {
  9834. return makeCharacter(
  9835. "Sammy Mouse",
  9836. {
  9837. feminine: {
  9838. height: math.unit(5, "feet"),
  9839. weight: math.unit(100, "lb"),
  9840. name: "Feminine",
  9841. image: {
  9842. source: "./media/characters/sammy-mouse/feminine.svg",
  9843. extra: 2526/2425 ,
  9844. bottom: 0.123
  9845. }
  9846. },
  9847. masculine: {
  9848. height: math.unit(5, "feet"),
  9849. weight: math.unit(100, "lb"),
  9850. name: "Masculine",
  9851. image: {
  9852. source: "./media/characters/sammy-mouse/masculine.svg",
  9853. extra: 2526/2425 ,
  9854. bottom: 0.123
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Micro",
  9861. height: math.unit(5, "inches")
  9862. },
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(5, "feet"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(60, "feet")
  9871. },
  9872. ]
  9873. )
  9874. };
  9875. characterMakers["Kole"] = () => {
  9876. return makeCharacter(
  9877. "Kole",
  9878. {
  9879. front: {
  9880. height: math.unit(4, "feet"),
  9881. weight: math.unit(50, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/kole/front.svg",
  9885. extra: 1423/1303 ,
  9886. bottom: 0.025
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(4, "feet"),
  9891. weight: math.unit(50, "lb"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/kole/back.svg",
  9895. extra: 1426/1280 ,
  9896. bottom: 0.02
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(4, "feet"),
  9904. default: true
  9905. },
  9906. ]
  9907. )
  9908. };
  9909. characterMakers["Rufran"] = () => {
  9910. return makeCharacter(
  9911. "Rufran",
  9912. {
  9913. front: {
  9914. height: math.unit(2 + 6/12, "feet"),
  9915. weight: math.unit(20, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/rufran/front.svg",
  9919. extra: 2041/1839 ,
  9920. bottom: 0.055
  9921. }
  9922. },
  9923. back: {
  9924. height: math.unit(2 + 6/12, "feet"),
  9925. weight: math.unit(20, "lb"),
  9926. name: "Back",
  9927. image: {
  9928. source: "./media/characters/rufran/back.svg",
  9929. extra: 2054/1839 ,
  9930. bottom: 0.01
  9931. }
  9932. },
  9933. hand: {
  9934. height: math.unit(0.2166, "meters"),
  9935. name: "Hand",
  9936. image: {
  9937. source: "./media/characters/rufran/hand.svg"
  9938. }
  9939. },
  9940. foot: {
  9941. height: math.unit(0.185, "meters"),
  9942. name: "Foot",
  9943. image: {
  9944. source: "./media/characters/rufran/foot.svg"
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(1, "inch")
  9952. },
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(2 + 6/12, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Big",
  9960. height: math.unit(60, "feet")
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(325, "feet")
  9965. },
  9966. ]
  9967. )
  9968. };
  9969. characterMakers["Chip"] = () => {
  9970. return makeCharacter(
  9971. "Chip",
  9972. {
  9973. front: {
  9974. height: math.unit(0.3, "meters"),
  9975. weight: math.unit(3.5, "kg"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/chip/front.svg",
  9979. extra: 748/674
  9980. }
  9981. },
  9982. },
  9983. [
  9984. {
  9985. name: "Micro",
  9986. height: math.unit(1, "inch"),
  9987. default: true
  9988. },
  9989. ]
  9990. )
  9991. };
  9992. characterMakers["Torvid"] = () => {
  9993. return makeCharacter(
  9994. "Torvid",
  9995. {
  9996. side: {
  9997. height: math.unit(2.3, "meters"),
  9998. weight: math.unit(3500, "lb"),
  9999. name: "Side",
  10000. image: {
  10001. source: "./media/characters/torvid/side.svg",
  10002. extra: 1972/722 ,
  10003. bottom: 0.035
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(2.3, "meters"),
  10011. default: true
  10012. },
  10013. ]
  10014. )
  10015. };
  10016. characterMakers["Susan"] = () => {
  10017. return makeCharacter(
  10018. "Susan",
  10019. {
  10020. front: {
  10021. height: math.unit(2, "meters"),
  10022. weight: math.unit(150.5, "kg"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/susan/front.svg",
  10026. extra: 693/635 ,
  10027. bottom: 0.05
  10028. }
  10029. },
  10030. },
  10031. [
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(505, "miles"),
  10035. default: true
  10036. },
  10037. ]
  10038. )
  10039. };
  10040. characterMakers["Raindrops"] = () => {
  10041. return makeCharacter(
  10042. "Raindrops",
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(150, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/raindrops/front.svg",
  10050. extra: 2655/2461 ,
  10051. bottom: 0.02
  10052. }
  10053. },
  10054. back: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(150, "lb"),
  10057. name: "Back",
  10058. image: {
  10059. source: "./media/characters/raindrops/back.svg",
  10060. extra: 2574/2400 ,
  10061. bottom: 0.03
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(6, "inches")
  10069. },
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(6 + 2/12, "feet")
  10073. },
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(131, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Megamacro",
  10081. height: math.unit(15, "miles")
  10082. },
  10083. {
  10084. name: "Gigamacro",
  10085. height: math.unit(4000, "miles")
  10086. },
  10087. {
  10088. name: "Teramacro",
  10089. height: math.unit(315000, "miles")
  10090. },
  10091. ]
  10092. )
  10093. };
  10094. characterMakers["Tezwa"] = () => {
  10095. return makeCharacter(
  10096. "Tezwa",
  10097. {
  10098. front: {
  10099. height: math.unit(2.794, "meters"),
  10100. weight: math.unit(325, "kg"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/tezwa/front.svg",
  10104. extra: 2083/1906 ,
  10105. bottom: 0.031
  10106. }
  10107. },
  10108. foot: {
  10109. height: math.unit(0.687, "meters"),
  10110. name: "Foot",
  10111. image: {
  10112. source: "./media/characters/tezwa/foot.svg"
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(9 + 2/12, "feet"),
  10120. default: true
  10121. },
  10122. ]
  10123. )
  10124. };
  10125. characterMakers["Typhus"] = () => {
  10126. return makeCharacter(
  10127. "Typhus",
  10128. {
  10129. front: {
  10130. height: math.unit(58, "feet"),
  10131. weight: math.unit(89000, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/typhus/front.svg",
  10135. extra: 816/800 ,
  10136. bottom: 0.065
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(58, "feet"),
  10144. default: true
  10145. },
  10146. ]
  10147. )
  10148. };
  10149. characterMakers["Lyra Von Wulf"] = () => {
  10150. return makeCharacter(
  10151. "Lyra Von Wulf",
  10152. {
  10153. front: {
  10154. height: math.unit(12, "feet"),
  10155. weight: math.unit(6, "tonnes"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/lyra-von-wulf/front.svg",
  10159. extra: 1,
  10160. bottom: 0.10
  10161. }
  10162. },
  10163. frontMecha: {
  10164. height: math.unit(12, "feet"),
  10165. weight: math.unit(12, "tonnes"),
  10166. name: "Front (Mecha)",
  10167. image: {
  10168. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10169. extra: 1,
  10170. bottom: 0.042
  10171. }
  10172. },
  10173. maw: {
  10174. height: math.unit(2.2, "feet"),
  10175. name: "Maw",
  10176. image: {
  10177. source: "./media/characters/lyra-von-wulf/maw.svg"
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(12, "feet"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Classic",
  10189. height: math.unit(50, "feet")
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(500, "feet")
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(1, "mile")
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(400, "miles")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(22000, "miles")
  10206. },
  10207. {
  10208. name: "Solarmacro",
  10209. height: math.unit(8600000, "miles")
  10210. },
  10211. {
  10212. name: "Galactic",
  10213. height: math.unit(1057000, "lightyears")
  10214. },
  10215. ]
  10216. )
  10217. };
  10218. characterMakers["Dixon"] = () => {
  10219. return makeCharacter(
  10220. "Dixon",
  10221. {
  10222. front: {
  10223. height: math.unit(6 + 10/12, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/dixon/front.svg",
  10228. extra: 3361/3209 ,
  10229. bottom: 0.01
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(6 + 10/12, "feet"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Big",
  10241. height: math.unit(12, "meters")
  10242. },
  10243. {
  10244. name: "Macro",
  10245. height: math.unit(500, "meters")
  10246. },
  10247. {
  10248. name: "Megamacro",
  10249. height: math.unit(2, "km")
  10250. },
  10251. ]
  10252. )
  10253. };
  10254. characterMakers["Kauko"] = () => {
  10255. return makeCharacter(
  10256. "Kauko",
  10257. {
  10258. front: {
  10259. height: math.unit(185, "cm"),
  10260. weight: math.unit(68, "kg"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/kauko/front.svg",
  10264. extra: 1455/1421 ,
  10265. bottom: 0.03
  10266. }
  10267. },
  10268. back: {
  10269. height: math.unit(185, "cm"),
  10270. weight: math.unit(68, "kg"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/kauko/back.svg",
  10274. extra: 1455/1421 ,
  10275. bottom: 0.004
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Normal",
  10282. height: math.unit(185, "cm"),
  10283. default: true
  10284. },
  10285. ]
  10286. )
  10287. };
  10288. characterMakers["Varg"] = () => {
  10289. return makeCharacter(
  10290. "Varg",
  10291. {
  10292. front: {
  10293. height: math.unit(6, "feet"),
  10294. weight: math.unit(150, "kg"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/varg/front.svg",
  10298. extra: 1108/1018 ,
  10299. bottom: 0.0375
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(5, "meters")
  10307. },
  10308. {
  10309. name: "Gigamacro",
  10310. height: math.unit(211, "km"),
  10311. default: true
  10312. },
  10313. ]
  10314. )
  10315. };
  10316. characterMakers["Dayza"] = () => {
  10317. return makeCharacter(
  10318. "Dayza",
  10319. {
  10320. front: {
  10321. height: math.unit(7 + 7/12, "feet"),
  10322. weight: math.unit(267, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/dayza/front.svg",
  10326. extra: 1262/1200 ,
  10327. bottom: 0.035
  10328. }
  10329. },
  10330. side: {
  10331. height: math.unit(7 + 7/12, "feet"),
  10332. weight: math.unit(267, "lb"),
  10333. name: "Side",
  10334. image: {
  10335. source: "./media/characters/dayza/side.svg",
  10336. extra: 1295/1245 ,
  10337. bottom: 0.05
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(7 + 7/12, "feet"),
  10342. weight: math.unit(267, "lb"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/dayza/back.svg",
  10346. extra: 1241/1170
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(7 + 7/12, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(155, "feet")
  10359. },
  10360. ]
  10361. )
  10362. };
  10363. characterMakers["Xanthos"] = () => {
  10364. return makeCharacter(
  10365. "Xanthos",
  10366. {
  10367. front: {
  10368. height: math.unit(6 + 5/12, "feet"),
  10369. weight: math.unit(160, "lb"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/xanthos/front.svg",
  10373. extra: 1,
  10374. bottom: 0.04
  10375. }
  10376. },
  10377. back: {
  10378. height: math.unit(6 + 5/12, "feet"),
  10379. weight: math.unit(160, "lb"),
  10380. name: "Back",
  10381. image: {
  10382. source: "./media/characters/xanthos/back.svg",
  10383. extra: 1,
  10384. bottom: 0.03
  10385. }
  10386. },
  10387. hand: {
  10388. height: math.unit(0.928, "feet"),
  10389. name: "Hand",
  10390. image: {
  10391. source: "./media/characters/xanthos/hand.svg"
  10392. }
  10393. },
  10394. foot: {
  10395. height: math.unit(1.286, "feet"),
  10396. name: "Foot",
  10397. image: {
  10398. source: "./media/characters/xanthos/foot.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Normal",
  10405. height: math.unit(6 + 5/12, "feet"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Normal+",
  10410. height: math.unit(6, "meters")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(40, "feet")
  10415. },
  10416. {
  10417. name: "Macro+",
  10418. height: math.unit(200, "meters")
  10419. },
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(20, "km")
  10423. },
  10424. {
  10425. name: "Megamacro+",
  10426. height: math.unit(100, "km")
  10427. },
  10428. ]
  10429. )
  10430. };
  10431. characterMakers["Grynn"] = () => {
  10432. return makeCharacter(
  10433. "Grynn",
  10434. {
  10435. front: {
  10436. height: math.unit(6 + 3/12, "feet"),
  10437. weight: math.unit(215, "lb"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/grynn/front.svg",
  10441. extra: 4627/4209 ,
  10442. bottom: 0.047
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Micro",
  10449. height: math.unit(6, "inches")
  10450. },
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(6 + 3/12, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Big",
  10458. height: math.unit(104, "feet")
  10459. },
  10460. {
  10461. name: "Macro",
  10462. height: math.unit(944, "feet")
  10463. },
  10464. {
  10465. name: "Macro+",
  10466. height: math.unit(9480, "feet")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(78752, "feet")
  10471. },
  10472. {
  10473. name: "Megamacro+",
  10474. height: math.unit(630128, "feet")
  10475. },
  10476. {
  10477. name: "Megamacro++",
  10478. height: math.unit(3150695, "feet")
  10479. },
  10480. ]
  10481. )
  10482. };
  10483. characterMakers["Mocha Aura"] = () => {
  10484. return makeCharacter(
  10485. "Mocha Aura",
  10486. {
  10487. front: {
  10488. height: math.unit(7 + 5/12, "feet"),
  10489. weight: math.unit(450, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/mocha-aura/front.svg",
  10493. extra: 1907/1817 ,
  10494. bottom: 0.04
  10495. }
  10496. },
  10497. back: {
  10498. height: math.unit(7 + 5/12, "feet"),
  10499. weight: math.unit(450, "lb"),
  10500. name: "Back",
  10501. image: {
  10502. source: "./media/characters/mocha-aura/back.svg",
  10503. extra: 1900/1825 ,
  10504. bottom: 0.045
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Nano",
  10511. height: math.unit(1, "nm")
  10512. },
  10513. {
  10514. name: "Megamicro",
  10515. height: math.unit(1, "mm")
  10516. },
  10517. {
  10518. name: "Micro",
  10519. height: math.unit(3, "inches")
  10520. },
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(7 + 5/12, "feet"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(30, "feet")
  10529. },
  10530. {
  10531. name: "Megamacro",
  10532. height: math.unit(3500, "feet")
  10533. },
  10534. {
  10535. name: "Teramacro",
  10536. height: math.unit(500000, "miles")
  10537. },
  10538. {
  10539. name: "Petamacro",
  10540. height: math.unit(50000000000000000 , "parsecs")
  10541. },
  10542. ]
  10543. )
  10544. };
  10545. characterMakers["Ilisha Devya"] = () => {
  10546. return makeCharacter(
  10547. "Ilisha Devya",
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/ilisha-devya/front.svg",
  10555. extra: 1,
  10556. bottom: 0.175
  10557. }
  10558. },
  10559. back: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Back",
  10563. image: {
  10564. source: "./media/characters/ilisha-devya/back.svg",
  10565. extra: 1,
  10566. bottom: 0.015
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Macro",
  10573. height: math.unit(500, "feet"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(10, "miles")
  10579. },
  10580. {
  10581. name: "Gigamacro",
  10582. height: math.unit(100000, "miles")
  10583. },
  10584. {
  10585. name: "Examacro",
  10586. height: math.unit(1e9, "lightyears")
  10587. },
  10588. {
  10589. name: "Omniversal",
  10590. height: math.unit(1e33, "lightyears")
  10591. },
  10592. {
  10593. name: "Beyond Infinite",
  10594. height: math.unit(1e100, "lightyears")
  10595. },
  10596. ]
  10597. )
  10598. };
  10599. characterMakers["Mira"] = () => {
  10600. return makeCharacter(
  10601. "Mira",
  10602. {
  10603. Side: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(150, "lb"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/mira/side.svg",
  10609. extra: 900/799 ,
  10610. bottom: 0.02
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Human Size",
  10617. height: math.unit(6, "feet")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(100, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(10, "miles")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(25000, "miles")
  10631. },
  10632. {
  10633. name: "Teramacro",
  10634. height: math.unit(300, "AU")
  10635. },
  10636. {
  10637. name: "Full Size",
  10638. height: math.unit(4.5e10, "lightyears")
  10639. },
  10640. ]
  10641. )
  10642. };
  10643. characterMakers["Holly"] = () => {
  10644. return makeCharacter(
  10645. "Holly",
  10646. {
  10647. front: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(150, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/holly/front.svg",
  10653. extra: 639/606
  10654. }
  10655. },
  10656. back: {
  10657. height: math.unit(6, "feet"),
  10658. weight: math.unit(150, "lb"),
  10659. name: "Back",
  10660. image: {
  10661. source: "./media/characters/holly/back.svg",
  10662. extra: 623/598
  10663. }
  10664. },
  10665. frontWorking: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(150, "lb"),
  10668. name: "Front (Working)",
  10669. image: {
  10670. source: "./media/characters/holly/front-working.svg",
  10671. extra: 607/577 ,
  10672. bottom: 0.048
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(12 + 3/12, "feet"),
  10680. default: true
  10681. },
  10682. ]
  10683. )
  10684. };
  10685. characterMakers["Porter"] = () => {
  10686. return makeCharacter(
  10687. "Porter",
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/porter/front.svg",
  10695. extra: 1,
  10696. bottom: 0.01
  10697. }
  10698. },
  10699. frontRobes: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Front (Robes)",
  10703. image: {
  10704. source: "./media/characters/porter/front-robes.svg",
  10705. extra: 1.01 ,
  10706. bottom: 0.01
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(11 + 9/12, "feet"),
  10714. default: true
  10715. },
  10716. ]
  10717. )
  10718. };
  10719. characterMakers["Lucy"] = () => {
  10720. return makeCharacter(
  10721. "Lucy",
  10722. {
  10723. legendary: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Legendary",
  10727. image: {
  10728. source: "./media/characters/lucy/legendary.svg",
  10729. extra: 1355/1100 ,
  10730. bottom: 0.045
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Legendary",
  10737. height: math.unit(86882*2, "miles"),
  10738. default: true
  10739. },
  10740. ]
  10741. )
  10742. };
  10743. characterMakers["Drusilla"] = () => {
  10744. return makeCharacter(
  10745. "Drusilla",
  10746. {
  10747. front: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(150, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/drusilla/front.svg",
  10753. extra: 678/635 ,
  10754. bottom: 0.03
  10755. }
  10756. },
  10757. back: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(150, "lb"),
  10760. name: "Back",
  10761. image: {
  10762. source: "./media/characters/drusilla/back.svg",
  10763. extra: 678/635 ,
  10764. bottom: 0.005
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(100, "feet")
  10772. },
  10773. {
  10774. name: "Canon Height",
  10775. height: math.unit(2000, "feet"),
  10776. default: true
  10777. },
  10778. ]
  10779. )
  10780. };
  10781. characterMakers["Renard Thatch"] = () => {
  10782. return makeCharacter(
  10783. "Renard Thatch",
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(180, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/renard-thatch/front.svg",
  10791. extra: 2411/2275 ,
  10792. bottom: 0.01
  10793. }
  10794. },
  10795. frontPosing: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(180, "lb"),
  10798. name: "Front (Posing)",
  10799. image: {
  10800. source: "./media/characters/renard-thatch/front-posing.svg",
  10801. extra: 2381/2261 ,
  10802. bottom: 0.01
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(180, "lb"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/renard-thatch/back.svg",
  10811. extra: 2428/2288
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(3, "inches")
  10819. },
  10820. {
  10821. name: "Default",
  10822. height: math.unit(6, "feet"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(75, "feet")
  10828. },
  10829. ]
  10830. )
  10831. };
  10832. characterMakers["Sekvra"] = () => {
  10833. return makeCharacter(
  10834. "Sekvra",
  10835. {
  10836. front: {
  10837. height: math.unit(1450, "feet"),
  10838. weight: math.unit(1.21e6, "tons"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/sekvra/front.svg",
  10842. extra: 1,
  10843. bottom: 0.03
  10844. }
  10845. },
  10846. frontClothed: {
  10847. height: math.unit(1450, "feet"),
  10848. weight: math.unit(1.21e6, "tons"),
  10849. name: "Front (Clothed)",
  10850. image: {
  10851. source: "./media/characters/sekvra/front-clothed.svg",
  10852. extra: 1,
  10853. bottom: 0.03
  10854. }
  10855. },
  10856. side: {
  10857. height: math.unit(1450, "feet"),
  10858. weight: math.unit(1.21e6, "tons"),
  10859. name: "Side",
  10860. image: {
  10861. source: "./media/characters/sekvra/side.svg",
  10862. extra: 1,
  10863. bottom: 0.025
  10864. }
  10865. },
  10866. back: {
  10867. height: math.unit(1450, "feet"),
  10868. weight: math.unit(1.21e6, "tons"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/sekvra/back.svg",
  10872. extra: 1,
  10873. bottom: 0.005
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Macro",
  10880. height: math.unit(1450, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(15000, "feet")
  10886. },
  10887. ]
  10888. )
  10889. };
  10890. characterMakers["Carmine"] = () => {
  10891. return makeCharacter(
  10892. "Carmine",
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/carmine/front.svg",
  10900. extra: 1,
  10901. bottom: 0.035
  10902. }
  10903. },
  10904. frontArmor: {
  10905. height: math.unit(6, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Front (Armor)",
  10908. image: {
  10909. source: "./media/characters/carmine/front-armor.svg",
  10910. extra: 1,
  10911. bottom: 0.035
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Large",
  10918. height: math.unit(1, "mile")
  10919. },
  10920. {
  10921. name: "Huge",
  10922. height: math.unit(40, "miles"),
  10923. default: true
  10924. },
  10925. {
  10926. name: "Colossal",
  10927. height: math.unit(2500, "miles")
  10928. },
  10929. ]
  10930. )
  10931. };
  10932. characterMakers["Elyssia"] = () => {
  10933. return makeCharacter(
  10934. "Elyssia",
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/elyssia/front.svg",
  10942. extra: 2201/2035 ,
  10943. bottom: 0.05
  10944. }
  10945. },
  10946. frontClothed: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(150, "lb"),
  10949. name: "Front (Clothed)",
  10950. image: {
  10951. source: "./media/characters/elyssia/front-clothed.svg",
  10952. extra: 2201/2035 ,
  10953. bottom: 0.05
  10954. }
  10955. },
  10956. back: {
  10957. height: math.unit(6, "feet"),
  10958. weight: math.unit(150, "lb"),
  10959. name: "Back",
  10960. image: {
  10961. source: "./media/characters/elyssia/back.svg",
  10962. extra: 2201/2035 ,
  10963. bottom: 0.013
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Smaller",
  10970. height: math.unit(150, "feet")
  10971. },
  10972. {
  10973. name: "Standard",
  10974. height: math.unit(1400, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Distracted",
  10979. height: math.unit(15000, "feet")
  10980. },
  10981. ]
  10982. )
  10983. };
  10984. characterMakers["Geno Maxwell"] = () => {
  10985. return makeCharacter(
  10986. "Geno Maxwell",
  10987. {
  10988. front: {
  10989. height: math.unit(7 + 4/12, "feet"),
  10990. weight: math.unit(500, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/geno-maxwell/front.svg",
  10994. extra: 2207/2040 ,
  10995. bottom: 0.015
  10996. }
  10997. },
  10998. },
  10999. [
  11000. {
  11001. name: "Micro",
  11002. height: math.unit(3, "inches")
  11003. },
  11004. {
  11005. name: "Normal",
  11006. height: math.unit(7 + 4/12, "feet"),
  11007. default: true
  11008. },
  11009. {
  11010. name: "Macro",
  11011. height: math.unit(220, "feet")
  11012. },
  11013. {
  11014. name: "Megamacro",
  11015. height: math.unit(11, "miles")
  11016. },
  11017. ]
  11018. )
  11019. };
  11020. characterMakers["Regena Maxwell"] = () => {
  11021. return makeCharacter(
  11022. "Regena Maxwell",
  11023. {
  11024. front: {
  11025. height: math.unit(7 + 4/12, "feet"),
  11026. weight: math.unit(500, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/regena-maxwell/front.svg",
  11030. extra: 3115/2770 ,
  11031. bottom: 0.02
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Normal",
  11038. height: math.unit(7 + 4/12, "feet"),
  11039. default: true
  11040. },
  11041. {
  11042. name: "Macro",
  11043. height: math.unit(220, "feet")
  11044. },
  11045. {
  11046. name: "Megamacro",
  11047. height: math.unit(11, "miles")
  11048. },
  11049. ]
  11050. )
  11051. };
  11052. characterMakers["XGlidingDragonX"] = () => {
  11053. return makeCharacter(
  11054. "XGlidingDragonX",
  11055. {
  11056. front: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(150, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11062. extra: 860/690 ,
  11063. bottom: 0.03
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(1.7, "meters"),
  11071. default: true
  11072. },
  11073. ]
  11074. )
  11075. };
  11076. characterMakers["Quilly"] = () => {
  11077. return makeCharacter(
  11078. "Quilly",
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/quilly/front.svg",
  11086. extra: 890/776
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Gigamacro",
  11093. height: math.unit(404090, "miles"),
  11094. default: true
  11095. },
  11096. ]
  11097. )
  11098. };
  11099. characterMakers["Tempest"] = () => {
  11100. return makeCharacter(
  11101. "Tempest",
  11102. {
  11103. front: {
  11104. height: math.unit(7 + 8/12, "feet"),
  11105. weight: math.unit(350, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/tempest/front.svg",
  11109. extra: 1175/1086 ,
  11110. bottom: 0.02
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(7 + 8/12, "feet"),
  11118. default: true
  11119. },
  11120. ]
  11121. )
  11122. };
  11123. characterMakers["Rodger"] = () => {
  11124. return makeCharacter(
  11125. "Rodger",
  11126. {
  11127. side: {
  11128. height: math.unit(4 + 5/12, "feet"),
  11129. weight: math.unit(80, "lb"),
  11130. name: "Side",
  11131. image: {
  11132. source: "./media/characters/rodger/side.svg",
  11133. extra: 1235/1118
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Micro",
  11140. height: math.unit(1, "inch")
  11141. },
  11142. {
  11143. name: "Normal",
  11144. height: math.unit(4 + 5/12, "feet"),
  11145. default: true
  11146. },
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(120, "feet")
  11150. },
  11151. ]
  11152. )
  11153. };
  11154. characterMakers["Danyel"] = () => {
  11155. return makeCharacter(
  11156. "Danyel",
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/danyel/front.svg",
  11164. extra: 1185/1123 ,
  11165. bottom: 0.05
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Shrunken",
  11172. height: math.unit(0.5, "mm")
  11173. },
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(1, "mm"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Upsized",
  11181. height: math.unit(5 + 5/12, "feet")
  11182. },
  11183. ]
  11184. )
  11185. };
  11186. characterMakers["Vivian Bijoux"] = () => {
  11187. return makeCharacter(
  11188. "Vivian Bijoux",
  11189. {
  11190. front: {
  11191. height: math.unit(5 + 6/12, "feet"),
  11192. weight: math.unit(200, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/vivian-bijoux/front.svg",
  11196. extra: 1,
  11197. bottom: 0.072
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(5 + 6/12, "feet"),
  11205. default: true
  11206. },
  11207. {
  11208. name: "Bad Dream",
  11209. height: math.unit(500, "feet")
  11210. },
  11211. {
  11212. name: "Nightmare",
  11213. height: math.unit(500, "miles")
  11214. },
  11215. ]
  11216. )
  11217. };
  11218. characterMakers["Zeta"] = () => {
  11219. return makeCharacter(
  11220. "Zeta",
  11221. {
  11222. front: {
  11223. height: math.unit(6 + 1/12, "feet"),
  11224. weight: math.unit(260, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/zeta/front.svg",
  11228. extra: 1968/1889 ,
  11229. bottom: 0.06
  11230. }
  11231. },
  11232. back: {
  11233. height: math.unit(6 + 1/12, "feet"),
  11234. weight: math.unit(260, "lb"),
  11235. name: "Back",
  11236. image: {
  11237. source: "./media/characters/zeta/back.svg",
  11238. extra: 1944/1858 ,
  11239. bottom: 0.03
  11240. }
  11241. },
  11242. hand: {
  11243. height: math.unit(1.112, "feet"),
  11244. name: "Hand",
  11245. image: {
  11246. source: "./media/characters/zeta/hand.svg"
  11247. }
  11248. },
  11249. foot: {
  11250. height: math.unit(1.48, "feet"),
  11251. name: "Foot",
  11252. image: {
  11253. source: "./media/characters/zeta/foot.svg"
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Micro",
  11260. height: math.unit(6, "inches")
  11261. },
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(6 + 1/12, "feet"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Macro",
  11269. height: math.unit(20, "feet")
  11270. },
  11271. ]
  11272. )
  11273. };
  11274. characterMakers["Jamie Larsen"] = () => {
  11275. return makeCharacter(
  11276. "Jamie Larsen",
  11277. {
  11278. front: {
  11279. height: math.unit(6, "feet"),
  11280. weight: math.unit(150, "lb"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/jamie-larsen/front.svg",
  11284. extra: 962/933 ,
  11285. bottom: 0.02
  11286. }
  11287. },
  11288. back: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Back",
  11292. image: {
  11293. source: "./media/characters/jamie-larsen/back.svg",
  11294. extra: 997/946
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(28 + 7/12, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro+",
  11306. height: math.unit(180, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(10, "miles")
  11311. },
  11312. {
  11313. name: "Gigamacro",
  11314. height: math.unit(200000, "miles")
  11315. },
  11316. ]
  11317. )
  11318. };
  11319. characterMakers["Vance"] = () => {
  11320. return makeCharacter(
  11321. "Vance",
  11322. {
  11323. front: {
  11324. height: math.unit(6, "feet"),
  11325. weight: math.unit(120, "lb"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/vance/front.svg",
  11329. extra: 1980/1890 ,
  11330. bottom: 0.09
  11331. }
  11332. },
  11333. back: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(120, "lb"),
  11336. name: "Back",
  11337. image: {
  11338. source: "./media/characters/vance/back.svg",
  11339. extra: 2081/1994 ,
  11340. bottom: 0.014
  11341. }
  11342. },
  11343. hand: {
  11344. height: math.unit(0.88, "feet"),
  11345. name: "Hand",
  11346. image: {
  11347. source: "./media/characters/vance/hand.svg"
  11348. }
  11349. },
  11350. foot: {
  11351. height: math.unit(0.64, "feet"),
  11352. name: "Foot",
  11353. image: {
  11354. source: "./media/characters/vance/foot.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Small",
  11361. height: math.unit(90, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(100, "meters")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(15, "miles")
  11371. },
  11372. ]
  11373. )
  11374. };
  11375. characterMakers["Xochitl"] = () => {
  11376. return makeCharacter(
  11377. "Xochitl",
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(180, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/xochitl/front.svg",
  11385. extra: 2297/2261 ,
  11386. bottom: 0.065
  11387. }
  11388. },
  11389. back: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(180, "lb"),
  11392. name: "Back",
  11393. image: {
  11394. source: "./media/characters/xochitl/back.svg",
  11395. extra: 2386/2354 ,
  11396. bottom: 0.01
  11397. }
  11398. },
  11399. foot: {
  11400. height: math.unit(6/5 * 1.15, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Foot",
  11403. image: {
  11404. source: "./media/characters/xochitl/foot.svg"
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(80, "feet")
  11412. },
  11413. {
  11414. name: "Macro+",
  11415. height: math.unit(400, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Gigamacro",
  11420. height: math.unit(80000, "miles")
  11421. },
  11422. {
  11423. name: "Gigamacro+",
  11424. height: math.unit(400000, "miles")
  11425. },
  11426. {
  11427. name: "Teramacro",
  11428. height: math.unit(300, "AU")
  11429. },
  11430. ]
  11431. )
  11432. };
  11433. characterMakers["Vincent"] = () => {
  11434. return makeCharacter(
  11435. "Vincent",
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/vincent/front.svg",
  11443. extra: 1130/1080 ,
  11444. bottom: 0.055
  11445. }
  11446. },
  11447. beak: {
  11448. height: math.unit(6 * 0.1, "feet"),
  11449. name: "Beak",
  11450. image: {
  11451. source: "./media/characters/vincent/beak.svg"
  11452. }
  11453. },
  11454. hand: {
  11455. height: math.unit(6 * 0.85, "feet"),
  11456. weight: math.unit(150, "lb"),
  11457. name: "Hand",
  11458. image: {
  11459. source: "./media/characters/vincent/hand.svg"
  11460. }
  11461. },
  11462. foot: {
  11463. height: math.unit(6 * 0.19, "feet"),
  11464. weight: math.unit(150, "lb"),
  11465. name: "Foot",
  11466. image: {
  11467. source: "./media/characters/vincent/foot.svg"
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Base",
  11474. height: math.unit(6 + 5/12, "feet"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Macro",
  11479. height: math.unit(300, "feet")
  11480. },
  11481. {
  11482. name: "Megamacro",
  11483. height: math.unit(2, "miles")
  11484. },
  11485. {
  11486. name: "Gigamacro",
  11487. height: math.unit(1000, "miles")
  11488. },
  11489. ]
  11490. )
  11491. };
  11492. characterMakers["Jay"] = () => {
  11493. return makeCharacter(
  11494. "Jay",
  11495. {
  11496. front: {
  11497. height: math.unit(6 + 2/12, "feet"),
  11498. weight: math.unit(65, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/jay/front.svg",
  11502. extra: 1510/1430 ,
  11503. bottom: 0.042
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(6 + 2/12, "feet"),
  11508. weight: math.unit(65, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/jay/back.svg",
  11512. extra: 1510/1430 ,
  11513. bottom: 0.025
  11514. }
  11515. },
  11516. clothed: {
  11517. height: math.unit(6 + 2/12, "feet"),
  11518. weight: math.unit(65, "lb"),
  11519. name: "Front (Clothed)",
  11520. image: {
  11521. source: "./media/characters/jay/clothed.svg",
  11522. extra: 744/699 ,
  11523. bottom: 0.043
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Micro",
  11530. height: math.unit(1, "inch")
  11531. },
  11532. {
  11533. name: "Normal",
  11534. height: math.unit(6 + 2/12, "feet"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(1, "mile")
  11540. },
  11541. {
  11542. name: "Megamacro",
  11543. height: math.unit(100, "miles")
  11544. },
  11545. ]
  11546. )
  11547. };
  11548. characterMakers["Coatl"] = () => {
  11549. return makeCharacter(
  11550. "Coatl",
  11551. {
  11552. front: {
  11553. height: math.unit(2, "meters"),
  11554. weight: math.unit(500 , "kg"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/coatl/front.svg",
  11558. extra: 3948 / 3500 ,
  11559. bottom: 0.082
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Normal",
  11566. height: math.unit(4, "meters")
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(100, "meters"),
  11571. default: true
  11572. },
  11573. {
  11574. name: "Macro+",
  11575. height: math.unit(300, "meters")
  11576. },
  11577. {
  11578. name: "Megamacro",
  11579. height: math.unit(3, "gigameters")
  11580. },
  11581. {
  11582. name: "Megamacro+",
  11583. height: math.unit(300, "terameters")
  11584. },
  11585. {
  11586. name: "Megamacro++",
  11587. height: math.unit(3, "lightyears")
  11588. },
  11589. ]
  11590. )
  11591. };
  11592. characterMakers["Shiroryu"] = () => {
  11593. return makeCharacter(
  11594. "Shiroryu",
  11595. {
  11596. front: {
  11597. height: math.unit(6, "feet"),
  11598. weight: math.unit(50, "kg"),
  11599. name: "front",
  11600. image: {
  11601. source: "./media/characters/shiroryu/front.svg",
  11602. extra: 1990/1935
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Mortal Mingling",
  11609. height: math.unit(3, "meters")
  11610. },
  11611. {
  11612. name: "Kaiju-ish",
  11613. height: math.unit(250, "meters")
  11614. },
  11615. {
  11616. name: "Somewhat Godly",
  11617. height: math.unit(400, "km"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Planetary",
  11622. height: math.unit(300, "megameters")
  11623. },
  11624. {
  11625. name: "Galaxy-dwarfing",
  11626. height: math.unit(450, "kiloparsecs")
  11627. },
  11628. {
  11629. name: "Universe Eater",
  11630. height: math.unit(150, "gigaparsecs")
  11631. },
  11632. {
  11633. name: "Almost Immeasurable",
  11634. height: math.unit(1.3e266, "yottaparsecs")
  11635. },
  11636. ]
  11637. )
  11638. };
  11639. characterMakers["Umeko"] = () => {
  11640. return makeCharacter(
  11641. "Umeko",
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(150, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/umeko/front.svg",
  11649. extra: 1,
  11650. bottom: 0.019
  11651. }
  11652. },
  11653. frontArmored: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Front (Armored)",
  11657. image: {
  11658. source: "./media/characters/umeko/front-armored.svg",
  11659. extra: 1,
  11660. bottom: 0.021
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(220, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Guardian Dragon",
  11672. height: math.unit(50, "miles")
  11673. },
  11674. {
  11675. name: "Cosmic",
  11676. height: math.unit(800000, "miles")
  11677. },
  11678. ]
  11679. )
  11680. };
  11681. characterMakers["Cassidy"] = () => {
  11682. return makeCharacter(
  11683. "Cassidy",
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/cassidy/front.svg",
  11691. extra: 1,
  11692. bottom: 0.043
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Canon Height",
  11699. height: math.unit(120, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Macro+",
  11704. height: math.unit(400, "feet")
  11705. },
  11706. {
  11707. name: "Macro++",
  11708. height: math.unit(4000, "feet")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(3, "miles")
  11713. },
  11714. ]
  11715. )
  11716. };
  11717. characterMakers["Isaac"] = () => {
  11718. return makeCharacter(
  11719. "Isaac",
  11720. {
  11721. front: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/isaac/front.svg",
  11727. extra: 896/815 ,
  11728. bottom: 0.11
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Human Size",
  11735. height: math.unit(8, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(400, "feet")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(50, "miles")
  11745. },
  11746. {
  11747. name: "Canon Height",
  11748. height: math.unit(200, "AU")
  11749. },
  11750. ]
  11751. )
  11752. };
  11753. characterMakers["Sleekit"] = () => {
  11754. return makeCharacter(
  11755. "Sleekit",
  11756. {
  11757. front: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(72, "kg"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/sleekit/front.svg",
  11763. extra: 4693/4487 ,
  11764. bottom: 0.012
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Minimum Height",
  11771. height: math.unit(10, "meters")
  11772. },
  11773. {
  11774. name: "Smaller",
  11775. height: math.unit(25, "meters")
  11776. },
  11777. {
  11778. name: "Larger",
  11779. height: math.unit(38, "meters"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Maximum height",
  11784. height: math.unit(100, "meters")
  11785. },
  11786. ]
  11787. )
  11788. };
  11789. characterMakers["Nillia"] = () => {
  11790. return makeCharacter(
  11791. "Nillia",
  11792. {
  11793. front: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/nillia/front.svg",
  11799. extra: 2195/2037 ,
  11800. bottom: 0.005
  11801. }
  11802. },
  11803. back: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(150, "lb"),
  11806. name: "Back",
  11807. image: {
  11808. source: "./media/characters/nillia/back.svg",
  11809. extra: 2195/2037 ,
  11810. bottom: 0.005
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Canon Height",
  11817. height: math.unit(489, "feet"),
  11818. default: true
  11819. }
  11820. ]
  11821. )
  11822. };
  11823. characterMakers["Mesmyriza"] = () => {
  11824. return makeCharacter(
  11825. "Mesmyriza",
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/mesmyriza/front.svg",
  11833. extra: 2067/1784 ,
  11834. bottom: 0.035
  11835. }
  11836. },
  11837. foot: {
  11838. height: math.unit(6/(250/35), "feet"),
  11839. name: "Foot",
  11840. image: {
  11841. source: "./media/characters/mesmyriza/foot.svg"
  11842. }
  11843. },
  11844. },
  11845. [
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(457, "meters"),
  11849. default: true
  11850. },
  11851. {
  11852. name: "Megamacro",
  11853. height: math.unit(8, "megameters")
  11854. },
  11855. ]
  11856. )
  11857. };
  11858. characterMakers["Saudade"] = () => {
  11859. return makeCharacter(
  11860. "Saudade",
  11861. {
  11862. front: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(250, "lb"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/saudade/front.svg",
  11868. extra: 1172/1139 ,
  11869. bottom: 0.035
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Micro",
  11876. height: math.unit(3, "inches")
  11877. },
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(6, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(50, "feet")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(2800, "feet")
  11890. },
  11891. ]
  11892. )
  11893. };
  11894. characterMakers["Keireer"] = () => {
  11895. return makeCharacter(
  11896. "Keireer",
  11897. {
  11898. front: {
  11899. height: math.unit(5 + 4/12, "feet"),
  11900. weight: math.unit(100, "lb"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/keireer/front.svg",
  11904. extra: 716/666 ,
  11905. bottom: 0.05
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(5 + 4/12, "feet"),
  11913. default: true
  11914. },
  11915. ]
  11916. )
  11917. };
  11918. characterMakers["Mirja"] = () => {
  11919. return makeCharacter(
  11920. "Mirja",
  11921. {
  11922. front: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(90, "kg"),
  11925. name: "Front",
  11926. image: {
  11927. source: "./media/characters/mirja/front.svg",
  11928. extra: 1789/1683 ,
  11929. bottom: 0.05
  11930. }
  11931. },
  11932. frontDressed: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(90, "lb"),
  11935. name: "Front (Dressed)",
  11936. image: {
  11937. source: "./media/characters/mirja/front-dressed.svg",
  11938. extra: 1789/1683 ,
  11939. bottom: 0.05
  11940. }
  11941. },
  11942. back: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(90, "lb"),
  11945. name: "Back",
  11946. image: {
  11947. source: "./media/characters/mirja/back.svg",
  11948. extra: 953/917 ,
  11949. bottom: 0.017
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "\"Incognito\"",
  11956. height: math.unit(3, "meters")
  11957. },
  11958. {
  11959. name: "Strolling Size",
  11960. height: math.unit(15, "km")
  11961. },
  11962. {
  11963. name: "Larger Strolling Size",
  11964. height: math.unit(400, "km")
  11965. },
  11966. {
  11967. name: "Preferred Size",
  11968. height: math.unit(5000, "km")
  11969. },
  11970. {
  11971. name: "True Size",
  11972. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11973. default: true
  11974. },
  11975. ]
  11976. )
  11977. };
  11978. characterMakers["Nightraver"] = () => {
  11979. return makeCharacter(
  11980. "Nightraver",
  11981. {
  11982. front: {
  11983. height: math.unit(15, "feet"),
  11984. weight: math.unit(880, "kg"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/nightraver/front.svg",
  11988. extra: 2444/2160 ,
  11989. bottom: 0.027
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(15, "feet"),
  11994. weight: math.unit(880, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/nightraver/back.svg",
  11998. extra: 2309/2180 ,
  11999. bottom: 0.005
  12000. }
  12001. },
  12002. sole: {
  12003. height: math.unit(2.878, "feet"),
  12004. name: "Sole",
  12005. image: {
  12006. source: "./media/characters/nightraver/sole.svg"
  12007. }
  12008. },
  12009. foot: {
  12010. height: math.unit(2.285, "feet"),
  12011. name: "Foot",
  12012. image: {
  12013. source: "./media/characters/nightraver/foot.svg"
  12014. }
  12015. },
  12016. maw: {
  12017. height: math.unit(2.67, "feet"),
  12018. name: "Maw",
  12019. image: {
  12020. source: "./media/characters/nightraver/maw.svg"
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Micro",
  12027. height: math.unit(1, "cm")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(15, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(300, "feet")
  12037. },
  12038. {
  12039. name: "Megamacro",
  12040. height: math.unit(300, "miles")
  12041. },
  12042. {
  12043. name: "Gigamacro",
  12044. height: math.unit(10000, "miles")
  12045. },
  12046. ]
  12047. )
  12048. };
  12049. characterMakers["Arc"] = () => {
  12050. return makeCharacter(
  12051. "Arc",
  12052. {
  12053. side: {
  12054. height: math.unit(2, "inches"),
  12055. weight: math.unit(5, "grams"),
  12056. name: "Side",
  12057. image: {
  12058. source: "./media/characters/arc/side.svg"
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Micro",
  12065. height: math.unit(2, "inches"),
  12066. default: true
  12067. },
  12068. ]
  12069. )
  12070. };
  12071. characterMakers["Nebula Shahar"] = () => {
  12072. return makeCharacter(
  12073. "Nebula Shahar",
  12074. {
  12075. front: {
  12076. height: math.unit(1.1938, "meters"),
  12077. weight: math.unit(54, "kg"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/nebula-shahar/front.svg",
  12081. extra: 1642/1436 ,
  12082. bottom: 0.06
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Megamicro",
  12089. height: math.unit(0.3, "mm")
  12090. },
  12091. {
  12092. name: "Micro",
  12093. height: math.unit(3, "cm")
  12094. },
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(138, "cm"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Macro",
  12102. height: math.unit(30, "m")
  12103. },
  12104. ]
  12105. )
  12106. };
  12107. characterMakers["Shayla"] = () => {
  12108. return makeCharacter(
  12109. "Shayla",
  12110. {
  12111. front: {
  12112. height: math.unit(5.24, "feet"),
  12113. weight: math.unit(150, "lb"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/shayla/front.svg",
  12117. extra: 1512/1414 ,
  12118. bottom: 0.01
  12119. }
  12120. },
  12121. back: {
  12122. height: math.unit(5.24, "feet"),
  12123. weight: math.unit(150, "lb"),
  12124. name: "Back",
  12125. image: {
  12126. source: "./media/characters/shayla/back.svg",
  12127. extra: 1512/1414
  12128. }
  12129. },
  12130. hand: {
  12131. height: math.unit(0.7781496062992126, "feet"),
  12132. name: "Hand",
  12133. image: {
  12134. source: "./media/characters/shayla/hand.svg"
  12135. }
  12136. },
  12137. foot: {
  12138. height: math.unit(1.4206036745406823, "feet"),
  12139. name: "Foot",
  12140. image: {
  12141. source: "./media/characters/shayla/foot.svg"
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Micro",
  12148. height: math.unit(0.32, "feet")
  12149. },
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(5.24, "feet"),
  12153. default: true
  12154. },
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(492.12, "feet")
  12158. },
  12159. {
  12160. name: "Megamacro",
  12161. height: math.unit(186.41, "miles")
  12162. },
  12163. ]
  12164. )
  12165. };
  12166. characterMakers["Pia Jr."] = () => {
  12167. return makeCharacter(
  12168. "Pia Jr.",
  12169. {
  12170. front: {
  12171. height: math.unit(2.2, "m"),
  12172. weight: math.unit(120, "kg"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/pia-jr/front.svg",
  12176. extra: 1000/970 ,
  12177. bottom: 0.035
  12178. }
  12179. },
  12180. hand: {
  12181. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12182. name: "Hand",
  12183. image: {
  12184. source: "./media/characters/pia-jr/hand.svg"
  12185. }
  12186. },
  12187. paw: {
  12188. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12189. name: "Paw",
  12190. image: {
  12191. source: "./media/characters/pia-jr/paw.svg"
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Micro",
  12198. height: math.unit(1.2, "cm")
  12199. },
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(2.2, "m"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(180, "m")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(420, "km")
  12212. },
  12213. ]
  12214. )
  12215. };
  12216. characterMakers["Pia Sr."] = () => {
  12217. return makeCharacter(
  12218. "Pia Sr.",
  12219. {
  12220. front: {
  12221. height: math.unit(2, "m"),
  12222. weight: math.unit(115, "kg"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/pia-sr/front.svg",
  12226. extra: 760/730 ,
  12227. bottom: 0.015
  12228. }
  12229. },
  12230. back: {
  12231. height: math.unit(2, "m"),
  12232. weight: math.unit(115, "kg"),
  12233. name: "Back",
  12234. image: {
  12235. source: "./media/characters/pia-sr/back.svg",
  12236. extra: 760/730 ,
  12237. bottom: 0.01
  12238. }
  12239. },
  12240. hand: {
  12241. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12242. name: "Hand",
  12243. image: {
  12244. source: "./media/characters/pia-sr/hand.svg"
  12245. }
  12246. },
  12247. foot: {
  12248. height: math.unit(1.83, "feet"),
  12249. name: "Foot",
  12250. image: {
  12251. source: "./media/characters/pia-sr/foot.svg"
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Micro",
  12258. height: math.unit(88, "mm")
  12259. },
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(2, "m"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(200, "m")
  12268. },
  12269. {
  12270. name: "Megamacro",
  12271. height: math.unit(420, "km")
  12272. },
  12273. ]
  12274. )
  12275. };
  12276. characterMakers["KIBIBYTE"] = () => {
  12277. return makeCharacter(
  12278. "KIBIBYTE",
  12279. {
  12280. front: {
  12281. height: math.unit(8 + 2/12, "feet"),
  12282. weight: math.unit(300, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/kibibyte/front.svg",
  12286. extra: 2221/2098 ,
  12287. bottom: 0.04
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(8 + 2/12, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Socialable Macro",
  12299. height: math.unit(50, "feet")
  12300. },
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(300, "feet")
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(500, "miles")
  12308. },
  12309. ]
  12310. )
  12311. };
  12312. characterMakers["Felix"] = () => {
  12313. return makeCharacter(
  12314. "Felix",
  12315. {
  12316. front: {
  12317. height: math.unit(6, "feet"),
  12318. weight: math.unit(150, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/felix/front.svg",
  12322. extra: 762/722 ,
  12323. bottom: 0.02
  12324. }
  12325. },
  12326. frontClothed: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Front (Clothed)",
  12330. image: {
  12331. source: "./media/characters/felix/front-clothed.svg",
  12332. extra: 762/722 ,
  12333. bottom: 0.02
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(6 + 8/12, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(2600, "feet")
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(450, "miles")
  12350. },
  12351. ]
  12352. )
  12353. };
  12354. characterMakers["Tobo"] = () => {
  12355. return makeCharacter(
  12356. "Tobo",
  12357. {
  12358. front: {
  12359. height: math.unit(6 + 1/12, "feet"),
  12360. weight: math.unit(250, "lb"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/tobo/front.svg",
  12364. extra: 608/586 ,
  12365. bottom: 0.023
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(6 + 1/12, "feet"),
  12370. weight: math.unit(250, "lb"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/tobo/back.svg",
  12374. extra: 608/586
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Nano",
  12381. height: math.unit(2, "nm")
  12382. },
  12383. {
  12384. name: "Megamicro",
  12385. height: math.unit(0.1, "mm")
  12386. },
  12387. {
  12388. name: "Micro",
  12389. height: math.unit(1, "inch"),
  12390. default: true
  12391. },
  12392. {
  12393. name: "Human-sized",
  12394. height: math.unit(6 + 1/12, "feet")
  12395. },
  12396. {
  12397. name: "Macro",
  12398. height: math.unit(250, "feet")
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(75, "miles")
  12403. },
  12404. {
  12405. name: "Texas-sized",
  12406. height: math.unit(750, "miles")
  12407. },
  12408. {
  12409. name: "Teramacro",
  12410. height: math.unit(50000, "miles")
  12411. },
  12412. ]
  12413. )
  12414. };
  12415. characterMakers["Danny Kapowsky"] = () => {
  12416. return makeCharacter(
  12417. "Danny Kapowsky",
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(269, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/danny-kapowsky/front.svg",
  12425. extra: 766/736 ,
  12426. bottom: 0.044
  12427. }
  12428. },
  12429. back: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(269, "lb"),
  12432. name: "Back",
  12433. image: {
  12434. source: "./media/characters/danny-kapowsky/back.svg",
  12435. extra: 797/760 ,
  12436. bottom: 0.025
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(150, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Macro+",
  12448. height: math.unit(200, "feet")
  12449. },
  12450. {
  12451. name: "Macro++",
  12452. height: math.unit(300, "feet")
  12453. },
  12454. {
  12455. name: "Macro+++",
  12456. height: math.unit(400, "feet")
  12457. },
  12458. ]
  12459. )
  12460. };
  12461. characterMakers["Finn"] = () => {
  12462. return makeCharacter(
  12463. "Finn",
  12464. {
  12465. side: {
  12466. height: math.unit(6, "feet"),
  12467. weight: math.unit(170, "lb"),
  12468. name: "Side",
  12469. image: {
  12470. source: "./media/characters/finn/side.svg",
  12471. extra: 1953/1807 ,
  12472. bottom: 0.057
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Megamacro",
  12479. height: math.unit(14445, "feet"),
  12480. default: true
  12481. },
  12482. ]
  12483. )
  12484. };
  12485. characterMakers["Roy"] = () => {
  12486. return makeCharacter(
  12487. "Roy",
  12488. {
  12489. front: {
  12490. height: math.unit(5 + 6/12, "feet"),
  12491. weight: math.unit(125, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/roy/front.svg",
  12495. extra: 1,
  12496. bottom: 0.11
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(3, "inches"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Normal",
  12508. height: math.unit(5 + 6/12, "feet")
  12509. },
  12510. {
  12511. name: "Lesser Macro",
  12512. height: math.unit(60, "feet")
  12513. },
  12514. {
  12515. name: "Greater Macro",
  12516. height: math.unit(120, "feet")
  12517. },
  12518. ]
  12519. )
  12520. };
  12521. characterMakers["Aevsivs"] = () => {
  12522. return makeCharacter(
  12523. "Aevsivs",
  12524. {
  12525. front: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(100, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/aevsivs/front.svg",
  12531. extra: 1,
  12532. bottom: 0.03
  12533. }
  12534. },
  12535. back: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(100, "lb"),
  12538. name: "Back",
  12539. image: {
  12540. source: "./media/characters/aevsivs/back.svg"
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Micro",
  12547. height: math.unit(2, "inches"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(5, "feet")
  12553. },
  12554. ]
  12555. )
  12556. };
  12557. characterMakers["Hildegard"] = () => {
  12558. return makeCharacter(
  12559. "Hildegard",
  12560. {
  12561. front: {
  12562. height: math.unit(5 + 7/12, "feet"),
  12563. weight: math.unit(159, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/hildegard/front.svg",
  12567. extra: 312/286 ,
  12568. bottom: 0.005
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(5 + 7/12, "feet"),
  12576. default: true
  12577. },
  12578. ]
  12579. )
  12580. };
  12581. characterMakers["Bernard & Wilder"] = () => {
  12582. return makeCharacter(
  12583. "Bernard & Wilder",
  12584. {
  12585. bernard: {
  12586. height: math.unit(2 + 7/12, "feet"),
  12587. weight: math.unit(66, "lb"),
  12588. name: "Bernard",
  12589. rename: true,
  12590. image: {
  12591. source: "./media/characters/bernard-wilder/bernard.svg",
  12592. extra: 192/128 ,
  12593. bottom: 0.05
  12594. }
  12595. },
  12596. wilder: {
  12597. height: math.unit(5 + 8/12, "feet"),
  12598. weight: math.unit(143, "lb"),
  12599. name: "Wilder",
  12600. rename: true,
  12601. image: {
  12602. source: "./media/characters/bernard-wilder/wilder.svg",
  12603. extra: 361/312 ,
  12604. bottom: 0.02
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Normal",
  12611. height: math.unit(2 + 7/12, "feet"),
  12612. default: true
  12613. },
  12614. ]
  12615. )
  12616. };
  12617. characterMakers["Hearth"] = () => {
  12618. return makeCharacter(
  12619. "Hearth",
  12620. {
  12621. anthro: {
  12622. height: math.unit(6 + 1/12, "feet"),
  12623. weight: math.unit(155, "lb"),
  12624. name: "Anthro",
  12625. image: {
  12626. source: "./media/characters/hearth/anthro.svg",
  12627. extra: 260/250 ,
  12628. bottom: 0.02
  12629. }
  12630. },
  12631. feral: {
  12632. height: math.unit(3.78, "feet"),
  12633. weight: math.unit(35, "kg"),
  12634. name: "Feral",
  12635. image: {
  12636. source: "./media/characters/hearth/feral.svg",
  12637. extra: 153/135 ,
  12638. bottom: 0.03
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(6 + 1/12, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. )
  12650. };
  12651. characterMakers["Ingrid"] = () => {
  12652. return makeCharacter(
  12653. "Ingrid",
  12654. {
  12655. front: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(182, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/ingrid/front.svg",
  12661. extra: 294/268 ,
  12662. bottom: 0.027
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Normal",
  12669. height: math.unit(6, "feet"),
  12670. default: true
  12671. },
  12672. ]
  12673. )
  12674. };
  12675. characterMakers["Malgam"] = () => {
  12676. return makeCharacter(
  12677. "Malgam",
  12678. {
  12679. eevee: {
  12680. height: math.unit(2 + 10/12, "feet"),
  12681. weight: math.unit(86, "lb"),
  12682. name: "Malgam",
  12683. image: {
  12684. source: "./media/characters/malgam/eevee.svg",
  12685. extra: 218/180 ,
  12686. bottom: 0.2
  12687. }
  12688. },
  12689. sylveon: {
  12690. height: math.unit(4, "feet"),
  12691. weight: math.unit(101, "lb"),
  12692. name: "Future Malgam",
  12693. rename: true,
  12694. image: {
  12695. source: "./media/characters/malgam/sylveon.svg",
  12696. extra: 371/325 ,
  12697. bottom: 0.015
  12698. }
  12699. },
  12700. gigantamax: {
  12701. height: math.unit(50, "feet"),
  12702. name: "Gigantamax Malgam",
  12703. rename: true,
  12704. image: {
  12705. source: "./media/characters/malgam/gigantamax.svg"
  12706. }
  12707. },
  12708. },
  12709. [
  12710. {
  12711. name: "Normal",
  12712. height: math.unit(2 + 10/12, "feet"),
  12713. default: true
  12714. },
  12715. ]
  12716. )
  12717. };
  12718. characterMakers["Fleur"] = () => {
  12719. return makeCharacter(
  12720. "Fleur",
  12721. {
  12722. front: {
  12723. height: math.unit(5 + 11/12, "feet"),
  12724. weight: math.unit(188, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/fleur/front.svg",
  12728. extra: 309/283 ,
  12729. bottom: 0.007
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(5 + 11/12, "feet"),
  12737. default: true
  12738. },
  12739. ]
  12740. )
  12741. };
  12742. characterMakers["Jude"] = () => {
  12743. return makeCharacter(
  12744. "Jude",
  12745. {
  12746. front: {
  12747. height: math.unit(5 + 4/12, "feet"),
  12748. weight: math.unit(122, "lb"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/jude/front.svg",
  12752. extra: 288/273 ,
  12753. bottom: 0.03
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(5 + 4/12, "feet"),
  12761. default: true
  12762. },
  12763. ]
  12764. )
  12765. };
  12766. characterMakers["Seara"] = () => {
  12767. return makeCharacter(
  12768. "Seara",
  12769. {
  12770. front: {
  12771. height: math.unit(5 + 11/12, "feet"),
  12772. weight: math.unit(190, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/seara/front.svg",
  12776. extra: 1,
  12777. bottom: 0.05
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(5 + 11/12, "feet"),
  12785. default: true
  12786. },
  12787. ]
  12788. )
  12789. };
  12790. characterMakers["Caspian"] = () => {
  12791. return makeCharacter(
  12792. "Caspian",
  12793. {
  12794. front: {
  12795. height: math.unit(16 + 5/12, "feet"),
  12796. weight: math.unit(524, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/caspian/front.svg",
  12800. extra: 1,
  12801. bottom: 0.04
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(16 + 5/12, "feet"),
  12809. default: true
  12810. },
  12811. ]
  12812. )
  12813. };
  12814. characterMakers["Mika"] = () => {
  12815. return makeCharacter(
  12816. "Mika",
  12817. {
  12818. front: {
  12819. height: math.unit(5 + 7/12, "feet"),
  12820. weight: math.unit(170, "lb"),
  12821. name: "Front",
  12822. image: {
  12823. source: "./media/characters/mika/front.svg",
  12824. extra: 1,
  12825. bottom: 0.016
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(5 + 7/12, "feet"),
  12833. default: true
  12834. },
  12835. ]
  12836. )
  12837. };
  12838. characterMakers["Sol"] = () => {
  12839. return makeCharacter(
  12840. "Sol",
  12841. {
  12842. front: {
  12843. height: math.unit(6 + 2/12, "feet"),
  12844. weight: math.unit(268, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/sol/front.svg",
  12848. extra: 247/231 ,
  12849. bottom: 0.05
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(6 + 2/12, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. )
  12861. };
  12862. characterMakers["Umiko"] = () => {
  12863. return makeCharacter(
  12864. "Umiko",
  12865. {
  12866. buizel: {
  12867. height: math.unit(2 + 5/12, "feet"),
  12868. weight: math.unit(87, "lb"),
  12869. name: "Buizel",
  12870. image: {
  12871. source: "./media/characters/umiko/buizel.svg",
  12872. extra: 172/157 ,
  12873. bottom: 0.01
  12874. }
  12875. },
  12876. floatzel: {
  12877. height: math.unit(5 + 9/12, "feet"),
  12878. weight: math.unit(250, "lb"),
  12879. name: "Floatzel",
  12880. image: {
  12881. source: "./media/characters/umiko/floatzel.svg",
  12882. extra: 262/248
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(2 + 5/12, "feet"),
  12890. default: true
  12891. },
  12892. ]
  12893. )
  12894. };
  12895. characterMakers["Iliac"] = () => {
  12896. return makeCharacter(
  12897. "Iliac",
  12898. {
  12899. front: {
  12900. height: math.unit(6 + 2/12, "feet"),
  12901. weight: math.unit(146, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/iliac/front.svg",
  12905. extra: 389/365 ,
  12906. bottom: 0.035
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(6 + 2/12, "feet"),
  12914. default: true
  12915. },
  12916. ]
  12917. )
  12918. };
  12919. characterMakers["Topaz"] = () => {
  12920. return makeCharacter(
  12921. "Topaz",
  12922. {
  12923. front: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(170, "lb"),
  12926. name: "Front",
  12927. image: {
  12928. source: "./media/characters/topaz/front.svg",
  12929. extra: 317/303 ,
  12930. bottom: 0.055
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(6, "feet"),
  12938. default: true
  12939. },
  12940. ]
  12941. )
  12942. };
  12943. characterMakers["Gabriel"] = () => {
  12944. return makeCharacter(
  12945. "Gabriel",
  12946. {
  12947. front: {
  12948. height: math.unit(5 + 11/12, "feet"),
  12949. weight: math.unit(144, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/gabriel/front.svg",
  12953. extra: 285/262 ,
  12954. bottom: 0.004
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(5 + 11/12, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. )
  12966. };
  12967. characterMakers["Tempest (Suicune)"] = () => {
  12968. return makeCharacter(
  12969. "Tempest (Suicune)",
  12970. {
  12971. side: {
  12972. height: math.unit(6 + 5/12, "feet"),
  12973. weight: math.unit(300, "lb"),
  12974. name: "Side",
  12975. image: {
  12976. source: "./media/characters/tempest-suicune/side.svg",
  12977. extra: 195/154 ,
  12978. bottom: 0.04
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(6 + 5/12, "feet"),
  12986. default: true
  12987. },
  12988. ]
  12989. )
  12990. };
  12991. characterMakers["Vulcan"] = () => {
  12992. return makeCharacter(
  12993. "Vulcan",
  12994. {
  12995. front: {
  12996. height: math.unit(7 + 2/12, "feet"),
  12997. weight: math.unit(322, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/vulcan/front.svg",
  13001. extra: 154/147 ,
  13002. bottom: 0.04
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(7 + 2/12, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. )
  13014. };
  13015. characterMakers["Gault"] = () => {
  13016. return makeCharacter(
  13017. "Gault",
  13018. {
  13019. front: {
  13020. height: math.unit(5 + 10/12, "feet"),
  13021. weight: math.unit(264, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/gault/front.svg",
  13025. extra: 161/140 ,
  13026. bottom: 0.028
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(5 + 10/12, "feet"),
  13034. default: true
  13035. },
  13036. ]
  13037. )
  13038. };
  13039. characterMakers["Shard"] = () => {
  13040. return makeCharacter(
  13041. "Shard",
  13042. {
  13043. front: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/shard/front.svg",
  13049. extra: 273/238 ,
  13050. bottom: 0.02
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(3 + 6/12, "feet"),
  13058. default: true
  13059. },
  13060. ]
  13061. )
  13062. };
  13063. characterMakers["Ashe"] = () => {
  13064. return makeCharacter(
  13065. "Ashe",
  13066. {
  13067. front: {
  13068. height: math.unit(5 + 11/12, "feet"),
  13069. weight: math.unit(146, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/ashe/front.svg",
  13073. extra: 400/373 ,
  13074. bottom: 0.01
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(5 + 11/12, "feet"),
  13082. default: true
  13083. },
  13084. ]
  13085. )
  13086. };
  13087. characterMakers["Beatrix"] = () => {
  13088. return makeCharacter(
  13089. "Beatrix",
  13090. {
  13091. front: {
  13092. height: math.unit(5 + 5/12, "feet"),
  13093. weight: math.unit(135, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/beatrix/front.svg",
  13097. extra: 392/379 ,
  13098. bottom: 0.01
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(6, "feet"),
  13106. default: true
  13107. },
  13108. ]
  13109. )
  13110. };
  13111. characterMakers["Ignatius"] = () => {
  13112. return makeCharacter(
  13113. "Ignatius",
  13114. {
  13115. front: {
  13116. height: math.unit(6, "feet"),
  13117. weight: math.unit(150, "lb"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/ignatius/front.svg",
  13121. extra: 245/222 ,
  13122. bottom: 0.01
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(5 + 5/12, "feet"),
  13130. default: true
  13131. },
  13132. ]
  13133. )
  13134. };
  13135. characterMakers["Mei Li"] = () => {
  13136. return makeCharacter(
  13137. "Mei Li",
  13138. {
  13139. front: {
  13140. height: math.unit(6 + 2/12, "feet"),
  13141. weight: math.unit(138, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/mei-li/front.svg",
  13145. extra: 237/229 ,
  13146. bottom: 0.03
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(6 + 2/12, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. )
  13158. };
  13159. characterMakers["Puru"] = () => {
  13160. return makeCharacter(
  13161. "Puru",
  13162. {
  13163. front: {
  13164. height: math.unit(2 + 4/12, "feet"),
  13165. weight: math.unit(62, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/puru/front.svg",
  13169. extra: 206/149 ,
  13170. bottom: 0.06
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(2 + 4/12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. )
  13182. };
  13183. characterMakers["Kee"] = () => {
  13184. return makeCharacter(
  13185. "Kee",
  13186. {
  13187. taur: {
  13188. height: math.unit(11, "feet"),
  13189. weight: math.unit(500, "lb"),
  13190. name: "Taur",
  13191. image: {
  13192. source: "./media/characters/kee/taur.svg",
  13193. extra: 1,
  13194. bottom: 0.04
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(11, "feet"),
  13202. default: true
  13203. },
  13204. ]
  13205. )
  13206. };
  13207. characterMakers["Cobalt (Dracha)"] = () => {
  13208. return makeCharacter(
  13209. "Cobalt (Dracha)",
  13210. {
  13211. anthro: {
  13212. height: math.unit(7, "feet"),
  13213. weight: math.unit(190, "lb"),
  13214. name: "Anthro",
  13215. image: {
  13216. source: "./media/characters/cobalt-dracha/anthro.svg",
  13217. extra: 231/225 ,
  13218. bottom: 0.04
  13219. }
  13220. },
  13221. feral: {
  13222. height: math.unit(9 + 7/12, "feet"),
  13223. weight: math.unit(294, "lb"),
  13224. name: "Feral",
  13225. image: {
  13226. source: "./media/characters/cobalt-dracha/feral.svg",
  13227. extra: 692/633 ,
  13228. bottom: 0.05
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(7, "feet"),
  13236. default: true
  13237. },
  13238. ]
  13239. )
  13240. };
  13241. characterMakers["Java"] = () => {
  13242. return makeCharacter(
  13243. "Java",
  13244. {
  13245. fallen: {
  13246. height: math.unit(11 + 8/12, "feet"),
  13247. weight: math.unit(485, "lb"),
  13248. name: "Java (Fallen)",
  13249. rename: true,
  13250. image: {
  13251. source: "./media/characters/java/fallen.svg",
  13252. extra: 226/208 ,
  13253. bottom: 0.005
  13254. }
  13255. },
  13256. godkin: {
  13257. height: math.unit(10 + 6/12, "feet"),
  13258. weight: math.unit(328, "lb"),
  13259. name: "Java (Godkin)",
  13260. rename: true,
  13261. image: {
  13262. source: "./media/characters/java/godkin.svg",
  13263. extra: 270/262 ,
  13264. bottom: 0.02
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(11 + 8/12, "feet"),
  13272. default: true
  13273. },
  13274. ]
  13275. )
  13276. };
  13277. characterMakers["Skoll"] = () => {
  13278. return makeCharacter(
  13279. "Skoll",
  13280. {
  13281. front: {
  13282. height: math.unit(7 + 8/12, "feet"),
  13283. weight: math.unit(320, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/skoll/front.svg",
  13287. extra: 232/220 ,
  13288. bottom: 0.02
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(7 + 8/12, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. )
  13300. };
  13301. characterMakers["Purna"] = () => {
  13302. return makeCharacter(
  13303. "Purna",
  13304. {
  13305. front: {
  13306. height: math.unit(5 + 9/12, "feet"),
  13307. weight: math.unit(170, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/purna/front.svg",
  13311. extra: 239/229 ,
  13312. bottom: 0.01
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(5 + 9/12, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. )
  13324. };
  13325. characterMakers["Kuva"] = () => {
  13326. return makeCharacter(
  13327. "Kuva",
  13328. {
  13329. front: {
  13330. height: math.unit(5 + 9/12, "feet"),
  13331. weight: math.unit(142, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/kuva/front.svg",
  13335. extra: 281/271 ,
  13336. bottom: 0.006
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(5 + 9/12, "feet"),
  13344. default: true
  13345. },
  13346. ]
  13347. )
  13348. };
  13349. characterMakers["Embra"] = () => {
  13350. return makeCharacter(
  13351. "Embra",
  13352. {
  13353. anthro: {
  13354. height: math.unit(9 + 2/12, "feet"),
  13355. weight: math.unit(270, "lb"),
  13356. name: "Anthro",
  13357. image: {
  13358. source: "./media/characters/embra/anthro.svg",
  13359. extra: 200/187 ,
  13360. bottom: 0.02
  13361. }
  13362. },
  13363. feral: {
  13364. height: math.unit(18 + 8/12, "feet"),
  13365. weight: math.unit(576, "lb"),
  13366. name: "Feral",
  13367. image: {
  13368. source: "./media/characters/embra/feral.svg",
  13369. extra: 152/137 ,
  13370. bottom: 0.037
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(9 + 2/12, "feet"),
  13378. default: true
  13379. },
  13380. ]
  13381. )
  13382. };
  13383. characterMakers["Grottos"] = () => {
  13384. return makeCharacter(
  13385. "Grottos",
  13386. {
  13387. anthro: {
  13388. height: math.unit(10 + 9/12, "feet"),
  13389. weight: math.unit(224, "lb"),
  13390. name: "Anthro",
  13391. image: {
  13392. source: "./media/characters/grottos/anthro.svg",
  13393. extra: 350/332 ,
  13394. bottom: 0.045
  13395. }
  13396. },
  13397. feral: {
  13398. height: math.unit(20 + 7/12, "feet"),
  13399. weight: math.unit(629, "lb"),
  13400. name: "Feral",
  13401. image: {
  13402. source: "./media/characters/grottos/feral.svg",
  13403. extra: 207/190 ,
  13404. bottom: 0.05
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(10 + 9/12, "feet"),
  13412. default: true
  13413. },
  13414. ]
  13415. )
  13416. };
  13417. characterMakers["Frifna"] = () => {
  13418. return makeCharacter(
  13419. "Frifna",
  13420. {
  13421. anthro: {
  13422. height: math.unit(9 + 6/12, "feet"),
  13423. weight: math.unit(298, "lb"),
  13424. name: "Anthro",
  13425. image: {
  13426. source: "./media/characters/frifna/anthro.svg",
  13427. extra: 282/269 ,
  13428. bottom: 0.015
  13429. }
  13430. },
  13431. feral: {
  13432. height: math.unit(16 + 2/12, "feet"),
  13433. weight: math.unit(624, "lb"),
  13434. name: "Feral",
  13435. image: {
  13436. source: "./media/characters/frifna/feral.svg"
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Normal",
  13443. height: math.unit(9 + 6/12, "feet"),
  13444. default: true
  13445. },
  13446. ]
  13447. )
  13448. };
  13449. characterMakers["Elise"] = () => {
  13450. return makeCharacter(
  13451. "Elise",
  13452. {
  13453. front: {
  13454. height: math.unit(6 + 2/12, "feet"),
  13455. weight: math.unit(168, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/elise/front.svg",
  13459. extra: 276/271
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(6 + 2/12, "feet"),
  13467. default: true
  13468. },
  13469. ]
  13470. )
  13471. };
  13472. characterMakers["Glade"] = () => {
  13473. return makeCharacter(
  13474. "Glade",
  13475. {
  13476. front: {
  13477. height: math.unit(5 + 10/12, "feet"),
  13478. weight: math.unit(210, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/glade/front.svg",
  13482. extra: 258/247 ,
  13483. bottom: 0.008
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Normal",
  13490. height: math.unit(5 + 10/12, "feet"),
  13491. default: true
  13492. },
  13493. ]
  13494. )
  13495. };
  13496. characterMakers["Rina"] = () => {
  13497. return makeCharacter(
  13498. "Rina",
  13499. {
  13500. front: {
  13501. height: math.unit(5 + 10/12, "feet"),
  13502. weight: math.unit(129, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/rina/front.svg",
  13506. extra: 266/255 ,
  13507. bottom: 0.005
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(5 + 10/12, "feet"),
  13515. default: true
  13516. },
  13517. ]
  13518. )
  13519. };
  13520. characterMakers["Veronica"] = () => {
  13521. return makeCharacter(
  13522. "Veronica",
  13523. {
  13524. front: {
  13525. height: math.unit(6 + 1/12, "feet"),
  13526. weight: math.unit(192, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/veronica/front.svg",
  13530. extra: 319/309 ,
  13531. bottom: 0.005
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(6 + 1/12, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. )
  13543. };
  13544. characterMakers["Braxton"] = () => {
  13545. return makeCharacter(
  13546. "Braxton",
  13547. {
  13548. front: {
  13549. height: math.unit(9 + 3/12, "feet"),
  13550. weight: math.unit(1100, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/braxton/front.svg",
  13554. extra: 1057/984 ,
  13555. bottom: 0.05
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Normal",
  13562. height: math.unit(9 + 3/12, "feet")
  13563. },
  13564. {
  13565. name: "Giant",
  13566. height: math.unit(300, "feet"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Macro",
  13571. height: math.unit(700, "feet")
  13572. },
  13573. {
  13574. name: "Megamacro",
  13575. height: math.unit(6000, "feet")
  13576. },
  13577. ]
  13578. )
  13579. };
  13580. characterMakers["Blue Feyonics"] = () => {
  13581. return makeCharacter(
  13582. "Blue Feyonics",
  13583. {
  13584. front: {
  13585. height: math.unit(6 + 7/12, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/blue-feyonics/front.svg",
  13590. extra: 1403/1306 ,
  13591. bottom: 0.047
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(6 + 7/12, "feet"),
  13599. default: true
  13600. },
  13601. ]
  13602. )
  13603. };
  13604. characterMakers["Maxwell"] = () => {
  13605. return makeCharacter(
  13606. "Maxwell",
  13607. {
  13608. front: {
  13609. height: math.unit(1.8, "meters"),
  13610. weight: math.unit(60, "kg"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/maxwell/front.svg",
  13614. extra: 2060/1873
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Micro",
  13621. height: math.unit(1, "mm")
  13622. },
  13623. {
  13624. name: "Normal",
  13625. height: math.unit(1.8, "meter"),
  13626. default: true
  13627. },
  13628. {
  13629. name: "Macro",
  13630. height: math.unit(30, "meters")
  13631. },
  13632. {
  13633. name: "Megamacro",
  13634. height: math.unit(10, "km")
  13635. },
  13636. ]
  13637. )
  13638. };
  13639. characterMakers["Jack"] = () => {
  13640. return makeCharacter(
  13641. "Jack",
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/jack/front.svg",
  13649. extra: 1754/1640,
  13650. bottom: 0.01
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(80000, "feet"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Max size",
  13662. height: math.unit(10, "lightyears")
  13663. },
  13664. ]
  13665. )
  13666. };
  13667. characterMakers["Cafat"] = () => {
  13668. return makeCharacter(
  13669. "Cafat",
  13670. {
  13671. upright: {
  13672. height: math.unit(7, "feet"),
  13673. weight: math.unit(170, "lb"),
  13674. name: "Upright",
  13675. image: {
  13676. source: "./media/characters/cafat/upright.svg",
  13677. bottom: 0.01
  13678. }
  13679. },
  13680. uprightFull: {
  13681. height: math.unit(7, "feet"),
  13682. weight: math.unit(170, "lb"),
  13683. name: "Upright (Full)",
  13684. image: {
  13685. source: "./media/characters/cafat/upright-full.svg",
  13686. bottom: 0.01
  13687. }
  13688. },
  13689. side: {
  13690. height: math.unit(5, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Side",
  13693. image: {
  13694. source: "./media/characters/cafat/side.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Small",
  13701. height: math.unit(7, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Large",
  13706. height: math.unit(15.5, "feet")
  13707. },
  13708. ]
  13709. )
  13710. };
  13711. characterMakers["Verin Raharra"] = () => {
  13712. return makeCharacter(
  13713. "Verin Raharra",
  13714. {
  13715. front: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/verin-raharra/front.svg",
  13721. extra: 5019/4835,
  13722. bottom: 0.023
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Normal",
  13729. height: math.unit(7 + 5/12, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Upsized",
  13734. height: math.unit(20, "feet")
  13735. },
  13736. ]
  13737. )
  13738. };
  13739. characterMakers["Nakata"] = () => {
  13740. return makeCharacter(
  13741. "Nakata",
  13742. {
  13743. front: {
  13744. height: math.unit(7, "feet"),
  13745. weight: math.unit(230, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/nakata/front.svg",
  13749. extra: 1.005,
  13750. bottom: 0.01
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(7, "feet"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Big",
  13762. height: math.unit(14, "feet")
  13763. },
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(400, "feet")
  13767. },
  13768. ]
  13769. )
  13770. };
  13771. characterMakers["Lily"] = () => {
  13772. return makeCharacter(
  13773. "Lily",
  13774. {
  13775. front: {
  13776. height: math.unit(4.91, "feet"),
  13777. weight: math.unit(100, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/lily/front.svg",
  13781. extra: 1585/1415,
  13782. bottom: 0.02
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(4.91, "feet"),
  13790. default: true
  13791. },
  13792. ]
  13793. )
  13794. };
  13795. characterMakers["Sheila"] = () => {
  13796. return makeCharacter(
  13797. "Sheila",
  13798. {
  13799. laying: {
  13800. height: math.unit(4 + 4/12, "feet"),
  13801. weight: math.unit(600, "lb"),
  13802. name: "Laying",
  13803. image: {
  13804. source: "./media/characters/sheila/laying.svg",
  13805. extra: 1333/1265,
  13806. bottom: 0.16
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(4 + 4/12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. )
  13818. };
  13819. characterMakers["Sax"] = () => {
  13820. return makeCharacter(
  13821. "Sax",
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(190, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/sax/front.svg",
  13829. extra: 1187/973,
  13830. bottom: 0.042
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Micro",
  13837. height: math.unit(4, "inches"),
  13838. default: true
  13839. },
  13840. ]
  13841. )
  13842. };
  13843. characterMakers["Pandora"] = () => {
  13844. return makeCharacter(
  13845. "Pandora",
  13846. {
  13847. front: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/pandora/front.svg",
  13853. extra: 2720/2556,
  13854. bottom: 0.015
  13855. }
  13856. },
  13857. back: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Back",
  13861. image: {
  13862. source: "./media/characters/pandora/back.svg",
  13863. extra: 2720/2556,
  13864. bottom: 0.01
  13865. }
  13866. },
  13867. beans: {
  13868. height: math.unit(6/8, "feet"),
  13869. name: "Beans",
  13870. image: {
  13871. source: "./media/characters/pandora/beans.svg"
  13872. }
  13873. },
  13874. skirt: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Skirt",
  13878. image: {
  13879. source: "./media/characters/pandora/skirt.svg",
  13880. extra: 1622/1525,
  13881. bottom: 0.015
  13882. }
  13883. },
  13884. hoodie: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(150, "lb"),
  13887. name: "Hoodie",
  13888. image: {
  13889. source: "./media/characters/pandora/hoodie.svg",
  13890. extra: 1622/1525,
  13891. bottom: 0.015
  13892. }
  13893. },
  13894. casual: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Casual",
  13898. image: {
  13899. source: "./media/characters/pandora/casual.svg",
  13900. extra: 1622/1525,
  13901. bottom: 0.015
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(6, "feet")
  13909. },
  13910. {
  13911. name: "Big Steppy",
  13912. height: math.unit(1, "km"),
  13913. default: true
  13914. },
  13915. ]
  13916. )
  13917. };
  13918. characterMakers["Venio Darcony"] = () => {
  13919. return makeCharacter(
  13920. "Venio Darcony",
  13921. {
  13922. side: {
  13923. height: math.unit(10, "feet"),
  13924. weight: math.unit(800, "kg"),
  13925. name: "Side",
  13926. image: {
  13927. source: "./media/characters/venio-darcony/side.svg",
  13928. extra: 1373/1003,
  13929. bottom: 0.037
  13930. }
  13931. },
  13932. front: {
  13933. height: math.unit(19, "feet"),
  13934. weight: math.unit(800, "kg"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/venio-darcony/front.svg"
  13938. }
  13939. },
  13940. back: {
  13941. height: math.unit(19, "feet"),
  13942. weight: math.unit(800, "kg"),
  13943. name: "Back",
  13944. image: {
  13945. source: "./media/characters/venio-darcony/back.svg"
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(10, "feet")
  13953. },
  13954. {
  13955. name: "Macro",
  13956. height: math.unit(130, "feet"),
  13957. default: true
  13958. },
  13959. {
  13960. name: "Macro+",
  13961. height: math.unit(240, "feet")
  13962. },
  13963. ]
  13964. )
  13965. };
  13966. characterMakers["Veski"] = () => {
  13967. return makeCharacter(
  13968. "Veski",
  13969. {
  13970. front: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(150, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/veski/front.svg",
  13976. extra: 1299/1225,
  13977. bottom: 0.04
  13978. }
  13979. },
  13980. back: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Back",
  13984. image: {
  13985. source: "./media/characters/veski/back.svg",
  13986. extra: 1299/1225,
  13987. bottom: 0.008
  13988. }
  13989. },
  13990. maw: {
  13991. height: math.unit(1.5 * 1.21, "feet"),
  13992. name: "Maw",
  13993. image: {
  13994. source: "./media/characters/veski/maw.svg"
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(2, "km"),
  14002. default: true
  14003. },
  14004. ]
  14005. )
  14006. };
  14007. characterMakers["Isabelle"] = () => {
  14008. return makeCharacter(
  14009. "Isabelle",
  14010. {
  14011. front: {
  14012. height: math.unit(5 + 7/12, "feet"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/isabelle/front.svg",
  14016. extra: 2130/1976,
  14017. bottom: 0.05
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Supermicro",
  14024. height: math.unit(10, "micrometers")
  14025. },
  14026. {
  14027. name: "Micro",
  14028. height: math.unit(1, "inch")
  14029. },
  14030. {
  14031. name: "Tiny",
  14032. height: math.unit(5, "inches")
  14033. },
  14034. {
  14035. name: "Standard",
  14036. height: math.unit(5 + 7/12, "inches")
  14037. },
  14038. {
  14039. name: "Macro",
  14040. height: math.unit(80, "meters"),
  14041. default: true
  14042. },
  14043. {
  14044. name: "Megamacro",
  14045. height: math.unit(250, "meters")
  14046. },
  14047. {
  14048. name: "Gigamacro",
  14049. height: math.unit(5, "km")
  14050. },
  14051. {
  14052. name: "Cosmic",
  14053. height: math.unit(2.5e6, "miles")
  14054. },
  14055. ]
  14056. )
  14057. };
  14058. characterMakers["Hanzo"] = () => {
  14059. return makeCharacter(
  14060. "Hanzo",
  14061. {
  14062. front: {
  14063. height: math.unit(6, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/hanzo/front.svg",
  14068. extra: 374/344,
  14069. bottom: 0.02
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(8, "feet"),
  14077. default: true
  14078. },
  14079. ]
  14080. )
  14081. };
  14082. characterMakers["Anna"] = () => {
  14083. return makeCharacter(
  14084. "Anna",
  14085. {
  14086. front: {
  14087. height: math.unit(7, "feet"),
  14088. weight: math.unit(130, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/anna/front.svg",
  14092. extra: 169/145,
  14093. bottom: 0.06
  14094. }
  14095. },
  14096. full: {
  14097. height: math.unit(4.96, "feet"),
  14098. weight: math.unit(220, "lb"),
  14099. name: "Full",
  14100. image: {
  14101. source: "./media/characters/anna/full.svg",
  14102. extra: 138/114,
  14103. bottom: 0.15
  14104. }
  14105. },
  14106. tongue: {
  14107. height: math.unit(2.53, "feet"),
  14108. name: "Tongue",
  14109. image: {
  14110. source: "./media/characters/anna/tongue.svg"
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Normal",
  14117. height: math.unit(7, "feet"),
  14118. default: true
  14119. },
  14120. ]
  14121. )
  14122. };
  14123. characterMakers["Ian Corvid"] = () => {
  14124. return makeCharacter(
  14125. "Ian Corvid",
  14126. {
  14127. front: {
  14128. height: math.unit(7, "feet"),
  14129. weight: math.unit(150, "lb"),
  14130. name: "Front",
  14131. image: {
  14132. source: "./media/characters/ian-corvid/front.svg",
  14133. extra: 150/142,
  14134. bottom: 0.02
  14135. }
  14136. },
  14137. back: {
  14138. height: math.unit(7, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Back",
  14141. image: {
  14142. source: "./media/characters/ian-corvid/back.svg",
  14143. extra: 150/143,
  14144. bottom: 0.01
  14145. }
  14146. },
  14147. stomping: {
  14148. height: math.unit(7, "feet"),
  14149. weight: math.unit(150, "lb"),
  14150. name: "Stomping",
  14151. image: {
  14152. source: "./media/characters/ian-corvid/stomping.svg",
  14153. extra: 76/72
  14154. }
  14155. },
  14156. sitting: {
  14157. height: math.unit(7/1.8, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Sitting",
  14160. image: {
  14161. source: "./media/characters/ian-corvid/sitting.svg",
  14162. extra: 1400/1269,
  14163. bottom: 0.15
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Tiny Microw",
  14170. height: math.unit(1, "inch")
  14171. },
  14172. {
  14173. name: "Microw",
  14174. height: math.unit(6, "inches")
  14175. },
  14176. {
  14177. name: "Crow",
  14178. height: math.unit(7 + 1/12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macrow",
  14183. height: math.unit(176, "feet")
  14184. },
  14185. ]
  14186. )
  14187. };
  14188. characterMakers["Natalie Kellon"] = () => {
  14189. return makeCharacter(
  14190. "Natalie Kellon",
  14191. {
  14192. front: {
  14193. height: math.unit(5 + 7/12, "feet"),
  14194. weight: math.unit(147, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/natalie-kellon/front.svg",
  14198. extra: 1214/1141,
  14199. bottom: 0.02
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Micro",
  14206. height: math.unit(1/16, "inch")
  14207. },
  14208. {
  14209. name: "Tiny",
  14210. height: math.unit(4, "inches")
  14211. },
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(5 + 7/12, "feet"),
  14215. default: true
  14216. },
  14217. {
  14218. name: "Amazon",
  14219. height: math.unit(12, "feet")
  14220. },
  14221. {
  14222. name: "Giantess",
  14223. height: math.unit(160, "meters")
  14224. },
  14225. {
  14226. name: "Titaness",
  14227. height: math.unit(800, "meters")
  14228. },
  14229. ]
  14230. )
  14231. };
  14232. characterMakers["Alluria"] = () => {
  14233. return makeCharacter(
  14234. "Alluria",
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(150, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/alluria/front.svg",
  14242. extra: 806/738,
  14243. bottom: 0.01
  14244. }
  14245. },
  14246. side: {
  14247. height: math.unit(6, "feet"),
  14248. weight: math.unit(150, "lb"),
  14249. name: "Side",
  14250. image: {
  14251. source: "./media/characters/alluria/side.svg",
  14252. extra: 800/750,
  14253. }
  14254. },
  14255. back: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(150, "lb"),
  14258. name: "Back",
  14259. image: {
  14260. source: "./media/characters/alluria/back.svg",
  14261. extra: 806/738,
  14262. }
  14263. },
  14264. frontMaid: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(150, "lb"),
  14267. name: "Front (Maid)",
  14268. image: {
  14269. source: "./media/characters/alluria/front-maid.svg",
  14270. extra: 806/738,
  14271. bottom: 0.01
  14272. }
  14273. },
  14274. sideMaid: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Side (Maid)",
  14278. image: {
  14279. source: "./media/characters/alluria/side-maid.svg",
  14280. extra: 800/750,
  14281. bottom: 0.005
  14282. }
  14283. },
  14284. backMaid: {
  14285. height: math.unit(6, "feet"),
  14286. weight: math.unit(150, "lb"),
  14287. name: "Back (Maid)",
  14288. image: {
  14289. source: "./media/characters/alluria/back-maid.svg",
  14290. extra: 806/738,
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Micro",
  14297. height: math.unit(6, "inches"),
  14298. default: true
  14299. },
  14300. ]
  14301. )
  14302. };
  14303. characterMakers["Kyle"] = () => {
  14304. return makeCharacter(
  14305. "Kyle",
  14306. {
  14307. front: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(150, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/kyle/front.svg",
  14313. extra: 1069/962,
  14314. bottom: 77.228/1727.45
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(150, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. )
  14326. };
  14327. characterMakers["Duncan"] = () => {
  14328. return makeCharacter(
  14329. "Duncan",
  14330. {
  14331. front: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(300, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/duncan/front.svg",
  14337. extra: 1650/1482,
  14338. bottom: 0.05
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(100, "feet"),
  14346. default: true
  14347. },
  14348. ]
  14349. )
  14350. };
  14351. characterMakers["Memory"] = () => {
  14352. return makeCharacter(
  14353. "Memory",
  14354. {
  14355. front: {
  14356. height: math.unit(5 + 4/12, "feet"),
  14357. weight: math.unit(220, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/memory/front.svg",
  14361. extra: 3641/3545,
  14362. bottom: 0.03
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(5 + 4/12, "feet"),
  14367. weight: math.unit(220, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/memory/back.svg",
  14371. extra: 3641/3545,
  14372. bottom: 0.025
  14373. }
  14374. },
  14375. frontSkirt: {
  14376. height: math.unit(5 + 4/12, "feet"),
  14377. weight: math.unit(220, "lb"),
  14378. name: "Front (Skirt)",
  14379. image: {
  14380. source: "./media/characters/memory/front-skirt.svg",
  14381. extra: 3641/3545,
  14382. bottom: 0.03
  14383. }
  14384. },
  14385. frontDress: {
  14386. height: math.unit(5 + 4/12, "feet"),
  14387. weight: math.unit(220, "lb"),
  14388. name: "Front (Dress)",
  14389. image: {
  14390. source: "./media/characters/memory/front-dress.svg",
  14391. extra: 3641/3545,
  14392. bottom: 0.03
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Micro",
  14399. height: math.unit(6, "inches"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(5 + 4/12, "feet")
  14405. },
  14406. ]
  14407. )
  14408. };
  14409. characterMakers["Luno"] = () => {
  14410. return makeCharacter(
  14411. "Luno",
  14412. {
  14413. front: {
  14414. height: math.unit(4 + 11/12, "feet"),
  14415. weight: math.unit(100, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/luno/front.svg",
  14419. extra: 1535/1487,
  14420. bottom: 0.03
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Micro",
  14427. height: math.unit(3, "inches")
  14428. },
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(4 + 11/12, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro",
  14436. height: math.unit(300, "feet")
  14437. },
  14438. {
  14439. name: "Megamacro",
  14440. height: math.unit(700, "miles")
  14441. },
  14442. ]
  14443. )
  14444. };
  14445. characterMakers["Jamesy"] = () => {
  14446. return makeCharacter(
  14447. "Jamesy",
  14448. {
  14449. front: {
  14450. height: math.unit(6 + 2/12, "feet"),
  14451. weight: math.unit(170, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/jamesy/front.svg",
  14455. extra: 440/382,
  14456. bottom: 0.005
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Micro",
  14463. height: math.unit(3, "inches")
  14464. },
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(6 + 2/12, "feet"),
  14468. default: true
  14469. },
  14470. {
  14471. name: "Macro",
  14472. height: math.unit(300, "feet")
  14473. },
  14474. {
  14475. name: "Megamacro",
  14476. height: math.unit(700, "miles")
  14477. },
  14478. ]
  14479. )
  14480. };
  14481. characterMakers["Mark"] = () => {
  14482. return makeCharacter(
  14483. "Mark",
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(160, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/mark/front.svg",
  14491. extra: 3300/3100,
  14492. bottom: 136.42/3440.47
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(120, "meters")
  14500. },
  14501. {
  14502. name: "Bigger Macro",
  14503. height: math.unit(350, "meters")
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(8, "km"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Continental",
  14512. height: math.unit(4550, "km")
  14513. },
  14514. {
  14515. name: "Planetary",
  14516. height: math.unit(65000, "km")
  14517. },
  14518. ]
  14519. )
  14520. };
  14521. characterMakers["Mac"] = () => {
  14522. return makeCharacter(
  14523. "Mac",
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(400, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/mac/front.svg",
  14531. extra: 1048/987.7,
  14532. bottom: 60/1107.6,
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Macro",
  14539. height: math.unit(500, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. )
  14544. };
  14545. characterMakers["Bari"] = () => {
  14546. return makeCharacter(
  14547. "Bari",
  14548. {
  14549. front: {
  14550. height: math.unit(5 + 2/12, "feet"),
  14551. weight: math.unit(190, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/bari/front.svg",
  14555. extra: 3156/2880,
  14556. bottom: 0.03
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(5 + 2/12, "feet"),
  14561. weight: math.unit(190, "lb"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/bari/back.svg",
  14565. extra: 3260/2834,
  14566. bottom: 0.025
  14567. }
  14568. },
  14569. frontPlush: {
  14570. height: math.unit(5 + 2/12, "feet"),
  14571. weight: math.unit(190, "lb"),
  14572. name: "Front (Plush)",
  14573. image: {
  14574. source: "./media/characters/bari/front-plush.svg",
  14575. extra: 1112/1061,
  14576. bottom: 0.002
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(3, "inches")
  14584. },
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(5 + 2/12, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(20, "feet")
  14593. },
  14594. ]
  14595. )
  14596. };
  14597. characterMakers["Hunter Misha Raven"] = () => {
  14598. return makeCharacter(
  14599. "Hunter Misha Raven",
  14600. {
  14601. front: {
  14602. height: math.unit(6 + 1/12, "feet"),
  14603. weight: math.unit(275, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/hunter-misha-raven/front.svg"
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Mortal",
  14613. height: math.unit(6 + 1/12, "feet")
  14614. },
  14615. {
  14616. name: "Divine",
  14617. height: math.unit(1.12134e34, "parsecs"),
  14618. default: true
  14619. },
  14620. ]
  14621. )
  14622. };
  14623. characterMakers["Max Calore"] = () => {
  14624. return makeCharacter(
  14625. "Max Calore",
  14626. {
  14627. front: {
  14628. height: math.unit(6 + 3/12, "feet"),
  14629. weight: math.unit(220, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/max-calore/front.svg",
  14633. extra: 1700/1648,
  14634. bottom: 0.01
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(6 + 3/12, "feet"),
  14639. weight: math.unit(220, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/max-calore/back.svg",
  14643. extra: 1700/1648,
  14644. bottom: 0.01
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(6 + 3/12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. )
  14656. };
  14657. characterMakers["Aspen"] = () => {
  14658. return makeCharacter(
  14659. "Aspen",
  14660. {
  14661. side: {
  14662. height: math.unit(2 + 8/12, "feet"),
  14663. weight: math.unit(99, "lb"),
  14664. name: "Side",
  14665. image: {
  14666. source: "./media/characters/aspen/side.svg",
  14667. extra: 152/138,
  14668. bottom: 0.032
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(2 + 8/12, "feet"),
  14676. default: true
  14677. },
  14678. ]
  14679. )
  14680. };
  14681. characterMakers["Sheila (Wolf)"] = () => {
  14682. return makeCharacter(
  14683. "Sheila (Wolf)",
  14684. {
  14685. side: {
  14686. height: math.unit(3 + 2/12, "feet"),
  14687. weight: math.unit(224, "lb"),
  14688. name: "Side",
  14689. image: {
  14690. source: "./media/characters/sheila-wolf/side.svg",
  14691. extra: 179/166,
  14692. bottom: 0.03
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(3 + 2/12, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. )
  14704. };
  14705. characterMakers["Michelle"] = () => {
  14706. return makeCharacter(
  14707. "Michelle",
  14708. {
  14709. side: {
  14710. height: math.unit(1 + 9/12, "feet"),
  14711. weight: math.unit(38, "lb"),
  14712. name: "Side",
  14713. image: {
  14714. source: "./media/characters/michelle/side.svg",
  14715. extra: 147/136.7,
  14716. bottom: 0.03
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(1 + 9/12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. )
  14728. };
  14729. characterMakers["Nino"] = () => {
  14730. return makeCharacter(
  14731. "Nino",
  14732. {
  14733. front: {
  14734. height: math.unit(1 + 1/12, "feet"),
  14735. weight: math.unit(18, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/nino/front.svg"
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(1 + 1/12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. )
  14750. };
  14751. characterMakers["Viola"] = () => {
  14752. return makeCharacter(
  14753. "Viola",
  14754. {
  14755. front: {
  14756. height: math.unit(1, "feet"),
  14757. weight: math.unit(16, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/viola/front.svg"
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(1, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. )
  14772. };
  14773. characterMakers["Atlas"] = () => {
  14774. return makeCharacter(
  14775. "Atlas",
  14776. {
  14777. front: {
  14778. height: math.unit(6 + 5/12, "feet"),
  14779. weight: math.unit(580, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/atlas/front.svg",
  14783. extra: 298.5/290,
  14784. bottom: 0.015
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(6 + 5/12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. )
  14796. };
  14797. characterMakers["Davy"] = () => {
  14798. return makeCharacter(
  14799. "Davy",
  14800. {
  14801. side: {
  14802. height: math.unit(1 + 10/12, "feet"),
  14803. weight: math.unit(25, "lb"),
  14804. name: "Side",
  14805. image: {
  14806. source: "./media/characters/davy/side.svg",
  14807. extra: 200/170,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(1 + 10/12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. )
  14820. };
  14821. characterMakers["Fiona"] = () => {
  14822. return makeCharacter(
  14823. "Fiona",
  14824. {
  14825. side: {
  14826. height: math.unit(4 + 8/12, "feet"),
  14827. weight: math.unit(166, "lb"),
  14828. name: "Side",
  14829. image: {
  14830. source: "./media/characters/fiona/side.svg",
  14831. extra: 232/220,
  14832. bottom: 0.03
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(4 + 8/12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. )
  14844. };
  14845. characterMakers["Lyla"] = () => {
  14846. return makeCharacter(
  14847. "Lyla",
  14848. {
  14849. front: {
  14850. height: math.unit(2, "feet"),
  14851. weight: math.unit(62, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/lyla/front.svg",
  14855. bottom: 0.1
  14856. }
  14857. },
  14858. },
  14859. [
  14860. {
  14861. name: "Normal",
  14862. height: math.unit(2, "feet"),
  14863. default: true
  14864. },
  14865. ]
  14866. )
  14867. };
  14868. characterMakers["Perseus"] = () => {
  14869. return makeCharacter(
  14870. "Perseus",
  14871. {
  14872. side: {
  14873. height: math.unit(1.8, "feet"),
  14874. weight: math.unit(44, "lb"),
  14875. name: "Side",
  14876. image: {
  14877. source: "./media/characters/perseus/side.svg",
  14878. bottom: 0.21
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(1.8, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. )
  14890. };
  14891. characterMakers["Remus"] = () => {
  14892. return makeCharacter(
  14893. "Remus",
  14894. {
  14895. side: {
  14896. height: math.unit(4 + 2/12, "feet"),
  14897. weight: math.unit(20, "lb"),
  14898. name: "Side",
  14899. image: {
  14900. source: "./media/characters/remus/side.svg"
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(4 + 2/12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. )
  14912. };
  14913. characterMakers["Raf"] = () => {
  14914. return makeCharacter(
  14915. "Raf",
  14916. {
  14917. front: {
  14918. height: math.unit(4 + 11/12, "feet"),
  14919. weight: math.unit(114, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/raf/front.svg",
  14923. bottom: 0.01
  14924. }
  14925. },
  14926. side: {
  14927. height: math.unit(4 + 11/12, "feet"),
  14928. weight: math.unit(114, "lb"),
  14929. name: "Side",
  14930. image: {
  14931. source: "./media/characters/raf/side.svg",
  14932. bottom: 0.005
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Micro",
  14939. height: math.unit(2, "inches")
  14940. },
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(4 + 11/12, "feet"),
  14944. default: true
  14945. },
  14946. {
  14947. name: "Macro",
  14948. height: math.unit(70, "feet")
  14949. },
  14950. ]
  14951. )
  14952. };
  14953. characterMakers["Liam Einarr"] = () => {
  14954. return makeCharacter(
  14955. "Liam Einarr",
  14956. {
  14957. front: {
  14958. height: math.unit(1.5, "meters"),
  14959. weight: math.unit(68, "kg"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/liam-einarr/front.svg",
  14963. extra: 2822/2666
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(1.5, "meters"),
  14968. weight: math.unit(68, "kg"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/liam-einarr/back.svg",
  14972. extra: 2822/2666,
  14973. bottom: 0.015
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(1.5, "meters"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Macro",
  14985. height: math.unit(150, "meters")
  14986. },
  14987. {
  14988. name: "Megamacro",
  14989. height: math.unit(35, "km")
  14990. },
  14991. ]
  14992. )
  14993. };
  14994. characterMakers["Linda"] = () => {
  14995. return makeCharacter(
  14996. "Linda",
  14997. {
  14998. front: {
  14999. height: math.unit(6, "feet"),
  15000. weight: math.unit(75, "kg"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/linda/front.svg",
  15004. extra: 930/874,
  15005. bottom: 0.004
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(6, "feet"),
  15013. default: true
  15014. },
  15015. ]
  15016. )
  15017. };
  15018. characterMakers["Caylex"] = () => {
  15019. return makeCharacter(
  15020. "Caylex",
  15021. {
  15022. front: {
  15023. height: math.unit(6 + 8/12, "feet"),
  15024. weight: math.unit(220, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/caylex/front.svg",
  15028. extra: 821/772,
  15029. bottom: 0.07
  15030. }
  15031. },
  15032. back: {
  15033. height: math.unit(6 + 8/12, "feet"),
  15034. weight: math.unit(220, "lb"),
  15035. name: "Back",
  15036. image: {
  15037. source: "./media/characters/caylex/back.svg",
  15038. extra: 821/772,
  15039. bottom: 0.022
  15040. }
  15041. },
  15042. hand: {
  15043. height: math.unit(1.25, "feet"),
  15044. name: "Hand",
  15045. image: {
  15046. source: "./media/characters/caylex/hand.svg"
  15047. }
  15048. },
  15049. foot: {
  15050. height: math.unit(1.6, "feet"),
  15051. name: "Foot",
  15052. image: {
  15053. source: "./media/characters/caylex/foot.svg"
  15054. }
  15055. },
  15056. armored: {
  15057. height: math.unit(6 + 8/12, "feet"),
  15058. weight: math.unit(250, "lb"),
  15059. name: "Armored",
  15060. image: {
  15061. source: "./media/characters/caylex/armored.svg",
  15062. extra: 1420/1310,
  15063. bottom: 0.045
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(6 + 8/12, "feet"),
  15071. default: true
  15072. },
  15073. {
  15074. name: "Normal+",
  15075. height: math.unit(12, "feet")
  15076. },
  15077. ]
  15078. )
  15079. };
  15080. characterMakers["Alana"] = () => {
  15081. return makeCharacter(
  15082. "Alana",
  15083. {
  15084. front: {
  15085. height: math.unit(7 + 6/12, "feet"),
  15086. weight: math.unit(288, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/alana/front.svg",
  15090. extra: 679/653,
  15091. bottom: 22.5/701
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(7 + 6/12, "feet")
  15099. },
  15100. {
  15101. name: "Large",
  15102. height: math.unit(50, "feet")
  15103. },
  15104. {
  15105. name: "Macro",
  15106. height: math.unit(100, "feet"),
  15107. default: true
  15108. },
  15109. {
  15110. name: "Macro+",
  15111. height: math.unit(200, "feet")
  15112. },
  15113. ]
  15114. )
  15115. };
  15116. characterMakers["Hasani"] = () => {
  15117. return makeCharacter(
  15118. "Hasani",
  15119. {
  15120. front: {
  15121. height: math.unit(6 + 1/12, "feet"),
  15122. weight: math.unit(210, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/hasani/front.svg",
  15126. extra: 244/232,
  15127. bottom: 0.01
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(6 + 1/12, "feet"),
  15132. weight: math.unit(210, "lb"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/hasani/back.svg",
  15136. extra: 244/232,
  15137. bottom: 0.01
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(6 + 1/12, "feet")
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(175, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. )
  15153. };
  15154. characterMakers["Nita"] = () => {
  15155. return makeCharacter(
  15156. "Nita",
  15157. {
  15158. front: {
  15159. height: math.unit(1.82, "meters"),
  15160. weight: math.unit(140, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/nita/front.svg",
  15164. extra: 2473/2363,
  15165. bottom: 0.01
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(1.82, "m")
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(300, "m")
  15177. },
  15178. {
  15179. name: "Mistake Canon",
  15180. height: math.unit(0.5, "miles"),
  15181. default: true
  15182. },
  15183. {
  15184. name: "Big Mistake",
  15185. height: math.unit(13, "miles")
  15186. },
  15187. {
  15188. name: "Playing God",
  15189. height: math.unit(2450, "miles")
  15190. },
  15191. ]
  15192. )
  15193. };
  15194. characterMakers["Shiriko"] = () => {
  15195. return makeCharacter(
  15196. "Shiriko",
  15197. {
  15198. front: {
  15199. height: math.unit(4, "feet"),
  15200. weight: math.unit(120, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/shiriko/front.svg",
  15204. extra: 195/188
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(4, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. )
  15216. };
  15217. characterMakers["Deja"] = () => {
  15218. return makeCharacter(
  15219. "Deja",
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. name: "front",
  15224. image: {
  15225. source: "./media/characters/deja/front.svg",
  15226. extra: 926/840,
  15227. bottom: 0.07
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Planck Length",
  15234. height: math.unit(1.6e-35, "meters")
  15235. },
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(30.48, "meters"),
  15239. default: true
  15240. },
  15241. {
  15242. name: "Universal",
  15243. height: math.unit(8.8e26, "meters")
  15244. },
  15245. ]
  15246. )
  15247. };
  15248. characterMakers["Anima"] = () => {
  15249. return makeCharacter(
  15250. "Anima",
  15251. {
  15252. side: {
  15253. height: math.unit(8, "feet"),
  15254. weight: math.unit(6300, "lb"),
  15255. name: "Side",
  15256. image: {
  15257. source: "./media/characters/anima/side.svg",
  15258. bottom: 0.035
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(8, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. )
  15270. };
  15271. characterMakers["Bianca"] = () => {
  15272. return makeCharacter(
  15273. "Bianca",
  15274. {
  15275. front: {
  15276. height: math.unit(8, "feet"),
  15277. weight: math.unit(350, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/bianca/front.svg",
  15281. extra: 234/225,
  15282. bottom: 0.03
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(8, "feet"),
  15290. default: true
  15291. },
  15292. ]
  15293. )
  15294. };
  15295. characterMakers["Adinia"] = () => {
  15296. return makeCharacter(
  15297. "Adinia",
  15298. {
  15299. front: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/adinia/front.svg",
  15305. extra: 1845/1672,
  15306. bottom: 0.02
  15307. }
  15308. },
  15309. back: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(150, "lb"),
  15312. name: "Back",
  15313. image: {
  15314. source: "./media/characters/adinia/back.svg",
  15315. extra: 1845/1672,
  15316. bottom: 0.002
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(11 + 5/12, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. )
  15328. };
  15329. characterMakers["Lykasa"] = () => {
  15330. return makeCharacter(
  15331. "Lykasa",
  15332. {
  15333. front: {
  15334. height: math.unit(3, "meters"),
  15335. weight: math.unit(200, "kg"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/lykasa/front.svg",
  15339. extra: 1076/976,
  15340. bottom: 0.06
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(3, "meters")
  15348. },
  15349. {
  15350. name: "Kaiku",
  15351. height: math.unit(120, "meters"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Mega Kaiju",
  15356. height: math.unit(240, "km")
  15357. },
  15358. {
  15359. name: "Giga Kaiju",
  15360. height: math.unit(400, "megameters")
  15361. },
  15362. {
  15363. name: "Tera Kaiju",
  15364. height: math.unit(800, "gigameters")
  15365. },
  15366. {
  15367. name: "Kaiju Dragon Goddess",
  15368. height: math.unit(26, "zettaparsecs")
  15369. },
  15370. ]
  15371. )
  15372. };
  15373. characterMakers["Malfaren"] = () => {
  15374. return makeCharacter(
  15375. "Malfaren",
  15376. {
  15377. side: {
  15378. height: math.unit(283/124*6, "feet"),
  15379. weight: math.unit(35000, "lb"),
  15380. name: "Side",
  15381. image: {
  15382. source: "./media/characters/malfaren/side.svg",
  15383. extra: 2500/1010,
  15384. bottom: 0.01
  15385. }
  15386. },
  15387. front: {
  15388. height: math.unit(22.36, "feet"),
  15389. weight: math.unit(35000, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/malfaren/front.svg",
  15393. extra: 1631/1476,
  15394. bottom: 0.01
  15395. }
  15396. },
  15397. maw: {
  15398. height: math.unit(6.9, "feet"),
  15399. name: "Maw",
  15400. image: {
  15401. source: "./media/characters/malfaren/maw.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Big",
  15408. height: math.unit(283/162*6, "feet"),
  15409. },
  15410. {
  15411. name: "Bigger",
  15412. height: math.unit(283/124*6, "feet")
  15413. },
  15414. {
  15415. name: "Massive",
  15416. height: math.unit(283/92*6, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "👀💦",
  15421. height: math.unit(283/73*6, "feet"),
  15422. },
  15423. ]
  15424. )
  15425. };
  15426. characterMakers["Kernel"] = () => {
  15427. return makeCharacter(
  15428. "Kernel",
  15429. {
  15430. front: {
  15431. height: math.unit(1.7, "m"),
  15432. weight: math.unit(70, "kg"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/kernel/front.svg",
  15436. extra: 222/210,
  15437. bottom: 0.007
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Nano",
  15444. height: math.unit(17, "micrometers")
  15445. },
  15446. {
  15447. name: "Micro",
  15448. height: math.unit(1.7, "mm")
  15449. },
  15450. {
  15451. name: "Small",
  15452. height: math.unit(1.7, "cm")
  15453. },
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(1.7, "m"),
  15457. default: true
  15458. },
  15459. ]
  15460. )
  15461. };
  15462. characterMakers["Jayne Folest"] = () => {
  15463. return makeCharacter(
  15464. "Jayne Folest",
  15465. {
  15466. front: {
  15467. height: math.unit(1.75, "meters"),
  15468. weight: math.unit(65, "kg"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/jayne-folest/front.svg",
  15472. extra: 2115/2007,
  15473. bottom: 0.02
  15474. }
  15475. },
  15476. back: {
  15477. height: math.unit(1.75, "meters"),
  15478. weight: math.unit(65, "kg"),
  15479. name: "Back",
  15480. image: {
  15481. source: "./media/characters/jayne-folest/back.svg",
  15482. extra: 2115/2007,
  15483. bottom: 0.005
  15484. }
  15485. },
  15486. frontClothed: {
  15487. height: math.unit(1.75, "meters"),
  15488. weight: math.unit(65, "kg"),
  15489. name: "Front (Clothed)",
  15490. image: {
  15491. source: "./media/characters/jayne-folest/front-clothed.svg",
  15492. extra: 2115/2007,
  15493. bottom: 0.035
  15494. }
  15495. },
  15496. hand: {
  15497. height: math.unit(1/1.260, "feet"),
  15498. name: "Hand",
  15499. image: {
  15500. source: "./media/characters/jayne-folest/hand.svg"
  15501. }
  15502. },
  15503. foot: {
  15504. height: math.unit(1/0.918, "feet"),
  15505. name: "Foot",
  15506. image: {
  15507. source: "./media/characters/jayne-folest/foot.svg"
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Micro",
  15514. height: math.unit(4, "cm")
  15515. },
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(1.75, "meters")
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(47.5, "meters"),
  15523. default: true
  15524. },
  15525. ]
  15526. )
  15527. };
  15528. characterMakers["Algier"] = () => {
  15529. return makeCharacter(
  15530. "Algier",
  15531. {
  15532. front: {
  15533. height: math.unit(180, "cm"),
  15534. weight: math.unit(70, "kg"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/algier/front.svg",
  15538. extra: 596/572,
  15539. bottom: 0.04
  15540. }
  15541. },
  15542. back: {
  15543. height: math.unit(180, "cm"),
  15544. weight: math.unit(70, "kg"),
  15545. name: "Back",
  15546. image: {
  15547. source: "./media/characters/algier/back.svg",
  15548. extra: 596/572,
  15549. bottom: 0.025
  15550. }
  15551. },
  15552. frontdressed: {
  15553. height: math.unit(180, "cm"),
  15554. weight: math.unit(150, "kg"),
  15555. name: "Front-dressed",
  15556. image: {
  15557. source: "./media/characters/algier/front-dressed.svg",
  15558. extra: 596/572,
  15559. bottom: 0.038
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Micro",
  15566. height: math.unit(5, "cm")
  15567. },
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(180, "cm"),
  15571. default: true
  15572. },
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(64, "m")
  15576. },
  15577. ]
  15578. )
  15579. };
  15580. characterMakers["Pretzel"] = () => {
  15581. return makeCharacter(
  15582. "Pretzel",
  15583. {
  15584. upright: {
  15585. height: math.unit(7, "feet"),
  15586. weight: math.unit(300, "lb"),
  15587. name: "Upright",
  15588. image: {
  15589. source: "./media/characters/pretzel/upright.svg",
  15590. extra: 534/522,
  15591. bottom: 0.065
  15592. }
  15593. },
  15594. sprawling: {
  15595. height: math.unit(3.75, "feet"),
  15596. weight: math.unit(300, "lb"),
  15597. name: "Sprawling",
  15598. image: {
  15599. source: "./media/characters/pretzel/sprawling.svg",
  15600. extra: 314/281,
  15601. bottom: 0.1
  15602. }
  15603. },
  15604. tongue: {
  15605. height: math.unit(2, "feet"),
  15606. name: "Tongue",
  15607. image: {
  15608. source: "./media/characters/pretzel/tongue.svg"
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(7, "feet"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "Oversized",
  15620. height: math.unit(15, "feet")
  15621. },
  15622. {
  15623. name: "Huge",
  15624. height: math.unit(30, "feet")
  15625. },
  15626. {
  15627. name: "Macro",
  15628. height: math.unit(250, "feet")
  15629. },
  15630. ]
  15631. )
  15632. };
  15633. characterMakers["Roxi"] = () => {
  15634. return makeCharacter(
  15635. "Roxi",
  15636. {
  15637. sideFront: {
  15638. height: math.unit(5 + 2/12, "feet"),
  15639. weight: math.unit(120, "lb"),
  15640. name: "Front Side",
  15641. image: {
  15642. source: "./media/characters/roxi/side-front.svg",
  15643. extra: 2924/2717,
  15644. bottom: 0.08
  15645. }
  15646. },
  15647. sideBack: {
  15648. height: math.unit(5 + 2/12, "feet"),
  15649. weight: math.unit(120, "lb"),
  15650. name: "Back Side",
  15651. image: {
  15652. source: "./media/characters/roxi/side-back.svg",
  15653. extra: 2904/2693,
  15654. bottom: 0.06
  15655. }
  15656. },
  15657. front: {
  15658. height: math.unit(5 + 2/12, "feet"),
  15659. weight: math.unit(120, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/roxi/front.svg",
  15663. extra: 2028/1907,
  15664. bottom: 0.01
  15665. }
  15666. },
  15667. frontAlt: {
  15668. height: math.unit(5 + 2/12, "feet"),
  15669. weight: math.unit(120, "lb"),
  15670. name: "Front (Alt)",
  15671. image: {
  15672. source: "./media/characters/roxi/front-alt.svg",
  15673. extra: 1828/1798,
  15674. bottom: 0.01
  15675. }
  15676. },
  15677. sitting: {
  15678. height: math.unit(2.8, "feet"),
  15679. weight: math.unit(120, "lb"),
  15680. name: "Sitting",
  15681. image: {
  15682. source: "./media/characters/roxi/sitting.svg",
  15683. extra: 2660/2462,
  15684. bottom: 0.1
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(5 + 2/12, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. )
  15696. };
  15697. characterMakers["Shadow"] = () => {
  15698. return makeCharacter(
  15699. "Shadow",
  15700. {
  15701. side: {
  15702. height: math.unit(55, "feet"),
  15703. weight: math.unit(153, "tons"),
  15704. name: "Side",
  15705. image: {
  15706. source: "./media/characters/shadow/side.svg",
  15707. extra: 701/628,
  15708. bottom: 0.02
  15709. }
  15710. },
  15711. flying: {
  15712. height: math.unit(145, "feet"),
  15713. weight: math.unit(153, "tons"),
  15714. name: "Flying",
  15715. image: {
  15716. source: "./media/characters/shadow/flying.svg"
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(55, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. )
  15728. };
  15729. characterMakers["Marcie"] = () => {
  15730. return makeCharacter(
  15731. "Marcie",
  15732. {
  15733. front: {
  15734. height: math.unit(6, "feet"),
  15735. weight: math.unit(200, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/marcie/front.svg",
  15739. extra: 960/876,
  15740. bottom: 58/1017.87
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Macro",
  15747. height: math.unit(1, "mile"),
  15748. default: true
  15749. },
  15750. ]
  15751. )
  15752. };
  15753. characterMakers["Kachina"] = () => {
  15754. return makeCharacter(
  15755. "Kachina",
  15756. {
  15757. front: {
  15758. height: math.unit(7, "feet"),
  15759. weight: math.unit(200, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/kachina/front.svg",
  15763. extra: 1290.68/1119,
  15764. bottom: 36.5/1327.18
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(7, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. )
  15776. };
  15777. characterMakers["Kash"] = () => {
  15778. return makeCharacter(
  15779. "Kash",
  15780. {
  15781. looking: {
  15782. height: math.unit(2, "meters"),
  15783. weight: math.unit(300, "kg"),
  15784. name: "Looking",
  15785. image: {
  15786. source: "./media/characters/kash/looking.svg",
  15787. extra: 474/344,
  15788. bottom: 0.03
  15789. }
  15790. },
  15791. side: {
  15792. height: math.unit(2, "meters"),
  15793. weight: math.unit(300, "kg"),
  15794. name: "Side",
  15795. image: {
  15796. source: "./media/characters/kash/side.svg",
  15797. extra: 302/251,
  15798. bottom: 0.03
  15799. }
  15800. },
  15801. front: {
  15802. height: math.unit(2, "meters"),
  15803. weight: math.unit(300, "kg"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/kash/front.svg",
  15807. extra: 495/360,
  15808. bottom: 0.015
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(2, "meters"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "Big",
  15820. height: math.unit(3, "meters")
  15821. },
  15822. {
  15823. name: "Large",
  15824. height: math.unit(5, "meters")
  15825. },
  15826. ]
  15827. )
  15828. };
  15829. characterMakers["Lalim"] = () => {
  15830. return makeCharacter(
  15831. "Lalim",
  15832. {
  15833. feeding: {
  15834. height: math.unit(6.7, "feet"),
  15835. weight: math.unit(350, "lb"),
  15836. name: "Feeding",
  15837. image: {
  15838. source: "./media/characters/lalim/feeding.svg",
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6.7, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. )
  15850. };
  15851. characterMakers["De'Vout"] = () => {
  15852. return makeCharacter(
  15853. "De'Vout",
  15854. {
  15855. front: {
  15856. height: math.unit(9.5, "feet"),
  15857. weight: math.unit(600, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/de'vout/front.svg",
  15861. extra: 1443/1328,
  15862. bottom: 0.025
  15863. }
  15864. },
  15865. back: {
  15866. height: math.unit(9.5, "feet"),
  15867. weight: math.unit(600, "lb"),
  15868. name: "Back",
  15869. image: {
  15870. source: "./media/characters/de'vout/back.svg",
  15871. extra: 1443/1328
  15872. }
  15873. },
  15874. frontDressed: {
  15875. height: math.unit(9.5, "feet"),
  15876. weight: math.unit(600, "lb"),
  15877. name: "Front (Dressed",
  15878. image: {
  15879. source: "./media/characters/de'vout/front-dressed.svg",
  15880. extra: 1443/1328,
  15881. bottom: 0.025
  15882. }
  15883. },
  15884. backDressed: {
  15885. height: math.unit(9.5, "feet"),
  15886. weight: math.unit(600, "lb"),
  15887. name: "Back (Dressed",
  15888. image: {
  15889. source: "./media/characters/de'vout/back-dressed.svg",
  15890. extra: 1443/1328
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(9.5, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. )
  15902. };
  15903. characterMakers["Talana"] = () => {
  15904. return makeCharacter(
  15905. "Talana",
  15906. {
  15907. front: {
  15908. height: math.unit(8, "feet"),
  15909. weight: math.unit(225, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/talana/front.svg",
  15913. extra: 1410/1300,
  15914. bottom: 0.015
  15915. }
  15916. },
  15917. frontDressed: {
  15918. height: math.unit(8, "feet"),
  15919. weight: math.unit(225, "lb"),
  15920. name: "Front (Dressed",
  15921. image: {
  15922. source: "./media/characters/talana/front-dressed.svg",
  15923. extra: 1410/1300,
  15924. bottom: 0.015
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(8, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. )
  15936. };
  15937. characterMakers["Xeauvok"] = () => {
  15938. return makeCharacter(
  15939. "Xeauvok",
  15940. {
  15941. side: {
  15942. height: math.unit(7.2, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Side",
  15945. image: {
  15946. source: "./media/characters/xeauvok/side.svg",
  15947. extra: 1975/1523,
  15948. bottom: 0.07
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(7.2, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. )
  15960. };
  15961. characterMakers["Zara"] = () => {
  15962. return makeCharacter(
  15963. "Zara",
  15964. {
  15965. side: {
  15966. height: math.unit(10, "feet"),
  15967. weight: math.unit(900, "kg"),
  15968. name: "Side",
  15969. image: {
  15970. source: "./media/characters/zara/side.svg",
  15971. extra: 504/498
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(10, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. )
  15983. };
  15984. characterMakers["Richard (Dragon)"] = () => {
  15985. return makeCharacter(
  15986. "Richard (Dragon)",
  15987. {
  15988. side: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Side",
  15992. image: {
  15993. source: "./media/characters/richard-dragon/side.svg",
  15994. extra: 845/340,
  15995. bottom: 0.017
  15996. }
  15997. },
  15998. maw: {
  15999. height: math.unit(2.97, "feet"),
  16000. name: "Maw",
  16001. image: {
  16002. source: "./media/characters/richard-dragon/maw.svg"
  16003. }
  16004. },
  16005. },
  16006. [
  16007. ]
  16008. )
  16009. };
  16010. characterMakers["Richard (Smeargle)"] = () => {
  16011. return makeCharacter(
  16012. "Richard (Smeargle)",
  16013. {
  16014. front: {
  16015. height: math.unit(4, "feet"),
  16016. weight: math.unit(100, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/richard-smeargle/front.svg",
  16020. extra: 2952/2820,
  16021. bottom: 0.028
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(4, "feet"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Dynamax",
  16033. height: math.unit(20, "meters")
  16034. },
  16035. ]
  16036. )
  16037. };
  16038. characterMakers["Klay"] = () => {
  16039. return makeCharacter(
  16040. "Klay",
  16041. {
  16042. front: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(110, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/klay/front.svg",
  16048. extra: 962/883,
  16049. bottom: 0.04
  16050. }
  16051. },
  16052. back: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(110, "lb"),
  16055. name: "Back",
  16056. image: {
  16057. source: "./media/characters/klay/back.svg",
  16058. extra: 962/883
  16059. }
  16060. },
  16061. beans: {
  16062. height: math.unit(1.15, "feet"),
  16063. name: "Beans",
  16064. image: {
  16065. source: "./media/characters/klay/beans.svg"
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Micro",
  16072. height: math.unit(6, "inches")
  16073. },
  16074. {
  16075. name: "Mini",
  16076. height: math.unit(3, "feet")
  16077. },
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(6, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Big",
  16085. height: math.unit(25, "feet")
  16086. },
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(100, "feet")
  16090. },
  16091. {
  16092. name: "Megamacro",
  16093. height: math.unit(400, "feet")
  16094. },
  16095. ]
  16096. )
  16097. };
  16098. characterMakers["Marcus"] = () => {
  16099. return makeCharacter(
  16100. "Marcus",
  16101. {
  16102. front: {
  16103. height: math.unit(6, "feet"),
  16104. weight: math.unit(160, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/marcus/front.svg",
  16108. extra: 734/676,
  16109. bottom: 0.03
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Little",
  16116. height: math.unit(6, "feet")
  16117. },
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(110, "feet"),
  16121. default: true
  16122. },
  16123. {
  16124. name: "Macro",
  16125. height: math.unit(250, "feet")
  16126. },
  16127. {
  16128. name: "Megamacro",
  16129. height: math.unit(1000, "feet")
  16130. },
  16131. ]
  16132. )
  16133. };
  16134. characterMakers["Claude DelRoute"] = () => {
  16135. return makeCharacter(
  16136. "Claude DelRoute",
  16137. {
  16138. front: {
  16139. height: math.unit(7, "feet"),
  16140. weight: math.unit(275, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/claude-delroute/front.svg",
  16144. extra: 230/214,
  16145. bottom: 0.007
  16146. }
  16147. },
  16148. side: {
  16149. height: math.unit(7, "feet"),
  16150. weight: math.unit(275, "lb"),
  16151. name: "Side",
  16152. image: {
  16153. source: "./media/characters/claude-delroute/side.svg",
  16154. extra: 222/214,
  16155. bottom: 0.01
  16156. }
  16157. },
  16158. back: {
  16159. height: math.unit(7, "feet"),
  16160. weight: math.unit(275, "lb"),
  16161. name: "Back",
  16162. image: {
  16163. source: "./media/characters/claude-delroute/back.svg",
  16164. extra: 230/214,
  16165. bottom: 0.015
  16166. }
  16167. },
  16168. maw: {
  16169. height: math.unit(0.6407, "meters"),
  16170. name: "Maw",
  16171. image: {
  16172. source: "./media/characters/claude-delroute/maw.svg"
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Lorge",
  16184. height: math.unit(20, "feet")
  16185. },
  16186. ]
  16187. )
  16188. };
  16189. characterMakers["Dragonien"] = () => {
  16190. return makeCharacter(
  16191. "Dragonien",
  16192. {
  16193. front: {
  16194. height: math.unit(8 + 4/12, "feet"),
  16195. weight: math.unit(600, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/dragonien/front.svg",
  16199. extra: 100/94,
  16200. bottom: 3.3/103.3445
  16201. }
  16202. },
  16203. back: {
  16204. height: math.unit(8 + 4/12, "feet"),
  16205. weight: math.unit(600, "lb"),
  16206. name: "Back",
  16207. image: {
  16208. source: "./media/characters/dragonien/back.svg",
  16209. extra: 776/746,
  16210. bottom: 6.4/782.0616
  16211. }
  16212. },
  16213. foot: {
  16214. height: math.unit(1.54, "feet"),
  16215. name: "Foot",
  16216. image: {
  16217. source: "./media/characters/dragonien/foot.svg",
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(8 + 4/12, "feet"),
  16225. default: true
  16226. },
  16227. {
  16228. name: "Macro",
  16229. height: math.unit(200, "feet")
  16230. },
  16231. {
  16232. name: "Megamacro",
  16233. height: math.unit(1, "mile")
  16234. },
  16235. {
  16236. name: "Gigamacro",
  16237. height: math.unit(1000, "miles")
  16238. },
  16239. ]
  16240. )
  16241. };
  16242. characterMakers["Desta"] = () => {
  16243. return makeCharacter(
  16244. "Desta",
  16245. {
  16246. front: {
  16247. height: math.unit(5 + 2/12, "feet"),
  16248. weight: math.unit(110, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/desta/front.svg",
  16252. extra: 1482/1417
  16253. }
  16254. },
  16255. side: {
  16256. height: math.unit(5 + 2/12, "feet"),
  16257. weight: math.unit(110, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/desta/side.svg",
  16261. extra: 2579/2491,
  16262. bottom: 0.053
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Micro",
  16269. height: math.unit(6, "inches")
  16270. },
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(5 + 2/12, "feet"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(62, "feet")
  16279. },
  16280. {
  16281. name: "Megamacro",
  16282. height: math.unit(1800, "feet")
  16283. },
  16284. ]
  16285. )
  16286. };
  16287. characterMakers["Storm Alystar"] = () => {
  16288. return makeCharacter(
  16289. "Storm Alystar",
  16290. {
  16291. front: {
  16292. height: math.unit(10, "feet"),
  16293. weight: math.unit(700, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/storm-alystar/front.svg",
  16297. extra: 2112/1898,
  16298. bottom: 0.034
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Micro",
  16305. height: math.unit(3.5, "inches")
  16306. },
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(10, "feet"),
  16310. default: true
  16311. },
  16312. {
  16313. name: "Macro",
  16314. height: math.unit(400, "feet")
  16315. },
  16316. {
  16317. name: "Deific",
  16318. height: math.unit(60, "miles")
  16319. },
  16320. ]
  16321. )
  16322. };
  16323. characterMakers["Ilia"] = () => {
  16324. return makeCharacter(
  16325. "Ilia",
  16326. {
  16327. front: {
  16328. height: math.unit(2.35, "meters"),
  16329. weight: math.unit(119, "kg"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/ilia/front.svg",
  16333. extra: 1285/1255,
  16334. bottom: 0.06
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(2.35, "meters")
  16342. },
  16343. {
  16344. name: "Macro",
  16345. height: math.unit(140, "meters"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(100, "miles")
  16351. },
  16352. ]
  16353. )
  16354. };
  16355. characterMakers["KingDead"] = () => {
  16356. return makeCharacter(
  16357. "KingDead",
  16358. {
  16359. front: {
  16360. height: math.unit(6 + 5/12, "feet"),
  16361. weight: math.unit(190, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/kingdead/front.svg",
  16365. extra: 1228/1177
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Micro",
  16372. height: math.unit(7, "inches")
  16373. },
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(6 + 5/12, "feet")
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(150, "feet"),
  16381. default: true
  16382. },
  16383. {
  16384. name: "Megamacro",
  16385. height: math.unit(200, "miles")
  16386. },
  16387. ]
  16388. )
  16389. };
  16390. characterMakers["Kyrehx"] = () => {
  16391. return makeCharacter(
  16392. "Kyrehx",
  16393. {
  16394. front: {
  16395. height: math.unit(8, "feet"),
  16396. weight: math.unit(600, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/kyrehx/front.svg",
  16400. extra: 1195/1095,
  16401. bottom: 0.034
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Micro",
  16408. height: math.unit(2, "inches")
  16409. },
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(8, "feet"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(255, "feet")
  16418. },
  16419. ]
  16420. )
  16421. };
  16422. characterMakers["Xang"] = () => {
  16423. return makeCharacter(
  16424. "Xang",
  16425. {
  16426. front: {
  16427. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16428. weight: math.unit(184, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/xang/front.svg",
  16432. extra: 845/755
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Macro",
  16444. height: math.unit(0.935 * 146, "feet")
  16445. },
  16446. {
  16447. name: "Megamacro",
  16448. height: math.unit(0.935 * 3, "miles")
  16449. },
  16450. ]
  16451. )
  16452. };
  16453. characterMakers["Doc Weardno"] = () => {
  16454. return makeCharacter(
  16455. "Doc Weardno",
  16456. {
  16457. frontDressed: {
  16458. height: math.unit(5 + 7/12, "feet"),
  16459. weight: math.unit(140, "lb"),
  16460. name: "Front (Dressed)",
  16461. image: {
  16462. source: "./media/characters/doc-weardno/front-dressed.svg",
  16463. extra: 263/234
  16464. }
  16465. },
  16466. backDressed: {
  16467. height: math.unit(5 + 7/12, "feet"),
  16468. weight: math.unit(140, "lb"),
  16469. name: "Back (Dressed)",
  16470. image: {
  16471. source: "./media/characters/doc-weardno/back-dressed.svg",
  16472. extra: 266/238
  16473. }
  16474. },
  16475. front: {
  16476. height: math.unit(5 + 7/12, "feet"),
  16477. weight: math.unit(140, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/doc-weardno/front.svg",
  16481. extra: 254/233
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Micro",
  16488. height: math.unit(3, "inches")
  16489. },
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(5 + 7/12, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(25, "feet")
  16498. },
  16499. {
  16500. name: "Megamacro",
  16501. height: math.unit(2, "miles")
  16502. },
  16503. ]
  16504. )
  16505. };
  16506. characterMakers["Seth Whilst"] = () => {
  16507. return makeCharacter(
  16508. "Seth Whilst",
  16509. {
  16510. front: {
  16511. height: math.unit(6 + 2/12, "feet"),
  16512. weight: math.unit(153, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/seth-whilst/front.svg",
  16516. bottom: 0.07
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Micro",
  16523. height: math.unit(5, "inches")
  16524. },
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(6 + 2/12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. )
  16532. };
  16533. characterMakers["Pocket Jabari"] = () => {
  16534. return makeCharacter(
  16535. "Pocket Jabari",
  16536. {
  16537. front: {
  16538. height: math.unit(3, "inches"),
  16539. weight: math.unit(8, "grams"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/pocket-jabari/front.svg",
  16543. extra: 1024/974,
  16544. bottom: 0.039
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Minimicro",
  16551. height: math.unit(8, "mm")
  16552. },
  16553. {
  16554. name: "Micro",
  16555. height: math.unit(3, "inches"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(3, "feet")
  16561. },
  16562. ]
  16563. )
  16564. };
  16565. characterMakers["Sapphy"] = () => {
  16566. return makeCharacter(
  16567. "Sapphy",
  16568. {
  16569. front: {
  16570. height: math.unit(15, "feet"),
  16571. weight: math.unit(3280, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/sapphy/front.svg",
  16575. extra: 671/577,
  16576. bottom: 0.085
  16577. }
  16578. },
  16579. back: {
  16580. height: math.unit(15, "feet"),
  16581. weight: math.unit(3280, "lb"),
  16582. name: "Back",
  16583. image: {
  16584. source: "./media/characters/sapphy/back.svg",
  16585. extra: 631/607,
  16586. bottom: 0.045
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(15, "feet")
  16594. },
  16595. {
  16596. name: "Casual Macro",
  16597. height: math.unit(120, "feet")
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(2150, "feet"),
  16602. default: true
  16603. },
  16604. {
  16605. name: "Megamacro",
  16606. height: math.unit(8, "miles")
  16607. },
  16608. {
  16609. name: "Galaxy Mom",
  16610. height: math.unit(6, "megalightyears")
  16611. },
  16612. ]
  16613. )
  16614. };
  16615. characterMakers["Kiro"] = () => {
  16616. return makeCharacter(
  16617. "Kiro",
  16618. {
  16619. front: {
  16620. height: math.unit(6, "feet"),
  16621. weight: math.unit(170, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/kiro/front.svg",
  16625. extra: 1064/1012,
  16626. bottom: 0.052
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(6, "inches")
  16634. },
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(6, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(72, "feet")
  16643. },
  16644. ]
  16645. )
  16646. };
  16647. characterMakers["Irishfox"] = () => {
  16648. return makeCharacter(
  16649. "Irishfox",
  16650. {
  16651. front: {
  16652. height: math.unit(5 + 9/12, "feet"),
  16653. weight: math.unit(175, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/irishfox/front.svg",
  16657. extra: 1912/1680,
  16658. bottom: 0.02
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Nano",
  16665. height: math.unit(1, "mm")
  16666. },
  16667. {
  16668. name: "Micro",
  16669. height: math.unit(2, "inches")
  16670. },
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(5 + 9/12, "feet"),
  16674. default: true
  16675. },
  16676. {
  16677. name: "Macro",
  16678. height: math.unit(45, "feet")
  16679. },
  16680. ]
  16681. )
  16682. };
  16683. characterMakers["Aronai Sieyes"] = () => {
  16684. return makeCharacter(
  16685. "Aronai Sieyes",
  16686. {
  16687. front: {
  16688. height: math.unit(6 + 1/12, "feet"),
  16689. weight: math.unit(150, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/aronai-sieyes/front.svg",
  16693. extra: 1556/1480,
  16694. bottom: 0.015
  16695. }
  16696. },
  16697. side: {
  16698. height: math.unit(6 + 1/12, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Side",
  16701. image: {
  16702. source: "./media/characters/aronai-sieyes/side.svg",
  16703. extra: 1433/1390,
  16704. bottom: 0.0393
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(6 + 1/12, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/aronai-sieyes/back.svg",
  16713. extra: 1544/1494,
  16714. bottom: 0.02
  16715. }
  16716. },
  16717. frontClothed: {
  16718. height: math.unit(6 + 1/12, "feet"),
  16719. weight: math.unit(150, "lb"),
  16720. name: "Front (Clothed)",
  16721. image: {
  16722. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16723. extra: 1582/1527
  16724. }
  16725. },
  16726. feral: {
  16727. height: math.unit(18, "feet"),
  16728. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16729. name: "Feral",
  16730. image: {
  16731. source: "./media/characters/aronai-sieyes/feral.svg",
  16732. extra: 1530/1240,
  16733. bottom: 0.035
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Micro",
  16740. height: math.unit(2, "inches")
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(6 + 1/12, "feet"),
  16745. default: true
  16746. }
  16747. ]
  16748. )
  16749. };
  16750. characterMakers["Xuna"] = () => {
  16751. return makeCharacter(
  16752. "Xuna",
  16753. {
  16754. front: {
  16755. height: math.unit(12, "feet"),
  16756. weight: math.unit(410, "kg"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/xuna/front.svg",
  16760. extra: 2184/1980
  16761. }
  16762. },
  16763. side: {
  16764. height: math.unit(12, "feet"),
  16765. weight: math.unit(410, "kg"),
  16766. name: "Side",
  16767. image: {
  16768. source: "./media/characters/xuna/side.svg",
  16769. extra: 2184/1980
  16770. }
  16771. },
  16772. back: {
  16773. height: math.unit(12, "feet"),
  16774. weight: math.unit(410, "kg"),
  16775. name: "Back",
  16776. image: {
  16777. source: "./media/characters/xuna/back.svg",
  16778. extra: 2184/1980
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Nano glow",
  16785. height: math.unit(10, "nm")
  16786. },
  16787. {
  16788. name: "Micro floof",
  16789. height: math.unit(0.3, "m")
  16790. },
  16791. {
  16792. name: "Huggable softy boi",
  16793. height: math.unit(3.6576, "m"),
  16794. default: true
  16795. },
  16796. {
  16797. name: "Admirable floof",
  16798. height: math.unit(80, "meters")
  16799. },
  16800. {
  16801. name: "Gentle macro",
  16802. height: math.unit(300, "meters")
  16803. },
  16804. {
  16805. name: "Very careful floof",
  16806. height: math.unit(3200, "meters")
  16807. },
  16808. {
  16809. name: "The mega floof",
  16810. height: math.unit(36000, "meters")
  16811. },
  16812. {
  16813. name: "Giga-fur-Wicker",
  16814. height: math.unit(4800000, "meters")
  16815. },
  16816. {
  16817. name: "Licky world",
  16818. height: math.unit(20000000, "meters")
  16819. },
  16820. {
  16821. name: "Floofy cyan sun",
  16822. height: math.unit(1500000000, "meters")
  16823. },
  16824. {
  16825. name: "Milky Wicker",
  16826. height: math.unit(1000000000000000000000, "meters")
  16827. },
  16828. {
  16829. name: "The observing Wicker",
  16830. height: math.unit(999999999999999999999999999, "meters")
  16831. },
  16832. ]
  16833. )
  16834. };
  16835. characterMakers["Arokha Sieyes"] = () => {
  16836. return makeCharacter(
  16837. "Arokha Sieyes",
  16838. {
  16839. front: {
  16840. height: math.unit(5 + 9/12, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/arokha-sieyes/front.svg",
  16845. extra: 1425/1284,
  16846. bottom: 0.05
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(5 + 9/12, "feet")
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(30, "meters"),
  16858. default: true
  16859. },
  16860. ]
  16861. )
  16862. };
  16863. characterMakers["Arokh Sieyes"] = () => {
  16864. return makeCharacter(
  16865. "Arokh Sieyes",
  16866. {
  16867. front: {
  16868. height: math.unit(6, "feet"),
  16869. weight: math.unit(180, "lb"),
  16870. name: "Front",
  16871. image: {
  16872. source: "./media/characters/arokh-sieyes/front.svg",
  16873. extra: 1830/1769,
  16874. bottom: 0.01
  16875. }
  16876. },
  16877. },
  16878. [
  16879. {
  16880. name: "Normal",
  16881. height: math.unit(6, "feet")
  16882. },
  16883. {
  16884. name: "Macro",
  16885. height: math.unit(30, "meters"),
  16886. default: true
  16887. },
  16888. ]
  16889. )
  16890. };
  16891. characterMakers["Goldeneye"] = () => {
  16892. return makeCharacter(
  16893. "Goldeneye",
  16894. {
  16895. side: {
  16896. height: math.unit(13 + 1/12, "feet"),
  16897. weight: math.unit(8.5, "tonnes"),
  16898. name: "Side",
  16899. image: {
  16900. source: "./media/characters/goldeneye/side.svg",
  16901. extra: 1182/778,
  16902. bottom: 0.067
  16903. }
  16904. },
  16905. paw: {
  16906. height: math.unit(3.4, "feet"),
  16907. name: "Paw",
  16908. image: {
  16909. source: "./media/characters/goldeneye/paw.svg"
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(13 + 1/12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. )
  16921. };
  16922. characterMakers["Leonardo Lycheborne"] = () => {
  16923. return makeCharacter(
  16924. "Leonardo Lycheborne",
  16925. {
  16926. front: {
  16927. height: math.unit(6 + 1/12, "feet"),
  16928. weight: math.unit(210, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/leonardo-lycheborne/front.svg",
  16932. extra: 390/365,
  16933. bottom: 0.032
  16934. }
  16935. },
  16936. side: {
  16937. height: math.unit(6 + 1/12, "feet"),
  16938. weight: math.unit(210, "lb"),
  16939. name: "Side",
  16940. image: {
  16941. source: "./media/characters/leonardo-lycheborne/side.svg",
  16942. extra: 390/365,
  16943. bottom: 0.005
  16944. }
  16945. },
  16946. back: {
  16947. height: math.unit(6 + 1/12, "feet"),
  16948. weight: math.unit(210, "lb"),
  16949. name: "Back",
  16950. image: {
  16951. source: "./media/characters/leonardo-lycheborne/back.svg",
  16952. extra: 392/366,
  16953. bottom: 0.01
  16954. }
  16955. },
  16956. hand: {
  16957. height: math.unit(1.08, "feet"),
  16958. name: "Hand",
  16959. image: {
  16960. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16961. }
  16962. },
  16963. foot: {
  16964. height: math.unit(1.32, "feet"),
  16965. name: "Foot",
  16966. image: {
  16967. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16968. }
  16969. },
  16970. were: {
  16971. height: math.unit(20, "feet"),
  16972. weight: math.unit(7800, "lb"),
  16973. name: "Were",
  16974. image: {
  16975. source: "./media/characters/leonardo-lycheborne/were.svg",
  16976. extra: 308/294,
  16977. bottom: 0.048
  16978. }
  16979. },
  16980. feral: {
  16981. height: math.unit(7.5, "feet"),
  16982. weight: math.unit(600, "lb"),
  16983. name: "Feral",
  16984. image: {
  16985. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16986. extra: 210/186,
  16987. bottom: 0.108
  16988. }
  16989. },
  16990. taur: {
  16991. height: math.unit(11, "feet"),
  16992. weight: math.unit(3300, "lb"),
  16993. name: "Taur",
  16994. image: {
  16995. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16996. extra: 320/303,
  16997. bottom: 0.025
  16998. }
  16999. },
  17000. barghest: {
  17001. height: math.unit(11, "feet"),
  17002. weight: math.unit(1300, "lb"),
  17003. name: "Barghest",
  17004. image: {
  17005. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17006. extra: 323/302,
  17007. bottom: 0.027
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(6 + 1/12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. )
  17019. };
  17020. characterMakers["Jet"] = () => {
  17021. return makeCharacter(
  17022. "Jet",
  17023. {
  17024. front: {
  17025. height: math.unit(10, "feet"),
  17026. weight: math.unit(350, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/jet/front.svg",
  17030. extra: 2050/1980,
  17031. bottom: 0.013
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(10, "feet"),
  17036. weight: math.unit(350, "lb"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/jet/back.svg",
  17040. extra: 2050/1980,
  17041. bottom: 0.013
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Micro",
  17048. height: math.unit(6, "inches")
  17049. },
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(10, "feet"),
  17053. default: true
  17054. },
  17055. {
  17056. name: "Macro",
  17057. height: math.unit(100, "feet")
  17058. },
  17059. ]
  17060. )
  17061. };
  17062. characterMakers["Tanarath"] = () => {
  17063. return makeCharacter(
  17064. "Tanarath",
  17065. {
  17066. front: {
  17067. height: math.unit(15, "feet"),
  17068. weight: math.unit(2800, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/tanarath/front.svg",
  17072. extra: 2392/2220,
  17073. bottom: 0.03
  17074. }
  17075. },
  17076. back: {
  17077. height: math.unit(15, "feet"),
  17078. weight: math.unit(2800, "lb"),
  17079. name: "Back",
  17080. image: {
  17081. source: "./media/characters/tanarath/back.svg",
  17082. extra: 2392/2220,
  17083. bottom: 0.03
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(15, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. )
  17095. };
  17096. characterMakers["Patty CattyBatty"] = () => {
  17097. return makeCharacter(
  17098. "Patty CattyBatty",
  17099. {
  17100. front: {
  17101. height: math.unit(7 + 1/12, "feet"),
  17102. weight: math.unit(175, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/patty-cattybatty/front.svg",
  17106. extra: 908/874,
  17107. bottom: 0.025
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Micro",
  17114. height: math.unit(1, "inch")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(7 + 1/12, "feet")
  17119. },
  17120. {
  17121. name: "Mini Macro",
  17122. height: math.unit(155, "feet")
  17123. },
  17124. {
  17125. name: "Macro",
  17126. height: math.unit(1077, "feet")
  17127. },
  17128. {
  17129. name: "Mega Macro",
  17130. height: math.unit(47650, "feet"),
  17131. default: true
  17132. },
  17133. {
  17134. name: "Giga Macro",
  17135. height: math.unit(440, "miles")
  17136. },
  17137. {
  17138. name: "Tera Macro",
  17139. height: math.unit(8700, "miles")
  17140. },
  17141. {
  17142. name: "Planetary Macro",
  17143. height: math.unit(32700, "miles")
  17144. },
  17145. {
  17146. name: "Solar Macro",
  17147. height: math.unit(550000, "miles")
  17148. },
  17149. {
  17150. name: "Celestial Macro",
  17151. height: math.unit(2.5, "AU")
  17152. },
  17153. ]
  17154. )
  17155. };
  17156. characterMakers["Cappu"] = () => {
  17157. return makeCharacter(
  17158. "Cappu",
  17159. {
  17160. front: {
  17161. height: math.unit(4 + 5/12, "feet"),
  17162. weight: math.unit(90, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/cappu/front.svg",
  17166. extra: 1247/1152,
  17167. bottom: 0.012
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(4 + 5/12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. )
  17179. };
  17180. characterMakers["Sebi"] = () => {
  17181. return makeCharacter(
  17182. "Sebi",
  17183. {
  17184. frontDressed: {
  17185. height: math.unit(70, "cm"),
  17186. weight: math.unit(6, "kg"),
  17187. name: "Front (Dressed)",
  17188. image: {
  17189. source: "./media/characters/sebi/front-dressed.svg",
  17190. extra: 713.5/686.5,
  17191. bottom: 0.003
  17192. }
  17193. },
  17194. front: {
  17195. height: math.unit(70, "cm"),
  17196. weight: math.unit(5, "kg"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/sebi/front.svg",
  17200. extra: 713.5/686.5,
  17201. bottom: 0.003
  17202. }
  17203. }
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(70, "cm"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(8, "meters")
  17214. },
  17215. ]
  17216. )
  17217. };
  17218. characterMakers["Typhek"] = () => {
  17219. return makeCharacter(
  17220. "Typhek",
  17221. {
  17222. front: {
  17223. height: math.unit(6, "feet"),
  17224. weight: math.unit(150, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/typhek/front.svg",
  17228. extra: 1948/1929,
  17229. bottom: 0.025
  17230. }
  17231. },
  17232. side: {
  17233. height: math.unit(6, "feet"),
  17234. weight: math.unit(150, "lb"),
  17235. name: "Side",
  17236. image: {
  17237. source: "./media/characters/typhek/side.svg",
  17238. extra: 2034/2010,
  17239. bottom: 0.003
  17240. }
  17241. },
  17242. back: {
  17243. height: math.unit(6, "feet"),
  17244. weight: math.unit(150, "lb"),
  17245. name: "Back",
  17246. image: {
  17247. source: "./media/characters/typhek/back.svg",
  17248. extra: 2005/1978,
  17249. bottom: 0.004
  17250. }
  17251. },
  17252. palm: {
  17253. height: math.unit(1.2, "feet"),
  17254. name: "Palm",
  17255. image: {
  17256. source: "./media/characters/typhek/palm.svg"
  17257. }
  17258. },
  17259. fist: {
  17260. height: math.unit(1.1, "feet"),
  17261. name: "Fist",
  17262. image: {
  17263. source: "./media/characters/typhek/fist.svg"
  17264. }
  17265. },
  17266. foot: {
  17267. height: math.unit(1.57, "feet"),
  17268. name: "Foot",
  17269. image: {
  17270. source: "./media/characters/typhek/foot.svg"
  17271. }
  17272. },
  17273. sole: {
  17274. height: math.unit(2.05, "feet"),
  17275. name: "Sole",
  17276. image: {
  17277. source: "./media/characters/typhek/sole.svg"
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(40, "stories"),
  17285. default: true
  17286. },
  17287. {
  17288. name: "Megamacro",
  17289. height: math.unit(1, "mile")
  17290. },
  17291. {
  17292. name: "Gigamacro",
  17293. height: math.unit(4000, "solarradii")
  17294. },
  17295. {
  17296. name: "Universal",
  17297. height: math.unit(1.1, "universes")
  17298. }
  17299. ]
  17300. )
  17301. };
  17302. characterMakers["Kassy"] = () => {
  17303. return makeCharacter(
  17304. "Kassy",
  17305. {
  17306. side: {
  17307. height: math.unit(5 + 7/12, "feet"),
  17308. weight: math.unit(150, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/kassy/side.svg",
  17312. extra: 1280/1225,
  17313. bottom: 0.002
  17314. }
  17315. },
  17316. front: {
  17317. height: math.unit(5 + 7/12, "feet"),
  17318. weight: math.unit(150, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/kassy/front.svg",
  17322. extra: 1280/1225,
  17323. bottom: 0.025
  17324. }
  17325. },
  17326. back: {
  17327. height: math.unit(5 + 7/12, "feet"),
  17328. weight: math.unit(150, "lb"),
  17329. name: "Back",
  17330. image: {
  17331. source: "./media/characters/kassy/back.svg",
  17332. extra: 1280/1225,
  17333. bottom: 0.002
  17334. }
  17335. },
  17336. foot: {
  17337. height: math.unit(1.266, "feet"),
  17338. name: "Foot",
  17339. image: {
  17340. source: "./media/characters/kassy/foot.svg"
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(5 + 7/12, "feet")
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(137, "feet"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(1, "mile")
  17357. },
  17358. ]
  17359. )
  17360. };
  17361. characterMakers["Neil"] = () => {
  17362. return makeCharacter(
  17363. "Neil",
  17364. {
  17365. front: {
  17366. height: math.unit(6 + 1/12, "feet"),
  17367. weight: math.unit(200, "lb"),
  17368. name: "Front",
  17369. image: {
  17370. source: "./media/characters/neil/front.svg",
  17371. extra: 1326/1250,
  17372. bottom: 0.023
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 1/12, "feet"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Macro",
  17384. height: math.unit(200, "feet")
  17385. },
  17386. ]
  17387. )
  17388. };
  17389. characterMakers["Atticus"] = () => {
  17390. return makeCharacter(
  17391. "Atticus",
  17392. {
  17393. front: {
  17394. height: math.unit(5 + 9/12, "feet"),
  17395. weight: math.unit(190, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/atticus/front.svg",
  17399. extra: 2934/2785,
  17400. bottom: 0.025
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(5 + 9/12, "feet"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Macro",
  17412. height: math.unit(180, "feet")
  17413. },
  17414. ]
  17415. )
  17416. };
  17417. characterMakers["Milo"] = () => {
  17418. return makeCharacter(
  17419. "Milo",
  17420. {
  17421. side: {
  17422. height: math.unit(9, "feet"),
  17423. weight: math.unit(650, "lb"),
  17424. name: "Side",
  17425. image: {
  17426. source: "./media/characters/milo/side.svg",
  17427. extra: 2644/2310,
  17428. bottom: 0.032
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(9, "feet"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(300, "feet")
  17441. },
  17442. ]
  17443. )
  17444. };
  17445. characterMakers["Ijzer"] = () => {
  17446. return makeCharacter(
  17447. "Ijzer",
  17448. {
  17449. side: {
  17450. height: math.unit(8, "meters"),
  17451. weight: math.unit(90000, "kg"),
  17452. name: "Side",
  17453. image: {
  17454. source: "./media/characters/ijzer/side.svg",
  17455. extra: 2756/1600,
  17456. bottom: 0.01
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Small",
  17463. height: math.unit(3, "meters")
  17464. },
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(8, "meters"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Normal+",
  17472. height: math.unit(10, "meters")
  17473. },
  17474. {
  17475. name: "Bigger",
  17476. height: math.unit(24, "meters")
  17477. },
  17478. {
  17479. name: "Huge",
  17480. height: math.unit(80, "meters")
  17481. },
  17482. ]
  17483. )
  17484. };
  17485. characterMakers["Luca Cervicum"] = () => {
  17486. return makeCharacter(
  17487. "Luca Cervicum",
  17488. {
  17489. front: {
  17490. height: math.unit(6 + 2/12, "feet"),
  17491. weight: math.unit(153, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/luca-cervicum/front.svg",
  17495. extra: 370/327,
  17496. bottom: 0.015
  17497. }
  17498. },
  17499. back: {
  17500. height: math.unit(6 + 2/12, "feet"),
  17501. weight: math.unit(153, "lb"),
  17502. name: "Back",
  17503. image: {
  17504. source: "./media/characters/luca-cervicum/back.svg",
  17505. extra: 367/333,
  17506. bottom: 0.005
  17507. }
  17508. },
  17509. frontGear: {
  17510. height: math.unit(6 + 2/12, "feet"),
  17511. weight: math.unit(173, "lb"),
  17512. name: "Front (Gear)",
  17513. image: {
  17514. source: "./media/characters/luca-cervicum/front-gear.svg",
  17515. extra: 377/333,
  17516. bottom: 0.006
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(6 + 2/12, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. )
  17528. };
  17529. characterMakers["Oliver"] = () => {
  17530. return makeCharacter(
  17531. "Oliver",
  17532. {
  17533. front: {
  17534. height: math.unit(6 + 1/12, "feet"),
  17535. weight: math.unit(304, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/oliver/front.svg",
  17539. extra: 157/143,
  17540. bottom: 0.08
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(6 + 1/12, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. )
  17552. };
  17553. characterMakers["Shane"] = () => {
  17554. return makeCharacter(
  17555. "Shane",
  17556. {
  17557. front: {
  17558. height: math.unit(5 + 7/12, "feet"),
  17559. weight: math.unit(140, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/shane/front.svg",
  17563. extra: 304/289,
  17564. bottom: 0.005
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(5 + 7/12, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. )
  17576. };
  17577. characterMakers["Shin"] = () => {
  17578. return makeCharacter(
  17579. "Shin",
  17580. {
  17581. front: {
  17582. height: math.unit(5 + 9/12, "feet"),
  17583. weight: math.unit(178, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/shin/front.svg",
  17587. extra: 159/151,
  17588. bottom: 0.015
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(5 + 9/12, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. )
  17600. };
  17601. characterMakers["Xerxes"] = () => {
  17602. return makeCharacter(
  17603. "Xerxes",
  17604. {
  17605. front: {
  17606. height: math.unit(5 + 10/12, "feet"),
  17607. weight: math.unit(168, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/xerxes/front.svg",
  17611. extra: 282/260,
  17612. bottom: 0.045
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(5 + 10/12, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. )
  17624. };
  17625. characterMakers["Chaska"] = () => {
  17626. return makeCharacter(
  17627. "Chaska",
  17628. {
  17629. front: {
  17630. height: math.unit(6 + 7/12, "feet"),
  17631. weight: math.unit(208, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/chaska/front.svg",
  17635. extra: 332/319,
  17636. bottom: 0.015
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(6 + 7/12, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. )
  17648. };
  17649. characterMakers["Enuk"] = () => {
  17650. return makeCharacter(
  17651. "Enuk",
  17652. {
  17653. front: {
  17654. height: math.unit(5 + 8/12, "feet"),
  17655. weight: math.unit(208, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/enuk/front.svg",
  17659. extra: 437/406,
  17660. bottom: 0.02
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(5 + 8/12, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. )
  17672. };
  17673. characterMakers["Bruun"] = () => {
  17674. return makeCharacter(
  17675. "Bruun",
  17676. {
  17677. front: {
  17678. height: math.unit(5 + 10/12, "feet"),
  17679. weight: math.unit(252, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/bruun/front.svg",
  17683. extra: 197/187,
  17684. bottom: 0.012
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 10/12, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. )
  17696. };
  17697. characterMakers["Alexeev"] = () => {
  17698. return makeCharacter(
  17699. "Alexeev",
  17700. {
  17701. front: {
  17702. height: math.unit(6 + 10/12, "feet"),
  17703. weight: math.unit(255, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/alexeev/front.svg",
  17707. extra: 213/200,
  17708. bottom: 0.05
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(6 + 10/12, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. )
  17720. };
  17721. characterMakers["Evelyn"] = () => {
  17722. return makeCharacter(
  17723. "Evelyn",
  17724. {
  17725. front: {
  17726. height: math.unit(2 + 8/12, "feet"),
  17727. weight: math.unit(22, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/evelyn/front.svg",
  17731. extra: 208/180
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(2 + 8/12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. )
  17743. };
  17744. characterMakers["Inca"] = () => {
  17745. return makeCharacter(
  17746. "Inca",
  17747. {
  17748. front: {
  17749. height: math.unit(5 + 9/12, "feet"),
  17750. weight: math.unit(139, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/inca/front.svg",
  17754. extra: 294/291,
  17755. bottom: 0.03
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(5 + 9/12, "feet"),
  17763. default: true
  17764. },
  17765. ]
  17766. )
  17767. };
  17768. characterMakers["Magdalene"] = () => {
  17769. return makeCharacter(
  17770. "Magdalene",
  17771. {
  17772. front: {
  17773. height: math.unit(5 + 1/12, "feet"),
  17774. weight: math.unit(84, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/magdalene/front.svg",
  17778. extra: 293/273
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(5 + 1/12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. )
  17790. };
  17791. characterMakers["Mera"] = () => {
  17792. return makeCharacter(
  17793. "Mera",
  17794. {
  17795. front: {
  17796. height: math.unit(6 + 3/12, "feet"),
  17797. weight: math.unit(185, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/mera/front.svg",
  17801. extra: 291/277,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(6 + 3/12, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. )
  17814. };
  17815. characterMakers["Ceres"] = () => {
  17816. return makeCharacter(
  17817. "Ceres",
  17818. {
  17819. front: {
  17820. height: math.unit(6 + 7/12, "feet"),
  17821. weight: math.unit(160, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/ceres/front.svg",
  17825. extra: 1023/950,
  17826. bottom: 0.027
  17827. }
  17828. },
  17829. back: {
  17830. height: math.unit(6 + 7/12, "feet"),
  17831. weight: math.unit(160, "lb"),
  17832. name: "Back",
  17833. image: {
  17834. source: "./media/characters/ceres/back.svg",
  17835. extra: 1023/950
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(6 + 7/12, "feet"),
  17843. default: true
  17844. },
  17845. ]
  17846. )
  17847. };
  17848. characterMakers["Kris"] = () => {
  17849. return makeCharacter(
  17850. "Kris",
  17851. {
  17852. front: {
  17853. height: math.unit(5 + 10/12, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/kris/front.svg",
  17858. extra: 885/803,
  17859. bottom: 0.03
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(5 + 10/12, "feet"),
  17867. default: true
  17868. },
  17869. ]
  17870. )
  17871. };
  17872. characterMakers["Taluthus"] = () => {
  17873. return makeCharacter(
  17874. "Taluthus",
  17875. {
  17876. front: {
  17877. height: math.unit(7, "feet"),
  17878. weight: math.unit(120, "kg"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/taluthus/front.svg",
  17882. extra: 903/833,
  17883. bottom: 0.015
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(7, "feet"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "Macro",
  17895. height: math.unit(300, "feet")
  17896. },
  17897. ]
  17898. )
  17899. };
  17900. characterMakers["Dawn"] = () => {
  17901. return makeCharacter(
  17902. "Dawn",
  17903. {
  17904. front: {
  17905. height: math.unit(5 + 9/12, "feet"),
  17906. weight: math.unit(145, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/dawn/front.svg",
  17910. extra: 2094/2016,
  17911. bottom: 0.025
  17912. }
  17913. },
  17914. back: {
  17915. height: math.unit(5 + 9/12, "feet"),
  17916. weight: math.unit(160, "lb"),
  17917. name: "Back",
  17918. image: {
  17919. source: "./media/characters/dawn/back.svg",
  17920. extra: 2112/2080,
  17921. bottom: 0.005
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(6 + 7/12, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. )
  17933. };
  17934. characterMakers["Arador"] = () => {
  17935. return makeCharacter(
  17936. "Arador",
  17937. {
  17938. anthro: {
  17939. height: math.unit(8 + 3/12, "feet"),
  17940. weight: math.unit(450, "lb"),
  17941. name: "Anthro",
  17942. image: {
  17943. source: "./media/characters/arador/anthro.svg",
  17944. extra: 1835/1718,
  17945. bottom: 0.025
  17946. }
  17947. },
  17948. feral: {
  17949. height: math.unit(4, "feet"),
  17950. weight: math.unit(200, "lb"),
  17951. name: "Feral",
  17952. image: {
  17953. source: "./media/characters/arador/feral.svg",
  17954. extra: 1683/1514,
  17955. bottom: 0.07
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(8 + 3/12, "feet")
  17963. },
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(82.5, "feet"),
  17967. default: true
  17968. },
  17969. ]
  17970. )
  17971. };
  17972. characterMakers["Dharsi"] = () => {
  17973. return makeCharacter(
  17974. "Dharsi",
  17975. {
  17976. front: {
  17977. height: math.unit(5 + 10/12, "feet"),
  17978. weight: math.unit(125, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/dharsi/front.svg",
  17982. extra: 716/630,
  17983. bottom: 0.035
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Nano",
  17990. height: math.unit(100, "nm")
  17991. },
  17992. {
  17993. name: "Micro",
  17994. height: math.unit(2, "inches")
  17995. },
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(5 + 10/12, "feet"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(1000, "feet")
  18004. },
  18005. {
  18006. name: "Megamacro",
  18007. height: math.unit(10, "miles")
  18008. },
  18009. {
  18010. name: "Gigamacro",
  18011. height: math.unit(3000, "miles")
  18012. },
  18013. {
  18014. name: "Teramacro",
  18015. height: math.unit(500000, "miles")
  18016. },
  18017. {
  18018. name: "Teramacro+",
  18019. height: math.unit(30, "galaxies")
  18020. },
  18021. ]
  18022. )
  18023. };
  18024. characterMakers["Deathy"] = () => {
  18025. return makeCharacter(
  18026. "Deathy",
  18027. {
  18028. front: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/deathy/front.svg",
  18034. extra: 1552/1463,
  18035. bottom: 0.025
  18036. }
  18037. },
  18038. side: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Side",
  18042. image: {
  18043. source: "./media/characters/deathy/side.svg",
  18044. extra: 1604/1455,
  18045. bottom: 0.025
  18046. }
  18047. },
  18048. back: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Back",
  18052. image: {
  18053. source: "./media/characters/deathy/back.svg",
  18054. extra: 1580/1463,
  18055. bottom: 0.005
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Micro",
  18062. height: math.unit(5, "millimeters")
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(6 + 5/12, "feet"),
  18067. default: true
  18068. },
  18069. ]
  18070. )
  18071. };
  18072. characterMakers["Juniper"] = () => {
  18073. return makeCharacter(
  18074. "Juniper",
  18075. {
  18076. front: {
  18077. height: math.unit(16, "feet"),
  18078. weight: math.unit(4000, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/juniper/front.svg",
  18082. bottom: 0.04
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(16, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. )
  18094. };
  18095. characterMakers["Hipster"] = () => {
  18096. return makeCharacter(
  18097. "Hipster",
  18098. {
  18099. front: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/hipster/front.svg",
  18105. extra: 1312/1209,
  18106. bottom: 0.025
  18107. }
  18108. },
  18109. back: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(150, "lb"),
  18112. name: "Back",
  18113. image: {
  18114. source: "./media/characters/hipster/back.svg",
  18115. extra: 1281/1196,
  18116. bottom: 0.01
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(1, "mm")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(4, "inches"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(500, "feet")
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(1000, "miles")
  18137. },
  18138. ]
  18139. )
  18140. };
  18141. characterMakers["Tendirmuldr"] = () => {
  18142. return makeCharacter(
  18143. "Tendirmuldr",
  18144. {
  18145. front: {
  18146. height: math.unit(6, "feet"),
  18147. weight: math.unit(150, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/tendirmuldr/front.svg",
  18151. extra: 1878/1772,
  18152. bottom: 0.015
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Megamacro",
  18159. height: math.unit(1500, "miles"),
  18160. default: true
  18161. },
  18162. ]
  18163. )
  18164. };
  18165. characterMakers["Mort"] = () => {
  18166. return makeCharacter(
  18167. "Mort",
  18168. {
  18169. front: {
  18170. height: math.unit(14, "feet"),
  18171. weight: math.unit(12000, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/mort/front.svg",
  18175. extra: 365/318,
  18176. bottom: 0.01
  18177. }
  18178. },
  18179. side: {
  18180. height: math.unit(14, "feet"),
  18181. weight: math.unit(12000, "lb"),
  18182. name: "Side",
  18183. image: {
  18184. source: "./media/characters/mort/side.svg",
  18185. extra: 365/318,
  18186. bottom: 0.052
  18187. }
  18188. },
  18189. back: {
  18190. height: math.unit(14, "feet"),
  18191. weight: math.unit(12000, "lb"),
  18192. name: "Back",
  18193. image: {
  18194. source: "./media/characters/mort/back.svg",
  18195. extra: 371/332,
  18196. bottom: 0.18
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(14, "feet"),
  18204. default: true
  18205. },
  18206. ]
  18207. )
  18208. };
  18209. characterMakers["Lycoa"] = () => {
  18210. return makeCharacter(
  18211. "Lycoa",
  18212. {
  18213. front: {
  18214. height: math.unit(8, "feet"),
  18215. weight: math.unit(1, "ton"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/lycoa/front.svg",
  18219. extra: 1875/1789,
  18220. bottom: 0.022
  18221. }
  18222. },
  18223. back: {
  18224. height: math.unit(8, "feet"),
  18225. weight: math.unit(1, "ton"),
  18226. name: "Back",
  18227. image: {
  18228. source: "./media/characters/lycoa/back.svg",
  18229. extra: 1835/1781,
  18230. bottom: 0.03
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(8, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(30, "feet")
  18243. },
  18244. ]
  18245. )
  18246. };
  18247. characterMakers["Naldara"] = () => {
  18248. return makeCharacter(
  18249. "Naldara",
  18250. {
  18251. front: {
  18252. height: math.unit(4 + 2/12, "feet"),
  18253. weight: math.unit(70, "lb"),
  18254. name: "Front",
  18255. image: {
  18256. source: "./media/characters/naldara/front.svg",
  18257. extra: 841/720,
  18258. bottom: 0.04
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(4 + 2/12, "feet"),
  18266. default: true
  18267. },
  18268. ]
  18269. )
  18270. };
  18271. characterMakers["Briar"] = () => {
  18272. return makeCharacter(
  18273. "Briar",
  18274. {
  18275. front: {
  18276. height: math.unit(13 + 7/12, "feet"),
  18277. weight: math.unit(1500, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/briar/front.svg",
  18281. extra: 626/596,
  18282. bottom: 0.08
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(13 + 7/12, "feet"),
  18290. default: true
  18291. },
  18292. ]
  18293. )
  18294. };
  18295. characterMakers["Vanguard"] = () => {
  18296. return makeCharacter(
  18297. "Vanguard",
  18298. {
  18299. side: {
  18300. height: math.unit(10, "feet"),
  18301. weight: math.unit(500, "lb"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/vanguard/side.svg",
  18305. extra: 502/425,
  18306. bottom: 0.087
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(10, "feet"),
  18314. default: true
  18315. },
  18316. ]
  18317. )
  18318. };
  18319. characterMakers["Artemis"] = () => {
  18320. return makeCharacter(
  18321. "Artemis",
  18322. {
  18323. front: {
  18324. height: math.unit(7.5, "feet"),
  18325. weight: math.unit(2, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/artemis/front.svg",
  18329. extra: 1192/1075,
  18330. bottom: 0.07
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(7.5, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Enlarged",
  18342. height: math.unit(12, "feet")
  18343. },
  18344. ]
  18345. )
  18346. };
  18347. characterMakers["Kira"] = () => {
  18348. return makeCharacter(
  18349. "Kira",
  18350. {
  18351. front: {
  18352. height: math.unit(5 + 3/12, "feet"),
  18353. weight: math.unit(160, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/kira/front.svg",
  18357. extra: 906/786,
  18358. bottom: 0.01
  18359. }
  18360. },
  18361. back: {
  18362. height: math.unit(5 + 3/12, "feet"),
  18363. weight: math.unit(160, "lb"),
  18364. name: "Back",
  18365. image: {
  18366. source: "./media/characters/kira/back.svg",
  18367. extra: 882/757,
  18368. bottom: 0.005
  18369. }
  18370. },
  18371. frontDressed: {
  18372. height: math.unit(5 + 3/12, "feet"),
  18373. weight: math.unit(160, "lb"),
  18374. name: "Front (Dressed)",
  18375. image: {
  18376. source: "./media/characters/kira/front-dressed.svg",
  18377. extra: 906/786,
  18378. bottom: 0.01
  18379. }
  18380. },
  18381. beans: {
  18382. height: math.unit(0.92, "feet"),
  18383. name: "Beans",
  18384. image: {
  18385. source: "./media/characters/kira/beans.svg"
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Normal",
  18392. height: math.unit(5 + 3/12, "feet"),
  18393. default: true
  18394. },
  18395. ]
  18396. )
  18397. };
  18398. characterMakers["Scramble"] = () => {
  18399. return makeCharacter(
  18400. "Scramble",
  18401. {
  18402. front: {
  18403. height: math.unit(5 + 4/12, "feet"),
  18404. weight: math.unit(145, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/scramble/front.svg",
  18408. extra: 763/727,
  18409. bottom: 0.05
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(5 + 4/12, "feet"),
  18414. weight: math.unit(145, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/scramble/back.svg",
  18418. extra: 826/737,
  18419. bottom: 0.002
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(5 + 4/12, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. )
  18431. };
  18432. characterMakers["Biscuit"] = () => {
  18433. return makeCharacter(
  18434. "Biscuit",
  18435. {
  18436. side: {
  18437. height: math.unit(6 + 2/12, "feet"),
  18438. weight: math.unit(190, "lb"),
  18439. name: "Side",
  18440. image: {
  18441. source: "./media/characters/biscuit/side.svg",
  18442. extra: 858/791,
  18443. bottom: 0.044
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(6 + 2/12, "feet"),
  18451. default: true
  18452. },
  18453. ]
  18454. )
  18455. };
  18456. characterMakers["Poffin"] = () => {
  18457. return makeCharacter(
  18458. "Poffin",
  18459. {
  18460. front: {
  18461. height: math.unit(5 + 2/12, "feet"),
  18462. weight: math.unit(120, "lb"),
  18463. name: "Front",
  18464. image: {
  18465. source: "./media/characters/poffin/front.svg",
  18466. extra: 786/680,
  18467. bottom: 0.005
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(5 + 2/12, "feet"),
  18475. default: true
  18476. },
  18477. ]
  18478. )
  18479. };
  18480. characterMakers["Dhari"] = () => {
  18481. return makeCharacter(
  18482. "Dhari",
  18483. {
  18484. front: {
  18485. height: math.unit(6 + 3/12, "feet"),
  18486. weight: math.unit(519, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/dhari/front.svg",
  18490. extra: 1048/946,
  18491. bottom: 0.015
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(6 + 3/12, "feet"),
  18496. weight: math.unit(519, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/dhari/back.svg",
  18500. extra: 1048/931,
  18501. bottom: 0.005
  18502. }
  18503. },
  18504. frontDressed: {
  18505. height: math.unit(6 + 3/12, "feet"),
  18506. weight: math.unit(519, "lb"),
  18507. name: "Front (Dressed)",
  18508. image: {
  18509. source: "./media/characters/dhari/front-dressed.svg",
  18510. extra: 1713/1546,
  18511. bottom: 0.02
  18512. }
  18513. },
  18514. backDressed: {
  18515. height: math.unit(6 + 3/12, "feet"),
  18516. weight: math.unit(519, "lb"),
  18517. name: "Back (Dressed)",
  18518. image: {
  18519. source: "./media/characters/dhari/back-dressed.svg",
  18520. extra: 1699/1537,
  18521. bottom: 0.01
  18522. }
  18523. },
  18524. maw: {
  18525. height: math.unit(0.95, "feet"),
  18526. name: "Maw",
  18527. image: {
  18528. source: "./media/characters/dhari/maw.svg"
  18529. }
  18530. },
  18531. wereFront: {
  18532. height: math.unit(12 + 8/12, "feet"),
  18533. weight: math.unit(4000, "lb"),
  18534. name: "Front (Were)",
  18535. image: {
  18536. source: "./media/characters/dhari/were-front.svg",
  18537. extra: 1065/969,
  18538. bottom: 0.015
  18539. }
  18540. },
  18541. wereBack: {
  18542. height: math.unit(12 + 8/12, "feet"),
  18543. weight: math.unit(4000, "lb"),
  18544. name: "Back (Were)",
  18545. image: {
  18546. source: "./media/characters/dhari/were-back.svg",
  18547. extra: 1065/969,
  18548. bottom: 0.012
  18549. }
  18550. },
  18551. wereMaw: {
  18552. height: math.unit(0.625, "meters"),
  18553. name: "Maw (Were)",
  18554. image: {
  18555. source: "./media/characters/dhari/were-maw.svg"
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(6 + 3/12, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. )
  18567. };
  18568. characterMakers["Rena Dyne"] = () => {
  18569. return makeCharacter(
  18570. "Rena Dyne",
  18571. {
  18572. anthro: {
  18573. height: math.unit(5 + 7/12, "feet"),
  18574. weight: math.unit(175, "lb"),
  18575. name: "Anthro",
  18576. image: {
  18577. source: "./media/characters/rena-dyne/anthro.svg",
  18578. extra: 1849/1785,
  18579. bottom: 0.005
  18580. }
  18581. },
  18582. taur: {
  18583. height: math.unit(15 + 6/12, "feet"),
  18584. weight: math.unit(8000, "lb"),
  18585. name: "Taur",
  18586. image: {
  18587. source: "./media/characters/rena-dyne/taur.svg",
  18588. extra: 2315/2234,
  18589. bottom: 0.033
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(5 + 7/12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. )
  18601. };
  18602. characterMakers["Weremeep"] = () => {
  18603. return makeCharacter(
  18604. "Weremeep",
  18605. {
  18606. front: {
  18607. height: math.unit(8, "feet"),
  18608. weight: math.unit(600, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/weremeep/front.svg",
  18612. extra: 967/862,
  18613. bottom: 0.01
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(8, "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Lorg",
  18625. height: math.unit(12, "feet")
  18626. },
  18627. {
  18628. name: "Oh Lawd She Comin'",
  18629. height: math.unit(20, "feet")
  18630. },
  18631. ]
  18632. )
  18633. };
  18634. characterMakers["Reza"] = () => {
  18635. return makeCharacter(
  18636. "Reza",
  18637. {
  18638. front: {
  18639. height: math.unit(4, "feet"),
  18640. weight: math.unit(90, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/reza/front.svg",
  18644. extra: 1183/1111,
  18645. bottom: 0.017
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(4, "feet"),
  18650. weight: math.unit(90, "lb"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/reza/back.svg",
  18654. extra: 1183/1111,
  18655. bottom: 0.01
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(4, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. )
  18667. };
  18668. characterMakers["Athea"] = () => {
  18669. return makeCharacter(
  18670. "Athea",
  18671. {
  18672. side: {
  18673. height: math.unit(15, "feet"),
  18674. weight: math.unit(14, "tons"),
  18675. name: "Side",
  18676. image: {
  18677. source: "./media/characters/athea/side.svg",
  18678. extra: 960/540,
  18679. bottom: 0.003
  18680. }
  18681. },
  18682. sitting: {
  18683. height: math.unit(6*2.85, "feet"),
  18684. weight: math.unit(14, "tons"),
  18685. name: "Sitting",
  18686. image: {
  18687. source: "./media/characters/athea/sitting.svg",
  18688. extra: 621/581,
  18689. bottom: 0.075
  18690. }
  18691. },
  18692. maw: {
  18693. height: math.unit(7.59498031496063, "feet"),
  18694. name: "Maw",
  18695. image: {
  18696. source: "./media/characters/athea/maw.svg"
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Lap Cat",
  18703. height: math.unit(2.5, "feet")
  18704. },
  18705. {
  18706. name: "Minimacro",
  18707. height: math.unit(15, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Macro",
  18712. height: math.unit(120, "feet")
  18713. },
  18714. {
  18715. name: "Macro+",
  18716. height: math.unit(640, "feet")
  18717. },
  18718. ]
  18719. )
  18720. };
  18721. characterMakers["Seroko"] = () => {
  18722. return makeCharacter(
  18723. "Seroko",
  18724. {
  18725. front: {
  18726. height: math.unit(8 + 8/12, "feet"),
  18727. weight: math.unit(130, "kg"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/seroko/front.svg",
  18731. extra: 1385/1280,
  18732. bottom: 0.025
  18733. }
  18734. },
  18735. back: {
  18736. height: math.unit(8 + 8/12, "feet"),
  18737. weight: math.unit(130, "kg"),
  18738. name: "Back",
  18739. image: {
  18740. source: "./media/characters/seroko/back.svg",
  18741. extra: 1369/1238,
  18742. bottom: 0.018
  18743. }
  18744. },
  18745. frontDressed: {
  18746. height: math.unit(8 + 8/12, "feet"),
  18747. weight: math.unit(130, "kg"),
  18748. name: "Front (Dressed)",
  18749. image: {
  18750. source: "./media/characters/seroko/front-dressed.svg",
  18751. extra: 1366/1275,
  18752. bottom: 0.03
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(8 + 8/12, "feet"),
  18760. default: true
  18761. },
  18762. ]
  18763. )
  18764. };
  18765. characterMakers["Quatzi"] = () => {
  18766. return makeCharacter(
  18767. "Quatzi",
  18768. {
  18769. front: {
  18770. height: math.unit(5.5, "feet"),
  18771. weight: math.unit(160, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/quatzi/front.svg",
  18775. extra: 2346/2242,
  18776. bottom: 0.015
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(5.5, "feet"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "Big",
  18788. height: math.unit(7.7, "feet")
  18789. },
  18790. ]
  18791. )
  18792. };
  18793. characterMakers["Sen"] = () => {
  18794. return makeCharacter(
  18795. "Sen",
  18796. {
  18797. front: {
  18798. height: math.unit(5 + 11/12, "feet"),
  18799. weight: math.unit(180, "lb"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/sen/front.svg",
  18803. extra: 1321/1254,
  18804. bottom: 0.015
  18805. }
  18806. },
  18807. side: {
  18808. height: math.unit(5 + 11/12, "feet"),
  18809. weight: math.unit(180, "lb"),
  18810. name: "Side",
  18811. image: {
  18812. source: "./media/characters/sen/side.svg",
  18813. extra: 1321/1254,
  18814. bottom: 0.007
  18815. }
  18816. },
  18817. back: {
  18818. height: math.unit(5 + 11/12, "feet"),
  18819. weight: math.unit(180, "lb"),
  18820. name: "Back",
  18821. image: {
  18822. source: "./media/characters/sen/back.svg",
  18823. extra: 1321/1254
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(5 + 11/12, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. )
  18835. };
  18836. characterMakers["Fruity"] = () => {
  18837. return makeCharacter(
  18838. "Fruity",
  18839. {
  18840. front: {
  18841. height: math.unit(166.6, "cm"),
  18842. weight: math.unit(66.6, "kg"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/fruity/front.svg",
  18846. extra: 1510/1386,
  18847. bottom: 0.04
  18848. }
  18849. },
  18850. back: {
  18851. height: math.unit(166.6, "cm"),
  18852. weight: math.unit(66.6, "lb"),
  18853. name: "Back",
  18854. image: {
  18855. source: "./media/characters/fruity/back.svg",
  18856. extra: 1563/1435,
  18857. bottom: 0.005
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Normal",
  18864. height: math.unit(166.6, "cm"),
  18865. default: true
  18866. },
  18867. {
  18868. name: "Demonic",
  18869. height: math.unit(166.6, "feet")
  18870. },
  18871. ]
  18872. )
  18873. };
  18874. characterMakers["Zost"] = () => {
  18875. return makeCharacter(
  18876. "Zost",
  18877. {
  18878. side: {
  18879. height: math.unit(10, "feet"),
  18880. weight: math.unit(500, "lb"),
  18881. name: "Side",
  18882. image: {
  18883. source: "./media/characters/zost/side.svg",
  18884. extra: 966/880,
  18885. bottom: 0.075
  18886. }
  18887. },
  18888. mawFront: {
  18889. height: math.unit(1.08, "meters"),
  18890. name: "Maw (Front)",
  18891. image: {
  18892. source: "./media/characters/zost/maw-front.svg"
  18893. }
  18894. },
  18895. mawSide: {
  18896. height: math.unit(2.66, "feet"),
  18897. name: "Maw (Side)",
  18898. image: {
  18899. source: "./media/characters/zost/maw-side.svg"
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(10, "feet"),
  18907. default: true
  18908. },
  18909. ]
  18910. )
  18911. };
  18912. characterMakers["Luci"] = () => {
  18913. return makeCharacter(
  18914. "Luci",
  18915. {
  18916. front: {
  18917. height: math.unit(5 + 4/12, "feet"),
  18918. weight: math.unit(120, "lb"),
  18919. name: "Front",
  18920. image: {
  18921. source: "./media/characters/luci/front.svg",
  18922. extra: 1985/1884,
  18923. bottom: 0.04
  18924. }
  18925. },
  18926. back: {
  18927. height: math.unit(5 + 4/12, "feet"),
  18928. weight: math.unit(120, "lb"),
  18929. name: "Back",
  18930. image: {
  18931. source: "./media/characters/luci/back.svg",
  18932. extra: 1892/1791,
  18933. bottom: 0.002
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(5 + 4/12, "feet"),
  18941. default: true
  18942. },
  18943. ]
  18944. )
  18945. };
  18946. characterMakers["2th"] = () => {
  18947. return makeCharacter(
  18948. "2th",
  18949. {
  18950. front: {
  18951. height: math.unit(1500, "feet"),
  18952. weight: math.unit(3.8e6, "tons"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/2th/front.svg",
  18956. extra: 3489/3350,
  18957. bottom: 0.1
  18958. }
  18959. },
  18960. foot: {
  18961. height: math.unit(461, "feet"),
  18962. name: "Foot",
  18963. image: {
  18964. source: "./media/characters/2th/foot.svg"
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "\"Micro\"",
  18971. height: math.unit(15 + 7/12, "feet")
  18972. },
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(1500, "feet"),
  18976. default: true
  18977. },
  18978. {
  18979. name: "Macro",
  18980. height: math.unit(5000, "feet")
  18981. },
  18982. {
  18983. name: "Megamacro",
  18984. height: math.unit(15, "miles")
  18985. },
  18986. {
  18987. name: "Gigamacro",
  18988. height: math.unit(4000, "miles")
  18989. },
  18990. {
  18991. name: "Galactic",
  18992. height: math.unit(50, "AU")
  18993. },
  18994. ]
  18995. )
  18996. };
  18997. characterMakers["Amethyst"] = () => {
  18998. return makeCharacter(
  18999. "Amethyst",
  19000. {
  19001. front: {
  19002. height: math.unit(5 + 6/12, "feet"),
  19003. weight: math.unit(220, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/amethyst/front.svg",
  19007. extra: 2078/2040,
  19008. bottom: 0.045
  19009. }
  19010. },
  19011. back: {
  19012. height: math.unit(5 + 6/12, "feet"),
  19013. weight: math.unit(220, "lb"),
  19014. name: "Back",
  19015. image: {
  19016. source: "./media/characters/amethyst/back.svg",
  19017. extra: 2021/1989,
  19018. bottom: 0.02
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 6/12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. )
  19030. };
  19031. characterMakers["Yumi Akiyama"] = () => {
  19032. return makeCharacter(
  19033. "Yumi Akiyama",
  19034. {
  19035. front: {
  19036. height: math.unit(4 + 11/12, "feet"),
  19037. weight: math.unit(120, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/yumi-akiyama/front.svg",
  19041. extra: 1327/1235,
  19042. bottom: 0.02
  19043. }
  19044. },
  19045. back: {
  19046. height: math.unit(4 + 11/12, "feet"),
  19047. weight: math.unit(120, "lb"),
  19048. name: "Back",
  19049. image: {
  19050. source: "./media/characters/yumi-akiyama/back.svg",
  19051. extra: 1287/1245,
  19052. bottom: 0.002
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Galactic",
  19059. height: math.unit(50, "galaxies"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Universal",
  19064. height: math.unit(100, "universes")
  19065. },
  19066. ]
  19067. )
  19068. };
  19069. //characters
  19070. function makeCharacters() {
  19071. const results = [];
  19072. Object.entries(characterMakers).forEach(([key, value]) => {
  19073. results.push({
  19074. name: key,
  19075. constructor: value
  19076. });
  19077. });
  19078. return results;
  19079. }