less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19735 line
522 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(info, viewInfo, defaultSizes) {
  21. views = {};
  22. Object.entries(viewInfo).forEach(([key, value]) => {
  23. views[key] = {
  24. attributes: {
  25. height: {
  26. name: "Height",
  27. power: 1,
  28. type: "length",
  29. base: value.height
  30. }
  31. },
  32. image: value.image,
  33. name: value.name,
  34. info: value.info,
  35. rename: value.rename
  36. }
  37. if (value.weight) {
  38. views[key].attributes.weight = {
  39. name: "Mass",
  40. power: 3,
  41. type: "mass",
  42. base: value.weight
  43. };
  44. }
  45. });
  46. const entity = makeEntity(info, views, defaultSizes);
  47. return entity;
  48. }
  49. characterMakers["Fen"] = () => {
  50. return makeCharacter(
  51. {
  52. name: "Fen",
  53. species: "Crux",
  54. description: {
  55. title: "Bio",
  56. text: "Very furry. Sheds on everything."
  57. }
  58. },
  59. {
  60. back: {
  61. height: math.unit(2.2428, "meter"),
  62. weight: math.unit(124.738, "kg"),
  63. name: "Back",
  64. image: {
  65. source: "./media/characters/fen/back.svg",
  66. extra: 1025/935
  67. },
  68. info: {
  69. description: {
  70. mode: "append",
  71. text: "\n\nHe is not currently looking at you."
  72. }
  73. }
  74. },
  75. full: {
  76. height: math.unit(1.34, "meter"),
  77. weight: math.unit(225, "kg"),
  78. name: "Full",
  79. image: {
  80. source: "./media/characters/fen/full.svg"
  81. },
  82. info: {
  83. description: {
  84. mode: "append",
  85. text: "\n\nMunch."
  86. }
  87. }
  88. },
  89. kneeling: {
  90. height: math.unit(5.4, "feet"),
  91. weight: math.unit(124.738, "kg"),
  92. name: "Kneeling",
  93. image: {
  94. source: "./media/characters/fen/kneeling.svg",
  95. extra: 563/507
  96. }
  97. },
  98. },
  99. [
  100. {
  101. name: "Normal",
  102. height: math.unit(2.2428, "meter")
  103. },
  104. {
  105. name: "Big",
  106. height: math.unit(12, "feet")
  107. },
  108. {
  109. name: "Minimacro",
  110. height: math.unit(30, "meter"),
  111. default: true,
  112. info: {
  113. description: {
  114. mode: "append",
  115. text: "\n\nTOO DAMN BIG"
  116. }
  117. }
  118. },
  119. {
  120. name: "Macro",
  121. height: math.unit(100, "meter"),
  122. info: {
  123. description: {
  124. mode: "append",
  125. text: "\n\nTOO DAMN BIG"
  126. }
  127. }
  128. },
  129. {
  130. name: "Macro+",
  131. height: math.unit(1000, "meter")
  132. },
  133. {
  134. name: "Megamacro",
  135. height: math.unit(10, "miles")
  136. }
  137. ]
  138. )
  139. };
  140. characterMakers["Sofia"] = () => {
  141. return makeCharacter(
  142. { name: "Sofia" },
  143. {
  144. front: {
  145. height: math.unit(183, "cm"),
  146. weight: math.unit(80, "kg"),
  147. name: "Front",
  148. image: {
  149. source: "./media/characters/sofia/front.svg",
  150. bottom: 0.01,
  151. extra: 1
  152. }
  153. },
  154. frontAlt: {
  155. height: math.unit(183, "cm"),
  156. weight: math.unit(80, "kg"),
  157. name: "Front (alt)",
  158. image: {
  159. source: "./media/characters/sofia/front-alt.svg"
  160. }
  161. },
  162. back: {
  163. height: math.unit(183, "cm"),
  164. weight: math.unit(80, "kg"),
  165. name: "Back",
  166. image: {
  167. source: "./media/characters/sofia/back.svg"
  168. }
  169. },
  170. },
  171. [
  172. {
  173. name: "Normal",
  174. height: math.unit(1.83, "meter")
  175. },
  176. {
  177. name: "Macro",
  178. height: math.unit(96, "feet"),
  179. default: true
  180. },
  181. {
  182. name: "Megamerger",
  183. height: math.unit(650, "feet")
  184. },
  185. ]
  186. )
  187. };
  188. characterMakers["March"] = () => {
  189. return makeCharacter(
  190. { name: "March" },
  191. {
  192. front: {
  193. height: math.unit(7, "feet"),
  194. weight: math.unit(100, "kg"),
  195. name: "Front",
  196. image: {
  197. source: "./media/characters/march/front.svg",
  198. extra: 1,
  199. bottom: 0.015
  200. }
  201. },
  202. foot: {
  203. height: math.unit(0.9, "feet"),
  204. name: "Foot",
  205. image: {
  206. source: "./media/characters/march/foot.svg"
  207. }
  208. },
  209. },
  210. [
  211. {
  212. name: "Normal",
  213. height: math.unit(7.9, "feet")
  214. },
  215. {
  216. name: "Macro",
  217. height: math.unit(220, "meters")
  218. },
  219. {
  220. name: "Megamacro",
  221. height: math.unit(2.98, "km"),
  222. default: true
  223. },
  224. {
  225. name: "Gigamacro",
  226. height: math.unit(15963, "km")
  227. },
  228. {
  229. name: "Teramacro",
  230. height: math.unit(2980000000, "km")
  231. },
  232. {
  233. name: "Examacro",
  234. height: math.unit(250, "parsecs")
  235. },
  236. ]
  237. )
  238. };
  239. characterMakers["Noir"] = () => {
  240. return makeCharacter(
  241. { name: "Noir" },
  242. {
  243. front: {
  244. height: math.unit(6, "feet"),
  245. weight: math.unit(60, "kg"),
  246. name: "Front",
  247. image: {
  248. source: "./media/characters/noir/front.svg",
  249. extra: 1,
  250. bottom: 0.032
  251. }
  252. },
  253. },
  254. [
  255. {
  256. name: "Normal",
  257. height: math.unit(6.6, "feet")
  258. },
  259. {
  260. name: "Macro",
  261. height: math.unit(500, "feet")
  262. },
  263. {
  264. name: "Megamacro",
  265. height: math.unit(2.5, "km"),
  266. default: true
  267. },
  268. {
  269. name: "Gigamacro",
  270. height: math.unit(22500, "km")
  271. },
  272. {
  273. name: "Teramacro",
  274. height: math.unit(2500000000, "km")
  275. },
  276. {
  277. name: "Examacro",
  278. height: math.unit(200, "parsecs")
  279. },
  280. ]
  281. )
  282. };
  283. characterMakers["Okuri"] = () => {
  284. return makeCharacter(
  285. { name: "Okuri" },
  286. {
  287. front: {
  288. height: math.unit(7, "feet"),
  289. weight: math.unit(100, "kg"),
  290. name: "Front",
  291. image: {
  292. source: "./media/characters/okuri/front.svg",
  293. extra: 1,
  294. bottom: 0.037
  295. }
  296. },
  297. back: {
  298. height: math.unit(7, "feet"),
  299. weight: math.unit(100, "kg"),
  300. name: "Back",
  301. image: {
  302. source: "./media/characters/okuri/back.svg",
  303. extra: 1,
  304. bottom: 0.007
  305. }
  306. },
  307. },
  308. [
  309. {
  310. name: "Megamacro",
  311. height: math.unit(100, "miles"),
  312. default: true
  313. },
  314. ]
  315. )
  316. };
  317. characterMakers["Manny"] = () => {
  318. return makeCharacter(
  319. { name: "Manny" },
  320. {
  321. front: {
  322. height: math.unit(7, "feet"),
  323. weight: math.unit(100, "kg"),
  324. name: "Front",
  325. image: {
  326. source: "./media/characters/manny/front.svg",
  327. extra: 1,
  328. bottom: 0.06
  329. }
  330. },
  331. back: {
  332. height: math.unit(7, "feet"),
  333. weight: math.unit(100, "kg"),
  334. name: "Back",
  335. image: {
  336. source: "./media/characters/manny/back.svg",
  337. extra: 1,
  338. bottom: 0.014
  339. }
  340. },
  341. },
  342. [
  343. {
  344. name: "Normal",
  345. height: math.unit(7, "feet"),
  346. },
  347. {
  348. name: "Macro",
  349. height: math.unit(78, "feet"),
  350. default: true
  351. },
  352. {
  353. name: "Macro+",
  354. height: math.unit(300, "meters")
  355. },
  356. {
  357. name: "Macro++",
  358. height: math.unit(2400, "meters")
  359. },
  360. {
  361. name: "Megamacro",
  362. height: math.unit(5167, "meters")
  363. },
  364. {
  365. name: "Gigamacro",
  366. height: math.unit(41769, "miles")
  367. },
  368. ]
  369. )
  370. };
  371. characterMakers["Adake"] = () => {
  372. return makeCharacter(
  373. { name: "Adake" },
  374. {
  375. front: {
  376. height: math.unit(7, "feet"),
  377. weight: math.unit(100, "kg"),
  378. name: "Front",
  379. image: {
  380. source: "./media/characters/adake/front-1.svg"
  381. }
  382. },
  383. frontAlt: {
  384. height: math.unit(7, "feet"),
  385. weight: math.unit(100, "kg"),
  386. name: "Front (Alt)",
  387. image: {
  388. source: "./media/characters/adake/front-2.svg",
  389. extra: 1,
  390. bottom: 0.01
  391. }
  392. },
  393. back: {
  394. height: math.unit(7, "feet"),
  395. weight: math.unit(100, "kg"),
  396. name: "Back",
  397. image: {
  398. source: "./media/characters/adake/back.svg",
  399. }
  400. },
  401. kneel: {
  402. height: math.unit(5.385, "feet"),
  403. weight: math.unit(100, "kg"),
  404. name: "Kneeling",
  405. image: {
  406. source: "./media/characters/adake/kneel.svg",
  407. bottom: 0.052
  408. }
  409. },
  410. },
  411. [
  412. {
  413. name: "Normal",
  414. height: math.unit(7, "feet"),
  415. },
  416. {
  417. name: "Macro",
  418. height: math.unit(78, "feet"),
  419. default: true
  420. },
  421. {
  422. name: "Macro+",
  423. height: math.unit(300, "meters")
  424. },
  425. {
  426. name: "Macro++",
  427. height: math.unit(2400, "meters")
  428. },
  429. {
  430. name: "Megamacro",
  431. height: math.unit(5167, "meters")
  432. },
  433. {
  434. name: "Gigamacro",
  435. height: math.unit(41769, "miles")
  436. },
  437. ]
  438. )
  439. };
  440. characterMakers["Elijah"] = () => {
  441. return makeCharacter(
  442. { name: "Elijah" },
  443. {
  444. side: {
  445. height: math.unit(7, "feet"),
  446. weight: math.unit(50, "kg"),
  447. name: "Side",
  448. image: {
  449. source: "./media/characters/elijah/side.svg",
  450. extra: 1,
  451. bottom: 0.065
  452. }
  453. },
  454. foot: {
  455. height: math.unit(2.05, "feet"),
  456. name: "Foot",
  457. image: {
  458. source: "./media/characters/elijah/foot.svg"
  459. }
  460. },
  461. },
  462. [
  463. {
  464. name: "Normal",
  465. height: math.unit(1.65, "meters")
  466. },
  467. {
  468. name: "Macro",
  469. height: math.unit(55, "meters"),
  470. default: true
  471. },
  472. {
  473. name: "Macro+",
  474. height: math.unit(105, "meters")
  475. },
  476. ]
  477. )
  478. };
  479. characterMakers["Rai"] = () => {
  480. return makeCharacter(
  481. { name: "Rai" },
  482. {
  483. front: {
  484. height: math.unit(11, "feet"),
  485. weight: math.unit(80, "kg"),
  486. name: "Front",
  487. image: {
  488. source: "./media/characters/rai/front.svg",
  489. extra: 1,
  490. bottom: 0.03
  491. }
  492. },
  493. side: {
  494. height: math.unit(11, "feet"),
  495. weight: math.unit(80, "kg"),
  496. name: "Side",
  497. image: {
  498. source: "./media/characters/rai/side.svg"
  499. }
  500. },
  501. back: {
  502. height: math.unit(11, "feet"),
  503. weight: math.unit(80, "lb"),
  504. name: "Back",
  505. image: {
  506. source: "./media/characters/rai/back.svg",
  507. extra: 1,
  508. bottom: 0.01
  509. }
  510. },
  511. feral: {
  512. height: math.unit(11, "feet"),
  513. weight: math.unit(800, "lb"),
  514. name: "Feral",
  515. image: {
  516. source: "./media/characters/rai/feral.svg",
  517. extra: 1050/659 ,
  518. bottom: 0.07
  519. }
  520. },
  521. maw: {
  522. height: math.unit(6/3.81416, "feet"),
  523. name: "Maw",
  524. image: {
  525. source: "./media/characters/rai/maw.svg"
  526. }
  527. },
  528. },
  529. [
  530. {
  531. name: "Normal",
  532. height: math.unit(11, "feet")
  533. },
  534. {
  535. name: "Macro",
  536. height: math.unit(302, "feet"),
  537. default: true
  538. },
  539. ]
  540. )
  541. };
  542. characterMakers["Jazzy"] = () => {
  543. return makeCharacter(
  544. { name: "Jazzy" },
  545. {
  546. front: {
  547. height: math.unit(7, "feet"),
  548. weight: math.unit(80, "kg"),
  549. name: "Front",
  550. image: {
  551. source: "./media/characters/jazzy/front.svg",
  552. extra: 1,
  553. bottom: 0.01
  554. }
  555. },
  556. back: {
  557. height: math.unit(7, "feet"),
  558. weight: math.unit(80, "kg"),
  559. name: "Back",
  560. image: {
  561. source: "./media/characters/jazzy/back.svg",
  562. extra: 1,
  563. bottom: 0.01
  564. }
  565. },
  566. },
  567. [
  568. {
  569. name: "Macro",
  570. height: math.unit(216, "feet"),
  571. default: true
  572. },
  573. ]
  574. )
  575. };
  576. characterMakers["Flamm"] = () => {
  577. return makeCharacter(
  578. { name: "Flamm" },
  579. {
  580. front: {
  581. height: math.unit(7, "feet"),
  582. weight: math.unit(80, "kg"),
  583. name: "Front",
  584. image: {
  585. source: "./media/characters/flamm/front.svg",
  586. extra: 1,
  587. bottom: 0.02
  588. }
  589. },
  590. },
  591. [
  592. {
  593. name: "Normal",
  594. height: math.unit(9.5, "feet")
  595. },
  596. {
  597. name: "Macro",
  598. height: math.unit(200, "feet"),
  599. default: true
  600. },
  601. ]
  602. )
  603. };
  604. characterMakers["Zephiro"] = () => {
  605. return makeCharacter(
  606. { name: "Zephiro" },
  607. {
  608. front: {
  609. height: math.unit(7, "feet"),
  610. weight: math.unit(80, "kg"),
  611. name: "Front",
  612. image: {
  613. source: "./media/characters/zephiro/front.svg",
  614. extra: 2309/2162 ,
  615. bottom: 0.069
  616. }
  617. },
  618. side: {
  619. height: math.unit(7, "feet"),
  620. weight: math.unit(80, "kg"),
  621. name: "Side",
  622. image: {
  623. source: "./media/characters/zephiro/side.svg",
  624. extra: 2403/2279 ,
  625. bottom: 0.015
  626. }
  627. },
  628. back: {
  629. height: math.unit(7, "feet"),
  630. weight: math.unit(80, "kg"),
  631. name: "Back",
  632. image: {
  633. source: "./media/characters/zephiro/back.svg",
  634. extra: 2373/2244 ,
  635. bottom: 0.013
  636. }
  637. },
  638. },
  639. [
  640. {
  641. name: "Micro",
  642. height: math.unit(3, "inches")
  643. },
  644. {
  645. name: "Normal",
  646. height: math.unit(5 + 3/12, "feet"),
  647. default: true
  648. },
  649. {
  650. name: "Macro",
  651. height: math.unit(118, "feet")
  652. },
  653. ]
  654. )
  655. };
  656. characterMakers["Fory"] = () => {
  657. return makeCharacter(
  658. { name: "Fory" },
  659. {
  660. front: {
  661. height: math.unit(7, "feet"),
  662. weight: math.unit(90, "kg"),
  663. name: "Front",
  664. image: {
  665. source: "./media/characters/fory/front.svg",
  666. extra: 1,
  667. bottom: 0.03
  668. }
  669. },
  670. },
  671. [
  672. {
  673. name: "Normal",
  674. height: math.unit(5, "feet")
  675. },
  676. {
  677. name: "Macro",
  678. height: math.unit(50, "feet"),
  679. default: true
  680. },
  681. ]
  682. )
  683. };
  684. characterMakers["Kurrikage"] = () => {
  685. return makeCharacter(
  686. { name: "Kurrikage" },
  687. {
  688. front: {
  689. height: math.unit(7, "feet"),
  690. weight: math.unit(90, "kg"),
  691. name: "Front",
  692. image: {
  693. source: "./media/characters/kurrikage/front.svg",
  694. extra: 1,
  695. bottom: 0.035
  696. }
  697. },
  698. back: {
  699. height: math.unit(7, "feet"),
  700. weight: math.unit(90, "lb"),
  701. name: "Back",
  702. image: {
  703. source: "./media/characters/kurrikage/back.svg"
  704. }
  705. },
  706. paw: {
  707. height: math.unit(1.5, "feet"),
  708. name: "Paw",
  709. image: {
  710. source: "./media/characters/kurrikage/paw.svg"
  711. }
  712. },
  713. staff: {
  714. height: math.unit(6.7, "feet"),
  715. name: "Staff",
  716. image: {
  717. source: "./media/characters/kurrikage/staff.svg"
  718. }
  719. },
  720. peek: {
  721. height: math.unit(1.05, "feet"),
  722. name: "Peeking",
  723. image: {
  724. source: "./media/characters/kurrikage/peek.svg",
  725. bottom: 0.08
  726. }
  727. },
  728. },
  729. [
  730. {
  731. name: "Normal",
  732. height: math.unit(12, "feet"),
  733. default: true
  734. },
  735. {
  736. name: "Big",
  737. height: math.unit(20, "feet")
  738. },
  739. {
  740. name: "Macro",
  741. height: math.unit(500, "feet")
  742. },
  743. {
  744. name: "Megamacro",
  745. height: math.unit(20, "miles")
  746. },
  747. ]
  748. )
  749. };
  750. characterMakers["Shingo"] = () => {
  751. return makeCharacter(
  752. { name: "Shingo" },
  753. {
  754. front: {
  755. height: math.unit(6, "feet"),
  756. weight: math.unit(75, "kg"),
  757. name: "Front",
  758. image: {
  759. source: "./media/characters/shingo/front.svg",
  760. extra: 3511/3338 ,
  761. bottom: 0.005
  762. }
  763. },
  764. },
  765. [
  766. {
  767. name: "Micro",
  768. height: math.unit(4, "inches")
  769. },
  770. {
  771. name: "Normal",
  772. height: math.unit(6, "feet"),
  773. default: true
  774. },
  775. {
  776. name: "Macro",
  777. height: math.unit(108, "feet")
  778. }
  779. ]
  780. )
  781. };
  782. characterMakers["Aigey"] = () => {
  783. return makeCharacter(
  784. { name: "Aigey" },
  785. {
  786. side: {
  787. height: math.unit(6, "feet"),
  788. weight: math.unit(75, "kg"),
  789. name: "Side",
  790. image: {
  791. source: "./media/characters/aigey/side.svg"
  792. }
  793. },
  794. },
  795. [
  796. {
  797. name: "Macro",
  798. height: math.unit(200, "feet"),
  799. default: true
  800. },
  801. {
  802. name: "Megamacro",
  803. height: math.unit(100, "miles")
  804. },
  805. ]
  806. )
  807. };
  808. characterMakers["Natasha"] = () => {
  809. return makeCharacter(
  810. { name: "Natasha" },
  811. {
  812. front: {
  813. height: math.unit(5 + 5/12, "feet"),
  814. weight: math.unit(75, "kg"),
  815. name: "Front",
  816. image: {
  817. source: "./media/characters/natasha/front.svg",
  818. extra: 875/846,
  819. bottom: 0.01
  820. }
  821. },
  822. },
  823. [
  824. {
  825. name: "Normal",
  826. height: math.unit(5 + 5/12, "feet")
  827. },
  828. {
  829. name: "Large",
  830. height: math.unit(12, "feet")
  831. },
  832. {
  833. name: "Macro",
  834. height: math.unit(100, "feet"),
  835. default: true
  836. },
  837. {
  838. name: "Macro+",
  839. height: math.unit(260, "feet")
  840. },
  841. {
  842. name: "Macro++",
  843. height: math.unit(1, "mile")
  844. },
  845. ]
  846. )
  847. };
  848. characterMakers["Malik"] = () => {
  849. return makeCharacter(
  850. { name: "Malik" },
  851. {
  852. front: {
  853. height: math.unit(6, "feet"),
  854. weight: math.unit(75, "kg"),
  855. name: "Front",
  856. image: {
  857. source: "./media/characters/malik/front.svg"
  858. }
  859. },
  860. side: {
  861. height: math.unit(6, "feet"),
  862. weight: math.unit(75, "kg"),
  863. name: "Side",
  864. image: {
  865. source: "./media/characters/malik/side.svg",
  866. extra: 1.1539
  867. }
  868. },
  869. back: {
  870. height: math.unit(6, "feet"),
  871. weight: math.unit(75, "kg"),
  872. name: "Back",
  873. image: {
  874. source: "./media/characters/malik/back.svg"
  875. }
  876. },
  877. },
  878. [
  879. {
  880. name: "Macro",
  881. height: math.unit(156, "feet"),
  882. default: true
  883. },
  884. {
  885. name: "Macro+",
  886. height: math.unit(1188, "feet")
  887. },
  888. ]
  889. )
  890. };
  891. characterMakers["Sefer"] = () => {
  892. return makeCharacter(
  893. { name: "Sefer" },
  894. {
  895. front: {
  896. height: math.unit(6, "feet"),
  897. weight: math.unit(75, "kg"),
  898. name: "Front",
  899. image: {
  900. source: "./media/characters/sefer/front.svg"
  901. }
  902. },
  903. back: {
  904. height: math.unit(6, "feet"),
  905. weight: math.unit(75, "kg"),
  906. name: "Back",
  907. image: {
  908. source: "./media/characters/sefer/back.svg"
  909. }
  910. },
  911. },
  912. [
  913. {
  914. name: "Normal",
  915. height: math.unit(6, "feet"),
  916. default: true
  917. },
  918. ]
  919. )
  920. };
  921. characterMakers["North"] = () => {
  922. return makeCharacter(
  923. { name: "North" },
  924. {
  925. body: {
  926. height: math.unit(2.2428, "meter"),
  927. weight: math.unit(124.738, "kg"),
  928. name: "Body",
  929. image: {
  930. extra: 1225 / 1050,
  931. source: "./media/characters/north/front.svg"
  932. }
  933. }
  934. },
  935. [
  936. {
  937. name: "Micro",
  938. height: math.unit(4, "inches")
  939. },
  940. {
  941. name: "Macro",
  942. height: math.unit(63, "meters")
  943. },
  944. {
  945. name: "Megamacro",
  946. height: math.unit(101, "miles"),
  947. default: true
  948. }
  949. ]
  950. )
  951. };
  952. characterMakers["Talan"] = () => {
  953. return makeCharacter(
  954. { name: "Talan" },
  955. {
  956. body: {
  957. height: math.unit(2, "meter"),
  958. weight: math.unit(70, "kg"),
  959. name: "Body",
  960. image: {
  961. bottom: 0.02,
  962. source: "./media/characters/talan/front.svg"
  963. }
  964. }
  965. },
  966. [
  967. {
  968. name: "Normal",
  969. height: math.unit(4, "meters")
  970. },
  971. {
  972. name: "Macro",
  973. height: math.unit(100, "meters")
  974. },
  975. {
  976. name: "Megamacro",
  977. height: math.unit(2, "miles"),
  978. default: true
  979. },
  980. {
  981. name: "Gigamacro",
  982. height: math.unit(5000, "miles")
  983. },
  984. {
  985. name: "Teramacro",
  986. height: math.unit(100, "parsecs")
  987. }
  988. ]
  989. )
  990. };
  991. characterMakers["Gael'Rathus"] = () => {
  992. return makeCharacter(
  993. { name: "Gael'Rathus" },
  994. {
  995. front: {
  996. height: math.unit(2, "meter"),
  997. weight: math.unit(90, "kg"),
  998. name: "Front",
  999. image: {
  1000. source: "./media/characters/gael'rathus/front.svg"
  1001. }
  1002. },
  1003. frontAlt: {
  1004. height: math.unit(2, "meter"),
  1005. weight: math.unit(90, "kg"),
  1006. name: "Front (alt)",
  1007. image: {
  1008. source: "./media/characters/gael'rathus/front-alt.svg"
  1009. }
  1010. },
  1011. frontAlt2: {
  1012. height: math.unit(2, "meter"),
  1013. weight: math.unit(90, "kg"),
  1014. name: "Front (alt 2)",
  1015. image: {
  1016. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1017. }
  1018. }
  1019. },
  1020. [
  1021. {
  1022. name: "Normal",
  1023. height: math.unit(9, "feet"),
  1024. default: true
  1025. },
  1026. {
  1027. name: "Large",
  1028. height: math.unit(25, "feet")
  1029. },
  1030. {
  1031. name: "Macro",
  1032. height: math.unit(0.25, "miles")
  1033. },
  1034. {
  1035. name: "Megamacro",
  1036. height: math.unit(10, "miles")
  1037. }
  1038. ]
  1039. )
  1040. };
  1041. characterMakers["Sosha"] = () => {
  1042. return makeCharacter(
  1043. { name: "Sosha" },
  1044. {
  1045. side: {
  1046. height: math.unit(2, "meter"),
  1047. weight: math.unit(140, "kg"),
  1048. name: "Side",
  1049. image: {
  1050. source: "./media/characters/sosha/side.svg",
  1051. bottom: 0.042
  1052. }
  1053. },
  1054. },
  1055. [
  1056. {
  1057. name: "Normal",
  1058. height: math.unit(12, "feet"),
  1059. default: true
  1060. }
  1061. ]
  1062. )
  1063. };
  1064. characterMakers["RuNNoLa"] = () => {
  1065. return makeCharacter(
  1066. { name: "RuNNoLa" },
  1067. {
  1068. side: {
  1069. height: math.unit(5 + 5/12, "feet"),
  1070. weight: math.unit(170, "kg"),
  1071. name: "Side",
  1072. image: {
  1073. source: "./media/characters/runnola/side.svg",
  1074. extra: 741/448,
  1075. bottom: 0.05
  1076. }
  1077. },
  1078. },
  1079. [
  1080. {
  1081. name: "Small",
  1082. height: math.unit(3, "feet")
  1083. },
  1084. {
  1085. name: "Normal",
  1086. height: math.unit(5 + 5/12, "feet"),
  1087. default: true
  1088. },
  1089. {
  1090. name: "Big",
  1091. height: math.unit(10, "feet")
  1092. },
  1093. ]
  1094. )
  1095. };
  1096. characterMakers["Kurribird"] = () => {
  1097. return makeCharacter(
  1098. { name: "Kurribird" },
  1099. {
  1100. front: {
  1101. height: math.unit(2, "meter"),
  1102. weight: math.unit(50, "kg"),
  1103. name: "Front",
  1104. image: {
  1105. source: "./media/characters/kurribird/front.svg",
  1106. bottom: 0.015
  1107. }
  1108. },
  1109. frontAlt: {
  1110. height: math.unit(1.5, "meter"),
  1111. weight: math.unit(50, "kg"),
  1112. name: "Front (Alt)",
  1113. image: {
  1114. source: "./media/characters/kurribird/front-alt.svg",
  1115. extra: 1.45
  1116. }
  1117. },
  1118. },
  1119. [
  1120. {
  1121. name: "Normal",
  1122. height: math.unit(7, "feet")
  1123. },
  1124. {
  1125. name: "Big",
  1126. height: math.unit(12, "feet"),
  1127. default: true
  1128. },
  1129. {
  1130. name: "Macro",
  1131. height: math.unit(1500, "feet")
  1132. },
  1133. {
  1134. name: "Megamacro",
  1135. height: math.unit(2, "miles")
  1136. }
  1137. ]
  1138. )
  1139. };
  1140. characterMakers["Elbial"] = () => {
  1141. return makeCharacter(
  1142. { name: "Elbial" },
  1143. {
  1144. front: {
  1145. height: math.unit(2, "meter"),
  1146. weight: math.unit(80, "kg"),
  1147. name: "Front",
  1148. image: {
  1149. source: "./media/characters/elbial/front.svg"
  1150. }
  1151. },
  1152. side: {
  1153. height: math.unit(2, "meter"),
  1154. weight: math.unit(80, "kg"),
  1155. name: "Side",
  1156. image: {
  1157. source: "./media/characters/elbial/side.svg"
  1158. }
  1159. },
  1160. back: {
  1161. height: math.unit(2, "meter"),
  1162. weight: math.unit(80, "kg"),
  1163. name: "Back",
  1164. image: {
  1165. source: "./media/characters/elbial/back.svg"
  1166. }
  1167. },
  1168. },
  1169. [
  1170. {
  1171. name: "Large",
  1172. height: math.unit(100, "feet")
  1173. },
  1174. {
  1175. name: "Macro",
  1176. height: math.unit(500, "feet"),
  1177. default: true
  1178. },
  1179. {
  1180. name: "Megamacro",
  1181. height: math.unit(10, "miles")
  1182. },
  1183. {
  1184. name: "Gigamacro",
  1185. height: math.unit(25000, "miles")
  1186. },
  1187. {
  1188. name: "Full-Size",
  1189. height: math.unit(8000000, "gigaparsecs")
  1190. }
  1191. ]
  1192. )
  1193. };
  1194. characterMakers["Noah"] = () => {
  1195. return makeCharacter(
  1196. { name: "Noah" },
  1197. {
  1198. front: {
  1199. height: math.unit(2, "meter"),
  1200. weight: math.unit(60, "kg"),
  1201. name: "Front",
  1202. image: {
  1203. source: "./media/characters/noah/front.svg"
  1204. }
  1205. },
  1206. talons: {
  1207. height: math.unit(0.315, "meter"),
  1208. name: "Talons",
  1209. image: {
  1210. source: "./media/characters/noah/talons.svg"
  1211. }
  1212. }
  1213. },
  1214. [
  1215. {
  1216. name: "Large",
  1217. height: math.unit(50, "feet")
  1218. },
  1219. {
  1220. name: "Macro",
  1221. height: math.unit(750, "feet"),
  1222. default: true
  1223. },
  1224. {
  1225. name: "Megamacro",
  1226. height: math.unit(50, "miles")
  1227. },
  1228. {
  1229. name: "Gigamacro",
  1230. height: math.unit(100000, "miles")
  1231. },
  1232. {
  1233. name: "Full-Size",
  1234. height: math.unit(3000000000, "miles")
  1235. }
  1236. ]
  1237. )
  1238. };
  1239. characterMakers["Natalya"] = () => {
  1240. return makeCharacter(
  1241. { name: "Natalya" },
  1242. {
  1243. front: {
  1244. height: math.unit(2, "meter"),
  1245. weight: math.unit(80, "kg"),
  1246. name: "Front",
  1247. image: {
  1248. source: "./media/characters/natalya/front.svg"
  1249. }
  1250. },
  1251. back: {
  1252. height: math.unit(2, "meter"),
  1253. weight: math.unit(80, "kg"),
  1254. name: "Back",
  1255. image: {
  1256. source: "./media/characters/natalya/back.svg"
  1257. }
  1258. }
  1259. },
  1260. [
  1261. {
  1262. name: "Normal",
  1263. height: math.unit(150, "feet"),
  1264. default: true
  1265. },
  1266. {
  1267. name: "Megamacro",
  1268. height: math.unit(5, "miles")
  1269. },
  1270. {
  1271. name: "Full-Size",
  1272. height: math.unit(600, "kiloparsecs")
  1273. }
  1274. ]
  1275. )
  1276. };
  1277. characterMakers["Erestrebah"] = () => {
  1278. return makeCharacter(
  1279. { name: "Erestrebah" },
  1280. {
  1281. front: {
  1282. height: math.unit(2, "meter"),
  1283. weight: math.unit(50, "kg"),
  1284. name: "Front",
  1285. image: {
  1286. source: "./media/characters/erestrebah/front.svg",
  1287. extra: 208/193,
  1288. bottom: 0.055
  1289. }
  1290. },
  1291. back: {
  1292. height: math.unit(2, "meter"),
  1293. weight: math.unit(50, "kg"),
  1294. name: "Back",
  1295. image: {
  1296. source: "./media/characters/erestrebah/back.svg",
  1297. extra: 1.3
  1298. }
  1299. }
  1300. },
  1301. [
  1302. {
  1303. name: "Normal",
  1304. height: math.unit(10, "feet")
  1305. },
  1306. {
  1307. name: "Large",
  1308. height: math.unit(50, "feet"),
  1309. default: true
  1310. },
  1311. {
  1312. name: "Macro",
  1313. height: math.unit(300, "feet")
  1314. },
  1315. {
  1316. name: "Macro+",
  1317. height: math.unit(750, "feet")
  1318. },
  1319. {
  1320. name: "Megamacro",
  1321. height: math.unit(3, "miles")
  1322. }
  1323. ]
  1324. )
  1325. };
  1326. characterMakers["Jennifer"] = () => {
  1327. return makeCharacter(
  1328. { name: "Jennifer" },
  1329. {
  1330. front: {
  1331. height: math.unit(2, "meter"),
  1332. weight: math.unit(80, "kg"),
  1333. name: "Front",
  1334. image: {
  1335. source: "./media/characters/jennifer/front.svg",
  1336. bottom: 0.11,
  1337. extra: 1.16
  1338. }
  1339. },
  1340. frontAlt: {
  1341. height: math.unit(2, "meter"),
  1342. weight: math.unit(80, "kg"),
  1343. name: "Front (Alt)",
  1344. image: {
  1345. source: "./media/characters/jennifer/front-alt.svg"
  1346. }
  1347. }
  1348. },
  1349. [
  1350. {
  1351. name: "Canon Height",
  1352. height: math.unit(120, "feet"),
  1353. default: true
  1354. },
  1355. {
  1356. name: "Macro+",
  1357. height: math.unit(300, "feet")
  1358. },
  1359. {
  1360. name: "Megamacro",
  1361. height: math.unit(20000, "feet")
  1362. }
  1363. ]
  1364. )
  1365. };
  1366. characterMakers["Kalista"] = () => {
  1367. return makeCharacter(
  1368. { name: "Kalista" },
  1369. {
  1370. front: {
  1371. height: math.unit(2, "meter"),
  1372. weight: math.unit(50, "kg"),
  1373. name: "Front",
  1374. image: {
  1375. source: "./media/characters/kalista/front.svg",
  1376. extra: 1947/1700
  1377. }
  1378. },
  1379. back: {
  1380. height: math.unit(2, "meter"),
  1381. weight: math.unit(50, "kg"),
  1382. name: "Back",
  1383. image: {
  1384. source: "./media/characters/kalista/back.svg",
  1385. extra: 1366/1156
  1386. }
  1387. }
  1388. },
  1389. [
  1390. {
  1391. name: "Uncomfortably Small",
  1392. height: math.unit(10, "feet")
  1393. },
  1394. {
  1395. name: "Small",
  1396. height: math.unit(30, "feet")
  1397. },
  1398. {
  1399. name: "Macro",
  1400. height: math.unit(100, "feet"),
  1401. default: true
  1402. },
  1403. {
  1404. name: "Macro+",
  1405. height: math.unit(2000, "feet")
  1406. },
  1407. {
  1408. name: "True Form",
  1409. height: math.unit(8924, "miles")
  1410. }
  1411. ]
  1412. )
  1413. };
  1414. characterMakers["GiantGrowingVixen"] = () => {
  1415. return makeCharacter(
  1416. { name: "GiantGrowingVixen" },
  1417. {
  1418. front: {
  1419. height: math.unit(2, "meter"),
  1420. weight: math.unit(120, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/ggv/front.svg"
  1424. }
  1425. },
  1426. side: {
  1427. height: math.unit(2, "meter"),
  1428. weight: math.unit(120, "kg"),
  1429. name: "Side",
  1430. image: {
  1431. source: "./media/characters/ggv/side.svg"
  1432. }
  1433. }
  1434. },
  1435. [
  1436. {
  1437. name: "Extremely Puny",
  1438. height: math.unit(9 + 5 / 12, "feet")
  1439. },
  1440. {
  1441. name: "Horribly Small",
  1442. height: math.unit(47.7, "miles"),
  1443. default: true
  1444. },
  1445. {
  1446. name: "Reasonably Sized",
  1447. height: math.unit(25000, "parsecs")
  1448. },
  1449. {
  1450. name: "Slightly Uncompressed",
  1451. height: math.unit(7.77e31, "parsecs")
  1452. },
  1453. {
  1454. name: "Omniversal",
  1455. height: math.unit(1e300, "meters")
  1456. },
  1457. ]
  1458. )
  1459. };
  1460. characterMakers["Napalm"] = () => {
  1461. return makeCharacter(
  1462. { name: "Napalm" },
  1463. {
  1464. front: {
  1465. height: math.unit(2, "meter"),
  1466. weight: math.unit(75, "lb"),
  1467. name: "Front",
  1468. image: {
  1469. source: "./media/characters/napalm/front.svg"
  1470. }
  1471. },
  1472. back: {
  1473. height: math.unit(2, "meter"),
  1474. weight: math.unit(75, "lb"),
  1475. name: "Back",
  1476. image: {
  1477. source: "./media/characters/napalm/back.svg"
  1478. }
  1479. }
  1480. },
  1481. [
  1482. {
  1483. name: "Standard",
  1484. height: math.unit(55, "feet"),
  1485. default: true
  1486. }
  1487. ]
  1488. )
  1489. };
  1490. characterMakers["Asana"] = () => {
  1491. return makeCharacter(
  1492. { name: "Asana" },
  1493. {
  1494. front: {
  1495. height: math.unit(7 + 5 / 6, "feet"),
  1496. weight: math.unit(325, "lb"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/asana/front.svg",
  1500. extra: 1128 / 1068
  1501. }
  1502. },
  1503. back: {
  1504. height: math.unit(7 + 5 / 6, "feet"),
  1505. weight: math.unit(325, "lb"),
  1506. name: "Back",
  1507. image: {
  1508. source: "./media/characters/asana/back.svg",
  1509. extra: 1128 / 1068
  1510. }
  1511. },
  1512. },
  1513. [
  1514. {
  1515. name: "Standard",
  1516. height: math.unit(7 + 5 / 6, "feet"),
  1517. default: true
  1518. },
  1519. {
  1520. name: "Large",
  1521. height: math.unit(10, "meters")
  1522. },
  1523. {
  1524. name: "Macro",
  1525. height: math.unit(2500, "meters")
  1526. },
  1527. {
  1528. name: "Megamacro",
  1529. height: math.unit(5e6, "meters")
  1530. },
  1531. {
  1532. name: "Examacro",
  1533. height: math.unit(5e12, "lightyears")
  1534. },
  1535. {
  1536. name: "Max Size",
  1537. height: math.unit(1e31, "lightyears")
  1538. }
  1539. ]
  1540. )
  1541. };
  1542. characterMakers["Ebony"] = () => {
  1543. return makeCharacter(
  1544. { name: "Ebony" },
  1545. {
  1546. front: {
  1547. height: math.unit(2, "meter"),
  1548. weight: math.unit(60, "kg"),
  1549. name: "Front",
  1550. image: {
  1551. source: "./media/characters/ebony/front.svg",
  1552. bottom: 0.03,
  1553. extra: 1045 / 810 + 0.03
  1554. }
  1555. },
  1556. side: {
  1557. height: math.unit(2, "meter"),
  1558. weight: math.unit(60, "kg"),
  1559. name: "Side",
  1560. image: {
  1561. source: "./media/characters/ebony/side.svg",
  1562. bottom: 0.03,
  1563. extra: 1045 / 810 + 0.03
  1564. }
  1565. },
  1566. back: {
  1567. height: math.unit(2, "meter"),
  1568. weight: math.unit(60, "kg"),
  1569. name: "Back",
  1570. image: {
  1571. source: "./media/characters/ebony/back.svg",
  1572. bottom: 0.01,
  1573. extra: 1045 / 810 + 0.01
  1574. }
  1575. },
  1576. },
  1577. [
  1578. // TODO check why I did this lol
  1579. {
  1580. name: "Standard",
  1581. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  1582. default: true
  1583. },
  1584. {
  1585. name: "Macro",
  1586. height: math.unit(200, "feet")
  1587. },
  1588. {
  1589. name: "Gigamacro",
  1590. height: math.unit(13000, "km")
  1591. }
  1592. ]
  1593. )
  1594. };
  1595. characterMakers["Mountain"] = () => {
  1596. return makeCharacter(
  1597. { name: "Mountain" },
  1598. {
  1599. front: {
  1600. height: math.unit(6, "feet"),
  1601. weight: math.unit(175, "lb"),
  1602. name: "Front",
  1603. image: {
  1604. source: "./media/characters/mountain/front.svg"
  1605. }
  1606. },
  1607. back: {
  1608. height: math.unit(6, "feet"),
  1609. weight: math.unit(175, "lb"),
  1610. name: "Back",
  1611. image: {
  1612. source: "./media/characters/mountain/back.svg"
  1613. }
  1614. },
  1615. },
  1616. [
  1617. {
  1618. name: "Large",
  1619. height: math.unit(20, "meters")
  1620. },
  1621. {
  1622. name: "Macro",
  1623. height: math.unit(300, "meters")
  1624. },
  1625. {
  1626. name: "Gigamacro",
  1627. height: math.unit(10000, "km"),
  1628. default: true
  1629. },
  1630. {
  1631. name: "Examacro",
  1632. height: math.unit(10e9, "lightyears")
  1633. }
  1634. ]
  1635. )
  1636. };
  1637. characterMakers["Rick"] = () => {
  1638. return makeCharacter(
  1639. { name: "Rick" },
  1640. {
  1641. front: {
  1642. height: math.unit(8, "feet"),
  1643. weight: math.unit(500, "lb"),
  1644. name: "Front",
  1645. image: {
  1646. source: "./media/characters/rick/front.svg"
  1647. }
  1648. }
  1649. },
  1650. [
  1651. {
  1652. name: "Normal",
  1653. height: math.unit(8, "feet"),
  1654. default: true
  1655. },
  1656. {
  1657. name: "Macro",
  1658. height: math.unit(5, "km")
  1659. }
  1660. ]
  1661. )
  1662. };
  1663. characterMakers["Ona"] = () => {
  1664. return makeCharacter(
  1665. { name: "Ona" },
  1666. {
  1667. front: {
  1668. height: math.unit(8, "feet"),
  1669. weight: math.unit(120, "lb"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/ona/front.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(8, "feet"),
  1677. weight: math.unit(120, "lb"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/ona/front-alt.svg"
  1681. }
  1682. },
  1683. back: {
  1684. height: math.unit(8, "feet"),
  1685. weight: math.unit(120, "lb"),
  1686. name: "Back",
  1687. image: {
  1688. source: "./media/characters/ona/back.svg"
  1689. }
  1690. },
  1691. foot: {
  1692. height: math.unit(1.1, "feet"),
  1693. name: "Foot",
  1694. image: {
  1695. source: "./media/characters/ona/foot.svg"
  1696. }
  1697. }
  1698. },
  1699. [
  1700. {
  1701. name: "Megamacro",
  1702. height: math.unit(70, "km"),
  1703. default: true
  1704. },
  1705. {
  1706. name: "Gigamacro",
  1707. height: math.unit(681818, "miles")
  1708. },
  1709. {
  1710. name: "Examacro",
  1711. height: math.unit(3800000, "lightyears")
  1712. },
  1713. ]
  1714. )
  1715. };
  1716. characterMakers["Mech"] = () => {
  1717. return makeCharacter(
  1718. { name: "Mech" },
  1719. {
  1720. front: {
  1721. height: math.unit(12, "feet"),
  1722. weight: math.unit(3000, "lb"),
  1723. name: "Front",
  1724. image: {
  1725. source: "./media/characters/mech/front.svg",
  1726. bottom: 0.025,
  1727. }
  1728. },
  1729. back: {
  1730. height: math.unit(12, "feet"),
  1731. weight: math.unit(3000, "lb"),
  1732. name: "Back",
  1733. image: {
  1734. source: "./media/characters/mech/back.svg",
  1735. bottom: 0.03,
  1736. }
  1737. }
  1738. },
  1739. [
  1740. {
  1741. name: "Normal",
  1742. height: math.unit(12, "feet")
  1743. },
  1744. {
  1745. name: "Macro",
  1746. height: math.unit(300, "feet"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Macro+",
  1751. height: math.unit(1500, "feet")
  1752. },
  1753. ]
  1754. )
  1755. };
  1756. characterMakers["Gregory"] = () => {
  1757. return makeCharacter(
  1758. { name: "Gregory" },
  1759. {
  1760. front: {
  1761. height: math.unit(1.3, "meter"),
  1762. weight: math.unit(30, "kg"),
  1763. name: "Front",
  1764. image: {
  1765. source: "./media/characters/gregory/front.svg",
  1766. }
  1767. }
  1768. },
  1769. [
  1770. {
  1771. name: "Normal",
  1772. height: math.unit(1.3, "meter"),
  1773. default: true
  1774. },
  1775. {
  1776. name: "Macro",
  1777. height: math.unit(20, "meter")
  1778. }
  1779. ]
  1780. )
  1781. };
  1782. characterMakers["Elory"] = () => {
  1783. return makeCharacter(
  1784. { name: "Elory" },
  1785. {
  1786. front: {
  1787. height: math.unit(2.8, "meter"),
  1788. weight: math.unit(200, "kg"),
  1789. name: "Front",
  1790. image: {
  1791. source: "./media/characters/elory/front.svg",
  1792. }
  1793. }
  1794. },
  1795. [
  1796. {
  1797. name: "Normal",
  1798. height: math.unit(2.8, "meter"),
  1799. default: true
  1800. },
  1801. {
  1802. name: "Macro",
  1803. height: math.unit(38, "meter")
  1804. }
  1805. ]
  1806. )
  1807. };
  1808. characterMakers["Angelpatamon"] = () => {
  1809. return makeCharacter(
  1810. { name: "Angelpatamon" },
  1811. {
  1812. front: {
  1813. height: math.unit(470, "feet"),
  1814. weight: math.unit(924, "tons"),
  1815. name: "Front",
  1816. image: {
  1817. source: "./media/characters/angelpatamon/front.svg",
  1818. }
  1819. }
  1820. },
  1821. [
  1822. {
  1823. name: "Normal",
  1824. height: math.unit(470, "feet"),
  1825. default: true
  1826. },
  1827. {
  1828. name: "Deity Size I",
  1829. height: math.unit(28651.2, "km")
  1830. },
  1831. {
  1832. name: "Deity Size II",
  1833. height: math.unit(171907.2, "km")
  1834. }
  1835. ]
  1836. )
  1837. };
  1838. characterMakers["Cryae"] = () => {
  1839. return makeCharacter(
  1840. { name: "Cryae" },
  1841. {
  1842. side: {
  1843. height: math.unit(7.2, "meter"),
  1844. weight: math.unit(8.2, "tons"),
  1845. name: "Side",
  1846. image: {
  1847. source: "./media/characters/cryae/side.svg",
  1848. extra: 3500 / 1500
  1849. }
  1850. }
  1851. },
  1852. [
  1853. {
  1854. name: "Normal",
  1855. height: math.unit(7.2, "meter"),
  1856. default: true
  1857. }
  1858. ]
  1859. )
  1860. };
  1861. characterMakers["Xera"] = () => {
  1862. return makeCharacter(
  1863. { name: "Xera" },
  1864. {
  1865. front: {
  1866. height: math.unit(6, "feet"),
  1867. weight: math.unit(175, "lb"),
  1868. name: "Front",
  1869. image: {
  1870. source: "./media/characters/xera/front.svg",
  1871. extra: 2300 / 2061
  1872. }
  1873. },
  1874. side: {
  1875. height: math.unit(6, "feet"),
  1876. weight: math.unit(175, "lb"),
  1877. name: "Side",
  1878. image: {
  1879. source: "./media/characters/xera/side.svg",
  1880. extra: 2300 / 2061
  1881. }
  1882. },
  1883. back: {
  1884. height: math.unit(6, "feet"),
  1885. weight: math.unit(175, "lb"),
  1886. name: "Back",
  1887. image: {
  1888. source: "./media/characters/xera/back.svg"
  1889. }
  1890. },
  1891. },
  1892. [
  1893. {
  1894. name: "Small",
  1895. height: math.unit(10, "feet")
  1896. },
  1897. {
  1898. name: "Macro",
  1899. height: math.unit(500, "meters"),
  1900. default: true
  1901. },
  1902. {
  1903. name: "Macro+",
  1904. height: math.unit(10, "km")
  1905. },
  1906. {
  1907. name: "Gigamacro",
  1908. height: math.unit(25000, "km")
  1909. },
  1910. {
  1911. name: "Teramacro",
  1912. height: math.unit(3e6, "km")
  1913. }
  1914. ]
  1915. )
  1916. };
  1917. characterMakers["Nebula"] = () => {
  1918. return makeCharacter(
  1919. { name: "Nebula" },
  1920. {
  1921. front: {
  1922. height: math.unit(6, "feet"),
  1923. weight: math.unit(175, "lb"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/nebula/front.svg",
  1927. extra: 2600 / 2450
  1928. }
  1929. }
  1930. },
  1931. [
  1932. {
  1933. name: "Small",
  1934. height: math.unit(4.5, "meters")
  1935. },
  1936. {
  1937. name: "Macro",
  1938. height: math.unit(1500, "meters"),
  1939. default: true
  1940. },
  1941. {
  1942. name: "Megamacro",
  1943. height: math.unit(150, "km")
  1944. },
  1945. {
  1946. name: "Gigamacro",
  1947. height: math.unit(27000, "km")
  1948. }
  1949. ]
  1950. )
  1951. };
  1952. characterMakers["Abysgar"] = () => {
  1953. return makeCharacter(
  1954. { name: "Abysgar" },
  1955. {
  1956. front: {
  1957. height: math.unit(6, "feet"),
  1958. weight: math.unit(225, "lb"),
  1959. name: "Front",
  1960. image: {
  1961. source: "./media/characters/abysgar/front.svg"
  1962. }
  1963. }
  1964. },
  1965. [
  1966. {
  1967. name: "Small",
  1968. height: math.unit(4.5, "meters")
  1969. },
  1970. {
  1971. name: "Macro",
  1972. height: math.unit(1250, "meters"),
  1973. default: true
  1974. },
  1975. {
  1976. name: "Megamacro",
  1977. height: math.unit(125, "km")
  1978. },
  1979. {
  1980. name: "Gigamacro",
  1981. height: math.unit(26000, "km")
  1982. }
  1983. ]
  1984. )
  1985. };
  1986. characterMakers["Yakuz"] = () => {
  1987. return makeCharacter(
  1988. { name: "Yakuz" },
  1989. {
  1990. front: {
  1991. height: math.unit(6, "feet"),
  1992. weight: math.unit(180, "lb"),
  1993. name: "Front",
  1994. image: {
  1995. source: "./media/characters/yakuz/front.svg"
  1996. }
  1997. }
  1998. },
  1999. [
  2000. {
  2001. name: "Small",
  2002. height: math.unit(5, "meters")
  2003. },
  2004. {
  2005. name: "Macro",
  2006. height: math.unit(1500, "meters"),
  2007. default: true
  2008. },
  2009. {
  2010. name: "Megamacro",
  2011. height: math.unit(200, "km")
  2012. },
  2013. {
  2014. name: "Gigamacro",
  2015. height: math.unit(100000, "km")
  2016. }
  2017. ]
  2018. )
  2019. };
  2020. characterMakers["Mirova"] = () => {
  2021. return makeCharacter(
  2022. { name: "Mirova" },
  2023. {
  2024. front: {
  2025. height: math.unit(6, "feet"),
  2026. weight: math.unit(175, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/mirova/front.svg"
  2030. }
  2031. }
  2032. },
  2033. [
  2034. {
  2035. name: "Small",
  2036. height: math.unit(5, "meters")
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(900, "meters"),
  2041. default: true
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(135, "km")
  2046. },
  2047. {
  2048. name: "Gigamacro",
  2049. height: math.unit(20000, "km")
  2050. }
  2051. ]
  2052. )
  2053. };
  2054. characterMakers["Asana (Mech)"] = () => {
  2055. return makeCharacter(
  2056. { name: "Asana (Mech)" },
  2057. {
  2058. side: {
  2059. height: math.unit(28.35, "feet"),
  2060. weight: math.unit(99.75, "tons"),
  2061. name: "Side",
  2062. image: {
  2063. source: "./media/characters/asana-mech/side.svg"
  2064. }
  2065. }
  2066. },
  2067. [
  2068. {
  2069. name: "Normal",
  2070. height: math.unit(28.35, "feet"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Macro",
  2075. height: math.unit(2500, "feet")
  2076. },
  2077. {
  2078. name: "Megamacro",
  2079. height: math.unit(25, "miles")
  2080. },
  2081. {
  2082. name: "Examacro",
  2083. height: math.unit(6e8, "lightyears")
  2084. },
  2085. ]
  2086. )
  2087. };
  2088. characterMakers["Ashtrek"] = () => {
  2089. return makeCharacter(
  2090. { name: "Ashtrek" },
  2091. {
  2092. front: {
  2093. height: math.unit(2, "meters"),
  2094. weight: math.unit(70, "kg"),
  2095. name: "Front",
  2096. image: {
  2097. source: "./media/characters/ashtrek/front.svg",
  2098. extra: 560/524 ,
  2099. bottom: 0.01
  2100. }
  2101. },
  2102. frontArmor: {
  2103. height: math.unit(2, "meters"),
  2104. weight: math.unit(76, "kg"),
  2105. name: "Front (Armor)",
  2106. image: {
  2107. source: "./media/characters/ashtrek/front-armor.svg",
  2108. extra: 561/527 ,
  2109. bottom: 0.01
  2110. }
  2111. },
  2112. side: {
  2113. height: math.unit(2, "meters"),
  2114. weight: math.unit(70, "kg"),
  2115. name: "Side",
  2116. image: {
  2117. source: "./media/characters/ashtrek/side.svg",
  2118. extra: 1717/1609 ,
  2119. bottom: 0.005
  2120. }
  2121. },
  2122. back: {
  2123. height: math.unit(2, "meters"),
  2124. weight: math.unit(70, "kg"),
  2125. name: "Back",
  2126. image: {
  2127. source: "./media/characters/ashtrek/back.svg",
  2128. extra: 1570/1501
  2129. }
  2130. },
  2131. },
  2132. [
  2133. {
  2134. name: "DEFCON 5",
  2135. height: math.unit(5, "meters")
  2136. },
  2137. {
  2138. name: "DEFCON 4",
  2139. height: math.unit(500, "meters"),
  2140. default: true
  2141. },
  2142. {
  2143. name: "DEFCON 3",
  2144. height: math.unit(5, "km")
  2145. },
  2146. {
  2147. name: "DEFCON 2",
  2148. height: math.unit(500, "km")
  2149. },
  2150. {
  2151. name: "DEFCON 1",
  2152. height: math.unit(500000, "km")
  2153. },
  2154. {
  2155. name: "DEFCON 0",
  2156. height: math.unit(3, "gigaparsecs")
  2157. },
  2158. ]
  2159. )
  2160. };
  2161. characterMakers["Gale"] = () => {
  2162. return makeCharacter(
  2163. { name: "Gale" },
  2164. {
  2165. front: {
  2166. height: math.unit(2, "meters"),
  2167. weight: math.unit(76, "kg"),
  2168. name: "Front",
  2169. image: {
  2170. source: "./media/characters/gale/front.svg"
  2171. }
  2172. },
  2173. frontAlt1: {
  2174. height: math.unit(2, "meters"),
  2175. weight: math.unit(76, "kg"),
  2176. name: "Front (Alt 1)",
  2177. image: {
  2178. source: "./media/characters/gale/front-alt-1.svg"
  2179. }
  2180. },
  2181. frontAlt2: {
  2182. height: math.unit(2, "meters"),
  2183. weight: math.unit(76, "kg"),
  2184. name: "Front (Alt 2)",
  2185. image: {
  2186. source: "./media/characters/gale/front-alt-2.svg"
  2187. }
  2188. },
  2189. },
  2190. [
  2191. {
  2192. name: "Normal",
  2193. height: math.unit(7, "feet")
  2194. },
  2195. {
  2196. name: "Macro",
  2197. height: math.unit(150, "feet"),
  2198. default: true
  2199. },
  2200. {
  2201. name: "Macro+",
  2202. height: math.unit(300, "feet")
  2203. },
  2204. ]
  2205. )
  2206. };
  2207. characterMakers["Draylen"] = () => {
  2208. return makeCharacter(
  2209. { name: "Draylen" },
  2210. {
  2211. front: {
  2212. height: math.unit(2, "meters"),
  2213. weight: math.unit(76, "kg"),
  2214. name: "Front",
  2215. image: {
  2216. source: "./media/characters/draylen/front.svg"
  2217. }
  2218. }
  2219. },
  2220. [
  2221. {
  2222. name: "Macro",
  2223. height: math.unit(150, "feet"),
  2224. default: true
  2225. }
  2226. ]
  2227. )
  2228. };
  2229. characterMakers["Chez"] = () => {
  2230. return makeCharacter(
  2231. { name: "Chez" },
  2232. {
  2233. front: {
  2234. height: math.unit(7 + 9 / 12, "feet"),
  2235. weight: math.unit(379, "lbs"),
  2236. name: "Front",
  2237. image: {
  2238. source: "./media/characters/chez/front.svg"
  2239. }
  2240. },
  2241. side: {
  2242. height: math.unit(7 + 9 / 12, "feet"),
  2243. weight: math.unit(379, "lbs"),
  2244. name: "Side",
  2245. image: {
  2246. source: "./media/characters/chez/side.svg"
  2247. }
  2248. }
  2249. },
  2250. [
  2251. {
  2252. name: "Normal",
  2253. height: math.unit(7 + 9 / 12, "feet"),
  2254. default: true
  2255. },
  2256. {
  2257. name: "God King",
  2258. height: math.unit(9750000, "meters")
  2259. }
  2260. ]
  2261. )
  2262. };
  2263. characterMakers["Kaylum"] = () => {
  2264. return makeCharacter(
  2265. { name: "Kaylum" },
  2266. {
  2267. front: {
  2268. height: math.unit(6, "feet"),
  2269. weight: math.unit(275, "lbs"),
  2270. name: "Front",
  2271. image: {
  2272. source: "./media/characters/kaylum/front.svg",
  2273. bottom: 0.01,
  2274. extra: 1166 / 1031
  2275. }
  2276. },
  2277. frontWingless: {
  2278. height: math.unit(6, "feet"),
  2279. weight: math.unit(275, "lbs"),
  2280. name: "Front (Wingless)",
  2281. image: {
  2282. source: "./media/characters/kaylum/front-wingless.svg",
  2283. bottom: 0.01,
  2284. extra: 1117 / 1031
  2285. }
  2286. }
  2287. },
  2288. [
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(3.05, "meters")
  2292. },
  2293. {
  2294. name: "Master",
  2295. height: math.unit(5.5, "meters")
  2296. },
  2297. {
  2298. name: "Rampage",
  2299. height: math.unit(19, "meters")
  2300. },
  2301. {
  2302. name: "Macro Lite",
  2303. height: math.unit(37, "meters")
  2304. },
  2305. {
  2306. name: "Hyper Predator",
  2307. height: math.unit(61, "meters")
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(138, "meters"),
  2312. default: true
  2313. }
  2314. ]
  2315. )
  2316. };
  2317. characterMakers["Geta"] = () => {
  2318. return makeCharacter(
  2319. { name: "Geta" },
  2320. {
  2321. front: {
  2322. height: math.unit(6, "feet"),
  2323. weight: math.unit(150, "lbs"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/geta/front.svg"
  2327. }
  2328. }
  2329. },
  2330. [
  2331. {
  2332. name: "Micro",
  2333. height: math.unit(3, "inches"),
  2334. default: true
  2335. },
  2336. {
  2337. name: "Normal",
  2338. height: math.unit(5 + 5 / 12, "feet")
  2339. }
  2340. ]
  2341. )
  2342. };
  2343. characterMakers["Tyrnn"] = () => {
  2344. return makeCharacter(
  2345. { name: "Tyrnn" },
  2346. {
  2347. front: {
  2348. height: math.unit(6, "feet"),
  2349. weight: math.unit(300, "lbs"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/tyrnn/front.svg"
  2353. }
  2354. }
  2355. },
  2356. [
  2357. {
  2358. name: "Main Height",
  2359. height: math.unit(355, "feet"),
  2360. default: true
  2361. },
  2362. {
  2363. name: "Fave. Height",
  2364. height: math.unit(2400, "feet")
  2365. }
  2366. ]
  2367. )
  2368. };
  2369. characterMakers["Apple"] = () => {
  2370. return makeCharacter(
  2371. { name: "Apple" },
  2372. {
  2373. front: {
  2374. height: math.unit(6, "feet"),
  2375. weight: math.unit(300, "lbs"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/appledectomy/front.svg"
  2379. }
  2380. }
  2381. },
  2382. [
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(2500, "feet")
  2386. },
  2387. {
  2388. name: "Megamacro",
  2389. height: math.unit(50, "miles"),
  2390. default: true
  2391. },
  2392. {
  2393. name: "Gigamacro",
  2394. height: math.unit(5000, "miles")
  2395. },
  2396. {
  2397. name: "Teramacro",
  2398. height: math.unit(250000, "miles")
  2399. },
  2400. ]
  2401. )
  2402. };
  2403. characterMakers["Vulpes"] = () => {
  2404. return makeCharacter(
  2405. { name: "Vulpes" },
  2406. {
  2407. front: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(200, "lbs"),
  2410. name: "Front",
  2411. image: {
  2412. source: "./media/characters/vulpes/front.svg",
  2413. extra: 573/543,
  2414. bottom: 0.033
  2415. }
  2416. },
  2417. side: {
  2418. height: math.unit(6, "feet"),
  2419. weight: math.unit(200, "lbs"),
  2420. name: "Side",
  2421. image: {
  2422. source: "./media/characters/vulpes/side.svg",
  2423. extra: 573/543,
  2424. bottom: 0.01
  2425. }
  2426. },
  2427. back: {
  2428. height: math.unit(6, "feet"),
  2429. weight: math.unit(200, "lbs"),
  2430. name: "Back",
  2431. image: {
  2432. source: "./media/characters/vulpes/back.svg",
  2433. extra: 573/543,
  2434. }
  2435. },
  2436. feet: {
  2437. height: math.unit(1.276, "feet"),
  2438. name: "Feet",
  2439. image: {
  2440. source: "./media/characters/vulpes/feet.svg"
  2441. }
  2442. },
  2443. maw: {
  2444. height: math.unit(1.18, "feet"),
  2445. name: "Maw",
  2446. image: {
  2447. source: "./media/characters/vulpes/maw.svg"
  2448. }
  2449. },
  2450. },
  2451. [
  2452. {
  2453. name: "Micro",
  2454. height: math.unit(2, "inches")
  2455. },
  2456. {
  2457. name: "Normal",
  2458. height: math.unit(6.3, "feet")
  2459. },
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(850, "feet")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(7500, "feet"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Gigamacro",
  2471. height: math.unit(570000, "miles")
  2472. }
  2473. ]
  2474. )
  2475. };
  2476. characterMakers["Rain Fallen"] = () => {
  2477. return makeCharacter(
  2478. { name: "Rain Fallen" },
  2479. {
  2480. front: {
  2481. height: math.unit(6, "feet"),
  2482. weight: math.unit(210, "lbs"),
  2483. name: "Front",
  2484. image: {
  2485. source: "./media/characters/rain-fallen/front.svg"
  2486. }
  2487. },
  2488. side: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(210, "lbs"),
  2491. name: "Side",
  2492. image: {
  2493. source: "./media/characters/rain-fallen/side.svg"
  2494. }
  2495. },
  2496. back: {
  2497. height: math.unit(6, "feet"),
  2498. weight: math.unit(210, "lbs"),
  2499. name: "Back",
  2500. image: {
  2501. source: "./media/characters/rain-fallen/back.svg"
  2502. }
  2503. },
  2504. feral: {
  2505. height: math.unit(9, "feet"),
  2506. weight: math.unit(700, "lbs"),
  2507. name: "Feral",
  2508. image: {
  2509. source: "./media/characters/rain-fallen/feral.svg"
  2510. }
  2511. },
  2512. },
  2513. [
  2514. {
  2515. name: "Normal",
  2516. height: math.unit(5, "meter")
  2517. },
  2518. {
  2519. name: "Macro",
  2520. height: math.unit(150, "meter"),
  2521. default: true
  2522. },
  2523. {
  2524. name: "Megamacro",
  2525. height: math.unit(278e6, "meter")
  2526. },
  2527. {
  2528. name: "Gigamacro",
  2529. height: math.unit(2e9, "meter")
  2530. },
  2531. {
  2532. name: "Teramacro",
  2533. height: math.unit(8e12, "meter")
  2534. },
  2535. {
  2536. name: "Devourer",
  2537. height: math.unit(14, "zettameters")
  2538. },
  2539. {
  2540. name: "Scarlet King",
  2541. height: math.unit(18, "yottameters")
  2542. },
  2543. {
  2544. name: "Void",
  2545. height: math.unit(6.66e66, "yottameters")
  2546. }
  2547. ]
  2548. )
  2549. };
  2550. characterMakers["Zaakira"] = () => {
  2551. return makeCharacter(
  2552. { name: "Zaakira" },
  2553. {
  2554. standing: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(180, "lbs"),
  2557. name: "Standing",
  2558. image: {
  2559. source: "./media/characters/zaakira/standing.svg"
  2560. }
  2561. },
  2562. laying: {
  2563. height: math.unit(3, "feet"),
  2564. weight: math.unit(180, "lbs"),
  2565. name: "Laying",
  2566. image: {
  2567. source: "./media/characters/zaakira/laying.svg"
  2568. }
  2569. },
  2570. },
  2571. [
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(12, "feet")
  2575. },
  2576. {
  2577. name: "Macro",
  2578. height: math.unit(279, "feet"),
  2579. default: true
  2580. }
  2581. ]
  2582. )
  2583. };
  2584. characterMakers["Sigvald"] = () => {
  2585. return makeCharacter(
  2586. { name: "Sigvald" },
  2587. {
  2588. front: {
  2589. height: math.unit(6, "feet"),
  2590. weight: math.unit(250, "lbs"),
  2591. name: "Front",
  2592. image: {
  2593. source: "./media/characters/sigvald/front.svg",
  2594. extra: 1000 / 850
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(250, "lbs"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/sigvald/back.svg"
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Normal",
  2609. height: math.unit(8, "feet")
  2610. },
  2611. {
  2612. name: "Large",
  2613. height: math.unit(12, "feet")
  2614. },
  2615. {
  2616. name: "Larger",
  2617. height: math.unit(20, "feet")
  2618. },
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(150, "feet")
  2622. },
  2623. {
  2624. name: "Macro+",
  2625. height: math.unit(200, "feet"),
  2626. default: true
  2627. },
  2628. ]
  2629. )
  2630. };
  2631. characterMakers["Scott"] = () => {
  2632. return makeCharacter(
  2633. { name: "Scott" },
  2634. {
  2635. side: {
  2636. height: math.unit(12, "feet"),
  2637. weight: math.unit(3000, "lbs"),
  2638. name: "Side",
  2639. image: {
  2640. source: "./media/characters/scott/side.svg",
  2641. extra: 1,
  2642. bottom: 0.069
  2643. }
  2644. },
  2645. upright: {
  2646. height: math.unit(12, "feet"),
  2647. weight: math.unit(3000, "lbs"),
  2648. name: "Upright",
  2649. image: {
  2650. source: "./media/characters/scott/upright.svg",
  2651. extra: 1,
  2652. bottom: 0.05
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(12, "feet"),
  2660. default: true
  2661. },
  2662. ]
  2663. )
  2664. };
  2665. characterMakers["Tobias"] = () => {
  2666. return makeCharacter(
  2667. { name: "Tobias" },
  2668. {
  2669. side: {
  2670. height: math.unit(8, "meters"),
  2671. weight: math.unit(84755, "lbs"),
  2672. name: "Side",
  2673. image: {
  2674. source: "./media/characters/tobias/side.svg",
  2675. extra: 5 / 4
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(8, "meters"),
  2683. default: true
  2684. },
  2685. ]
  2686. )
  2687. };
  2688. characterMakers["Kieran"] = () => {
  2689. return makeCharacter(
  2690. { name: "Kieran" },
  2691. {
  2692. front: {
  2693. height: math.unit(5.5, "feet"),
  2694. weight: math.unit(400, "lbs"),
  2695. name: "Front",
  2696. image: {
  2697. source: "./media/characters/kieran/front.svg",
  2698. extra: 1.05
  2699. }
  2700. },
  2701. side: {
  2702. height: math.unit(5.5, "feet"),
  2703. weight: math.unit(400, "lbs"),
  2704. name: "Side",
  2705. image: {
  2706. source: "./media/characters/kieran/side.svg",
  2707. extra: 950 / 850
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(5.5, "feet"),
  2715. default: true
  2716. },
  2717. ]
  2718. )
  2719. };
  2720. characterMakers["Sanya"] = () => {
  2721. return makeCharacter(
  2722. { name: "Sanya" },
  2723. {
  2724. side: {
  2725. height: math.unit(2, "meters"),
  2726. weight: math.unit(70, "kg"),
  2727. name: "Side",
  2728. image: {
  2729. source: "./media/characters/sanya/side.svg",
  2730. bottom: 0.02,
  2731. extra: 1.02
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Small",
  2738. height: math.unit(2, "meters")
  2739. },
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(3, "meters")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(16, "meters"),
  2747. default: true
  2748. },
  2749. ]
  2750. )
  2751. };
  2752. characterMakers["Miranda"] = () => {
  2753. return makeCharacter(
  2754. { name: "Miranda" },
  2755. {
  2756. side: {
  2757. height: math.unit(2, "meters"),
  2758. weight: math.unit(120, "kg"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/miranda/front.svg",
  2762. extra: 10.6 / 10
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(10, "feet"),
  2770. default: true
  2771. }
  2772. ]
  2773. )
  2774. };
  2775. characterMakers["James"] = () => {
  2776. return makeCharacter(
  2777. { name: "James" },
  2778. {
  2779. side: {
  2780. height: math.unit(2, "meters"),
  2781. weight: math.unit(100, "kg"),
  2782. name: "Front",
  2783. image: {
  2784. source: "./media/characters/james/front.svg",
  2785. extra: 10 / 8.5
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(8.5, "feet"),
  2793. default: true
  2794. }
  2795. ]
  2796. )
  2797. };
  2798. characterMakers["Heather"] = () => {
  2799. return makeCharacter(
  2800. { name: "Heather" },
  2801. {
  2802. side: {
  2803. height: math.unit(9.5, "feet"),
  2804. weight: math.unit(2500, "lbs"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/heather/side.svg"
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(9.5, "feet"),
  2815. default: true
  2816. }
  2817. ]
  2818. )
  2819. };
  2820. characterMakers["Lukas"] = () => {
  2821. return makeCharacter(
  2822. { name: "Lukas" },
  2823. {
  2824. side: {
  2825. height: math.unit(6.5, "feet"),
  2826. weight: math.unit(400, "lbs"),
  2827. name: "Side",
  2828. image: {
  2829. source: "./media/characters/lukas/side.svg",
  2830. extra: 7.25 / 6.5
  2831. }
  2832. },
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(6.5, "feet"),
  2838. default: true
  2839. }
  2840. ]
  2841. )
  2842. };
  2843. characterMakers["Louise"] = () => {
  2844. return makeCharacter(
  2845. { name: "Louise" },
  2846. {
  2847. side: {
  2848. height: math.unit(5, "feet"),
  2849. weight: math.unit(3000, "lbs"),
  2850. name: "Side",
  2851. image: {
  2852. source: "./media/characters/louise/side.svg"
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(5, "feet"),
  2860. default: true
  2861. }
  2862. ]
  2863. )
  2864. };
  2865. characterMakers["Ramona"] = () => {
  2866. return makeCharacter(
  2867. { name: "Ramona" },
  2868. {
  2869. side: {
  2870. height: math.unit(6, "feet"),
  2871. weight: math.unit(150, "lbs"),
  2872. name: "Side",
  2873. image: {
  2874. source: "./media/characters/ramona/side.svg"
  2875. }
  2876. },
  2877. },
  2878. [
  2879. {
  2880. name: "Normal",
  2881. height: math.unit(5.3, "meters"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Macro",
  2886. height: math.unit(20, "stories")
  2887. },
  2888. {
  2889. name: "Macro+",
  2890. height: math.unit(50, "stories")
  2891. },
  2892. ]
  2893. )
  2894. };
  2895. characterMakers["Deerpuff"] = () => {
  2896. return makeCharacter(
  2897. { name: "Deerpuff" },
  2898. {
  2899. standing: {
  2900. height: math.unit(5.75, "feet"),
  2901. weight: math.unit(160, "lbs"),
  2902. name: "Standing",
  2903. image: {
  2904. source: "./media/characters/deerpuff/standing.svg",
  2905. extra: 682 / 624
  2906. }
  2907. },
  2908. sitting: {
  2909. height: math.unit(5.75 / 1.79, "feet"),
  2910. weight: math.unit(160, "lbs"),
  2911. name: "Sitting",
  2912. image: {
  2913. source: "./media/characters/deerpuff/sitting.svg",
  2914. bottom: 44 / 400,
  2915. extra: 1
  2916. }
  2917. },
  2918. taurLaying: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(400, "lbs"),
  2921. name: "Taur (Laying)",
  2922. image: {
  2923. source: "./media/characters/deerpuff/taur-laying.svg"
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Puffball",
  2930. height: math.unit(6, "inches")
  2931. },
  2932. {
  2933. name: "Normalpuff",
  2934. height: math.unit(5.75, "feet")
  2935. },
  2936. {
  2937. name: "Macropuff",
  2938. height: math.unit(1500, "feet"),
  2939. default: true
  2940. },
  2941. {
  2942. name: "Megapuff",
  2943. height: math.unit(500, "miles")
  2944. },
  2945. {
  2946. name: "Gigapuff",
  2947. height: math.unit(250000, "miles")
  2948. },
  2949. {
  2950. name: "Omegapuff",
  2951. height: math.unit(1000, "lightyears")
  2952. },
  2953. ]
  2954. )
  2955. };
  2956. characterMakers["Vivian"] = () => {
  2957. return makeCharacter(
  2958. { name: "Vivian" },
  2959. {
  2960. stomping: {
  2961. height: math.unit(6, "feet"),
  2962. weight: math.unit(170, "lbs"),
  2963. name: "Stomping",
  2964. image: {
  2965. source: "./media/characters/vivian/stomping.svg"
  2966. }
  2967. },
  2968. sitting: {
  2969. height: math.unit(6 / 1.75, "feet"),
  2970. weight: math.unit(170, "lbs"),
  2971. name: "Sitting",
  2972. image: {
  2973. source: "./media/characters/vivian/sitting.svg",
  2974. bottom: 1 / 6.4,
  2975. extra: 1,
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(7, "feet"),
  2983. default: true
  2984. },
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(10, "stories")
  2988. },
  2989. {
  2990. name: "Macro+",
  2991. height: math.unit(30, "stories")
  2992. },
  2993. {
  2994. name: "Megamacro",
  2995. height: math.unit(10, "miles")
  2996. },
  2997. {
  2998. name: "Megamacro+",
  2999. height: math.unit(2750000, "meters")
  3000. },
  3001. ]
  3002. )
  3003. };
  3004. characterMakers["Prince"] = () => {
  3005. return makeCharacter(
  3006. { name: "Prince" },
  3007. {
  3008. front: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(160, "lbs"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/prince/front.svg",
  3014. extra: 3400/3000
  3015. }
  3016. },
  3017. jumping: {
  3018. height: math.unit(6, "feet"),
  3019. weight: math.unit(160, "lbs"),
  3020. name: "Jumping",
  3021. image: {
  3022. source: "./media/characters/prince/jump.svg",
  3023. extra: 2555/2134
  3024. }
  3025. },
  3026. },
  3027. [
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(7.75, "feet"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Not cute",
  3035. height: math.unit(17, "feet")
  3036. },
  3037. {
  3038. name: "I said NOT",
  3039. height: math.unit(91, "feet")
  3040. },
  3041. {
  3042. name: "Please stop",
  3043. height: math.unit(560, "feet")
  3044. },
  3045. {
  3046. name: "What have you done",
  3047. height: math.unit(2200, "feet")
  3048. },
  3049. {
  3050. name: "Deer God",
  3051. height: math.unit(3.6, "miles")
  3052. },
  3053. ]
  3054. )
  3055. };
  3056. characterMakers["Psymon"] = () => {
  3057. return makeCharacter(
  3058. { name: "Psymon" },
  3059. {
  3060. standing: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(300, "lbs"),
  3063. name: "Standing",
  3064. image: {
  3065. source: "./media/characters/psymon/standing.svg",
  3066. extra: 1888/1810,
  3067. bottom: 0.05
  3068. }
  3069. },
  3070. slithering: {
  3071. height: math.unit(6, "feet"),
  3072. weight: math.unit(300, "lbs"),
  3073. name: "Slithering",
  3074. image: {
  3075. source: "./media/characters/psymon/slithering.svg",
  3076. extra: 1330/1224
  3077. }
  3078. },
  3079. slitheringAlt: {
  3080. height: math.unit(6, "feet"),
  3081. weight: math.unit(300, "lbs"),
  3082. name: "Slithering (Alt)",
  3083. image: {
  3084. source: "./media/characters/psymon/slithering-alt.svg",
  3085. extra: 1330/1224
  3086. }
  3087. },
  3088. },
  3089. [
  3090. {
  3091. name: "Normal",
  3092. height: math.unit(11.25, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Large",
  3097. height: math.unit(27, "feet")
  3098. },
  3099. {
  3100. name: "Giant",
  3101. height: math.unit(87, "feet")
  3102. },
  3103. {
  3104. name: "Macro",
  3105. height: math.unit(365, "feet")
  3106. },
  3107. {
  3108. name: "Megamacro",
  3109. height: math.unit(3, "miles")
  3110. },
  3111. {
  3112. name: "World Serpent",
  3113. height: math.unit(8000, "miles")
  3114. },
  3115. ]
  3116. )
  3117. };
  3118. characterMakers["Daimos"] = () => {
  3119. return makeCharacter(
  3120. { name: "Daimos" },
  3121. {
  3122. front: {
  3123. height: math.unit(6, "feet"),
  3124. weight: math.unit(180, "lbs"),
  3125. name: "Front",
  3126. image: {
  3127. source: "./media/characters/daimos/front.svg",
  3128. extra: 4160/3897,
  3129. bottom: 0.021
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(8, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Big Dog",
  3141. height: math.unit(22, "feet")
  3142. },
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(127, "feet")
  3146. },
  3147. {
  3148. name: "Megamacro",
  3149. height: math.unit(3600, "feet")
  3150. },
  3151. ]
  3152. )
  3153. };
  3154. characterMakers["Blake"] = () => {
  3155. return makeCharacter(
  3156. { name: "Blake" },
  3157. {
  3158. side: {
  3159. height: math.unit(6, "feet"),
  3160. weight: math.unit(180, "lbs"),
  3161. name: "Side",
  3162. image: {
  3163. source: "./media/characters/blake/side.svg",
  3164. extra: 1212/1120 ,
  3165. bottom: 0.05
  3166. }
  3167. },
  3168. crouched: {
  3169. height: math.unit(6*0.57, "feet"),
  3170. weight: math.unit(180, "lbs"),
  3171. name: "Crouched",
  3172. image: {
  3173. source: "./media/characters/blake/crouched.svg",
  3174. extra: 840/587 ,
  3175. bottom: 0.04
  3176. }
  3177. },
  3178. bent: {
  3179. height: math.unit(6*0.75, "feet"),
  3180. weight: math.unit(180, "lbs"),
  3181. name: "Bent",
  3182. image: {
  3183. source: "./media/characters/blake/bent.svg",
  3184. extra: 592/544 ,
  3185. bottom: 0.035
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(8 + 1/6, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Big Backside",
  3197. height: math.unit(37, "feet")
  3198. },
  3199. {
  3200. name: "Subway Shredder",
  3201. height: math.unit(72, "feet")
  3202. },
  3203. {
  3204. name: "City Carver",
  3205. height: math.unit(1675, "feet")
  3206. },
  3207. {
  3208. name: "Tectonic Tweaker",
  3209. height: math.unit(2300, "miles")
  3210. },
  3211. ]
  3212. )
  3213. };
  3214. characterMakers["Guisetto"] = () => {
  3215. return makeCharacter(
  3216. { name: "Guisetto" },
  3217. {
  3218. front: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(180, "lbs"),
  3221. name: "Front",
  3222. image: {
  3223. source: "./media/characters/guisetto/front.svg",
  3224. extra: 856/817,
  3225. bottom: 0.06
  3226. }
  3227. },
  3228. airborne: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(180, "lbs"),
  3231. name: "Airborne",
  3232. image: {
  3233. source: "./media/characters/guisetto/airborne.svg",
  3234. extra: 584/525
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(10 + 11/12, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Large",
  3246. height: math.unit(35, "feet")
  3247. },
  3248. {
  3249. name: "Macro",
  3250. height: math.unit(475, "feet")
  3251. },
  3252. ]
  3253. )
  3254. };
  3255. characterMakers["Luxor"] = () => {
  3256. return makeCharacter(
  3257. { name: "Luxor" },
  3258. {
  3259. front: {
  3260. height: math.unit(6, "feet"),
  3261. weight: math.unit(180, "lbs"),
  3262. name: "Front",
  3263. image: {
  3264. source: "./media/characters/luxor/front.svg",
  3265. extra: 2940/2152
  3266. }
  3267. },
  3268. back: {
  3269. height: math.unit(6, "feet"),
  3270. weight: math.unit(180, "lbs"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/luxor/back.svg",
  3274. extra: 1083/960
  3275. }
  3276. },
  3277. },
  3278. [
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(5 + 5/6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Lamp",
  3286. height: math.unit(50, "feet")
  3287. },
  3288. {
  3289. name: "Lämp",
  3290. height: math.unit(300, "feet")
  3291. },
  3292. {
  3293. name: "The sun is a lamp",
  3294. height: math.unit(250000, "miles")
  3295. },
  3296. ]
  3297. )
  3298. };
  3299. characterMakers["Huoyan"] = () => {
  3300. return makeCharacter(
  3301. { name: "Huoyan" },
  3302. {
  3303. front: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(50, "lbs"),
  3306. name: "Front",
  3307. image: {
  3308. source: "./media/characters/huoyan/front.svg"
  3309. }
  3310. },
  3311. side: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(180, "lbs"),
  3314. name: "Side",
  3315. image: {
  3316. source: "./media/characters/huoyan/side.svg"
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Chef",
  3323. height: math.unit(9, "feet")
  3324. },
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(65, "feet"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Macro",
  3332. height: math.unit(780, "feet")
  3333. },
  3334. {
  3335. name: "Flaming Mountain",
  3336. height: math.unit(4.8, "miles")
  3337. },
  3338. {
  3339. name: "Celestial",
  3340. height: math.unit(765000, "miles")
  3341. },
  3342. ]
  3343. )
  3344. };
  3345. characterMakers["Tails"] = () => {
  3346. return makeCharacter(
  3347. { name: "Tails" },
  3348. {
  3349. front: {
  3350. height: math.unit(5 + 3/4, "feet"),
  3351. weight: math.unit(120, "lbs"),
  3352. name: "Front",
  3353. image: {
  3354. source: "./media/characters/tails/front.svg"
  3355. }
  3356. }
  3357. },
  3358. [
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(5 + 3/4, "feet"),
  3362. default: true
  3363. }
  3364. ]
  3365. )
  3366. };
  3367. characterMakers["Rainy"] = () => {
  3368. return makeCharacter(
  3369. { name: "Rainy" },
  3370. {
  3371. front: {
  3372. height: math.unit(4, "feet"),
  3373. weight: math.unit(50, "lbs"),
  3374. name: "Front",
  3375. image: {
  3376. source: "./media/characters/rainy/front.svg"
  3377. }
  3378. }
  3379. },
  3380. [
  3381. {
  3382. name: "Macro",
  3383. height: math.unit(800, "feet"),
  3384. default: true
  3385. }
  3386. ]
  3387. )
  3388. };
  3389. characterMakers["Rainier"] = () => {
  3390. return makeCharacter(
  3391. { name: "Rainier" },
  3392. {
  3393. front: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(150, "lbs"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/rainier/front.svg"
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Micro",
  3405. height: math.unit(2, "mm"),
  3406. default: true
  3407. }
  3408. ]
  3409. )
  3410. };
  3411. characterMakers["Andy"] = () => {
  3412. return makeCharacter(
  3413. { name: "Andy" },
  3414. {
  3415. front: {
  3416. height: math.unit(6, "feet"),
  3417. weight: math.unit(180, "lbs"),
  3418. name: "Front",
  3419. image: {
  3420. source: "./media/characters/andy/front.svg"
  3421. }
  3422. }
  3423. },
  3424. [
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(8, "feet"),
  3428. default: true
  3429. },
  3430. {
  3431. name: "Macro",
  3432. height: math.unit(1000, "feet")
  3433. },
  3434. {
  3435. name: "Megamacro",
  3436. height: math.unit(5, "miles")
  3437. },
  3438. {
  3439. name: "Gigamacro",
  3440. height: math.unit(5000, "miles")
  3441. },
  3442. ]
  3443. )
  3444. };
  3445. characterMakers["Cimmaron"] = () => {
  3446. return makeCharacter(
  3447. { name: "Cimmaron" },
  3448. {
  3449. frontClothed: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(210, "lbs"),
  3452. name: "Front (Clothed)",
  3453. image: {
  3454. source: "./media/characters/cimmaron/front-clothed.svg",
  3455. extra: 701/676 ,
  3456. bottom: 0.046
  3457. }
  3458. },
  3459. backClothed: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(210, "lbs"),
  3462. name: "Back (Clothed)",
  3463. image: {
  3464. source: "./media/characters/cimmaron/back-clothed.svg",
  3465. extra: 701/676 ,
  3466. bottom: 0.046
  3467. }
  3468. },
  3469. frontNude: {
  3470. height: math.unit(6, "feet"),
  3471. weight: math.unit(210, "lbs"),
  3472. name: "Front (Nude)",
  3473. image: {
  3474. source: "./media/characters/cimmaron/front-nude.svg",
  3475. extra: 701/676 ,
  3476. bottom: 0.046
  3477. }
  3478. },
  3479. backNude: {
  3480. height: math.unit(6, "feet"),
  3481. weight: math.unit(210, "lbs"),
  3482. name: "Back (Nude)",
  3483. image: {
  3484. source: "./media/characters/cimmaron/back-nude.svg",
  3485. extra: 701/676 ,
  3486. bottom: 0.046
  3487. }
  3488. }
  3489. },
  3490. [
  3491. {
  3492. name: "Normal",
  3493. height: math.unit(6, "feet"),
  3494. default: true
  3495. },
  3496. {
  3497. name: "Macro Mayor",
  3498. height: math.unit(350, "meters")
  3499. },
  3500. ]
  3501. )
  3502. };
  3503. characterMakers["Akari Kaen"] = () => {
  3504. return makeCharacter(
  3505. { name: "Akari Kaen" },
  3506. {
  3507. front: {
  3508. height: math.unit(6, "feet"),
  3509. weight: math.unit(200, "lbs"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/akari/front.svg",
  3513. extra: 962/901,
  3514. bottom: 0.04
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Micro",
  3521. height: math.unit(5, "inches"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Normal",
  3526. height: math.unit(7, "feet")
  3527. },
  3528. ]
  3529. )
  3530. };
  3531. characterMakers["Cynosura"] = () => {
  3532. return makeCharacter(
  3533. { name: "Cynosura" },
  3534. {
  3535. front: {
  3536. height: math.unit(6, "feet"),
  3537. weight: math.unit(140, "lbs"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/cynosura/front.svg",
  3541. extra: 896/847
  3542. }
  3543. },
  3544. back: {
  3545. height: math.unit(6, "feet"),
  3546. weight: math.unit(140, "lbs"),
  3547. name: "Back",
  3548. image: {
  3549. source: "./media/characters/cynosura/back.svg",
  3550. extra: 1365/1250
  3551. }
  3552. },
  3553. },
  3554. [
  3555. {
  3556. name: "Micro",
  3557. height: math.unit(4, "inches")
  3558. },
  3559. {
  3560. name: "Normal",
  3561. height: math.unit(5.75, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Tall",
  3566. height: math.unit(10, "feet")
  3567. },
  3568. {
  3569. name: "Big",
  3570. height: math.unit(20, "feet")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(50, "feet")
  3575. },
  3576. ]
  3577. )
  3578. };
  3579. characterMakers["Gin"] = () => {
  3580. return makeCharacter(
  3581. { name: "Gin" },
  3582. {
  3583. front: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(170, "lbs"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/gin/front.svg",
  3589. extra: 1.053,
  3590. bottom: 0.025
  3591. }
  3592. },
  3593. foot: {
  3594. height: math.unit(6/4.25, "feet"),
  3595. name: "Foot",
  3596. image: {
  3597. source: "./media/characters/gin/foot.svg"
  3598. }
  3599. },
  3600. sole: {
  3601. height: math.unit(6/4.40, "feet"),
  3602. name: "Sole",
  3603. image: {
  3604. source: "./media/characters/gin/sole.svg"
  3605. }
  3606. },
  3607. },
  3608. [
  3609. {
  3610. name: "Normal",
  3611. height: math.unit(9 + 4/12, "feet")
  3612. },
  3613. {
  3614. name: "Macro",
  3615. height: math.unit(1500, "feet")
  3616. },
  3617. {
  3618. name: "Megamacro",
  3619. height: math.unit(200, "miles"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Gigamacro",
  3624. height: math.unit(500, "megameters")
  3625. },
  3626. {
  3627. name: "Teramacro",
  3628. height: math.unit(15, "lightyears")
  3629. }
  3630. ]
  3631. )
  3632. };
  3633. characterMakers["Guy"] = () => {
  3634. return makeCharacter(
  3635. { name: "Guy" },
  3636. {
  3637. front: {
  3638. height: math.unit(6 + 1/6, "feet"),
  3639. weight: math.unit(178, "lbs"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/guy/front.svg"
  3643. }
  3644. }
  3645. },
  3646. [
  3647. {
  3648. name: "Normal",
  3649. height: math.unit(6 + 1/6, "feet"),
  3650. default: true
  3651. },
  3652. {
  3653. name: "Large",
  3654. height: math.unit(25 + 7/12, "feet")
  3655. },
  3656. {
  3657. name: "Macro",
  3658. height: math.unit(60 + 9/12, "feet")
  3659. },
  3660. {
  3661. name: "Macro+",
  3662. height: math.unit(246, "feet")
  3663. },
  3664. {
  3665. name: "Macro++",
  3666. height: math.unit(878, "feet")
  3667. }
  3668. ]
  3669. )
  3670. };
  3671. characterMakers["Tiberius"] = () => {
  3672. return makeCharacter(
  3673. { name: "Tiberius" },
  3674. {
  3675. front: {
  3676. height: math.unit(9, "feet"),
  3677. weight: math.unit(800, "lbs"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/tiberius/front.svg",
  3681. extra: 2295/2071
  3682. }
  3683. },
  3684. back: {
  3685. height: math.unit(9, "feet"),
  3686. weight: math.unit(800, "lbs"),
  3687. name: "Back",
  3688. image: {
  3689. source: "./media/characters/tiberius/back.svg",
  3690. extra: 2373/2160
  3691. }
  3692. },
  3693. },
  3694. [
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(9, "feet"),
  3698. default: true
  3699. }
  3700. ]
  3701. )
  3702. };
  3703. characterMakers["Surgo"] = () => {
  3704. return makeCharacter(
  3705. { name: "Surgo" },
  3706. {
  3707. front: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(600, "lbs"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/surgo/front.svg",
  3713. extra: 3591/2227
  3714. }
  3715. },
  3716. back: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(600, "lbs"),
  3719. name: "Back",
  3720. image: {
  3721. source: "./media/characters/surgo/back.svg",
  3722. extra: 3557/2228
  3723. }
  3724. },
  3725. laying: {
  3726. height: math.unit(6 * 0.85, "feet"),
  3727. weight: math.unit(600, "lbs"),
  3728. name: "Laying",
  3729. image: {
  3730. source: "./media/characters/surgo/laying.svg"
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(6, "feet"),
  3738. default: true
  3739. }
  3740. ]
  3741. )
  3742. };
  3743. characterMakers["Cibus"] = () => {
  3744. return makeCharacter(
  3745. { name: "Cibus" },
  3746. {
  3747. side: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(150, "lbs"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/cibus/side.svg",
  3753. extra: 800/400
  3754. }
  3755. },
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(6, "feet"),
  3761. default: true
  3762. }
  3763. ]
  3764. )
  3765. };
  3766. characterMakers["Nibbles"] = () => {
  3767. return makeCharacter(
  3768. { name: "Nibbles" },
  3769. {
  3770. front: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(240, "lbs"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/nibbles/front.svg"
  3776. }
  3777. },
  3778. side: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(240, "lbs"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/nibbles/side.svg"
  3784. }
  3785. },
  3786. },
  3787. [
  3788. {
  3789. name: "Normal",
  3790. height: math.unit(9, "feet"),
  3791. default: true
  3792. }
  3793. ]
  3794. )
  3795. };
  3796. characterMakers["Rikky"] = () => {
  3797. return makeCharacter(
  3798. { name: "Rikky" },
  3799. {
  3800. side: {
  3801. height: math.unit(5 + 1/6, "feet"),
  3802. weight: math.unit(130, "lbs"),
  3803. name: "Side",
  3804. image: {
  3805. source: "./media/characters/rikky/side.svg"
  3806. }
  3807. },
  3808. },
  3809. [
  3810. {
  3811. name: "Normal",
  3812. height: math.unit(5 + 1/6, "feet")
  3813. },
  3814. {
  3815. name: "Macro",
  3816. height: math.unit(152, "feet"),
  3817. default: true
  3818. },
  3819. {
  3820. name: "Megamacro",
  3821. height: math.unit(7, "miles")
  3822. }
  3823. ]
  3824. )
  3825. };
  3826. characterMakers["Malfressa"] = () => {
  3827. return makeCharacter(
  3828. { name: "Malfressa" },
  3829. {
  3830. side: {
  3831. height: math.unit(370, "cm"),
  3832. weight: math.unit(350, "lbs"),
  3833. name: "Side",
  3834. image: {
  3835. source: "./media/characters/malfressa/side.svg"
  3836. }
  3837. },
  3838. walking: {
  3839. height: math.unit(370, "cm"),
  3840. weight: math.unit(350, "lbs"),
  3841. name: "Walking",
  3842. image: {
  3843. source: "./media/characters/malfressa/walking.svg"
  3844. }
  3845. },
  3846. feral: {
  3847. height: math.unit(2500, "cm"),
  3848. weight: math.unit(100000, "lbs"),
  3849. name: "Feral",
  3850. image: {
  3851. source: "./media/characters/malfressa/feral.svg",
  3852. extra: 2108/837 ,
  3853. bottom: 0.02
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(370, "cm")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(300, "meters"),
  3865. default: true
  3866. }
  3867. ]
  3868. )
  3869. };
  3870. characterMakers["Jaro"] = () => {
  3871. return makeCharacter(
  3872. { name: "Jaro" },
  3873. {
  3874. front: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/jaro/front.svg"
  3880. }
  3881. },
  3882. back: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(60, "kg"),
  3885. name: "Back",
  3886. image: {
  3887. source: "./media/characters/jaro/back.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Micro",
  3894. height: math.unit(7, "inches")
  3895. },
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(5.5, "feet"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Minimacro",
  3903. height: math.unit(20, "feet")
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(200, "meters")
  3908. }
  3909. ]
  3910. )
  3911. };
  3912. characterMakers["Rogue"] = () => {
  3913. return makeCharacter(
  3914. { name: "Rogue" },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(195, "lb"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/rogue/front.svg"
  3922. }
  3923. },
  3924. },
  3925. [
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(90, "feet"),
  3929. default: true
  3930. },
  3931. ]
  3932. )
  3933. };
  3934. characterMakers["Piper"] = () => {
  3935. return makeCharacter(
  3936. { name: "Piper" },
  3937. {
  3938. front: {
  3939. height: math.unit(5 + 8/12, "feet"),
  3940. weight: math.unit(140, "lb"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/piper/front.svg",
  3944. extra: 3928/3681
  3945. }
  3946. },
  3947. },
  3948. [
  3949. {
  3950. name: "Micro",
  3951. height: math.unit(2, "inches")
  3952. },
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(5 + 8/12, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(250, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Megamacro",
  3964. height: math.unit(7, "miles")
  3965. },
  3966. ]
  3967. )
  3968. };
  3969. characterMakers["Gemini"] = () => {
  3970. return makeCharacter(
  3971. { name: "Gemini" },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(220, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/gemini/front.svg"
  3979. }
  3980. },
  3981. back: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(220, "lb"),
  3984. name: "Back",
  3985. image: {
  3986. source: "./media/characters/gemini/back.svg"
  3987. }
  3988. },
  3989. kneeling: {
  3990. height: math.unit(6/1.5, "feet"),
  3991. weight: math.unit(220, "lb"),
  3992. name: "Kneeling",
  3993. image: {
  3994. source: "./media/characters/gemini/kneeling.svg",
  3995. bottom: 0.02
  3996. }
  3997. },
  3998. },
  3999. [
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(300, "meters"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(6900, "meters")
  4008. },
  4009. ]
  4010. )
  4011. };
  4012. characterMakers["Alicia"] = () => {
  4013. return makeCharacter(
  4014. { name: "Alicia" },
  4015. {
  4016. anthro: {
  4017. height: math.unit(2.35, "meters"),
  4018. weight: math.unit(73, "kg"),
  4019. name: "Anthro",
  4020. image: {
  4021. source: "./media/characters/alicia/anthro.svg"
  4022. }
  4023. },
  4024. feral: {
  4025. height: math.unit(1.69, "meters"),
  4026. weight: math.unit(73, "kg"),
  4027. name: "Feral",
  4028. image: {
  4029. source: "./media/characters/alicia/feral.svg"
  4030. }
  4031. },
  4032. },
  4033. [
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(2.35, "meters")
  4037. },
  4038. {
  4039. name: "Macro",
  4040. height: math.unit(60, "meters"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(10000, "kilometers")
  4046. },
  4047. ]
  4048. )
  4049. };
  4050. characterMakers["Archy"] = () => {
  4051. return makeCharacter(
  4052. { name: "Archy" },
  4053. {
  4054. front: {
  4055. height: math.unit(7, "feet"),
  4056. weight: math.unit(250, "lbs"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/archy/front.svg"
  4060. }
  4061. }
  4062. },
  4063. [
  4064. {
  4065. name: "Micro",
  4066. height: math.unit(1, "inch")
  4067. },
  4068. {
  4069. name: "Shorty",
  4070. height: math.unit(5, "feet")
  4071. },
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(7, "feet")
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(600, "meters"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Megamacro",
  4083. height: math.unit(1, "mile")
  4084. },
  4085. ]
  4086. )
  4087. };
  4088. characterMakers["Berri"] = () => {
  4089. return makeCharacter(
  4090. { name: "Berri" },
  4091. {
  4092. front: {
  4093. height: math.unit(1.65, "meters"),
  4094. weight: math.unit(74, "kg"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/berri/front.svg"
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(1.65, "meters")
  4105. },
  4106. {
  4107. name: "Macro",
  4108. height: math.unit(60, "m"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(9.213, "km")
  4114. },
  4115. {
  4116. name: "Planet Eater",
  4117. height: math.unit(489, "megameters")
  4118. },
  4119. {
  4120. name: "Teramacro",
  4121. height: math.unit(2471635000000, "meters")
  4122. },
  4123. {
  4124. name: "Examacro",
  4125. height: math.unit(8.0624e+26, "meters")
  4126. }
  4127. ]
  4128. )
  4129. };
  4130. characterMakers["Lexi"] = () => {
  4131. return makeCharacter(
  4132. { name: "Lexi" },
  4133. {
  4134. front: {
  4135. height: math.unit(1.72, "meters"),
  4136. weight: math.unit(68, "kg"),
  4137. name: "Front",
  4138. image: {
  4139. source: "./media/characters/lexi/front.svg"
  4140. }
  4141. }
  4142. },
  4143. [
  4144. {
  4145. name: "Very Smol",
  4146. height: math.unit(10, "mm")
  4147. },
  4148. {
  4149. name: "Micro",
  4150. height: math.unit(6.8, "cm"),
  4151. default: true
  4152. },
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(1.72, "m")
  4156. }
  4157. ]
  4158. )
  4159. };
  4160. characterMakers["Martin"] = () => {
  4161. return makeCharacter(
  4162. { name: "Martin" },
  4163. {
  4164. front: {
  4165. height: math.unit(1.69, "meters"),
  4166. weight: math.unit(68, "kg"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/martin/front.svg",
  4170. extra: 596/581
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Micro",
  4177. height: math.unit(6.85, "cm"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(1.69, "m")
  4183. }
  4184. ]
  4185. )
  4186. };
  4187. characterMakers["Juno"] = () => {
  4188. return makeCharacter(
  4189. { name: "Juno" },
  4190. {
  4191. front: {
  4192. height: math.unit(1.69, "meters"),
  4193. weight: math.unit(68, "kg"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/juno/front.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Micro",
  4203. height: math.unit(7, "cm")
  4204. },
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(1.89, "m")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(353, "meters"),
  4212. default: true
  4213. }
  4214. ]
  4215. )
  4216. };
  4217. characterMakers["Samantha"] = () => {
  4218. return makeCharacter(
  4219. { name: "Samantha" },
  4220. {
  4221. front: {
  4222. height: math.unit(1.93, "meters"),
  4223. weight: math.unit(83, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/samantha/front.svg"
  4227. }
  4228. },
  4229. frontClothed: {
  4230. height: math.unit(1.93, "meters"),
  4231. weight: math.unit(83, "kg"),
  4232. name: "Front (Clothed)",
  4233. image: {
  4234. source: "./media/characters/samantha/front-clothed.svg"
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(1.93, "meters"),
  4239. weight: math.unit(83, "kg"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/samantha/back.svg"
  4243. }
  4244. },
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(1.93, "m")
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(74, "meters"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Macro+",
  4258. height: math.unit(223, "meters"),
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(8381, "meters"),
  4263. },
  4264. {
  4265. name: "Megamacro+",
  4266. height: math.unit(12000, "kilometers")
  4267. },
  4268. ]
  4269. )
  4270. };
  4271. characterMakers["Dr. Clay"] = () => {
  4272. return makeCharacter(
  4273. { name: "Dr. Clay" },
  4274. {
  4275. front: {
  4276. height: math.unit(1.92, "meters"),
  4277. weight: math.unit(80, "kg"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/dr-clay/front.svg"
  4281. }
  4282. },
  4283. frontClothed: {
  4284. height: math.unit(1.92, "meters"),
  4285. weight: math.unit(80, "kg"),
  4286. name: "Front (Clothed)",
  4287. image: {
  4288. source: "./media/characters/dr-clay/front-clothed.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(1.92, "m")
  4296. },
  4297. {
  4298. name: "Macro",
  4299. height: math.unit(214, "meters"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro+",
  4304. height: math.unit(12.237, "meters"),
  4305. },
  4306. {
  4307. name: "Megamacro",
  4308. height: math.unit(557, "megameters"),
  4309. },
  4310. {
  4311. name: "Unimaginable",
  4312. height: math.unit(120e9, "lightyears")
  4313. },
  4314. ]
  4315. )
  4316. };
  4317. characterMakers["Wyvrn Ripsnarl"] = () => {
  4318. return makeCharacter(
  4319. { name: "Wyvrn Ripsnarl" },
  4320. {
  4321. front: {
  4322. height: math.unit(2, "meters"),
  4323. weight: math.unit(80, "kg"),
  4324. name: "Front",
  4325. image: {
  4326. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4327. }
  4328. }
  4329. },
  4330. [
  4331. {
  4332. name: "Teramacro",
  4333. height: math.unit(500000, "lightyears"),
  4334. default: true
  4335. },
  4336. ]
  4337. )
  4338. };
  4339. characterMakers["Vemus"] = () => {
  4340. return makeCharacter(
  4341. { name: "Vemus" },
  4342. {
  4343. front: {
  4344. height: math.unit(2, "meters"),
  4345. weight: math.unit(150, "kg"),
  4346. name: "Front",
  4347. image: {
  4348. source: "./media/characters/vemus/front.svg",
  4349. extra: 2384/2084,
  4350. bottom: 0.0123
  4351. }
  4352. }
  4353. },
  4354. [
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(3.75, "meters"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Big",
  4362. height: math.unit(8, "meters")
  4363. },
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(100, "meters")
  4367. },
  4368. {
  4369. name: "Macro+",
  4370. height: math.unit(1500, "meters")
  4371. },
  4372. {
  4373. name: "Stellar",
  4374. height: math.unit(14e8, "meters")
  4375. },
  4376. ]
  4377. )
  4378. };
  4379. characterMakers["Beherit"] = () => {
  4380. return makeCharacter(
  4381. { name: "Beherit" },
  4382. {
  4383. front: {
  4384. height: math.unit(2, "meters"),
  4385. weight: math.unit(70, "kg"),
  4386. name: "Front",
  4387. image: {
  4388. source: "./media/characters/beherit/front.svg",
  4389. extra: 1408/1242
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(6, "feet")
  4397. },
  4398. {
  4399. name: "Lorg",
  4400. height: math.unit(25, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Lorger",
  4405. height: math.unit(75, "feet")
  4406. },
  4407. {
  4408. name: "Macro",
  4409. height: math.unit(200, "meters")
  4410. },
  4411. ]
  4412. )
  4413. };
  4414. characterMakers["Everett"] = () => {
  4415. return makeCharacter(
  4416. { name: "Everett" },
  4417. {
  4418. front: {
  4419. height: math.unit(2, "meters"),
  4420. weight: math.unit(150, "kg"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/everett/front.svg",
  4424. extra: 2038/1737 ,
  4425. bottom: 0.03
  4426. }
  4427. },
  4428. paw: {
  4429. height: math.unit(2/3.6, "meters"),
  4430. name: "Paw",
  4431. image: {
  4432. source: "./media/characters/everett/paw.svg"
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(15, "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Lorg",
  4444. height: math.unit(70, "feet"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Lorger",
  4449. height: math.unit(250, "feet")
  4450. },
  4451. {
  4452. name: "Macro",
  4453. height: math.unit(500, "meters")
  4454. },
  4455. ]
  4456. )
  4457. };
  4458. characterMakers["Rose Lion"] = () => {
  4459. return makeCharacter(
  4460. { name: "Rose Lion" },
  4461. {
  4462. front: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(86, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/rose-lion/front.svg"
  4468. }
  4469. },
  4470. bent: {
  4471. height: math.unit(2/1.4288, "meters"),
  4472. weight: math.unit(86, "kg"),
  4473. name: "Bent",
  4474. image: {
  4475. source: "./media/characters/rose-lion/bent.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Mini-Micro",
  4482. height: math.unit(1, "cm")
  4483. },
  4484. {
  4485. name: "Micro",
  4486. height: math.unit(3.5, "inches"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(6 + 1/6, "feet")
  4492. },
  4493. {
  4494. name: "Mini-Macro",
  4495. height: math.unit(9 + 10/12, "feet")
  4496. },
  4497. ]
  4498. )
  4499. };
  4500. characterMakers["Regal"] = () => {
  4501. return makeCharacter(
  4502. { name: "Regal" },
  4503. {
  4504. front: {
  4505. height: math.unit(2, "meters"),
  4506. weight: math.unit(350, "lbs"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/regal/front.svg"
  4510. }
  4511. },
  4512. back: {
  4513. height: math.unit(2, "meters"),
  4514. weight: math.unit(350, "lbs"),
  4515. name: "Back",
  4516. image: {
  4517. source: "./media/characters/regal/back.svg"
  4518. }
  4519. },
  4520. },
  4521. [
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(350, "feet"),
  4525. default: true
  4526. }
  4527. ]
  4528. )
  4529. };
  4530. characterMakers["Opal"] = () => {
  4531. return makeCharacter(
  4532. { name: "Opal" },
  4533. {
  4534. front: {
  4535. height: math.unit(4 + 11/12, "feet"),
  4536. weight: math.unit(100, "lbs"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/opal/front.svg"
  4540. }
  4541. },
  4542. frontAlt: {
  4543. height: math.unit(4 + 11/12, "feet"),
  4544. weight: math.unit(100, "lbs"),
  4545. name: "Front (Alt)",
  4546. image: {
  4547. source: "./media/characters/opal/front-alt.svg"
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Small",
  4554. height: math.unit(4 + 11/12, "feet")
  4555. },
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(20, "feet"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(120, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(80, "miles")
  4568. },
  4569. {
  4570. name: "True Size",
  4571. height: math.unit(100000, "lightyears")
  4572. },
  4573. ]
  4574. )
  4575. };
  4576. characterMakers["Vector Wuff"] = () => {
  4577. return makeCharacter(
  4578. { name: "Vector Wuff" },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(200, "lbs"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/vector-wuff/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(2.8, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(450, "meters"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(15, "kilometers")
  4602. }
  4603. ]
  4604. )
  4605. };
  4606. characterMakers["Dannik"] = () => {
  4607. return makeCharacter(
  4608. { name: "Dannik" },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(256, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/dannik/front.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Macro",
  4622. height: math.unit(69.57, "meters"),
  4623. default: true
  4624. },
  4625. ]
  4626. )
  4627. };
  4628. characterMakers["Azura Saharah"] = () => {
  4629. return makeCharacter(
  4630. { name: "Azura Saharah" },
  4631. {
  4632. front: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(120, "lbs"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/azura-saharah/front.svg"
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(6, "feet"),
  4642. weight: math.unit(120, "lbs"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/azura-saharah/back.svg"
  4646. }
  4647. },
  4648. },
  4649. [
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(100, "feet"),
  4653. default: true
  4654. },
  4655. ]
  4656. )
  4657. };
  4658. characterMakers["Kennedy"] = () => {
  4659. return makeCharacter(
  4660. { name: "Kennedy" },
  4661. {
  4662. side: {
  4663. height: math.unit(5 + 4/12, "feet"),
  4664. weight: math.unit(163, "lbs"),
  4665. name: "Side",
  4666. image: {
  4667. source: "./media/characters/kennedy/side.svg"
  4668. }
  4669. }
  4670. },
  4671. [
  4672. {
  4673. name: "Standard Doggo",
  4674. height: math.unit(5 + 4/12, "feet")
  4675. },
  4676. {
  4677. name: "Big Doggo",
  4678. height: math.unit(25 + 3/12, "feet"),
  4679. default: true
  4680. },
  4681. ]
  4682. )
  4683. };
  4684. characterMakers["Odi Lunar"] = () => {
  4685. return makeCharacter(
  4686. { name: "Odi Lunar" },
  4687. {
  4688. front: {
  4689. height: math.unit(6, "feet"),
  4690. weight: math.unit(90, "lbs"),
  4691. name: "Front",
  4692. image: {
  4693. source: "./media/characters/odi-lunar/front.svg"
  4694. }
  4695. }
  4696. },
  4697. [
  4698. {
  4699. name: "Micro",
  4700. height: math.unit(3, "inches"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(5.5, "feet")
  4706. }
  4707. ]
  4708. )
  4709. };
  4710. characterMakers["Mandake"] = () => {
  4711. return makeCharacter(
  4712. { name: "Mandake" },
  4713. {
  4714. back: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(220, "lbs"),
  4717. name: "Back",
  4718. image: {
  4719. source: "./media/characters/mandake/back.svg"
  4720. }
  4721. }
  4722. },
  4723. [
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(7, "feet"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(78, "feet")
  4732. },
  4733. {
  4734. name: "Macro+",
  4735. height: math.unit(300, "meters")
  4736. },
  4737. {
  4738. name: "Macro++",
  4739. height: math.unit(2400, "feet")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(5167, "meters")
  4744. },
  4745. {
  4746. name: "Gigamacro",
  4747. height: math.unit(41769, "miles")
  4748. },
  4749. ]
  4750. )
  4751. };
  4752. characterMakers["Yozey"] = () => {
  4753. return makeCharacter(
  4754. { name: "Yozey" },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(120, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/yozey/front.svg"
  4762. }
  4763. },
  4764. frontAlt: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(120, "lbs"),
  4767. name: "Front (Alt)",
  4768. image: {
  4769. source: "./media/characters/yozey/front-alt.svg"
  4770. }
  4771. },
  4772. side: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(120, "lbs"),
  4775. name: "Side",
  4776. image: {
  4777. source: "./media/characters/yozey/side.svg"
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Micro",
  4784. height: math.unit(3, "inches"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(6, "feet")
  4790. }
  4791. ]
  4792. )
  4793. };
  4794. characterMakers["Valeska Voss"] = () => {
  4795. return makeCharacter(
  4796. { name: "Valeska Voss" },
  4797. {
  4798. front: {
  4799. height: math.unit(6, "feet"),
  4800. weight: math.unit(103, "lbs"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/valeska-voss/front.svg"
  4804. }
  4805. }
  4806. },
  4807. [
  4808. {
  4809. name: "Mini-Sized Sub",
  4810. height: math.unit(3.1, "inches")
  4811. },
  4812. {
  4813. name: "Mid-Sized Sub",
  4814. height: math.unit(6.2, "inches")
  4815. },
  4816. {
  4817. name: "Full-Sized Sub",
  4818. height: math.unit(9.3, "inches")
  4819. },
  4820. {
  4821. name: "Normal",
  4822. height: math.unit(5 + 2/12, "foot"),
  4823. default: true
  4824. },
  4825. ]
  4826. )
  4827. };
  4828. characterMakers["Gene Zeta"] = () => {
  4829. return makeCharacter(
  4830. { name: "Gene Zeta" },
  4831. {
  4832. front: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(160, "lbs"),
  4835. name: "Front",
  4836. image: {
  4837. source: "./media/characters/gene-zeta/front.svg",
  4838. bottom: 0.03,
  4839. extra: 1
  4840. }
  4841. }
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(6.25, "foot"),
  4847. default: true
  4848. },
  4849. ]
  4850. )
  4851. };
  4852. characterMakers["Razinox"] = () => {
  4853. return makeCharacter(
  4854. { name: "Razinox" },
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(350, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/razinox/front.svg",
  4862. extra: 1686/1548
  4863. }
  4864. },
  4865. back: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(350, "lbs"),
  4868. name: "Back",
  4869. image: {
  4870. source: "./media/characters/razinox/back.svg",
  4871. extra: 1660/1590
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(10 + 8/12, "foot")
  4879. },
  4880. {
  4881. name: "Minimacro",
  4882. height: math.unit(15, "foot")
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(60, "foot"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Megamacro",
  4891. height: math.unit(5, "miles")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(6000, "miles")
  4896. },
  4897. ]
  4898. )
  4899. };
  4900. characterMakers["Cobalt"] = () => {
  4901. return makeCharacter(
  4902. { name: "Cobalt" },
  4903. {
  4904. front: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(150, "lbs"),
  4907. name: "Front",
  4908. image: {
  4909. source: "./media/characters/cobalt/front.svg"
  4910. }
  4911. }
  4912. },
  4913. [
  4914. {
  4915. name: "Normal",
  4916. height: math.unit(8 + 1/12, "foot")
  4917. },
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(111, "foot"),
  4921. default: true
  4922. },
  4923. {
  4924. name: "Supracosmic",
  4925. height: math.unit(1e42, "feet")
  4926. },
  4927. ]
  4928. )
  4929. };
  4930. characterMakers["Amanda"] = () => {
  4931. return makeCharacter(
  4932. { name: "Amanda" },
  4933. {
  4934. front: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(140, "lbs"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/amanda/front.svg"
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Micro",
  4946. height: math.unit(5, "inches"),
  4947. default: true
  4948. },
  4949. ]
  4950. )
  4951. };
  4952. characterMakers["Teal"] = () => {
  4953. return makeCharacter(
  4954. { name: "Teal" },
  4955. {
  4956. front: {
  4957. height: math.unit(5.59, "feet"),
  4958. weight: math.unit(250, "lbs"),
  4959. name: "Front",
  4960. image: {
  4961. source: "./media/characters/teal/front.svg"
  4962. }
  4963. },
  4964. frontAlt: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(250, "lbs"),
  4967. name: "Front (Alt)",
  4968. image: {
  4969. source: "./media/characters/teal/front-alt.svg",
  4970. bottom: 0.04,
  4971. extra: 1
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(12, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(300, "feet")
  4984. },
  4985. ]
  4986. )
  4987. };
  4988. characterMakers["Ravin Amulet"] = () => {
  4989. return makeCharacter(
  4990. { name: "Ravin Amulet" },
  4991. {
  4992. frontCat: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(180, "lbs"),
  4995. name: "Front (Cat)",
  4996. image: {
  4997. source: "./media/characters/ravin-amulet/front-cat.svg"
  4998. }
  4999. },
  5000. frontCatAlt: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(180, "lbs"),
  5003. name: "Front (Alt, Cat)",
  5004. image: {
  5005. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5006. }
  5007. },
  5008. frontWerewolf: {
  5009. height: math.unit(6*1.2, "feet"),
  5010. weight: math.unit(225, "lbs"),
  5011. name: "Front (Werewolf)",
  5012. image: {
  5013. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5014. }
  5015. },
  5016. backWerewolf: {
  5017. height: math.unit(6*1.2, "feet"),
  5018. weight: math.unit(225, "lbs"),
  5019. name: "Back (Werewolf)",
  5020. image: {
  5021. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Nano",
  5028. height: math.unit(1, "micrometer")
  5029. },
  5030. {
  5031. name: "Micro",
  5032. height: math.unit(1, "inch")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(6, "feet"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(60, "feet")
  5042. }
  5043. ]
  5044. )
  5045. };
  5046. characterMakers["Fluoresce"] = () => {
  5047. return makeCharacter(
  5048. { name: "Fluoresce" },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(165, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/fluoresce/front.svg"
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Micro",
  5062. height: math.unit(6, "cm")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5 + 7/12, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(56, "feet")
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(1.9, "miles")
  5076. },
  5077. ]
  5078. )
  5079. };
  5080. characterMakers["Aurora"] = () => {
  5081. return makeCharacter(
  5082. { name: "Aurora" },
  5083. {
  5084. front: {
  5085. height: math.unit(9 + 6/12, "feet"),
  5086. weight: math.unit(523, "lbs"),
  5087. name: "Side",
  5088. image: {
  5089. source: "./media/characters/aurora/side.svg"
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(9 + 6/12, "feet")
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(96, "feet"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "Macro+",
  5105. height: math.unit(243, "feet")
  5106. },
  5107. ]
  5108. )
  5109. };
  5110. characterMakers["Ranek"] = () => {
  5111. return makeCharacter(
  5112. { name: "Ranek" },
  5113. {
  5114. front: {
  5115. height: math.unit(194, "cm"),
  5116. weight: math.unit(90, "kg"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/ranek/front.svg"
  5120. }
  5121. },
  5122. side: {
  5123. height: math.unit(194, "cm"),
  5124. weight: math.unit(90, "kg"),
  5125. name: "Side",
  5126. image: {
  5127. source: "./media/characters/ranek/side.svg"
  5128. }
  5129. },
  5130. back: {
  5131. height: math.unit(194, "cm"),
  5132. weight: math.unit(90, "kg"),
  5133. name: "Back",
  5134. image: {
  5135. source: "./media/characters/ranek/back.svg"
  5136. }
  5137. },
  5138. feral: {
  5139. height: math.unit(30, "cm"),
  5140. weight: math.unit(1.6, "lbs"),
  5141. name: "Feral",
  5142. image: {
  5143. source: "./media/characters/ranek/feral.svg"
  5144. }
  5145. },
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(194, "cm"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(100, "meters")
  5156. },
  5157. ]
  5158. )
  5159. };
  5160. characterMakers["Andrew Cooper"] = () => {
  5161. return makeCharacter(
  5162. { name: "Andrew Cooper" },
  5163. {
  5164. front: {
  5165. height: math.unit(5 + 6/12, "feet"),
  5166. weight: math.unit(153, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/andrew-cooper/front.svg"
  5170. }
  5171. },
  5172. },
  5173. [
  5174. {
  5175. name: "Nano",
  5176. height: math.unit(1, "mm")
  5177. },
  5178. {
  5179. name: "Micro",
  5180. height: math.unit(2, "inches")
  5181. },
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(5 + 6/12, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. )
  5189. };
  5190. characterMakers["Akane Sato"] = () => {
  5191. return makeCharacter(
  5192. { name: "Akane Sato" },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(180, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/akane-sato/front.svg",
  5200. extra: 1219/1140
  5201. }
  5202. },
  5203. back: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(180, "lbs"),
  5206. name: "Back",
  5207. image: {
  5208. source: "./media/characters/akane-sato/back.svg",
  5209. extra: 1219/1170
  5210. }
  5211. },
  5212. },
  5213. [
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(2.5, "meters")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(250, "meters"),
  5221. default: true
  5222. },
  5223. {
  5224. name: "Megamacro",
  5225. height: math.unit(25, "km")
  5226. },
  5227. ]
  5228. )
  5229. };
  5230. characterMakers["Rook"] = () => {
  5231. return makeCharacter(
  5232. { name: "Rook" },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(65, "kg"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/rook/front.svg"
  5240. }
  5241. }
  5242. },
  5243. [
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(8.8, "feet")
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(88, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Megamacro",
  5255. height: math.unit(8, "miles")
  5256. },
  5257. ]
  5258. )
  5259. };
  5260. characterMakers["Prodigy"] = () => {
  5261. return makeCharacter(
  5262. { name: "Prodigy" },
  5263. {
  5264. front: {
  5265. height: math.unit(12 + 2/12, "feet"),
  5266. weight: math.unit(808, "lbs"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/prodigy/front.svg"
  5270. }
  5271. }
  5272. },
  5273. [
  5274. {
  5275. name: "Normal",
  5276. height: math.unit(12 + 2/12, "feet"),
  5277. default: true
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(143, "feet")
  5282. },
  5283. {
  5284. name: "Macro+",
  5285. height: math.unit(400, "feet")
  5286. },
  5287. ]
  5288. )
  5289. };
  5290. characterMakers["Daniel"] = () => {
  5291. return makeCharacter(
  5292. { name: "Daniel" },
  5293. {
  5294. front: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(225, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/daniel/front.svg"
  5300. }
  5301. },
  5302. leaning: {
  5303. height: math.unit(6, "feet"),
  5304. weight: math.unit(225, "lbs"),
  5305. name: "Leaning",
  5306. image: {
  5307. source: "./media/characters/daniel/leaning.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(1000, "feet"),
  5315. default: true
  5316. },
  5317. ]
  5318. )
  5319. };
  5320. characterMakers["Chiros"] = () => {
  5321. return makeCharacter(
  5322. { name: "Chiros" },
  5323. {
  5324. front: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(88, "lbs"),
  5327. name: "Front",
  5328. image: {
  5329. source: "./media/characters/chiros/front.svg",
  5330. extra: 306/226
  5331. }
  5332. },
  5333. side: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(88, "lbs"),
  5336. name: "Side",
  5337. image: {
  5338. source: "./media/characters/chiros/side.svg",
  5339. extra: 306/226
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(6, "cm"),
  5347. default: true
  5348. },
  5349. ]
  5350. )
  5351. };
  5352. characterMakers["Selka"] = () => {
  5353. return makeCharacter(
  5354. { name: "Selka" },
  5355. {
  5356. front: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(100, "lbs"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/selka/front.svg",
  5362. extra: 947/887
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5, "cm"),
  5370. default: true
  5371. },
  5372. ]
  5373. )
  5374. };
  5375. characterMakers["Verin"] = () => {
  5376. return makeCharacter(
  5377. { name: "Verin" },
  5378. {
  5379. front: {
  5380. height: math.unit(8 + 3/12, "feet"),
  5381. weight: math.unit(424, "lbs"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/verin/front.svg",
  5385. extra: 1845/1550
  5386. }
  5387. },
  5388. frontArmored: {
  5389. height: math.unit(8 + 3/12, "feet"),
  5390. weight: math.unit(424, "lbs"),
  5391. name: "Front (Armored)",
  5392. image: {
  5393. source: "./media/characters/verin/front-armor.svg",
  5394. extra: 1845/1550 ,
  5395. bottom: 0.01
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(8 + 3/12, "feet"),
  5400. weight: math.unit(424, "lbs"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/verin/back.svg",
  5404. bottom: 0.1,
  5405. extra: 1
  5406. }
  5407. },
  5408. foot: {
  5409. height: math.unit((8 + 3/12) / 4.7, "feet"),
  5410. name: "Foot",
  5411. image: {
  5412. source: "./media/characters/verin/foot.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(8 + 3/12, "feet")
  5420. },
  5421. {
  5422. name: "Minimacro",
  5423. height: math.unit(21, "feet"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(626, "feet")
  5429. },
  5430. ]
  5431. )
  5432. };
  5433. characterMakers["Sovrim Terraquian"] = () => {
  5434. return makeCharacter(
  5435. { name: "Sovrim Terraquian" },
  5436. {
  5437. front: {
  5438. height: math.unit(2.718, "meters"),
  5439. weight: math.unit(150, "lbs"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/sovrim-terraquian/front.svg"
  5443. }
  5444. },
  5445. back: {
  5446. height: math.unit(2.718, "meters"),
  5447. weight: math.unit(150, "lbs"),
  5448. name: "Back",
  5449. image: {
  5450. source: "./media/characters/sovrim-terraquian/back.svg"
  5451. }
  5452. }
  5453. },
  5454. [
  5455. {
  5456. name: "Micro",
  5457. height: math.unit(2, "inches")
  5458. },
  5459. {
  5460. name: "Small",
  5461. height: math.unit(1, "meter")
  5462. },
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(Math.E, "meters"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(20, "meters")
  5471. },
  5472. {
  5473. name: "Macro+",
  5474. height: math.unit(400, "meters")
  5475. },
  5476. ]
  5477. )
  5478. };
  5479. characterMakers["Reece Silvermane"] = () => {
  5480. return makeCharacter(
  5481. { name: "Reece Silvermane" },
  5482. {
  5483. front: {
  5484. height: math.unit(7, "feet"),
  5485. weight: math.unit(489, "lbs"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/reece-silvermane/front.svg",
  5489. bottom: 0.02,
  5490. extra: 1
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(1.5, "miles"),
  5498. default: true
  5499. },
  5500. ]
  5501. )
  5502. };
  5503. characterMakers["Kane"] = () => {
  5504. return makeCharacter(
  5505. { name: "Kane" },
  5506. {
  5507. front: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(78, "kg"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/kane/front.svg",
  5513. extra: 978/899
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(2.1, "m"),
  5521. },
  5522. {
  5523. name: "Macro",
  5524. height: math.unit(1, "km"),
  5525. default: true
  5526. },
  5527. ]
  5528. )
  5529. };
  5530. characterMakers["Tegon"] = () => {
  5531. return makeCharacter(
  5532. { name: "Tegon" },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(200, "kg"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/tegon/front.svg",
  5540. bottom: 0.01,
  5541. extra: 1
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Micro",
  5548. height: math.unit(1, "inch")
  5549. },
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(6 + 3/12, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(300, "feet")
  5558. },
  5559. {
  5560. name: "Megamacro",
  5561. height: math.unit(69, "miles")
  5562. },
  5563. ]
  5564. )
  5565. };
  5566. characterMakers["Arcturax"] = () => {
  5567. return makeCharacter(
  5568. { name: "Arcturax" },
  5569. {
  5570. side: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(2304, "lbs"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/arcturax/side.svg",
  5576. extra: 790/376 ,
  5577. bottom: 0.01
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Micro",
  5584. height: math.unit(2, "inch")
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(6, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(39, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Megamacro",
  5597. height: math.unit(7, "miles")
  5598. },
  5599. ]
  5600. )
  5601. };
  5602. characterMakers["Sentri"] = () => {
  5603. return makeCharacter(
  5604. { name: "Sentri" },
  5605. {
  5606. front: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(50, "lbs"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/sentri/front.svg",
  5612. extra: 1750/1570 ,
  5613. bottom: 0.025
  5614. }
  5615. },
  5616. frontAlt: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(50, "lbs"),
  5619. name: "Front (Alt)",
  5620. image: {
  5621. source: "./media/characters/sentri/front-alt.svg",
  5622. extra: 1750/1570 ,
  5623. bottom: 0.025
  5624. }
  5625. },
  5626. },
  5627. [
  5628. {
  5629. name: "Normal",
  5630. height: math.unit(15, "feet"),
  5631. default: true
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(2500, "feet")
  5636. }
  5637. ]
  5638. )
  5639. };
  5640. characterMakers["Corvin"] = () => {
  5641. return makeCharacter(
  5642. { name: "Corvin" },
  5643. {
  5644. front: {
  5645. height: math.unit(5 + 8/12, "feet"),
  5646. weight: math.unit(130, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/corvin/front.svg",
  5650. extra: 1803/1629
  5651. }
  5652. },
  5653. frontShirt: {
  5654. height: math.unit(5 + 8/12, "feet"),
  5655. weight: math.unit(130, "lbs"),
  5656. name: "Front (Shirt)",
  5657. image: {
  5658. source: "./media/characters/corvin/front-shirt.svg",
  5659. extra: 1803/1629
  5660. }
  5661. },
  5662. frontPoncho: {
  5663. height: math.unit(5 + 8/12, "feet"),
  5664. weight: math.unit(130, "lbs"),
  5665. name: "Front (Poncho)",
  5666. image: {
  5667. source: "./media/characters/corvin/front-poncho.svg",
  5668. extra: 1803/1629
  5669. }
  5670. },
  5671. side: {
  5672. height: math.unit(5 + 8/12, "feet"),
  5673. weight: math.unit(130, "lbs"),
  5674. name: "Side",
  5675. image: {
  5676. source: "./media/characters/corvin/side.svg",
  5677. extra: 1012/945
  5678. }
  5679. },
  5680. back: {
  5681. height: math.unit(5 + 8/12, "feet"),
  5682. weight: math.unit(130, "lbs"),
  5683. name: "Back",
  5684. image: {
  5685. source: "./media/characters/corvin/back.svg",
  5686. extra: 1803/1629
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(3, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 8/12, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(300, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(500, "miles")
  5707. }
  5708. ]
  5709. )
  5710. };
  5711. characterMakers["Q"] = () => {
  5712. return makeCharacter(
  5713. { name: "Q" },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(135, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/q/front.svg",
  5721. extra: 854/752 ,
  5722. bottom: 0.005
  5723. }
  5724. },
  5725. back: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(130, "lbs"),
  5728. name: "Back",
  5729. image: {
  5730. source: "./media/characters/q/back.svg",
  5731. extra: 854/752
  5732. }
  5733. },
  5734. },
  5735. [
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(90, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Extra Macro",
  5743. height: math.unit(300, "feet"),
  5744. },
  5745. {
  5746. name: "BIG WALF",
  5747. height: math.unit(750, "feet"),
  5748. },
  5749. ]
  5750. )
  5751. };
  5752. characterMakers["Carley"] = () => {
  5753. return makeCharacter(
  5754. { name: "Carley" },
  5755. {
  5756. front: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(150, "lbs"),
  5759. name: "Front",
  5760. image: {
  5761. source: "./media/characters/carley/front.svg",
  5762. extra: 3927/3540 ,
  5763. bottom: 0.03
  5764. }
  5765. }
  5766. },
  5767. [
  5768. {
  5769. name: "Normal",
  5770. height: math.unit(6 + 3/12, "feet")
  5771. },
  5772. {
  5773. name: "Macro",
  5774. height: math.unit(185, "feet"),
  5775. default: true
  5776. },
  5777. {
  5778. name: "Megamacro",
  5779. height: math.unit(8, "miles"),
  5780. },
  5781. ]
  5782. )
  5783. };
  5784. characterMakers["Citrine"] = () => {
  5785. return makeCharacter(
  5786. { name: "Citrine" },
  5787. {
  5788. front: {
  5789. height: math.unit(3, "feet"),
  5790. weight: math.unit(28, "lbs"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/citrine/front.svg"
  5794. }
  5795. }
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(3, "feet"),
  5801. default: true
  5802. }
  5803. ]
  5804. )
  5805. };
  5806. characterMakers["Aura Starwind"] = () => {
  5807. return makeCharacter(
  5808. { name: "Aura Starwind" },
  5809. {
  5810. front: {
  5811. height: math.unit(14, "feet"),
  5812. weight: math.unit(1450, "kg"),
  5813. name: "Front",
  5814. image: {
  5815. source: "./media/characters/aura-starwind/front.svg",
  5816. extra: 1455/1335
  5817. }
  5818. },
  5819. side: {
  5820. height: math.unit(14, "feet"),
  5821. weight: math.unit(1450, "kg"),
  5822. name: "Side",
  5823. image: {
  5824. source: "./media/characters/aura-starwind/side.svg",
  5825. extra: 1654/1497
  5826. }
  5827. },
  5828. taur: {
  5829. height: math.unit(18, "feet"),
  5830. weight: math.unit(5500, "kg"),
  5831. name: "Taur",
  5832. image: {
  5833. source: "./media/characters/aura-starwind/taur.svg",
  5834. extra: 1760/1650
  5835. }
  5836. },
  5837. feral: {
  5838. height: math.unit(46, "feet"),
  5839. weight: math.unit(25000, "kg"),
  5840. name: "Feral",
  5841. image: {
  5842. source: "./media/characters/aura-starwind/feral.svg"
  5843. }
  5844. },
  5845. },
  5846. [
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(14, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(50, "meters")
  5855. },
  5856. {
  5857. name: "Megamacro",
  5858. height: math.unit(5000, "meters")
  5859. },
  5860. {
  5861. name: "Gigamacro",
  5862. height: math.unit(100000, "kilometers")
  5863. },
  5864. ]
  5865. )
  5866. };
  5867. characterMakers["Rivet"] = () => {
  5868. return makeCharacter(
  5869. { name: "Rivet" },
  5870. {
  5871. front: {
  5872. height: math.unit(2 + 7/12, "feet"),
  5873. weight: math.unit(32, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/rivet/front.svg",
  5877. extra: 1716/1658 ,
  5878. bottom: 0.03
  5879. }
  5880. },
  5881. foot: {
  5882. height: math.unit(0.551, "feet"),
  5883. name: "Rivet's Foot",
  5884. image: {
  5885. source: "./media/characters/rivet/foot.svg"
  5886. },
  5887. rename: true
  5888. }
  5889. },
  5890. [
  5891. {
  5892. name: "Micro",
  5893. height: math.unit(1.5, "inches"),
  5894. },
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(2 + 7/12, "feet"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(85, "feet")
  5903. },
  5904. {
  5905. name: "Megamacro",
  5906. height: math.unit(2.2, "km")
  5907. }
  5908. ]
  5909. )
  5910. };
  5911. characterMakers["Coffee"] = () => {
  5912. return makeCharacter(
  5913. { name: "Coffee" },
  5914. {
  5915. front: {
  5916. height: math.unit(5 + 9/12, "feet"),
  5917. weight: math.unit(150, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/coffee/front.svg",
  5921. extra: 3666/3032 ,
  5922. bottom: 0.04
  5923. }
  5924. },
  5925. foot: {
  5926. height: math.unit(1.29, "feet"),
  5927. name: "Foot",
  5928. image: {
  5929. source: "./media/characters/coffee/foot.svg"
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches"),
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5 + 9/12, "feet"),
  5941. default: true
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(800, "feet")
  5946. },
  5947. {
  5948. name: "Megamacro",
  5949. height: math.unit(25, "miles")
  5950. }
  5951. ]
  5952. )
  5953. };
  5954. characterMakers["Chari-Gal"] = () => {
  5955. return makeCharacter(
  5956. { name: "Chari-Gal" },
  5957. {
  5958. front: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(200, "lbs"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/chari-gal/front.svg",
  5964. extra: 1568/1385 ,
  5965. bottom: 0.047
  5966. }
  5967. },
  5968. gigantamax: {
  5969. height: math.unit(6*16, "feet"),
  5970. weight: math.unit(200*16*16*16, "lbs"),
  5971. name: "Gigantamax",
  5972. image: {
  5973. source: "./media/characters/chari-gal/gigantamax.svg",
  5974. extra: 1124/888 ,
  5975. bottom: 0.03
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(5 + 7/12, "feet")
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(200, "feet"),
  5987. default: true
  5988. }
  5989. ]
  5990. )
  5991. };
  5992. characterMakers["Nova"] = () => {
  5993. return makeCharacter(
  5994. { name: "Nova" },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(150, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/nova/front.svg",
  6002. extra: 5000/4722 ,
  6003. bottom: 0.02
  6004. }
  6005. }
  6006. },
  6007. [
  6008. {
  6009. name: "Micro-",
  6010. height: math.unit(0.8, "inches")
  6011. },
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(2, "inches"),
  6015. default: true
  6016. },
  6017. ]
  6018. )
  6019. };
  6020. characterMakers["Argent"] = () => {
  6021. return makeCharacter(
  6022. { name: "Argent" },
  6023. {
  6024. front: {
  6025. height: math.unit(3 + 1/12, "feet"),
  6026. weight: math.unit(21.7, "lbs"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/argent/front.svg",
  6030. extra: 1565/1416 ,
  6031. bottom: 0.01
  6032. }
  6033. }
  6034. },
  6035. [
  6036. {
  6037. name: "Micro",
  6038. height: math.unit(2, "inches")
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(3 + 1/12, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Macro",
  6047. height: math.unit(120, "feet")
  6048. },
  6049. ]
  6050. )
  6051. };
  6052. characterMakers["Mira al-Cul"] = () => {
  6053. return makeCharacter(
  6054. { name: "Mira al-Cul" },
  6055. {
  6056. lamp: {
  6057. height: math.unit(7 * 1559 / 989, "feet"),
  6058. name: "Magic Lamp",
  6059. image: {
  6060. source: "./media/characters/mira-al-cul/lamp.svg",
  6061. extra: 1617/1559
  6062. }
  6063. },
  6064. front: {
  6065. height: math.unit(7, "feet"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/mira-al-cul/front.svg",
  6069. extra: 1044/990
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Heavily Restricted",
  6076. height: math.unit(7 * 1559 / 989, "feet")
  6077. },
  6078. {
  6079. name: "Freshly Freed",
  6080. height: math.unit(50 * 1559 / 989, "feet")
  6081. },
  6082. {
  6083. name: "World Encompassing",
  6084. height: math.unit(10000 * 1559 / 989, "miles")
  6085. },
  6086. {
  6087. name: "Galactic",
  6088. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6089. },
  6090. {
  6091. name: "Palmed Universe",
  6092. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Multiversal Matriarch",
  6097. height: math.unit(8.87e10, "yottameters")
  6098. },
  6099. {
  6100. name: "Void Mother",
  6101. height: math.unit(3.14e110, "yottaparsecs")
  6102. },
  6103. ]
  6104. )
  6105. };
  6106. characterMakers["Kuro-shi Uchū"] = () => {
  6107. return makeCharacter(
  6108. { name: "Kuro-shi Uchū" },
  6109. {
  6110. front: {
  6111. height: math.unit(17 + 1/12, "feet"),
  6112. weight: math.unit(476.2*5, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/kuro-shi-uchū/front.svg",
  6116. extra: 2329/1835 ,
  6117. bottom: 0.02
  6118. }
  6119. },
  6120. },
  6121. [
  6122. {
  6123. name: "Micro",
  6124. height: math.unit(2, "inches")
  6125. },
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(12, "meters")
  6129. },
  6130. {
  6131. name: "Planetary",
  6132. height: math.unit(0.00929, "AU"),
  6133. default: true
  6134. },
  6135. {
  6136. name: "Universal",
  6137. height: math.unit(20, "gigaparsecs")
  6138. },
  6139. ]
  6140. )
  6141. };
  6142. characterMakers["Katherine"] = () => {
  6143. return makeCharacter(
  6144. { name: "Katherine" },
  6145. {
  6146. front: {
  6147. height: math.unit(5 + 2/12, "feet"),
  6148. weight: math.unit(120, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/katherine/front.svg",
  6152. extra: 2075/1969
  6153. }
  6154. },
  6155. dress: {
  6156. height: math.unit(5 + 2/12, "feet"),
  6157. weight: math.unit(120, "lbs"),
  6158. name: "Dress",
  6159. image: {
  6160. source: "./media/characters/katherine/dress.svg",
  6161. extra: 2258/2064
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Micro",
  6168. height: math.unit(1, "inches"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(5 + 2/12, "feet")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(100, "meters")
  6178. },
  6179. {
  6180. name: "Megamacro",
  6181. height: math.unit(80, "miles")
  6182. },
  6183. ]
  6184. )
  6185. };
  6186. characterMakers["Yevis"] = () => {
  6187. return makeCharacter(
  6188. { name: "Yevis" },
  6189. {
  6190. front: {
  6191. height: math.unit(7 + 8/12, "feet"),
  6192. weight: math.unit(250, "lbs"),
  6193. name: "Front",
  6194. image: {
  6195. source: "./media/characters/yevis/front.svg",
  6196. extra: 1938/1755
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Mortal",
  6203. height: math.unit(7 + 8/12, "feet")
  6204. },
  6205. {
  6206. name: "Battle",
  6207. height: math.unit(25 + 11/12, "feet")
  6208. },
  6209. {
  6210. name: "Wrath",
  6211. height: math.unit(1654 + 11/12, "feet")
  6212. },
  6213. {
  6214. name: "Planet Destroyer",
  6215. height: math.unit(12000, "miles")
  6216. },
  6217. {
  6218. name: "Galaxy Conqueror",
  6219. height: math.unit(1.45, "zettameters"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Universal War",
  6224. height: math.unit(184, "gigaparsecs")
  6225. },
  6226. {
  6227. name: "Eternity War",
  6228. height: math.unit(1.98e55, "yottaparsecs")
  6229. },
  6230. ]
  6231. )
  6232. };
  6233. characterMakers["Xavier"] = () => {
  6234. return makeCharacter(
  6235. { name: "Xavier" },
  6236. {
  6237. front: {
  6238. height: math.unit(5 + 8/12, "feet"),
  6239. weight: math.unit(63, "kg"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/xavier/front.svg",
  6243. extra: 944/883
  6244. }
  6245. },
  6246. frontStretch: {
  6247. height: math.unit(5 + 8/12, "feet"),
  6248. weight: math.unit(63, "kg"),
  6249. name: "Stretching",
  6250. image: {
  6251. source: "./media/characters/xavier/front-stretch.svg",
  6252. extra: 962/820
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(5 + 8/12, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(100, "meters"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "McLargeHuge",
  6268. height: math.unit(10, "miles")
  6269. },
  6270. ]
  6271. )
  6272. };
  6273. characterMakers["Joshii"] = () => {
  6274. return makeCharacter(
  6275. { name: "Joshii" },
  6276. {
  6277. front: {
  6278. height: math.unit(5 + 5/12, "feet"),
  6279. weight: math.unit(150, "lb"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/joshii/front.svg"
  6283. }
  6284. },
  6285. foot: {
  6286. height: math.unit((5 + 5/12) * 0.1676, "feet"),
  6287. name: "Foot",
  6288. image: {
  6289. source: "./media/characters/joshii/foot.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Micro",
  6296. height: math.unit(2, "inches")
  6297. },
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(5 + 5/12, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Macro",
  6305. height: math.unit(785, "feet")
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(24.5, "miles")
  6310. },
  6311. ]
  6312. )
  6313. };
  6314. characterMakers["Goddess Elizabeth"] = () => {
  6315. return makeCharacter(
  6316. { name: "Goddess Elizabeth" },
  6317. {
  6318. front: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(150, "lb"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/goddess-elizabeth/front.svg",
  6324. extra: 1800/1525,
  6325. bottom: 0.005
  6326. }
  6327. },
  6328. foot: {
  6329. height: math.unit(6 * 0.25436 * 1800/1525 / 2, "feet"),
  6330. name: "Foot",
  6331. image: {
  6332. source: "./media/characters/goddess-elizabeth/foot.svg"
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Micro",
  6339. height: math.unit(12, "feet")
  6340. },
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(80, "miles"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(15000, "parsecs")
  6349. },
  6350. ]
  6351. )
  6352. };
  6353. characterMakers["Kara"] = () => {
  6354. return makeCharacter(
  6355. { name: "Kara" },
  6356. {
  6357. front: {
  6358. height: math.unit(5 + 9/12, "feet"),
  6359. weight: math.unit(144, "lb"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/kara/front.svg"
  6363. }
  6364. },
  6365. feet: {
  6366. height: math.unit(6/6.765, "feet"),
  6367. name: "Kara's Feet",
  6368. rename: true,
  6369. image: {
  6370. source: "./media/characters/kara/feet.svg"
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(5 + 9/12, "feet")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(174, "feet"),
  6382. default: true
  6383. },
  6384. ]
  6385. )
  6386. };
  6387. characterMakers["Tyrone"] = () => {
  6388. return makeCharacter(
  6389. { name: "Tyrone" },
  6390. {
  6391. front: {
  6392. height: math.unit(18, "feet"),
  6393. weight: math.unit(4050, "lb"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/tyrone/front.svg",
  6397. extra: 2520/2402 ,
  6398. bottom: 0.025
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(18, "feet"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Macro",
  6410. height: math.unit(300, "feet")
  6411. },
  6412. ]
  6413. )
  6414. };
  6415. characterMakers["Danny"] = () => {
  6416. return makeCharacter(
  6417. { name: "Danny" },
  6418. {
  6419. front: {
  6420. height: math.unit(7 + 8/12, "feet"),
  6421. weight: math.unit(120, "lb"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/danny/front.svg",
  6425. extra: 1490/1350
  6426. }
  6427. },
  6428. back: {
  6429. height: math.unit(7 + 8/12, "feet"),
  6430. weight: math.unit(120, "lb"),
  6431. name: "Back",
  6432. image: {
  6433. source: "./media/characters/danny/back.svg",
  6434. extra: 1490/1350
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(7 + 8/12, "feet"),
  6442. default: true
  6443. },
  6444. ]
  6445. )
  6446. };
  6447. characterMakers["Mallow"] = () => {
  6448. return makeCharacter(
  6449. { name: "Mallow" },
  6450. {
  6451. front: {
  6452. height: math.unit(3.5, "inches"),
  6453. weight: math.unit(19, "grams"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/mallow/front.svg",
  6457. extra: 471/431
  6458. }
  6459. },
  6460. back: {
  6461. height: math.unit(3.5, "inches"),
  6462. weight: math.unit(19, "grams"),
  6463. name: "Back",
  6464. image: {
  6465. source: "./media/characters/mallow/back.svg",
  6466. extra: 471/431
  6467. }
  6468. },
  6469. },
  6470. [
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(3.5, "inches"),
  6474. default: true
  6475. },
  6476. ]
  6477. )
  6478. };
  6479. characterMakers["Starry Aqua"] = () => {
  6480. return makeCharacter(
  6481. { name: "Starry Aqua" },
  6482. {
  6483. front: {
  6484. height: math.unit(9, "feet"),
  6485. weight: math.unit(230, "kg"),
  6486. name: "Front",
  6487. image: {
  6488. source: "./media/characters/starry-aqua/front.svg"
  6489. }
  6490. },
  6491. back: {
  6492. height: math.unit(9, "feet"),
  6493. weight: math.unit(230, "kg"),
  6494. name: "Back",
  6495. image: {
  6496. source: "./media/characters/starry-aqua/back.svg"
  6497. }
  6498. },
  6499. hand: {
  6500. height: math.unit(9 * 0.1168, "feet"),
  6501. name: "Hand",
  6502. image: {
  6503. source: "./media/characters/starry-aqua/hand.svg"
  6504. }
  6505. },
  6506. foot: {
  6507. height: math.unit(9 * 0.18, "feet"),
  6508. name: "Foot",
  6509. image: {
  6510. source: "./media/characters/starry-aqua/foot.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Micro",
  6517. height: math.unit(3, "inches")
  6518. },
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(9, "feet")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(300, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(3200, "feet")
  6531. }
  6532. ]
  6533. )
  6534. };
  6535. characterMakers["Luka"] = () => {
  6536. return makeCharacter(
  6537. { name: "Luka" },
  6538. {
  6539. front: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(230, "lb"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/luka/front.svg",
  6545. extra: 1,
  6546. bottom: 0.025
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(12 + 8/12, "feet"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Minimacro",
  6558. height: math.unit(20, "feet")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(250, "feet")
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(5, "miles")
  6567. },
  6568. {
  6569. name: "Gigamacro",
  6570. height: math.unit(8000, "miles")
  6571. },
  6572. ]
  6573. )
  6574. };
  6575. characterMakers["Natalie Nightring"] = () => {
  6576. return makeCharacter(
  6577. { name: "Natalie Nightring" },
  6578. {
  6579. front: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(150, "lb"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/natalie-nightring/front.svg",
  6585. extra: 1,
  6586. bottom: 0.06
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Uh Oh",
  6593. height: math.unit(0.1, "mm")
  6594. },
  6595. {
  6596. name: "Small",
  6597. height: math.unit(3, "inches")
  6598. },
  6599. {
  6600. name: "Human Scale",
  6601. height: math.unit(6, "feet")
  6602. },
  6603. {
  6604. name: "Librarian",
  6605. height: math.unit(50, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Immense",
  6610. height: math.unit(200, "miles")
  6611. },
  6612. ]
  6613. )
  6614. };
  6615. characterMakers["Danni Rosie"] = () => {
  6616. return makeCharacter(
  6617. { name: "Danni Rosie" },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(180, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/danni-rosie/front.svg",
  6625. extra: 1260/1128 ,
  6626. bottom: 0.022
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(2, "inches"),
  6634. default: true
  6635. },
  6636. ]
  6637. )
  6638. };
  6639. characterMakers["Samantha Kruse"] = () => {
  6640. return makeCharacter(
  6641. { name: "Samantha Kruse" },
  6642. {
  6643. front: {
  6644. height: math.unit(5 + 9/12, "feet"),
  6645. weight: math.unit(220, "lb"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/samantha-kruse/front.svg",
  6649. extra: (985 / 935) ,
  6650. bottom: 0.03
  6651. }
  6652. },
  6653. frontUndressed: {
  6654. height: math.unit(5 + 9/12, "feet"),
  6655. weight: math.unit(220, "lb"),
  6656. name: "Front (Undressed)",
  6657. image: {
  6658. source: "./media/characters/samantha-kruse/front-undressed.svg",
  6659. extra: (973 / 923) ,
  6660. bottom: 0.025
  6661. }
  6662. },
  6663. fat: {
  6664. height: math.unit(5 + 9/12, "feet"),
  6665. weight: math.unit(900, "lb"),
  6666. name: "Front (Fat)",
  6667. image: {
  6668. source: "./media/characters/samantha-kruse/fat.svg",
  6669. extra: 2688/2561
  6670. }
  6671. },
  6672. },
  6673. [
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(5 + 9/12, "feet"),
  6677. default: true
  6678. }
  6679. ]
  6680. )
  6681. };
  6682. characterMakers["Amelia Rosie"] = () => {
  6683. return makeCharacter(
  6684. { name: "Amelia Rosie" },
  6685. {
  6686. back: {
  6687. height: math.unit(5 + 4/12, "feet"),
  6688. weight: math.unit(4963, "lb"),
  6689. name: "Back",
  6690. image: {
  6691. source: "./media/characters/amelia-rosie/back.svg",
  6692. extra: 1113/963 ,
  6693. bottom: 0.01
  6694. }
  6695. },
  6696. },
  6697. [
  6698. {
  6699. name: "Level 0",
  6700. height: math.unit(5 + 4/12, "feet")
  6701. },
  6702. {
  6703. name: "Level 1",
  6704. height: math.unit(164597, "feet"),
  6705. default: true
  6706. },
  6707. {
  6708. name: "Level 2",
  6709. height: math.unit(956243, "miles")
  6710. },
  6711. {
  6712. name: "Level 3",
  6713. height: math.unit(29421709423, "miles")
  6714. },
  6715. {
  6716. name: "Level 4",
  6717. height: math.unit(154, "lightyears")
  6718. },
  6719. {
  6720. name: "Level 5",
  6721. height: math.unit(4738272, "lightyears")
  6722. },
  6723. {
  6724. name: "Level 6",
  6725. height: math.unit(145787152896, "lightyears")
  6726. },
  6727. ]
  6728. )
  6729. };
  6730. characterMakers["Rook Kitara"] = () => {
  6731. return makeCharacter(
  6732. { name: "Rook Kitara" },
  6733. {
  6734. front: {
  6735. height: math.unit(5 + 11/12, "feet"),
  6736. weight: math.unit(65, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/rook-kitara/front.svg",
  6740. extra: 1347/1274 ,
  6741. bottom: 0.005
  6742. }
  6743. },
  6744. },
  6745. [
  6746. {
  6747. name: "Totally Unfair",
  6748. height: math.unit(1.8, "mm")
  6749. },
  6750. {
  6751. name: "Lap Rookie",
  6752. height: math.unit(1.4, "feet")
  6753. },
  6754. {
  6755. name: "Normal",
  6756. height: math.unit(5 + 11/12, "feet"),
  6757. default: true
  6758. },
  6759. {
  6760. name: "How Did This Happen",
  6761. height: math.unit(80, "miles")
  6762. }
  6763. ]
  6764. )
  6765. };
  6766. characterMakers["Pisces"] = () => {
  6767. return makeCharacter(
  6768. { name: "Pisces" },
  6769. {
  6770. front: {
  6771. height: math.unit(7, "feet"),
  6772. weight: math.unit(300, "lb"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/pisces/front.svg",
  6776. extra: 2255/2115 ,
  6777. bottom: 0.03
  6778. }
  6779. },
  6780. back: {
  6781. height: math.unit(7, "feet"),
  6782. weight: math.unit(300, "lb"),
  6783. name: "Back",
  6784. image: {
  6785. source: "./media/characters/pisces/back.svg",
  6786. extra: 2146/2055 ,
  6787. bottom: 0.04
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(7, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Swimming Pool",
  6799. height: math.unit(12.2, "meters")
  6800. },
  6801. {
  6802. name: "Olympic Swimming Pool",
  6803. height: math.unit(56.3, "meters")
  6804. },
  6805. {
  6806. name: "Lake Superior",
  6807. height: math.unit(93900, "meters")
  6808. },
  6809. {
  6810. name: "Mediterranean Sea",
  6811. height: math.unit(644457, "meters")
  6812. },
  6813. {
  6814. name: "World's Oceans",
  6815. height: math.unit(4567491, "meters")
  6816. },
  6817. ]
  6818. )
  6819. };
  6820. characterMakers["Zelas"] = () => {
  6821. return makeCharacter(
  6822. { name: "Zelas" },
  6823. {
  6824. front: {
  6825. height: math.unit(2.3, "meters"),
  6826. weight: math.unit(120, "kg"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/zelas/front.svg"
  6830. }
  6831. },
  6832. side: {
  6833. height: math.unit(2.3, "meters"),
  6834. weight: math.unit(120, "kg"),
  6835. name: "Side",
  6836. image: {
  6837. source: "./media/characters/zelas/side.svg"
  6838. }
  6839. },
  6840. back: {
  6841. height: math.unit(2.3, "meters"),
  6842. weight: math.unit(120, "kg"),
  6843. name: "Back",
  6844. image: {
  6845. source: "./media/characters/zelas/back.svg"
  6846. }
  6847. },
  6848. foot: {
  6849. height: math.unit(1.116, "feet"),
  6850. name: "Foot",
  6851. image: {
  6852. source: "./media/characters/zelas/foot.svg"
  6853. }
  6854. },
  6855. },
  6856. [
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(2.3, "meters")
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(30, "meters"),
  6864. default: true
  6865. },
  6866. ]
  6867. )
  6868. };
  6869. characterMakers["Talbot"] = () => {
  6870. return makeCharacter(
  6871. { name: "Talbot" },
  6872. {
  6873. front: {
  6874. height: math.unit(1, "inch"),
  6875. weight: math.unit(0.21, "grams"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/talbot/front.svg",
  6879. extra: 594/544
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(1, "inch"),
  6887. default: true
  6888. },
  6889. ]
  6890. )
  6891. };
  6892. characterMakers["Fliss"] = () => {
  6893. return makeCharacter(
  6894. { name: "Fliss" },
  6895. {
  6896. front: {
  6897. height: math.unit(3 + 3/12, "feet"),
  6898. weight: math.unit(51.8, "lb"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/fliss/front.svg",
  6902. extra: 840/640
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Teeny Tiny",
  6909. height: math.unit(1, "mm")
  6910. },
  6911. {
  6912. name: "Small",
  6913. height: math.unit(1, "inch"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Standard Sylveon",
  6918. height: math.unit(3 + 3/12, "feet")
  6919. },
  6920. {
  6921. name: "Large Nuisance",
  6922. height: math.unit(33, "feet")
  6923. },
  6924. {
  6925. name: "City Filler",
  6926. height: math.unit(3000, "feet")
  6927. },
  6928. {
  6929. name: "New Horizon",
  6930. height: math.unit(6000, "miles")
  6931. },
  6932. ]
  6933. )
  6934. };
  6935. characterMakers["Fleta"] = () => {
  6936. return makeCharacter(
  6937. { name: "Fleta" },
  6938. {
  6939. front: {
  6940. height: math.unit(5, "cm"),
  6941. weight: math.unit(1.94, "g"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/fleta/front.svg",
  6945. extra: 835/803
  6946. }
  6947. },
  6948. back: {
  6949. height: math.unit(5, "cm"),
  6950. weight: math.unit(1.94, "g"),
  6951. name: "Back",
  6952. image: {
  6953. source: "./media/characters/fleta/back.svg",
  6954. extra: 835/803
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "Micro",
  6961. height: math.unit(5, "cm"),
  6962. default: true
  6963. },
  6964. ]
  6965. )
  6966. };
  6967. characterMakers["Dominic"] = () => {
  6968. return makeCharacter(
  6969. { name: "Dominic" },
  6970. {
  6971. front: {
  6972. height: math.unit(6, "feet"),
  6973. weight: math.unit(225, "lb"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/dominic/front.svg",
  6977. extra: 1770/1620 ,
  6978. bottom: 0.025
  6979. }
  6980. },
  6981. back: {
  6982. height: math.unit(6, "feet"),
  6983. weight: math.unit(225, "lb"),
  6984. name: "Back",
  6985. image: {
  6986. source: "./media/characters/dominic/back.svg",
  6987. extra: 1745/1620 ,
  6988. bottom: 0.065
  6989. }
  6990. },
  6991. },
  6992. [
  6993. {
  6994. name: "Nano",
  6995. height: math.unit(0.1, "mm")
  6996. },
  6997. {
  6998. name: "Micro-",
  6999. height: math.unit(1, "mm")
  7000. },
  7001. {
  7002. name: "Micro",
  7003. height: math.unit(4, "inches")
  7004. },
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(6 + 4/12, "feet"),
  7008. default: true
  7009. },
  7010. {
  7011. name: "Macro",
  7012. height: math.unit(115, "feet")
  7013. },
  7014. {
  7015. name: "Macro+",
  7016. height: math.unit(955, "feet")
  7017. },
  7018. {
  7019. name: "Megamacro",
  7020. height: math.unit(8990, "feet")
  7021. },
  7022. {
  7023. name: "Gigmacro",
  7024. height: math.unit(9310, "miles")
  7025. },
  7026. {
  7027. name: "Teramacro",
  7028. height: math.unit(1567005010, "miles")
  7029. },
  7030. {
  7031. name: "Examacro",
  7032. height: math.unit(1425, "parsecs")
  7033. },
  7034. ]
  7035. )
  7036. };
  7037. characterMakers["Major Colonel"] = () => {
  7038. return makeCharacter(
  7039. { name: "Major Colonel" },
  7040. {
  7041. front: {
  7042. height: math.unit(400, "feet"),
  7043. weight: math.unit(44444444, "lb"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/major-colonel/front.svg"
  7047. }
  7048. },
  7049. back: {
  7050. height: math.unit(400, "feet"),
  7051. weight: math.unit(44444444, "lb"),
  7052. name: "Back",
  7053. image: {
  7054. source: "./media/characters/major-colonel/back.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(400, "feet"),
  7062. default: true
  7063. },
  7064. ]
  7065. )
  7066. };
  7067. characterMakers["Axel Lycan"] = () => {
  7068. return makeCharacter(
  7069. { name: "Axel Lycan" },
  7070. {
  7071. front: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(120, "lb"),
  7074. name: "Front",
  7075. image: {
  7076. source: "./media/characters/axel-lycan/front.svg",
  7077. extra: 1,
  7078. bottom: 0.08
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(1, "km"),
  7086. default: true
  7087. },
  7088. ]
  7089. )
  7090. };
  7091. characterMakers["Vanrel (Hyena)"] = () => {
  7092. return makeCharacter(
  7093. { name: "Vanrel (Hyena)" },
  7094. {
  7095. front: {
  7096. height: math.unit(5 + 9/12, "feet"),
  7097. weight: math.unit(175, "lb"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/vanrel-hyena/front.svg",
  7101. extra: 1086/1010 ,
  7102. bottom: 0.04
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(5 + 9/12, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. )
  7114. };
  7115. characterMakers["Abbott Absol"] = () => {
  7116. return makeCharacter(
  7117. { name: "Abbott Absol" },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(103, "lb"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/abbott-absol/front.svg",
  7125. extra: 2010/1842
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Megamicro",
  7132. height: math.unit(0.1, "mm")
  7133. },
  7134. {
  7135. name: "Micro",
  7136. height: math.unit(1, "inch")
  7137. },
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(6, "feet"),
  7141. default: true
  7142. },
  7143. ]
  7144. )
  7145. };
  7146. characterMakers["Hector"] = () => {
  7147. return makeCharacter(
  7148. { name: "Hector" },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(264, "lb"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/hector/front.svg",
  7156. extra: 2280/2130 ,
  7157. bottom: 0.07
  7158. }
  7159. },
  7160. },
  7161. [
  7162. {
  7163. name: "Normal",
  7164. height: math.unit(12.25, "foot"),
  7165. default: true
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(160, "feet")
  7170. },
  7171. ]
  7172. )
  7173. };
  7174. characterMakers["Sal"] = () => {
  7175. return makeCharacter(
  7176. { name: "Sal" },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(150, "lb"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/sal/front.svg",
  7184. extra: 1846/1699 ,
  7185. bottom: 0.04
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Megamacro",
  7192. height: math.unit(10, "miles"),
  7193. default: true
  7194. },
  7195. ]
  7196. )
  7197. };
  7198. characterMakers["Ranger"] = () => {
  7199. return makeCharacter(
  7200. { name: "Ranger" },
  7201. {
  7202. front: {
  7203. height: math.unit(3, "meters"),
  7204. weight: math.unit(450, "kg"),
  7205. name: "front",
  7206. image: {
  7207. source: "./media/characters/ranger/front.svg",
  7208. extra: 2401/2243 ,
  7209. bottom: 0.05
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(3, "meters"),
  7217. default: true
  7218. },
  7219. ]
  7220. )
  7221. };
  7222. characterMakers["Theresa"] = () => {
  7223. return makeCharacter(
  7224. { name: "Theresa" },
  7225. {
  7226. front: {
  7227. height: math.unit(14, "feet"),
  7228. weight: math.unit(800, "kg"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/theresa/front.svg",
  7232. extra: 3575/3346 ,
  7233. bottom: 0.03
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(14, "feet"),
  7241. default: true
  7242. },
  7243. ]
  7244. )
  7245. };
  7246. characterMakers["Ine"] = () => {
  7247. return makeCharacter(
  7248. { name: "Ine" },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(3, "kg"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/ine/front.svg",
  7256. extra: 678/539 ,
  7257. bottom: 0.023
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(2.265, "feet"),
  7265. default: true
  7266. },
  7267. ]
  7268. )
  7269. };
  7270. characterMakers["Vial"] = () => {
  7271. return makeCharacter(
  7272. { name: "Vial" },
  7273. {
  7274. front: {
  7275. height: math.unit(5, "feet"),
  7276. weight: math.unit(30, "kg"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/vial/front.svg",
  7280. extra: 1365/1277 ,
  7281. bottom: 0.04
  7282. }
  7283. },
  7284. },
  7285. [
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(5, "feet"),
  7289. default: true
  7290. },
  7291. ]
  7292. )
  7293. };
  7294. characterMakers["Rovoska"] = () => {
  7295. return makeCharacter(
  7296. { name: "Rovoska" },
  7297. {
  7298. side: {
  7299. height: math.unit(3.4, "meters"),
  7300. weight: math.unit(1000, "lb"),
  7301. name: "Side",
  7302. image: {
  7303. source: "./media/characters/rovoska/side.svg",
  7304. extra: 4403/1515
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(3.4, "meters"),
  7312. default: true
  7313. },
  7314. ]
  7315. )
  7316. };
  7317. characterMakers["Gunner Rotthbauer"] = () => {
  7318. return makeCharacter(
  7319. { name: "Gunner Rotthbauer" },
  7320. {
  7321. front: {
  7322. height: math.unit(8, "feet"),
  7323. weight: math.unit(315, "lb"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/gunner-rotthbauer/front.svg"
  7327. }
  7328. },
  7329. back: {
  7330. height: math.unit(8, "feet"),
  7331. weight: math.unit(315, "lb"),
  7332. name: "Back",
  7333. image: {
  7334. source: "./media/characters/gunner-rotthbauer/back.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Micro",
  7341. height: math.unit(3.5, "inches")
  7342. },
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(8, "feet"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(250, "feet")
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(1, "AU")
  7355. },
  7356. ]
  7357. )
  7358. };
  7359. characterMakers["Allatia"] = () => {
  7360. return makeCharacter(
  7361. { name: "Allatia" },
  7362. {
  7363. front: {
  7364. height: math.unit(5 + 5/12, "feet"),
  7365. weight: math.unit(140, "lb"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/allatia/front.svg",
  7369. extra: 1227/1180 ,
  7370. bottom: 0.027
  7371. }
  7372. },
  7373. },
  7374. [
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(5 + 5/12, "feet")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(250, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Megamacro",
  7386. height: math.unit(8, "miles")
  7387. }
  7388. ]
  7389. )
  7390. };
  7391. characterMakers["Tene"] = () => {
  7392. return makeCharacter(
  7393. { name: "Tene" },
  7394. {
  7395. front: {
  7396. height: math.unit(6, "feet"),
  7397. weight: math.unit(120, "lb"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/tene/front.svg",
  7401. extra: 1728/1578 ,
  7402. bottom: 0.022
  7403. }
  7404. },
  7405. stomping: {
  7406. height: math.unit(2.025, "meters"),
  7407. weight: math.unit(120, "lb"),
  7408. name: "Stomping",
  7409. image: {
  7410. source: "./media/characters/tene/stomping.svg",
  7411. extra: 938/873 ,
  7412. bottom: 0.01
  7413. }
  7414. },
  7415. sitting: {
  7416. height: math.unit(1, "meter"),
  7417. weight: math.unit(120, "lb"),
  7418. name: "Sitting",
  7419. image: {
  7420. source: "./media/characters/tene/sitting.svg",
  7421. extra: 437/415 ,
  7422. bottom: 0.1
  7423. }
  7424. },
  7425. feral: {
  7426. height: math.unit(3.9, "feet"),
  7427. weight: math.unit(250, "lb"),
  7428. name: "Feral",
  7429. image: {
  7430. source: "./media/characters/tene/feral.svg",
  7431. extra: 717/458 ,
  7432. bottom: 0.179
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(6, "feet")
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(300, "feet"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Megamacro",
  7448. height: math.unit(5, "miles")
  7449. },
  7450. ]
  7451. )
  7452. };
  7453. characterMakers["Evander"] = () => {
  7454. return makeCharacter(
  7455. { name: "Evander" },
  7456. {
  7457. side: {
  7458. height: math.unit(6, "feet"),
  7459. name: "Side",
  7460. image: {
  7461. source: "./media/characters/evander/side.svg",
  7462. extra: 877/477
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(0.83, "meters"),
  7470. default: true
  7471. },
  7472. ]
  7473. )
  7474. };
  7475. characterMakers["Ka'Tamra \"Spaz\" Ci'Karan"] = () => {
  7476. return makeCharacter(
  7477. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7478. {
  7479. front: {
  7480. height: math.unit(12, "feet"),
  7481. weight: math.unit(1000, "lb"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7485. extra: 1762/1611
  7486. }
  7487. },
  7488. back: {
  7489. height: math.unit(12, "feet"),
  7490. weight: math.unit(1000, "lb"),
  7491. name: "Back",
  7492. image: {
  7493. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7494. extra: 1762/1611
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(12, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Kaiju",
  7506. height: math.unit(150, "feet")
  7507. },
  7508. ]
  7509. )
  7510. };
  7511. characterMakers["Zero Alurus"] = () => {
  7512. return makeCharacter(
  7513. { name: "Zero Alurus" },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(150, "lb"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/zero-alurus/front.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(150, "lb"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/zero-alurus/back.svg"
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(5 + 10/12, "feet")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(60, "feet"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Macro+",
  7544. height: math.unit(450, "feet")
  7545. },
  7546. ]
  7547. )
  7548. };
  7549. characterMakers["Mega Shi"] = () => {
  7550. return makeCharacter(
  7551. { name: "Mega Shi" },
  7552. {
  7553. front: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(200, "lb"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/mega-shi/front.svg",
  7559. extra: 1279/1250 ,
  7560. bottom: 0.02
  7561. }
  7562. },
  7563. back: {
  7564. height: math.unit(6, "feet"),
  7565. weight: math.unit(200, "lb"),
  7566. name: "Back",
  7567. image: {
  7568. source: "./media/characters/mega-shi/back.svg",
  7569. extra: 1279/1250 ,
  7570. bottom: 0.02
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Micro",
  7577. height: math.unit(16 + 6/12, "feet")
  7578. },
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(660, "feet"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Megamacro",
  7586. height: math.unit(10, "miles")
  7587. },
  7588. {
  7589. name: "Planetary Launch",
  7590. height: math.unit(500, "miles")
  7591. },
  7592. {
  7593. name: "Interstellar",
  7594. height: math.unit(1e9, "miles")
  7595. },
  7596. {
  7597. name: "Leaving the Universe",
  7598. height: math.unit(1, "gigaparsec")
  7599. },
  7600. {
  7601. name: "Travelling Universes",
  7602. height: math.unit(30e15, "parsecs")
  7603. },
  7604. ]
  7605. )
  7606. };
  7607. characterMakers["Odyssey"] = () => {
  7608. return makeCharacter(
  7609. { name: "Odyssey" },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(150, "lb"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/odyssey/front.svg",
  7617. extra: 1782/1582 ,
  7618. bottom: 0.01
  7619. }
  7620. },
  7621. side: {
  7622. height: math.unit(5.6, "feet"),
  7623. weight: math.unit(140, "lb"),
  7624. name: "Side",
  7625. image: {
  7626. source: "./media/characters/odyssey/side.svg",
  7627. extra: 6462/5700
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(5 + 4/12, "feet")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(1, "km")
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(3000, "km")
  7643. },
  7644. {
  7645. name: "Gigamacro",
  7646. height: math.unit(1, "AU"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Omniversal",
  7651. height: math.unit(100e14, "lightyears")
  7652. },
  7653. ]
  7654. )
  7655. };
  7656. characterMakers["Mekuto"] = () => {
  7657. return makeCharacter(
  7658. { name: "Mekuto" },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(300, "lb"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/mekuto/front.svg",
  7666. extra: 921/832 ,
  7667. bottom: 0.03
  7668. }
  7669. },
  7670. hand: {
  7671. height: math.unit(6/10.24, "feet"),
  7672. name: "Hand",
  7673. image: {
  7674. source: "./media/characters/mekuto/hand.svg"
  7675. }
  7676. },
  7677. foot: {
  7678. height: math.unit(6/5.05, "feet"),
  7679. name: "Foot",
  7680. image: {
  7681. source: "./media/characters/mekuto/foot.svg"
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Minimicro",
  7688. height: math.unit(0.2, "inches")
  7689. },
  7690. {
  7691. name: "Micro",
  7692. height: math.unit(1.5, "inches")
  7693. },
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(5 + 11/12, "feet"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Minimacro",
  7701. height: math.unit(17 + 9/12, "feet")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(177.5, "feet")
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(152, "miles")
  7710. },
  7711. ]
  7712. )
  7713. };
  7714. characterMakers["Dafydd Tomos"] = () => {
  7715. return makeCharacter(
  7716. { name: "Dafydd Tomos" },
  7717. {
  7718. front: {
  7719. height: math.unit(6.5, "inches"),
  7720. weight: math.unit(13, "oz"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/dafydd-tomos/front.svg",
  7724. extra: 2990/2603 ,
  7725. bottom: 0.03
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Micro",
  7732. height: math.unit(6.5, "inches"),
  7733. default: true
  7734. },
  7735. ]
  7736. )
  7737. };
  7738. characterMakers["Splinter"] = () => {
  7739. return makeCharacter(
  7740. { name: "Splinter" },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(150, "lb"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/splinter/front.svg",
  7748. extra: 2990/2882 ,
  7749. bottom: 0.04
  7750. }
  7751. },
  7752. back: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(150, "lb"),
  7755. name: "Back",
  7756. image: {
  7757. source: "./media/characters/splinter/back.svg",
  7758. extra: 2990/2882 ,
  7759. bottom: 0.04
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(6, "feet")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(230, "meters"),
  7771. default: true
  7772. },
  7773. ]
  7774. )
  7775. };
  7776. characterMakers["SnowGabumon"] = () => {
  7777. return makeCharacter(
  7778. { name: "SnowGabumon" },
  7779. {
  7780. front: {
  7781. height: math.unit(4 + 10/12, "feet"),
  7782. weight: math.unit(480, "lb"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/snow-gabumon/front.svg",
  7786. extra: 1140/963 ,
  7787. bottom: 0.058
  7788. }
  7789. },
  7790. back: {
  7791. height: math.unit(4 + 10/12, "feet"),
  7792. weight: math.unit(480, "lb"),
  7793. name: "Back",
  7794. image: {
  7795. source: "./media/characters/snow-gabumon/back.svg",
  7796. extra: 1115/962 ,
  7797. bottom: 0.041
  7798. }
  7799. },
  7800. frontUndresed: {
  7801. height: math.unit(4 + 10/12, "feet"),
  7802. weight: math.unit(480, "lb"),
  7803. name: "Front (Undressed)",
  7804. image: {
  7805. source: "./media/characters/snow-gabumon/front-undressed.svg",
  7806. extra: 1061/960 ,
  7807. bottom: 0.045
  7808. }
  7809. },
  7810. },
  7811. [
  7812. {
  7813. name: "Micro",
  7814. height: math.unit(1, "inch")
  7815. },
  7816. {
  7817. name: "Normal",
  7818. height: math.unit(4 + 10/12, "feet"),
  7819. default: true
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(200, "feet")
  7824. },
  7825. {
  7826. name: "Megamacro",
  7827. height: math.unit(120, "miles")
  7828. },
  7829. {
  7830. name: "Gigamacro",
  7831. height: math.unit(9800, "miles")
  7832. },
  7833. ]
  7834. )
  7835. };
  7836. characterMakers["Moody"] = () => {
  7837. return makeCharacter(
  7838. { name: "Moody" },
  7839. {
  7840. front: {
  7841. height: math.unit(1.7, "meters"),
  7842. weight: math.unit(140, "lb"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/moody/front.svg",
  7846. extra: 3226/3007 ,
  7847. bottom: 0.087
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(1, "mm")
  7855. },
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(1.7, "meters"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Macro",
  7863. height: math.unit(80, "meters")
  7864. },
  7865. {
  7866. name: "Macro+",
  7867. height: math.unit(500, "meters")
  7868. },
  7869. ]
  7870. )
  7871. };
  7872. characterMakers["Zyas"] = () => {
  7873. return makeCharacter(
  7874. { name: "Zyas" },
  7875. {
  7876. front: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(150, "lb"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/zyas/front.svg",
  7882. extra: 1180/1120 ,
  7883. bottom: 0.045
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(10, "feet"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(500, "feet")
  7896. },
  7897. {
  7898. name: "Megamacro",
  7899. height: math.unit(5, "miles")
  7900. },
  7901. {
  7902. name: "Teramacro",
  7903. height: math.unit(150000, "miles")
  7904. },
  7905. ]
  7906. )
  7907. };
  7908. characterMakers["Cuon"] = () => {
  7909. return makeCharacter(
  7910. { name: "Cuon" },
  7911. {
  7912. front: {
  7913. height: math.unit(6, "feet"),
  7914. weight: math.unit(150, "lb"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/cuon/front.svg",
  7918. extra: 1390/1320 ,
  7919. bottom: 0.008
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(3, "inches")
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(18 + 9/12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(360, "feet")
  7936. },
  7937. {
  7938. name: "Megamacro",
  7939. height: math.unit(360, "miles")
  7940. },
  7941. ]
  7942. )
  7943. };
  7944. characterMakers["Nyanuxk"] = () => {
  7945. return makeCharacter(
  7946. { name: "Nyanuxk" },
  7947. {
  7948. front: {
  7949. height: math.unit(2.4, "meters"),
  7950. weight: math.unit(70, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/nyanuxk/front.svg",
  7954. extra: 1172/1084 ,
  7955. bottom: 0.065
  7956. }
  7957. },
  7958. side: {
  7959. height: math.unit(2.4, "meters"),
  7960. weight: math.unit(70, "kg"),
  7961. name: "Side",
  7962. image: {
  7963. source: "./media/characters/nyanuxk/side.svg",
  7964. extra: 1190/1132 ,
  7965. bottom: 0.007
  7966. }
  7967. },
  7968. back: {
  7969. height: math.unit(2.4, "meters"),
  7970. weight: math.unit(70, "kg"),
  7971. name: "Back",
  7972. image: {
  7973. source: "./media/characters/nyanuxk/back.svg",
  7974. extra: 1200/1141 ,
  7975. bottom: 0.015
  7976. }
  7977. },
  7978. foot: {
  7979. height: math.unit(0.52, "meters"),
  7980. name: "Foot",
  7981. image: {
  7982. source: "./media/characters/nyanuxk/foot.svg"
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Micro",
  7989. height: math.unit(2, "cm")
  7990. },
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(2.4, "meters"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Smaller Macro",
  7998. height: math.unit(120, "meters")
  7999. },
  8000. {
  8001. name: "Bigger Macro",
  8002. height: math.unit(1.2, "km")
  8003. },
  8004. {
  8005. name: "Megamacro",
  8006. height: math.unit(15, "kilometers")
  8007. },
  8008. {
  8009. name: "Gigamacro",
  8010. height: math.unit(2000, "km")
  8011. },
  8012. {
  8013. name: "Teramacro",
  8014. height: math.unit(500000, "km")
  8015. },
  8016. ]
  8017. )
  8018. };
  8019. characterMakers["Ailbhe"] = () => {
  8020. return makeCharacter(
  8021. { name: "Ailbhe" },
  8022. {
  8023. side: {
  8024. height: math.unit(6, "feet"),
  8025. name: "Side",
  8026. image: {
  8027. source: "./media/characters/ailbhe/side.svg",
  8028. extra: 757/464 ,
  8029. bottom: 0.041
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(1.07, "meters"),
  8037. default: true
  8038. },
  8039. ]
  8040. )
  8041. };
  8042. characterMakers["Zevulfius"] = () => {
  8043. return makeCharacter(
  8044. { name: "Zevulfius" },
  8045. {
  8046. front: {
  8047. height: math.unit(6, "feet"),
  8048. weight: math.unit(120, "kg"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/zevulfius/front.svg",
  8052. extra: 965/903
  8053. }
  8054. },
  8055. side: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(120, "kg"),
  8058. name: "Side",
  8059. image: {
  8060. source: "./media/characters/zevulfius/side.svg",
  8061. extra: 939/900
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(120, "kg"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/zevulfius/back.svg",
  8070. extra: 918/854 ,
  8071. bottom: 0.005
  8072. }
  8073. },
  8074. foot: {
  8075. height: math.unit(6/3.72, "feet"),
  8076. name: "Foot",
  8077. image: {
  8078. source: "./media/characters/zevulfius/foot.svg"
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(750, "meters")
  8086. },
  8087. {
  8088. name: "Megamacro",
  8089. height: math.unit(20, "km"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Gigamacro",
  8094. height: math.unit(2000, "km")
  8095. },
  8096. {
  8097. name: "Teramacro",
  8098. height: math.unit(250000, "km")
  8099. },
  8100. ]
  8101. )
  8102. };
  8103. characterMakers["Rikes"] = () => {
  8104. return makeCharacter(
  8105. { name: "Rikes" },
  8106. {
  8107. front: {
  8108. height: math.unit(100, "feet"),
  8109. weight: math.unit(350, "kg"),
  8110. name: "Front",
  8111. image: {
  8112. source: "./media/characters/rikes/front.svg",
  8113. extra: 1565/1483 ,
  8114. bottom: 0.017
  8115. }
  8116. },
  8117. },
  8118. [
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(100, "feet"),
  8122. default: true
  8123. },
  8124. ]
  8125. )
  8126. };
  8127. characterMakers["Adam Silver-Mane"] = () => {
  8128. return makeCharacter(
  8129. { name: "Adam Silver-Mane" },
  8130. {
  8131. anthro: {
  8132. height: math.unit(8, "feet"),
  8133. weight: math.unit(120, "kg"),
  8134. name: "Anthro",
  8135. image: {
  8136. source: "./media/characters/adam-silver-mane/anthro.svg",
  8137. extra: 5743/5339 ,
  8138. bottom: 0.07
  8139. }
  8140. },
  8141. taur: {
  8142. height: math.unit(16, "feet"),
  8143. weight: math.unit(1500, "kg"),
  8144. name: "Taur",
  8145. image: {
  8146. source: "./media/characters/adam-silver-mane/taur.svg",
  8147. extra: 1713/1571 ,
  8148. bottom: 0.01
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(8, "feet")
  8156. },
  8157. {
  8158. name: "Minimacro",
  8159. height: math.unit(80, "feet")
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(800, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Megamacro",
  8168. height: math.unit(8000, "feet")
  8169. },
  8170. {
  8171. name: "Gigamacro",
  8172. height: math.unit(800, "miles")
  8173. },
  8174. {
  8175. name: "Teramacro",
  8176. height: math.unit(80000, "miles")
  8177. },
  8178. {
  8179. name: "Celestial",
  8180. height: math.unit(8e6, "miles")
  8181. },
  8182. {
  8183. name: "Star Dragon",
  8184. height: math.unit(800000, "parsecs")
  8185. },
  8186. {
  8187. name: "Godly",
  8188. height: math.unit(800, "teraparsecs")
  8189. },
  8190. ]
  8191. )
  8192. };
  8193. characterMakers["Ky'owin"] = () => {
  8194. return makeCharacter(
  8195. { name: "Ky'owin" },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lb"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/ky'owin/front.svg",
  8203. extra: 3888/3068 ,
  8204. bottom: 0.015
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(6 + 8/12, "feet")
  8212. },
  8213. {
  8214. name: "Large",
  8215. height: math.unit(68, "feet")
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(132, "feet")
  8220. },
  8221. {
  8222. name: "Macro+",
  8223. height: math.unit(340, "feet")
  8224. },
  8225. {
  8226. name: "Macro++",
  8227. height: math.unit(680, "feet"),
  8228. default: true
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(1, "mile")
  8233. },
  8234. {
  8235. name: "Megamacro+",
  8236. height: math.unit(10, "miles")
  8237. },
  8238. ]
  8239. )
  8240. };
  8241. characterMakers["Mal"] = () => {
  8242. return makeCharacter(
  8243. { name: "Mal" },
  8244. {
  8245. front: {
  8246. height: math.unit(4, "feet"),
  8247. weight: math.unit(50, "lb"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/mal/front.svg",
  8251. extra: 785/724 ,
  8252. bottom: 0.07
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Micro",
  8259. height: math.unit(4, "inches")
  8260. },
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(4, "feet"),
  8264. default: true
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(200, "feet")
  8269. },
  8270. ]
  8271. )
  8272. };
  8273. characterMakers["Jordan Deware"] = () => {
  8274. return makeCharacter(
  8275. { name: "Jordan Deware" },
  8276. {
  8277. front: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(150, "lb"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/jordan-deware/front.svg",
  8283. extra: 1191/1012
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Nano",
  8290. height: math.unit(0.01, "mm")
  8291. },
  8292. {
  8293. name: "Minimicro",
  8294. height: math.unit(1, "mm")
  8295. },
  8296. {
  8297. name: "Micro",
  8298. height: math.unit(0.5, "inches")
  8299. },
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(4, "feet"),
  8303. default: true
  8304. },
  8305. {
  8306. name: "Minimacro",
  8307. height: math.unit(40, "meters")
  8308. },
  8309. {
  8310. name: "Small Macro",
  8311. height: math.unit(400, "meters")
  8312. },
  8313. {
  8314. name: "Macro",
  8315. height: math.unit(4, "miles")
  8316. },
  8317. {
  8318. name: "Megamacro",
  8319. height: math.unit(40, "miles")
  8320. },
  8321. {
  8322. name: "Megamacro+",
  8323. height: math.unit(400, "miles")
  8324. },
  8325. {
  8326. name: "Gigamacro",
  8327. height: math.unit(400000, "miles")
  8328. },
  8329. ]
  8330. )
  8331. };
  8332. characterMakers["Kimiko"] = () => {
  8333. return makeCharacter(
  8334. { name: "Kimiko" },
  8335. {
  8336. side: {
  8337. height: math.unit(6, "feet"),
  8338. weight: math.unit(150, "lb"),
  8339. name: "Side",
  8340. image: {
  8341. source: "./media/characters/kimiko/side.svg",
  8342. extra: 600/358
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(15, "feet"),
  8350. default: true
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(220, "feet")
  8355. },
  8356. {
  8357. name: "Macro+",
  8358. height: math.unit(1450, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(11500, "feet")
  8363. },
  8364. {
  8365. name: "Gigamacro",
  8366. height: math.unit(9500, "miles")
  8367. },
  8368. {
  8369. name: "Teramacro",
  8370. height: math.unit(2208005005, "miles")
  8371. },
  8372. {
  8373. name: "Examacro",
  8374. height: math.unit(2750, "parsecs")
  8375. },
  8376. {
  8377. name: "Zettamacro",
  8378. height: math.unit(101500, "parsecs")
  8379. },
  8380. ]
  8381. )
  8382. };
  8383. characterMakers["Andrew Sleepy"] = () => {
  8384. return makeCharacter(
  8385. { name: "Andrew Sleepy" },
  8386. {
  8387. front: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(70, "kg"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/andrew-sleepy/front.svg"
  8393. }
  8394. },
  8395. side: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(70, "kg"),
  8398. name: "Side",
  8399. image: {
  8400. source: "./media/characters/andrew-sleepy/side.svg"
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(1, "mm"),
  8408. default: true
  8409. },
  8410. ]
  8411. )
  8412. };
  8413. characterMakers["Judio"] = () => {
  8414. return makeCharacter(
  8415. { name: "Judio" },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(150, "lb"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/judio/front.svg",
  8423. extra: 1258/1110
  8424. }
  8425. },
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(5 + 6/12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(1000, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(10, "miles")
  8440. },
  8441. ]
  8442. )
  8443. };
  8444. characterMakers["Nomaxice"] = () => {
  8445. return makeCharacter(
  8446. { name: "Nomaxice" },
  8447. {
  8448. front: {
  8449. height: math.unit(6, "feet"),
  8450. weight: math.unit(68, "kg"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/nomaxice/front.svg",
  8454. extra: 1498/1073 ,
  8455. bottom: 0.075
  8456. }
  8457. },
  8458. foot: {
  8459. height: math.unit(1.1, "feet"),
  8460. name: "Foot",
  8461. image: {
  8462. source: "./media/characters/nomaxice/foot.svg"
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Micro",
  8469. height: math.unit(8, "cm")
  8470. },
  8471. {
  8472. name: "Norm",
  8473. height: math.unit(1.82, "m")
  8474. },
  8475. {
  8476. name: "Norm+",
  8477. height: math.unit(8.8, "feet")
  8478. },
  8479. {
  8480. name: "Big",
  8481. height: math.unit(8, "meters"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(18, "meters")
  8487. },
  8488. {
  8489. name: "Macro+",
  8490. height: math.unit(88, "meters")
  8491. },
  8492. ]
  8493. )
  8494. };
  8495. characterMakers["Dydros"] = () => {
  8496. return makeCharacter(
  8497. { name: "Dydros" },
  8498. {
  8499. front: {
  8500. height: math.unit(12, "feet"),
  8501. weight: math.unit(1.5, "tons"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/dydros/front.svg",
  8505. extra: 863/800 ,
  8506. bottom: 0.015
  8507. }
  8508. },
  8509. back: {
  8510. height: math.unit(12, "feet"),
  8511. weight: math.unit(1.5, "tons"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/dydros/back.svg",
  8515. extra: 900/843 ,
  8516. bottom: 0.005
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(12, "feet"),
  8524. default: true
  8525. },
  8526. ]
  8527. )
  8528. };
  8529. characterMakers["Riggi"] = () => {
  8530. return makeCharacter(
  8531. { name: "Riggi" },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(100, "kg"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/riggi/front.svg",
  8539. extra: 5787/5303
  8540. }
  8541. },
  8542. hyper: {
  8543. height: math.unit(6*5/3, "feet"),
  8544. weight: math.unit(400*5/3*5/3*5/3, "kg"),
  8545. name: "Hyper",
  8546. image: {
  8547. source: "./media/characters/riggi/hyper.svg",
  8548. extra: 3595/3485
  8549. }
  8550. },
  8551. },
  8552. [
  8553. {
  8554. name: "Small Macro",
  8555. height: math.unit(50, "feet")
  8556. },
  8557. {
  8558. name: "Default",
  8559. height: math.unit(200, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Loom",
  8564. height: math.unit(10000, "feet")
  8565. },
  8566. {
  8567. name: "Cruising Altitude",
  8568. height: math.unit(30000, "feet")
  8569. },
  8570. {
  8571. name: "Megamacro",
  8572. height: math.unit(100, "miles")
  8573. },
  8574. {
  8575. name: "Continent Sized",
  8576. height: math.unit(2800, "miles")
  8577. },
  8578. {
  8579. name: "Earth Sized",
  8580. height: math.unit(8000, "miles")
  8581. },
  8582. ]
  8583. )
  8584. };
  8585. characterMakers["Alexi"] = () => {
  8586. return makeCharacter(
  8587. { name: "Alexi" },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(250, "lb"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/alexi/front.svg",
  8595. extra: 3483/3291 ,
  8596. bottom: 0.04
  8597. }
  8598. },
  8599. back: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(250, "lb"),
  8602. name: "Back",
  8603. image: {
  8604. source: "./media/characters/alexi/back.svg",
  8605. extra: 3533/3356 ,
  8606. bottom: 0.021
  8607. }
  8608. },
  8609. frontTransformed: {
  8610. height: math.unit(12.5, "feet"),
  8611. weight: math.unit(4000, "lb"),
  8612. name: "Front (Transformed)",
  8613. image: {
  8614. source: "./media/characters/alexi/front-transformed.svg",
  8615. extra: 5345/5100 ,
  8616. bottom: 0.03
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3, "meters"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Minimacro",
  8628. height: math.unit(30, "meters")
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(500, "meters")
  8633. },
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(9000, "km")
  8637. },
  8638. {
  8639. name: "Teramacro",
  8640. height: math.unit(384000, "km")
  8641. },
  8642. ]
  8643. )
  8644. };
  8645. characterMakers["Kayroo"] = () => {
  8646. return makeCharacter(
  8647. { name: "Kayroo" },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lb"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/kayroo/front.svg",
  8655. extra: 1153/1038 ,
  8656. bottom: 0.06
  8657. }
  8658. },
  8659. foot: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(150, "lb"),
  8662. name: "Foot",
  8663. image: {
  8664. source: "./media/characters/kayroo/foot.svg"
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(8, "feet"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Minimacro",
  8676. height: math.unit(250, "feet")
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(2800, "feet")
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(5200, "feet")
  8685. },
  8686. {
  8687. name: "Gigamacro",
  8688. height: math.unit(27000, "feet")
  8689. },
  8690. {
  8691. name: "Omega",
  8692. height: math.unit(45000, "feet")
  8693. },
  8694. ]
  8695. )
  8696. };
  8697. characterMakers["Rhys"] = () => {
  8698. return makeCharacter(
  8699. { name: "Rhys" },
  8700. {
  8701. front: {
  8702. height: math.unit(18, "feet"),
  8703. weight: math.unit(5800, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/rhys/front.svg",
  8707. extra: 3386/3090 ,
  8708. bottom: 0.07
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(18, "feet"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Working Size",
  8720. height: math.unit(200, "feet")
  8721. },
  8722. {
  8723. name: "Demolition Size",
  8724. height: math.unit(2000, "feet")
  8725. },
  8726. {
  8727. name: "Maximum Licensed Size",
  8728. height: math.unit(5, "miles")
  8729. },
  8730. {
  8731. name: "Maximum Observed Size",
  8732. height: math.unit(10, "yottameters")
  8733. },
  8734. ]
  8735. )
  8736. };
  8737. characterMakers["Toto"] = () => {
  8738. return makeCharacter(
  8739. { name: "Toto" },
  8740. {
  8741. front: {
  8742. height: math.unit(6, "feet"),
  8743. weight: math.unit(250, "lb"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/toto/front.svg",
  8747. extra: 527 / 479,
  8748. bottom: 0.05
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Micro",
  8755. height: math.unit(3, "feet")
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(10, "feet")
  8760. },
  8761. {
  8762. name: "Macro",
  8763. height: math.unit(150, "feet"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(1200, "feet")
  8769. },
  8770. ]
  8771. )
  8772. };
  8773. characterMakers["King"] = () => {
  8774. return makeCharacter(
  8775. { name: "King" },
  8776. {
  8777. back: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(150, "lb"),
  8780. name: "Back",
  8781. image: {
  8782. source: "./media/characters/king/back.svg"
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Micro",
  8789. height: math.unit(2, "inches")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(8, "feet")
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(200, "feet"),
  8798. default: true
  8799. },
  8800. {
  8801. name: "Megamacro",
  8802. height: math.unit(50, "miles")
  8803. },
  8804. ]
  8805. )
  8806. };
  8807. characterMakers["Cordite"] = () => {
  8808. return makeCharacter(
  8809. { name: "Cordite" },
  8810. {
  8811. anthro: {
  8812. height: math.unit(6 + 5/12, "feet"),
  8813. weight: math.unit(280, "lb"),
  8814. name: "Anthro",
  8815. image: {
  8816. source: "./media/characters/cordite/anthro.svg",
  8817. extra: 1986/1905 ,
  8818. bottom: 0.025
  8819. }
  8820. },
  8821. feral: {
  8822. height: math.unit(2, "feet"),
  8823. weight: math.unit(90, "lb"),
  8824. name: "Feral",
  8825. image: {
  8826. source: "./media/characters/cordite/feral.svg",
  8827. extra: 1260/755 ,
  8828. bottom: 0.05
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(6 + 5/12, "feet"),
  8836. default: true
  8837. },
  8838. ]
  8839. )
  8840. };
  8841. characterMakers["Pianostrong"] = () => {
  8842. return makeCharacter(
  8843. { name: "Pianostrong" },
  8844. {
  8845. front: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(150, "lb"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/pianostrong/front.svg",
  8851. extra: 6577/6254 ,
  8852. bottom: 0.02
  8853. }
  8854. },
  8855. side: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(150, "lb"),
  8858. name: "Side",
  8859. image: {
  8860. source: "./media/characters/pianostrong/side.svg",
  8861. extra: 6106/5730
  8862. }
  8863. },
  8864. back: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(150, "lb"),
  8867. name: "Back",
  8868. image: {
  8869. source: "./media/characters/pianostrong/back.svg",
  8870. extra: 6085/5733 ,
  8871. bottom: 0.01
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(100, "feet")
  8879. },
  8880. {
  8881. name: "Macro+",
  8882. height: math.unit(300, "feet"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Macro++",
  8887. height: math.unit(1000, "feet")
  8888. },
  8889. ]
  8890. )
  8891. };
  8892. characterMakers["Kona"] = () => {
  8893. return makeCharacter(
  8894. { name: "Kona" },
  8895. {
  8896. front: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(150, "lb"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/kona/front.svg",
  8902. extra: 2960/2629 ,
  8903. bottom: 0.005
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(11 + 8/12, "feet")
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(850, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Macro+",
  8919. height: math.unit(1.5, "km"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(80, "miles")
  8925. },
  8926. {
  8927. name: "Gigamacro",
  8928. height: math.unit(3500, "miles")
  8929. },
  8930. ]
  8931. )
  8932. };
  8933. characterMakers["Levi"] = () => {
  8934. return makeCharacter(
  8935. { name: "Levi" },
  8936. {
  8937. side: {
  8938. height: math.unit(1.9, "meters"),
  8939. weight: math.unit(326, "kg"),
  8940. name: "Side",
  8941. image: {
  8942. source: "./media/characters/levi/side.svg",
  8943. extra: 1704/1334 ,
  8944. bottom: 0.02
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(1.9, "meters"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(20, "meters")
  8957. },
  8958. {
  8959. name: "Macro+",
  8960. height: math.unit(200, "meters")
  8961. },
  8962. {
  8963. name: "Megamacro",
  8964. height: math.unit(2, "km")
  8965. },
  8966. {
  8967. name: "Megamacro+",
  8968. height: math.unit(20, "km")
  8969. },
  8970. {
  8971. name: "Gigamacro",
  8972. height: math.unit(2500, "km")
  8973. },
  8974. {
  8975. name: "Gigamacro+",
  8976. height: math.unit(120000, "km")
  8977. },
  8978. {
  8979. name: "Teramacro",
  8980. height: math.unit(7.77e6, "km")
  8981. },
  8982. ]
  8983. )
  8984. };
  8985. characterMakers["BMC"] = () => {
  8986. return makeCharacter(
  8987. { name: "BMC" },
  8988. {
  8989. front: {
  8990. height: math.unit(6 + 4/12, "feet"),
  8991. weight: math.unit(188, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/bmc/front.svg",
  8995. extra: 1067/1022 ,
  8996. bottom: 0.047
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Human-sized",
  9003. height: math.unit(6 + 4/12, "feet")
  9004. },
  9005. {
  9006. name: "Small",
  9007. height: math.unit(250, "feet")
  9008. },
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(1250, "feet"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Good Day",
  9016. height: math.unit(88, "miles")
  9017. },
  9018. {
  9019. name: "Largest Measured Size",
  9020. height: math.unit(11.2e6, "lightyears")
  9021. },
  9022. ]
  9023. )
  9024. };
  9025. characterMakers["Sven the Kaiju"] = () => {
  9026. return makeCharacter(
  9027. { name: "Sven the Kaiju" },
  9028. {
  9029. front: {
  9030. height: math.unit(20, "feet"),
  9031. weight: math.unit(2016, "kg"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/sven-the-kaiju/front.svg",
  9035. extra: 1479/1449 ,
  9036. bottom: 0.05
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Fairy",
  9043. height: math.unit(6, "inches")
  9044. },
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(20, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Rampage",
  9052. height: math.unit(200, "feet")
  9053. },
  9054. {
  9055. name: "Archfey Forest Guardian",
  9056. height: math.unit(1, "mile")
  9057. },
  9058. ]
  9059. )
  9060. };
  9061. characterMakers["Marik"] = () => {
  9062. return makeCharacter(
  9063. { name: "Marik" },
  9064. {
  9065. front: {
  9066. height: math.unit(4, "meters"),
  9067. weight: math.unit(2, "tons"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/marik/front.svg",
  9071. extra: 1057/1003 ,
  9072. bottom: 0.08
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(4, "meters"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(20, "meters")
  9085. },
  9086. {
  9087. name: "Megamacro",
  9088. height: math.unit(50, "km")
  9089. },
  9090. {
  9091. name: "Gigamacro",
  9092. height: math.unit(100, "km")
  9093. },
  9094. {
  9095. name: "Alpha Macro",
  9096. height: math.unit(7.88e7, "yottameters")
  9097. },
  9098. ]
  9099. )
  9100. };
  9101. characterMakers["Mel"] = () => {
  9102. return makeCharacter(
  9103. { name: "Mel" },
  9104. {
  9105. front: {
  9106. height: math.unit(6, "feet"),
  9107. weight: math.unit(110, "lb"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/mel/front.svg",
  9111. extra: 736/617 ,
  9112. bottom: 0.017
  9113. }
  9114. },
  9115. },
  9116. [
  9117. {
  9118. name: "Pico",
  9119. height: math.unit(3, "pm")
  9120. },
  9121. {
  9122. name: "Nano",
  9123. height: math.unit(3, "nm")
  9124. },
  9125. {
  9126. name: "Micro",
  9127. height: math.unit(0.3, "mm"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Micro+",
  9132. height: math.unit(3, "mm")
  9133. },
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(5 + 10.5/12, "feet")
  9137. },
  9138. ]
  9139. )
  9140. };
  9141. characterMakers["Lykonous"] = () => {
  9142. return makeCharacter(
  9143. { name: "Lykonous" },
  9144. {
  9145. kaiju: {
  9146. height: math.unit(1.75, "meters"),
  9147. weight: math.unit(55, "kg"),
  9148. name: "Kaiju",
  9149. image: {
  9150. source: "./media/characters/lykonous/kaiju.svg",
  9151. extra: 1055/946 ,
  9152. bottom: 0.135
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Normal",
  9159. height: math.unit(2.5, "meters"),
  9160. default: true
  9161. },
  9162. {
  9163. name: "Kaiju Dragon",
  9164. height: math.unit(60, "meters")
  9165. },
  9166. {
  9167. name: "Mega Kaiju",
  9168. height: math.unit(120, "km")
  9169. },
  9170. {
  9171. name: "Giga Kaiju",
  9172. height: math.unit(200, "megameters")
  9173. },
  9174. {
  9175. name: "Terra Kaiju",
  9176. height: math.unit(400, "gigameters")
  9177. },
  9178. {
  9179. name: "Kaiju Dragon God",
  9180. height: math.unit(13000, "exaparsecs")
  9181. },
  9182. ]
  9183. )
  9184. };
  9185. characterMakers["Blü"] = () => {
  9186. return makeCharacter(
  9187. { name: "Blü" },
  9188. {
  9189. front: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(150, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/blü/front.svg",
  9195. extra: 1883/1564 ,
  9196. bottom: 0.031
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(13, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Big Boi",
  9208. height: math.unit(150, "meters")
  9209. },
  9210. {
  9211. name: "Mini Stomper",
  9212. height: math.unit(300, "meters")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(1000, "meters")
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(11000, "meters")
  9221. },
  9222. {
  9223. name: "Gigamacro",
  9224. height: math.unit(11000, "km")
  9225. },
  9226. {
  9227. name: "Teramacro",
  9228. height: math.unit(420000, "km")
  9229. },
  9230. {
  9231. name: "Examacro",
  9232. height: math.unit(120, "parsecs")
  9233. },
  9234. {
  9235. name: "God Tho",
  9236. height: math.unit(98000000000, "parsecs")
  9237. },
  9238. ]
  9239. )
  9240. };
  9241. characterMakers["Scales"] = () => {
  9242. return makeCharacter(
  9243. { name: "Scales" },
  9244. {
  9245. taurFront: {
  9246. height: math.unit(6, "feet"),
  9247. weight: math.unit(200, "lb"),
  9248. name: "Taur (Front)",
  9249. image: {
  9250. source: "./media/characters/scales/taur-front.svg",
  9251. extra: 1,
  9252. bottom: 0.05
  9253. }
  9254. },
  9255. taurBack: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(200, "lb"),
  9258. name: "Taur (Back)",
  9259. image: {
  9260. source: "./media/characters/scales/taur-back.svg",
  9261. extra: 1,
  9262. bottom: 0.08
  9263. }
  9264. },
  9265. anthro: {
  9266. height: math.unit(6*7/12, "feet"),
  9267. weight: math.unit(100, "lb"),
  9268. name: "Anthro",
  9269. image: {
  9270. source: "./media/characters/scales/anthro.svg",
  9271. extra: 1,
  9272. bottom: 0.06
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(12, "feet"),
  9280. default: true
  9281. },
  9282. ]
  9283. )
  9284. };
  9285. characterMakers["Koragos"] = () => {
  9286. return makeCharacter(
  9287. { name: "Koragos" },
  9288. {
  9289. front: {
  9290. height: math.unit(6, "feet"),
  9291. weight: math.unit(150, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/koragos/front.svg",
  9295. extra: 841/794 ,
  9296. bottom: 0.035
  9297. }
  9298. },
  9299. back: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(150, "lb"),
  9302. name: "Back",
  9303. image: {
  9304. source: "./media/characters/koragos/back.svg",
  9305. extra: 841/810 ,
  9306. bottom: 0.022
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(6 + 11/12, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(490, "feet")
  9319. },
  9320. {
  9321. name: "Megamacro",
  9322. height: math.unit(10, "miles")
  9323. },
  9324. {
  9325. name: "Gigamacro",
  9326. height: math.unit(50, "miles")
  9327. },
  9328. ]
  9329. )
  9330. };
  9331. characterMakers["Xylrem"] = () => {
  9332. return makeCharacter(
  9333. { name: "Xylrem" },
  9334. {
  9335. front: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(250, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/xylrem/front.svg",
  9341. extra: 3323/3050 ,
  9342. bottom: 0.065
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(4, "feet")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(16, "feet"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Macro",
  9358. height: math.unit(2720, "feet")
  9359. },
  9360. {
  9361. name: "Megamacro",
  9362. height: math.unit(25000, "miles")
  9363. },
  9364. ]
  9365. )
  9366. };
  9367. characterMakers["Ikideru"] = () => {
  9368. return makeCharacter(
  9369. { name: "Ikideru" },
  9370. {
  9371. front: {
  9372. height: math.unit(8, "feet"),
  9373. weight: math.unit(250, "kg"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/ikideru/front.svg",
  9377. extra: 930/870 ,
  9378. bottom: 0.087
  9379. }
  9380. },
  9381. back: {
  9382. height: math.unit(8, "feet"),
  9383. weight: math.unit(250, "kg"),
  9384. name: "Back",
  9385. image: {
  9386. source: "./media/characters/ikideru/back.svg",
  9387. extra: 919/852 ,
  9388. bottom: 0.055
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Rare",
  9395. height: math.unit(8, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Playful Loom",
  9400. height: math.unit(80, "feet")
  9401. },
  9402. {
  9403. name: "City Leaner",
  9404. height: math.unit(230, "feet")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(2500, "feet")
  9409. },
  9410. {
  9411. name: "Gigamacro",
  9412. height: math.unit(26400, "feet")
  9413. },
  9414. {
  9415. name: "Tectonic Shifter",
  9416. height: math.unit(1.7, "megameters")
  9417. },
  9418. {
  9419. name: "Planet Carer",
  9420. height: math.unit(21, "megameters")
  9421. },
  9422. {
  9423. name: "God",
  9424. height: math.unit(11157.22, "parsecs")
  9425. },
  9426. ]
  9427. )
  9428. };
  9429. characterMakers["Neo"] = () => {
  9430. return makeCharacter(
  9431. { name: "Neo" },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(120, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/neo/front.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(2, "inches"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Human Size",
  9450. height: math.unit(5 + 8/12, "feet")
  9451. },
  9452. ]
  9453. )
  9454. };
  9455. characterMakers["Chauncey (Chantz)"] = () => {
  9456. return makeCharacter(
  9457. { name: "Chauncey (Chantz)" },
  9458. {
  9459. front: {
  9460. height: math.unit(13 + 10/12, "feet"),
  9461. weight: math.unit(5320, "lb"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/chauncey-chantz/front.svg",
  9465. extra: 1587/1435 ,
  9466. bottom: 0.02
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(13 + 10/12, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Macro",
  9478. height: math.unit(45, "feet")
  9479. },
  9480. {
  9481. name: "Megamacro",
  9482. height: math.unit(250, "miles")
  9483. },
  9484. {
  9485. name: "Planetary",
  9486. height: math.unit(10000, "miles")
  9487. },
  9488. {
  9489. name: "Galactic",
  9490. height: math.unit(40000, "parsecs")
  9491. },
  9492. {
  9493. name: "Universal",
  9494. height: math.unit(1, "yottameter")
  9495. },
  9496. ]
  9497. )
  9498. };
  9499. characterMakers["Epifox"] = () => {
  9500. return makeCharacter(
  9501. { name: "Epifox" },
  9502. {
  9503. front: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(150, "lb"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/epifox/front.svg",
  9509. extra: 1,
  9510. bottom: 0.075
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(6, "inches")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(12, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Macro",
  9526. height: math.unit(3810, "feet")
  9527. },
  9528. {
  9529. name: "Megamacro",
  9530. height: math.unit(500, "miles")
  9531. },
  9532. ]
  9533. )
  9534. };
  9535. characterMakers["Colin T."] = () => {
  9536. return makeCharacter(
  9537. { name: "Colin T." },
  9538. {
  9539. front: {
  9540. height: math.unit(1.8796, "m"),
  9541. weight: math.unit(230, "lb"),
  9542. name: "Front",
  9543. image: {
  9544. source: "./media/characters/colin-t/front.svg",
  9545. extra: 1272/1193 ,
  9546. bottom: 0.07
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Micro",
  9553. height: math.unit(0.571, "meters")
  9554. },
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(1.8796, "meters"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Tall",
  9562. height: math.unit(4, "meters")
  9563. },
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(67.241, "meters")
  9567. },
  9568. {
  9569. name: "Megamacro",
  9570. height: math.unit(371.856, "meters")
  9571. },
  9572. {
  9573. name: "Planetary",
  9574. height: math.unit(12631.5689, "km")
  9575. },
  9576. ]
  9577. )
  9578. };
  9579. characterMakers["Matvei"] = () => {
  9580. return makeCharacter(
  9581. { name: "Matvei" },
  9582. {
  9583. front: {
  9584. height: math.unit(1.85, "meters"),
  9585. weight: math.unit(80, "kg"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/matvei/front.svg",
  9589. extra: 614/594 ,
  9590. bottom: 0.01
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(1.85, "meters"),
  9598. default: true
  9599. },
  9600. ]
  9601. )
  9602. };
  9603. characterMakers["Quincy"] = () => {
  9604. return makeCharacter(
  9605. { name: "Quincy" },
  9606. {
  9607. front: {
  9608. height: math.unit(5 + 9/12, "feet"),
  9609. weight: math.unit(70, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/quincy/front.svg",
  9613. extra: 3041/2751
  9614. }
  9615. },
  9616. back: {
  9617. height: math.unit(5 + 9/12, "feet"),
  9618. weight: math.unit(70, "lb"),
  9619. name: "Back",
  9620. image: {
  9621. source: "./media/characters/quincy/back.svg",
  9622. extra: 3041/2751
  9623. }
  9624. },
  9625. flying: {
  9626. height: math.unit(5 + 4/12, "feet"),
  9627. weight: math.unit(70, "lb"),
  9628. name: "Flying",
  9629. image: {
  9630. source: "./media/characters/quincy/flying.svg",
  9631. extra: 1044/930
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Micro",
  9638. height: math.unit(3, "cm")
  9639. },
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5 + 9/12, "feet")
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(200, "meters"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Megamacro",
  9651. height: math.unit(1000, "meters")
  9652. },
  9653. ]
  9654. )
  9655. };
  9656. characterMakers["Vanrel"] = () => {
  9657. return makeCharacter(
  9658. { name: "Vanrel" },
  9659. {
  9660. front: {
  9661. height: math.unit(4 + 7/12, "feet"),
  9662. weight: math.unit(150, "lb"),
  9663. name: "Front",
  9664. image: {
  9665. source: "./media/characters/vanrel/front.svg",
  9666. extra: 1,
  9667. bottom: 0.02
  9668. }
  9669. },
  9670. side: {
  9671. height: math.unit(4 + 7/12, "feet"),
  9672. weight: math.unit(150, "lb"),
  9673. name: "Side",
  9674. image: {
  9675. source: "./media/characters/vanrel/side.svg",
  9676. extra: 1,
  9677. bottom: 0.025
  9678. }
  9679. },
  9680. tome: {
  9681. height: math.unit(1.35, "feet"),
  9682. weight: math.unit(10, "lb"),
  9683. name: "Vanrel's Tome",
  9684. rename: true,
  9685. image: {
  9686. source: "./media/characters/vanrel/tome.svg"
  9687. }
  9688. },
  9689. beans: {
  9690. height: math.unit(0.89, "feet"),
  9691. name: "Beans",
  9692. image: {
  9693. source: "./media/characters/vanrel/beans.svg"
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(4 + 7/12, "feet"),
  9701. default: true
  9702. },
  9703. ]
  9704. )
  9705. };
  9706. characterMakers["Kuiper Vanrel"] = () => {
  9707. return makeCharacter(
  9708. { name: "Kuiper Vanrel" },
  9709. {
  9710. front: {
  9711. height: math.unit(7 + 5/12, "feet"),
  9712. weight: math.unit(150, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/kuiper-vanrel/front.svg",
  9716. extra: 1118/1068 ,
  9717. bottom: 0.09
  9718. }
  9719. },
  9720. foot: {
  9721. height: math.unit(0.55, "meters"),
  9722. name: "Foot",
  9723. image: {
  9724. source: "./media/characters/kuiper-vanrel/foot.svg",
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(7 + 5/12, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. )
  9736. };
  9737. characterMakers["Keset Vanrel"] = () => {
  9738. return makeCharacter(
  9739. { name: "Keset Vanrel" },
  9740. {
  9741. front: {
  9742. height: math.unit(8 + 5/12, "feet"),
  9743. weight: math.unit(150, "lb"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/keset-vanrel/front.svg",
  9747. extra: 1150/1084 ,
  9748. bottom: 0.05
  9749. }
  9750. },
  9751. hand: {
  9752. height: math.unit(0.6, "meters"),
  9753. name: "Hand",
  9754. image: {
  9755. source: "./media/characters/keset-vanrel/hand.svg"
  9756. }
  9757. },
  9758. foot: {
  9759. height: math.unit(0.94978, "meters"),
  9760. name: "Foot",
  9761. image: {
  9762. source: "./media/characters/keset-vanrel/foot.svg"
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(8 + 5/12, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. )
  9774. };
  9775. characterMakers["Neos"] = () => {
  9776. return makeCharacter(
  9777. { name: "Neos" },
  9778. {
  9779. front: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(150, "lb"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/neos/front.svg",
  9785. extra: 1696/992 ,
  9786. bottom: 0.14
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(54, "cm"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Macro",
  9798. height: math.unit(100, "m")
  9799. },
  9800. {
  9801. name: "Megamacro",
  9802. height: math.unit(10, "km")
  9803. },
  9804. {
  9805. name: "Megamacro+",
  9806. height: math.unit(100, "km")
  9807. },
  9808. {
  9809. name: "Gigamacro",
  9810. height: math.unit(100, "Mm")
  9811. },
  9812. {
  9813. name: "Teramacro",
  9814. height: math.unit(100, "Gm")
  9815. },
  9816. {
  9817. name: "Examacro",
  9818. height: math.unit(100, "Em")
  9819. },
  9820. {
  9821. name: "Godly",
  9822. height: math.unit(10000, "Ym")
  9823. },
  9824. {
  9825. name: "Beyond Godly",
  9826. height: math.unit(10000000, "Ym")
  9827. },
  9828. ]
  9829. )
  9830. };
  9831. characterMakers["Sammy Mouse"] = () => {
  9832. return makeCharacter(
  9833. { name: "Sammy Mouse" },
  9834. {
  9835. feminine: {
  9836. height: math.unit(5, "feet"),
  9837. weight: math.unit(100, "lb"),
  9838. name: "Feminine",
  9839. image: {
  9840. source: "./media/characters/sammy-mouse/feminine.svg",
  9841. extra: 2526/2425 ,
  9842. bottom: 0.123
  9843. }
  9844. },
  9845. masculine: {
  9846. height: math.unit(5, "feet"),
  9847. weight: math.unit(100, "lb"),
  9848. name: "Masculine",
  9849. image: {
  9850. source: "./media/characters/sammy-mouse/masculine.svg",
  9851. extra: 2526/2425 ,
  9852. bottom: 0.123
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Micro",
  9859. height: math.unit(5, "inches")
  9860. },
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(5, "feet"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Macro",
  9868. height: math.unit(60, "feet")
  9869. },
  9870. ]
  9871. )
  9872. };
  9873. characterMakers["Kole"] = () => {
  9874. return makeCharacter(
  9875. { name: "Kole" },
  9876. {
  9877. front: {
  9878. height: math.unit(4, "feet"),
  9879. weight: math.unit(50, "lb"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/kole/front.svg",
  9883. extra: 1423/1303 ,
  9884. bottom: 0.025
  9885. }
  9886. },
  9887. back: {
  9888. height: math.unit(4, "feet"),
  9889. weight: math.unit(50, "lb"),
  9890. name: "Back",
  9891. image: {
  9892. source: "./media/characters/kole/back.svg",
  9893. extra: 1426/1280 ,
  9894. bottom: 0.02
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(4, "feet"),
  9902. default: true
  9903. },
  9904. ]
  9905. )
  9906. };
  9907. characterMakers["Rufran"] = () => {
  9908. return makeCharacter(
  9909. { name: "Rufran" },
  9910. {
  9911. front: {
  9912. height: math.unit(2 + 6/12, "feet"),
  9913. weight: math.unit(20, "lb"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/rufran/front.svg",
  9917. extra: 2041/1839 ,
  9918. bottom: 0.055
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(2 + 6/12, "feet"),
  9923. weight: math.unit(20, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/rufran/back.svg",
  9927. extra: 2054/1839 ,
  9928. bottom: 0.01
  9929. }
  9930. },
  9931. hand: {
  9932. height: math.unit(0.2166, "meters"),
  9933. name: "Hand",
  9934. image: {
  9935. source: "./media/characters/rufran/hand.svg"
  9936. }
  9937. },
  9938. foot: {
  9939. height: math.unit(0.185, "meters"),
  9940. name: "Foot",
  9941. image: {
  9942. source: "./media/characters/rufran/foot.svg"
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(1, "inch")
  9950. },
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(2 + 6/12, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Big",
  9958. height: math.unit(60, "feet")
  9959. },
  9960. {
  9961. name: "Macro",
  9962. height: math.unit(325, "feet")
  9963. },
  9964. ]
  9965. )
  9966. };
  9967. characterMakers["Chip"] = () => {
  9968. return makeCharacter(
  9969. { name: "Chip" },
  9970. {
  9971. front: {
  9972. height: math.unit(0.3, "meters"),
  9973. weight: math.unit(3.5, "kg"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/chip/front.svg",
  9977. extra: 748/674
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Micro",
  9984. height: math.unit(1, "inch"),
  9985. default: true
  9986. },
  9987. ]
  9988. )
  9989. };
  9990. characterMakers["Torvid"] = () => {
  9991. return makeCharacter(
  9992. { name: "Torvid" },
  9993. {
  9994. side: {
  9995. height: math.unit(2.3, "meters"),
  9996. weight: math.unit(3500, "lb"),
  9997. name: "Side",
  9998. image: {
  9999. source: "./media/characters/torvid/side.svg",
  10000. extra: 1972/722 ,
  10001. bottom: 0.035
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(2.3, "meters"),
  10009. default: true
  10010. },
  10011. ]
  10012. )
  10013. };
  10014. characterMakers["Susan"] = () => {
  10015. return makeCharacter(
  10016. { name: "Susan" },
  10017. {
  10018. front: {
  10019. height: math.unit(2, "meters"),
  10020. weight: math.unit(150.5, "kg"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/susan/front.svg",
  10024. extra: 693/635 ,
  10025. bottom: 0.05
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(505, "miles"),
  10033. default: true
  10034. },
  10035. ]
  10036. )
  10037. };
  10038. characterMakers["Raindrops"] = () => {
  10039. return makeCharacter(
  10040. { name: "Raindrops" },
  10041. {
  10042. front: {
  10043. height: math.unit(6, "feet"),
  10044. weight: math.unit(150, "lb"),
  10045. name: "Front",
  10046. image: {
  10047. source: "./media/characters/raindrops/front.svg",
  10048. extra: 2655/2461 ,
  10049. bottom: 0.02
  10050. }
  10051. },
  10052. back: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(150, "lb"),
  10055. name: "Back",
  10056. image: {
  10057. source: "./media/characters/raindrops/back.svg",
  10058. extra: 2574/2400 ,
  10059. bottom: 0.03
  10060. }
  10061. },
  10062. },
  10063. [
  10064. {
  10065. name: "Micro",
  10066. height: math.unit(6, "inches")
  10067. },
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(6 + 2/12, "feet")
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(131, "feet"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(15, "miles")
  10080. },
  10081. {
  10082. name: "Gigamacro",
  10083. height: math.unit(4000, "miles")
  10084. },
  10085. {
  10086. name: "Teramacro",
  10087. height: math.unit(315000, "miles")
  10088. },
  10089. ]
  10090. )
  10091. };
  10092. characterMakers["Tezwa"] = () => {
  10093. return makeCharacter(
  10094. { name: "Tezwa" },
  10095. {
  10096. front: {
  10097. height: math.unit(2.794, "meters"),
  10098. weight: math.unit(325, "kg"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/tezwa/front.svg",
  10102. extra: 2083/1906 ,
  10103. bottom: 0.031
  10104. }
  10105. },
  10106. foot: {
  10107. height: math.unit(0.687, "meters"),
  10108. name: "Foot",
  10109. image: {
  10110. source: "./media/characters/tezwa/foot.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(9 + 2/12, "feet"),
  10118. default: true
  10119. },
  10120. ]
  10121. )
  10122. };
  10123. characterMakers["Typhus"] = () => {
  10124. return makeCharacter(
  10125. { name: "Typhus" },
  10126. {
  10127. front: {
  10128. height: math.unit(58, "feet"),
  10129. weight: math.unit(89000, "lb"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/typhus/front.svg",
  10133. extra: 816/800 ,
  10134. bottom: 0.065
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Macro",
  10141. height: math.unit(58, "feet"),
  10142. default: true
  10143. },
  10144. ]
  10145. )
  10146. };
  10147. characterMakers["Lyra Von Wulf"] = () => {
  10148. return makeCharacter(
  10149. { name: "Lyra Von Wulf" },
  10150. {
  10151. front: {
  10152. height: math.unit(12, "feet"),
  10153. weight: math.unit(6, "tonnes"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/lyra-von-wulf/front.svg",
  10157. extra: 1,
  10158. bottom: 0.10
  10159. }
  10160. },
  10161. frontMecha: {
  10162. height: math.unit(12, "feet"),
  10163. weight: math.unit(12, "tonnes"),
  10164. name: "Front (Mecha)",
  10165. image: {
  10166. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10167. extra: 1,
  10168. bottom: 0.042
  10169. }
  10170. },
  10171. maw: {
  10172. height: math.unit(2.2, "feet"),
  10173. name: "Maw",
  10174. image: {
  10175. source: "./media/characters/lyra-von-wulf/maw.svg"
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(12, "feet"),
  10183. default: true
  10184. },
  10185. {
  10186. name: "Classic",
  10187. height: math.unit(50, "feet")
  10188. },
  10189. {
  10190. name: "Macro",
  10191. height: math.unit(500, "feet")
  10192. },
  10193. {
  10194. name: "Megamacro",
  10195. height: math.unit(1, "mile")
  10196. },
  10197. {
  10198. name: "Gigamacro",
  10199. height: math.unit(400, "miles")
  10200. },
  10201. {
  10202. name: "Teramacro",
  10203. height: math.unit(22000, "miles")
  10204. },
  10205. {
  10206. name: "Solarmacro",
  10207. height: math.unit(8600000, "miles")
  10208. },
  10209. {
  10210. name: "Galactic",
  10211. height: math.unit(1057000, "lightyears")
  10212. },
  10213. ]
  10214. )
  10215. };
  10216. characterMakers["Dixon"] = () => {
  10217. return makeCharacter(
  10218. { name: "Dixon" },
  10219. {
  10220. front: {
  10221. height: math.unit(6 + 10/12, "feet"),
  10222. weight: math.unit(150, "lb"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/dixon/front.svg",
  10226. extra: 3361/3209 ,
  10227. bottom: 0.01
  10228. }
  10229. },
  10230. },
  10231. [
  10232. {
  10233. name: "Normal",
  10234. height: math.unit(6 + 10/12, "feet"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "Big",
  10239. height: math.unit(12, "meters")
  10240. },
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(500, "meters")
  10244. },
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(2, "km")
  10248. },
  10249. ]
  10250. )
  10251. };
  10252. characterMakers["Kauko"] = () => {
  10253. return makeCharacter(
  10254. { name: "Kauko" },
  10255. {
  10256. front: {
  10257. height: math.unit(185, "cm"),
  10258. weight: math.unit(68, "kg"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/kauko/front.svg",
  10262. extra: 1455/1421 ,
  10263. bottom: 0.03
  10264. }
  10265. },
  10266. back: {
  10267. height: math.unit(185, "cm"),
  10268. weight: math.unit(68, "kg"),
  10269. name: "Back",
  10270. image: {
  10271. source: "./media/characters/kauko/back.svg",
  10272. extra: 1455/1421 ,
  10273. bottom: 0.004
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(185, "cm"),
  10281. default: true
  10282. },
  10283. ]
  10284. )
  10285. };
  10286. characterMakers["Varg"] = () => {
  10287. return makeCharacter(
  10288. { name: "Varg" },
  10289. {
  10290. front: {
  10291. height: math.unit(6, "feet"),
  10292. weight: math.unit(150, "kg"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/varg/front.svg",
  10296. extra: 1108/1018 ,
  10297. bottom: 0.0375
  10298. }
  10299. },
  10300. },
  10301. [
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(5, "meters")
  10305. },
  10306. {
  10307. name: "Gigamacro",
  10308. height: math.unit(211, "km"),
  10309. default: true
  10310. },
  10311. ]
  10312. )
  10313. };
  10314. characterMakers["Dayza"] = () => {
  10315. return makeCharacter(
  10316. { name: "Dayza" },
  10317. {
  10318. front: {
  10319. height: math.unit(7 + 7/12, "feet"),
  10320. weight: math.unit(267, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/dayza/front.svg",
  10324. extra: 1262/1200 ,
  10325. bottom: 0.035
  10326. }
  10327. },
  10328. side: {
  10329. height: math.unit(7 + 7/12, "feet"),
  10330. weight: math.unit(267, "lb"),
  10331. name: "Side",
  10332. image: {
  10333. source: "./media/characters/dayza/side.svg",
  10334. extra: 1295/1245 ,
  10335. bottom: 0.05
  10336. }
  10337. },
  10338. back: {
  10339. height: math.unit(7 + 7/12, "feet"),
  10340. weight: math.unit(267, "lb"),
  10341. name: "Back",
  10342. image: {
  10343. source: "./media/characters/dayza/back.svg",
  10344. extra: 1241/1170
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(7 + 7/12, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(155, "feet")
  10357. },
  10358. ]
  10359. )
  10360. };
  10361. characterMakers["Xanthos"] = () => {
  10362. return makeCharacter(
  10363. { name: "Xanthos" },
  10364. {
  10365. front: {
  10366. height: math.unit(6 + 5/12, "feet"),
  10367. weight: math.unit(160, "lb"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/xanthos/front.svg",
  10371. extra: 1,
  10372. bottom: 0.04
  10373. }
  10374. },
  10375. back: {
  10376. height: math.unit(6 + 5/12, "feet"),
  10377. weight: math.unit(160, "lb"),
  10378. name: "Back",
  10379. image: {
  10380. source: "./media/characters/xanthos/back.svg",
  10381. extra: 1,
  10382. bottom: 0.03
  10383. }
  10384. },
  10385. hand: {
  10386. height: math.unit(0.928, "feet"),
  10387. name: "Hand",
  10388. image: {
  10389. source: "./media/characters/xanthos/hand.svg"
  10390. }
  10391. },
  10392. foot: {
  10393. height: math.unit(1.286, "feet"),
  10394. name: "Foot",
  10395. image: {
  10396. source: "./media/characters/xanthos/foot.svg"
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(6 + 5/12, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Normal+",
  10408. height: math.unit(6, "meters")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(40, "feet")
  10413. },
  10414. {
  10415. name: "Macro+",
  10416. height: math.unit(200, "meters")
  10417. },
  10418. {
  10419. name: "Megamacro",
  10420. height: math.unit(20, "km")
  10421. },
  10422. {
  10423. name: "Megamacro+",
  10424. height: math.unit(100, "km")
  10425. },
  10426. ]
  10427. )
  10428. };
  10429. characterMakers["Grynn"] = () => {
  10430. return makeCharacter(
  10431. { name: "Grynn" },
  10432. {
  10433. front: {
  10434. height: math.unit(6 + 3/12, "feet"),
  10435. weight: math.unit(215, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/grynn/front.svg",
  10439. extra: 4627/4209 ,
  10440. bottom: 0.047
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Micro",
  10447. height: math.unit(6, "inches")
  10448. },
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(6 + 3/12, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Big",
  10456. height: math.unit(104, "feet")
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(944, "feet")
  10461. },
  10462. {
  10463. name: "Macro+",
  10464. height: math.unit(9480, "feet")
  10465. },
  10466. {
  10467. name: "Megamacro",
  10468. height: math.unit(78752, "feet")
  10469. },
  10470. {
  10471. name: "Megamacro+",
  10472. height: math.unit(630128, "feet")
  10473. },
  10474. {
  10475. name: "Megamacro++",
  10476. height: math.unit(3150695, "feet")
  10477. },
  10478. ]
  10479. )
  10480. };
  10481. characterMakers["Mocha Aura"] = () => {
  10482. return makeCharacter(
  10483. { name: "Mocha Aura" },
  10484. {
  10485. front: {
  10486. height: math.unit(7 + 5/12, "feet"),
  10487. weight: math.unit(450, "lb"),
  10488. name: "Front",
  10489. image: {
  10490. source: "./media/characters/mocha-aura/front.svg",
  10491. extra: 1907/1817 ,
  10492. bottom: 0.04
  10493. }
  10494. },
  10495. back: {
  10496. height: math.unit(7 + 5/12, "feet"),
  10497. weight: math.unit(450, "lb"),
  10498. name: "Back",
  10499. image: {
  10500. source: "./media/characters/mocha-aura/back.svg",
  10501. extra: 1900/1825 ,
  10502. bottom: 0.045
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Nano",
  10509. height: math.unit(1, "nm")
  10510. },
  10511. {
  10512. name: "Megamicro",
  10513. height: math.unit(1, "mm")
  10514. },
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(3, "inches")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(7 + 5/12, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(30, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(3500, "feet")
  10531. },
  10532. {
  10533. name: "Teramacro",
  10534. height: math.unit(500000, "miles")
  10535. },
  10536. {
  10537. name: "Petamacro",
  10538. height: math.unit(50000000000000000 , "parsecs")
  10539. },
  10540. ]
  10541. )
  10542. };
  10543. characterMakers["Ilisha Devya"] = () => {
  10544. return makeCharacter(
  10545. { name: "Ilisha Devya" },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(150, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/ilisha-devya/front.svg",
  10553. extra: 1,
  10554. bottom: 0.175
  10555. }
  10556. },
  10557. back: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(150, "lb"),
  10560. name: "Back",
  10561. image: {
  10562. source: "./media/characters/ilisha-devya/back.svg",
  10563. extra: 1,
  10564. bottom: 0.015
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Macro",
  10571. height: math.unit(500, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Megamacro",
  10576. height: math.unit(10, "miles")
  10577. },
  10578. {
  10579. name: "Gigamacro",
  10580. height: math.unit(100000, "miles")
  10581. },
  10582. {
  10583. name: "Examacro",
  10584. height: math.unit(1e9, "lightyears")
  10585. },
  10586. {
  10587. name: "Omniversal",
  10588. height: math.unit(1e33, "lightyears")
  10589. },
  10590. {
  10591. name: "Beyond Infinite",
  10592. height: math.unit(1e100, "lightyears")
  10593. },
  10594. ]
  10595. )
  10596. };
  10597. characterMakers["Mira"] = () => {
  10598. return makeCharacter(
  10599. { name: "Mira" },
  10600. {
  10601. Side: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(150, "lb"),
  10604. name: "Side",
  10605. image: {
  10606. source: "./media/characters/mira/side.svg",
  10607. extra: 900/799 ,
  10608. bottom: 0.02
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Human Size",
  10615. height: math.unit(6, "feet")
  10616. },
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(100, "feet"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Megamacro",
  10624. height: math.unit(10, "miles")
  10625. },
  10626. {
  10627. name: "Gigamacro",
  10628. height: math.unit(25000, "miles")
  10629. },
  10630. {
  10631. name: "Teramacro",
  10632. height: math.unit(300, "AU")
  10633. },
  10634. {
  10635. name: "Full Size",
  10636. height: math.unit(4.5e10, "lightyears")
  10637. },
  10638. ]
  10639. )
  10640. };
  10641. characterMakers["Holly"] = () => {
  10642. return makeCharacter(
  10643. { name: "Holly" },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/holly/front.svg",
  10651. extra: 639/606
  10652. }
  10653. },
  10654. back: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(150, "lb"),
  10657. name: "Back",
  10658. image: {
  10659. source: "./media/characters/holly/back.svg",
  10660. extra: 623/598
  10661. }
  10662. },
  10663. frontWorking: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Front (Working)",
  10667. image: {
  10668. source: "./media/characters/holly/front-working.svg",
  10669. extra: 607/577 ,
  10670. bottom: 0.048
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(12 + 3/12, "feet"),
  10678. default: true
  10679. },
  10680. ]
  10681. )
  10682. };
  10683. characterMakers["Porter"] = () => {
  10684. return makeCharacter(
  10685. { name: "Porter" },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/porter/front.svg",
  10693. extra: 1,
  10694. bottom: 0.01
  10695. }
  10696. },
  10697. frontRobes: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front (Robes)",
  10701. image: {
  10702. source: "./media/characters/porter/front-robes.svg",
  10703. extra: 1.01 ,
  10704. bottom: 0.01
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(11 + 9/12, "feet"),
  10712. default: true
  10713. },
  10714. ]
  10715. )
  10716. };
  10717. characterMakers["Lucy"] = () => {
  10718. return makeCharacter(
  10719. { name: "Lucy" },
  10720. {
  10721. legendary: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Legendary",
  10725. image: {
  10726. source: "./media/characters/lucy/legendary.svg",
  10727. extra: 1355/1100 ,
  10728. bottom: 0.045
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Legendary",
  10735. height: math.unit(86882*2, "miles"),
  10736. default: true
  10737. },
  10738. ]
  10739. )
  10740. };
  10741. characterMakers["Drusilla"] = () => {
  10742. return makeCharacter(
  10743. { name: "Drusilla" },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/drusilla/front.svg",
  10751. extra: 678/635 ,
  10752. bottom: 0.03
  10753. }
  10754. },
  10755. back: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(150, "lb"),
  10758. name: "Back",
  10759. image: {
  10760. source: "./media/characters/drusilla/back.svg",
  10761. extra: 678/635 ,
  10762. bottom: 0.005
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(100, "feet")
  10770. },
  10771. {
  10772. name: "Canon Height",
  10773. height: math.unit(2000, "feet"),
  10774. default: true
  10775. },
  10776. ]
  10777. )
  10778. };
  10779. characterMakers["Renard Thatch"] = () => {
  10780. return makeCharacter(
  10781. { name: "Renard Thatch" },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(180, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/renard-thatch/front.svg",
  10789. extra: 2411/2275 ,
  10790. bottom: 0.01
  10791. }
  10792. },
  10793. frontPosing: {
  10794. height: math.unit(6, "feet"),
  10795. weight: math.unit(180, "lb"),
  10796. name: "Front (Posing)",
  10797. image: {
  10798. source: "./media/characters/renard-thatch/front-posing.svg",
  10799. extra: 2381/2261 ,
  10800. bottom: 0.01
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(180, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/renard-thatch/back.svg",
  10809. extra: 2428/2288
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Micro",
  10816. height: math.unit(3, "inches")
  10817. },
  10818. {
  10819. name: "Default",
  10820. height: math.unit(6, "feet"),
  10821. default: true
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(75, "feet")
  10826. },
  10827. ]
  10828. )
  10829. };
  10830. characterMakers["Sekvra"] = () => {
  10831. return makeCharacter(
  10832. { name: "Sekvra" },
  10833. {
  10834. front: {
  10835. height: math.unit(1450, "feet"),
  10836. weight: math.unit(1.21e6, "tons"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/sekvra/front.svg",
  10840. extra: 1,
  10841. bottom: 0.03
  10842. }
  10843. },
  10844. frontClothed: {
  10845. height: math.unit(1450, "feet"),
  10846. weight: math.unit(1.21e6, "tons"),
  10847. name: "Front (Clothed)",
  10848. image: {
  10849. source: "./media/characters/sekvra/front-clothed.svg",
  10850. extra: 1,
  10851. bottom: 0.03
  10852. }
  10853. },
  10854. side: {
  10855. height: math.unit(1450, "feet"),
  10856. weight: math.unit(1.21e6, "tons"),
  10857. name: "Side",
  10858. image: {
  10859. source: "./media/characters/sekvra/side.svg",
  10860. extra: 1,
  10861. bottom: 0.025
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(1450, "feet"),
  10866. weight: math.unit(1.21e6, "tons"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/sekvra/back.svg",
  10870. extra: 1,
  10871. bottom: 0.005
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Macro",
  10878. height: math.unit(1450, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(15000, "feet")
  10884. },
  10885. ]
  10886. )
  10887. };
  10888. characterMakers["Carmine"] = () => {
  10889. return makeCharacter(
  10890. { name: "Carmine" },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/carmine/front.svg",
  10898. extra: 1,
  10899. bottom: 0.035
  10900. }
  10901. },
  10902. frontArmor: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(150, "lb"),
  10905. name: "Front (Armor)",
  10906. image: {
  10907. source: "./media/characters/carmine/front-armor.svg",
  10908. extra: 1,
  10909. bottom: 0.035
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Large",
  10916. height: math.unit(1, "mile")
  10917. },
  10918. {
  10919. name: "Huge",
  10920. height: math.unit(40, "miles"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Colossal",
  10925. height: math.unit(2500, "miles")
  10926. },
  10927. ]
  10928. )
  10929. };
  10930. characterMakers["Elyssia"] = () => {
  10931. return makeCharacter(
  10932. { name: "Elyssia" },
  10933. {
  10934. front: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(150, "lb"),
  10937. name: "Front",
  10938. image: {
  10939. source: "./media/characters/elyssia/front.svg",
  10940. extra: 2201/2035 ,
  10941. bottom: 0.05
  10942. }
  10943. },
  10944. frontClothed: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front (Clothed)",
  10948. image: {
  10949. source: "./media/characters/elyssia/front-clothed.svg",
  10950. extra: 2201/2035 ,
  10951. bottom: 0.05
  10952. }
  10953. },
  10954. back: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(150, "lb"),
  10957. name: "Back",
  10958. image: {
  10959. source: "./media/characters/elyssia/back.svg",
  10960. extra: 2201/2035 ,
  10961. bottom: 0.013
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Smaller",
  10968. height: math.unit(150, "feet")
  10969. },
  10970. {
  10971. name: "Standard",
  10972. height: math.unit(1400, "feet"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Distracted",
  10977. height: math.unit(15000, "feet")
  10978. },
  10979. ]
  10980. )
  10981. };
  10982. characterMakers["Geno Maxwell"] = () => {
  10983. return makeCharacter(
  10984. { name: "Geno Maxwell" },
  10985. {
  10986. front: {
  10987. height: math.unit(7 + 4/12, "feet"),
  10988. weight: math.unit(500, "lb"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/geno-maxwell/front.svg",
  10992. extra: 2207/2040 ,
  10993. bottom: 0.015
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(3, "inches")
  11001. },
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(7 + 4/12, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(220, "feet")
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(11, "miles")
  11014. },
  11015. ]
  11016. )
  11017. };
  11018. characterMakers["Regena Maxwell"] = () => {
  11019. return makeCharacter(
  11020. { name: "Regena Maxwell" },
  11021. {
  11022. front: {
  11023. height: math.unit(7 + 4/12, "feet"),
  11024. weight: math.unit(500, "lb"),
  11025. name: "Front",
  11026. image: {
  11027. source: "./media/characters/regena-maxwell/front.svg",
  11028. extra: 3115/2770 ,
  11029. bottom: 0.02
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(7 + 4/12, "feet"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(220, "feet")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(11, "miles")
  11046. },
  11047. ]
  11048. )
  11049. };
  11050. characterMakers["XGlidingDragonX"] = () => {
  11051. return makeCharacter(
  11052. { name: "XGlidingDragonX" },
  11053. {
  11054. front: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(150, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11060. extra: 860/690 ,
  11061. bottom: 0.03
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(1.7, "meters"),
  11069. default: true
  11070. },
  11071. ]
  11072. )
  11073. };
  11074. characterMakers["Quilly"] = () => {
  11075. return makeCharacter(
  11076. { name: "Quilly" },
  11077. {
  11078. front: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(150, "lb"),
  11081. name: "Front",
  11082. image: {
  11083. source: "./media/characters/quilly/front.svg",
  11084. extra: 890/776
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Gigamacro",
  11091. height: math.unit(404090, "miles"),
  11092. default: true
  11093. },
  11094. ]
  11095. )
  11096. };
  11097. characterMakers["Tempest"] = () => {
  11098. return makeCharacter(
  11099. { name: "Tempest" },
  11100. {
  11101. front: {
  11102. height: math.unit(7 + 8/12, "feet"),
  11103. weight: math.unit(350, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/tempest/front.svg",
  11107. extra: 1175/1086 ,
  11108. bottom: 0.02
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(7 + 8/12, "feet"),
  11116. default: true
  11117. },
  11118. ]
  11119. )
  11120. };
  11121. characterMakers["Rodger"] = () => {
  11122. return makeCharacter(
  11123. { name: "Rodger" },
  11124. {
  11125. side: {
  11126. height: math.unit(4 + 5/12, "feet"),
  11127. weight: math.unit(80, "lb"),
  11128. name: "Side",
  11129. image: {
  11130. source: "./media/characters/rodger/side.svg",
  11131. extra: 1235/1118
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Micro",
  11138. height: math.unit(1, "inch")
  11139. },
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(4 + 5/12, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Macro",
  11147. height: math.unit(120, "feet")
  11148. },
  11149. ]
  11150. )
  11151. };
  11152. characterMakers["Danyel"] = () => {
  11153. return makeCharacter(
  11154. { name: "Danyel" },
  11155. {
  11156. front: {
  11157. height: math.unit(6, "feet"),
  11158. weight: math.unit(150, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/danyel/front.svg",
  11162. extra: 1185/1123 ,
  11163. bottom: 0.05
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Shrunken",
  11170. height: math.unit(0.5, "mm")
  11171. },
  11172. {
  11173. name: "Micro",
  11174. height: math.unit(1, "mm"),
  11175. default: true
  11176. },
  11177. {
  11178. name: "Upsized",
  11179. height: math.unit(5 + 5/12, "feet")
  11180. },
  11181. ]
  11182. )
  11183. };
  11184. characterMakers["Vivian Bijoux"] = () => {
  11185. return makeCharacter(
  11186. { name: "Vivian Bijoux" },
  11187. {
  11188. front: {
  11189. height: math.unit(5 + 6/12, "feet"),
  11190. weight: math.unit(200, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/vivian-bijoux/front.svg",
  11194. extra: 1,
  11195. bottom: 0.072
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 6/12, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Bad Dream",
  11207. height: math.unit(500, "feet")
  11208. },
  11209. {
  11210. name: "Nightmare",
  11211. height: math.unit(500, "miles")
  11212. },
  11213. ]
  11214. )
  11215. };
  11216. characterMakers["Zeta"] = () => {
  11217. return makeCharacter(
  11218. { name: "Zeta" },
  11219. {
  11220. front: {
  11221. height: math.unit(6 + 1/12, "feet"),
  11222. weight: math.unit(260, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/zeta/front.svg",
  11226. extra: 1968/1889 ,
  11227. bottom: 0.06
  11228. }
  11229. },
  11230. back: {
  11231. height: math.unit(6 + 1/12, "feet"),
  11232. weight: math.unit(260, "lb"),
  11233. name: "Back",
  11234. image: {
  11235. source: "./media/characters/zeta/back.svg",
  11236. extra: 1944/1858 ,
  11237. bottom: 0.03
  11238. }
  11239. },
  11240. hand: {
  11241. height: math.unit(1.112, "feet"),
  11242. name: "Hand",
  11243. image: {
  11244. source: "./media/characters/zeta/hand.svg"
  11245. }
  11246. },
  11247. foot: {
  11248. height: math.unit(1.48, "feet"),
  11249. name: "Foot",
  11250. image: {
  11251. source: "./media/characters/zeta/foot.svg"
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Micro",
  11258. height: math.unit(6, "inches")
  11259. },
  11260. {
  11261. name: "Normal",
  11262. height: math.unit(6 + 1/12, "feet"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(20, "feet")
  11268. },
  11269. ]
  11270. )
  11271. };
  11272. characterMakers["Jamie Larsen"] = () => {
  11273. return makeCharacter(
  11274. { name: "Jamie Larsen" },
  11275. {
  11276. front: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Front",
  11280. image: {
  11281. source: "./media/characters/jamie-larsen/front.svg",
  11282. extra: 962/933 ,
  11283. bottom: 0.02
  11284. }
  11285. },
  11286. back: {
  11287. height: math.unit(6, "feet"),
  11288. weight: math.unit(150, "lb"),
  11289. name: "Back",
  11290. image: {
  11291. source: "./media/characters/jamie-larsen/back.svg",
  11292. extra: 997/946
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Macro",
  11299. height: math.unit(28 + 7/12, "feet"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Macro+",
  11304. height: math.unit(180, "feet")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(10, "miles")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(200000, "miles")
  11313. },
  11314. ]
  11315. )
  11316. };
  11317. characterMakers["Vance"] = () => {
  11318. return makeCharacter(
  11319. { name: "Vance" },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(120, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/vance/front.svg",
  11327. extra: 1980/1890 ,
  11328. bottom: 0.09
  11329. }
  11330. },
  11331. back: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(120, "lb"),
  11334. name: "Back",
  11335. image: {
  11336. source: "./media/characters/vance/back.svg",
  11337. extra: 2081/1994 ,
  11338. bottom: 0.014
  11339. }
  11340. },
  11341. hand: {
  11342. height: math.unit(0.88, "feet"),
  11343. name: "Hand",
  11344. image: {
  11345. source: "./media/characters/vance/hand.svg"
  11346. }
  11347. },
  11348. foot: {
  11349. height: math.unit(0.64, "feet"),
  11350. name: "Foot",
  11351. image: {
  11352. source: "./media/characters/vance/foot.svg"
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Small",
  11359. height: math.unit(90, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(100, "meters")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(15, "miles")
  11369. },
  11370. ]
  11371. )
  11372. };
  11373. characterMakers["Xochitl"] = () => {
  11374. return makeCharacter(
  11375. { name: "Xochitl" },
  11376. {
  11377. front: {
  11378. height: math.unit(6, "feet"),
  11379. weight: math.unit(180, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/xochitl/front.svg",
  11383. extra: 2297/2261 ,
  11384. bottom: 0.065
  11385. }
  11386. },
  11387. back: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(180, "lb"),
  11390. name: "Back",
  11391. image: {
  11392. source: "./media/characters/xochitl/back.svg",
  11393. extra: 2386/2354 ,
  11394. bottom: 0.01
  11395. }
  11396. },
  11397. foot: {
  11398. height: math.unit(6/5 * 1.15, "feet"),
  11399. weight: math.unit(150, "lb"),
  11400. name: "Foot",
  11401. image: {
  11402. source: "./media/characters/xochitl/foot.svg"
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Macro",
  11409. height: math.unit(80, "feet")
  11410. },
  11411. {
  11412. name: "Macro+",
  11413. height: math.unit(400, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(80000, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro+",
  11422. height: math.unit(400000, "miles")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(300, "AU")
  11427. },
  11428. ]
  11429. )
  11430. };
  11431. characterMakers["Vincent"] = () => {
  11432. return makeCharacter(
  11433. { name: "Vincent" },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/vincent/front.svg",
  11441. extra: 1130/1080 ,
  11442. bottom: 0.055
  11443. }
  11444. },
  11445. beak: {
  11446. height: math.unit(6 * 0.1, "feet"),
  11447. name: "Beak",
  11448. image: {
  11449. source: "./media/characters/vincent/beak.svg"
  11450. }
  11451. },
  11452. hand: {
  11453. height: math.unit(6 * 0.85, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Hand",
  11456. image: {
  11457. source: "./media/characters/vincent/hand.svg"
  11458. }
  11459. },
  11460. foot: {
  11461. height: math.unit(6 * 0.19, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Foot",
  11464. image: {
  11465. source: "./media/characters/vincent/foot.svg"
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Base",
  11472. height: math.unit(6 + 5/12, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(300, "feet")
  11478. },
  11479. {
  11480. name: "Megamacro",
  11481. height: math.unit(2, "miles")
  11482. },
  11483. {
  11484. name: "Gigamacro",
  11485. height: math.unit(1000, "miles")
  11486. },
  11487. ]
  11488. )
  11489. };
  11490. characterMakers["Jay"] = () => {
  11491. return makeCharacter(
  11492. { name: "Jay" },
  11493. {
  11494. front: {
  11495. height: math.unit(6 + 2/12, "feet"),
  11496. weight: math.unit(65, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/jay/front.svg",
  11500. extra: 1510/1430 ,
  11501. bottom: 0.042
  11502. }
  11503. },
  11504. back: {
  11505. height: math.unit(6 + 2/12, "feet"),
  11506. weight: math.unit(65, "lb"),
  11507. name: "Back",
  11508. image: {
  11509. source: "./media/characters/jay/back.svg",
  11510. extra: 1510/1430 ,
  11511. bottom: 0.025
  11512. }
  11513. },
  11514. clothed: {
  11515. height: math.unit(6 + 2/12, "feet"),
  11516. weight: math.unit(65, "lb"),
  11517. name: "Front (Clothed)",
  11518. image: {
  11519. source: "./media/characters/jay/clothed.svg",
  11520. extra: 744/699 ,
  11521. bottom: 0.043
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Micro",
  11528. height: math.unit(1, "inch")
  11529. },
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(6 + 2/12, "feet"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Macro",
  11537. height: math.unit(1, "mile")
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(100, "miles")
  11542. },
  11543. ]
  11544. )
  11545. };
  11546. characterMakers["Coatl"] = () => {
  11547. return makeCharacter(
  11548. { name: "Coatl" },
  11549. {
  11550. front: {
  11551. height: math.unit(2, "meters"),
  11552. weight: math.unit(500 , "kg"),
  11553. name: "Front",
  11554. image: {
  11555. source: "./media/characters/coatl/front.svg",
  11556. extra: 3948 / 3500 ,
  11557. bottom: 0.082
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(4, "meters")
  11565. },
  11566. {
  11567. name: "Macro",
  11568. height: math.unit(100, "meters"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro+",
  11573. height: math.unit(300, "meters")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(3, "gigameters")
  11578. },
  11579. {
  11580. name: "Megamacro+",
  11581. height: math.unit(300, "terameters")
  11582. },
  11583. {
  11584. name: "Megamacro++",
  11585. height: math.unit(3, "lightyears")
  11586. },
  11587. ]
  11588. )
  11589. };
  11590. characterMakers["Shiroryu"] = () => {
  11591. return makeCharacter(
  11592. { name: "Shiroryu" },
  11593. {
  11594. front: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(50, "kg"),
  11597. name: "front",
  11598. image: {
  11599. source: "./media/characters/shiroryu/front.svg",
  11600. extra: 1990/1935
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Mortal Mingling",
  11607. height: math.unit(3, "meters")
  11608. },
  11609. {
  11610. name: "Kaiju-ish",
  11611. height: math.unit(250, "meters")
  11612. },
  11613. {
  11614. name: "Somewhat Godly",
  11615. height: math.unit(400, "km"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Planetary",
  11620. height: math.unit(300, "megameters")
  11621. },
  11622. {
  11623. name: "Galaxy-dwarfing",
  11624. height: math.unit(450, "kiloparsecs")
  11625. },
  11626. {
  11627. name: "Universe Eater",
  11628. height: math.unit(150, "gigaparsecs")
  11629. },
  11630. {
  11631. name: "Almost Immeasurable",
  11632. height: math.unit(1.3e266, "yottaparsecs")
  11633. },
  11634. ]
  11635. )
  11636. };
  11637. characterMakers["Umeko"] = () => {
  11638. return makeCharacter(
  11639. { name: "Umeko" },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/umeko/front.svg",
  11647. extra: 1,
  11648. bottom: 0.019
  11649. }
  11650. },
  11651. frontArmored: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Front (Armored)",
  11655. image: {
  11656. source: "./media/characters/umeko/front-armored.svg",
  11657. extra: 1,
  11658. bottom: 0.021
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Macro",
  11665. height: math.unit(220, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Guardian Dragon",
  11670. height: math.unit(50, "miles")
  11671. },
  11672. {
  11673. name: "Cosmic",
  11674. height: math.unit(800000, "miles")
  11675. },
  11676. ]
  11677. )
  11678. };
  11679. characterMakers["Cassidy"] = () => {
  11680. return makeCharacter(
  11681. { name: "Cassidy" },
  11682. {
  11683. front: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(150, "lb"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/cassidy/front.svg",
  11689. extra: 1,
  11690. bottom: 0.043
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Canon Height",
  11697. height: math.unit(120, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Macro+",
  11702. height: math.unit(400, "feet")
  11703. },
  11704. {
  11705. name: "Macro++",
  11706. height: math.unit(4000, "feet")
  11707. },
  11708. {
  11709. name: "Megamacro",
  11710. height: math.unit(3, "miles")
  11711. },
  11712. ]
  11713. )
  11714. };
  11715. characterMakers["Isaac"] = () => {
  11716. return makeCharacter(
  11717. { name: "Isaac" },
  11718. {
  11719. front: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(150, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/isaac/front.svg",
  11725. extra: 896/815 ,
  11726. bottom: 0.11
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Human Size",
  11733. height: math.unit(8, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(400, "feet")
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(50, "miles")
  11743. },
  11744. {
  11745. name: "Canon Height",
  11746. height: math.unit(200, "AU")
  11747. },
  11748. ]
  11749. )
  11750. };
  11751. characterMakers["Sleekit"] = () => {
  11752. return makeCharacter(
  11753. { name: "Sleekit" },
  11754. {
  11755. front: {
  11756. height: math.unit(6, "feet"),
  11757. weight: math.unit(72, "kg"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/sleekit/front.svg",
  11761. extra: 4693/4487 ,
  11762. bottom: 0.012
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Minimum Height",
  11769. height: math.unit(10, "meters")
  11770. },
  11771. {
  11772. name: "Smaller",
  11773. height: math.unit(25, "meters")
  11774. },
  11775. {
  11776. name: "Larger",
  11777. height: math.unit(38, "meters"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Maximum height",
  11782. height: math.unit(100, "meters")
  11783. },
  11784. ]
  11785. )
  11786. };
  11787. characterMakers["Nillia"] = () => {
  11788. return makeCharacter(
  11789. { name: "Nillia" },
  11790. {
  11791. front: {
  11792. height: math.unit(6, "feet"),
  11793. weight: math.unit(150, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/nillia/front.svg",
  11797. extra: 2195/2037 ,
  11798. bottom: 0.005
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(150, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/nillia/back.svg",
  11807. extra: 2195/2037 ,
  11808. bottom: 0.005
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Canon Height",
  11815. height: math.unit(489, "feet"),
  11816. default: true
  11817. }
  11818. ]
  11819. )
  11820. };
  11821. characterMakers["Mesmyriza"] = () => {
  11822. return makeCharacter(
  11823. { name: "Mesmyriza" },
  11824. {
  11825. front: {
  11826. height: math.unit(6, "feet"),
  11827. weight: math.unit(150, "lb"),
  11828. name: "Front",
  11829. image: {
  11830. source: "./media/characters/mesmyriza/front.svg",
  11831. extra: 2067/1784 ,
  11832. bottom: 0.035
  11833. }
  11834. },
  11835. foot: {
  11836. height: math.unit(6/(250/35), "feet"),
  11837. name: "Foot",
  11838. image: {
  11839. source: "./media/characters/mesmyriza/foot.svg"
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(457, "meters"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(8, "megameters")
  11852. },
  11853. ]
  11854. )
  11855. };
  11856. characterMakers["Saudade"] = () => {
  11857. return makeCharacter(
  11858. { name: "Saudade" },
  11859. {
  11860. front: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(250, "lb"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/saudade/front.svg",
  11866. extra: 1172/1139 ,
  11867. bottom: 0.035
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Micro",
  11874. height: math.unit(3, "inches")
  11875. },
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(6, "feet"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(50, "feet")
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(2800, "feet")
  11888. },
  11889. ]
  11890. )
  11891. };
  11892. characterMakers["Keireer"] = () => {
  11893. return makeCharacter(
  11894. { name: "Keireer" },
  11895. {
  11896. front: {
  11897. height: math.unit(5 + 4/12, "feet"),
  11898. weight: math.unit(100, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/keireer/front.svg",
  11902. extra: 716/666 ,
  11903. bottom: 0.05
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(5 + 4/12, "feet"),
  11911. default: true
  11912. },
  11913. ]
  11914. )
  11915. };
  11916. characterMakers["Mirja"] = () => {
  11917. return makeCharacter(
  11918. { name: "Mirja" },
  11919. {
  11920. front: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(90, "kg"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/mirja/front.svg",
  11926. extra: 1789/1683 ,
  11927. bottom: 0.05
  11928. }
  11929. },
  11930. frontDressed: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(90, "lb"),
  11933. name: "Front (Dressed)",
  11934. image: {
  11935. source: "./media/characters/mirja/front-dressed.svg",
  11936. extra: 1789/1683 ,
  11937. bottom: 0.05
  11938. }
  11939. },
  11940. back: {
  11941. height: math.unit(6, "feet"),
  11942. weight: math.unit(90, "lb"),
  11943. name: "Back",
  11944. image: {
  11945. source: "./media/characters/mirja/back.svg",
  11946. extra: 953/917 ,
  11947. bottom: 0.017
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "\"Incognito\"",
  11954. height: math.unit(3, "meters")
  11955. },
  11956. {
  11957. name: "Strolling Size",
  11958. height: math.unit(15, "km")
  11959. },
  11960. {
  11961. name: "Larger Strolling Size",
  11962. height: math.unit(400, "km")
  11963. },
  11964. {
  11965. name: "Preferred Size",
  11966. height: math.unit(5000, "km")
  11967. },
  11968. {
  11969. name: "True Size",
  11970. height: math.unit(30657809462086840000000000000000, "parsecs"),
  11971. default: true
  11972. },
  11973. ]
  11974. )
  11975. };
  11976. characterMakers["Nightraver"] = () => {
  11977. return makeCharacter(
  11978. { name: "Nightraver" },
  11979. {
  11980. front: {
  11981. height: math.unit(15, "feet"),
  11982. weight: math.unit(880, "kg"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/nightraver/front.svg",
  11986. extra: 2444/2160 ,
  11987. bottom: 0.027
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(15, "feet"),
  11992. weight: math.unit(880, "kg"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/nightraver/back.svg",
  11996. extra: 2309/2180 ,
  11997. bottom: 0.005
  11998. }
  11999. },
  12000. sole: {
  12001. height: math.unit(2.878, "feet"),
  12002. name: "Sole",
  12003. image: {
  12004. source: "./media/characters/nightraver/sole.svg"
  12005. }
  12006. },
  12007. foot: {
  12008. height: math.unit(2.285, "feet"),
  12009. name: "Foot",
  12010. image: {
  12011. source: "./media/characters/nightraver/foot.svg"
  12012. }
  12013. },
  12014. maw: {
  12015. height: math.unit(2.67, "feet"),
  12016. name: "Maw",
  12017. image: {
  12018. source: "./media/characters/nightraver/maw.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Micro",
  12025. height: math.unit(1, "cm")
  12026. },
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(15, "feet"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(300, "feet")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(300, "miles")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(10000, "miles")
  12043. },
  12044. ]
  12045. )
  12046. };
  12047. characterMakers["Arc"] = () => {
  12048. return makeCharacter(
  12049. { name: "Arc" },
  12050. {
  12051. side: {
  12052. height: math.unit(2, "inches"),
  12053. weight: math.unit(5, "grams"),
  12054. name: "Side",
  12055. image: {
  12056. source: "./media/characters/arc/side.svg"
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Micro",
  12063. height: math.unit(2, "inches"),
  12064. default: true
  12065. },
  12066. ]
  12067. )
  12068. };
  12069. characterMakers["Nebula Shahar"] = () => {
  12070. return makeCharacter(
  12071. { name: "Nebula Shahar" },
  12072. {
  12073. front: {
  12074. height: math.unit(1.1938, "meters"),
  12075. weight: math.unit(54, "kg"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/nebula-shahar/front.svg",
  12079. extra: 1642/1436 ,
  12080. bottom: 0.06
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Megamicro",
  12087. height: math.unit(0.3, "mm")
  12088. },
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(3, "cm")
  12092. },
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(138, "cm"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(30, "m")
  12101. },
  12102. ]
  12103. )
  12104. };
  12105. characterMakers["Shayla"] = () => {
  12106. return makeCharacter(
  12107. { name: "Shayla" },
  12108. {
  12109. front: {
  12110. height: math.unit(5.24, "feet"),
  12111. weight: math.unit(150, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/shayla/front.svg",
  12115. extra: 1512/1414 ,
  12116. bottom: 0.01
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(5.24, "feet"),
  12121. weight: math.unit(150, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/shayla/back.svg",
  12125. extra: 1512/1414
  12126. }
  12127. },
  12128. hand: {
  12129. height: math.unit(0.7781496062992126, "feet"),
  12130. name: "Hand",
  12131. image: {
  12132. source: "./media/characters/shayla/hand.svg"
  12133. }
  12134. },
  12135. foot: {
  12136. height: math.unit(1.4206036745406823, "feet"),
  12137. name: "Foot",
  12138. image: {
  12139. source: "./media/characters/shayla/foot.svg"
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Micro",
  12146. height: math.unit(0.32, "feet")
  12147. },
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(5.24, "feet"),
  12151. default: true
  12152. },
  12153. {
  12154. name: "Macro",
  12155. height: math.unit(492.12, "feet")
  12156. },
  12157. {
  12158. name: "Megamacro",
  12159. height: math.unit(186.41, "miles")
  12160. },
  12161. ]
  12162. )
  12163. };
  12164. characterMakers["Pia Jr."] = () => {
  12165. return makeCharacter(
  12166. { name: "Pia Jr." },
  12167. {
  12168. front: {
  12169. height: math.unit(2.2, "m"),
  12170. weight: math.unit(120, "kg"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/pia-jr/front.svg",
  12174. extra: 1000/970 ,
  12175. bottom: 0.035
  12176. }
  12177. },
  12178. hand: {
  12179. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12180. name: "Hand",
  12181. image: {
  12182. source: "./media/characters/pia-jr/hand.svg"
  12183. }
  12184. },
  12185. paw: {
  12186. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12187. name: "Paw",
  12188. image: {
  12189. source: "./media/characters/pia-jr/paw.svg"
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Micro",
  12196. height: math.unit(1.2, "cm")
  12197. },
  12198. {
  12199. name: "Normal",
  12200. height: math.unit(2.2, "m"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(180, "m")
  12206. },
  12207. {
  12208. name: "Megamacro",
  12209. height: math.unit(420, "km")
  12210. },
  12211. ]
  12212. )
  12213. };
  12214. characterMakers["Pia Sr."] = () => {
  12215. return makeCharacter(
  12216. { name: "Pia Sr." },
  12217. {
  12218. front: {
  12219. height: math.unit(2, "m"),
  12220. weight: math.unit(115, "kg"),
  12221. name: "Front",
  12222. image: {
  12223. source: "./media/characters/pia-sr/front.svg",
  12224. extra: 760/730 ,
  12225. bottom: 0.015
  12226. }
  12227. },
  12228. back: {
  12229. height: math.unit(2, "m"),
  12230. weight: math.unit(115, "kg"),
  12231. name: "Back",
  12232. image: {
  12233. source: "./media/characters/pia-sr/back.svg",
  12234. extra: 760/730 ,
  12235. bottom: 0.01
  12236. }
  12237. },
  12238. hand: {
  12239. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12240. name: "Hand",
  12241. image: {
  12242. source: "./media/characters/pia-sr/hand.svg"
  12243. }
  12244. },
  12245. foot: {
  12246. height: math.unit(1.83, "feet"),
  12247. name: "Foot",
  12248. image: {
  12249. source: "./media/characters/pia-sr/foot.svg"
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(88, "mm")
  12257. },
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(2, "m"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Macro",
  12265. height: math.unit(200, "m")
  12266. },
  12267. {
  12268. name: "Megamacro",
  12269. height: math.unit(420, "km")
  12270. },
  12271. ]
  12272. )
  12273. };
  12274. characterMakers["KIBIBYTE"] = () => {
  12275. return makeCharacter(
  12276. { name: "KIBIBYTE" },
  12277. {
  12278. front: {
  12279. height: math.unit(8 + 2/12, "feet"),
  12280. weight: math.unit(300, "lb"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/kibibyte/front.svg",
  12284. extra: 2221/2098 ,
  12285. bottom: 0.04
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(8 + 2/12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Socialable Macro",
  12297. height: math.unit(50, "feet")
  12298. },
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(300, "feet")
  12302. },
  12303. {
  12304. name: "Megamacro",
  12305. height: math.unit(500, "miles")
  12306. },
  12307. ]
  12308. )
  12309. };
  12310. characterMakers["Felix"] = () => {
  12311. return makeCharacter(
  12312. { name: "Felix" },
  12313. {
  12314. front: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(150, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/felix/front.svg",
  12320. extra: 762/722 ,
  12321. bottom: 0.02
  12322. }
  12323. },
  12324. frontClothed: {
  12325. height: math.unit(6, "feet"),
  12326. weight: math.unit(150, "lb"),
  12327. name: "Front (Clothed)",
  12328. image: {
  12329. source: "./media/characters/felix/front-clothed.svg",
  12330. extra: 762/722 ,
  12331. bottom: 0.02
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(6 + 8/12, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(2600, "feet")
  12344. },
  12345. {
  12346. name: "Megamacro",
  12347. height: math.unit(450, "miles")
  12348. },
  12349. ]
  12350. )
  12351. };
  12352. characterMakers["Tobo"] = () => {
  12353. return makeCharacter(
  12354. { name: "Tobo" },
  12355. {
  12356. front: {
  12357. height: math.unit(6 + 1/12, "feet"),
  12358. weight: math.unit(250, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/tobo/front.svg",
  12362. extra: 608/586 ,
  12363. bottom: 0.023
  12364. }
  12365. },
  12366. back: {
  12367. height: math.unit(6 + 1/12, "feet"),
  12368. weight: math.unit(250, "lb"),
  12369. name: "Back",
  12370. image: {
  12371. source: "./media/characters/tobo/back.svg",
  12372. extra: 608/586
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Nano",
  12379. height: math.unit(2, "nm")
  12380. },
  12381. {
  12382. name: "Megamicro",
  12383. height: math.unit(0.1, "mm")
  12384. },
  12385. {
  12386. name: "Micro",
  12387. height: math.unit(1, "inch"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Human-sized",
  12392. height: math.unit(6 + 1/12, "feet")
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(250, "feet")
  12397. },
  12398. {
  12399. name: "Megamacro",
  12400. height: math.unit(75, "miles")
  12401. },
  12402. {
  12403. name: "Texas-sized",
  12404. height: math.unit(750, "miles")
  12405. },
  12406. {
  12407. name: "Teramacro",
  12408. height: math.unit(50000, "miles")
  12409. },
  12410. ]
  12411. )
  12412. };
  12413. characterMakers["Danny Kapowsky"] = () => {
  12414. return makeCharacter(
  12415. { name: "Danny Kapowsky" },
  12416. {
  12417. front: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(269, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/danny-kapowsky/front.svg",
  12423. extra: 766/736 ,
  12424. bottom: 0.044
  12425. }
  12426. },
  12427. back: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(269, "lb"),
  12430. name: "Back",
  12431. image: {
  12432. source: "./media/characters/danny-kapowsky/back.svg",
  12433. extra: 797/760 ,
  12434. bottom: 0.025
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(150, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro+",
  12446. height: math.unit(200, "feet")
  12447. },
  12448. {
  12449. name: "Macro++",
  12450. height: math.unit(300, "feet")
  12451. },
  12452. {
  12453. name: "Macro+++",
  12454. height: math.unit(400, "feet")
  12455. },
  12456. ]
  12457. )
  12458. };
  12459. characterMakers["Finn"] = () => {
  12460. return makeCharacter(
  12461. { name: "Finn" },
  12462. {
  12463. side: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(170, "lb"),
  12466. name: "Side",
  12467. image: {
  12468. source: "./media/characters/finn/side.svg",
  12469. extra: 1953/1807 ,
  12470. bottom: 0.057
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Megamacro",
  12477. height: math.unit(14445, "feet"),
  12478. default: true
  12479. },
  12480. ]
  12481. )
  12482. };
  12483. characterMakers["Roy"] = () => {
  12484. return makeCharacter(
  12485. { name: "Roy" },
  12486. {
  12487. front: {
  12488. height: math.unit(5 + 6/12, "feet"),
  12489. weight: math.unit(125, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/roy/front.svg",
  12493. extra: 1,
  12494. bottom: 0.11
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Micro",
  12501. height: math.unit(3, "inches"),
  12502. default: true
  12503. },
  12504. {
  12505. name: "Normal",
  12506. height: math.unit(5 + 6/12, "feet")
  12507. },
  12508. {
  12509. name: "Lesser Macro",
  12510. height: math.unit(60, "feet")
  12511. },
  12512. {
  12513. name: "Greater Macro",
  12514. height: math.unit(120, "feet")
  12515. },
  12516. ]
  12517. )
  12518. };
  12519. characterMakers["Aevsivs"] = () => {
  12520. return makeCharacter(
  12521. { name: "Aevsivs" },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(100, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/aevsivs/front.svg",
  12529. extra: 1,
  12530. bottom: 0.03
  12531. }
  12532. },
  12533. back: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(100, "lb"),
  12536. name: "Back",
  12537. image: {
  12538. source: "./media/characters/aevsivs/back.svg"
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Micro",
  12545. height: math.unit(2, "inches"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(5, "feet")
  12551. },
  12552. ]
  12553. )
  12554. };
  12555. characterMakers["Hildegard"] = () => {
  12556. return makeCharacter(
  12557. { name: "Hildegard" },
  12558. {
  12559. front: {
  12560. height: math.unit(5 + 7/12, "feet"),
  12561. weight: math.unit(159, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/hildegard/front.svg",
  12565. extra: 312/286 ,
  12566. bottom: 0.005
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Normal",
  12573. height: math.unit(5 + 7/12, "feet"),
  12574. default: true
  12575. },
  12576. ]
  12577. )
  12578. };
  12579. characterMakers["Bernard & Wilder"] = () => {
  12580. return makeCharacter(
  12581. { name: "Bernard & Wilder" },
  12582. {
  12583. bernard: {
  12584. height: math.unit(2 + 7/12, "feet"),
  12585. weight: math.unit(66, "lb"),
  12586. name: "Bernard",
  12587. rename: true,
  12588. image: {
  12589. source: "./media/characters/bernard-wilder/bernard.svg",
  12590. extra: 192/128 ,
  12591. bottom: 0.05
  12592. }
  12593. },
  12594. wilder: {
  12595. height: math.unit(5 + 8/12, "feet"),
  12596. weight: math.unit(143, "lb"),
  12597. name: "Wilder",
  12598. rename: true,
  12599. image: {
  12600. source: "./media/characters/bernard-wilder/wilder.svg",
  12601. extra: 361/312 ,
  12602. bottom: 0.02
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(2 + 7/12, "feet"),
  12610. default: true
  12611. },
  12612. ]
  12613. )
  12614. };
  12615. characterMakers["Hearth"] = () => {
  12616. return makeCharacter(
  12617. { name: "Hearth" },
  12618. {
  12619. anthro: {
  12620. height: math.unit(6 + 1/12, "feet"),
  12621. weight: math.unit(155, "lb"),
  12622. name: "Anthro",
  12623. image: {
  12624. source: "./media/characters/hearth/anthro.svg",
  12625. extra: 260/250 ,
  12626. bottom: 0.02
  12627. }
  12628. },
  12629. feral: {
  12630. height: math.unit(3.78, "feet"),
  12631. weight: math.unit(35, "kg"),
  12632. name: "Feral",
  12633. image: {
  12634. source: "./media/characters/hearth/feral.svg",
  12635. extra: 153/135 ,
  12636. bottom: 0.03
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Normal",
  12643. height: math.unit(6 + 1/12, "feet"),
  12644. default: true
  12645. },
  12646. ]
  12647. )
  12648. };
  12649. characterMakers["Ingrid"] = () => {
  12650. return makeCharacter(
  12651. { name: "Ingrid" },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(182, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/ingrid/front.svg",
  12659. extra: 294/268 ,
  12660. bottom: 0.027
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(6, "feet"),
  12668. default: true
  12669. },
  12670. ]
  12671. )
  12672. };
  12673. characterMakers["Malgam"] = () => {
  12674. return makeCharacter(
  12675. { name: "Malgam" },
  12676. {
  12677. eevee: {
  12678. height: math.unit(2 + 10/12, "feet"),
  12679. weight: math.unit(86, "lb"),
  12680. name: "Malgam",
  12681. image: {
  12682. source: "./media/characters/malgam/eevee.svg",
  12683. extra: 218/180 ,
  12684. bottom: 0.2
  12685. }
  12686. },
  12687. sylveon: {
  12688. height: math.unit(4, "feet"),
  12689. weight: math.unit(101, "lb"),
  12690. name: "Future Malgam",
  12691. rename: true,
  12692. image: {
  12693. source: "./media/characters/malgam/sylveon.svg",
  12694. extra: 371/325 ,
  12695. bottom: 0.015
  12696. }
  12697. },
  12698. gigantamax: {
  12699. height: math.unit(50, "feet"),
  12700. name: "Gigantamax Malgam",
  12701. rename: true,
  12702. image: {
  12703. source: "./media/characters/malgam/gigantamax.svg"
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(2 + 10/12, "feet"),
  12711. default: true
  12712. },
  12713. ]
  12714. )
  12715. };
  12716. characterMakers["Fleur"] = () => {
  12717. return makeCharacter(
  12718. { name: "Fleur" },
  12719. {
  12720. front: {
  12721. height: math.unit(5 + 11/12, "feet"),
  12722. weight: math.unit(188, "lb"),
  12723. name: "Front",
  12724. image: {
  12725. source: "./media/characters/fleur/front.svg",
  12726. extra: 309/283 ,
  12727. bottom: 0.007
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(5 + 11/12, "feet"),
  12735. default: true
  12736. },
  12737. ]
  12738. )
  12739. };
  12740. characterMakers["Jude"] = () => {
  12741. return makeCharacter(
  12742. { name: "Jude" },
  12743. {
  12744. front: {
  12745. height: math.unit(5 + 4/12, "feet"),
  12746. weight: math.unit(122, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/jude/front.svg",
  12750. extra: 288/273 ,
  12751. bottom: 0.03
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(5 + 4/12, "feet"),
  12759. default: true
  12760. },
  12761. ]
  12762. )
  12763. };
  12764. characterMakers["Seara"] = () => {
  12765. return makeCharacter(
  12766. { name: "Seara" },
  12767. {
  12768. front: {
  12769. height: math.unit(5 + 11/12, "feet"),
  12770. weight: math.unit(190, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/seara/front.svg",
  12774. extra: 1,
  12775. bottom: 0.05
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(5 + 11/12, "feet"),
  12783. default: true
  12784. },
  12785. ]
  12786. )
  12787. };
  12788. characterMakers["Caspian"] = () => {
  12789. return makeCharacter(
  12790. { name: "Caspian" },
  12791. {
  12792. front: {
  12793. height: math.unit(16 + 5/12, "feet"),
  12794. weight: math.unit(524, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/caspian/front.svg",
  12798. extra: 1,
  12799. bottom: 0.04
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Normal",
  12806. height: math.unit(16 + 5/12, "feet"),
  12807. default: true
  12808. },
  12809. ]
  12810. )
  12811. };
  12812. characterMakers["Mika"] = () => {
  12813. return makeCharacter(
  12814. { name: "Mika" },
  12815. {
  12816. front: {
  12817. height: math.unit(5 + 7/12, "feet"),
  12818. weight: math.unit(170, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/mika/front.svg",
  12822. extra: 1,
  12823. bottom: 0.016
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(5 + 7/12, "feet"),
  12831. default: true
  12832. },
  12833. ]
  12834. )
  12835. };
  12836. characterMakers["Sol"] = () => {
  12837. return makeCharacter(
  12838. { name: "Sol" },
  12839. {
  12840. front: {
  12841. height: math.unit(6 + 2/12, "feet"),
  12842. weight: math.unit(268, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/sol/front.svg",
  12846. extra: 247/231 ,
  12847. bottom: 0.05
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(6 + 2/12, "feet"),
  12855. default: true
  12856. },
  12857. ]
  12858. )
  12859. };
  12860. characterMakers["Umiko"] = () => {
  12861. return makeCharacter(
  12862. { name: "Umiko" },
  12863. {
  12864. buizel: {
  12865. height: math.unit(2 + 5/12, "feet"),
  12866. weight: math.unit(87, "lb"),
  12867. name: "Buizel",
  12868. image: {
  12869. source: "./media/characters/umiko/buizel.svg",
  12870. extra: 172/157 ,
  12871. bottom: 0.01
  12872. }
  12873. },
  12874. floatzel: {
  12875. height: math.unit(5 + 9/12, "feet"),
  12876. weight: math.unit(250, "lb"),
  12877. name: "Floatzel",
  12878. image: {
  12879. source: "./media/characters/umiko/floatzel.svg",
  12880. extra: 262/248
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(2 + 5/12, "feet"),
  12888. default: true
  12889. },
  12890. ]
  12891. )
  12892. };
  12893. characterMakers["Iliac"] = () => {
  12894. return makeCharacter(
  12895. { name: "Iliac" },
  12896. {
  12897. front: {
  12898. height: math.unit(6 + 2/12, "feet"),
  12899. weight: math.unit(146, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/iliac/front.svg",
  12903. extra: 389/365 ,
  12904. bottom: 0.035
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(6 + 2/12, "feet"),
  12912. default: true
  12913. },
  12914. ]
  12915. )
  12916. };
  12917. characterMakers["Topaz"] = () => {
  12918. return makeCharacter(
  12919. { name: "Topaz" },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(170, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/topaz/front.svg",
  12927. extra: 317/303 ,
  12928. bottom: 0.055
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(6, "feet"),
  12936. default: true
  12937. },
  12938. ]
  12939. )
  12940. };
  12941. characterMakers["Gabriel"] = () => {
  12942. return makeCharacter(
  12943. { name: "Gabriel" },
  12944. {
  12945. front: {
  12946. height: math.unit(5 + 11/12, "feet"),
  12947. weight: math.unit(144, "lb"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/gabriel/front.svg",
  12951. extra: 285/262 ,
  12952. bottom: 0.004
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(5 + 11/12, "feet"),
  12960. default: true
  12961. },
  12962. ]
  12963. )
  12964. };
  12965. characterMakers["Tempest (Suicune)"] = () => {
  12966. return makeCharacter(
  12967. { name: "Tempest (Suicune)" },
  12968. {
  12969. side: {
  12970. height: math.unit(6 + 5/12, "feet"),
  12971. weight: math.unit(300, "lb"),
  12972. name: "Side",
  12973. image: {
  12974. source: "./media/characters/tempest-suicune/side.svg",
  12975. extra: 195/154 ,
  12976. bottom: 0.04
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(6 + 5/12, "feet"),
  12984. default: true
  12985. },
  12986. ]
  12987. )
  12988. };
  12989. characterMakers["Vulcan"] = () => {
  12990. return makeCharacter(
  12991. { name: "Vulcan" },
  12992. {
  12993. front: {
  12994. height: math.unit(7 + 2/12, "feet"),
  12995. weight: math.unit(322, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/vulcan/front.svg",
  12999. extra: 154/147 ,
  13000. bottom: 0.04
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(7 + 2/12, "feet"),
  13008. default: true
  13009. },
  13010. ]
  13011. )
  13012. };
  13013. characterMakers["Gault"] = () => {
  13014. return makeCharacter(
  13015. { name: "Gault" },
  13016. {
  13017. front: {
  13018. height: math.unit(5 + 10/12, "feet"),
  13019. weight: math.unit(264, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/gault/front.svg",
  13023. extra: 161/140 ,
  13024. bottom: 0.028
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(5 + 10/12, "feet"),
  13032. default: true
  13033. },
  13034. ]
  13035. )
  13036. };
  13037. characterMakers["Shard"] = () => {
  13038. return makeCharacter(
  13039. { name: "Shard" },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/shard/front.svg",
  13047. extra: 273/238 ,
  13048. bottom: 0.02
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(3 + 6/12, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. )
  13060. };
  13061. characterMakers["Ashe"] = () => {
  13062. return makeCharacter(
  13063. { name: "Ashe" },
  13064. {
  13065. front: {
  13066. height: math.unit(5 + 11/12, "feet"),
  13067. weight: math.unit(146, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/ashe/front.svg",
  13071. extra: 400/373 ,
  13072. bottom: 0.01
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Normal",
  13079. height: math.unit(5 + 11/12, "feet"),
  13080. default: true
  13081. },
  13082. ]
  13083. )
  13084. };
  13085. characterMakers["Beatrix"] = () => {
  13086. return makeCharacter(
  13087. { name: "Beatrix" },
  13088. {
  13089. front: {
  13090. height: math.unit(5 + 5/12, "feet"),
  13091. weight: math.unit(135, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/beatrix/front.svg",
  13095. extra: 392/379 ,
  13096. bottom: 0.01
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(6, "feet"),
  13104. default: true
  13105. },
  13106. ]
  13107. )
  13108. };
  13109. characterMakers["Ignatius"] = () => {
  13110. return makeCharacter(
  13111. { name: "Ignatius" },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/ignatius/front.svg",
  13119. extra: 245/222 ,
  13120. bottom: 0.01
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(5 + 5/12, "feet"),
  13128. default: true
  13129. },
  13130. ]
  13131. )
  13132. };
  13133. characterMakers["Mei Li"] = () => {
  13134. return makeCharacter(
  13135. { name: "Mei Li" },
  13136. {
  13137. front: {
  13138. height: math.unit(6 + 2/12, "feet"),
  13139. weight: math.unit(138, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/mei-li/front.svg",
  13143. extra: 237/229 ,
  13144. bottom: 0.03
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(6 + 2/12, "feet"),
  13152. default: true
  13153. },
  13154. ]
  13155. )
  13156. };
  13157. characterMakers["Puru"] = () => {
  13158. return makeCharacter(
  13159. { name: "Puru" },
  13160. {
  13161. front: {
  13162. height: math.unit(2 + 4/12, "feet"),
  13163. weight: math.unit(62, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/puru/front.svg",
  13167. extra: 206/149 ,
  13168. bottom: 0.06
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(2 + 4/12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. )
  13180. };
  13181. characterMakers["Kee"] = () => {
  13182. return makeCharacter(
  13183. { name: "Kee" },
  13184. {
  13185. taur: {
  13186. height: math.unit(11, "feet"),
  13187. weight: math.unit(500, "lb"),
  13188. name: "Taur",
  13189. image: {
  13190. source: "./media/characters/kee/taur.svg",
  13191. extra: 1,
  13192. bottom: 0.04
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(11, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. )
  13204. };
  13205. characterMakers["Cobalt (Dracha)"] = () => {
  13206. return makeCharacter(
  13207. { name: "Cobalt (Dracha)" },
  13208. {
  13209. anthro: {
  13210. height: math.unit(7, "feet"),
  13211. weight: math.unit(190, "lb"),
  13212. name: "Anthro",
  13213. image: {
  13214. source: "./media/characters/cobalt-dracha/anthro.svg",
  13215. extra: 231/225 ,
  13216. bottom: 0.04
  13217. }
  13218. },
  13219. feral: {
  13220. height: math.unit(9 + 7/12, "feet"),
  13221. weight: math.unit(294, "lb"),
  13222. name: "Feral",
  13223. image: {
  13224. source: "./media/characters/cobalt-dracha/feral.svg",
  13225. extra: 692/633 ,
  13226. bottom: 0.05
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Normal",
  13233. height: math.unit(7, "feet"),
  13234. default: true
  13235. },
  13236. ]
  13237. )
  13238. };
  13239. characterMakers["Java"] = () => {
  13240. return makeCharacter(
  13241. { name: "Java" },
  13242. {
  13243. fallen: {
  13244. height: math.unit(11 + 8/12, "feet"),
  13245. weight: math.unit(485, "lb"),
  13246. name: "Java (Fallen)",
  13247. rename: true,
  13248. image: {
  13249. source: "./media/characters/java/fallen.svg",
  13250. extra: 226/208 ,
  13251. bottom: 0.005
  13252. }
  13253. },
  13254. godkin: {
  13255. height: math.unit(10 + 6/12, "feet"),
  13256. weight: math.unit(328, "lb"),
  13257. name: "Java (Godkin)",
  13258. rename: true,
  13259. image: {
  13260. source: "./media/characters/java/godkin.svg",
  13261. extra: 270/262 ,
  13262. bottom: 0.02
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Normal",
  13269. height: math.unit(11 + 8/12, "feet"),
  13270. default: true
  13271. },
  13272. ]
  13273. )
  13274. };
  13275. characterMakers["Skoll"] = () => {
  13276. return makeCharacter(
  13277. { name: "Skoll" },
  13278. {
  13279. front: {
  13280. height: math.unit(7 + 8/12, "feet"),
  13281. weight: math.unit(320, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/skoll/front.svg",
  13285. extra: 232/220 ,
  13286. bottom: 0.02
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(7 + 8/12, "feet"),
  13294. default: true
  13295. },
  13296. ]
  13297. )
  13298. };
  13299. characterMakers["Purna"] = () => {
  13300. return makeCharacter(
  13301. { name: "Purna" },
  13302. {
  13303. front: {
  13304. height: math.unit(5 + 9/12, "feet"),
  13305. weight: math.unit(170, "lb"),
  13306. name: "Front",
  13307. image: {
  13308. source: "./media/characters/purna/front.svg",
  13309. extra: 239/229 ,
  13310. bottom: 0.01
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Normal",
  13317. height: math.unit(5 + 9/12, "feet"),
  13318. default: true
  13319. },
  13320. ]
  13321. )
  13322. };
  13323. characterMakers["Kuva"] = () => {
  13324. return makeCharacter(
  13325. { name: "Kuva" },
  13326. {
  13327. front: {
  13328. height: math.unit(5 + 9/12, "feet"),
  13329. weight: math.unit(142, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/kuva/front.svg",
  13333. extra: 281/271 ,
  13334. bottom: 0.006
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(5 + 9/12, "feet"),
  13342. default: true
  13343. },
  13344. ]
  13345. )
  13346. };
  13347. characterMakers["Embra"] = () => {
  13348. return makeCharacter(
  13349. { name: "Embra" },
  13350. {
  13351. anthro: {
  13352. height: math.unit(9 + 2/12, "feet"),
  13353. weight: math.unit(270, "lb"),
  13354. name: "Anthro",
  13355. image: {
  13356. source: "./media/characters/embra/anthro.svg",
  13357. extra: 200/187 ,
  13358. bottom: 0.02
  13359. }
  13360. },
  13361. feral: {
  13362. height: math.unit(18 + 8/12, "feet"),
  13363. weight: math.unit(576, "lb"),
  13364. name: "Feral",
  13365. image: {
  13366. source: "./media/characters/embra/feral.svg",
  13367. extra: 152/137 ,
  13368. bottom: 0.037
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Normal",
  13375. height: math.unit(9 + 2/12, "feet"),
  13376. default: true
  13377. },
  13378. ]
  13379. )
  13380. };
  13381. characterMakers["Grottos"] = () => {
  13382. return makeCharacter(
  13383. { name: "Grottos" },
  13384. {
  13385. anthro: {
  13386. height: math.unit(10 + 9/12, "feet"),
  13387. weight: math.unit(224, "lb"),
  13388. name: "Anthro",
  13389. image: {
  13390. source: "./media/characters/grottos/anthro.svg",
  13391. extra: 350/332 ,
  13392. bottom: 0.045
  13393. }
  13394. },
  13395. feral: {
  13396. height: math.unit(20 + 7/12, "feet"),
  13397. weight: math.unit(629, "lb"),
  13398. name: "Feral",
  13399. image: {
  13400. source: "./media/characters/grottos/feral.svg",
  13401. extra: 207/190 ,
  13402. bottom: 0.05
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(10 + 9/12, "feet"),
  13410. default: true
  13411. },
  13412. ]
  13413. )
  13414. };
  13415. characterMakers["Frifna"] = () => {
  13416. return makeCharacter(
  13417. { name: "Frifna" },
  13418. {
  13419. anthro: {
  13420. height: math.unit(9 + 6/12, "feet"),
  13421. weight: math.unit(298, "lb"),
  13422. name: "Anthro",
  13423. image: {
  13424. source: "./media/characters/frifna/anthro.svg",
  13425. extra: 282/269 ,
  13426. bottom: 0.015
  13427. }
  13428. },
  13429. feral: {
  13430. height: math.unit(16 + 2/12, "feet"),
  13431. weight: math.unit(624, "lb"),
  13432. name: "Feral",
  13433. image: {
  13434. source: "./media/characters/frifna/feral.svg"
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Normal",
  13441. height: math.unit(9 + 6/12, "feet"),
  13442. default: true
  13443. },
  13444. ]
  13445. )
  13446. };
  13447. characterMakers["Elise"] = () => {
  13448. return makeCharacter(
  13449. { name: "Elise" },
  13450. {
  13451. front: {
  13452. height: math.unit(6 + 2/12, "feet"),
  13453. weight: math.unit(168, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/elise/front.svg",
  13457. extra: 276/271
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(6 + 2/12, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. )
  13469. };
  13470. characterMakers["Glade"] = () => {
  13471. return makeCharacter(
  13472. { name: "Glade" },
  13473. {
  13474. front: {
  13475. height: math.unit(5 + 10/12, "feet"),
  13476. weight: math.unit(210, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/glade/front.svg",
  13480. extra: 258/247 ,
  13481. bottom: 0.008
  13482. }
  13483. },
  13484. },
  13485. [
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(5 + 10/12, "feet"),
  13489. default: true
  13490. },
  13491. ]
  13492. )
  13493. };
  13494. characterMakers["Rina"] = () => {
  13495. return makeCharacter(
  13496. { name: "Rina" },
  13497. {
  13498. front: {
  13499. height: math.unit(5 + 10/12, "feet"),
  13500. weight: math.unit(129, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/rina/front.svg",
  13504. extra: 266/255 ,
  13505. bottom: 0.005
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(5 + 10/12, "feet"),
  13513. default: true
  13514. },
  13515. ]
  13516. )
  13517. };
  13518. characterMakers["Veronica"] = () => {
  13519. return makeCharacter(
  13520. { name: "Veronica" },
  13521. {
  13522. front: {
  13523. height: math.unit(6 + 1/12, "feet"),
  13524. weight: math.unit(192, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/veronica/front.svg",
  13528. extra: 319/309 ,
  13529. bottom: 0.005
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(6 + 1/12, "feet"),
  13537. default: true
  13538. },
  13539. ]
  13540. )
  13541. };
  13542. characterMakers["Braxton"] = () => {
  13543. return makeCharacter(
  13544. { name: "Braxton" },
  13545. {
  13546. front: {
  13547. height: math.unit(9 + 3/12, "feet"),
  13548. weight: math.unit(1100, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/braxton/front.svg",
  13552. extra: 1057/984 ,
  13553. bottom: 0.05
  13554. }
  13555. },
  13556. },
  13557. [
  13558. {
  13559. name: "Normal",
  13560. height: math.unit(9 + 3/12, "feet")
  13561. },
  13562. {
  13563. name: "Giant",
  13564. height: math.unit(300, "feet"),
  13565. default: true
  13566. },
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(700, "feet")
  13570. },
  13571. {
  13572. name: "Megamacro",
  13573. height: math.unit(6000, "feet")
  13574. },
  13575. ]
  13576. )
  13577. };
  13578. characterMakers["Blue Feyonics"] = () => {
  13579. return makeCharacter(
  13580. { name: "Blue Feyonics" },
  13581. {
  13582. front: {
  13583. height: math.unit(6 + 7/12, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/blue-feyonics/front.svg",
  13588. extra: 1403/1306 ,
  13589. bottom: 0.047
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(6 + 7/12, "feet"),
  13597. default: true
  13598. },
  13599. ]
  13600. )
  13601. };
  13602. characterMakers["Maxwell"] = () => {
  13603. return makeCharacter(
  13604. { name: "Maxwell" },
  13605. {
  13606. front: {
  13607. height: math.unit(1.8, "meters"),
  13608. weight: math.unit(60, "kg"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/maxwell/front.svg",
  13612. extra: 2060/1873
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Micro",
  13619. height: math.unit(1, "mm")
  13620. },
  13621. {
  13622. name: "Normal",
  13623. height: math.unit(1.8, "meter"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(30, "meters")
  13629. },
  13630. {
  13631. name: "Megamacro",
  13632. height: math.unit(10, "km")
  13633. },
  13634. ]
  13635. )
  13636. };
  13637. characterMakers["Jack"] = () => {
  13638. return makeCharacter(
  13639. { name: "Jack" },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/jack/front.svg",
  13647. extra: 1754/1640,
  13648. bottom: 0.01
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(80000, "feet"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Max size",
  13660. height: math.unit(10, "lightyears")
  13661. },
  13662. ]
  13663. )
  13664. };
  13665. characterMakers["Cafat"] = () => {
  13666. return makeCharacter(
  13667. { name: "Cafat" },
  13668. {
  13669. upright: {
  13670. height: math.unit(7, "feet"),
  13671. weight: math.unit(170, "lb"),
  13672. name: "Upright",
  13673. image: {
  13674. source: "./media/characters/cafat/upright.svg",
  13675. bottom: 0.01
  13676. }
  13677. },
  13678. uprightFull: {
  13679. height: math.unit(7, "feet"),
  13680. weight: math.unit(170, "lb"),
  13681. name: "Upright (Full)",
  13682. image: {
  13683. source: "./media/characters/cafat/upright-full.svg",
  13684. bottom: 0.01
  13685. }
  13686. },
  13687. side: {
  13688. height: math.unit(5, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Side",
  13691. image: {
  13692. source: "./media/characters/cafat/side.svg"
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Small",
  13699. height: math.unit(7, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Large",
  13704. height: math.unit(15.5, "feet")
  13705. },
  13706. ]
  13707. )
  13708. };
  13709. characterMakers["Verin Raharra"] = () => {
  13710. return makeCharacter(
  13711. { name: "Verin Raharra" },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/verin-raharra/front.svg",
  13719. extra: 5019/4835,
  13720. bottom: 0.023
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Normal",
  13727. height: math.unit(7 + 5/12, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Upsized",
  13732. height: math.unit(20, "feet")
  13733. },
  13734. ]
  13735. )
  13736. };
  13737. characterMakers["Nakata"] = () => {
  13738. return makeCharacter(
  13739. { name: "Nakata" },
  13740. {
  13741. front: {
  13742. height: math.unit(7, "feet"),
  13743. weight: math.unit(230, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/nakata/front.svg",
  13747. extra: 1.005,
  13748. bottom: 0.01
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Normal",
  13755. height: math.unit(7, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Big",
  13760. height: math.unit(14, "feet")
  13761. },
  13762. {
  13763. name: "Macro",
  13764. height: math.unit(400, "feet")
  13765. },
  13766. ]
  13767. )
  13768. };
  13769. characterMakers["Lily"] = () => {
  13770. return makeCharacter(
  13771. { name: "Lily" },
  13772. {
  13773. front: {
  13774. height: math.unit(4.91, "feet"),
  13775. weight: math.unit(100, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/lily/front.svg",
  13779. extra: 1585/1415,
  13780. bottom: 0.02
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(4.91, "feet"),
  13788. default: true
  13789. },
  13790. ]
  13791. )
  13792. };
  13793. characterMakers["Sheila"] = () => {
  13794. return makeCharacter(
  13795. { name: "Sheila" },
  13796. {
  13797. laying: {
  13798. height: math.unit(4 + 4/12, "feet"),
  13799. weight: math.unit(600, "lb"),
  13800. name: "Laying",
  13801. image: {
  13802. source: "./media/characters/sheila/laying.svg",
  13803. extra: 1333/1265,
  13804. bottom: 0.16
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(4 + 4/12, "feet"),
  13812. default: true
  13813. },
  13814. ]
  13815. )
  13816. };
  13817. characterMakers["Sax"] = () => {
  13818. return makeCharacter(
  13819. { name: "Sax" },
  13820. {
  13821. front: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(190, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/sax/front.svg",
  13827. extra: 1187/973,
  13828. bottom: 0.042
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Micro",
  13835. height: math.unit(4, "inches"),
  13836. default: true
  13837. },
  13838. ]
  13839. )
  13840. };
  13841. characterMakers["Pandora"] = () => {
  13842. return makeCharacter(
  13843. { name: "Pandora" },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/pandora/front.svg",
  13851. extra: 2720/2556,
  13852. bottom: 0.015
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/pandora/back.svg",
  13861. extra: 2720/2556,
  13862. bottom: 0.01
  13863. }
  13864. },
  13865. beans: {
  13866. height: math.unit(6/8, "feet"),
  13867. name: "Beans",
  13868. image: {
  13869. source: "./media/characters/pandora/beans.svg"
  13870. }
  13871. },
  13872. skirt: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Skirt",
  13876. image: {
  13877. source: "./media/characters/pandora/skirt.svg",
  13878. extra: 1622/1525,
  13879. bottom: 0.015
  13880. }
  13881. },
  13882. hoodie: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Hoodie",
  13886. image: {
  13887. source: "./media/characters/pandora/hoodie.svg",
  13888. extra: 1622/1525,
  13889. bottom: 0.015
  13890. }
  13891. },
  13892. casual: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Casual",
  13896. image: {
  13897. source: "./media/characters/pandora/casual.svg",
  13898. extra: 1622/1525,
  13899. bottom: 0.015
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(6, "feet")
  13907. },
  13908. {
  13909. name: "Big Steppy",
  13910. height: math.unit(1, "km"),
  13911. default: true
  13912. },
  13913. ]
  13914. )
  13915. };
  13916. characterMakers["Venio Darcony"] = () => {
  13917. return makeCharacter(
  13918. { name: "Venio Darcony" },
  13919. {
  13920. side: {
  13921. height: math.unit(10, "feet"),
  13922. weight: math.unit(800, "kg"),
  13923. name: "Side",
  13924. image: {
  13925. source: "./media/characters/venio-darcony/side.svg",
  13926. extra: 1373/1003,
  13927. bottom: 0.037
  13928. }
  13929. },
  13930. front: {
  13931. height: math.unit(19, "feet"),
  13932. weight: math.unit(800, "kg"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/venio-darcony/front.svg"
  13936. }
  13937. },
  13938. back: {
  13939. height: math.unit(19, "feet"),
  13940. weight: math.unit(800, "kg"),
  13941. name: "Back",
  13942. image: {
  13943. source: "./media/characters/venio-darcony/back.svg"
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(10, "feet")
  13951. },
  13952. {
  13953. name: "Macro",
  13954. height: math.unit(130, "feet"),
  13955. default: true
  13956. },
  13957. {
  13958. name: "Macro+",
  13959. height: math.unit(240, "feet")
  13960. },
  13961. ]
  13962. )
  13963. };
  13964. characterMakers["Veski"] = () => {
  13965. return makeCharacter(
  13966. { name: "Veski" },
  13967. {
  13968. front: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Front",
  13972. image: {
  13973. source: "./media/characters/veski/front.svg",
  13974. extra: 1299/1225,
  13975. bottom: 0.04
  13976. }
  13977. },
  13978. back: {
  13979. height: math.unit(6, "feet"),
  13980. weight: math.unit(150, "lb"),
  13981. name: "Back",
  13982. image: {
  13983. source: "./media/characters/veski/back.svg",
  13984. extra: 1299/1225,
  13985. bottom: 0.008
  13986. }
  13987. },
  13988. maw: {
  13989. height: math.unit(1.5 * 1.21, "feet"),
  13990. name: "Maw",
  13991. image: {
  13992. source: "./media/characters/veski/maw.svg"
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(2, "km"),
  14000. default: true
  14001. },
  14002. ]
  14003. )
  14004. };
  14005. characterMakers["Isabelle"] = () => {
  14006. return makeCharacter(
  14007. { name: "Isabelle" },
  14008. {
  14009. front: {
  14010. height: math.unit(5 + 7/12, "feet"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/isabelle/front.svg",
  14014. extra: 2130/1976,
  14015. bottom: 0.05
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Supermicro",
  14022. height: math.unit(10, "micrometers")
  14023. },
  14024. {
  14025. name: "Micro",
  14026. height: math.unit(1, "inch")
  14027. },
  14028. {
  14029. name: "Tiny",
  14030. height: math.unit(5, "inches")
  14031. },
  14032. {
  14033. name: "Standard",
  14034. height: math.unit(5 + 7/12, "inches")
  14035. },
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(80, "meters"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(250, "meters")
  14044. },
  14045. {
  14046. name: "Gigamacro",
  14047. height: math.unit(5, "km")
  14048. },
  14049. {
  14050. name: "Cosmic",
  14051. height: math.unit(2.5e6, "miles")
  14052. },
  14053. ]
  14054. )
  14055. };
  14056. characterMakers["Hanzo"] = () => {
  14057. return makeCharacter(
  14058. { name: "Hanzo" },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/hanzo/front.svg",
  14066. extra: 374/344,
  14067. bottom: 0.02
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(8, "feet"),
  14075. default: true
  14076. },
  14077. ]
  14078. )
  14079. };
  14080. characterMakers["Anna"] = () => {
  14081. return makeCharacter(
  14082. { name: "Anna" },
  14083. {
  14084. front: {
  14085. height: math.unit(7, "feet"),
  14086. weight: math.unit(130, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/anna/front.svg",
  14090. extra: 169/145,
  14091. bottom: 0.06
  14092. }
  14093. },
  14094. full: {
  14095. height: math.unit(4.96, "feet"),
  14096. weight: math.unit(220, "lb"),
  14097. name: "Full",
  14098. image: {
  14099. source: "./media/characters/anna/full.svg",
  14100. extra: 138/114,
  14101. bottom: 0.15
  14102. }
  14103. },
  14104. tongue: {
  14105. height: math.unit(2.53, "feet"),
  14106. name: "Tongue",
  14107. image: {
  14108. source: "./media/characters/anna/tongue.svg"
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(7, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. )
  14120. };
  14121. characterMakers["Ian Corvid"] = () => {
  14122. return makeCharacter(
  14123. { name: "Ian Corvid" },
  14124. {
  14125. front: {
  14126. height: math.unit(7, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/ian-corvid/front.svg",
  14131. extra: 150/142,
  14132. bottom: 0.02
  14133. }
  14134. },
  14135. back: {
  14136. height: math.unit(7, "feet"),
  14137. weight: math.unit(150, "lb"),
  14138. name: "Back",
  14139. image: {
  14140. source: "./media/characters/ian-corvid/back.svg",
  14141. extra: 150/143,
  14142. bottom: 0.01
  14143. }
  14144. },
  14145. stomping: {
  14146. height: math.unit(7, "feet"),
  14147. weight: math.unit(150, "lb"),
  14148. name: "Stomping",
  14149. image: {
  14150. source: "./media/characters/ian-corvid/stomping.svg",
  14151. extra: 76/72
  14152. }
  14153. },
  14154. sitting: {
  14155. height: math.unit(7/1.8, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Sitting",
  14158. image: {
  14159. source: "./media/characters/ian-corvid/sitting.svg",
  14160. extra: 1400/1269,
  14161. bottom: 0.15
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Tiny Microw",
  14168. height: math.unit(1, "inch")
  14169. },
  14170. {
  14171. name: "Microw",
  14172. height: math.unit(6, "inches")
  14173. },
  14174. {
  14175. name: "Crow",
  14176. height: math.unit(7 + 1/12, "feet"),
  14177. default: true
  14178. },
  14179. {
  14180. name: "Macrow",
  14181. height: math.unit(176, "feet")
  14182. },
  14183. ]
  14184. )
  14185. };
  14186. characterMakers["Natalie Kellon"] = () => {
  14187. return makeCharacter(
  14188. { name: "Natalie Kellon" },
  14189. {
  14190. front: {
  14191. height: math.unit(5 + 7/12, "feet"),
  14192. weight: math.unit(147, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/natalie-kellon/front.svg",
  14196. extra: 1214/1141,
  14197. bottom: 0.02
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Micro",
  14204. height: math.unit(1/16, "inch")
  14205. },
  14206. {
  14207. name: "Tiny",
  14208. height: math.unit(4, "inches")
  14209. },
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(5 + 7/12, "feet"),
  14213. default: true
  14214. },
  14215. {
  14216. name: "Amazon",
  14217. height: math.unit(12, "feet")
  14218. },
  14219. {
  14220. name: "Giantess",
  14221. height: math.unit(160, "meters")
  14222. },
  14223. {
  14224. name: "Titaness",
  14225. height: math.unit(800, "meters")
  14226. },
  14227. ]
  14228. )
  14229. };
  14230. characterMakers["Alluria"] = () => {
  14231. return makeCharacter(
  14232. { name: "Alluria" },
  14233. {
  14234. front: {
  14235. height: math.unit(6, "feet"),
  14236. weight: math.unit(150, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/alluria/front.svg",
  14240. extra: 806/738,
  14241. bottom: 0.01
  14242. }
  14243. },
  14244. side: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Side",
  14248. image: {
  14249. source: "./media/characters/alluria/side.svg",
  14250. extra: 800/750,
  14251. }
  14252. },
  14253. back: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(150, "lb"),
  14256. name: "Back",
  14257. image: {
  14258. source: "./media/characters/alluria/back.svg",
  14259. extra: 806/738,
  14260. }
  14261. },
  14262. frontMaid: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front (Maid)",
  14266. image: {
  14267. source: "./media/characters/alluria/front-maid.svg",
  14268. extra: 806/738,
  14269. bottom: 0.01
  14270. }
  14271. },
  14272. sideMaid: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(150, "lb"),
  14275. name: "Side (Maid)",
  14276. image: {
  14277. source: "./media/characters/alluria/side-maid.svg",
  14278. extra: 800/750,
  14279. bottom: 0.005
  14280. }
  14281. },
  14282. backMaid: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Back (Maid)",
  14286. image: {
  14287. source: "./media/characters/alluria/back-maid.svg",
  14288. extra: 806/738,
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Micro",
  14295. height: math.unit(6, "inches"),
  14296. default: true
  14297. },
  14298. ]
  14299. )
  14300. };
  14301. characterMakers["Kyle"] = () => {
  14302. return makeCharacter(
  14303. { name: "Kyle" },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/kyle/front.svg",
  14311. extra: 1069/962,
  14312. bottom: 77.228/1727.45
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(150, "feet"),
  14320. default: true
  14321. },
  14322. ]
  14323. )
  14324. };
  14325. characterMakers["Duncan"] = () => {
  14326. return makeCharacter(
  14327. { name: "Duncan" },
  14328. {
  14329. front: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(300, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/duncan/front.svg",
  14335. extra: 1650/1482,
  14336. bottom: 0.05
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(100, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. )
  14348. };
  14349. characterMakers["Memory"] = () => {
  14350. return makeCharacter(
  14351. { name: "Memory" },
  14352. {
  14353. front: {
  14354. height: math.unit(5 + 4/12, "feet"),
  14355. weight: math.unit(220, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/memory/front.svg",
  14359. extra: 3641/3545,
  14360. bottom: 0.03
  14361. }
  14362. },
  14363. back: {
  14364. height: math.unit(5 + 4/12, "feet"),
  14365. weight: math.unit(220, "lb"),
  14366. name: "Back",
  14367. image: {
  14368. source: "./media/characters/memory/back.svg",
  14369. extra: 3641/3545,
  14370. bottom: 0.025
  14371. }
  14372. },
  14373. frontSkirt: {
  14374. height: math.unit(5 + 4/12, "feet"),
  14375. weight: math.unit(220, "lb"),
  14376. name: "Front (Skirt)",
  14377. image: {
  14378. source: "./media/characters/memory/front-skirt.svg",
  14379. extra: 3641/3545,
  14380. bottom: 0.03
  14381. }
  14382. },
  14383. frontDress: {
  14384. height: math.unit(5 + 4/12, "feet"),
  14385. weight: math.unit(220, "lb"),
  14386. name: "Front (Dress)",
  14387. image: {
  14388. source: "./media/characters/memory/front-dress.svg",
  14389. extra: 3641/3545,
  14390. bottom: 0.03
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Micro",
  14397. height: math.unit(6, "inches"),
  14398. default: true
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(5 + 4/12, "feet")
  14403. },
  14404. ]
  14405. )
  14406. };
  14407. characterMakers["Luno"] = () => {
  14408. return makeCharacter(
  14409. { name: "Luno" },
  14410. {
  14411. front: {
  14412. height: math.unit(4 + 11/12, "feet"),
  14413. weight: math.unit(100, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/luno/front.svg",
  14417. extra: 1535/1487,
  14418. bottom: 0.03
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Micro",
  14425. height: math.unit(3, "inches")
  14426. },
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(4 + 11/12, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Macro",
  14434. height: math.unit(300, "feet")
  14435. },
  14436. {
  14437. name: "Megamacro",
  14438. height: math.unit(700, "miles")
  14439. },
  14440. ]
  14441. )
  14442. };
  14443. characterMakers["Jamesy"] = () => {
  14444. return makeCharacter(
  14445. { name: "Jamesy" },
  14446. {
  14447. front: {
  14448. height: math.unit(6 + 2/12, "feet"),
  14449. weight: math.unit(170, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/jamesy/front.svg",
  14453. extra: 440/382,
  14454. bottom: 0.005
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Micro",
  14461. height: math.unit(3, "inches")
  14462. },
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(6 + 2/12, "feet"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Macro",
  14470. height: math.unit(300, "feet")
  14471. },
  14472. {
  14473. name: "Megamacro",
  14474. height: math.unit(700, "miles")
  14475. },
  14476. ]
  14477. )
  14478. };
  14479. characterMakers["Mark"] = () => {
  14480. return makeCharacter(
  14481. { name: "Mark" },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(160, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/mark/front.svg",
  14489. extra: 3300/3100,
  14490. bottom: 136.42/3440.47
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Macro",
  14497. height: math.unit(120, "meters")
  14498. },
  14499. {
  14500. name: "Bigger Macro",
  14501. height: math.unit(350, "meters")
  14502. },
  14503. {
  14504. name: "Megamacro",
  14505. height: math.unit(8, "km"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Continental",
  14510. height: math.unit(4550, "km")
  14511. },
  14512. {
  14513. name: "Planetary",
  14514. height: math.unit(65000, "km")
  14515. },
  14516. ]
  14517. )
  14518. };
  14519. characterMakers["Mac"] = () => {
  14520. return makeCharacter(
  14521. { name: "Mac" },
  14522. {
  14523. front: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(400, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/mac/front.svg",
  14529. extra: 1048/987.7,
  14530. bottom: 60/1107.6,
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(500, "feet"),
  14538. default: true
  14539. },
  14540. ]
  14541. )
  14542. };
  14543. characterMakers["Bari"] = () => {
  14544. return makeCharacter(
  14545. { name: "Bari" },
  14546. {
  14547. front: {
  14548. height: math.unit(5 + 2/12, "feet"),
  14549. weight: math.unit(190, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/bari/front.svg",
  14553. extra: 3156/2880,
  14554. bottom: 0.03
  14555. }
  14556. },
  14557. back: {
  14558. height: math.unit(5 + 2/12, "feet"),
  14559. weight: math.unit(190, "lb"),
  14560. name: "Back",
  14561. image: {
  14562. source: "./media/characters/bari/back.svg",
  14563. extra: 3260/2834,
  14564. bottom: 0.025
  14565. }
  14566. },
  14567. frontPlush: {
  14568. height: math.unit(5 + 2/12, "feet"),
  14569. weight: math.unit(190, "lb"),
  14570. name: "Front (Plush)",
  14571. image: {
  14572. source: "./media/characters/bari/front-plush.svg",
  14573. extra: 1112/1061,
  14574. bottom: 0.002
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(3, "inches")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(5 + 2/12, "feet"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(20, "feet")
  14591. },
  14592. ]
  14593. )
  14594. };
  14595. characterMakers["Hunter Misha Raven"] = () => {
  14596. return makeCharacter(
  14597. { name: "Hunter Misha Raven" },
  14598. {
  14599. front: {
  14600. height: math.unit(6 + 1/12, "feet"),
  14601. weight: math.unit(275, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/hunter-misha-raven/front.svg"
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Mortal",
  14611. height: math.unit(6 + 1/12, "feet")
  14612. },
  14613. {
  14614. name: "Divine",
  14615. height: math.unit(1.12134e34, "parsecs"),
  14616. default: true
  14617. },
  14618. ]
  14619. )
  14620. };
  14621. characterMakers["Max Calore"] = () => {
  14622. return makeCharacter(
  14623. { name: "Max Calore" },
  14624. {
  14625. front: {
  14626. height: math.unit(6 + 3/12, "feet"),
  14627. weight: math.unit(220, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/max-calore/front.svg",
  14631. extra: 1700/1648,
  14632. bottom: 0.01
  14633. }
  14634. },
  14635. back: {
  14636. height: math.unit(6 + 3/12, "feet"),
  14637. weight: math.unit(220, "lb"),
  14638. name: "Back",
  14639. image: {
  14640. source: "./media/characters/max-calore/back.svg",
  14641. extra: 1700/1648,
  14642. bottom: 0.01
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 3/12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. )
  14654. };
  14655. characterMakers["Aspen"] = () => {
  14656. return makeCharacter(
  14657. { name: "Aspen" },
  14658. {
  14659. side: {
  14660. height: math.unit(2 + 8/12, "feet"),
  14661. weight: math.unit(99, "lb"),
  14662. name: "Side",
  14663. image: {
  14664. source: "./media/characters/aspen/side.svg",
  14665. extra: 152/138,
  14666. bottom: 0.032
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(2 + 8/12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. )
  14678. };
  14679. characterMakers["Sheila (Wolf)"] = () => {
  14680. return makeCharacter(
  14681. { name: "Sheila (Wolf)" },
  14682. {
  14683. side: {
  14684. height: math.unit(3 + 2/12, "feet"),
  14685. weight: math.unit(224, "lb"),
  14686. name: "Side",
  14687. image: {
  14688. source: "./media/characters/sheila-wolf/side.svg",
  14689. extra: 179/166,
  14690. bottom: 0.03
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(3 + 2/12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. )
  14702. };
  14703. characterMakers["Michelle"] = () => {
  14704. return makeCharacter(
  14705. { name: "Michelle" },
  14706. {
  14707. side: {
  14708. height: math.unit(1 + 9/12, "feet"),
  14709. weight: math.unit(38, "lb"),
  14710. name: "Side",
  14711. image: {
  14712. source: "./media/characters/michelle/side.svg",
  14713. extra: 147/136.7,
  14714. bottom: 0.03
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(1 + 9/12, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. )
  14726. };
  14727. characterMakers["Nino"] = () => {
  14728. return makeCharacter(
  14729. { name: "Nino" },
  14730. {
  14731. front: {
  14732. height: math.unit(1 + 1/12, "feet"),
  14733. weight: math.unit(18, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/nino/front.svg"
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Normal",
  14743. height: math.unit(1 + 1/12, "feet"),
  14744. default: true
  14745. },
  14746. ]
  14747. )
  14748. };
  14749. characterMakers["Viola"] = () => {
  14750. return makeCharacter(
  14751. { name: "Viola" },
  14752. {
  14753. front: {
  14754. height: math.unit(1, "feet"),
  14755. weight: math.unit(16, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/viola/front.svg"
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(1, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. )
  14770. };
  14771. characterMakers["Atlas"] = () => {
  14772. return makeCharacter(
  14773. { name: "Atlas" },
  14774. {
  14775. front: {
  14776. height: math.unit(6 + 5/12, "feet"),
  14777. weight: math.unit(580, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/atlas/front.svg",
  14781. extra: 298.5/290,
  14782. bottom: 0.015
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(6 + 5/12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. )
  14794. };
  14795. characterMakers["Davy"] = () => {
  14796. return makeCharacter(
  14797. { name: "Davy" },
  14798. {
  14799. side: {
  14800. height: math.unit(1 + 10/12, "feet"),
  14801. weight: math.unit(25, "lb"),
  14802. name: "Side",
  14803. image: {
  14804. source: "./media/characters/davy/side.svg",
  14805. extra: 200/170,
  14806. bottom: 0.01
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(1 + 10/12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. )
  14818. };
  14819. characterMakers["Fiona"] = () => {
  14820. return makeCharacter(
  14821. { name: "Fiona" },
  14822. {
  14823. side: {
  14824. height: math.unit(4 + 8/12, "feet"),
  14825. weight: math.unit(166, "lb"),
  14826. name: "Side",
  14827. image: {
  14828. source: "./media/characters/fiona/side.svg",
  14829. extra: 232/220,
  14830. bottom: 0.03
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(4 + 8/12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. )
  14842. };
  14843. characterMakers["Lyla"] = () => {
  14844. return makeCharacter(
  14845. { name: "Lyla" },
  14846. {
  14847. front: {
  14848. height: math.unit(2, "feet"),
  14849. weight: math.unit(62, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/lyla/front.svg",
  14853. bottom: 0.1
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(2, "feet"),
  14861. default: true
  14862. },
  14863. ]
  14864. )
  14865. };
  14866. characterMakers["Perseus"] = () => {
  14867. return makeCharacter(
  14868. { name: "Perseus" },
  14869. {
  14870. side: {
  14871. height: math.unit(1.8, "feet"),
  14872. weight: math.unit(44, "lb"),
  14873. name: "Side",
  14874. image: {
  14875. source: "./media/characters/perseus/side.svg",
  14876. bottom: 0.21
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(1.8, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. )
  14888. };
  14889. characterMakers["Remus"] = () => {
  14890. return makeCharacter(
  14891. { name: "Remus" },
  14892. {
  14893. side: {
  14894. height: math.unit(4 + 2/12, "feet"),
  14895. weight: math.unit(20, "lb"),
  14896. name: "Side",
  14897. image: {
  14898. source: "./media/characters/remus/side.svg"
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(4 + 2/12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. )
  14910. };
  14911. characterMakers["Raf"] = () => {
  14912. return makeCharacter(
  14913. { name: "Raf" },
  14914. {
  14915. front: {
  14916. height: math.unit(4 + 11/12, "feet"),
  14917. weight: math.unit(114, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/raf/front.svg",
  14921. bottom: 0.01
  14922. }
  14923. },
  14924. side: {
  14925. height: math.unit(4 + 11/12, "feet"),
  14926. weight: math.unit(114, "lb"),
  14927. name: "Side",
  14928. image: {
  14929. source: "./media/characters/raf/side.svg",
  14930. bottom: 0.005
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Micro",
  14937. height: math.unit(2, "inches")
  14938. },
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(4 + 11/12, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(70, "feet")
  14947. },
  14948. ]
  14949. )
  14950. };
  14951. characterMakers["Liam Einarr"] = () => {
  14952. return makeCharacter(
  14953. { name: "Liam Einarr" },
  14954. {
  14955. front: {
  14956. height: math.unit(1.5, "meters"),
  14957. weight: math.unit(68, "kg"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/liam-einarr/front.svg",
  14961. extra: 2822/2666
  14962. }
  14963. },
  14964. back: {
  14965. height: math.unit(1.5, "meters"),
  14966. weight: math.unit(68, "kg"),
  14967. name: "Back",
  14968. image: {
  14969. source: "./media/characters/liam-einarr/back.svg",
  14970. extra: 2822/2666,
  14971. bottom: 0.015
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(1.5, "meters"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(150, "meters")
  14984. },
  14985. {
  14986. name: "Megamacro",
  14987. height: math.unit(35, "km")
  14988. },
  14989. ]
  14990. )
  14991. };
  14992. characterMakers["Linda"] = () => {
  14993. return makeCharacter(
  14994. { name: "Linda" },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(75, "kg"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/linda/front.svg",
  15002. extra: 930/874,
  15003. bottom: 0.004
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(6, "feet"),
  15011. default: true
  15012. },
  15013. ]
  15014. )
  15015. };
  15016. characterMakers["Caylex"] = () => {
  15017. return makeCharacter(
  15018. { name: "Caylex" },
  15019. {
  15020. front: {
  15021. height: math.unit(6 + 8/12, "feet"),
  15022. weight: math.unit(220, "lb"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/caylex/front.svg",
  15026. extra: 821/772,
  15027. bottom: 0.07
  15028. }
  15029. },
  15030. back: {
  15031. height: math.unit(6 + 8/12, "feet"),
  15032. weight: math.unit(220, "lb"),
  15033. name: "Back",
  15034. image: {
  15035. source: "./media/characters/caylex/back.svg",
  15036. extra: 821/772,
  15037. bottom: 0.022
  15038. }
  15039. },
  15040. hand: {
  15041. height: math.unit(1.25, "feet"),
  15042. name: "Hand",
  15043. image: {
  15044. source: "./media/characters/caylex/hand.svg"
  15045. }
  15046. },
  15047. foot: {
  15048. height: math.unit(1.6, "feet"),
  15049. name: "Foot",
  15050. image: {
  15051. source: "./media/characters/caylex/foot.svg"
  15052. }
  15053. },
  15054. armored: {
  15055. height: math.unit(6 + 8/12, "feet"),
  15056. weight: math.unit(250, "lb"),
  15057. name: "Armored",
  15058. image: {
  15059. source: "./media/characters/caylex/armored.svg",
  15060. extra: 1420/1310,
  15061. bottom: 0.045
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(6 + 8/12, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Normal+",
  15073. height: math.unit(12, "feet")
  15074. },
  15075. ]
  15076. )
  15077. };
  15078. characterMakers["Alana"] = () => {
  15079. return makeCharacter(
  15080. { name: "Alana" },
  15081. {
  15082. front: {
  15083. height: math.unit(7 + 6/12, "feet"),
  15084. weight: math.unit(288, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/alana/front.svg",
  15088. extra: 679/653,
  15089. bottom: 22.5/701
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(7 + 6/12, "feet")
  15097. },
  15098. {
  15099. name: "Large",
  15100. height: math.unit(50, "feet")
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(100, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Macro+",
  15109. height: math.unit(200, "feet")
  15110. },
  15111. ]
  15112. )
  15113. };
  15114. characterMakers["Hasani"] = () => {
  15115. return makeCharacter(
  15116. { name: "Hasani" },
  15117. {
  15118. front: {
  15119. height: math.unit(6 + 1/12, "feet"),
  15120. weight: math.unit(210, "lb"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/hasani/front.svg",
  15124. extra: 244/232,
  15125. bottom: 0.01
  15126. }
  15127. },
  15128. back: {
  15129. height: math.unit(6 + 1/12, "feet"),
  15130. weight: math.unit(210, "lb"),
  15131. name: "Back",
  15132. image: {
  15133. source: "./media/characters/hasani/back.svg",
  15134. extra: 244/232,
  15135. bottom: 0.01
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(6 + 1/12, "feet")
  15143. },
  15144. {
  15145. name: "Macro",
  15146. height: math.unit(175, "feet"),
  15147. default: true
  15148. },
  15149. ]
  15150. )
  15151. };
  15152. characterMakers["Nita"] = () => {
  15153. return makeCharacter(
  15154. { name: "Nita" },
  15155. {
  15156. front: {
  15157. height: math.unit(1.82, "meters"),
  15158. weight: math.unit(140, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/nita/front.svg",
  15162. extra: 2473/2363,
  15163. bottom: 0.01
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(1.82, "m")
  15171. },
  15172. {
  15173. name: "Macro",
  15174. height: math.unit(300, "m")
  15175. },
  15176. {
  15177. name: "Mistake Canon",
  15178. height: math.unit(0.5, "miles"),
  15179. default: true
  15180. },
  15181. {
  15182. name: "Big Mistake",
  15183. height: math.unit(13, "miles")
  15184. },
  15185. {
  15186. name: "Playing God",
  15187. height: math.unit(2450, "miles")
  15188. },
  15189. ]
  15190. )
  15191. };
  15192. characterMakers["Shiriko"] = () => {
  15193. return makeCharacter(
  15194. { name: "Shiriko" },
  15195. {
  15196. front: {
  15197. height: math.unit(4, "feet"),
  15198. weight: math.unit(120, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/shiriko/front.svg",
  15202. extra: 195/188
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(4, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. )
  15214. };
  15215. characterMakers["Deja"] = () => {
  15216. return makeCharacter(
  15217. { name: "Deja" },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. name: "front",
  15222. image: {
  15223. source: "./media/characters/deja/front.svg",
  15224. extra: 926/840,
  15225. bottom: 0.07
  15226. }
  15227. },
  15228. },
  15229. [
  15230. {
  15231. name: "Planck Length",
  15232. height: math.unit(1.6e-35, "meters")
  15233. },
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(30.48, "meters"),
  15237. default: true
  15238. },
  15239. {
  15240. name: "Universal",
  15241. height: math.unit(8.8e26, "meters")
  15242. },
  15243. ]
  15244. )
  15245. };
  15246. characterMakers["Anima"] = () => {
  15247. return makeCharacter(
  15248. { name: "Anima" },
  15249. {
  15250. side: {
  15251. height: math.unit(8, "feet"),
  15252. weight: math.unit(6300, "lb"),
  15253. name: "Side",
  15254. image: {
  15255. source: "./media/characters/anima/side.svg",
  15256. bottom: 0.035
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(8, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. )
  15268. };
  15269. characterMakers["Bianca"] = () => {
  15270. return makeCharacter(
  15271. { name: "Bianca" },
  15272. {
  15273. front: {
  15274. height: math.unit(8, "feet"),
  15275. weight: math.unit(350, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/bianca/front.svg",
  15279. extra: 234/225,
  15280. bottom: 0.03
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(8, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. )
  15292. };
  15293. characterMakers["Adinia"] = () => {
  15294. return makeCharacter(
  15295. { name: "Adinia" },
  15296. {
  15297. front: {
  15298. height: math.unit(6, "feet"),
  15299. weight: math.unit(150, "lb"),
  15300. name: "Front",
  15301. image: {
  15302. source: "./media/characters/adinia/front.svg",
  15303. extra: 1845/1672,
  15304. bottom: 0.02
  15305. }
  15306. },
  15307. back: {
  15308. height: math.unit(6, "feet"),
  15309. weight: math.unit(150, "lb"),
  15310. name: "Back",
  15311. image: {
  15312. source: "./media/characters/adinia/back.svg",
  15313. extra: 1845/1672,
  15314. bottom: 0.002
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(11 + 5/12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. )
  15326. };
  15327. characterMakers["Lykasa"] = () => {
  15328. return makeCharacter(
  15329. { name: "Lykasa" },
  15330. {
  15331. front: {
  15332. height: math.unit(3, "meters"),
  15333. weight: math.unit(200, "kg"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/lykasa/front.svg",
  15337. extra: 1076/976,
  15338. bottom: 0.06
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(3, "meters")
  15346. },
  15347. {
  15348. name: "Kaiku",
  15349. height: math.unit(120, "meters"),
  15350. default: true
  15351. },
  15352. {
  15353. name: "Mega Kaiju",
  15354. height: math.unit(240, "km")
  15355. },
  15356. {
  15357. name: "Giga Kaiju",
  15358. height: math.unit(400, "megameters")
  15359. },
  15360. {
  15361. name: "Tera Kaiju",
  15362. height: math.unit(800, "gigameters")
  15363. },
  15364. {
  15365. name: "Kaiju Dragon Goddess",
  15366. height: math.unit(26, "zettaparsecs")
  15367. },
  15368. ]
  15369. )
  15370. };
  15371. characterMakers["Malfaren"] = () => {
  15372. return makeCharacter(
  15373. { name: "Malfaren" },
  15374. {
  15375. side: {
  15376. height: math.unit(283/124*6, "feet"),
  15377. weight: math.unit(35000, "lb"),
  15378. name: "Side",
  15379. image: {
  15380. source: "./media/characters/malfaren/side.svg",
  15381. extra: 2500/1010,
  15382. bottom: 0.01
  15383. }
  15384. },
  15385. front: {
  15386. height: math.unit(22.36, "feet"),
  15387. weight: math.unit(35000, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/malfaren/front.svg",
  15391. extra: 1631/1476,
  15392. bottom: 0.01
  15393. }
  15394. },
  15395. maw: {
  15396. height: math.unit(6.9, "feet"),
  15397. name: "Maw",
  15398. image: {
  15399. source: "./media/characters/malfaren/maw.svg"
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Big",
  15406. height: math.unit(283/162*6, "feet"),
  15407. },
  15408. {
  15409. name: "Bigger",
  15410. height: math.unit(283/124*6, "feet")
  15411. },
  15412. {
  15413. name: "Massive",
  15414. height: math.unit(283/92*6, "feet"),
  15415. default: true
  15416. },
  15417. {
  15418. name: "👀💦",
  15419. height: math.unit(283/73*6, "feet"),
  15420. },
  15421. ]
  15422. )
  15423. };
  15424. characterMakers["Kernel"] = () => {
  15425. return makeCharacter(
  15426. { name: "Kernel" },
  15427. {
  15428. front: {
  15429. height: math.unit(1.7, "m"),
  15430. weight: math.unit(70, "kg"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/kernel/front.svg",
  15434. extra: 222/210,
  15435. bottom: 0.007
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Nano",
  15442. height: math.unit(17, "micrometers")
  15443. },
  15444. {
  15445. name: "Micro",
  15446. height: math.unit(1.7, "mm")
  15447. },
  15448. {
  15449. name: "Small",
  15450. height: math.unit(1.7, "cm")
  15451. },
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(1.7, "m"),
  15455. default: true
  15456. },
  15457. ]
  15458. )
  15459. };
  15460. characterMakers["Jayne Folest"] = () => {
  15461. return makeCharacter(
  15462. { name: "Jayne Folest" },
  15463. {
  15464. front: {
  15465. height: math.unit(1.75, "meters"),
  15466. weight: math.unit(65, "kg"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/jayne-folest/front.svg",
  15470. extra: 2115/2007,
  15471. bottom: 0.02
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(1.75, "meters"),
  15476. weight: math.unit(65, "kg"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/jayne-folest/back.svg",
  15480. extra: 2115/2007,
  15481. bottom: 0.005
  15482. }
  15483. },
  15484. frontClothed: {
  15485. height: math.unit(1.75, "meters"),
  15486. weight: math.unit(65, "kg"),
  15487. name: "Front (Clothed)",
  15488. image: {
  15489. source: "./media/characters/jayne-folest/front-clothed.svg",
  15490. extra: 2115/2007,
  15491. bottom: 0.035
  15492. }
  15493. },
  15494. hand: {
  15495. height: math.unit(1/1.260, "feet"),
  15496. name: "Hand",
  15497. image: {
  15498. source: "./media/characters/jayne-folest/hand.svg"
  15499. }
  15500. },
  15501. foot: {
  15502. height: math.unit(1/0.918, "feet"),
  15503. name: "Foot",
  15504. image: {
  15505. source: "./media/characters/jayne-folest/foot.svg"
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Micro",
  15512. height: math.unit(4, "cm")
  15513. },
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(1.75, "meters")
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(47.5, "meters"),
  15521. default: true
  15522. },
  15523. ]
  15524. )
  15525. };
  15526. characterMakers["Algier"] = () => {
  15527. return makeCharacter(
  15528. { name: "Algier" },
  15529. {
  15530. front: {
  15531. height: math.unit(180, "cm"),
  15532. weight: math.unit(70, "kg"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/algier/front.svg",
  15536. extra: 596/572,
  15537. bottom: 0.04
  15538. }
  15539. },
  15540. back: {
  15541. height: math.unit(180, "cm"),
  15542. weight: math.unit(70, "kg"),
  15543. name: "Back",
  15544. image: {
  15545. source: "./media/characters/algier/back.svg",
  15546. extra: 596/572,
  15547. bottom: 0.025
  15548. }
  15549. },
  15550. frontdressed: {
  15551. height: math.unit(180, "cm"),
  15552. weight: math.unit(150, "kg"),
  15553. name: "Front-dressed",
  15554. image: {
  15555. source: "./media/characters/algier/front-dressed.svg",
  15556. extra: 596/572,
  15557. bottom: 0.038
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(5, "cm")
  15565. },
  15566. {
  15567. name: "Normal",
  15568. height: math.unit(180, "cm"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(64, "m")
  15574. },
  15575. ]
  15576. )
  15577. };
  15578. characterMakers["Pretzel"] = () => {
  15579. return makeCharacter(
  15580. { name: "Pretzel" },
  15581. {
  15582. upright: {
  15583. height: math.unit(7, "feet"),
  15584. weight: math.unit(300, "lb"),
  15585. name: "Upright",
  15586. image: {
  15587. source: "./media/characters/pretzel/upright.svg",
  15588. extra: 534/522,
  15589. bottom: 0.065
  15590. }
  15591. },
  15592. sprawling: {
  15593. height: math.unit(3.75, "feet"),
  15594. weight: math.unit(300, "lb"),
  15595. name: "Sprawling",
  15596. image: {
  15597. source: "./media/characters/pretzel/sprawling.svg",
  15598. extra: 314/281,
  15599. bottom: 0.1
  15600. }
  15601. },
  15602. tongue: {
  15603. height: math.unit(2, "feet"),
  15604. name: "Tongue",
  15605. image: {
  15606. source: "./media/characters/pretzel/tongue.svg"
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(7, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Oversized",
  15618. height: math.unit(15, "feet")
  15619. },
  15620. {
  15621. name: "Huge",
  15622. height: math.unit(30, "feet")
  15623. },
  15624. {
  15625. name: "Macro",
  15626. height: math.unit(250, "feet")
  15627. },
  15628. ]
  15629. )
  15630. };
  15631. characterMakers["Roxi"] = () => {
  15632. return makeCharacter(
  15633. { name: "Roxi" },
  15634. {
  15635. sideFront: {
  15636. height: math.unit(5 + 2/12, "feet"),
  15637. weight: math.unit(120, "lb"),
  15638. name: "Front Side",
  15639. image: {
  15640. source: "./media/characters/roxi/side-front.svg",
  15641. extra: 2924/2717,
  15642. bottom: 0.08
  15643. }
  15644. },
  15645. sideBack: {
  15646. height: math.unit(5 + 2/12, "feet"),
  15647. weight: math.unit(120, "lb"),
  15648. name: "Back Side",
  15649. image: {
  15650. source: "./media/characters/roxi/side-back.svg",
  15651. extra: 2904/2693,
  15652. bottom: 0.06
  15653. }
  15654. },
  15655. front: {
  15656. height: math.unit(5 + 2/12, "feet"),
  15657. weight: math.unit(120, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/roxi/front.svg",
  15661. extra: 2028/1907,
  15662. bottom: 0.01
  15663. }
  15664. },
  15665. frontAlt: {
  15666. height: math.unit(5 + 2/12, "feet"),
  15667. weight: math.unit(120, "lb"),
  15668. name: "Front (Alt)",
  15669. image: {
  15670. source: "./media/characters/roxi/front-alt.svg",
  15671. extra: 1828/1798,
  15672. bottom: 0.01
  15673. }
  15674. },
  15675. sitting: {
  15676. height: math.unit(2.8, "feet"),
  15677. weight: math.unit(120, "lb"),
  15678. name: "Sitting",
  15679. image: {
  15680. source: "./media/characters/roxi/sitting.svg",
  15681. extra: 2660/2462,
  15682. bottom: 0.1
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(5 + 2/12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. )
  15694. };
  15695. characterMakers["Shadow"] = () => {
  15696. return makeCharacter(
  15697. { name: "Shadow" },
  15698. {
  15699. side: {
  15700. height: math.unit(55, "feet"),
  15701. weight: math.unit(153, "tons"),
  15702. name: "Side",
  15703. image: {
  15704. source: "./media/characters/shadow/side.svg",
  15705. extra: 701/628,
  15706. bottom: 0.02
  15707. }
  15708. },
  15709. flying: {
  15710. height: math.unit(145, "feet"),
  15711. weight: math.unit(153, "tons"),
  15712. name: "Flying",
  15713. image: {
  15714. source: "./media/characters/shadow/flying.svg"
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(55, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. )
  15726. };
  15727. characterMakers["Marcie"] = () => {
  15728. return makeCharacter(
  15729. { name: "Marcie" },
  15730. {
  15731. front: {
  15732. height: math.unit(6, "feet"),
  15733. weight: math.unit(200, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/marcie/front.svg",
  15737. extra: 960/876,
  15738. bottom: 58/1017.87
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Macro",
  15745. height: math.unit(1, "mile"),
  15746. default: true
  15747. },
  15748. ]
  15749. )
  15750. };
  15751. characterMakers["Kachina"] = () => {
  15752. return makeCharacter(
  15753. { name: "Kachina" },
  15754. {
  15755. front: {
  15756. height: math.unit(7, "feet"),
  15757. weight: math.unit(200, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/kachina/front.svg",
  15761. extra: 1290.68/1119,
  15762. bottom: 36.5/1327.18
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(7, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. )
  15774. };
  15775. characterMakers["Kash"] = () => {
  15776. return makeCharacter(
  15777. { name: "Kash" },
  15778. {
  15779. looking: {
  15780. height: math.unit(2, "meters"),
  15781. weight: math.unit(300, "kg"),
  15782. name: "Looking",
  15783. image: {
  15784. source: "./media/characters/kash/looking.svg",
  15785. extra: 474/344,
  15786. bottom: 0.03
  15787. }
  15788. },
  15789. side: {
  15790. height: math.unit(2, "meters"),
  15791. weight: math.unit(300, "kg"),
  15792. name: "Side",
  15793. image: {
  15794. source: "./media/characters/kash/side.svg",
  15795. extra: 302/251,
  15796. bottom: 0.03
  15797. }
  15798. },
  15799. front: {
  15800. height: math.unit(2, "meters"),
  15801. weight: math.unit(300, "kg"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/kash/front.svg",
  15805. extra: 495/360,
  15806. bottom: 0.015
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(2, "meters"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Big",
  15818. height: math.unit(3, "meters")
  15819. },
  15820. {
  15821. name: "Large",
  15822. height: math.unit(5, "meters")
  15823. },
  15824. ]
  15825. )
  15826. };
  15827. characterMakers["Lalim"] = () => {
  15828. return makeCharacter(
  15829. { name: "Lalim" },
  15830. {
  15831. feeding: {
  15832. height: math.unit(6.7, "feet"),
  15833. weight: math.unit(350, "lb"),
  15834. name: "Feeding",
  15835. image: {
  15836. source: "./media/characters/lalim/feeding.svg",
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(6.7, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. )
  15848. };
  15849. characterMakers["De'Vout"] = () => {
  15850. return makeCharacter(
  15851. { name: "De'Vout" },
  15852. {
  15853. front: {
  15854. height: math.unit(9.5, "feet"),
  15855. weight: math.unit(600, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/de'vout/front.svg",
  15859. extra: 1443/1328,
  15860. bottom: 0.025
  15861. }
  15862. },
  15863. back: {
  15864. height: math.unit(9.5, "feet"),
  15865. weight: math.unit(600, "lb"),
  15866. name: "Back",
  15867. image: {
  15868. source: "./media/characters/de'vout/back.svg",
  15869. extra: 1443/1328
  15870. }
  15871. },
  15872. frontDressed: {
  15873. height: math.unit(9.5, "feet"),
  15874. weight: math.unit(600, "lb"),
  15875. name: "Front (Dressed",
  15876. image: {
  15877. source: "./media/characters/de'vout/front-dressed.svg",
  15878. extra: 1443/1328,
  15879. bottom: 0.025
  15880. }
  15881. },
  15882. backDressed: {
  15883. height: math.unit(9.5, "feet"),
  15884. weight: math.unit(600, "lb"),
  15885. name: "Back (Dressed",
  15886. image: {
  15887. source: "./media/characters/de'vout/back-dressed.svg",
  15888. extra: 1443/1328
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(9.5, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. )
  15900. };
  15901. characterMakers["Talana"] = () => {
  15902. return makeCharacter(
  15903. { name: "Talana" },
  15904. {
  15905. front: {
  15906. height: math.unit(8, "feet"),
  15907. weight: math.unit(225, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/talana/front.svg",
  15911. extra: 1410/1300,
  15912. bottom: 0.015
  15913. }
  15914. },
  15915. frontDressed: {
  15916. height: math.unit(8, "feet"),
  15917. weight: math.unit(225, "lb"),
  15918. name: "Front (Dressed",
  15919. image: {
  15920. source: "./media/characters/talana/front-dressed.svg",
  15921. extra: 1410/1300,
  15922. bottom: 0.015
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(8, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. )
  15934. };
  15935. characterMakers["Xeauvok"] = () => {
  15936. return makeCharacter(
  15937. { name: "Xeauvok" },
  15938. {
  15939. side: {
  15940. height: math.unit(7.2, "feet"),
  15941. weight: math.unit(150, "lb"),
  15942. name: "Side",
  15943. image: {
  15944. source: "./media/characters/xeauvok/side.svg",
  15945. extra: 1975/1523,
  15946. bottom: 0.07
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(7.2, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. )
  15958. };
  15959. characterMakers["Zara"] = () => {
  15960. return makeCharacter(
  15961. { name: "Zara" },
  15962. {
  15963. side: {
  15964. height: math.unit(10, "feet"),
  15965. weight: math.unit(900, "kg"),
  15966. name: "Side",
  15967. image: {
  15968. source: "./media/characters/zara/side.svg",
  15969. extra: 504/498
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(10, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. )
  15981. };
  15982. characterMakers["Richard (Dragon)"] = () => {
  15983. return makeCharacter(
  15984. { name: "Richard (Dragon)" },
  15985. {
  15986. side: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Side",
  15990. image: {
  15991. source: "./media/characters/richard-dragon/side.svg",
  15992. extra: 845/340,
  15993. bottom: 0.017
  15994. }
  15995. },
  15996. maw: {
  15997. height: math.unit(2.97, "feet"),
  15998. name: "Maw",
  15999. image: {
  16000. source: "./media/characters/richard-dragon/maw.svg"
  16001. }
  16002. },
  16003. },
  16004. [
  16005. ]
  16006. )
  16007. };
  16008. characterMakers["Richard (Smeargle)"] = () => {
  16009. return makeCharacter(
  16010. { name: "Richard (Smeargle)" },
  16011. {
  16012. front: {
  16013. height: math.unit(4, "feet"),
  16014. weight: math.unit(100, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/richard-smeargle/front.svg",
  16018. extra: 2952/2820,
  16019. bottom: 0.028
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(4, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Dynamax",
  16031. height: math.unit(20, "meters")
  16032. },
  16033. ]
  16034. )
  16035. };
  16036. characterMakers["Klay"] = () => {
  16037. return makeCharacter(
  16038. { name: "Klay" },
  16039. {
  16040. front: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(110, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/klay/front.svg",
  16046. extra: 962/883,
  16047. bottom: 0.04
  16048. }
  16049. },
  16050. back: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(110, "lb"),
  16053. name: "Back",
  16054. image: {
  16055. source: "./media/characters/klay/back.svg",
  16056. extra: 962/883
  16057. }
  16058. },
  16059. beans: {
  16060. height: math.unit(1.15, "feet"),
  16061. name: "Beans",
  16062. image: {
  16063. source: "./media/characters/klay/beans.svg"
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Micro",
  16070. height: math.unit(6, "inches")
  16071. },
  16072. {
  16073. name: "Mini",
  16074. height: math.unit(3, "feet")
  16075. },
  16076. {
  16077. name: "Normal",
  16078. height: math.unit(6, "feet"),
  16079. default: true
  16080. },
  16081. {
  16082. name: "Big",
  16083. height: math.unit(25, "feet")
  16084. },
  16085. {
  16086. name: "Macro",
  16087. height: math.unit(100, "feet")
  16088. },
  16089. {
  16090. name: "Megamacro",
  16091. height: math.unit(400, "feet")
  16092. },
  16093. ]
  16094. )
  16095. };
  16096. characterMakers["Marcus"] = () => {
  16097. return makeCharacter(
  16098. { name: "Marcus" },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(160, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/marcus/front.svg",
  16106. extra: 734/676,
  16107. bottom: 0.03
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Little",
  16114. height: math.unit(6, "feet")
  16115. },
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(110, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(250, "feet")
  16124. },
  16125. {
  16126. name: "Megamacro",
  16127. height: math.unit(1000, "feet")
  16128. },
  16129. ]
  16130. )
  16131. };
  16132. characterMakers["Claude DelRoute"] = () => {
  16133. return makeCharacter(
  16134. { name: "Claude DelRoute" },
  16135. {
  16136. front: {
  16137. height: math.unit(7, "feet"),
  16138. weight: math.unit(275, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/claude-delroute/front.svg",
  16142. extra: 230/214,
  16143. bottom: 0.007
  16144. }
  16145. },
  16146. side: {
  16147. height: math.unit(7, "feet"),
  16148. weight: math.unit(275, "lb"),
  16149. name: "Side",
  16150. image: {
  16151. source: "./media/characters/claude-delroute/side.svg",
  16152. extra: 222/214,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. back: {
  16157. height: math.unit(7, "feet"),
  16158. weight: math.unit(275, "lb"),
  16159. name: "Back",
  16160. image: {
  16161. source: "./media/characters/claude-delroute/back.svg",
  16162. extra: 230/214,
  16163. bottom: 0.015
  16164. }
  16165. },
  16166. maw: {
  16167. height: math.unit(0.6407, "meters"),
  16168. name: "Maw",
  16169. image: {
  16170. source: "./media/characters/claude-delroute/maw.svg"
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(7, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Lorge",
  16182. height: math.unit(20, "feet")
  16183. },
  16184. ]
  16185. )
  16186. };
  16187. characterMakers["Dragonien"] = () => {
  16188. return makeCharacter(
  16189. { name: "Dragonien" },
  16190. {
  16191. front: {
  16192. height: math.unit(8 + 4/12, "feet"),
  16193. weight: math.unit(600, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/dragonien/front.svg",
  16197. extra: 100/94,
  16198. bottom: 3.3/103.3445
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(8 + 4/12, "feet"),
  16203. weight: math.unit(600, "lb"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/dragonien/back.svg",
  16207. extra: 776/746,
  16208. bottom: 6.4/782.0616
  16209. }
  16210. },
  16211. foot: {
  16212. height: math.unit(1.54, "feet"),
  16213. name: "Foot",
  16214. image: {
  16215. source: "./media/characters/dragonien/foot.svg",
  16216. }
  16217. },
  16218. },
  16219. [
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(8 + 4/12, "feet"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(200, "feet")
  16228. },
  16229. {
  16230. name: "Megamacro",
  16231. height: math.unit(1, "mile")
  16232. },
  16233. {
  16234. name: "Gigamacro",
  16235. height: math.unit(1000, "miles")
  16236. },
  16237. ]
  16238. )
  16239. };
  16240. characterMakers["Desta"] = () => {
  16241. return makeCharacter(
  16242. { name: "Desta" },
  16243. {
  16244. front: {
  16245. height: math.unit(5 + 2/12, "feet"),
  16246. weight: math.unit(110, "lb"),
  16247. name: "Front",
  16248. image: {
  16249. source: "./media/characters/desta/front.svg",
  16250. extra: 1482/1417
  16251. }
  16252. },
  16253. side: {
  16254. height: math.unit(5 + 2/12, "feet"),
  16255. weight: math.unit(110, "lb"),
  16256. name: "Side",
  16257. image: {
  16258. source: "./media/characters/desta/side.svg",
  16259. extra: 2579/2491,
  16260. bottom: 0.053
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(6, "inches")
  16268. },
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(5 + 2/12, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(62, "feet")
  16277. },
  16278. {
  16279. name: "Megamacro",
  16280. height: math.unit(1800, "feet")
  16281. },
  16282. ]
  16283. )
  16284. };
  16285. characterMakers["Storm Alystar"] = () => {
  16286. return makeCharacter(
  16287. { name: "Storm Alystar" },
  16288. {
  16289. front: {
  16290. height: math.unit(10, "feet"),
  16291. weight: math.unit(700, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/storm-alystar/front.svg",
  16295. extra: 2112/1898,
  16296. bottom: 0.034
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(3.5, "inches")
  16304. },
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(10, "feet"),
  16308. default: true
  16309. },
  16310. {
  16311. name: "Macro",
  16312. height: math.unit(400, "feet")
  16313. },
  16314. {
  16315. name: "Deific",
  16316. height: math.unit(60, "miles")
  16317. },
  16318. ]
  16319. )
  16320. };
  16321. characterMakers["Ilia"] = () => {
  16322. return makeCharacter(
  16323. { name: "Ilia" },
  16324. {
  16325. front: {
  16326. height: math.unit(2.35, "meters"),
  16327. weight: math.unit(119, "kg"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/ilia/front.svg",
  16331. extra: 1285/1255,
  16332. bottom: 0.06
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(2.35, "meters")
  16340. },
  16341. {
  16342. name: "Macro",
  16343. height: math.unit(140, "meters"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Megamacro",
  16348. height: math.unit(100, "miles")
  16349. },
  16350. ]
  16351. )
  16352. };
  16353. characterMakers["KingDead"] = () => {
  16354. return makeCharacter(
  16355. { name: "KingDead" },
  16356. {
  16357. front: {
  16358. height: math.unit(6 + 5/12, "feet"),
  16359. weight: math.unit(190, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/kingdead/front.svg",
  16363. extra: 1228/1177
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Micro",
  16370. height: math.unit(7, "inches")
  16371. },
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(6 + 5/12, "feet")
  16375. },
  16376. {
  16377. name: "Macro",
  16378. height: math.unit(150, "feet"),
  16379. default: true
  16380. },
  16381. {
  16382. name: "Megamacro",
  16383. height: math.unit(200, "miles")
  16384. },
  16385. ]
  16386. )
  16387. };
  16388. characterMakers["Kyrehx"] = () => {
  16389. return makeCharacter(
  16390. { name: "Kyrehx" },
  16391. {
  16392. front: {
  16393. height: math.unit(8, "feet"),
  16394. weight: math.unit(600, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/kyrehx/front.svg",
  16398. extra: 1195/1095,
  16399. bottom: 0.034
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Micro",
  16406. height: math.unit(2, "inches")
  16407. },
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(8, "feet"),
  16411. default: true
  16412. },
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(255, "feet")
  16416. },
  16417. ]
  16418. )
  16419. };
  16420. characterMakers["Xang"] = () => {
  16421. return makeCharacter(
  16422. { name: "Xang" },
  16423. {
  16424. front: {
  16425. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16426. weight: math.unit(184, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/xang/front.svg",
  16430. extra: 845/755
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(0.935 * (6 + 8/12), "feet"),
  16438. default: true
  16439. },
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(0.935 * 146, "feet")
  16443. },
  16444. {
  16445. name: "Megamacro",
  16446. height: math.unit(0.935 * 3, "miles")
  16447. },
  16448. ]
  16449. )
  16450. };
  16451. characterMakers["Doc Weardno"] = () => {
  16452. return makeCharacter(
  16453. { name: "Doc Weardno" },
  16454. {
  16455. frontDressed: {
  16456. height: math.unit(5 + 7/12, "feet"),
  16457. weight: math.unit(140, "lb"),
  16458. name: "Front (Dressed)",
  16459. image: {
  16460. source: "./media/characters/doc-weardno/front-dressed.svg",
  16461. extra: 263/234
  16462. }
  16463. },
  16464. backDressed: {
  16465. height: math.unit(5 + 7/12, "feet"),
  16466. weight: math.unit(140, "lb"),
  16467. name: "Back (Dressed)",
  16468. image: {
  16469. source: "./media/characters/doc-weardno/back-dressed.svg",
  16470. extra: 266/238
  16471. }
  16472. },
  16473. front: {
  16474. height: math.unit(5 + 7/12, "feet"),
  16475. weight: math.unit(140, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/doc-weardno/front.svg",
  16479. extra: 254/233
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Micro",
  16486. height: math.unit(3, "inches")
  16487. },
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(5 + 7/12, "feet"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Macro",
  16495. height: math.unit(25, "feet")
  16496. },
  16497. {
  16498. name: "Megamacro",
  16499. height: math.unit(2, "miles")
  16500. },
  16501. ]
  16502. )
  16503. };
  16504. characterMakers["Seth Whilst"] = () => {
  16505. return makeCharacter(
  16506. { name: "Seth Whilst" },
  16507. {
  16508. front: {
  16509. height: math.unit(6 + 2/12, "feet"),
  16510. weight: math.unit(153, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/seth-whilst/front.svg",
  16514. bottom: 0.07
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Micro",
  16521. height: math.unit(5, "inches")
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(6 + 2/12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. )
  16530. };
  16531. characterMakers["Pocket Jabari"] = () => {
  16532. return makeCharacter(
  16533. { name: "Pocket Jabari" },
  16534. {
  16535. front: {
  16536. height: math.unit(3, "inches"),
  16537. weight: math.unit(8, "grams"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/pocket-jabari/front.svg",
  16541. extra: 1024/974,
  16542. bottom: 0.039
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Minimicro",
  16549. height: math.unit(8, "mm")
  16550. },
  16551. {
  16552. name: "Micro",
  16553. height: math.unit(3, "inches"),
  16554. default: true
  16555. },
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(3, "feet")
  16559. },
  16560. ]
  16561. )
  16562. };
  16563. characterMakers["Sapphy"] = () => {
  16564. return makeCharacter(
  16565. { name: "Sapphy" },
  16566. {
  16567. front: {
  16568. height: math.unit(15, "feet"),
  16569. weight: math.unit(3280, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/sapphy/front.svg",
  16573. extra: 671/577,
  16574. bottom: 0.085
  16575. }
  16576. },
  16577. back: {
  16578. height: math.unit(15, "feet"),
  16579. weight: math.unit(3280, "lb"),
  16580. name: "Back",
  16581. image: {
  16582. source: "./media/characters/sapphy/back.svg",
  16583. extra: 631/607,
  16584. bottom: 0.045
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(15, "feet")
  16592. },
  16593. {
  16594. name: "Casual Macro",
  16595. height: math.unit(120, "feet")
  16596. },
  16597. {
  16598. name: "Macro",
  16599. height: math.unit(2150, "feet"),
  16600. default: true
  16601. },
  16602. {
  16603. name: "Megamacro",
  16604. height: math.unit(8, "miles")
  16605. },
  16606. {
  16607. name: "Galaxy Mom",
  16608. height: math.unit(6, "megalightyears")
  16609. },
  16610. ]
  16611. )
  16612. };
  16613. characterMakers["Kiro"] = () => {
  16614. return makeCharacter(
  16615. { name: "Kiro" },
  16616. {
  16617. front: {
  16618. height: math.unit(6, "feet"),
  16619. weight: math.unit(170, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/kiro/front.svg",
  16623. extra: 1064/1012,
  16624. bottom: 0.052
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Micro",
  16631. height: math.unit(6, "inches")
  16632. },
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(6, "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Macro",
  16640. height: math.unit(72, "feet")
  16641. },
  16642. ]
  16643. )
  16644. };
  16645. characterMakers["Irishfox"] = () => {
  16646. return makeCharacter(
  16647. { name: "Irishfox" },
  16648. {
  16649. front: {
  16650. height: math.unit(5 + 9/12, "feet"),
  16651. weight: math.unit(175, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/irishfox/front.svg",
  16655. extra: 1912/1680,
  16656. bottom: 0.02
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Nano",
  16663. height: math.unit(1, "mm")
  16664. },
  16665. {
  16666. name: "Micro",
  16667. height: math.unit(2, "inches")
  16668. },
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(5 + 9/12, "feet"),
  16672. default: true
  16673. },
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(45, "feet")
  16677. },
  16678. ]
  16679. )
  16680. };
  16681. characterMakers["Aronai Sieyes"] = () => {
  16682. return makeCharacter(
  16683. { name: "Aronai Sieyes" },
  16684. {
  16685. front: {
  16686. height: math.unit(6 + 1/12, "feet"),
  16687. weight: math.unit(150, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/aronai-sieyes/front.svg",
  16691. extra: 1556/1480,
  16692. bottom: 0.015
  16693. }
  16694. },
  16695. side: {
  16696. height: math.unit(6 + 1/12, "feet"),
  16697. weight: math.unit(150, "lb"),
  16698. name: "Side",
  16699. image: {
  16700. source: "./media/characters/aronai-sieyes/side.svg",
  16701. extra: 1433/1390,
  16702. bottom: 0.0393
  16703. }
  16704. },
  16705. back: {
  16706. height: math.unit(6 + 1/12, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Back",
  16709. image: {
  16710. source: "./media/characters/aronai-sieyes/back.svg",
  16711. extra: 1544/1494,
  16712. bottom: 0.02
  16713. }
  16714. },
  16715. frontClothed: {
  16716. height: math.unit(6 + 1/12, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Front (Clothed)",
  16719. image: {
  16720. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16721. extra: 1582/1527
  16722. }
  16723. },
  16724. feral: {
  16725. height: math.unit(18, "feet"),
  16726. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16727. name: "Feral",
  16728. image: {
  16729. source: "./media/characters/aronai-sieyes/feral.svg",
  16730. extra: 1530/1240,
  16731. bottom: 0.035
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Micro",
  16738. height: math.unit(2, "inches")
  16739. },
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6 + 1/12, "feet"),
  16743. default: true
  16744. }
  16745. ]
  16746. )
  16747. };
  16748. characterMakers["Xuna"] = () => {
  16749. return makeCharacter(
  16750. { name: "Xuna" },
  16751. {
  16752. front: {
  16753. height: math.unit(12, "feet"),
  16754. weight: math.unit(410, "kg"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/xuna/front.svg",
  16758. extra: 2184/1980
  16759. }
  16760. },
  16761. side: {
  16762. height: math.unit(12, "feet"),
  16763. weight: math.unit(410, "kg"),
  16764. name: "Side",
  16765. image: {
  16766. source: "./media/characters/xuna/side.svg",
  16767. extra: 2184/1980
  16768. }
  16769. },
  16770. back: {
  16771. height: math.unit(12, "feet"),
  16772. weight: math.unit(410, "kg"),
  16773. name: "Back",
  16774. image: {
  16775. source: "./media/characters/xuna/back.svg",
  16776. extra: 2184/1980
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Nano glow",
  16783. height: math.unit(10, "nm")
  16784. },
  16785. {
  16786. name: "Micro floof",
  16787. height: math.unit(0.3, "m")
  16788. },
  16789. {
  16790. name: "Huggable softy boi",
  16791. height: math.unit(3.6576, "m"),
  16792. default: true
  16793. },
  16794. {
  16795. name: "Admirable floof",
  16796. height: math.unit(80, "meters")
  16797. },
  16798. {
  16799. name: "Gentle macro",
  16800. height: math.unit(300, "meters")
  16801. },
  16802. {
  16803. name: "Very careful floof",
  16804. height: math.unit(3200, "meters")
  16805. },
  16806. {
  16807. name: "The mega floof",
  16808. height: math.unit(36000, "meters")
  16809. },
  16810. {
  16811. name: "Giga-fur-Wicker",
  16812. height: math.unit(4800000, "meters")
  16813. },
  16814. {
  16815. name: "Licky world",
  16816. height: math.unit(20000000, "meters")
  16817. },
  16818. {
  16819. name: "Floofy cyan sun",
  16820. height: math.unit(1500000000, "meters")
  16821. },
  16822. {
  16823. name: "Milky Wicker",
  16824. height: math.unit(1000000000000000000000, "meters")
  16825. },
  16826. {
  16827. name: "The observing Wicker",
  16828. height: math.unit(999999999999999999999999999, "meters")
  16829. },
  16830. ]
  16831. )
  16832. };
  16833. characterMakers["Arokha Sieyes"] = () => {
  16834. return makeCharacter(
  16835. { name: "Arokha Sieyes" },
  16836. {
  16837. front: {
  16838. height: math.unit(5 + 9/12, "feet"),
  16839. weight: math.unit(150, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/arokha-sieyes/front.svg",
  16843. extra: 1425/1284,
  16844. bottom: 0.05
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(5 + 9/12, "feet")
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(30, "meters"),
  16856. default: true
  16857. },
  16858. ]
  16859. )
  16860. };
  16861. characterMakers["Arokh Sieyes"] = () => {
  16862. return makeCharacter(
  16863. { name: "Arokh Sieyes" },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(180, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/arokh-sieyes/front.svg",
  16871. extra: 1830/1769,
  16872. bottom: 0.01
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(6, "feet")
  16880. },
  16881. {
  16882. name: "Macro",
  16883. height: math.unit(30, "meters"),
  16884. default: true
  16885. },
  16886. ]
  16887. )
  16888. };
  16889. characterMakers["Goldeneye"] = () => {
  16890. return makeCharacter(
  16891. { name: "Goldeneye" },
  16892. {
  16893. side: {
  16894. height: math.unit(13 + 1/12, "feet"),
  16895. weight: math.unit(8.5, "tonnes"),
  16896. name: "Side",
  16897. image: {
  16898. source: "./media/characters/goldeneye/side.svg",
  16899. extra: 1182/778,
  16900. bottom: 0.067
  16901. }
  16902. },
  16903. paw: {
  16904. height: math.unit(3.4, "feet"),
  16905. name: "Paw",
  16906. image: {
  16907. source: "./media/characters/goldeneye/paw.svg"
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(13 + 1/12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. )
  16919. };
  16920. characterMakers["Leonardo Lycheborne"] = () => {
  16921. return makeCharacter(
  16922. { name: "Leonardo Lycheborne" },
  16923. {
  16924. front: {
  16925. height: math.unit(6 + 1/12, "feet"),
  16926. weight: math.unit(210, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/leonardo-lycheborne/front.svg",
  16930. extra: 390/365,
  16931. bottom: 0.032
  16932. }
  16933. },
  16934. side: {
  16935. height: math.unit(6 + 1/12, "feet"),
  16936. weight: math.unit(210, "lb"),
  16937. name: "Side",
  16938. image: {
  16939. source: "./media/characters/leonardo-lycheborne/side.svg",
  16940. extra: 390/365,
  16941. bottom: 0.005
  16942. }
  16943. },
  16944. back: {
  16945. height: math.unit(6 + 1/12, "feet"),
  16946. weight: math.unit(210, "lb"),
  16947. name: "Back",
  16948. image: {
  16949. source: "./media/characters/leonardo-lycheborne/back.svg",
  16950. extra: 392/366,
  16951. bottom: 0.01
  16952. }
  16953. },
  16954. hand: {
  16955. height: math.unit(1.08, "feet"),
  16956. name: "Hand",
  16957. image: {
  16958. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16959. }
  16960. },
  16961. foot: {
  16962. height: math.unit(1.32, "feet"),
  16963. name: "Foot",
  16964. image: {
  16965. source: "./media/characters/leonardo-lycheborne/foot.svg"
  16966. }
  16967. },
  16968. were: {
  16969. height: math.unit(20, "feet"),
  16970. weight: math.unit(7800, "lb"),
  16971. name: "Were",
  16972. image: {
  16973. source: "./media/characters/leonardo-lycheborne/were.svg",
  16974. extra: 308/294,
  16975. bottom: 0.048
  16976. }
  16977. },
  16978. feral: {
  16979. height: math.unit(7.5, "feet"),
  16980. weight: math.unit(600, "lb"),
  16981. name: "Feral",
  16982. image: {
  16983. source: "./media/characters/leonardo-lycheborne/feral.svg",
  16984. extra: 210/186,
  16985. bottom: 0.108
  16986. }
  16987. },
  16988. taur: {
  16989. height: math.unit(11, "feet"),
  16990. weight: math.unit(3300, "lb"),
  16991. name: "Taur",
  16992. image: {
  16993. source: "./media/characters/leonardo-lycheborne/taur.svg",
  16994. extra: 320/303,
  16995. bottom: 0.025
  16996. }
  16997. },
  16998. barghest: {
  16999. height: math.unit(11, "feet"),
  17000. weight: math.unit(1300, "lb"),
  17001. name: "Barghest",
  17002. image: {
  17003. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17004. extra: 323/302,
  17005. bottom: 0.027
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(6 + 1/12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. )
  17017. };
  17018. characterMakers["Jet"] = () => {
  17019. return makeCharacter(
  17020. { name: "Jet" },
  17021. {
  17022. front: {
  17023. height: math.unit(10, "feet"),
  17024. weight: math.unit(350, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/jet/front.svg",
  17028. extra: 2050/1980,
  17029. bottom: 0.013
  17030. }
  17031. },
  17032. back: {
  17033. height: math.unit(10, "feet"),
  17034. weight: math.unit(350, "lb"),
  17035. name: "Back",
  17036. image: {
  17037. source: "./media/characters/jet/back.svg",
  17038. extra: 2050/1980,
  17039. bottom: 0.013
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Micro",
  17046. height: math.unit(6, "inches")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(10, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Macro",
  17055. height: math.unit(100, "feet")
  17056. },
  17057. ]
  17058. )
  17059. };
  17060. characterMakers["Tanarath"] = () => {
  17061. return makeCharacter(
  17062. { name: "Tanarath" },
  17063. {
  17064. front: {
  17065. height: math.unit(15, "feet"),
  17066. weight: math.unit(2800, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/tanarath/front.svg",
  17070. extra: 2392/2220,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(15, "feet"),
  17076. weight: math.unit(2800, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/tanarath/back.svg",
  17080. extra: 2392/2220,
  17081. bottom: 0.03
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(15, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. )
  17093. };
  17094. characterMakers["Patty CattyBatty"] = () => {
  17095. return makeCharacter(
  17096. { name: "Patty CattyBatty" },
  17097. {
  17098. front: {
  17099. height: math.unit(7 + 1/12, "feet"),
  17100. weight: math.unit(175, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/patty-cattybatty/front.svg",
  17104. extra: 908/874,
  17105. bottom: 0.025
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Micro",
  17112. height: math.unit(1, "inch")
  17113. },
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(7 + 1/12, "feet")
  17117. },
  17118. {
  17119. name: "Mini Macro",
  17120. height: math.unit(155, "feet")
  17121. },
  17122. {
  17123. name: "Macro",
  17124. height: math.unit(1077, "feet")
  17125. },
  17126. {
  17127. name: "Mega Macro",
  17128. height: math.unit(47650, "feet"),
  17129. default: true
  17130. },
  17131. {
  17132. name: "Giga Macro",
  17133. height: math.unit(440, "miles")
  17134. },
  17135. {
  17136. name: "Tera Macro",
  17137. height: math.unit(8700, "miles")
  17138. },
  17139. {
  17140. name: "Planetary Macro",
  17141. height: math.unit(32700, "miles")
  17142. },
  17143. {
  17144. name: "Solar Macro",
  17145. height: math.unit(550000, "miles")
  17146. },
  17147. {
  17148. name: "Celestial Macro",
  17149. height: math.unit(2.5, "AU")
  17150. },
  17151. ]
  17152. )
  17153. };
  17154. characterMakers["Cappu"] = () => {
  17155. return makeCharacter(
  17156. { name: "Cappu" },
  17157. {
  17158. front: {
  17159. height: math.unit(4 + 5/12, "feet"),
  17160. weight: math.unit(90, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/cappu/front.svg",
  17164. extra: 1247/1152,
  17165. bottom: 0.012
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(4 + 5/12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. )
  17177. };
  17178. characterMakers["Sebi"] = () => {
  17179. return makeCharacter(
  17180. { name: "Sebi" },
  17181. {
  17182. frontDressed: {
  17183. height: math.unit(70, "cm"),
  17184. weight: math.unit(6, "kg"),
  17185. name: "Front (Dressed)",
  17186. image: {
  17187. source: "./media/characters/sebi/front-dressed.svg",
  17188. extra: 713.5/686.5,
  17189. bottom: 0.003
  17190. }
  17191. },
  17192. front: {
  17193. height: math.unit(70, "cm"),
  17194. weight: math.unit(5, "kg"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/sebi/front.svg",
  17198. extra: 713.5/686.5,
  17199. bottom: 0.003
  17200. }
  17201. }
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(70, "cm"),
  17207. default: true
  17208. },
  17209. {
  17210. name: "Macro",
  17211. height: math.unit(8, "meters")
  17212. },
  17213. ]
  17214. )
  17215. };
  17216. characterMakers["Typhek"] = () => {
  17217. return makeCharacter(
  17218. { name: "Typhek" },
  17219. {
  17220. front: {
  17221. height: math.unit(6, "feet"),
  17222. weight: math.unit(150, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/typhek/front.svg",
  17226. extra: 1948/1929,
  17227. bottom: 0.025
  17228. }
  17229. },
  17230. side: {
  17231. height: math.unit(6, "feet"),
  17232. weight: math.unit(150, "lb"),
  17233. name: "Side",
  17234. image: {
  17235. source: "./media/characters/typhek/side.svg",
  17236. extra: 2034/2010,
  17237. bottom: 0.003
  17238. }
  17239. },
  17240. back: {
  17241. height: math.unit(6, "feet"),
  17242. weight: math.unit(150, "lb"),
  17243. name: "Back",
  17244. image: {
  17245. source: "./media/characters/typhek/back.svg",
  17246. extra: 2005/1978,
  17247. bottom: 0.004
  17248. }
  17249. },
  17250. palm: {
  17251. height: math.unit(1.2, "feet"),
  17252. name: "Palm",
  17253. image: {
  17254. source: "./media/characters/typhek/palm.svg"
  17255. }
  17256. },
  17257. fist: {
  17258. height: math.unit(1.1, "feet"),
  17259. name: "Fist",
  17260. image: {
  17261. source: "./media/characters/typhek/fist.svg"
  17262. }
  17263. },
  17264. foot: {
  17265. height: math.unit(1.57, "feet"),
  17266. name: "Foot",
  17267. image: {
  17268. source: "./media/characters/typhek/foot.svg"
  17269. }
  17270. },
  17271. sole: {
  17272. height: math.unit(2.05, "feet"),
  17273. name: "Sole",
  17274. image: {
  17275. source: "./media/characters/typhek/sole.svg"
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(40, "stories"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Megamacro",
  17287. height: math.unit(1, "mile")
  17288. },
  17289. {
  17290. name: "Gigamacro",
  17291. height: math.unit(4000, "solarradii")
  17292. },
  17293. {
  17294. name: "Universal",
  17295. height: math.unit(1.1, "universes")
  17296. }
  17297. ]
  17298. )
  17299. };
  17300. characterMakers["Kassy"] = () => {
  17301. return makeCharacter(
  17302. { name: "Kassy" },
  17303. {
  17304. side: {
  17305. height: math.unit(5 + 7/12, "feet"),
  17306. weight: math.unit(150, "lb"),
  17307. name: "Side",
  17308. image: {
  17309. source: "./media/characters/kassy/side.svg",
  17310. extra: 1280/1225,
  17311. bottom: 0.002
  17312. }
  17313. },
  17314. front: {
  17315. height: math.unit(5 + 7/12, "feet"),
  17316. weight: math.unit(150, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/kassy/front.svg",
  17320. extra: 1280/1225,
  17321. bottom: 0.025
  17322. }
  17323. },
  17324. back: {
  17325. height: math.unit(5 + 7/12, "feet"),
  17326. weight: math.unit(150, "lb"),
  17327. name: "Back",
  17328. image: {
  17329. source: "./media/characters/kassy/back.svg",
  17330. extra: 1280/1225,
  17331. bottom: 0.002
  17332. }
  17333. },
  17334. foot: {
  17335. height: math.unit(1.266, "feet"),
  17336. name: "Foot",
  17337. image: {
  17338. source: "./media/characters/kassy/foot.svg"
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(5 + 7/12, "feet")
  17346. },
  17347. {
  17348. name: "Macro",
  17349. height: math.unit(137, "feet"),
  17350. default: true
  17351. },
  17352. {
  17353. name: "Megamacro",
  17354. height: math.unit(1, "mile")
  17355. },
  17356. ]
  17357. )
  17358. };
  17359. characterMakers["Neil"] = () => {
  17360. return makeCharacter(
  17361. { name: "Neil" },
  17362. {
  17363. front: {
  17364. height: math.unit(6 + 1/12, "feet"),
  17365. weight: math.unit(200, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/neil/front.svg",
  17369. extra: 1326/1250,
  17370. bottom: 0.023
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(6 + 1/12, "feet"),
  17378. default: true
  17379. },
  17380. {
  17381. name: "Macro",
  17382. height: math.unit(200, "feet")
  17383. },
  17384. ]
  17385. )
  17386. };
  17387. characterMakers["Atticus"] = () => {
  17388. return makeCharacter(
  17389. { name: "Atticus" },
  17390. {
  17391. front: {
  17392. height: math.unit(5 + 9/12, "feet"),
  17393. weight: math.unit(190, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/atticus/front.svg",
  17397. extra: 2934/2785,
  17398. bottom: 0.025
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(5 + 9/12, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Macro",
  17410. height: math.unit(180, "feet")
  17411. },
  17412. ]
  17413. )
  17414. };
  17415. characterMakers["Milo"] = () => {
  17416. return makeCharacter(
  17417. { name: "Milo" },
  17418. {
  17419. side: {
  17420. height: math.unit(9, "feet"),
  17421. weight: math.unit(650, "lb"),
  17422. name: "Side",
  17423. image: {
  17424. source: "./media/characters/milo/side.svg",
  17425. extra: 2644/2310,
  17426. bottom: 0.032
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(9, "feet"),
  17434. default: true
  17435. },
  17436. {
  17437. name: "Macro",
  17438. height: math.unit(300, "feet")
  17439. },
  17440. ]
  17441. )
  17442. };
  17443. characterMakers["Ijzer"] = () => {
  17444. return makeCharacter(
  17445. { name: "Ijzer" },
  17446. {
  17447. side: {
  17448. height: math.unit(8, "meters"),
  17449. weight: math.unit(90000, "kg"),
  17450. name: "Side",
  17451. image: {
  17452. source: "./media/characters/ijzer/side.svg",
  17453. extra: 2756/1600,
  17454. bottom: 0.01
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Small",
  17461. height: math.unit(3, "meters")
  17462. },
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(8, "meters"),
  17466. default: true
  17467. },
  17468. {
  17469. name: "Normal+",
  17470. height: math.unit(10, "meters")
  17471. },
  17472. {
  17473. name: "Bigger",
  17474. height: math.unit(24, "meters")
  17475. },
  17476. {
  17477. name: "Huge",
  17478. height: math.unit(80, "meters")
  17479. },
  17480. ]
  17481. )
  17482. };
  17483. characterMakers["Luca Cervicum"] = () => {
  17484. return makeCharacter(
  17485. { name: "Luca Cervicum" },
  17486. {
  17487. front: {
  17488. height: math.unit(6 + 2/12, "feet"),
  17489. weight: math.unit(153, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/luca-cervicum/front.svg",
  17493. extra: 370/327,
  17494. bottom: 0.015
  17495. }
  17496. },
  17497. back: {
  17498. height: math.unit(6 + 2/12, "feet"),
  17499. weight: math.unit(153, "lb"),
  17500. name: "Back",
  17501. image: {
  17502. source: "./media/characters/luca-cervicum/back.svg",
  17503. extra: 367/333,
  17504. bottom: 0.005
  17505. }
  17506. },
  17507. frontGear: {
  17508. height: math.unit(6 + 2/12, "feet"),
  17509. weight: math.unit(173, "lb"),
  17510. name: "Front (Gear)",
  17511. image: {
  17512. source: "./media/characters/luca-cervicum/front-gear.svg",
  17513. extra: 377/333,
  17514. bottom: 0.006
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6 + 2/12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. )
  17526. };
  17527. characterMakers["Oliver"] = () => {
  17528. return makeCharacter(
  17529. { name: "Oliver" },
  17530. {
  17531. front: {
  17532. height: math.unit(6 + 1/12, "feet"),
  17533. weight: math.unit(304, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/oliver/front.svg",
  17537. extra: 157/143,
  17538. bottom: 0.08
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(6 + 1/12, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. )
  17550. };
  17551. characterMakers["Shane"] = () => {
  17552. return makeCharacter(
  17553. { name: "Shane" },
  17554. {
  17555. front: {
  17556. height: math.unit(5 + 7/12, "feet"),
  17557. weight: math.unit(140, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/shane/front.svg",
  17561. extra: 304/289,
  17562. bottom: 0.005
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(5 + 7/12, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. )
  17574. };
  17575. characterMakers["Shin"] = () => {
  17576. return makeCharacter(
  17577. { name: "Shin" },
  17578. {
  17579. front: {
  17580. height: math.unit(5 + 9/12, "feet"),
  17581. weight: math.unit(178, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/shin/front.svg",
  17585. extra: 159/151,
  17586. bottom: 0.015
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(5 + 9/12, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. )
  17598. };
  17599. characterMakers["Xerxes"] = () => {
  17600. return makeCharacter(
  17601. { name: "Xerxes" },
  17602. {
  17603. front: {
  17604. height: math.unit(5 + 10/12, "feet"),
  17605. weight: math.unit(168, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/xerxes/front.svg",
  17609. extra: 282/260,
  17610. bottom: 0.045
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(5 + 10/12, "feet"),
  17618. default: true
  17619. },
  17620. ]
  17621. )
  17622. };
  17623. characterMakers["Chaska"] = () => {
  17624. return makeCharacter(
  17625. { name: "Chaska" },
  17626. {
  17627. front: {
  17628. height: math.unit(6 + 7/12, "feet"),
  17629. weight: math.unit(208, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/chaska/front.svg",
  17633. extra: 332/319,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(6 + 7/12, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. )
  17646. };
  17647. characterMakers["Enuk"] = () => {
  17648. return makeCharacter(
  17649. { name: "Enuk" },
  17650. {
  17651. front: {
  17652. height: math.unit(5 + 8/12, "feet"),
  17653. weight: math.unit(208, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/enuk/front.svg",
  17657. extra: 437/406,
  17658. bottom: 0.02
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(5 + 8/12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. )
  17670. };
  17671. characterMakers["Bruun"] = () => {
  17672. return makeCharacter(
  17673. { name: "Bruun" },
  17674. {
  17675. front: {
  17676. height: math.unit(5 + 10/12, "feet"),
  17677. weight: math.unit(252, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/bruun/front.svg",
  17681. extra: 197/187,
  17682. bottom: 0.012
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(5 + 10/12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. )
  17694. };
  17695. characterMakers["Alexeev"] = () => {
  17696. return makeCharacter(
  17697. { name: "Alexeev" },
  17698. {
  17699. front: {
  17700. height: math.unit(6 + 10/12, "feet"),
  17701. weight: math.unit(255, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/alexeev/front.svg",
  17705. extra: 213/200,
  17706. bottom: 0.05
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(6 + 10/12, "feet"),
  17714. default: true
  17715. },
  17716. ]
  17717. )
  17718. };
  17719. characterMakers["Evelyn"] = () => {
  17720. return makeCharacter(
  17721. { name: "Evelyn" },
  17722. {
  17723. front: {
  17724. height: math.unit(2 + 8/12, "feet"),
  17725. weight: math.unit(22, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/evelyn/front.svg",
  17729. extra: 208/180
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(2 + 8/12, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. )
  17741. };
  17742. characterMakers["Inca"] = () => {
  17743. return makeCharacter(
  17744. { name: "Inca" },
  17745. {
  17746. front: {
  17747. height: math.unit(5 + 9/12, "feet"),
  17748. weight: math.unit(139, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/inca/front.svg",
  17752. extra: 294/291,
  17753. bottom: 0.03
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(5 + 9/12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. )
  17765. };
  17766. characterMakers["Magdalene"] = () => {
  17767. return makeCharacter(
  17768. { name: "Magdalene" },
  17769. {
  17770. front: {
  17771. height: math.unit(5 + 1/12, "feet"),
  17772. weight: math.unit(84, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/magdalene/front.svg",
  17776. extra: 293/273
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(5 + 1/12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. )
  17788. };
  17789. characterMakers["Mera"] = () => {
  17790. return makeCharacter(
  17791. { name: "Mera" },
  17792. {
  17793. front: {
  17794. height: math.unit(6 + 3/12, "feet"),
  17795. weight: math.unit(185, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/mera/front.svg",
  17799. extra: 291/277,
  17800. bottom: 0.03
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(6 + 3/12, "feet"),
  17808. default: true
  17809. },
  17810. ]
  17811. )
  17812. };
  17813. characterMakers["Ceres"] = () => {
  17814. return makeCharacter(
  17815. { name: "Ceres" },
  17816. {
  17817. front: {
  17818. height: math.unit(6 + 7/12, "feet"),
  17819. weight: math.unit(160, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/ceres/front.svg",
  17823. extra: 1023/950,
  17824. bottom: 0.027
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(6 + 7/12, "feet"),
  17829. weight: math.unit(160, "lb"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/ceres/back.svg",
  17833. extra: 1023/950
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(6 + 7/12, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. )
  17845. };
  17846. characterMakers["Kris"] = () => {
  17847. return makeCharacter(
  17848. { name: "Kris" },
  17849. {
  17850. front: {
  17851. height: math.unit(5 + 10/12, "feet"),
  17852. weight: math.unit(150, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/kris/front.svg",
  17856. extra: 885/803,
  17857. bottom: 0.03
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(5 + 10/12, "feet"),
  17865. default: true
  17866. },
  17867. ]
  17868. )
  17869. };
  17870. characterMakers["Taluthus"] = () => {
  17871. return makeCharacter(
  17872. { name: "Taluthus" },
  17873. {
  17874. front: {
  17875. height: math.unit(7, "feet"),
  17876. weight: math.unit(120, "kg"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/taluthus/front.svg",
  17880. extra: 903/833,
  17881. bottom: 0.015
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(7, "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Macro",
  17893. height: math.unit(300, "feet")
  17894. },
  17895. ]
  17896. )
  17897. };
  17898. characterMakers["Dawn"] = () => {
  17899. return makeCharacter(
  17900. { name: "Dawn" },
  17901. {
  17902. front: {
  17903. height: math.unit(5 + 9/12, "feet"),
  17904. weight: math.unit(145, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/dawn/front.svg",
  17908. extra: 2094/2016,
  17909. bottom: 0.025
  17910. }
  17911. },
  17912. back: {
  17913. height: math.unit(5 + 9/12, "feet"),
  17914. weight: math.unit(160, "lb"),
  17915. name: "Back",
  17916. image: {
  17917. source: "./media/characters/dawn/back.svg",
  17918. extra: 2112/2080,
  17919. bottom: 0.005
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(6 + 7/12, "feet"),
  17927. default: true
  17928. },
  17929. ]
  17930. )
  17931. };
  17932. characterMakers["Arador"] = () => {
  17933. return makeCharacter(
  17934. { name: "Arador" },
  17935. {
  17936. anthro: {
  17937. height: math.unit(8 + 3/12, "feet"),
  17938. weight: math.unit(450, "lb"),
  17939. name: "Anthro",
  17940. image: {
  17941. source: "./media/characters/arador/anthro.svg",
  17942. extra: 1835/1718,
  17943. bottom: 0.025
  17944. }
  17945. },
  17946. feral: {
  17947. height: math.unit(4, "feet"),
  17948. weight: math.unit(200, "lb"),
  17949. name: "Feral",
  17950. image: {
  17951. source: "./media/characters/arador/feral.svg",
  17952. extra: 1683/1514,
  17953. bottom: 0.07
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(8 + 3/12, "feet")
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(82.5, "feet"),
  17965. default: true
  17966. },
  17967. ]
  17968. )
  17969. };
  17970. characterMakers["Dharsi"] = () => {
  17971. return makeCharacter(
  17972. { name: "Dharsi" },
  17973. {
  17974. front: {
  17975. height: math.unit(5 + 10/12, "feet"),
  17976. weight: math.unit(125, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/dharsi/front.svg",
  17980. extra: 716/630,
  17981. bottom: 0.035
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Nano",
  17988. height: math.unit(100, "nm")
  17989. },
  17990. {
  17991. name: "Micro",
  17992. height: math.unit(2, "inches")
  17993. },
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(5 + 10/12, "feet"),
  17997. default: true
  17998. },
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(1000, "feet")
  18002. },
  18003. {
  18004. name: "Megamacro",
  18005. height: math.unit(10, "miles")
  18006. },
  18007. {
  18008. name: "Gigamacro",
  18009. height: math.unit(3000, "miles")
  18010. },
  18011. {
  18012. name: "Teramacro",
  18013. height: math.unit(500000, "miles")
  18014. },
  18015. {
  18016. name: "Teramacro+",
  18017. height: math.unit(30, "galaxies")
  18018. },
  18019. ]
  18020. )
  18021. };
  18022. characterMakers["Deathy"] = () => {
  18023. return makeCharacter(
  18024. { name: "Deathy" },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/deathy/front.svg",
  18032. extra: 1552/1463,
  18033. bottom: 0.025
  18034. }
  18035. },
  18036. side: {
  18037. height: math.unit(6, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Side",
  18040. image: {
  18041. source: "./media/characters/deathy/side.svg",
  18042. extra: 1604/1455,
  18043. bottom: 0.025
  18044. }
  18045. },
  18046. back: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Back",
  18050. image: {
  18051. source: "./media/characters/deathy/back.svg",
  18052. extra: 1580/1463,
  18053. bottom: 0.005
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(5, "millimeters")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6 + 5/12, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. )
  18069. };
  18070. characterMakers["Juniper"] = () => {
  18071. return makeCharacter(
  18072. { name: "Juniper" },
  18073. {
  18074. front: {
  18075. height: math.unit(16, "feet"),
  18076. weight: math.unit(4000, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/juniper/front.svg",
  18080. bottom: 0.04
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(16, "feet"),
  18088. default: true
  18089. },
  18090. ]
  18091. )
  18092. };
  18093. characterMakers["Hipster"] = () => {
  18094. return makeCharacter(
  18095. { name: "Hipster" },
  18096. {
  18097. front: {
  18098. height: math.unit(6, "feet"),
  18099. weight: math.unit(150, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/hipster/front.svg",
  18103. extra: 1312/1209,
  18104. bottom: 0.025
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(6, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/hipster/back.svg",
  18113. extra: 1281/1196,
  18114. bottom: 0.01
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(1, "mm")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(4, "inches"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(500, "feet")
  18131. },
  18132. {
  18133. name: "Megamacro",
  18134. height: math.unit(1000, "miles")
  18135. },
  18136. ]
  18137. )
  18138. };
  18139. characterMakers["Tendirmuldr"] = () => {
  18140. return makeCharacter(
  18141. { name: "Tendirmuldr" },
  18142. {
  18143. front: {
  18144. height: math.unit(6, "feet"),
  18145. weight: math.unit(150, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/tendirmuldr/front.svg",
  18149. extra: 1878/1772,
  18150. bottom: 0.015
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Megamacro",
  18157. height: math.unit(1500, "miles"),
  18158. default: true
  18159. },
  18160. ]
  18161. )
  18162. };
  18163. characterMakers["Mort"] = () => {
  18164. return makeCharacter(
  18165. { name: "Mort" },
  18166. {
  18167. front: {
  18168. height: math.unit(14, "feet"),
  18169. weight: math.unit(12000, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/mort/front.svg",
  18173. extra: 365/318,
  18174. bottom: 0.01
  18175. }
  18176. },
  18177. side: {
  18178. height: math.unit(14, "feet"),
  18179. weight: math.unit(12000, "lb"),
  18180. name: "Side",
  18181. image: {
  18182. source: "./media/characters/mort/side.svg",
  18183. extra: 365/318,
  18184. bottom: 0.052
  18185. }
  18186. },
  18187. back: {
  18188. height: math.unit(14, "feet"),
  18189. weight: math.unit(12000, "lb"),
  18190. name: "Back",
  18191. image: {
  18192. source: "./media/characters/mort/back.svg",
  18193. extra: 371/332,
  18194. bottom: 0.18
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(14, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. )
  18206. };
  18207. characterMakers["Lycoa"] = () => {
  18208. return makeCharacter(
  18209. { name: "Lycoa" },
  18210. {
  18211. front: {
  18212. height: math.unit(8, "feet"),
  18213. weight: math.unit(1, "ton"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/lycoa/front.svg",
  18217. extra: 1875/1789,
  18218. bottom: 0.022
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(8, "feet"),
  18223. weight: math.unit(1, "ton"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/lycoa/back.svg",
  18227. extra: 1835/1781,
  18228. bottom: 0.03
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(8, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(30, "feet")
  18241. },
  18242. ]
  18243. )
  18244. };
  18245. characterMakers["Naldara"] = () => {
  18246. return makeCharacter(
  18247. { name: "Naldara" },
  18248. {
  18249. front: {
  18250. height: math.unit(4 + 2/12, "feet"),
  18251. weight: math.unit(70, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/naldara/front.svg",
  18255. extra: 841/720,
  18256. bottom: 0.04
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(4 + 2/12, "feet"),
  18264. default: true
  18265. },
  18266. ]
  18267. )
  18268. };
  18269. characterMakers["Briar"] = () => {
  18270. return makeCharacter(
  18271. { name: "Briar" },
  18272. {
  18273. front: {
  18274. height: math.unit(13 + 7/12, "feet"),
  18275. weight: math.unit(1500, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/briar/front.svg",
  18279. extra: 626/596,
  18280. bottom: 0.08
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(13 + 7/12, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. )
  18292. };
  18293. characterMakers["Vanguard"] = () => {
  18294. return makeCharacter(
  18295. { name: "Vanguard" },
  18296. {
  18297. side: {
  18298. height: math.unit(10, "feet"),
  18299. weight: math.unit(500, "lb"),
  18300. name: "Side",
  18301. image: {
  18302. source: "./media/characters/vanguard/side.svg",
  18303. extra: 502/425,
  18304. bottom: 0.087
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(10, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. )
  18316. };
  18317. characterMakers["Artemis"] = () => {
  18318. return makeCharacter(
  18319. { name: "Artemis" },
  18320. {
  18321. front: {
  18322. height: math.unit(7.5, "feet"),
  18323. weight: math.unit(2, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/artemis/front.svg",
  18327. extra: 1192/1075,
  18328. bottom: 0.07
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(7.5, "feet"),
  18336. default: true
  18337. },
  18338. {
  18339. name: "Enlarged",
  18340. height: math.unit(12, "feet")
  18341. },
  18342. ]
  18343. )
  18344. };
  18345. characterMakers["Kira"] = () => {
  18346. return makeCharacter(
  18347. { name: "Kira" },
  18348. {
  18349. front: {
  18350. height: math.unit(5 + 3/12, "feet"),
  18351. weight: math.unit(160, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/kira/front.svg",
  18355. extra: 906/786,
  18356. bottom: 0.01
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(5 + 3/12, "feet"),
  18361. weight: math.unit(160, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/kira/back.svg",
  18365. extra: 882/757,
  18366. bottom: 0.005
  18367. }
  18368. },
  18369. frontDressed: {
  18370. height: math.unit(5 + 3/12, "feet"),
  18371. weight: math.unit(160, "lb"),
  18372. name: "Front (Dressed)",
  18373. image: {
  18374. source: "./media/characters/kira/front-dressed.svg",
  18375. extra: 906/786,
  18376. bottom: 0.01
  18377. }
  18378. },
  18379. beans: {
  18380. height: math.unit(0.92, "feet"),
  18381. name: "Beans",
  18382. image: {
  18383. source: "./media/characters/kira/beans.svg"
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(5 + 3/12, "feet"),
  18391. default: true
  18392. },
  18393. ]
  18394. )
  18395. };
  18396. characterMakers["Scramble"] = () => {
  18397. return makeCharacter(
  18398. { name: "Scramble" },
  18399. {
  18400. front: {
  18401. height: math.unit(5 + 4/12, "feet"),
  18402. weight: math.unit(145, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/scramble/front.svg",
  18406. extra: 763/727,
  18407. bottom: 0.05
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(5 + 4/12, "feet"),
  18412. weight: math.unit(145, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/scramble/back.svg",
  18416. extra: 826/737,
  18417. bottom: 0.002
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(5 + 4/12, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. )
  18429. };
  18430. characterMakers["Biscuit"] = () => {
  18431. return makeCharacter(
  18432. { name: "Biscuit" },
  18433. {
  18434. side: {
  18435. height: math.unit(6 + 2/12, "feet"),
  18436. weight: math.unit(190, "lb"),
  18437. name: "Side",
  18438. image: {
  18439. source: "./media/characters/biscuit/side.svg",
  18440. extra: 858/791,
  18441. bottom: 0.044
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(6 + 2/12, "feet"),
  18449. default: true
  18450. },
  18451. ]
  18452. )
  18453. };
  18454. characterMakers["Poffin"] = () => {
  18455. return makeCharacter(
  18456. { name: "Poffin" },
  18457. {
  18458. front: {
  18459. height: math.unit(5 + 2/12, "feet"),
  18460. weight: math.unit(120, "lb"),
  18461. name: "Front",
  18462. image: {
  18463. source: "./media/characters/poffin/front.svg",
  18464. extra: 786/680,
  18465. bottom: 0.005
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Normal",
  18472. height: math.unit(5 + 2/12, "feet"),
  18473. default: true
  18474. },
  18475. ]
  18476. )
  18477. };
  18478. characterMakers["Dhari"] = () => {
  18479. return makeCharacter(
  18480. { name: "Dhari" },
  18481. {
  18482. front: {
  18483. height: math.unit(6 + 3/12, "feet"),
  18484. weight: math.unit(519, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/dhari/front.svg",
  18488. extra: 1048/946,
  18489. bottom: 0.015
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(6 + 3/12, "feet"),
  18494. weight: math.unit(519, "lb"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/dhari/back.svg",
  18498. extra: 1048/931,
  18499. bottom: 0.005
  18500. }
  18501. },
  18502. frontDressed: {
  18503. height: math.unit(6 + 3/12, "feet"),
  18504. weight: math.unit(519, "lb"),
  18505. name: "Front (Dressed)",
  18506. image: {
  18507. source: "./media/characters/dhari/front-dressed.svg",
  18508. extra: 1713/1546,
  18509. bottom: 0.02
  18510. }
  18511. },
  18512. backDressed: {
  18513. height: math.unit(6 + 3/12, "feet"),
  18514. weight: math.unit(519, "lb"),
  18515. name: "Back (Dressed)",
  18516. image: {
  18517. source: "./media/characters/dhari/back-dressed.svg",
  18518. extra: 1699/1537,
  18519. bottom: 0.01
  18520. }
  18521. },
  18522. maw: {
  18523. height: math.unit(0.95, "feet"),
  18524. name: "Maw",
  18525. image: {
  18526. source: "./media/characters/dhari/maw.svg"
  18527. }
  18528. },
  18529. wereFront: {
  18530. height: math.unit(12 + 8/12, "feet"),
  18531. weight: math.unit(4000, "lb"),
  18532. name: "Front (Were)",
  18533. image: {
  18534. source: "./media/characters/dhari/were-front.svg",
  18535. extra: 1065/969,
  18536. bottom: 0.015
  18537. }
  18538. },
  18539. wereBack: {
  18540. height: math.unit(12 + 8/12, "feet"),
  18541. weight: math.unit(4000, "lb"),
  18542. name: "Back (Were)",
  18543. image: {
  18544. source: "./media/characters/dhari/were-back.svg",
  18545. extra: 1065/969,
  18546. bottom: 0.012
  18547. }
  18548. },
  18549. wereMaw: {
  18550. height: math.unit(0.625, "meters"),
  18551. name: "Maw (Were)",
  18552. image: {
  18553. source: "./media/characters/dhari/were-maw.svg"
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(6 + 3/12, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. )
  18565. };
  18566. characterMakers["Rena Dyne"] = () => {
  18567. return makeCharacter(
  18568. { name: "Rena Dyne" },
  18569. {
  18570. anthro: {
  18571. height: math.unit(5 + 7/12, "feet"),
  18572. weight: math.unit(175, "lb"),
  18573. name: "Anthro",
  18574. image: {
  18575. source: "./media/characters/rena-dyne/anthro.svg",
  18576. extra: 1849/1785,
  18577. bottom: 0.005
  18578. }
  18579. },
  18580. taur: {
  18581. height: math.unit(15 + 6/12, "feet"),
  18582. weight: math.unit(8000, "lb"),
  18583. name: "Taur",
  18584. image: {
  18585. source: "./media/characters/rena-dyne/taur.svg",
  18586. extra: 2315/2234,
  18587. bottom: 0.033
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(5 + 7/12, "feet"),
  18595. default: true
  18596. },
  18597. ]
  18598. )
  18599. };
  18600. characterMakers["Weremeep"] = () => {
  18601. return makeCharacter(
  18602. { name: "Weremeep" },
  18603. {
  18604. front: {
  18605. height: math.unit(8, "feet"),
  18606. weight: math.unit(600, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/weremeep/front.svg",
  18610. extra: 967/862,
  18611. bottom: 0.01
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(8, "feet"),
  18619. default: true
  18620. },
  18621. {
  18622. name: "Lorg",
  18623. height: math.unit(12, "feet")
  18624. },
  18625. {
  18626. name: "Oh Lawd She Comin'",
  18627. height: math.unit(20, "feet")
  18628. },
  18629. ]
  18630. )
  18631. };
  18632. characterMakers["Reza"] = () => {
  18633. return makeCharacter(
  18634. { name: "Reza" },
  18635. {
  18636. front: {
  18637. height: math.unit(4, "feet"),
  18638. weight: math.unit(90, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/reza/front.svg",
  18642. extra: 1183/1111,
  18643. bottom: 0.017
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(4, "feet"),
  18648. weight: math.unit(90, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/reza/back.svg",
  18652. extra: 1183/1111,
  18653. bottom: 0.01
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(4, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. )
  18665. };
  18666. characterMakers["Athea"] = () => {
  18667. return makeCharacter(
  18668. { name: "Athea" },
  18669. {
  18670. side: {
  18671. height: math.unit(15, "feet"),
  18672. weight: math.unit(14, "tons"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/athea/side.svg",
  18676. extra: 960/540,
  18677. bottom: 0.003
  18678. }
  18679. },
  18680. sitting: {
  18681. height: math.unit(6*2.85, "feet"),
  18682. weight: math.unit(14, "tons"),
  18683. name: "Sitting",
  18684. image: {
  18685. source: "./media/characters/athea/sitting.svg",
  18686. extra: 621/581,
  18687. bottom: 0.075
  18688. }
  18689. },
  18690. maw: {
  18691. height: math.unit(7.59498031496063, "feet"),
  18692. name: "Maw",
  18693. image: {
  18694. source: "./media/characters/athea/maw.svg"
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Lap Cat",
  18701. height: math.unit(2.5, "feet")
  18702. },
  18703. {
  18704. name: "Minimacro",
  18705. height: math.unit(15, "feet"),
  18706. default: true
  18707. },
  18708. {
  18709. name: "Macro",
  18710. height: math.unit(120, "feet")
  18711. },
  18712. {
  18713. name: "Macro+",
  18714. height: math.unit(640, "feet")
  18715. },
  18716. ]
  18717. )
  18718. };
  18719. characterMakers["Seroko"] = () => {
  18720. return makeCharacter(
  18721. { name: "Seroko" },
  18722. {
  18723. front: {
  18724. height: math.unit(8 + 8/12, "feet"),
  18725. weight: math.unit(130, "kg"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/seroko/front.svg",
  18729. extra: 1385/1280,
  18730. bottom: 0.025
  18731. }
  18732. },
  18733. back: {
  18734. height: math.unit(8 + 8/12, "feet"),
  18735. weight: math.unit(130, "kg"),
  18736. name: "Back",
  18737. image: {
  18738. source: "./media/characters/seroko/back.svg",
  18739. extra: 1369/1238,
  18740. bottom: 0.018
  18741. }
  18742. },
  18743. frontDressed: {
  18744. height: math.unit(8 + 8/12, "feet"),
  18745. weight: math.unit(130, "kg"),
  18746. name: "Front (Dressed)",
  18747. image: {
  18748. source: "./media/characters/seroko/front-dressed.svg",
  18749. extra: 1366/1275,
  18750. bottom: 0.03
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(8 + 8/12, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. )
  18762. };
  18763. characterMakers["Quatzi"] = () => {
  18764. return makeCharacter(
  18765. { name: "Quatzi" },
  18766. {
  18767. front: {
  18768. height: math.unit(5.5, "feet"),
  18769. weight: math.unit(160, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/quatzi/front.svg",
  18773. extra: 2346/2242,
  18774. bottom: 0.015
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(5.5, "feet"),
  18782. default: true
  18783. },
  18784. {
  18785. name: "Big",
  18786. height: math.unit(7.7, "feet")
  18787. },
  18788. ]
  18789. )
  18790. };
  18791. characterMakers["Sen"] = () => {
  18792. return makeCharacter(
  18793. { name: "Sen" },
  18794. {
  18795. front: {
  18796. height: math.unit(5 + 11/12, "feet"),
  18797. weight: math.unit(180, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/sen/front.svg",
  18801. extra: 1321/1254,
  18802. bottom: 0.015
  18803. }
  18804. },
  18805. side: {
  18806. height: math.unit(5 + 11/12, "feet"),
  18807. weight: math.unit(180, "lb"),
  18808. name: "Side",
  18809. image: {
  18810. source: "./media/characters/sen/side.svg",
  18811. extra: 1321/1254,
  18812. bottom: 0.007
  18813. }
  18814. },
  18815. back: {
  18816. height: math.unit(5 + 11/12, "feet"),
  18817. weight: math.unit(180, "lb"),
  18818. name: "Back",
  18819. image: {
  18820. source: "./media/characters/sen/back.svg",
  18821. extra: 1321/1254
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 11/12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. )
  18833. };
  18834. characterMakers["Fruity"] = () => {
  18835. return makeCharacter(
  18836. { name: "Fruity" },
  18837. {
  18838. front: {
  18839. height: math.unit(166.6, "cm"),
  18840. weight: math.unit(66.6, "kg"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/fruity/front.svg",
  18844. extra: 1510/1386,
  18845. bottom: 0.04
  18846. }
  18847. },
  18848. back: {
  18849. height: math.unit(166.6, "cm"),
  18850. weight: math.unit(66.6, "lb"),
  18851. name: "Back",
  18852. image: {
  18853. source: "./media/characters/fruity/back.svg",
  18854. extra: 1563/1435,
  18855. bottom: 0.005
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(166.6, "cm"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Demonic",
  18867. height: math.unit(166.6, "feet")
  18868. },
  18869. ]
  18870. )
  18871. };
  18872. characterMakers["Zost"] = () => {
  18873. return makeCharacter(
  18874. { name: "Zost" },
  18875. {
  18876. side: {
  18877. height: math.unit(10, "feet"),
  18878. weight: math.unit(500, "lb"),
  18879. name: "Side",
  18880. image: {
  18881. source: "./media/characters/zost/side.svg",
  18882. extra: 966/880,
  18883. bottom: 0.075
  18884. }
  18885. },
  18886. mawFront: {
  18887. height: math.unit(1.08, "meters"),
  18888. name: "Maw (Front)",
  18889. image: {
  18890. source: "./media/characters/zost/maw-front.svg"
  18891. }
  18892. },
  18893. mawSide: {
  18894. height: math.unit(2.66, "feet"),
  18895. name: "Maw (Side)",
  18896. image: {
  18897. source: "./media/characters/zost/maw-side.svg"
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(10, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. )
  18909. };
  18910. characterMakers["Luci"] = () => {
  18911. return makeCharacter(
  18912. { name: "Luci" },
  18913. {
  18914. front: {
  18915. height: math.unit(5 + 4/12, "feet"),
  18916. weight: math.unit(120, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/luci/front.svg",
  18920. extra: 1985/1884,
  18921. bottom: 0.04
  18922. }
  18923. },
  18924. back: {
  18925. height: math.unit(5 + 4/12, "feet"),
  18926. weight: math.unit(120, "lb"),
  18927. name: "Back",
  18928. image: {
  18929. source: "./media/characters/luci/back.svg",
  18930. extra: 1892/1791,
  18931. bottom: 0.002
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(5 + 4/12, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. )
  18943. };
  18944. characterMakers["2th"] = () => {
  18945. return makeCharacter(
  18946. { name: "2th" },
  18947. {
  18948. front: {
  18949. height: math.unit(1500, "feet"),
  18950. weight: math.unit(3.8e6, "tons"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/2th/front.svg",
  18954. extra: 3489/3350,
  18955. bottom: 0.1
  18956. }
  18957. },
  18958. foot: {
  18959. height: math.unit(461, "feet"),
  18960. name: "Foot",
  18961. image: {
  18962. source: "./media/characters/2th/foot.svg"
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "\"Micro\"",
  18969. height: math.unit(15 + 7/12, "feet")
  18970. },
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(1500, "feet"),
  18974. default: true
  18975. },
  18976. {
  18977. name: "Macro",
  18978. height: math.unit(5000, "feet")
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(15, "miles")
  18983. },
  18984. {
  18985. name: "Gigamacro",
  18986. height: math.unit(4000, "miles")
  18987. },
  18988. {
  18989. name: "Galactic",
  18990. height: math.unit(50, "AU")
  18991. },
  18992. ]
  18993. )
  18994. };
  18995. characterMakers["Amethyst"] = () => {
  18996. return makeCharacter(
  18997. { name: "Amethyst" },
  18998. {
  18999. front: {
  19000. height: math.unit(5 + 6/12, "feet"),
  19001. weight: math.unit(220, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/amethyst/front.svg",
  19005. extra: 2078/2040,
  19006. bottom: 0.045
  19007. }
  19008. },
  19009. back: {
  19010. height: math.unit(5 + 6/12, "feet"),
  19011. weight: math.unit(220, "lb"),
  19012. name: "Back",
  19013. image: {
  19014. source: "./media/characters/amethyst/back.svg",
  19015. extra: 2021/1989,
  19016. bottom: 0.02
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(5 + 6/12, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. )
  19028. };
  19029. characterMakers["Yumi Akiyama"] = () => {
  19030. return makeCharacter(
  19031. { name: "Yumi Akiyama" },
  19032. {
  19033. front: {
  19034. height: math.unit(4 + 11/12, "feet"),
  19035. weight: math.unit(120, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/yumi-akiyama/front.svg",
  19039. extra: 1327/1235,
  19040. bottom: 0.02
  19041. }
  19042. },
  19043. back: {
  19044. height: math.unit(4 + 11/12, "feet"),
  19045. weight: math.unit(120, "lb"),
  19046. name: "Back",
  19047. image: {
  19048. source: "./media/characters/yumi-akiyama/back.svg",
  19049. extra: 1287/1245,
  19050. bottom: 0.002
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Galactic",
  19057. height: math.unit(50, "galaxies"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "Universal",
  19062. height: math.unit(100, "universes")
  19063. },
  19064. ]
  19065. )
  19066. };
  19067. characterMakers["Rifter Yrmori"] = () => {
  19068. return makeCharacter(
  19069. { name: "Rifter Yrmori" },
  19070. {
  19071. front: {
  19072. height: math.unit(8, "feet"),
  19073. weight: math.unit(500, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/rifter-yrmori/front.svg",
  19077. extra: 1180/1125,
  19078. bottom: 0.02
  19079. }
  19080. },
  19081. back: {
  19082. height: math.unit(8, "feet"),
  19083. weight: math.unit(500, "lb"),
  19084. name: "Back",
  19085. image: {
  19086. source: "./media/characters/rifter-yrmori/back.svg",
  19087. extra: 1190/1145,
  19088. bottom: 0.001
  19089. }
  19090. },
  19091. wings: {
  19092. height: math.unit(7.75, "feet"),
  19093. weight: math.unit(500, "lb"),
  19094. name: "Wings",
  19095. image: {
  19096. source: "./media/characters/rifter-yrmori/wings.svg",
  19097. extra: 1357/1285
  19098. }
  19099. },
  19100. maw: {
  19101. height: math.unit(0.8, "feet"),
  19102. name: "Maw",
  19103. image: {
  19104. source: "./media/characters/rifter-yrmori/maw.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(8, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(42, "meters")
  19117. },
  19118. ]
  19119. )
  19120. };
  19121. characterMakers["Tahajin"] = () => {
  19122. return makeCharacter(
  19123. { name: "Tahajin" },
  19124. {
  19125. were: {
  19126. height: math.unit(25 + 6/12, "feet"),
  19127. weight: math.unit(10000, "lb"),
  19128. name: "Were",
  19129. image: {
  19130. source: "./media/characters/tahajin/were.svg",
  19131. extra: 801/770,
  19132. bottom: 0.042
  19133. }
  19134. },
  19135. aquatic: {
  19136. height: math.unit(6 + 4/12, "feet"),
  19137. weight: math.unit(160, "lb"),
  19138. name: "Aquatic",
  19139. image: {
  19140. source: "./media/characters/tahajin/aquatic.svg",
  19141. extra: 572/542,
  19142. bottom: 0.04
  19143. }
  19144. },
  19145. chow: {
  19146. height: math.unit(8 + 11/12, "feet"),
  19147. weight: math.unit(450, "lb"),
  19148. name: "Chow",
  19149. image: {
  19150. source: "./media/characters/tahajin/chow.svg",
  19151. extra: 660/640,
  19152. bottom: 0.015
  19153. }
  19154. },
  19155. demiNaga: {
  19156. height: math.unit(6 + 8/12, "feet"),
  19157. weight: math.unit(300, "lb"),
  19158. name: "Demi Naga",
  19159. image: {
  19160. source: "./media/characters/tahajin/demi-naga.svg",
  19161. extra: 643/615,
  19162. bottom: 0.1
  19163. }
  19164. },
  19165. data: {
  19166. height: math.unit(5, "inches"),
  19167. weight: math.unit(0.1, "lb"),
  19168. name: "Data",
  19169. image: {
  19170. source: "./media/characters/tahajin/data.svg"
  19171. }
  19172. },
  19173. fluu: {
  19174. height: math.unit(5 + 7/12, "feet"),
  19175. weight: math.unit(140, "lb"),
  19176. name: "Fluu",
  19177. image: {
  19178. source: "./media/characters/tahajin/fluu.svg",
  19179. extra: 628/592,
  19180. bottom: 0.02
  19181. }
  19182. },
  19183. starWarrior: {
  19184. height: math.unit(4 + 5/12, "feet"),
  19185. weight: math.unit(50, "lb"),
  19186. name: "Star Warrior",
  19187. image: {
  19188. source: "./media/characters/tahajin/star-warrior.svg"
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(25 + 6/12, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. )
  19200. };
  19201. //characters
  19202. function makeCharacters() {
  19203. const results = [];
  19204. Object.entries(characterMakers).forEach(([key, value]) => {
  19205. results.push({
  19206. name: key,
  19207. constructor: value
  19208. });
  19209. });
  19210. return results;
  19211. }