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

23577 строки
566 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "mammal"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. }
  500. function getSpeciesInfo(speciesList) {
  501. let result = new Set();
  502. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  503. result.add(entry)
  504. });
  505. return Array.from(result);
  506. };
  507. function getSpeciesInfoHelper(species) {
  508. if (!speciesData[species]) {
  509. console.warn(species + " doesn't exist");
  510. return [];
  511. }
  512. if (speciesData[species].parents) {
  513. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  514. } else {
  515. return [species];
  516. }
  517. }
  518. characterMakers.push(() => makeCharacter(
  519. {
  520. name: "Fen",
  521. species: ["crux"],
  522. description: {
  523. title: "Bio",
  524. text: "Very furry. Sheds on everything."
  525. },
  526. tags: [
  527. "anthro"
  528. ]
  529. },
  530. {
  531. back: {
  532. height: math.unit(2.2428, "meter"),
  533. weight: math.unit(124.738, "kg"),
  534. name: "Back",
  535. image: {
  536. source: "./media/characters/fen/back.svg",
  537. extra: 1025 / 935,
  538. bottom: 0.01
  539. },
  540. info: {
  541. description: {
  542. mode: "append",
  543. text: "\n\nHe is not currently looking at you."
  544. }
  545. }
  546. },
  547. full: {
  548. height: math.unit(1.34, "meter"),
  549. weight: math.unit(225, "kg"),
  550. name: "Full",
  551. image: {
  552. source: "./media/characters/fen/full.svg"
  553. },
  554. info: {
  555. description: {
  556. mode: "append",
  557. text: "\n\nMunch."
  558. }
  559. }
  560. },
  561. kneeling: {
  562. height: math.unit(5.4, "feet"),
  563. weight: math.unit(124.738, "kg"),
  564. name: "Kneeling",
  565. image: {
  566. source: "./media/characters/fen/kneeling.svg",
  567. extra: 563 / 507
  568. }
  569. },
  570. goo: {
  571. height: math.unit(2.8, "feet"),
  572. weight: math.unit(125, "kg"),
  573. capacity: math.unit(1, "people"),
  574. name: "Goo",
  575. image: {
  576. source: "./media/characters/fen/goo.svg",
  577. bottom: 116/613
  578. }
  579. },
  580. lounging: {
  581. height: math.unit(6.5, "feet"),
  582. weight: math.unit(125, "kg"),
  583. name: "Lounging",
  584. image: {
  585. source: "./media/characters/fen/lounging.svg"
  586. }
  587. },
  588. },
  589. [
  590. {
  591. name: "Normal",
  592. height: math.unit(2.2428, "meter")
  593. },
  594. {
  595. name: "Big",
  596. height: math.unit(12, "feet")
  597. },
  598. {
  599. name: "Minimacro",
  600. height: math.unit(40, "feet"),
  601. default: true,
  602. info: {
  603. description: {
  604. mode: "append",
  605. text: "\n\nTOO DAMN BIG"
  606. }
  607. }
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(100, "feet"),
  612. info: {
  613. description: {
  614. mode: "append",
  615. text: "\n\nTOO DAMN BIG"
  616. }
  617. }
  618. },
  619. {
  620. name: "Macro+",
  621. height: math.unit(300, "feet")
  622. },
  623. {
  624. name: "Megamacro",
  625. height: math.unit(2, "miles")
  626. }
  627. ]
  628. ))
  629. characterMakers.push(() => makeCharacter(
  630. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  631. {
  632. front: {
  633. height: math.unit(183, "cm"),
  634. weight: math.unit(80, "kg"),
  635. name: "Front",
  636. image: {
  637. source: "./media/characters/sofia-fluttertail/front.svg",
  638. bottom: 0.01,
  639. extra: 2154 / 2081
  640. }
  641. },
  642. frontAlt: {
  643. height: math.unit(183, "cm"),
  644. weight: math.unit(80, "kg"),
  645. name: "Front (alt)",
  646. image: {
  647. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  648. }
  649. },
  650. back: {
  651. height: math.unit(183, "cm"),
  652. weight: math.unit(80, "kg"),
  653. name: "Back",
  654. image: {
  655. source: "./media/characters/sofia-fluttertail/back.svg"
  656. }
  657. },
  658. kneeling: {
  659. height: math.unit(125, "cm"),
  660. weight: math.unit(80, "kg"),
  661. name: "Kneeling",
  662. image: {
  663. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  664. extra: 1033/977,
  665. bottom: 23.7/1057
  666. }
  667. },
  668. maw: {
  669. height: math.unit(183 / 5, "cm"),
  670. name: "Maw",
  671. image: {
  672. source: "./media/characters/sofia-fluttertail/maw.svg"
  673. }
  674. },
  675. mawcloseup: {
  676. height: math.unit(183 / 5 * 0.41, "cm"),
  677. name: "Maw (Closeup)",
  678. image: {
  679. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  680. }
  681. },
  682. },
  683. [
  684. {
  685. name: "Normal",
  686. height: math.unit(1.83, "meter")
  687. },
  688. {
  689. name: "Size Thief",
  690. height: math.unit(18, "feet")
  691. },
  692. {
  693. name: "50 Foot Collie",
  694. height: math.unit(50, "feet")
  695. },
  696. {
  697. name: "Macro",
  698. height: math.unit(96, "feet"),
  699. default: true
  700. },
  701. {
  702. name: "Megamerger",
  703. height: math.unit(650, "feet")
  704. },
  705. ]
  706. ))
  707. characterMakers.push(() => makeCharacter(
  708. { name: "March", species: ["dragon"], tags: ["anthro"] },
  709. {
  710. front: {
  711. height: math.unit(7, "feet"),
  712. weight: math.unit(100, "kg"),
  713. name: "Front",
  714. image: {
  715. source: "./media/characters/march/front.svg",
  716. extra: 1,
  717. bottom: 0.015
  718. }
  719. },
  720. foot: {
  721. height: math.unit(0.9, "feet"),
  722. name: "Foot",
  723. image: {
  724. source: "./media/characters/march/foot.svg"
  725. }
  726. },
  727. },
  728. [
  729. {
  730. name: "Normal",
  731. height: math.unit(7.9, "feet")
  732. },
  733. {
  734. name: "Macro",
  735. height: math.unit(220, "meters")
  736. },
  737. {
  738. name: "Megamacro",
  739. height: math.unit(2.98, "km"),
  740. default: true
  741. },
  742. {
  743. name: "Gigamacro",
  744. height: math.unit(15963, "km")
  745. },
  746. {
  747. name: "Teramacro",
  748. height: math.unit(2980000000, "km")
  749. },
  750. {
  751. name: "Examacro",
  752. height: math.unit(250, "parsecs")
  753. },
  754. ]
  755. ))
  756. characterMakers.push(() => makeCharacter(
  757. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  758. {
  759. front: {
  760. height: math.unit(6, "feet"),
  761. weight: math.unit(60, "kg"),
  762. name: "Front",
  763. image: {
  764. source: "./media/characters/noir/front.svg",
  765. extra: 1,
  766. bottom: 0.032
  767. }
  768. },
  769. },
  770. [
  771. {
  772. name: "Normal",
  773. height: math.unit(6.6, "feet")
  774. },
  775. {
  776. name: "Macro",
  777. height: math.unit(500, "feet")
  778. },
  779. {
  780. name: "Megamacro",
  781. height: math.unit(2.5, "km"),
  782. default: true
  783. },
  784. {
  785. name: "Gigamacro",
  786. height: math.unit(22500, "km")
  787. },
  788. {
  789. name: "Teramacro",
  790. height: math.unit(2500000000, "km")
  791. },
  792. {
  793. name: "Examacro",
  794. height: math.unit(200, "parsecs")
  795. },
  796. ]
  797. ))
  798. characterMakers.push(() => makeCharacter(
  799. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  800. {
  801. front: {
  802. height: math.unit(7, "feet"),
  803. weight: math.unit(100, "kg"),
  804. name: "Front",
  805. image: {
  806. source: "./media/characters/okuri/front.svg",
  807. extra: 1,
  808. bottom: 0.037
  809. }
  810. },
  811. back: {
  812. height: math.unit(7, "feet"),
  813. weight: math.unit(100, "kg"),
  814. name: "Back",
  815. image: {
  816. source: "./media/characters/okuri/back.svg",
  817. extra: 1,
  818. bottom: 0.007
  819. }
  820. },
  821. },
  822. [
  823. {
  824. name: "Megamacro",
  825. height: math.unit(100, "miles"),
  826. default: true
  827. },
  828. ]
  829. ))
  830. characterMakers.push(() => makeCharacter(
  831. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  832. {
  833. front: {
  834. height: math.unit(7, "feet"),
  835. weight: math.unit(100, "kg"),
  836. name: "Front",
  837. image: {
  838. source: "./media/characters/manny/front.svg",
  839. extra: 1,
  840. bottom: 0.06
  841. }
  842. },
  843. back: {
  844. height: math.unit(7, "feet"),
  845. weight: math.unit(100, "kg"),
  846. name: "Back",
  847. image: {
  848. source: "./media/characters/manny/back.svg",
  849. extra: 1,
  850. bottom: 0.014
  851. }
  852. },
  853. },
  854. [
  855. {
  856. name: "Normal",
  857. height: math.unit(7, "feet"),
  858. },
  859. {
  860. name: "Macro",
  861. height: math.unit(78, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro+",
  866. height: math.unit(300, "meters")
  867. },
  868. {
  869. name: "Macro++",
  870. height: math.unit(2400, "meters")
  871. },
  872. {
  873. name: "Megamacro",
  874. height: math.unit(5167, "meters")
  875. },
  876. {
  877. name: "Gigamacro",
  878. height: math.unit(41769, "miles")
  879. },
  880. ]
  881. ))
  882. characterMakers.push(() => makeCharacter(
  883. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  884. {
  885. front: {
  886. height: math.unit(7, "feet"),
  887. weight: math.unit(100, "kg"),
  888. name: "Front",
  889. image: {
  890. source: "./media/characters/adake/front-1.svg"
  891. }
  892. },
  893. frontAlt: {
  894. height: math.unit(7, "feet"),
  895. weight: math.unit(100, "kg"),
  896. name: "Front (Alt)",
  897. image: {
  898. source: "./media/characters/adake/front-2.svg",
  899. extra: 1,
  900. bottom: 0.01
  901. }
  902. },
  903. back: {
  904. height: math.unit(7, "feet"),
  905. weight: math.unit(100, "kg"),
  906. name: "Back",
  907. image: {
  908. source: "./media/characters/adake/back.svg",
  909. }
  910. },
  911. kneel: {
  912. height: math.unit(5.385, "feet"),
  913. weight: math.unit(100, "kg"),
  914. name: "Kneeling",
  915. image: {
  916. source: "./media/characters/adake/kneel.svg",
  917. bottom: 0.052
  918. }
  919. },
  920. },
  921. [
  922. {
  923. name: "Normal",
  924. height: math.unit(7, "feet"),
  925. },
  926. {
  927. name: "Macro",
  928. height: math.unit(78, "feet"),
  929. default: true
  930. },
  931. {
  932. name: "Macro+",
  933. height: math.unit(300, "meters")
  934. },
  935. {
  936. name: "Macro++",
  937. height: math.unit(2400, "meters")
  938. },
  939. {
  940. name: "Megamacro",
  941. height: math.unit(5167, "meters")
  942. },
  943. {
  944. name: "Gigamacro",
  945. height: math.unit(41769, "miles")
  946. },
  947. ]
  948. ))
  949. characterMakers.push(() => makeCharacter(
  950. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  951. {
  952. front: {
  953. height: math.unit(1.65, "meters"),
  954. weight: math.unit(50, "kg"),
  955. name: "Front",
  956. image: {
  957. source: "./media/characters/elijah/front.svg",
  958. extra: 858/830,
  959. bottom: 95.5/953.8559
  960. }
  961. },
  962. back: {
  963. height: math.unit(1.65, "meters"),
  964. weight: math.unit(50, "kg"),
  965. name: "Back",
  966. image: {
  967. source: "./media/characters/elijah/back.svg",
  968. extra: 895/850,
  969. bottom: 5.3/897.956
  970. }
  971. },
  972. frontNsfw: {
  973. height: math.unit(1.65, "meters"),
  974. weight: math.unit(50, "kg"),
  975. name: "Front (NSFW)",
  976. image: {
  977. source: "./media/characters/elijah/front-nsfw.svg",
  978. extra: 858/830,
  979. bottom: 95.5/953.8559
  980. }
  981. },
  982. backNsfw: {
  983. height: math.unit(1.65, "meters"),
  984. weight: math.unit(50, "kg"),
  985. name: "Back (NSFW)",
  986. image: {
  987. source: "./media/characters/elijah/back-nsfw.svg",
  988. extra: 895/850,
  989. bottom: 5.3/897.956
  990. }
  991. },
  992. dick: {
  993. height: math.unit(1, "feet"),
  994. name: "Dick",
  995. image: {
  996. source: "./media/characters/elijah/dick.svg"
  997. }
  998. },
  999. beakOpen: {
  1000. height: math.unit(1.25, "feet"),
  1001. name: "Beak (Open)",
  1002. image: {
  1003. source: "./media/characters/elijah/beak-open.svg"
  1004. }
  1005. },
  1006. beakShut: {
  1007. height: math.unit(1.25, "feet"),
  1008. name: "Beak (Shut)",
  1009. image: {
  1010. source: "./media/characters/elijah/beak-shut.svg"
  1011. }
  1012. },
  1013. footFlexing: {
  1014. height: math.unit(1.61, "feet"),
  1015. name: "Foot (Flexing)",
  1016. image: {
  1017. source: "./media/characters/elijah/foot-flexing.svg"
  1018. }
  1019. },
  1020. footStepping: {
  1021. height: math.unit(1.44, "feet"),
  1022. name: "Foot (Stepping)",
  1023. image: {
  1024. source: "./media/characters/elijah/foot-stepping.svg"
  1025. }
  1026. },
  1027. plantigradeLeg: {
  1028. height: math.unit(2.34, "feet"),
  1029. name: "Plantigrade Leg",
  1030. image: {
  1031. source: "./media/characters/elijah/plantigrade-leg.svg"
  1032. }
  1033. },
  1034. plantigradeFootLeft: {
  1035. height: math.unit(0.9, "feet"),
  1036. name: "Plantigrade Foot (Left)",
  1037. image: {
  1038. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1039. }
  1040. },
  1041. plantigradeFootRight: {
  1042. height: math.unit(0.9, "feet"),
  1043. name: "Plantigrade Foot (Right)",
  1044. image: {
  1045. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1046. }
  1047. },
  1048. },
  1049. [
  1050. {
  1051. name: "Normal",
  1052. height: math.unit(1.65, "meters")
  1053. },
  1054. {
  1055. name: "Macro",
  1056. height: math.unit(55, "meters"),
  1057. default: true
  1058. },
  1059. {
  1060. name: "Macro+",
  1061. height: math.unit(105, "meters")
  1062. },
  1063. ]
  1064. ))
  1065. characterMakers.push(() => makeCharacter(
  1066. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1067. {
  1068. front: {
  1069. height: math.unit(11, "feet"),
  1070. weight: math.unit(80, "kg"),
  1071. name: "Front",
  1072. image: {
  1073. source: "./media/characters/rai/front.svg",
  1074. extra: 1,
  1075. bottom: 0.03
  1076. }
  1077. },
  1078. side: {
  1079. height: math.unit(11, "feet"),
  1080. weight: math.unit(80, "kg"),
  1081. name: "Side",
  1082. image: {
  1083. source: "./media/characters/rai/side.svg"
  1084. }
  1085. },
  1086. back: {
  1087. height: math.unit(11, "feet"),
  1088. weight: math.unit(80, "lb"),
  1089. name: "Back",
  1090. image: {
  1091. source: "./media/characters/rai/back.svg",
  1092. extra: 1,
  1093. bottom: 0.01
  1094. }
  1095. },
  1096. feral: {
  1097. height: math.unit(11, "feet"),
  1098. weight: math.unit(800, "lb"),
  1099. name: "Feral",
  1100. image: {
  1101. source: "./media/characters/rai/feral.svg",
  1102. extra: 1050 / 659,
  1103. bottom: 0.07
  1104. }
  1105. },
  1106. dragon: {
  1107. height: math.unit(23, "feet"),
  1108. weight: math.unit(50000, "lb"),
  1109. name: "Dragon",
  1110. image: {
  1111. source: "./media/characters/rai/dragon.svg",
  1112. extra: 2498/2030,
  1113. bottom: 85.2/2584
  1114. }
  1115. },
  1116. maw: {
  1117. height: math.unit(6 / 3.81416, "feet"),
  1118. name: "Maw",
  1119. image: {
  1120. source: "./media/characters/rai/maw.svg"
  1121. }
  1122. },
  1123. },
  1124. [
  1125. {
  1126. name: "Normal",
  1127. height: math.unit(11, "feet")
  1128. },
  1129. {
  1130. name: "Macro",
  1131. height: math.unit(302, "feet"),
  1132. default: true
  1133. },
  1134. ]
  1135. ))
  1136. characterMakers.push(() => makeCharacter(
  1137. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1138. {
  1139. front: {
  1140. height: math.unit(7, "feet"),
  1141. weight: math.unit(80, "kg"),
  1142. name: "Front",
  1143. image: {
  1144. source: "./media/characters/jazzy/front.svg",
  1145. extra: 1,
  1146. bottom: 0.01
  1147. }
  1148. },
  1149. back: {
  1150. height: math.unit(7, "feet"),
  1151. weight: math.unit(80, "kg"),
  1152. name: "Back",
  1153. image: {
  1154. source: "./media/characters/jazzy/back.svg",
  1155. extra: 1,
  1156. bottom: 0.01
  1157. }
  1158. },
  1159. },
  1160. [
  1161. {
  1162. name: "Macro",
  1163. height: math.unit(216, "feet"),
  1164. default: true
  1165. },
  1166. ]
  1167. ))
  1168. characterMakers.push(() => makeCharacter(
  1169. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1170. {
  1171. front: {
  1172. height: math.unit(7, "feet"),
  1173. weight: math.unit(80, "kg"),
  1174. name: "Front",
  1175. image: {
  1176. source: "./media/characters/flamm/front.svg",
  1177. extra: 1794 / 1677,
  1178. bottom: 31.7 / 1828.5
  1179. }
  1180. },
  1181. },
  1182. [
  1183. {
  1184. name: "Normal",
  1185. height: math.unit(9.5, "feet")
  1186. },
  1187. {
  1188. name: "Macro",
  1189. height: math.unit(200, "feet"),
  1190. default: true
  1191. },
  1192. ]
  1193. ))
  1194. characterMakers.push(() => makeCharacter(
  1195. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1196. {
  1197. front: {
  1198. height: math.unit(7, "feet"),
  1199. weight: math.unit(80, "kg"),
  1200. name: "Front",
  1201. image: {
  1202. source: "./media/characters/zephiro/front.svg",
  1203. extra: 2309 / 2162,
  1204. bottom: 0.069
  1205. }
  1206. },
  1207. side: {
  1208. height: math.unit(7, "feet"),
  1209. weight: math.unit(80, "kg"),
  1210. name: "Side",
  1211. image: {
  1212. source: "./media/characters/zephiro/side.svg",
  1213. extra: 2403 / 2279,
  1214. bottom: 0.015
  1215. }
  1216. },
  1217. back: {
  1218. height: math.unit(7, "feet"),
  1219. weight: math.unit(80, "kg"),
  1220. name: "Back",
  1221. image: {
  1222. source: "./media/characters/zephiro/back.svg",
  1223. extra: 2373 / 2244,
  1224. bottom: 0.013
  1225. }
  1226. },
  1227. },
  1228. [
  1229. {
  1230. name: "Micro",
  1231. height: math.unit(3, "inches")
  1232. },
  1233. {
  1234. name: "Normal",
  1235. height: math.unit(5 + 3 / 12, "feet"),
  1236. default: true
  1237. },
  1238. {
  1239. name: "Macro",
  1240. height: math.unit(118, "feet")
  1241. },
  1242. ]
  1243. ))
  1244. characterMakers.push(() => makeCharacter(
  1245. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1246. {
  1247. front: {
  1248. height: math.unit(5, "feet"),
  1249. weight: math.unit(90, "kg"),
  1250. name: "Front",
  1251. image: {
  1252. source: "./media/characters/fory/front.svg",
  1253. extra: 2862 / 2674,
  1254. bottom: 180 / 3043.8
  1255. }
  1256. },
  1257. back: {
  1258. height: math.unit(5, "feet"),
  1259. weight: math.unit(90, "kg"),
  1260. name: "Back",
  1261. image: {
  1262. source: "./media/characters/fory/back.svg",
  1263. extra: 2962 / 2791,
  1264. bottom: 106 / 3071.8
  1265. }
  1266. },
  1267. foot: {
  1268. height: math.unit(2.14, "feet"),
  1269. name: "Foot",
  1270. image: {
  1271. source: "./media/characters/fory/foot.svg"
  1272. }
  1273. },
  1274. },
  1275. [
  1276. {
  1277. name: "Normal",
  1278. height: math.unit(5, "feet")
  1279. },
  1280. {
  1281. name: "Macro",
  1282. height: math.unit(50, "feet"),
  1283. default: true
  1284. },
  1285. {
  1286. name: "Megamacro",
  1287. height: math.unit(10, "miles")
  1288. },
  1289. {
  1290. name: "Gigamacro",
  1291. height: math.unit(5, "earths")
  1292. },
  1293. ]
  1294. ))
  1295. characterMakers.push(() => makeCharacter(
  1296. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1297. {
  1298. front: {
  1299. height: math.unit(7, "feet"),
  1300. weight: math.unit(90, "kg"),
  1301. name: "Front",
  1302. image: {
  1303. source: "./media/characters/kurrikage/front.svg",
  1304. extra: 1,
  1305. bottom: 0.035
  1306. }
  1307. },
  1308. back: {
  1309. height: math.unit(7, "feet"),
  1310. weight: math.unit(90, "lb"),
  1311. name: "Back",
  1312. image: {
  1313. source: "./media/characters/kurrikage/back.svg"
  1314. }
  1315. },
  1316. paw: {
  1317. height: math.unit(1.5, "feet"),
  1318. name: "Paw",
  1319. image: {
  1320. source: "./media/characters/kurrikage/paw.svg"
  1321. }
  1322. },
  1323. staff: {
  1324. height: math.unit(6.7, "feet"),
  1325. name: "Staff",
  1326. image: {
  1327. source: "./media/characters/kurrikage/staff.svg"
  1328. }
  1329. },
  1330. peek: {
  1331. height: math.unit(1.05, "feet"),
  1332. name: "Peeking",
  1333. image: {
  1334. source: "./media/characters/kurrikage/peek.svg",
  1335. bottom: 0.08
  1336. }
  1337. },
  1338. },
  1339. [
  1340. {
  1341. name: "Normal",
  1342. height: math.unit(12, "feet"),
  1343. default: true
  1344. },
  1345. {
  1346. name: "Big",
  1347. height: math.unit(20, "feet")
  1348. },
  1349. {
  1350. name: "Macro",
  1351. height: math.unit(500, "feet")
  1352. },
  1353. {
  1354. name: "Megamacro",
  1355. height: math.unit(20, "miles")
  1356. },
  1357. ]
  1358. ))
  1359. characterMakers.push(() => makeCharacter(
  1360. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1361. {
  1362. front: {
  1363. height: math.unit(6, "feet"),
  1364. weight: math.unit(75, "kg"),
  1365. name: "Front",
  1366. image: {
  1367. source: "./media/characters/shingo/front.svg",
  1368. extra: 3511 / 3338,
  1369. bottom: 0.005
  1370. }
  1371. },
  1372. },
  1373. [
  1374. {
  1375. name: "Micro",
  1376. height: math.unit(4, "inches")
  1377. },
  1378. {
  1379. name: "Normal",
  1380. height: math.unit(6, "feet"),
  1381. default: true
  1382. },
  1383. {
  1384. name: "Macro",
  1385. height: math.unit(108, "feet")
  1386. }
  1387. ]
  1388. ))
  1389. characterMakers.push(() => makeCharacter(
  1390. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1391. {
  1392. side: {
  1393. height: math.unit(6, "feet"),
  1394. weight: math.unit(75, "kg"),
  1395. name: "Side",
  1396. image: {
  1397. source: "./media/characters/aigey/side.svg"
  1398. }
  1399. },
  1400. },
  1401. [
  1402. {
  1403. name: "Macro",
  1404. height: math.unit(200, "feet"),
  1405. default: true
  1406. },
  1407. {
  1408. name: "Megamacro",
  1409. height: math.unit(100, "miles")
  1410. },
  1411. ]
  1412. )
  1413. )
  1414. characterMakers.push(() => makeCharacter(
  1415. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1416. {
  1417. front: {
  1418. height: math.unit(5 + 5 / 12, "feet"),
  1419. weight: math.unit(75, "kg"),
  1420. name: "Front",
  1421. image: {
  1422. source: "./media/characters/natasha/front.svg",
  1423. extra: 859/824,
  1424. bottom: 23/879.6
  1425. }
  1426. },
  1427. frontNsfw: {
  1428. height: math.unit(5 + 5 / 12, "feet"),
  1429. weight: math.unit(75, "kg"),
  1430. name: "Front (NSFW)",
  1431. image: {
  1432. source: "./media/characters/natasha/front-nsfw.svg",
  1433. extra: 859/824,
  1434. bottom: 23/879.6
  1435. }
  1436. },
  1437. frontErect: {
  1438. height: math.unit(5 + 5 / 12, "feet"),
  1439. weight: math.unit(75, "kg"),
  1440. name: "Front (Erect)",
  1441. image: {
  1442. source: "./media/characters/natasha/front-erect.svg",
  1443. extra: 859/824,
  1444. bottom: 23/879.6
  1445. }
  1446. },
  1447. back: {
  1448. height: math.unit(5 + 5 / 12, "feet"),
  1449. weight: math.unit(75, "kg"),
  1450. name: "Back",
  1451. image: {
  1452. source: "./media/characters/natasha/back.svg",
  1453. extra: 887.9/852.6,
  1454. bottom: 9.7/896.4
  1455. }
  1456. },
  1457. backAlt: {
  1458. height: math.unit(5 + 5 / 12, "feet"),
  1459. weight: math.unit(75, "kg"),
  1460. name: "Back (Alt)",
  1461. image: {
  1462. source: "./media/characters/natasha/back-alt.svg",
  1463. extra: 1236.7/1192,
  1464. bottom: 22.3/1258.2
  1465. }
  1466. },
  1467. dick: {
  1468. height: math.unit(1.772, "feet"),
  1469. name: "Dick",
  1470. image: {
  1471. source: "./media/characters/natasha/dick.svg"
  1472. }
  1473. },
  1474. },
  1475. [
  1476. {
  1477. name: "Normal",
  1478. height: math.unit(5 + 5 / 12, "feet")
  1479. },
  1480. {
  1481. name: "Large",
  1482. height: math.unit(12, "feet")
  1483. },
  1484. {
  1485. name: "Macro",
  1486. height: math.unit(100, "feet"),
  1487. default: true
  1488. },
  1489. {
  1490. name: "Macro+",
  1491. height: math.unit(260, "feet")
  1492. },
  1493. {
  1494. name: "Macro++",
  1495. height: math.unit(1, "mile")
  1496. },
  1497. ]
  1498. ))
  1499. characterMakers.push(() => makeCharacter(
  1500. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1501. {
  1502. front: {
  1503. height: math.unit(6, "feet"),
  1504. weight: math.unit(75, "kg"),
  1505. name: "Front",
  1506. image: {
  1507. source: "./media/characters/malik/front.svg"
  1508. }
  1509. },
  1510. side: {
  1511. height: math.unit(6, "feet"),
  1512. weight: math.unit(75, "kg"),
  1513. name: "Side",
  1514. image: {
  1515. source: "./media/characters/malik/side.svg",
  1516. extra: 1.1539
  1517. }
  1518. },
  1519. back: {
  1520. height: math.unit(6, "feet"),
  1521. weight: math.unit(75, "kg"),
  1522. name: "Back",
  1523. image: {
  1524. source: "./media/characters/malik/back.svg"
  1525. }
  1526. },
  1527. },
  1528. [
  1529. {
  1530. name: "Macro",
  1531. height: math.unit(156, "feet"),
  1532. default: true
  1533. },
  1534. {
  1535. name: "Macro+",
  1536. height: math.unit(1188, "feet")
  1537. },
  1538. ]
  1539. ))
  1540. characterMakers.push(() => makeCharacter(
  1541. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1542. {
  1543. front: {
  1544. height: math.unit(6, "feet"),
  1545. weight: math.unit(75, "kg"),
  1546. name: "Front",
  1547. image: {
  1548. source: "./media/characters/sefer/front.svg"
  1549. }
  1550. },
  1551. back: {
  1552. height: math.unit(6, "feet"),
  1553. weight: math.unit(75, "kg"),
  1554. name: "Back",
  1555. image: {
  1556. source: "./media/characters/sefer/back.svg"
  1557. }
  1558. },
  1559. },
  1560. [
  1561. {
  1562. name: "Normal",
  1563. height: math.unit(6, "feet"),
  1564. default: true
  1565. },
  1566. ]
  1567. ))
  1568. characterMakers.push(() => makeCharacter(
  1569. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1570. {
  1571. body: {
  1572. height: math.unit(2.2428, "meter"),
  1573. weight: math.unit(124.738, "kg"),
  1574. name: "Body",
  1575. image: {
  1576. extra: 1225 / 1050,
  1577. source: "./media/characters/north/front.svg"
  1578. }
  1579. }
  1580. },
  1581. [
  1582. {
  1583. name: "Micro",
  1584. height: math.unit(4, "inches")
  1585. },
  1586. {
  1587. name: "Macro",
  1588. height: math.unit(63, "meters")
  1589. },
  1590. {
  1591. name: "Megamacro",
  1592. height: math.unit(101, "miles"),
  1593. default: true
  1594. }
  1595. ]
  1596. ))
  1597. characterMakers.push(() => makeCharacter(
  1598. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1599. {
  1600. angled: {
  1601. height: math.unit(4, "meter"),
  1602. weight: math.unit(150, "kg"),
  1603. name: "Angled",
  1604. image: {
  1605. source: "./media/characters/talan/angled-sfw.svg",
  1606. bottom: 29 / 3734
  1607. }
  1608. },
  1609. angledNsfw: {
  1610. height: math.unit(4, "meter"),
  1611. weight: math.unit(150, "kg"),
  1612. name: "Angled (NSFW)",
  1613. image: {
  1614. source: "./media/characters/talan/angled-nsfw.svg",
  1615. bottom: 29 / 3734
  1616. }
  1617. },
  1618. frontNsfw: {
  1619. height: math.unit(4, "meter"),
  1620. weight: math.unit(150, "kg"),
  1621. name: "Front (NSFW)",
  1622. image: {
  1623. source: "./media/characters/talan/front-nsfw.svg",
  1624. bottom: 29 / 3734
  1625. }
  1626. },
  1627. sideNsfw: {
  1628. height: math.unit(4, "meter"),
  1629. weight: math.unit(150, "kg"),
  1630. name: "Side (NSFW)",
  1631. image: {
  1632. source: "./media/characters/talan/side-nsfw.svg",
  1633. bottom: 29 / 3734
  1634. }
  1635. },
  1636. back: {
  1637. height: math.unit(4, "meter"),
  1638. weight: math.unit(150, "kg"),
  1639. name: "Back",
  1640. image: {
  1641. source: "./media/characters/talan/back.svg"
  1642. }
  1643. },
  1644. dickBottom: {
  1645. height: math.unit(0.621, "meter"),
  1646. name: "Dick (Bottom)",
  1647. image: {
  1648. source: "./media/characters/talan/dick-bottom.svg"
  1649. }
  1650. },
  1651. dickTop: {
  1652. height: math.unit(0.621, "meter"),
  1653. name: "Dick (Top)",
  1654. image: {
  1655. source: "./media/characters/talan/dick-top.svg"
  1656. }
  1657. },
  1658. dickSide: {
  1659. height: math.unit(0.305, "meter"),
  1660. name: "Dick (Side)",
  1661. image: {
  1662. source: "./media/characters/talan/dick-side.svg"
  1663. }
  1664. },
  1665. dickFront: {
  1666. height: math.unit(0.305, "meter"),
  1667. name: "Dick (Front)",
  1668. image: {
  1669. source: "./media/characters/talan/dick-front.svg"
  1670. }
  1671. },
  1672. },
  1673. [
  1674. {
  1675. name: "Normal",
  1676. height: math.unit(4, "meters")
  1677. },
  1678. {
  1679. name: "Macro",
  1680. height: math.unit(100, "meters")
  1681. },
  1682. {
  1683. name: "Megamacro",
  1684. height: math.unit(2, "miles"),
  1685. default: true
  1686. },
  1687. {
  1688. name: "Gigamacro",
  1689. height: math.unit(5000, "miles")
  1690. },
  1691. {
  1692. name: "Teramacro",
  1693. height: math.unit(100, "parsecs")
  1694. }
  1695. ]
  1696. ))
  1697. characterMakers.push(() => makeCharacter(
  1698. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1699. {
  1700. front: {
  1701. height: math.unit(2, "meter"),
  1702. weight: math.unit(90, "kg"),
  1703. name: "Front",
  1704. image: {
  1705. source: "./media/characters/gael'rathus/front.svg"
  1706. }
  1707. },
  1708. frontAlt: {
  1709. height: math.unit(2, "meter"),
  1710. weight: math.unit(90, "kg"),
  1711. name: "Front (alt)",
  1712. image: {
  1713. source: "./media/characters/gael'rathus/front-alt.svg"
  1714. }
  1715. },
  1716. frontAlt2: {
  1717. height: math.unit(2, "meter"),
  1718. weight: math.unit(90, "kg"),
  1719. name: "Front (alt 2)",
  1720. image: {
  1721. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1722. }
  1723. }
  1724. },
  1725. [
  1726. {
  1727. name: "Normal",
  1728. height: math.unit(9, "feet"),
  1729. default: true
  1730. },
  1731. {
  1732. name: "Large",
  1733. height: math.unit(25, "feet")
  1734. },
  1735. {
  1736. name: "Macro",
  1737. height: math.unit(0.25, "miles")
  1738. },
  1739. {
  1740. name: "Megamacro",
  1741. height: math.unit(10, "miles")
  1742. }
  1743. ]
  1744. ))
  1745. characterMakers.push(() => makeCharacter(
  1746. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1747. {
  1748. side: {
  1749. height: math.unit(2, "meter"),
  1750. weight: math.unit(140, "kg"),
  1751. name: "Side",
  1752. image: {
  1753. source: "./media/characters/sosha/side.svg",
  1754. bottom: 0.042
  1755. }
  1756. },
  1757. },
  1758. [
  1759. {
  1760. name: "Normal",
  1761. height: math.unit(12, "feet"),
  1762. default: true
  1763. }
  1764. ]
  1765. ))
  1766. characterMakers.push(() => makeCharacter(
  1767. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1768. {
  1769. side: {
  1770. height: math.unit(5 + 5 / 12, "feet"),
  1771. weight: math.unit(170, "kg"),
  1772. name: "Side",
  1773. image: {
  1774. source: "./media/characters/runnola/side.svg",
  1775. extra: 741 / 448,
  1776. bottom: 0.05
  1777. }
  1778. },
  1779. },
  1780. [
  1781. {
  1782. name: "Small",
  1783. height: math.unit(3, "feet")
  1784. },
  1785. {
  1786. name: "Normal",
  1787. height: math.unit(5 + 5 / 12, "feet"),
  1788. default: true
  1789. },
  1790. {
  1791. name: "Big",
  1792. height: math.unit(10, "feet")
  1793. },
  1794. ]
  1795. ))
  1796. characterMakers.push(() => makeCharacter(
  1797. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1798. {
  1799. front: {
  1800. height: math.unit(2, "meter"),
  1801. weight: math.unit(50, "kg"),
  1802. name: "Front",
  1803. image: {
  1804. source: "./media/characters/kurribird/front.svg",
  1805. bottom: 0.015
  1806. }
  1807. },
  1808. frontAlt: {
  1809. height: math.unit(1.5, "meter"),
  1810. weight: math.unit(50, "kg"),
  1811. name: "Front (Alt)",
  1812. image: {
  1813. source: "./media/characters/kurribird/front-alt.svg",
  1814. extra: 1.45
  1815. }
  1816. },
  1817. },
  1818. [
  1819. {
  1820. name: "Normal",
  1821. height: math.unit(7, "feet")
  1822. },
  1823. {
  1824. name: "Big",
  1825. height: math.unit(12, "feet"),
  1826. default: true
  1827. },
  1828. {
  1829. name: "Macro",
  1830. height: math.unit(1500, "feet")
  1831. },
  1832. {
  1833. name: "Megamacro",
  1834. height: math.unit(2, "miles")
  1835. }
  1836. ]
  1837. ))
  1838. characterMakers.push(() => makeCharacter(
  1839. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1840. {
  1841. front: {
  1842. height: math.unit(2, "meter"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Front",
  1845. image: {
  1846. source: "./media/characters/elbial/front.svg",
  1847. extra: 1643 / 1556,
  1848. bottom: 60.2 / 1696
  1849. }
  1850. },
  1851. side: {
  1852. height: math.unit(2, "meter"),
  1853. weight: math.unit(80, "kg"),
  1854. name: "Side",
  1855. image: {
  1856. source: "./media/characters/elbial/side.svg",
  1857. extra: 1630 / 1565,
  1858. bottom: 71.5 / 1697
  1859. }
  1860. },
  1861. back: {
  1862. height: math.unit(2, "meter"),
  1863. weight: math.unit(80, "kg"),
  1864. name: "Back",
  1865. image: {
  1866. source: "./media/characters/elbial/back.svg",
  1867. extra: 1668 / 1595,
  1868. bottom: 5.6 / 1672
  1869. }
  1870. },
  1871. frontDressed: {
  1872. height: math.unit(2, "meter"),
  1873. weight: math.unit(80, "kg"),
  1874. name: "Front (Dressed)",
  1875. image: {
  1876. source: "./media/characters/elbial/front-dressed.svg",
  1877. extra: 1653 / 1584,
  1878. bottom: 57 / 1708
  1879. }
  1880. },
  1881. genitals: {
  1882. height: math.unit(2 / 3.367, "meter"),
  1883. name: "Genitals",
  1884. image: {
  1885. source: "./media/characters/elbial/genitals.svg"
  1886. }
  1887. },
  1888. },
  1889. [
  1890. {
  1891. name: "Large",
  1892. height: math.unit(100, "feet")
  1893. },
  1894. {
  1895. name: "Macro",
  1896. height: math.unit(500, "feet"),
  1897. default: true
  1898. },
  1899. {
  1900. name: "Megamacro",
  1901. height: math.unit(10, "miles")
  1902. },
  1903. {
  1904. name: "Gigamacro",
  1905. height: math.unit(25000, "miles")
  1906. },
  1907. {
  1908. name: "Full-Size",
  1909. height: math.unit(8000000, "gigaparsecs")
  1910. }
  1911. ]
  1912. ))
  1913. characterMakers.push(() => makeCharacter(
  1914. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1915. {
  1916. front: {
  1917. height: math.unit(2, "meter"),
  1918. weight: math.unit(60, "kg"),
  1919. name: "Front",
  1920. image: {
  1921. source: "./media/characters/noah/front.svg"
  1922. }
  1923. },
  1924. talons: {
  1925. height: math.unit(0.315, "meter"),
  1926. name: "Talons",
  1927. image: {
  1928. source: "./media/characters/noah/talons.svg"
  1929. }
  1930. }
  1931. },
  1932. [
  1933. {
  1934. name: "Large",
  1935. height: math.unit(50, "feet")
  1936. },
  1937. {
  1938. name: "Macro",
  1939. height: math.unit(750, "feet"),
  1940. default: true
  1941. },
  1942. {
  1943. name: "Megamacro",
  1944. height: math.unit(50, "miles")
  1945. },
  1946. {
  1947. name: "Gigamacro",
  1948. height: math.unit(100000, "miles")
  1949. },
  1950. {
  1951. name: "Full-Size",
  1952. height: math.unit(3000000000, "miles")
  1953. }
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  1958. {
  1959. front: {
  1960. height: math.unit(2, "meter"),
  1961. weight: math.unit(80, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/natalya/front.svg"
  1965. }
  1966. },
  1967. back: {
  1968. height: math.unit(2, "meter"),
  1969. weight: math.unit(80, "kg"),
  1970. name: "Back",
  1971. image: {
  1972. source: "./media/characters/natalya/back.svg"
  1973. }
  1974. }
  1975. },
  1976. [
  1977. {
  1978. name: "Normal",
  1979. height: math.unit(150, "feet"),
  1980. default: true
  1981. },
  1982. {
  1983. name: "Megamacro",
  1984. height: math.unit(5, "miles")
  1985. },
  1986. {
  1987. name: "Full-Size",
  1988. height: math.unit(600, "kiloparsecs")
  1989. }
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(2, "meter"),
  1997. weight: math.unit(50, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/erestrebah/front.svg",
  2001. extra: 208 / 193,
  2002. bottom: 0.055
  2003. }
  2004. },
  2005. back: {
  2006. height: math.unit(2, "meter"),
  2007. weight: math.unit(50, "kg"),
  2008. name: "Back",
  2009. image: {
  2010. source: "./media/characters/erestrebah/back.svg",
  2011. extra: 1.3
  2012. }
  2013. }
  2014. },
  2015. [
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(10, "feet")
  2019. },
  2020. {
  2021. name: "Large",
  2022. height: math.unit(50, "feet"),
  2023. default: true
  2024. },
  2025. {
  2026. name: "Macro",
  2027. height: math.unit(300, "feet")
  2028. },
  2029. {
  2030. name: "Macro+",
  2031. height: math.unit(750, "feet")
  2032. },
  2033. {
  2034. name: "Megamacro",
  2035. height: math.unit(3, "miles")
  2036. }
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2041. {
  2042. front: {
  2043. height: math.unit(2, "meter"),
  2044. weight: math.unit(80, "kg"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/jennifer/front.svg",
  2048. bottom: 0.11,
  2049. extra: 1.16
  2050. }
  2051. },
  2052. frontAlt: {
  2053. height: math.unit(2, "meter"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Front (Alt)",
  2056. image: {
  2057. source: "./media/characters/jennifer/front-alt.svg"
  2058. }
  2059. }
  2060. },
  2061. [
  2062. {
  2063. name: "Canon Height",
  2064. height: math.unit(120, "feet"),
  2065. default: true
  2066. },
  2067. {
  2068. name: "Macro+",
  2069. height: math.unit(300, "feet")
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(20000, "feet")
  2074. }
  2075. ]
  2076. ))
  2077. characterMakers.push(() => makeCharacter(
  2078. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2079. {
  2080. front: {
  2081. height: math.unit(2, "meter"),
  2082. weight: math.unit(50, "kg"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/kalista/front.svg",
  2086. extra: 1947 / 1700,
  2087. bottom: 76.6/1412.98
  2088. }
  2089. },
  2090. back: {
  2091. height: math.unit(2, "meter"),
  2092. weight: math.unit(50, "kg"),
  2093. name: "Back",
  2094. image: {
  2095. source: "./media/characters/kalista/back.svg",
  2096. extra: 1366 / 1156,
  2097. bottom: 33.9/1362.78
  2098. }
  2099. }
  2100. },
  2101. [
  2102. {
  2103. name: "Uncomfortably Small",
  2104. height: math.unit(10, "feet")
  2105. },
  2106. {
  2107. name: "Small",
  2108. height: math.unit(30, "feet")
  2109. },
  2110. {
  2111. name: "Macro",
  2112. height: math.unit(100, "feet"),
  2113. default: true
  2114. },
  2115. {
  2116. name: "Macro+",
  2117. height: math.unit(2000, "feet")
  2118. },
  2119. {
  2120. name: "True Form",
  2121. height: math.unit(8924, "miles")
  2122. }
  2123. ]
  2124. ))
  2125. characterMakers.push(() => makeCharacter(
  2126. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2127. {
  2128. front: {
  2129. height: math.unit(2, "meter"),
  2130. weight: math.unit(120, "kg"),
  2131. name: "Front",
  2132. image: {
  2133. source: "./media/characters/ggv/front.svg"
  2134. }
  2135. },
  2136. side: {
  2137. height: math.unit(2, "meter"),
  2138. weight: math.unit(120, "kg"),
  2139. name: "Side",
  2140. image: {
  2141. source: "./media/characters/ggv/side.svg"
  2142. }
  2143. }
  2144. },
  2145. [
  2146. {
  2147. name: "Extremely Puny",
  2148. height: math.unit(9 + 5 / 12, "feet")
  2149. },
  2150. {
  2151. name: "Horribly Small",
  2152. height: math.unit(47.7, "miles"),
  2153. default: true
  2154. },
  2155. {
  2156. name: "Reasonably Sized",
  2157. height: math.unit(25000, "parsecs")
  2158. },
  2159. {
  2160. name: "Slightly Uncompressed",
  2161. height: math.unit(7.77e31, "parsecs")
  2162. },
  2163. {
  2164. name: "Omniversal",
  2165. height: math.unit(1e300, "meters")
  2166. },
  2167. ]
  2168. ))
  2169. characterMakers.push(() => makeCharacter(
  2170. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2171. {
  2172. front: {
  2173. height: math.unit(2, "meter"),
  2174. weight: math.unit(75, "lb"),
  2175. name: "Front",
  2176. image: {
  2177. source: "./media/characters/napalm/front.svg"
  2178. }
  2179. },
  2180. back: {
  2181. height: math.unit(2, "meter"),
  2182. weight: math.unit(75, "lb"),
  2183. name: "Back",
  2184. image: {
  2185. source: "./media/characters/napalm/back.svg"
  2186. }
  2187. }
  2188. },
  2189. [
  2190. {
  2191. name: "Standard",
  2192. height: math.unit(55, "feet"),
  2193. default: true
  2194. }
  2195. ]
  2196. ))
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(7 + 5 / 6, "feet"),
  2202. weight: math.unit(325, "lb"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/asana/front.svg",
  2206. extra: 1128 / 1068
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7 + 5 / 6, "feet"),
  2211. weight: math.unit(325, "lb"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/asana/back.svg",
  2215. extra: 1128 / 1068
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Standard",
  2222. height: math.unit(7 + 5 / 6, "feet"),
  2223. default: true
  2224. },
  2225. {
  2226. name: "Large",
  2227. height: math.unit(10, "meters")
  2228. },
  2229. {
  2230. name: "Macro",
  2231. height: math.unit(2500, "meters")
  2232. },
  2233. {
  2234. name: "Megamacro",
  2235. height: math.unit(5e6, "meters")
  2236. },
  2237. {
  2238. name: "Examacro",
  2239. height: math.unit(5e12, "lightyears")
  2240. },
  2241. {
  2242. name: "Max Size",
  2243. height: math.unit(1e31, "lightyears")
  2244. }
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(2, "meter"),
  2252. weight: math.unit(60, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/ebony/front.svg",
  2256. bottom: 0.03,
  2257. extra: 1045 / 810 + 0.03
  2258. }
  2259. },
  2260. side: {
  2261. height: math.unit(2, "meter"),
  2262. weight: math.unit(60, "kg"),
  2263. name: "Side",
  2264. image: {
  2265. source: "./media/characters/ebony/side.svg",
  2266. bottom: 0.03,
  2267. extra: 1045 / 810 + 0.03
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(2, "meter"),
  2272. weight: math.unit(60, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/ebony/back.svg",
  2276. bottom: 0.01,
  2277. extra: 1045 / 810 + 0.01
  2278. }
  2279. },
  2280. },
  2281. [
  2282. // TODO check why I did this lol
  2283. {
  2284. name: "Standard",
  2285. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2286. default: true
  2287. },
  2288. {
  2289. name: "Macro",
  2290. height: math.unit(200, "feet")
  2291. },
  2292. {
  2293. name: "Gigamacro",
  2294. height: math.unit(13000, "km")
  2295. }
  2296. ]
  2297. ))
  2298. characterMakers.push(() => makeCharacter(
  2299. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2300. {
  2301. front: {
  2302. height: math.unit(6, "feet"),
  2303. weight: math.unit(175, "lb"),
  2304. name: "Front",
  2305. image: {
  2306. source: "./media/characters/mountain/front.svg"
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(6, "feet"),
  2311. weight: math.unit(175, "lb"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/mountain/back.svg"
  2315. }
  2316. },
  2317. },
  2318. [
  2319. {
  2320. name: "Large",
  2321. height: math.unit(20, "meters")
  2322. },
  2323. {
  2324. name: "Macro",
  2325. height: math.unit(300, "meters")
  2326. },
  2327. {
  2328. name: "Gigamacro",
  2329. height: math.unit(10000, "km"),
  2330. default: true
  2331. },
  2332. {
  2333. name: "Examacro",
  2334. height: math.unit(10e9, "lightyears")
  2335. }
  2336. ]
  2337. ))
  2338. characterMakers.push(() => makeCharacter(
  2339. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2340. {
  2341. front: {
  2342. height: math.unit(8, "feet"),
  2343. weight: math.unit(500, "lb"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/rick/front.svg"
  2347. }
  2348. }
  2349. },
  2350. [
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(8, "feet"),
  2354. default: true
  2355. },
  2356. {
  2357. name: "Macro",
  2358. height: math.unit(5, "km")
  2359. }
  2360. ]
  2361. ))
  2362. characterMakers.push(() => makeCharacter(
  2363. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2364. {
  2365. front: {
  2366. height: math.unit(8, "feet"),
  2367. weight: math.unit(120, "lb"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/ona/front.svg"
  2371. }
  2372. },
  2373. frontAlt: {
  2374. height: math.unit(8, "feet"),
  2375. weight: math.unit(120, "lb"),
  2376. name: "Front (Alt)",
  2377. image: {
  2378. source: "./media/characters/ona/front-alt.svg"
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(8, "feet"),
  2383. weight: math.unit(120, "lb"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/ona/back.svg"
  2387. }
  2388. },
  2389. foot: {
  2390. height: math.unit(1.1, "feet"),
  2391. name: "Foot",
  2392. image: {
  2393. source: "./media/characters/ona/foot.svg"
  2394. }
  2395. }
  2396. },
  2397. [
  2398. {
  2399. name: "Megamacro",
  2400. height: math.unit(70, "km"),
  2401. default: true
  2402. },
  2403. {
  2404. name: "Gigamacro",
  2405. height: math.unit(681818, "miles")
  2406. },
  2407. {
  2408. name: "Examacro",
  2409. height: math.unit(3800000, "lightyears")
  2410. },
  2411. ]
  2412. ))
  2413. characterMakers.push(() => makeCharacter(
  2414. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2415. {
  2416. front: {
  2417. height: math.unit(12, "feet"),
  2418. weight: math.unit(3000, "lb"),
  2419. name: "Front",
  2420. image: {
  2421. source: "./media/characters/mech/front.svg",
  2422. bottom: 0.025,
  2423. }
  2424. },
  2425. back: {
  2426. height: math.unit(12, "feet"),
  2427. weight: math.unit(3000, "lb"),
  2428. name: "Back",
  2429. image: {
  2430. source: "./media/characters/mech/back.svg",
  2431. bottom: 0.03,
  2432. }
  2433. }
  2434. },
  2435. [
  2436. {
  2437. name: "Normal",
  2438. height: math.unit(12, "feet")
  2439. },
  2440. {
  2441. name: "Macro",
  2442. height: math.unit(300, "feet"),
  2443. default: true
  2444. },
  2445. {
  2446. name: "Macro+",
  2447. height: math.unit(1500, "feet")
  2448. },
  2449. ]
  2450. ))
  2451. characterMakers.push(() => makeCharacter(
  2452. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2453. {
  2454. front: {
  2455. height: math.unit(1.3, "meter"),
  2456. weight: math.unit(30, "kg"),
  2457. name: "Front",
  2458. image: {
  2459. source: "./media/characters/gregory/front.svg",
  2460. }
  2461. }
  2462. },
  2463. [
  2464. {
  2465. name: "Normal",
  2466. height: math.unit(1.3, "meter"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(20, "meter")
  2472. }
  2473. ]
  2474. ))
  2475. characterMakers.push(() => makeCharacter(
  2476. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2477. {
  2478. front: {
  2479. height: math.unit(2.8, "meter"),
  2480. weight: math.unit(200, "kg"),
  2481. name: "Front",
  2482. image: {
  2483. source: "./media/characters/elory/front.svg",
  2484. }
  2485. }
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(2.8, "meter"),
  2491. default: true
  2492. },
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(38, "meter")
  2496. }
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2501. {
  2502. front: {
  2503. height: math.unit(470, "feet"),
  2504. weight: math.unit(924, "tons"),
  2505. name: "Front",
  2506. image: {
  2507. source: "./media/characters/angelpatamon/front.svg",
  2508. }
  2509. }
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(470, "feet"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Deity Size I",
  2519. height: math.unit(28651.2, "km")
  2520. },
  2521. {
  2522. name: "Deity Size II",
  2523. height: math.unit(171907.2, "km")
  2524. }
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2529. {
  2530. side: {
  2531. height: math.unit(7.2, "meter"),
  2532. weight: math.unit(8.2, "tons"),
  2533. name: "Side",
  2534. image: {
  2535. source: "./media/characters/cryae/side.svg",
  2536. extra: 3500 / 1500
  2537. }
  2538. }
  2539. },
  2540. [
  2541. {
  2542. name: "Normal",
  2543. height: math.unit(7.2, "meter"),
  2544. default: true
  2545. }
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(6, "feet"),
  2553. weight: math.unit(175, "lb"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/xera/front.svg",
  2557. extra: 2300 / 2061
  2558. }
  2559. },
  2560. side: {
  2561. height: math.unit(6, "feet"),
  2562. weight: math.unit(175, "lb"),
  2563. name: "Side",
  2564. image: {
  2565. source: "./media/characters/xera/side.svg",
  2566. extra: 2300 / 2061
  2567. }
  2568. },
  2569. back: {
  2570. height: math.unit(6, "feet"),
  2571. weight: math.unit(175, "lb"),
  2572. name: "Back",
  2573. image: {
  2574. source: "./media/characters/xera/back.svg"
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Small",
  2581. height: math.unit(10, "feet")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(500, "meters"),
  2586. default: true
  2587. },
  2588. {
  2589. name: "Macro+",
  2590. height: math.unit(10, "km")
  2591. },
  2592. {
  2593. name: "Gigamacro",
  2594. height: math.unit(25000, "km")
  2595. },
  2596. {
  2597. name: "Teramacro",
  2598. height: math.unit(3e6, "km")
  2599. }
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(6, "feet"),
  2607. weight: math.unit(175, "lb"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/nebula/front.svg",
  2611. extra: 2600 / 2450
  2612. }
  2613. }
  2614. },
  2615. [
  2616. {
  2617. name: "Small",
  2618. height: math.unit(4.5, "meters")
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(1500, "meters"),
  2623. default: true
  2624. },
  2625. {
  2626. name: "Megamacro",
  2627. height: math.unit(150, "km")
  2628. },
  2629. {
  2630. name: "Gigamacro",
  2631. height: math.unit(27000, "km")
  2632. }
  2633. ]
  2634. ))
  2635. characterMakers.push(() => makeCharacter(
  2636. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2637. {
  2638. front: {
  2639. height: math.unit(6, "feet"),
  2640. weight: math.unit(225, "lb"),
  2641. name: "Front",
  2642. image: {
  2643. source: "./media/characters/abysgar/front.svg"
  2644. }
  2645. }
  2646. },
  2647. [
  2648. {
  2649. name: "Small",
  2650. height: math.unit(4.5, "meters")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(1250, "meters"),
  2655. default: true
  2656. },
  2657. {
  2658. name: "Megamacro",
  2659. height: math.unit(125, "km")
  2660. },
  2661. {
  2662. name: "Gigamacro",
  2663. height: math.unit(26000, "km")
  2664. }
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2669. {
  2670. front: {
  2671. height: math.unit(6, "feet"),
  2672. weight: math.unit(180, "lb"),
  2673. name: "Front",
  2674. image: {
  2675. source: "./media/characters/yakuz/front.svg"
  2676. }
  2677. }
  2678. },
  2679. [
  2680. {
  2681. name: "Small",
  2682. height: math.unit(5, "meters")
  2683. },
  2684. {
  2685. name: "Macro",
  2686. height: math.unit(1500, "meters"),
  2687. default: true
  2688. },
  2689. {
  2690. name: "Megamacro",
  2691. height: math.unit(200, "km")
  2692. },
  2693. {
  2694. name: "Gigamacro",
  2695. height: math.unit(100000, "km")
  2696. }
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2701. {
  2702. front: {
  2703. height: math.unit(6, "feet"),
  2704. weight: math.unit(175, "lb"),
  2705. name: "Front",
  2706. image: {
  2707. source: "./media/characters/mirova/front.svg"
  2708. }
  2709. }
  2710. },
  2711. [
  2712. {
  2713. name: "Small",
  2714. height: math.unit(5, "meters")
  2715. },
  2716. {
  2717. name: "Macro",
  2718. height: math.unit(900, "meters"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(135, "km")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(20000, "km")
  2728. }
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2733. {
  2734. side: {
  2735. height: math.unit(28.35, "feet"),
  2736. weight: math.unit(99.75, "tons"),
  2737. name: "Side",
  2738. image: {
  2739. source: "./media/characters/asana-mech/side.svg"
  2740. }
  2741. }
  2742. },
  2743. [
  2744. {
  2745. name: "Normal",
  2746. height: math.unit(28.35, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Macro",
  2751. height: math.unit(2500, "feet")
  2752. },
  2753. {
  2754. name: "Megamacro",
  2755. height: math.unit(25, "miles")
  2756. },
  2757. {
  2758. name: "Examacro",
  2759. height: math.unit(6e8, "lightyears")
  2760. },
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2765. {
  2766. front: {
  2767. height: math.unit(2, "meters"),
  2768. weight: math.unit(70, "kg"),
  2769. name: "Front",
  2770. image: {
  2771. source: "./media/characters/ashtrek/front.svg",
  2772. extra: 560 / 524,
  2773. bottom: 0.01
  2774. }
  2775. },
  2776. frontArmor: {
  2777. height: math.unit(2, "meters"),
  2778. weight: math.unit(76, "kg"),
  2779. name: "Front (Armor)",
  2780. image: {
  2781. source: "./media/characters/ashtrek/front-armor.svg",
  2782. extra: 561 / 527,
  2783. bottom: 0.01
  2784. }
  2785. },
  2786. side: {
  2787. height: math.unit(2, "meters"),
  2788. weight: math.unit(70, "kg"),
  2789. name: "Side",
  2790. image: {
  2791. source: "./media/characters/ashtrek/side.svg",
  2792. extra: 1717 / 1609,
  2793. bottom: 0.005
  2794. }
  2795. },
  2796. back: {
  2797. height: math.unit(2, "meters"),
  2798. weight: math.unit(70, "kg"),
  2799. name: "Back",
  2800. image: {
  2801. source: "./media/characters/ashtrek/back.svg",
  2802. extra: 1570 / 1501
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "DEFCON 5",
  2809. height: math.unit(5, "meters")
  2810. },
  2811. {
  2812. name: "DEFCON 4",
  2813. height: math.unit(500, "meters"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "DEFCON 3",
  2818. height: math.unit(5, "km")
  2819. },
  2820. {
  2821. name: "DEFCON 2",
  2822. height: math.unit(500, "km")
  2823. },
  2824. {
  2825. name: "DEFCON 1",
  2826. height: math.unit(500000, "km")
  2827. },
  2828. {
  2829. name: "DEFCON 0",
  2830. height: math.unit(3, "gigaparsecs")
  2831. },
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2836. {
  2837. front: {
  2838. height: math.unit(2, "meters"),
  2839. weight: math.unit(76, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/gale/front.svg"
  2843. }
  2844. },
  2845. frontAlt1: {
  2846. height: math.unit(2, "meters"),
  2847. weight: math.unit(76, "kg"),
  2848. name: "Front (Alt 1)",
  2849. image: {
  2850. source: "./media/characters/gale/front-alt-1.svg"
  2851. }
  2852. },
  2853. frontAlt2: {
  2854. height: math.unit(2, "meters"),
  2855. weight: math.unit(76, "kg"),
  2856. name: "Front (Alt 2)",
  2857. image: {
  2858. source: "./media/characters/gale/front-alt-2.svg"
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Normal",
  2865. height: math.unit(7, "feet")
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(150, "feet"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Macro+",
  2874. height: math.unit(300, "feet")
  2875. },
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  2880. {
  2881. front: {
  2882. height: math.unit(2, "meters"),
  2883. weight: math.unit(76, "kg"),
  2884. name: "Front",
  2885. image: {
  2886. source: "./media/characters/draylen/front.svg"
  2887. }
  2888. }
  2889. },
  2890. [
  2891. {
  2892. name: "Macro",
  2893. height: math.unit(150, "feet"),
  2894. default: true
  2895. }
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  2900. {
  2901. front: {
  2902. height: math.unit(7 + 9 / 12, "feet"),
  2903. weight: math.unit(379, "lbs"),
  2904. name: "Front",
  2905. image: {
  2906. source: "./media/characters/chez/front.svg"
  2907. }
  2908. },
  2909. side: {
  2910. height: math.unit(7 + 9 / 12, "feet"),
  2911. weight: math.unit(379, "lbs"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/chez/side.svg"
  2915. }
  2916. }
  2917. },
  2918. [
  2919. {
  2920. name: "Normal",
  2921. height: math.unit(7 + 9 / 12, "feet"),
  2922. default: true
  2923. },
  2924. {
  2925. name: "God King",
  2926. height: math.unit(9750000, "meters")
  2927. }
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  2932. {
  2933. front: {
  2934. height: math.unit(6, "feet"),
  2935. weight: math.unit(275, "lbs"),
  2936. name: "Front",
  2937. image: {
  2938. source: "./media/characters/kaylum/front.svg",
  2939. bottom: 0.01,
  2940. extra: 1166 / 1031
  2941. }
  2942. },
  2943. frontWingless: {
  2944. height: math.unit(6, "feet"),
  2945. weight: math.unit(275, "lbs"),
  2946. name: "Front (Wingless)",
  2947. image: {
  2948. source: "./media/characters/kaylum/front-wingless.svg",
  2949. bottom: 0.01,
  2950. extra: 1117 / 1031
  2951. }
  2952. }
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(3.05, "meters")
  2958. },
  2959. {
  2960. name: "Master",
  2961. height: math.unit(5.5, "meters")
  2962. },
  2963. {
  2964. name: "Rampage",
  2965. height: math.unit(19, "meters")
  2966. },
  2967. {
  2968. name: "Macro Lite",
  2969. height: math.unit(37, "meters")
  2970. },
  2971. {
  2972. name: "Hyper Predator",
  2973. height: math.unit(61, "meters")
  2974. },
  2975. {
  2976. name: "Macro",
  2977. height: math.unit(138, "meters"),
  2978. default: true
  2979. }
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  2984. {
  2985. front: {
  2986. height: math.unit(6, "feet"),
  2987. weight: math.unit(150, "lbs"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/geta/front.svg"
  2991. }
  2992. }
  2993. },
  2994. [
  2995. {
  2996. name: "Micro",
  2997. height: math.unit(3, "inches"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Normal",
  3002. height: math.unit(5 + 5 / 12, "feet")
  3003. }
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(6, "feet"),
  3011. weight: math.unit(300, "lbs"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/tyrnn/front.svg"
  3015. }
  3016. }
  3017. },
  3018. [
  3019. {
  3020. name: "Main Height",
  3021. height: math.unit(355, "feet"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Fave. Height",
  3026. height: math.unit(2400, "feet")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(6, "feet"),
  3035. weight: math.unit(300, "lbs"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/appledectomy/front.svg"
  3039. }
  3040. }
  3041. },
  3042. [
  3043. {
  3044. name: "Macro",
  3045. height: math.unit(2500, "feet")
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(50, "miles"),
  3050. default: true
  3051. },
  3052. {
  3053. name: "Gigamacro",
  3054. height: math.unit(5000, "miles")
  3055. },
  3056. {
  3057. name: "Teramacro",
  3058. height: math.unit(250000, "miles")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(6, "feet"),
  3067. weight: math.unit(200, "lbs"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/vulpes/front.svg",
  3071. extra: 573 / 543,
  3072. bottom: 0.033
  3073. }
  3074. },
  3075. side: {
  3076. height: math.unit(6, "feet"),
  3077. weight: math.unit(200, "lbs"),
  3078. name: "Side",
  3079. image: {
  3080. source: "./media/characters/vulpes/side.svg",
  3081. extra: 573 / 543,
  3082. bottom: 0.01
  3083. }
  3084. },
  3085. back: {
  3086. height: math.unit(6, "feet"),
  3087. weight: math.unit(200, "lbs"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/vulpes/back.svg",
  3091. extra: 573 / 543,
  3092. }
  3093. },
  3094. feet: {
  3095. height: math.unit(1.276, "feet"),
  3096. name: "Feet",
  3097. image: {
  3098. source: "./media/characters/vulpes/feet.svg"
  3099. }
  3100. },
  3101. maw: {
  3102. height: math.unit(1.18, "feet"),
  3103. name: "Maw",
  3104. image: {
  3105. source: "./media/characters/vulpes/maw.svg"
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Micro",
  3112. height: math.unit(2, "inches")
  3113. },
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(6.3, "feet")
  3117. },
  3118. {
  3119. name: "Macro",
  3120. height: math.unit(850, "feet")
  3121. },
  3122. {
  3123. name: "Megamacro",
  3124. height: math.unit(7500, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Gigamacro",
  3129. height: math.unit(570000, "miles")
  3130. }
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3135. {
  3136. front: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(210, "lbs"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/rain-fallen/front.svg"
  3142. }
  3143. },
  3144. side: {
  3145. height: math.unit(6, "feet"),
  3146. weight: math.unit(210, "lbs"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/rain-fallen/side.svg"
  3150. }
  3151. },
  3152. back: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(210, "lbs"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/rain-fallen/back.svg"
  3158. }
  3159. },
  3160. feral: {
  3161. height: math.unit(9, "feet"),
  3162. weight: math.unit(700, "lbs"),
  3163. name: "Feral",
  3164. image: {
  3165. source: "./media/characters/rain-fallen/feral.svg"
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(5, "meter")
  3173. },
  3174. {
  3175. name: "Macro",
  3176. height: math.unit(150, "meter"),
  3177. default: true
  3178. },
  3179. {
  3180. name: "Megamacro",
  3181. height: math.unit(278e6, "meter")
  3182. },
  3183. {
  3184. name: "Gigamacro",
  3185. height: math.unit(2e9, "meter")
  3186. },
  3187. {
  3188. name: "Teramacro",
  3189. height: math.unit(8e12, "meter")
  3190. },
  3191. {
  3192. name: "Devourer",
  3193. height: math.unit(14, "zettameters")
  3194. },
  3195. {
  3196. name: "Scarlet King",
  3197. height: math.unit(18, "yottameters")
  3198. },
  3199. {
  3200. name: "Void",
  3201. height: math.unit(6.66e66, "yottameters")
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3207. {
  3208. standing: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(180, "lbs"),
  3211. name: "Standing",
  3212. image: {
  3213. source: "./media/characters/zaakira/standing.svg"
  3214. }
  3215. },
  3216. laying: {
  3217. height: math.unit(3, "feet"),
  3218. weight: math.unit(180, "lbs"),
  3219. name: "Laying",
  3220. image: {
  3221. source: "./media/characters/zaakira/laying.svg"
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Normal",
  3228. height: math.unit(12, "feet")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(279, "feet"),
  3233. default: true
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(6, "feet"),
  3242. weight: math.unit(250, "lbs"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/sigvald/front.svg",
  3246. extra: 1000 / 850
  3247. }
  3248. },
  3249. back: {
  3250. height: math.unit(6, "feet"),
  3251. weight: math.unit(250, "lbs"),
  3252. name: "Back",
  3253. image: {
  3254. source: "./media/characters/sigvald/back.svg"
  3255. }
  3256. },
  3257. },
  3258. [
  3259. {
  3260. name: "Normal",
  3261. height: math.unit(8, "feet")
  3262. },
  3263. {
  3264. name: "Large",
  3265. height: math.unit(12, "feet")
  3266. },
  3267. {
  3268. name: "Larger",
  3269. height: math.unit(20, "feet")
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(150, "feet")
  3274. },
  3275. {
  3276. name: "Macro+",
  3277. height: math.unit(200, "feet"),
  3278. default: true
  3279. },
  3280. ]
  3281. ))
  3282. characterMakers.push(() => makeCharacter(
  3283. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3284. {
  3285. side: {
  3286. height: math.unit(12, "feet"),
  3287. weight: math.unit(2000, "kg"),
  3288. name: "Side",
  3289. image: {
  3290. source: "./media/characters/scott/side.svg",
  3291. extra: 754/724,
  3292. bottom: 0.069
  3293. }
  3294. },
  3295. upright: {
  3296. height: math.unit(12, "feet"),
  3297. weight: math.unit(2000, "kg"),
  3298. name: "Upright",
  3299. image: {
  3300. source: "./media/characters/scott/upright.svg",
  3301. extra: 3881/3722,
  3302. bottom: 0.05
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(12, "feet"),
  3310. default: true
  3311. },
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3316. {
  3317. side: {
  3318. height: math.unit(8, "meters"),
  3319. weight: math.unit(84755, "lbs"),
  3320. name: "Side",
  3321. image: {
  3322. source: "./media/characters/tobias/side.svg",
  3323. extra: 1474 / 1096,
  3324. bottom: 38.9 / 1513.1235
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(8, "meters"),
  3332. default: true
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3338. {
  3339. front: {
  3340. height: math.unit(5.5, "feet"),
  3341. weight: math.unit(400, "lbs"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/kieran/front.svg",
  3345. extra: 2694/2364,
  3346. bottom: 217/2908
  3347. }
  3348. },
  3349. side: {
  3350. height: math.unit(5.5, "feet"),
  3351. weight: math.unit(400, "lbs"),
  3352. name: "Side",
  3353. image: {
  3354. source: "./media/characters/kieran/side.svg",
  3355. extra: 875/777,
  3356. bottom: 84.6/959
  3357. }
  3358. },
  3359. },
  3360. [
  3361. {
  3362. name: "Normal",
  3363. height: math.unit(5.5, "feet"),
  3364. default: true
  3365. },
  3366. ]
  3367. ))
  3368. characterMakers.push(() => makeCharacter(
  3369. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3370. {
  3371. side: {
  3372. height: math.unit(2, "meters"),
  3373. weight: math.unit(70, "kg"),
  3374. name: "Side",
  3375. image: {
  3376. source: "./media/characters/sanya/side.svg",
  3377. bottom: 0.02,
  3378. extra: 1.02
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Small",
  3385. height: math.unit(2, "meters")
  3386. },
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(3, "meters")
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(16, "meters"),
  3394. default: true
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3400. {
  3401. side: {
  3402. height: math.unit(2, "meters"),
  3403. weight: math.unit(120, "kg"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/miranda/front.svg",
  3407. extra: 10.6 / 10
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(10, "feet"),
  3415. default: true
  3416. }
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "James", species: ["deer"], tags: ["anthro"] },
  3421. {
  3422. side: {
  3423. height: math.unit(2, "meters"),
  3424. weight: math.unit(100, "kg"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/james/front.svg",
  3428. extra: 10 / 8.5
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Normal",
  3435. height: math.unit(8.5, "feet"),
  3436. default: true
  3437. }
  3438. ]
  3439. ))
  3440. characterMakers.push(() => makeCharacter(
  3441. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3442. {
  3443. side: {
  3444. height: math.unit(9.5, "feet"),
  3445. weight: math.unit(2500, "lbs"),
  3446. name: "Side",
  3447. image: {
  3448. source: "./media/characters/heather/side.svg"
  3449. }
  3450. },
  3451. },
  3452. [
  3453. {
  3454. name: "Normal",
  3455. height: math.unit(9.5, "feet"),
  3456. default: true
  3457. }
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3462. {
  3463. side: {
  3464. height: math.unit(6.5, "feet"),
  3465. weight: math.unit(400, "lbs"),
  3466. name: "Side",
  3467. image: {
  3468. source: "./media/characters/lukas/side.svg",
  3469. extra: 7.25 / 6.5
  3470. }
  3471. },
  3472. },
  3473. [
  3474. {
  3475. name: "Normal",
  3476. height: math.unit(6.5, "feet"),
  3477. default: true
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3483. {
  3484. side: {
  3485. height: math.unit(5, "feet"),
  3486. weight: math.unit(3000, "lbs"),
  3487. name: "Side",
  3488. image: {
  3489. source: "./media/characters/louise/side.svg"
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Normal",
  3496. height: math.unit(5, "feet"),
  3497. default: true
  3498. }
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3503. {
  3504. side: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(150, "lbs"),
  3507. name: "Side",
  3508. image: {
  3509. source: "./media/characters/ramona/side.svg"
  3510. }
  3511. },
  3512. },
  3513. [
  3514. {
  3515. name: "Normal",
  3516. height: math.unit(5.3, "meters"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Macro",
  3521. height: math.unit(20, "stories")
  3522. },
  3523. {
  3524. name: "Macro+",
  3525. height: math.unit(50, "stories")
  3526. },
  3527. ]
  3528. ))
  3529. characterMakers.push(() => makeCharacter(
  3530. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3531. {
  3532. standing: {
  3533. height: math.unit(5.75, "feet"),
  3534. weight: math.unit(160, "lbs"),
  3535. name: "Standing",
  3536. image: {
  3537. source: "./media/characters/deerpuff/standing.svg",
  3538. extra: 682 / 624
  3539. }
  3540. },
  3541. sitting: {
  3542. height: math.unit(5.75 / 1.79, "feet"),
  3543. weight: math.unit(160, "lbs"),
  3544. name: "Sitting",
  3545. image: {
  3546. source: "./media/characters/deerpuff/sitting.svg",
  3547. bottom: 44 / 400,
  3548. extra: 1
  3549. }
  3550. },
  3551. taurLaying: {
  3552. height: math.unit(6, "feet"),
  3553. weight: math.unit(400, "lbs"),
  3554. name: "Taur (Laying)",
  3555. image: {
  3556. source: "./media/characters/deerpuff/taur-laying.svg"
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Puffball",
  3563. height: math.unit(6, "inches")
  3564. },
  3565. {
  3566. name: "Normalpuff",
  3567. height: math.unit(5.75, "feet")
  3568. },
  3569. {
  3570. name: "Macropuff",
  3571. height: math.unit(1500, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Megapuff",
  3576. height: math.unit(500, "miles")
  3577. },
  3578. {
  3579. name: "Gigapuff",
  3580. height: math.unit(250000, "miles")
  3581. },
  3582. {
  3583. name: "Omegapuff",
  3584. height: math.unit(1000, "lightyears")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3590. {
  3591. stomping: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(170, "lbs"),
  3594. name: "Stomping",
  3595. image: {
  3596. source: "./media/characters/vivian/stomping.svg"
  3597. }
  3598. },
  3599. sitting: {
  3600. height: math.unit(6 / 1.75, "feet"),
  3601. weight: math.unit(170, "lbs"),
  3602. name: "Sitting",
  3603. image: {
  3604. source: "./media/characters/vivian/sitting.svg",
  3605. bottom: 1 / 6.4,
  3606. extra: 1,
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(7, "feet"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(10, "stories")
  3619. },
  3620. {
  3621. name: "Macro+",
  3622. height: math.unit(30, "stories")
  3623. },
  3624. {
  3625. name: "Megamacro",
  3626. height: math.unit(10, "miles")
  3627. },
  3628. {
  3629. name: "Megamacro+",
  3630. height: math.unit(2750000, "meters")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(160, "lbs"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/prince/front.svg",
  3643. extra: 3400 / 3000
  3644. }
  3645. },
  3646. jumping: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(160, "lbs"),
  3649. name: "Jumping",
  3650. image: {
  3651. source: "./media/characters/prince/jump.svg",
  3652. extra: 2555 / 2134
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(7.75, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Not cute",
  3664. height: math.unit(17, "feet")
  3665. },
  3666. {
  3667. name: "I said NOT",
  3668. height: math.unit(91, "feet")
  3669. },
  3670. {
  3671. name: "Please stop",
  3672. height: math.unit(560, "feet")
  3673. },
  3674. {
  3675. name: "What have you done",
  3676. height: math.unit(2200, "feet")
  3677. },
  3678. {
  3679. name: "Deer God",
  3680. height: math.unit(3.6, "miles")
  3681. },
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3686. {
  3687. standing: {
  3688. height: math.unit(6, "feet"),
  3689. weight: math.unit(300, "lbs"),
  3690. name: "Standing",
  3691. image: {
  3692. source: "./media/characters/psymon/standing.svg",
  3693. extra: 1888 / 1810,
  3694. bottom: 0.05
  3695. }
  3696. },
  3697. slithering: {
  3698. height: math.unit(6, "feet"),
  3699. weight: math.unit(300, "lbs"),
  3700. name: "Slithering",
  3701. image: {
  3702. source: "./media/characters/psymon/slithering.svg",
  3703. extra: 1330 / 1224
  3704. }
  3705. },
  3706. slitheringAlt: {
  3707. height: math.unit(6, "feet"),
  3708. weight: math.unit(300, "lbs"),
  3709. name: "Slithering (Alt)",
  3710. image: {
  3711. source: "./media/characters/psymon/slithering-alt.svg",
  3712. extra: 1330 / 1224
  3713. }
  3714. },
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(11.25, "feet"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Large",
  3724. height: math.unit(27, "feet")
  3725. },
  3726. {
  3727. name: "Giant",
  3728. height: math.unit(87, "feet")
  3729. },
  3730. {
  3731. name: "Macro",
  3732. height: math.unit(365, "feet")
  3733. },
  3734. {
  3735. name: "Megamacro",
  3736. height: math.unit(3, "miles")
  3737. },
  3738. {
  3739. name: "World Serpent",
  3740. height: math.unit(8000, "miles")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(180, "lbs"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/daimos/front.svg",
  3753. extra: 4160 / 3897,
  3754. bottom: 0.021
  3755. }
  3756. }
  3757. },
  3758. [
  3759. {
  3760. name: "Normal",
  3761. height: math.unit(8, "feet"),
  3762. default: true
  3763. },
  3764. {
  3765. name: "Big Dog",
  3766. height: math.unit(22, "feet")
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(127, "feet")
  3771. },
  3772. {
  3773. name: "Megamacro",
  3774. height: math.unit(3600, "feet")
  3775. },
  3776. ]
  3777. ))
  3778. characterMakers.push(() => makeCharacter(
  3779. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3780. {
  3781. side: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(180, "lbs"),
  3784. name: "Side",
  3785. image: {
  3786. source: "./media/characters/blake/side.svg",
  3787. extra: 1212 / 1120,
  3788. bottom: 0.05
  3789. }
  3790. },
  3791. crouched: {
  3792. height: math.unit(6 * 0.57, "feet"),
  3793. weight: math.unit(180, "lbs"),
  3794. name: "Crouched",
  3795. image: {
  3796. source: "./media/characters/blake/crouched.svg",
  3797. extra: 840 / 587,
  3798. bottom: 0.04
  3799. }
  3800. },
  3801. bent: {
  3802. height: math.unit(6 * 0.75, "feet"),
  3803. weight: math.unit(180, "lbs"),
  3804. name: "Bent",
  3805. image: {
  3806. source: "./media/characters/blake/bent.svg",
  3807. extra: 592 / 544,
  3808. bottom: 0.035
  3809. }
  3810. },
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(8 + 1 / 6, "feet"),
  3816. default: true
  3817. },
  3818. {
  3819. name: "Big Backside",
  3820. height: math.unit(37, "feet")
  3821. },
  3822. {
  3823. name: "Subway Shredder",
  3824. height: math.unit(72, "feet")
  3825. },
  3826. {
  3827. name: "City Carver",
  3828. height: math.unit(1675, "feet")
  3829. },
  3830. {
  3831. name: "Tectonic Tweaker",
  3832. height: math.unit(2300, "miles")
  3833. },
  3834. ]
  3835. ))
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3838. {
  3839. front: {
  3840. height: math.unit(6, "feet"),
  3841. weight: math.unit(180, "lbs"),
  3842. name: "Front",
  3843. image: {
  3844. source: "./media/characters/guisetto/front.svg",
  3845. extra: 856 / 817,
  3846. bottom: 0.06
  3847. }
  3848. },
  3849. airborne: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(180, "lbs"),
  3852. name: "Airborne",
  3853. image: {
  3854. source: "./media/characters/guisetto/airborne.svg",
  3855. extra: 584 / 525
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(10 + 11 / 12, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Large",
  3867. height: math.unit(35, "feet")
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(475, "feet")
  3872. },
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(6, "feet"),
  3880. weight: math.unit(180, "lbs"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/luxor/front.svg",
  3884. extra: 2940 / 2152
  3885. }
  3886. },
  3887. back: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(180, "lbs"),
  3890. name: "Back",
  3891. image: {
  3892. source: "./media/characters/luxor/back.svg",
  3893. extra: 1083 / 960
  3894. }
  3895. },
  3896. },
  3897. [
  3898. {
  3899. name: "Normal",
  3900. height: math.unit(5 + 5 / 6, "feet"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Lamp",
  3905. height: math.unit(50, "feet")
  3906. },
  3907. {
  3908. name: "Lämp",
  3909. height: math.unit(300, "feet")
  3910. },
  3911. {
  3912. name: "The sun is a lamp",
  3913. height: math.unit(250000, "miles")
  3914. },
  3915. ]
  3916. ))
  3917. characterMakers.push(() => makeCharacter(
  3918. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  3919. {
  3920. front: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(50, "lbs"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/huoyan/front.svg"
  3926. }
  3927. },
  3928. side: {
  3929. height: math.unit(6, "feet"),
  3930. weight: math.unit(180, "lbs"),
  3931. name: "Side",
  3932. image: {
  3933. source: "./media/characters/huoyan/side.svg"
  3934. }
  3935. },
  3936. },
  3937. [
  3938. {
  3939. name: "Chef",
  3940. height: math.unit(9, "feet")
  3941. },
  3942. {
  3943. name: "Normal",
  3944. height: math.unit(65, "feet"),
  3945. default: true
  3946. },
  3947. {
  3948. name: "Macro",
  3949. height: math.unit(780, "feet")
  3950. },
  3951. {
  3952. name: "Flaming Mountain",
  3953. height: math.unit(4.8, "miles")
  3954. },
  3955. {
  3956. name: "Celestial",
  3957. height: math.unit(765000, "miles")
  3958. },
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  3963. {
  3964. front: {
  3965. height: math.unit(5 + 3 / 4, "feet"),
  3966. weight: math.unit(120, "lbs"),
  3967. name: "Front",
  3968. image: {
  3969. source: "./media/characters/tails/front.svg"
  3970. }
  3971. }
  3972. },
  3973. [
  3974. {
  3975. name: "Normal",
  3976. height: math.unit(5 + 3 / 4, "feet"),
  3977. default: true
  3978. }
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(4, "feet"),
  3986. weight: math.unit(50, "lbs"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/rainy/front.svg"
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(800, "feet"),
  3997. default: true
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(6, "feet"),
  4006. weight: math.unit(150, "lbs"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/rainier/front.svg"
  4010. }
  4011. }
  4012. },
  4013. [
  4014. {
  4015. name: "Micro",
  4016. height: math.unit(2, "mm"),
  4017. default: true
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(6, "feet"),
  4026. weight: math.unit(180, "lbs"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/andy/front.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Normal",
  4036. height: math.unit(8, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(1000, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(5, "miles")
  4046. },
  4047. {
  4048. name: "Gigamacro",
  4049. height: math.unit(5000, "miles")
  4050. },
  4051. ]
  4052. ))
  4053. characterMakers.push(() => makeCharacter(
  4054. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4055. {
  4056. front: {
  4057. height: math.unit(6, "feet"),
  4058. weight: math.unit(210, "lbs"),
  4059. name: "Front",
  4060. image: {
  4061. source: "./media/characters/cimmaron/front-sfw.svg",
  4062. extra: 701 / 676,
  4063. bottom: 0.046
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(210, "lbs"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/cimmaron/back-sfw.svg",
  4072. extra: 701 / 676,
  4073. bottom: 0.046
  4074. }
  4075. },
  4076. frontNsfw: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(210, "lbs"),
  4079. name: "Front (NSFW)",
  4080. image: {
  4081. source: "./media/characters/cimmaron/front-nsfw.svg",
  4082. extra: 701 / 676,
  4083. bottom: 0.046
  4084. }
  4085. },
  4086. backNsfw: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(210, "lbs"),
  4089. name: "Back (NSFW)",
  4090. image: {
  4091. source: "./media/characters/cimmaron/back-nsfw.svg",
  4092. extra: 701 / 676,
  4093. bottom: 0.046
  4094. }
  4095. },
  4096. dick: {
  4097. height: math.unit(1.714, "feet"),
  4098. name: "Dick",
  4099. image: {
  4100. source: "./media/characters/cimmaron/dick.svg"
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Normal",
  4107. height: math.unit(6, "feet"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Macro Mayor",
  4112. height: math.unit(350, "meters")
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(6, "feet"),
  4121. weight: math.unit(200, "lbs"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/akari/front.svg",
  4125. extra: 962 / 901,
  4126. bottom: 0.04
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Micro",
  4133. height: math.unit(5, "inches"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(7, "feet")
  4139. },
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4144. {
  4145. front: {
  4146. height: math.unit(6, "feet"),
  4147. weight: math.unit(140, "lbs"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/cynosura/front.svg",
  4151. extra: 896 / 847
  4152. }
  4153. },
  4154. back: {
  4155. height: math.unit(6, "feet"),
  4156. weight: math.unit(140, "lbs"),
  4157. name: "Back",
  4158. image: {
  4159. source: "./media/characters/cynosura/back.svg",
  4160. extra: 1365 / 1250
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Micro",
  4167. height: math.unit(4, "inches")
  4168. },
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(5.75, "feet"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "Tall",
  4176. height: math.unit(10, "feet")
  4177. },
  4178. {
  4179. name: "Big",
  4180. height: math.unit(20, "feet")
  4181. },
  4182. {
  4183. name: "Macro",
  4184. height: math.unit(50, "feet")
  4185. },
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(6, "feet"),
  4193. weight: math.unit(170, "lbs"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/gin/front.svg",
  4197. extra: 1.053,
  4198. bottom: 0.025
  4199. }
  4200. },
  4201. foot: {
  4202. height: math.unit(6 / 4.25, "feet"),
  4203. name: "Foot",
  4204. image: {
  4205. source: "./media/characters/gin/foot.svg"
  4206. }
  4207. },
  4208. sole: {
  4209. height: math.unit(6 / 4.40, "feet"),
  4210. name: "Sole",
  4211. image: {
  4212. source: "./media/characters/gin/sole.svg"
  4213. }
  4214. },
  4215. },
  4216. [
  4217. {
  4218. name: "Normal",
  4219. height: math.unit(13 + 2/12, "feet")
  4220. },
  4221. {
  4222. name: "Macro",
  4223. height: math.unit(1500, "feet")
  4224. },
  4225. {
  4226. name: "Megamacro",
  4227. height: math.unit(200, "miles"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Gigamacro",
  4232. height: math.unit(500, "megameters")
  4233. },
  4234. {
  4235. name: "Teramacro",
  4236. height: math.unit(15, "lightyears")
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4242. {
  4243. front: {
  4244. height: math.unit(6 + 1 / 6, "feet"),
  4245. weight: math.unit(178, "lbs"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/guy/front.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(6 + 1 / 6, "feet"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Large",
  4260. height: math.unit(25 + 7 / 12, "feet")
  4261. },
  4262. {
  4263. name: "Macro",
  4264. height: math.unit(60 + 9 / 12, "feet")
  4265. },
  4266. {
  4267. name: "Macro+",
  4268. height: math.unit(246, "feet")
  4269. },
  4270. {
  4271. name: "Macro++",
  4272. height: math.unit(878, "feet")
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(9, "feet"),
  4281. weight: math.unit(800, "lbs"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/tiberius/front.svg",
  4285. extra: 2295 / 2071
  4286. }
  4287. },
  4288. back: {
  4289. height: math.unit(9, "feet"),
  4290. weight: math.unit(800, "lbs"),
  4291. name: "Back",
  4292. image: {
  4293. source: "./media/characters/tiberius/back.svg",
  4294. extra: 2373 / 2160
  4295. }
  4296. },
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(9, "feet"),
  4302. default: true
  4303. }
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4308. {
  4309. front: {
  4310. height: math.unit(6, "feet"),
  4311. weight: math.unit(600, "lbs"),
  4312. name: "Front",
  4313. image: {
  4314. source: "./media/characters/surgo/front.svg",
  4315. extra: 3591 / 2227
  4316. }
  4317. },
  4318. back: {
  4319. height: math.unit(6, "feet"),
  4320. weight: math.unit(600, "lbs"),
  4321. name: "Back",
  4322. image: {
  4323. source: "./media/characters/surgo/back.svg",
  4324. extra: 3557 / 2228
  4325. }
  4326. },
  4327. laying: {
  4328. height: math.unit(6 * 0.85, "feet"),
  4329. weight: math.unit(600, "lbs"),
  4330. name: "Laying",
  4331. image: {
  4332. source: "./media/characters/surgo/laying.svg"
  4333. }
  4334. },
  4335. },
  4336. [
  4337. {
  4338. name: "Normal",
  4339. height: math.unit(6, "feet"),
  4340. default: true
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4346. {
  4347. side: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(150, "lbs"),
  4350. name: "Side",
  4351. image: {
  4352. source: "./media/characters/cibus/side.svg",
  4353. extra: 800 / 400
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(6, "feet"),
  4361. default: true
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(240, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/nibbles/front.svg"
  4374. }
  4375. },
  4376. side: {
  4377. height: math.unit(6, "feet"),
  4378. weight: math.unit(240, "lbs"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/nibbles/side.svg"
  4382. }
  4383. },
  4384. },
  4385. [
  4386. {
  4387. name: "Normal",
  4388. height: math.unit(9, "feet"),
  4389. default: true
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4395. {
  4396. side: {
  4397. height: math.unit(5 + 1 / 6, "feet"),
  4398. weight: math.unit(130, "lbs"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/rikky/side.svg"
  4402. }
  4403. },
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(5 + 1 / 6, "feet")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(152, "feet"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(7, "miles")
  4418. }
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4423. {
  4424. side: {
  4425. height: math.unit(370, "cm"),
  4426. weight: math.unit(350, "lbs"),
  4427. name: "Side",
  4428. image: {
  4429. source: "./media/characters/malfressa/side.svg"
  4430. }
  4431. },
  4432. walking: {
  4433. height: math.unit(370, "cm"),
  4434. weight: math.unit(350, "lbs"),
  4435. name: "Walking",
  4436. image: {
  4437. source: "./media/characters/malfressa/walking.svg"
  4438. }
  4439. },
  4440. feral: {
  4441. height: math.unit(2500, "cm"),
  4442. weight: math.unit(100000, "lbs"),
  4443. name: "Feral",
  4444. image: {
  4445. source: "./media/characters/malfressa/feral.svg",
  4446. extra: 2108 / 837,
  4447. bottom: 0.02
  4448. }
  4449. },
  4450. },
  4451. [
  4452. {
  4453. name: "Normal",
  4454. height: math.unit(370, "cm")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(300, "meters"),
  4459. default: true
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(60, "kg"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/jaro/front.svg"
  4472. }
  4473. },
  4474. back: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(60, "kg"),
  4477. name: "Back",
  4478. image: {
  4479. source: "./media/characters/jaro/back.svg"
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Micro",
  4486. height: math.unit(7, "inches")
  4487. },
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(5.5, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Minimacro",
  4495. height: math.unit(20, "feet")
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(200, "meters")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(195, "lb"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/rogue/front.svg"
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Macro",
  4518. height: math.unit(90, "feet"),
  4519. default: true
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(5 + 8 / 12, "feet"),
  4528. weight: math.unit(140, "lb"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/piper/front.svg",
  4532. extra: 3928 / 3681
  4533. }
  4534. },
  4535. },
  4536. [
  4537. {
  4538. name: "Micro",
  4539. height: math.unit(2, "inches")
  4540. },
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(5 + 8 / 12, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(250, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Megamacro",
  4552. height: math.unit(7, "miles")
  4553. },
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(6, "feet"),
  4561. weight: math.unit(220, "lb"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/gemini/front.svg"
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(6, "feet"),
  4569. weight: math.unit(220, "lb"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/gemini/back.svg"
  4573. }
  4574. },
  4575. kneeling: {
  4576. height: math.unit(6 / 1.5, "feet"),
  4577. weight: math.unit(220, "lb"),
  4578. name: "Kneeling",
  4579. image: {
  4580. source: "./media/characters/gemini/kneeling.svg",
  4581. bottom: 0.02
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Macro",
  4588. height: math.unit(300, "meters"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(6900, "meters")
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Alicia" },
  4599. {
  4600. anthro: {
  4601. height: math.unit(2.35, "meters"),
  4602. weight: math.unit(73, "kg"),
  4603. name: "Anthro",
  4604. image: {
  4605. source: "./media/characters/alicia/anthro.svg"
  4606. }
  4607. },
  4608. feral: {
  4609. height: math.unit(1.69, "meters"),
  4610. weight: math.unit(73, "kg"),
  4611. name: "Feral",
  4612. image: {
  4613. source: "./media/characters/alicia/feral.svg"
  4614. }
  4615. },
  4616. },
  4617. [
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(2.35, "meters")
  4621. },
  4622. {
  4623. name: "Macro",
  4624. height: math.unit(60, "meters"),
  4625. default: true
  4626. },
  4627. {
  4628. name: "Megamacro",
  4629. height: math.unit(10000, "kilometers")
  4630. },
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Archy" },
  4635. {
  4636. front: {
  4637. height: math.unit(7, "feet"),
  4638. weight: math.unit(250, "lbs"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/archy/front.svg"
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Micro",
  4648. height: math.unit(1, "inch")
  4649. },
  4650. {
  4651. name: "Shorty",
  4652. height: math.unit(5, "feet")
  4653. },
  4654. {
  4655. name: "Normal",
  4656. height: math.unit(7, "feet")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(600, "meters"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Megamacro",
  4665. height: math.unit(1, "mile")
  4666. },
  4667. ]
  4668. ))
  4669. characterMakers.push(() => makeCharacter(
  4670. { name: "Berri" },
  4671. {
  4672. front: {
  4673. height: math.unit(1.65, "meters"),
  4674. weight: math.unit(74, "kg"),
  4675. name: "Front",
  4676. image: {
  4677. source: "./media/characters/berri/front.svg"
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(1.65, "meters")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(60, "m"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Megamacro",
  4693. height: math.unit(9.213, "km")
  4694. },
  4695. {
  4696. name: "Planet Eater",
  4697. height: math.unit(489, "megameters")
  4698. },
  4699. {
  4700. name: "Teramacro",
  4701. height: math.unit(2471635000000, "meters")
  4702. },
  4703. {
  4704. name: "Examacro",
  4705. height: math.unit(8.0624e+26, "meters")
  4706. }
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Lexi" },
  4711. {
  4712. front: {
  4713. height: math.unit(1.72, "meters"),
  4714. weight: math.unit(68, "kg"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/lexi/front.svg"
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Very Smol",
  4724. height: math.unit(10, "mm")
  4725. },
  4726. {
  4727. name: "Micro",
  4728. height: math.unit(6.8, "cm"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Normal",
  4733. height: math.unit(1.72, "m")
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Martin" },
  4739. {
  4740. front: {
  4741. height: math.unit(1.69, "meters"),
  4742. weight: math.unit(68, "kg"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/martin/front.svg",
  4746. extra: 596 / 581
  4747. }
  4748. }
  4749. },
  4750. [
  4751. {
  4752. name: "Micro",
  4753. height: math.unit(6.85, "cm"),
  4754. default: true
  4755. },
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(1.69, "m")
  4759. }
  4760. ]
  4761. ))
  4762. characterMakers.push(() => makeCharacter(
  4763. { name: "Juno" },
  4764. {
  4765. front: {
  4766. height: math.unit(1.69, "meters"),
  4767. weight: math.unit(68, "kg"),
  4768. name: "Front",
  4769. image: {
  4770. source: "./media/characters/juno/front.svg"
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Micro",
  4777. height: math.unit(7, "cm")
  4778. },
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(1.89, "m")
  4782. },
  4783. {
  4784. name: "Macro",
  4785. height: math.unit(353, "meters"),
  4786. default: true
  4787. }
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Samantha" },
  4792. {
  4793. front: {
  4794. height: math.unit(1.93, "meters"),
  4795. weight: math.unit(83, "kg"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/samantha/front.svg"
  4799. }
  4800. },
  4801. frontClothed: {
  4802. height: math.unit(1.93, "meters"),
  4803. weight: math.unit(83, "kg"),
  4804. name: "Front (Clothed)",
  4805. image: {
  4806. source: "./media/characters/samantha/front-clothed.svg"
  4807. }
  4808. },
  4809. back: {
  4810. height: math.unit(1.93, "meters"),
  4811. weight: math.unit(83, "kg"),
  4812. name: "Back",
  4813. image: {
  4814. source: "./media/characters/samantha/back.svg"
  4815. }
  4816. },
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(1.93, "m")
  4822. },
  4823. {
  4824. name: "Macro",
  4825. height: math.unit(74, "meters"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Macro+",
  4830. height: math.unit(223, "meters"),
  4831. },
  4832. {
  4833. name: "Megamacro",
  4834. height: math.unit(8381, "meters"),
  4835. },
  4836. {
  4837. name: "Megamacro+",
  4838. height: math.unit(12000, "kilometers")
  4839. },
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Dr. Clay" },
  4844. {
  4845. front: {
  4846. height: math.unit(1.92, "meters"),
  4847. weight: math.unit(80, "kg"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/dr-clay/front.svg"
  4851. }
  4852. },
  4853. frontClothed: {
  4854. height: math.unit(1.92, "meters"),
  4855. weight: math.unit(80, "kg"),
  4856. name: "Front (Clothed)",
  4857. image: {
  4858. source: "./media/characters/dr-clay/front-clothed.svg"
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(1.92, "m")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(214, "meters"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Macro+",
  4874. height: math.unit(12.237, "meters"),
  4875. },
  4876. {
  4877. name: "Megamacro",
  4878. height: math.unit(557, "megameters"),
  4879. },
  4880. {
  4881. name: "Unimaginable",
  4882. height: math.unit(120e9, "lightyears")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Wyvrn Ripsnarl" },
  4888. {
  4889. front: {
  4890. height: math.unit(2, "meters"),
  4891. weight: math.unit(80, "kg"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4895. }
  4896. }
  4897. },
  4898. [
  4899. {
  4900. name: "Teramacro",
  4901. height: math.unit(500000, "lightyears"),
  4902. default: true
  4903. },
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Vemus" },
  4908. {
  4909. front: {
  4910. height: math.unit(2, "meters"),
  4911. weight: math.unit(150, "kg"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/vemus/front.svg",
  4915. extra: 2384 / 2084,
  4916. bottom: 0.0123
  4917. }
  4918. }
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(3.75, "meters"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Big",
  4928. height: math.unit(8, "meters")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(100, "meters")
  4933. },
  4934. {
  4935. name: "Macro+",
  4936. height: math.unit(1500, "meters")
  4937. },
  4938. {
  4939. name: "Stellar",
  4940. height: math.unit(14e8, "meters")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Beherit" },
  4946. {
  4947. front: {
  4948. height: math.unit(2, "meters"),
  4949. weight: math.unit(70, "kg"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/beherit/front.svg",
  4953. extra: 1408 / 1242
  4954. }
  4955. }
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(6, "feet")
  4961. },
  4962. {
  4963. name: "Lorg",
  4964. height: math.unit(25, "feet"),
  4965. default: true
  4966. },
  4967. {
  4968. name: "Lorger",
  4969. height: math.unit(75, "feet")
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(200, "meters")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Everett" },
  4979. {
  4980. front: {
  4981. height: math.unit(2, "meters"),
  4982. weight: math.unit(150, "kg"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/everett/front.svg",
  4986. extra: 2038 / 1737,
  4987. bottom: 0.03
  4988. }
  4989. },
  4990. paw: {
  4991. height: math.unit(2 / 3.6, "meters"),
  4992. name: "Paw",
  4993. image: {
  4994. source: "./media/characters/everett/paw.svg"
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(15, "feet"),
  5002. default: true
  5003. },
  5004. {
  5005. name: "Lorg",
  5006. height: math.unit(70, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Lorger",
  5011. height: math.unit(250, "feet")
  5012. },
  5013. {
  5014. name: "Macro",
  5015. height: math.unit(500, "meters")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Rose Lion" },
  5021. {
  5022. front: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(86, "kg"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/rose-lion/front.svg"
  5028. }
  5029. },
  5030. bent: {
  5031. height: math.unit(2 / 1.4288, "meters"),
  5032. weight: math.unit(86, "kg"),
  5033. name: "Bent",
  5034. image: {
  5035. source: "./media/characters/rose-lion/bent.svg"
  5036. }
  5037. }
  5038. },
  5039. [
  5040. {
  5041. name: "Mini-Micro",
  5042. height: math.unit(1, "cm")
  5043. },
  5044. {
  5045. name: "Micro",
  5046. height: math.unit(3.5, "inches"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(6 + 1 / 6, "feet")
  5052. },
  5053. {
  5054. name: "Mini-Macro",
  5055. height: math.unit(9 + 10 / 12, "feet")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Regal" },
  5061. {
  5062. front: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(350, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/regal/front.svg"
  5068. }
  5069. },
  5070. back: {
  5071. height: math.unit(2, "meters"),
  5072. weight: math.unit(350, "lbs"),
  5073. name: "Back",
  5074. image: {
  5075. source: "./media/characters/regal/back.svg"
  5076. }
  5077. },
  5078. },
  5079. [
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(350, "feet"),
  5083. default: true
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Opal" },
  5089. {
  5090. front: {
  5091. height: math.unit(4 + 11 / 12, "feet"),
  5092. weight: math.unit(100, "lbs"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/opal/front.svg"
  5096. }
  5097. },
  5098. frontAlt: {
  5099. height: math.unit(4 + 11 / 12, "feet"),
  5100. weight: math.unit(100, "lbs"),
  5101. name: "Front (Alt)",
  5102. image: {
  5103. source: "./media/characters/opal/front-alt.svg"
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Small",
  5110. height: math.unit(4 + 11 / 12, "feet")
  5111. },
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(20, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro",
  5119. height: math.unit(120, "feet")
  5120. },
  5121. {
  5122. name: "Megamacro",
  5123. height: math.unit(80, "miles")
  5124. },
  5125. {
  5126. name: "True Size",
  5127. height: math.unit(100000, "lightyears")
  5128. },
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Vector Wuff" },
  5133. {
  5134. front: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(200, "lbs"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/vector-wuff/front.svg"
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(2.8, "meters")
  5147. },
  5148. {
  5149. name: "Macro",
  5150. height: math.unit(450, "meters"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Megamacro",
  5155. height: math.unit(15, "kilometers")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Dannik" },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(256, "lbs"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/dannik/front.svg"
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(69.57, "meters"),
  5175. default: true
  5176. },
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Azura Saharah" },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(120, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/azura-saharah/front.svg"
  5188. }
  5189. },
  5190. back: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(120, "lbs"),
  5193. name: "Back",
  5194. image: {
  5195. source: "./media/characters/azura-saharah/back.svg"
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Macro",
  5202. height: math.unit(100, "feet"),
  5203. default: true
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Kennedy" },
  5209. {
  5210. side: {
  5211. height: math.unit(5 + 4 / 12, "feet"),
  5212. weight: math.unit(163, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/kennedy/side.svg"
  5216. }
  5217. }
  5218. },
  5219. [
  5220. {
  5221. name: "Standard Doggo",
  5222. height: math.unit(5 + 4 / 12, "feet")
  5223. },
  5224. {
  5225. name: "Big Doggo",
  5226. height: math.unit(25 + 3 / 12, "feet"),
  5227. default: true
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Odi Lunar" },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(90, "lbs"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/odi-lunar/front.svg"
  5240. }
  5241. }
  5242. },
  5243. [
  5244. {
  5245. name: "Micro",
  5246. height: math.unit(3, "inches"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Normal",
  5251. height: math.unit(5.5, "feet")
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Mandake" },
  5257. {
  5258. back: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(220, "lbs"),
  5261. name: "Back",
  5262. image: {
  5263. source: "./media/characters/mandake/back.svg"
  5264. }
  5265. }
  5266. },
  5267. [
  5268. {
  5269. name: "Normal",
  5270. height: math.unit(7, "feet"),
  5271. default: true
  5272. },
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(78, "feet")
  5276. },
  5277. {
  5278. name: "Macro+",
  5279. height: math.unit(300, "meters")
  5280. },
  5281. {
  5282. name: "Macro++",
  5283. height: math.unit(2400, "feet")
  5284. },
  5285. {
  5286. name: "Megamacro",
  5287. height: math.unit(5167, "meters")
  5288. },
  5289. {
  5290. name: "Gigamacro",
  5291. height: math.unit(41769, "miles")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Yozey" },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(120, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/yozey/front.svg"
  5304. }
  5305. },
  5306. frontAlt: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(120, "lbs"),
  5309. name: "Front (Alt)",
  5310. image: {
  5311. source: "./media/characters/yozey/front-alt.svg"
  5312. }
  5313. },
  5314. side: {
  5315. height: math.unit(6, "feet"),
  5316. weight: math.unit(120, "lbs"),
  5317. name: "Side",
  5318. image: {
  5319. source: "./media/characters/yozey/side.svg"
  5320. }
  5321. },
  5322. },
  5323. [
  5324. {
  5325. name: "Micro",
  5326. height: math.unit(3, "inches"),
  5327. default: true
  5328. },
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(6, "feet")
  5332. }
  5333. ]
  5334. ))
  5335. characterMakers.push(() => makeCharacter(
  5336. { name: "Valeska Voss" },
  5337. {
  5338. front: {
  5339. height: math.unit(6, "feet"),
  5340. weight: math.unit(103, "lbs"),
  5341. name: "Front",
  5342. image: {
  5343. source: "./media/characters/valeska-voss/front.svg"
  5344. }
  5345. }
  5346. },
  5347. [
  5348. {
  5349. name: "Mini-Sized Sub",
  5350. height: math.unit(3.1, "inches")
  5351. },
  5352. {
  5353. name: "Mid-Sized Sub",
  5354. height: math.unit(6.2, "inches")
  5355. },
  5356. {
  5357. name: "Full-Sized Sub",
  5358. height: math.unit(9.3, "inches")
  5359. },
  5360. {
  5361. name: "Normal",
  5362. height: math.unit(5 + 2 / 12, "foot"),
  5363. default: true
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Gene Zeta" },
  5369. {
  5370. front: {
  5371. height: math.unit(6, "feet"),
  5372. weight: math.unit(160, "lbs"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/gene-zeta/front.svg",
  5376. bottom: 0.03,
  5377. extra: 1
  5378. }
  5379. }
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(6.25, "foot"),
  5385. default: true
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Razinox" },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(350, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/razinox/front.svg",
  5398. extra: 1686 / 1548,
  5399. bottom: 28.2/1868
  5400. }
  5401. },
  5402. back: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(350, "lbs"),
  5405. name: "Back",
  5406. image: {
  5407. source: "./media/characters/razinox/back.svg",
  5408. extra: 1660 / 1590,
  5409. bottom: 15/1665
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(10 + 8 / 12, "foot")
  5417. },
  5418. {
  5419. name: "Minimacro",
  5420. height: math.unit(15, "foot")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(60, "foot"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megamacro",
  5429. height: math.unit(5, "miles")
  5430. },
  5431. {
  5432. name: "Gigamacro",
  5433. height: math.unit(6000, "miles")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Cobalt" },
  5439. {
  5440. front: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(150, "lbs"),
  5443. name: "Front",
  5444. image: {
  5445. source: "./media/characters/cobalt/front.svg"
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(8 + 1 / 12, "foot")
  5453. },
  5454. {
  5455. name: "Macro",
  5456. height: math.unit(111, "foot"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Supracosmic",
  5461. height: math.unit(1e42, "feet")
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Amanda" },
  5467. {
  5468. front: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(140, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/amanda/front.svg"
  5474. }
  5475. }
  5476. },
  5477. [
  5478. {
  5479. name: "Micro",
  5480. height: math.unit(5, "inches"),
  5481. default: true
  5482. },
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Teal" },
  5487. {
  5488. front: {
  5489. height: math.unit(5.59, "feet"),
  5490. weight: math.unit(250, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/teal/front.svg"
  5494. }
  5495. },
  5496. frontAlt: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(250, "lbs"),
  5499. name: "Front (Alt)",
  5500. image: {
  5501. source: "./media/characters/teal/front-alt.svg",
  5502. bottom: 0.04,
  5503. extra: 1
  5504. }
  5505. },
  5506. },
  5507. [
  5508. {
  5509. name: "Normal",
  5510. height: math.unit(12, "feet"),
  5511. default: true
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(300, "feet")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Ravin Amulet" },
  5521. {
  5522. frontCat: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(180, "lbs"),
  5525. name: "Front (Cat)",
  5526. image: {
  5527. source: "./media/characters/ravin-amulet/front-cat.svg"
  5528. }
  5529. },
  5530. frontCatAlt: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(180, "lbs"),
  5533. name: "Front (Alt, Cat)",
  5534. image: {
  5535. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5536. }
  5537. },
  5538. frontWerewolf: {
  5539. height: math.unit(6 * 1.2, "feet"),
  5540. weight: math.unit(225, "lbs"),
  5541. name: "Front (Werewolf)",
  5542. image: {
  5543. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5544. }
  5545. },
  5546. backWerewolf: {
  5547. height: math.unit(6 * 1.2, "feet"),
  5548. weight: math.unit(225, "lbs"),
  5549. name: "Back (Werewolf)",
  5550. image: {
  5551. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Nano",
  5558. height: math.unit(1, "micrometer")
  5559. },
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(1, "inch")
  5563. },
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(6, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(60, "feet")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Fluoresce" },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(165, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/fluoresce/front.svg"
  5584. }
  5585. }
  5586. },
  5587. [
  5588. {
  5589. name: "Micro",
  5590. height: math.unit(6, "cm")
  5591. },
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(5 + 7 / 12, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(56, "feet")
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(1.9, "miles")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Aurora" },
  5609. {
  5610. front: {
  5611. height: math.unit(9 + 6 / 12, "feet"),
  5612. weight: math.unit(523, "lbs"),
  5613. name: "Side",
  5614. image: {
  5615. source: "./media/characters/aurora/side.svg"
  5616. }
  5617. }
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(9 + 6 / 12, "feet")
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(96, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Macro+",
  5631. height: math.unit(243, "feet")
  5632. },
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Ranek" },
  5637. {
  5638. front: {
  5639. height: math.unit(194, "cm"),
  5640. weight: math.unit(90, "kg"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/ranek/front.svg"
  5644. }
  5645. },
  5646. side: {
  5647. height: math.unit(194, "cm"),
  5648. weight: math.unit(90, "kg"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/ranek/side.svg"
  5652. }
  5653. },
  5654. back: {
  5655. height: math.unit(194, "cm"),
  5656. weight: math.unit(90, "kg"),
  5657. name: "Back",
  5658. image: {
  5659. source: "./media/characters/ranek/back.svg"
  5660. }
  5661. },
  5662. feral: {
  5663. height: math.unit(30, "cm"),
  5664. weight: math.unit(1.6, "lbs"),
  5665. name: "Feral",
  5666. image: {
  5667. source: "./media/characters/ranek/feral.svg"
  5668. }
  5669. },
  5670. },
  5671. [
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(194, "cm"),
  5675. default: true
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(100, "meters")
  5680. },
  5681. ]
  5682. ))
  5683. characterMakers.push(() => makeCharacter(
  5684. { name: "Andrew Cooper" },
  5685. {
  5686. front: {
  5687. height: math.unit(5 + 6 / 12, "feet"),
  5688. weight: math.unit(153, "lbs"),
  5689. name: "Front",
  5690. image: {
  5691. source: "./media/characters/andrew-cooper/front.svg"
  5692. }
  5693. },
  5694. },
  5695. [
  5696. {
  5697. name: "Nano",
  5698. height: math.unit(1, "mm")
  5699. },
  5700. {
  5701. name: "Micro",
  5702. height: math.unit(2, "inches")
  5703. },
  5704. {
  5705. name: "Normal",
  5706. height: math.unit(5 + 6 / 12, "feet"),
  5707. default: true
  5708. }
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Akane Sato" },
  5713. {
  5714. front: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(180, "lbs"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/akane-sato/front.svg",
  5720. extra: 1219 / 1140
  5721. }
  5722. },
  5723. back: {
  5724. height: math.unit(6, "feet"),
  5725. weight: math.unit(180, "lbs"),
  5726. name: "Back",
  5727. image: {
  5728. source: "./media/characters/akane-sato/back.svg",
  5729. extra: 1219 / 1170
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(2.5, "meters")
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(250, "meters"),
  5741. default: true
  5742. },
  5743. {
  5744. name: "Megamacro",
  5745. height: math.unit(25, "km")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Rook" },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(65, "kg"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/rook/front.svg",
  5758. extra: 960/950
  5759. }
  5760. }
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(8.8, "feet")
  5766. },
  5767. {
  5768. name: "Macro",
  5769. height: math.unit(88, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Megamacro",
  5774. height: math.unit(8, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Prodigy" },
  5780. {
  5781. front: {
  5782. height: math.unit(12 + 2 / 12, "feet"),
  5783. weight: math.unit(808, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/prodigy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(12 + 2 / 12, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(143, "feet")
  5799. },
  5800. {
  5801. name: "Macro+",
  5802. height: math.unit(400, "feet")
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Daniel" },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(225, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/daniel/front.svg"
  5815. }
  5816. },
  5817. leaning: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(225, "lbs"),
  5820. name: "Leaning",
  5821. image: {
  5822. source: "./media/characters/daniel/leaning.svg"
  5823. }
  5824. },
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(1000, "feet"),
  5830. default: true
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Chiros" },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(88, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/chiros/front.svg",
  5843. extra: 306 / 226
  5844. }
  5845. },
  5846. side: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(88, "lbs"),
  5849. name: "Side",
  5850. image: {
  5851. source: "./media/characters/chiros/side.svg",
  5852. extra: 306 / 226
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(6, "cm"),
  5860. default: true
  5861. },
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Selka" },
  5866. {
  5867. front: {
  5868. height: math.unit(6, "feet"),
  5869. weight: math.unit(100, "lbs"),
  5870. name: "Front",
  5871. image: {
  5872. source: "./media/characters/selka/front.svg",
  5873. extra: 947 / 887
  5874. }
  5875. }
  5876. },
  5877. [
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(5, "cm"),
  5881. default: true
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Verin" },
  5887. {
  5888. front: {
  5889. height: math.unit(8 + 3 / 12, "feet"),
  5890. weight: math.unit(424, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/verin/front.svg",
  5894. extra: 1845 / 1550
  5895. }
  5896. },
  5897. frontArmored: {
  5898. height: math.unit(8 + 3 / 12, "feet"),
  5899. weight: math.unit(424, "lbs"),
  5900. name: "Front (Armored)",
  5901. image: {
  5902. source: "./media/characters/verin/front-armor.svg",
  5903. extra: 1845 / 1550,
  5904. bottom: 0.01
  5905. }
  5906. },
  5907. back: {
  5908. height: math.unit(8 + 3 / 12, "feet"),
  5909. weight: math.unit(424, "lbs"),
  5910. name: "Back",
  5911. image: {
  5912. source: "./media/characters/verin/back.svg",
  5913. bottom: 0.1,
  5914. extra: 1
  5915. }
  5916. },
  5917. foot: {
  5918. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5919. name: "Foot",
  5920. image: {
  5921. source: "./media/characters/verin/foot.svg"
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(8 + 3 / 12, "feet")
  5929. },
  5930. {
  5931. name: "Minimacro",
  5932. height: math.unit(21, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(626, "feet")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Sovrim Terraquian" },
  5943. {
  5944. front: {
  5945. height: math.unit(2.718, "meters"),
  5946. weight: math.unit(150, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/sovrim-terraquian/front.svg"
  5950. }
  5951. },
  5952. back: {
  5953. height: math.unit(2.718, "meters"),
  5954. weight: math.unit(150, "lbs"),
  5955. name: "Back",
  5956. image: {
  5957. source: "./media/characters/sovrim-terraquian/back.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "inches")
  5965. },
  5966. {
  5967. name: "Small",
  5968. height: math.unit(1, "meter")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(Math.E, "meters"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Macro",
  5977. height: math.unit(20, "meters")
  5978. },
  5979. {
  5980. name: "Macro+",
  5981. height: math.unit(400, "meters")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Reece Silvermane" },
  5987. {
  5988. front: {
  5989. height: math.unit(7, "feet"),
  5990. weight: math.unit(489, "lbs"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/reece-silvermane/front.svg",
  5994. bottom: 0.02,
  5995. extra: 1
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(1.5, "miles"),
  6003. default: true
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Kane" },
  6009. {
  6010. front: {
  6011. height: math.unit(6, "feet"),
  6012. weight: math.unit(78, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/kane/front.svg",
  6016. extra: 978 / 899
  6017. }
  6018. },
  6019. },
  6020. [
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(2.1, "m"),
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(1, "km"),
  6028. default: true
  6029. },
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Tegon" },
  6034. {
  6035. front: {
  6036. height: math.unit(6, "feet"),
  6037. weight: math.unit(200, "kg"),
  6038. name: "Front",
  6039. image: {
  6040. source: "./media/characters/tegon/front.svg",
  6041. bottom: 0.01,
  6042. extra: 1
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(1, "inch")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6 + 3 / 12, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(300, "feet")
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(69, "miles")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Arcturax" },
  6068. {
  6069. side: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(2304, "lbs"),
  6072. name: "Side",
  6073. image: {
  6074. source: "./media/characters/arcturax/side.svg",
  6075. extra: 790 / 376,
  6076. bottom: 0.01
  6077. }
  6078. },
  6079. },
  6080. [
  6081. {
  6082. name: "Micro",
  6083. height: math.unit(2, "inch")
  6084. },
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(6, "feet")
  6088. },
  6089. {
  6090. name: "Macro",
  6091. height: math.unit(39, "feet"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Megamacro",
  6096. height: math.unit(7, "miles")
  6097. },
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Sentri" },
  6102. {
  6103. front: {
  6104. height: math.unit(6, "feet"),
  6105. weight: math.unit(50, "lbs"),
  6106. name: "Front",
  6107. image: {
  6108. source: "./media/characters/sentri/front.svg",
  6109. extra: 1750 / 1570,
  6110. bottom: 0.025
  6111. }
  6112. },
  6113. frontAlt: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(50, "lbs"),
  6116. name: "Front (Alt)",
  6117. image: {
  6118. source: "./media/characters/sentri/front-alt.svg",
  6119. extra: 1750 / 1570,
  6120. bottom: 0.025
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(15, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(2500, "feet")
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Corvin" },
  6138. {
  6139. front: {
  6140. height: math.unit(5 + 8 / 12, "feet"),
  6141. weight: math.unit(130, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/corvin/front.svg",
  6145. extra: 1803 / 1629
  6146. }
  6147. },
  6148. frontShirt: {
  6149. height: math.unit(5 + 8 / 12, "feet"),
  6150. weight: math.unit(130, "lbs"),
  6151. name: "Front (Shirt)",
  6152. image: {
  6153. source: "./media/characters/corvin/front-shirt.svg",
  6154. extra: 1803 / 1629
  6155. }
  6156. },
  6157. frontPoncho: {
  6158. height: math.unit(5 + 8 / 12, "feet"),
  6159. weight: math.unit(130, "lbs"),
  6160. name: "Front (Poncho)",
  6161. image: {
  6162. source: "./media/characters/corvin/front-poncho.svg",
  6163. extra: 1803 / 1629
  6164. }
  6165. },
  6166. side: {
  6167. height: math.unit(5 + 8 / 12, "feet"),
  6168. weight: math.unit(130, "lbs"),
  6169. name: "Side",
  6170. image: {
  6171. source: "./media/characters/corvin/side.svg",
  6172. extra: 1012 / 945
  6173. }
  6174. },
  6175. back: {
  6176. height: math.unit(5 + 8 / 12, "feet"),
  6177. weight: math.unit(130, "lbs"),
  6178. name: "Back",
  6179. image: {
  6180. source: "./media/characters/corvin/back.svg",
  6181. extra: 1803 / 1629
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Micro",
  6188. height: math.unit(3, "inches")
  6189. },
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(5 + 8 / 12, "feet")
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(300, "feet"),
  6197. default: true
  6198. },
  6199. {
  6200. name: "Megamacro",
  6201. height: math.unit(500, "miles")
  6202. }
  6203. ]
  6204. ))
  6205. characterMakers.push(() => makeCharacter(
  6206. { name: "Q" },
  6207. {
  6208. front: {
  6209. height: math.unit(6, "feet"),
  6210. weight: math.unit(135, "lbs"),
  6211. name: "Front",
  6212. image: {
  6213. source: "./media/characters/q/front.svg",
  6214. extra: 854 / 752,
  6215. bottom: 0.005
  6216. }
  6217. },
  6218. back: {
  6219. height: math.unit(6, "feet"),
  6220. weight: math.unit(130, "lbs"),
  6221. name: "Back",
  6222. image: {
  6223. source: "./media/characters/q/back.svg",
  6224. extra: 854 / 752
  6225. }
  6226. },
  6227. },
  6228. [
  6229. {
  6230. name: "Macro",
  6231. height: math.unit(90, "feet"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Extra Macro",
  6236. height: math.unit(300, "feet"),
  6237. },
  6238. {
  6239. name: "BIG WALF",
  6240. height: math.unit(750, "feet"),
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Carley" },
  6246. {
  6247. front: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(150, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/carley/front.svg",
  6253. extra: 3927 / 3540,
  6254. bottom: 0.03
  6255. }
  6256. }
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(6 + 3 / 12, "feet")
  6262. },
  6263. {
  6264. name: "Macro",
  6265. height: math.unit(185, "feet"),
  6266. default: true
  6267. },
  6268. {
  6269. name: "Megamacro",
  6270. height: math.unit(8, "miles"),
  6271. },
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "Citrine" },
  6276. {
  6277. front: {
  6278. height: math.unit(3, "feet"),
  6279. weight: math.unit(28, "lbs"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/citrine/front.svg"
  6283. }
  6284. }
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(3, "feet"),
  6290. default: true
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Aura Starwind" },
  6296. {
  6297. front: {
  6298. height: math.unit(14, "feet"),
  6299. weight: math.unit(1450, "kg"),
  6300. capacity: math.unit(15, "people"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/aura-starwind/front.svg",
  6304. extra: 1455 / 1335
  6305. }
  6306. },
  6307. side: {
  6308. height: math.unit(14, "feet"),
  6309. weight: math.unit(1450, "kg"),
  6310. capacity: math.unit(15, "people"),
  6311. name: "Side",
  6312. image: {
  6313. source: "./media/characters/aura-starwind/side.svg",
  6314. extra: 1654 / 1497
  6315. }
  6316. },
  6317. taur: {
  6318. height: math.unit(18, "feet"),
  6319. weight: math.unit(5500, "kg"),
  6320. capacity: math.unit(50, "people"),
  6321. name: "Taur",
  6322. image: {
  6323. source: "./media/characters/aura-starwind/taur.svg",
  6324. extra: 1760 / 1650
  6325. }
  6326. },
  6327. feral: {
  6328. height: math.unit(46, "feet"),
  6329. weight: math.unit(25000, "kg"),
  6330. capacity: math.unit(120, "people"),
  6331. name: "Feral",
  6332. image: {
  6333. source: "./media/characters/aura-starwind/feral.svg"
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(14, "feet"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(50, "meters")
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(5000, "meters")
  6350. },
  6351. {
  6352. name: "Gigamacro",
  6353. height: math.unit(100000, "kilometers")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Rivet" },
  6359. {
  6360. front: {
  6361. height: math.unit(2 + 7 / 12, "feet"),
  6362. weight: math.unit(32, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/rivet/front.svg",
  6366. extra: 1716 / 1658,
  6367. bottom: 0.03
  6368. }
  6369. },
  6370. foot: {
  6371. height: math.unit(0.551, "feet"),
  6372. name: "Rivet's Foot",
  6373. image: {
  6374. source: "./media/characters/rivet/foot.svg"
  6375. },
  6376. rename: true
  6377. }
  6378. },
  6379. [
  6380. {
  6381. name: "Micro",
  6382. height: math.unit(1.5, "inches"),
  6383. },
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(2 + 7 / 12, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(85, "feet")
  6392. },
  6393. {
  6394. name: "Megamacro",
  6395. height: math.unit(2.2, "km")
  6396. }
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Coffee" },
  6401. {
  6402. front: {
  6403. height: math.unit(5 + 9 / 12, "feet"),
  6404. weight: math.unit(150, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/coffee/front.svg",
  6408. extra: 3666 / 3032,
  6409. bottom: 0.04
  6410. }
  6411. },
  6412. foot: {
  6413. height: math.unit(1.29, "feet"),
  6414. name: "Foot",
  6415. image: {
  6416. source: "./media/characters/coffee/foot.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Micro",
  6423. height: math.unit(2, "inches"),
  6424. },
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(5 + 9 / 12, "feet"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Macro",
  6432. height: math.unit(800, "feet")
  6433. },
  6434. {
  6435. name: "Megamacro",
  6436. height: math.unit(25, "miles")
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Chari-Gal" },
  6442. {
  6443. front: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(200, "lbs"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/chari-gal/front.svg",
  6449. extra: 1568 / 1385,
  6450. bottom: 0.047
  6451. }
  6452. },
  6453. gigantamax: {
  6454. height: math.unit(6 * 16, "feet"),
  6455. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6456. name: "Gigantamax",
  6457. image: {
  6458. source: "./media/characters/chari-gal/gigantamax.svg",
  6459. extra: 1124 / 888,
  6460. bottom: 0.03
  6461. }
  6462. },
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(5 + 7 / 12, "feet")
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(200, "feet"),
  6472. default: true
  6473. }
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Nova" },
  6478. {
  6479. front: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(150, "lbs"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/nova/front.svg",
  6485. extra: 5000 / 4722,
  6486. bottom: 0.02
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Micro-",
  6493. height: math.unit(0.8, "inches")
  6494. },
  6495. {
  6496. name: "Micro",
  6497. height: math.unit(2, "inches"),
  6498. default: true
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Argent" },
  6504. {
  6505. front: {
  6506. height: math.unit(3 + 1 / 12, "feet"),
  6507. weight: math.unit(21.7, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/argent/front.svg",
  6511. extra: 1565 / 1416,
  6512. bottom: 0.01
  6513. }
  6514. }
  6515. },
  6516. [
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(2, "inches")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(3 + 1 / 12, "feet"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Macro",
  6528. height: math.unit(120, "feet")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Mira al-Cul" },
  6534. {
  6535. lamp: {
  6536. height: math.unit(7 * 1559 / 989, "feet"),
  6537. name: "Magic Lamp",
  6538. image: {
  6539. source: "./media/characters/mira-al-cul/lamp.svg",
  6540. extra: 1617 / 1559
  6541. }
  6542. },
  6543. front: {
  6544. height: math.unit(7, "feet"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/mira-al-cul/front.svg",
  6548. extra: 1044 / 990
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Heavily Restricted",
  6555. height: math.unit(7 * 1559 / 989, "feet")
  6556. },
  6557. {
  6558. name: "Freshly Freed",
  6559. height: math.unit(50 * 1559 / 989, "feet")
  6560. },
  6561. {
  6562. name: "World Encompassing",
  6563. height: math.unit(10000 * 1559 / 989, "miles")
  6564. },
  6565. {
  6566. name: "Galactic",
  6567. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6568. },
  6569. {
  6570. name: "Palmed Universe",
  6571. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6572. default: true
  6573. },
  6574. {
  6575. name: "Multiversal Matriarch",
  6576. height: math.unit(8.87e10, "yottameters")
  6577. },
  6578. {
  6579. name: "Void Mother",
  6580. height: math.unit(3.14e110, "yottaparsecs")
  6581. },
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Kuro-shi Uchū" },
  6586. {
  6587. front: {
  6588. height: math.unit(17 + 1 / 12, "feet"),
  6589. weight: math.unit(476.2 * 5, "lbs"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/kuro-shi-uchū/front.svg",
  6593. extra: 2329 / 1835,
  6594. bottom: 0.02
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Micro",
  6601. height: math.unit(2, "inches")
  6602. },
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(12, "meters")
  6606. },
  6607. {
  6608. name: "Planetary",
  6609. height: math.unit(0.00929, "AU"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Universal",
  6614. height: math.unit(20, "gigaparsecs")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Katherine" },
  6620. {
  6621. front: {
  6622. height: math.unit(5 + 2 / 12, "feet"),
  6623. weight: math.unit(120, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/katherine/front.svg",
  6627. extra: 2075 / 1969
  6628. }
  6629. },
  6630. dress: {
  6631. height: math.unit(5 + 2 / 12, "feet"),
  6632. weight: math.unit(120, "lbs"),
  6633. name: "Dress",
  6634. image: {
  6635. source: "./media/characters/katherine/dress.svg",
  6636. extra: 2258 / 2064
  6637. }
  6638. },
  6639. },
  6640. [
  6641. {
  6642. name: "Micro",
  6643. height: math.unit(1, "inches"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(5 + 2 / 12, "feet")
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(100, "meters")
  6653. },
  6654. {
  6655. name: "Megamacro",
  6656. height: math.unit(80, "miles")
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Yevis" },
  6662. {
  6663. front: {
  6664. height: math.unit(7 + 8 / 12, "feet"),
  6665. weight: math.unit(250, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/yevis/front.svg",
  6669. extra: 1938 / 1755
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Mortal",
  6676. height: math.unit(7 + 8 / 12, "feet")
  6677. },
  6678. {
  6679. name: "Battle",
  6680. height: math.unit(25 + 11 / 12, "feet")
  6681. },
  6682. {
  6683. name: "Wrath",
  6684. height: math.unit(1654 + 11 / 12, "feet")
  6685. },
  6686. {
  6687. name: "Planet Destroyer",
  6688. height: math.unit(12000, "miles")
  6689. },
  6690. {
  6691. name: "Galaxy Conqueror",
  6692. height: math.unit(1.45, "zettameters"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Universal War",
  6697. height: math.unit(184, "gigaparsecs")
  6698. },
  6699. {
  6700. name: "Eternity War",
  6701. height: math.unit(1.98e55, "yottaparsecs")
  6702. },
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Xavier" },
  6707. {
  6708. front: {
  6709. height: math.unit(5 + 8 / 12, "feet"),
  6710. weight: math.unit(63, "kg"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/xavier/front.svg",
  6714. extra: 944 / 883
  6715. }
  6716. },
  6717. frontStretch: {
  6718. height: math.unit(5 + 8 / 12, "feet"),
  6719. weight: math.unit(63, "kg"),
  6720. name: "Stretching",
  6721. image: {
  6722. source: "./media/characters/xavier/front-stretch.svg",
  6723. extra: 962 / 820
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(5 + 8 / 12, "feet")
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(100, "meters"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "McLargeHuge",
  6739. height: math.unit(10, "miles")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Joshii" },
  6745. {
  6746. front: {
  6747. height: math.unit(5 + 5 / 12, "feet"),
  6748. weight: math.unit(150, "lb"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/joshii/front.svg"
  6752. }
  6753. },
  6754. foot: {
  6755. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6756. name: "Foot",
  6757. image: {
  6758. source: "./media/characters/joshii/foot.svg"
  6759. }
  6760. },
  6761. },
  6762. [
  6763. {
  6764. name: "Micro",
  6765. height: math.unit(2, "inches")
  6766. },
  6767. {
  6768. name: "Normal",
  6769. height: math.unit(5 + 5 / 12, "feet"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(785, "feet")
  6775. },
  6776. {
  6777. name: "Megamacro",
  6778. height: math.unit(24.5, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Goddess Elizabeth" },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(150, "lb"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/goddess-elizabeth/front.svg",
  6791. extra: 1800 / 1525,
  6792. bottom: 0.005
  6793. }
  6794. },
  6795. foot: {
  6796. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6797. name: "Foot",
  6798. image: {
  6799. source: "./media/characters/goddess-elizabeth/foot.svg"
  6800. }
  6801. },
  6802. mouth: {
  6803. height: math.unit(6, "feet"),
  6804. name: "Mouth",
  6805. image: {
  6806. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Micro",
  6813. height: math.unit(12, "feet")
  6814. },
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(80, "miles"),
  6818. default: true
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(15000, "parsecs")
  6823. },
  6824. ]
  6825. ))
  6826. characterMakers.push(() => makeCharacter(
  6827. { name: "Kara" },
  6828. {
  6829. front: {
  6830. height: math.unit(5 + 9 / 12, "feet"),
  6831. weight: math.unit(144, "lb"),
  6832. name: "Front",
  6833. image: {
  6834. source: "./media/characters/kara/front.svg"
  6835. }
  6836. },
  6837. feet: {
  6838. height: math.unit(6 / 6.765, "feet"),
  6839. name: "Kara's Feet",
  6840. rename: true,
  6841. image: {
  6842. source: "./media/characters/kara/feet.svg"
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Normal",
  6849. height: math.unit(5 + 9 / 12, "feet")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(174, "feet"),
  6854. default: true
  6855. },
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Tyrone" },
  6860. {
  6861. front: {
  6862. height: math.unit(18, "feet"),
  6863. weight: math.unit(4050, "lb"),
  6864. name: "Front",
  6865. image: {
  6866. source: "./media/characters/tyrone/front.svg",
  6867. extra: 2520 / 2402,
  6868. bottom: 0.025
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(18, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro",
  6880. height: math.unit(300, "feet")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Danny" },
  6886. {
  6887. front: {
  6888. height: math.unit(7 + 8 / 12, "feet"),
  6889. weight: math.unit(120, "lb"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/danny/front.svg",
  6893. extra: 1490 / 1350
  6894. }
  6895. },
  6896. back: {
  6897. height: math.unit(7 + 8 / 12, "feet"),
  6898. weight: math.unit(120, "lb"),
  6899. name: "Back",
  6900. image: {
  6901. source: "./media/characters/danny/back.svg",
  6902. extra: 1490 / 1350
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(7 + 8 / 12, "feet"),
  6910. default: true
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Mallow" },
  6916. {
  6917. front: {
  6918. height: math.unit(3.5, "inches"),
  6919. weight: math.unit(19, "grams"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/mallow/front.svg",
  6923. extra: 471 / 431
  6924. }
  6925. },
  6926. back: {
  6927. height: math.unit(3.5, "inches"),
  6928. weight: math.unit(19, "grams"),
  6929. name: "Back",
  6930. image: {
  6931. source: "./media/characters/mallow/back.svg",
  6932. extra: 471 / 431
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(3.5, "inches"),
  6940. default: true
  6941. },
  6942. ]
  6943. ))
  6944. characterMakers.push(() => makeCharacter(
  6945. { name: "Starry Aqua" },
  6946. {
  6947. front: {
  6948. height: math.unit(9, "feet"),
  6949. weight: math.unit(230, "kg"),
  6950. name: "Front",
  6951. image: {
  6952. source: "./media/characters/starry-aqua/front.svg"
  6953. }
  6954. },
  6955. back: {
  6956. height: math.unit(9, "feet"),
  6957. weight: math.unit(230, "kg"),
  6958. name: "Back",
  6959. image: {
  6960. source: "./media/characters/starry-aqua/back.svg"
  6961. }
  6962. },
  6963. hand: {
  6964. height: math.unit(9 * 0.1168, "feet"),
  6965. name: "Hand",
  6966. image: {
  6967. source: "./media/characters/starry-aqua/hand.svg"
  6968. }
  6969. },
  6970. foot: {
  6971. height: math.unit(9 * 0.18, "feet"),
  6972. name: "Foot",
  6973. image: {
  6974. source: "./media/characters/starry-aqua/foot.svg"
  6975. }
  6976. }
  6977. },
  6978. [
  6979. {
  6980. name: "Micro",
  6981. height: math.unit(3, "inches")
  6982. },
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(9, "feet")
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(300, "feet"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Megamacro",
  6994. height: math.unit(3200, "feet")
  6995. }
  6996. ]
  6997. ))
  6998. characterMakers.push(() => makeCharacter(
  6999. { name: "Luka" },
  7000. {
  7001. front: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(230, "lb"),
  7004. name: "Front",
  7005. image: {
  7006. source: "./media/characters/luka/front.svg",
  7007. extra: 1,
  7008. bottom: 0.025
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Normal",
  7015. height: math.unit(12 + 8 / 12, "feet"),
  7016. default: true
  7017. },
  7018. {
  7019. name: "Minimacro",
  7020. height: math.unit(20, "feet")
  7021. },
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(250, "feet")
  7025. },
  7026. {
  7027. name: "Megamacro",
  7028. height: math.unit(5, "miles")
  7029. },
  7030. {
  7031. name: "Gigamacro",
  7032. height: math.unit(8000, "miles")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Natalie Nightring" },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(150, "lb"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/natalie-nightring/front.svg",
  7045. extra: 1,
  7046. bottom: 0.06
  7047. }
  7048. },
  7049. },
  7050. [
  7051. {
  7052. name: "Uh Oh",
  7053. height: math.unit(0.1, "mm")
  7054. },
  7055. {
  7056. name: "Small",
  7057. height: math.unit(3, "inches")
  7058. },
  7059. {
  7060. name: "Human Scale",
  7061. height: math.unit(6, "feet")
  7062. },
  7063. {
  7064. name: "Librarian",
  7065. height: math.unit(50, "feet"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Immense",
  7070. height: math.unit(200, "miles")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Danni Rosie" },
  7076. {
  7077. front: {
  7078. height: math.unit(6, "feet"),
  7079. weight: math.unit(180, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/danni-rosie/front.svg",
  7083. extra: 1260 / 1128,
  7084. bottom: 0.022
  7085. }
  7086. },
  7087. },
  7088. [
  7089. {
  7090. name: "Micro",
  7091. height: math.unit(2, "inches"),
  7092. default: true
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Samantha Kruse" },
  7098. {
  7099. front: {
  7100. height: math.unit(5 + 9 / 12, "feet"),
  7101. weight: math.unit(220, "lb"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/samantha-kruse/front.svg",
  7105. extra: (985 / 935),
  7106. bottom: 0.03
  7107. }
  7108. },
  7109. frontUndressed: {
  7110. height: math.unit(5 + 9 / 12, "feet"),
  7111. weight: math.unit(220, "lb"),
  7112. name: "Front (Undressed)",
  7113. image: {
  7114. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7115. extra: (973 / 923),
  7116. bottom: 0.025
  7117. }
  7118. },
  7119. fat: {
  7120. height: math.unit(5 + 9 / 12, "feet"),
  7121. weight: math.unit(900, "lb"),
  7122. name: "Front (Fat)",
  7123. image: {
  7124. source: "./media/characters/samantha-kruse/fat.svg",
  7125. extra: 2688 / 2561
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(5 + 9 / 12, "feet"),
  7133. default: true
  7134. }
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Amelia Rosie" },
  7139. {
  7140. back: {
  7141. height: math.unit(5 + 4 / 12, "feet"),
  7142. weight: math.unit(4963, "lb"),
  7143. name: "Back",
  7144. image: {
  7145. source: "./media/characters/amelia-rosie/back.svg",
  7146. extra: 1113 / 963,
  7147. bottom: 0.01
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Level 0",
  7154. height: math.unit(5 + 4 / 12, "feet")
  7155. },
  7156. {
  7157. name: "Level 1",
  7158. height: math.unit(164597, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Level 2",
  7163. height: math.unit(956243, "miles")
  7164. },
  7165. {
  7166. name: "Level 3",
  7167. height: math.unit(29421709423, "miles")
  7168. },
  7169. {
  7170. name: "Level 4",
  7171. height: math.unit(154, "lightyears")
  7172. },
  7173. {
  7174. name: "Level 5",
  7175. height: math.unit(4738272, "lightyears")
  7176. },
  7177. {
  7178. name: "Level 6",
  7179. height: math.unit(145787152896, "lightyears")
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Rook Kitara" },
  7185. {
  7186. front: {
  7187. height: math.unit(5 + 11 / 12, "feet"),
  7188. weight: math.unit(65, "kg"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/rook-kitara/front.svg",
  7192. extra: 1347 / 1274,
  7193. bottom: 0.005
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Totally Unfair",
  7200. height: math.unit(1.8, "mm")
  7201. },
  7202. {
  7203. name: "Lap Rookie",
  7204. height: math.unit(1.4, "feet")
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5 + 11 / 12, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "How Did This Happen",
  7213. height: math.unit(80, "miles")
  7214. }
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Pisces" },
  7219. {
  7220. front: {
  7221. height: math.unit(7, "feet"),
  7222. weight: math.unit(300, "lb"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/pisces/front.svg",
  7226. extra: 2255 / 2115,
  7227. bottom: 0.03
  7228. }
  7229. },
  7230. back: {
  7231. height: math.unit(7, "feet"),
  7232. weight: math.unit(300, "lb"),
  7233. name: "Back",
  7234. image: {
  7235. source: "./media/characters/pisces/back.svg",
  7236. extra: 2146 / 2055,
  7237. bottom: 0.04
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(7, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Swimming Pool",
  7249. height: math.unit(12.2, "meters")
  7250. },
  7251. {
  7252. name: "Olympic Swimming Pool",
  7253. height: math.unit(56.3, "meters")
  7254. },
  7255. {
  7256. name: "Lake Superior",
  7257. height: math.unit(93900, "meters")
  7258. },
  7259. {
  7260. name: "Mediterranean Sea",
  7261. height: math.unit(644457, "meters")
  7262. },
  7263. {
  7264. name: "World's Oceans",
  7265. height: math.unit(4567491, "meters")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Zelas" },
  7271. {
  7272. front: {
  7273. height: math.unit(2.3, "meters"),
  7274. weight: math.unit(120, "kg"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/zelas/front.svg"
  7278. }
  7279. },
  7280. side: {
  7281. height: math.unit(2.3, "meters"),
  7282. weight: math.unit(120, "kg"),
  7283. name: "Side",
  7284. image: {
  7285. source: "./media/characters/zelas/side.svg"
  7286. }
  7287. },
  7288. back: {
  7289. height: math.unit(2.3, "meters"),
  7290. weight: math.unit(120, "kg"),
  7291. name: "Back",
  7292. image: {
  7293. source: "./media/characters/zelas/back.svg"
  7294. }
  7295. },
  7296. foot: {
  7297. height: math.unit(1.116, "feet"),
  7298. name: "Foot",
  7299. image: {
  7300. source: "./media/characters/zelas/foot.svg"
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(2.3, "meters")
  7308. },
  7309. {
  7310. name: "Macro",
  7311. height: math.unit(30, "meters"),
  7312. default: true
  7313. },
  7314. ]
  7315. ))
  7316. characterMakers.push(() => makeCharacter(
  7317. { name: "Talbot" },
  7318. {
  7319. front: {
  7320. height: math.unit(1, "inch"),
  7321. weight: math.unit(0.21, "grams"),
  7322. name: "Front",
  7323. image: {
  7324. source: "./media/characters/talbot/front.svg",
  7325. extra: 594 / 544
  7326. }
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "Micro",
  7332. height: math.unit(1, "inch"),
  7333. default: true
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Fliss" },
  7339. {
  7340. front: {
  7341. height: math.unit(3 + 3 / 12, "feet"),
  7342. weight: math.unit(51.8, "lb"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/fliss/front.svg",
  7346. extra: 840 / 640
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Teeny Tiny",
  7353. height: math.unit(1, "mm")
  7354. },
  7355. {
  7356. name: "Small",
  7357. height: math.unit(1, "inch"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Standard Sylveon",
  7362. height: math.unit(3 + 3 / 12, "feet")
  7363. },
  7364. {
  7365. name: "Large Nuisance",
  7366. height: math.unit(33, "feet")
  7367. },
  7368. {
  7369. name: "City Filler",
  7370. height: math.unit(3000, "feet")
  7371. },
  7372. {
  7373. name: "New Horizon",
  7374. height: math.unit(6000, "miles")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Fleta" },
  7380. {
  7381. front: {
  7382. height: math.unit(5, "cm"),
  7383. weight: math.unit(1.94, "g"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/fleta/front.svg",
  7387. extra: 835 / 803
  7388. }
  7389. },
  7390. back: {
  7391. height: math.unit(5, "cm"),
  7392. weight: math.unit(1.94, "g"),
  7393. name: "Back",
  7394. image: {
  7395. source: "./media/characters/fleta/back.svg",
  7396. extra: 835 / 803
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(5, "cm"),
  7404. default: true
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Dominic" },
  7410. {
  7411. front: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(225, "lb"),
  7414. name: "Front",
  7415. image: {
  7416. source: "./media/characters/dominic/front.svg",
  7417. extra: 1770 / 1620,
  7418. bottom: 0.025
  7419. }
  7420. },
  7421. back: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(225, "lb"),
  7424. name: "Back",
  7425. image: {
  7426. source: "./media/characters/dominic/back.svg",
  7427. extra: 1745 / 1620,
  7428. bottom: 0.065
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Nano",
  7435. height: math.unit(0.1, "mm")
  7436. },
  7437. {
  7438. name: "Micro-",
  7439. height: math.unit(1, "mm")
  7440. },
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(4, "inches")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(6 + 4 / 12, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(115, "feet")
  7453. },
  7454. {
  7455. name: "Macro+",
  7456. height: math.unit(955, "feet")
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(8990, "feet")
  7461. },
  7462. {
  7463. name: "Gigmacro",
  7464. height: math.unit(9310, "miles")
  7465. },
  7466. {
  7467. name: "Teramacro",
  7468. height: math.unit(1567005010, "miles")
  7469. },
  7470. {
  7471. name: "Examacro",
  7472. height: math.unit(1425, "parsecs")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Major Colonel" },
  7478. {
  7479. front: {
  7480. height: math.unit(400, "feet"),
  7481. weight: math.unit(44444444, "lb"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/major-colonel/front.svg"
  7485. }
  7486. },
  7487. back: {
  7488. height: math.unit(400, "feet"),
  7489. weight: math.unit(44444444, "lb"),
  7490. name: "Back",
  7491. image: {
  7492. source: "./media/characters/major-colonel/back.svg"
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(400, "feet"),
  7500. default: true
  7501. },
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Axel Lycan" },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(120, "lb"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/axel-lycan/front.svg",
  7513. extra: 1,
  7514. bottom: 0.08
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(1, "km"),
  7522. default: true
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Vanrel (Hyena)" },
  7528. {
  7529. front: {
  7530. height: math.unit(5 + 9 / 12, "feet"),
  7531. weight: math.unit(175, "lb"),
  7532. name: "Front",
  7533. image: {
  7534. source: "./media/characters/vanrel-hyena/front.svg",
  7535. extra: 1086 / 1010,
  7536. bottom: 0.04
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(5 + 9 / 12, "feet"),
  7544. default: true
  7545. },
  7546. ]
  7547. ))
  7548. characterMakers.push(() => makeCharacter(
  7549. { name: "Abbott Absol" },
  7550. {
  7551. front: {
  7552. height: math.unit(6, "feet"),
  7553. weight: math.unit(103, "lb"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/abbott-absol/front.svg",
  7557. extra: 2010 / 1842
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Megamicro",
  7564. height: math.unit(0.1, "mm")
  7565. },
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(1, "inch")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(6, "feet"),
  7573. default: true
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Hector" },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(264, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/hector/front.svg",
  7586. extra: 2280 / 2130,
  7587. bottom: 0.07
  7588. }
  7589. },
  7590. },
  7591. [
  7592. {
  7593. name: "Normal",
  7594. height: math.unit(12.25, "foot"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "Macro",
  7599. height: math.unit(160, "feet")
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Sal" },
  7605. {
  7606. front: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(150, "lb"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/sal/front.svg",
  7612. extra: 1846 / 1699,
  7613. bottom: 0.04
  7614. }
  7615. },
  7616. },
  7617. [
  7618. {
  7619. name: "Megamacro",
  7620. height: math.unit(10, "miles"),
  7621. default: true
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Ranger" },
  7627. {
  7628. front: {
  7629. height: math.unit(3, "meters"),
  7630. weight: math.unit(450, "kg"),
  7631. name: "front",
  7632. image: {
  7633. source: "./media/characters/ranger/front.svg",
  7634. extra: 2401 / 2243,
  7635. bottom: 0.05
  7636. }
  7637. },
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(3, "meters"),
  7643. default: true
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Theresa" },
  7649. {
  7650. front: {
  7651. height: math.unit(14, "feet"),
  7652. weight: math.unit(800, "kg"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/theresa/front.svg",
  7656. extra: 3575 / 3346,
  7657. bottom: 0.03
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(14, "feet"),
  7665. default: true
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Ine" },
  7671. {
  7672. front: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(3, "kg"),
  7675. name: "Front",
  7676. image: {
  7677. source: "./media/characters/ine/front.svg",
  7678. extra: 678 / 539,
  7679. bottom: 0.023
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(2.265, "feet"),
  7687. default: true
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Vial" },
  7693. {
  7694. front: {
  7695. height: math.unit(5, "feet"),
  7696. weight: math.unit(30, "kg"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/vial/front.svg",
  7700. extra: 1365 / 1277,
  7701. bottom: 0.04
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(5, "feet"),
  7709. default: true
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Rovoska" },
  7715. {
  7716. side: {
  7717. height: math.unit(3.4, "meters"),
  7718. weight: math.unit(1000, "lb"),
  7719. name: "Side",
  7720. image: {
  7721. source: "./media/characters/rovoska/side.svg",
  7722. extra: 4403 / 1515
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(3.4, "meters"),
  7730. default: true
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Gunner Rotthbauer" },
  7736. {
  7737. front: {
  7738. height: math.unit(8, "feet"),
  7739. weight: math.unit(315, "lb"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/gunner-rotthbauer/front.svg"
  7743. }
  7744. },
  7745. back: {
  7746. height: math.unit(8, "feet"),
  7747. weight: math.unit(315, "lb"),
  7748. name: "Back",
  7749. image: {
  7750. source: "./media/characters/gunner-rotthbauer/back.svg"
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Micro",
  7757. height: math.unit(3.5, "inches")
  7758. },
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(8, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(250, "feet")
  7767. },
  7768. {
  7769. name: "Megamacro",
  7770. height: math.unit(1, "AU")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Allatia" },
  7776. {
  7777. front: {
  7778. height: math.unit(5 + 5 / 12, "feet"),
  7779. weight: math.unit(140, "lb"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/allatia/front.svg",
  7783. extra: 1227 / 1180,
  7784. bottom: 0.027
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 5 / 12, "feet")
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(250, "feet"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(8, "miles")
  7801. }
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Tene" },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(120, "lb"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/tene/front.svg",
  7813. extra: 1728 / 1578,
  7814. bottom: 0.022
  7815. }
  7816. },
  7817. stomping: {
  7818. height: math.unit(2.025, "meters"),
  7819. weight: math.unit(120, "lb"),
  7820. name: "Stomping",
  7821. image: {
  7822. source: "./media/characters/tene/stomping.svg",
  7823. extra: 938 / 873,
  7824. bottom: 0.01
  7825. }
  7826. },
  7827. sitting: {
  7828. height: math.unit(1, "meter"),
  7829. weight: math.unit(120, "lb"),
  7830. name: "Sitting",
  7831. image: {
  7832. source: "./media/characters/tene/sitting.svg",
  7833. extra: 437 / 415,
  7834. bottom: 0.1
  7835. }
  7836. },
  7837. feral: {
  7838. height: math.unit(3.9, "feet"),
  7839. weight: math.unit(250, "lb"),
  7840. name: "Feral",
  7841. image: {
  7842. source: "./media/characters/tene/feral.svg",
  7843. extra: 717 / 458,
  7844. bottom: 0.179
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(6, "feet")
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(300, "feet"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(5, "miles")
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Evander" },
  7866. {
  7867. side: {
  7868. height: math.unit(6, "feet"),
  7869. name: "Side",
  7870. image: {
  7871. source: "./media/characters/evander/side.svg",
  7872. extra: 877 / 477
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(0.83, "meters"),
  7880. default: true
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7886. {
  7887. front: {
  7888. height: math.unit(12, "feet"),
  7889. weight: math.unit(1000, "lb"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7893. extra: 1762 / 1611
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(12, "feet"),
  7898. weight: math.unit(1000, "lb"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7902. extra: 1762 / 1611
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(12, "feet"),
  7910. default: true
  7911. },
  7912. {
  7913. name: "Kaiju",
  7914. height: math.unit(150, "feet")
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Zero Alurus" },
  7920. {
  7921. front: {
  7922. height: math.unit(6, "feet"),
  7923. weight: math.unit(150, "lb"),
  7924. name: "Front",
  7925. image: {
  7926. source: "./media/characters/zero-alurus/front.svg"
  7927. }
  7928. },
  7929. back: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(150, "lb"),
  7932. name: "Back",
  7933. image: {
  7934. source: "./media/characters/zero-alurus/back.svg"
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(5 + 10 / 12, "feet")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(60, "feet"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Macro+",
  7950. height: math.unit(450, "feet")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Mega Shi" },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(200, "lb"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/mega-shi/front.svg",
  7963. extra: 1279 / 1250,
  7964. bottom: 0.02
  7965. }
  7966. },
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(200, "lb"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/mega-shi/back.svg",
  7973. extra: 1279 / 1250,
  7974. bottom: 0.02
  7975. }
  7976. },
  7977. },
  7978. [
  7979. {
  7980. name: "Micro",
  7981. height: math.unit(16 + 6 / 12, "feet")
  7982. },
  7983. {
  7984. name: "Third Dimension",
  7985. height: math.unit(40, "meters")
  7986. },
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(660, "feet"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Megamacro",
  7994. height: math.unit(10, "miles")
  7995. },
  7996. {
  7997. name: "Planetary Launch",
  7998. height: math.unit(500, "miles")
  7999. },
  8000. {
  8001. name: "Interstellar",
  8002. height: math.unit(1e9, "miles")
  8003. },
  8004. {
  8005. name: "Leaving the Universe",
  8006. height: math.unit(1, "gigaparsec")
  8007. },
  8008. {
  8009. name: "Travelling Universes",
  8010. height: math.unit(30e15, "parsecs")
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Odyssey" },
  8016. {
  8017. front: {
  8018. height: math.unit(6, "feet"),
  8019. weight: math.unit(150, "lb"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/odyssey/front.svg",
  8023. extra: 1782 / 1582,
  8024. bottom: 0.01
  8025. }
  8026. },
  8027. side: {
  8028. height: math.unit(5.7, "feet"),
  8029. weight: math.unit(140, "lb"),
  8030. name: "Side",
  8031. image: {
  8032. source: "./media/characters/odyssey/side.svg",
  8033. extra: 6462 / 5700
  8034. }
  8035. },
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(5 + 4 / 12, "feet")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(1, "km")
  8045. },
  8046. {
  8047. name: "Megamacro",
  8048. height: math.unit(3000, "km")
  8049. },
  8050. {
  8051. name: "Gigamacro",
  8052. height: math.unit(1, "AU"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Omniversal",
  8057. height: math.unit(100e14, "lightyears")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Mekuto" },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(300, "lb"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/mekuto/front.svg",
  8070. extra: 921 / 832,
  8071. bottom: 0.03
  8072. }
  8073. },
  8074. hand: {
  8075. height: math.unit(6 / 10.24, "feet"),
  8076. name: "Hand",
  8077. image: {
  8078. source: "./media/characters/mekuto/hand.svg"
  8079. }
  8080. },
  8081. foot: {
  8082. height: math.unit(6 / 5.05, "feet"),
  8083. name: "Foot",
  8084. image: {
  8085. source: "./media/characters/mekuto/foot.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Minimicro",
  8092. height: math.unit(0.2, "inches")
  8093. },
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(1.5, "inches")
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(5 + 11 / 12, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Minimacro",
  8105. height: math.unit(17 + 9 / 12, "feet")
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(177.5, "feet")
  8110. },
  8111. {
  8112. name: "Megamacro",
  8113. height: math.unit(152, "miles")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Dafydd Tomos" },
  8119. {
  8120. front: {
  8121. height: math.unit(6.5, "inches"),
  8122. weight: math.unit(13, "oz"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/dafydd-tomos/front.svg",
  8126. extra: 2990 / 2603,
  8127. bottom: 0.03
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Micro",
  8134. height: math.unit(6.5, "inches"),
  8135. default: true
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Splinter" },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(150, "lb"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/splinter/front.svg",
  8148. extra: 2990 / 2882,
  8149. bottom: 0.04
  8150. }
  8151. },
  8152. back: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(150, "lb"),
  8155. name: "Back",
  8156. image: {
  8157. source: "./media/characters/splinter/back.svg",
  8158. extra: 2990 / 2882,
  8159. bottom: 0.04
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(6, "feet")
  8167. },
  8168. {
  8169. name: "Macro",
  8170. height: math.unit(230, "meters"),
  8171. default: true
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "SnowGabumon" },
  8177. {
  8178. front: {
  8179. height: math.unit(4 + 10 / 12, "feet"),
  8180. weight: math.unit(480, "lb"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/snow-gabumon/front.svg",
  8184. extra: 1140 / 963,
  8185. bottom: 0.058
  8186. }
  8187. },
  8188. back: {
  8189. height: math.unit(4 + 10 / 12, "feet"),
  8190. weight: math.unit(480, "lb"),
  8191. name: "Back",
  8192. image: {
  8193. source: "./media/characters/snow-gabumon/back.svg",
  8194. extra: 1115 / 962,
  8195. bottom: 0.041
  8196. }
  8197. },
  8198. frontUndresed: {
  8199. height: math.unit(4 + 10 / 12, "feet"),
  8200. weight: math.unit(480, "lb"),
  8201. name: "Front (Undressed)",
  8202. image: {
  8203. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8204. extra: 1061 / 960,
  8205. bottom: 0.045
  8206. }
  8207. },
  8208. },
  8209. [
  8210. {
  8211. name: "Micro",
  8212. height: math.unit(1, "inch")
  8213. },
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(4 + 10 / 12, "feet"),
  8217. default: true
  8218. },
  8219. {
  8220. name: "Macro",
  8221. height: math.unit(200, "feet")
  8222. },
  8223. {
  8224. name: "Megamacro",
  8225. height: math.unit(120, "miles")
  8226. },
  8227. {
  8228. name: "Gigamacro",
  8229. height: math.unit(9800, "miles")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Moody" },
  8235. {
  8236. front: {
  8237. height: math.unit(1.7, "meters"),
  8238. weight: math.unit(140, "lb"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/moody/front.svg",
  8242. extra: 3226 / 3007,
  8243. bottom: 0.087
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Micro",
  8250. height: math.unit(1, "mm")
  8251. },
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(1.7, "meters"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Macro",
  8259. height: math.unit(80, "meters")
  8260. },
  8261. {
  8262. name: "Macro+",
  8263. height: math.unit(500, "meters")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Zyas" },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(150, "lb"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/zyas/front.svg",
  8276. extra: 1180 / 1120,
  8277. bottom: 0.045
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(10, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(500, "feet")
  8290. },
  8291. {
  8292. name: "Megamacro",
  8293. height: math.unit(5, "miles")
  8294. },
  8295. {
  8296. name: "Teramacro",
  8297. height: math.unit(150000, "miles")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Cuon" },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(150, "lb"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/cuon/front.svg",
  8310. extra: 1390 / 1320,
  8311. bottom: 0.008
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Micro",
  8318. height: math.unit(3, "inches")
  8319. },
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(18 + 9 / 12, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(360, "feet")
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(360, "miles")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Nyanuxk" },
  8337. {
  8338. front: {
  8339. height: math.unit(2.4, "meters"),
  8340. weight: math.unit(70, "kg"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/nyanuxk/front.svg",
  8344. extra: 1172 / 1084,
  8345. bottom: 0.065
  8346. }
  8347. },
  8348. side: {
  8349. height: math.unit(2.4, "meters"),
  8350. weight: math.unit(70, "kg"),
  8351. name: "Side",
  8352. image: {
  8353. source: "./media/characters/nyanuxk/side.svg",
  8354. extra: 1190 / 1132,
  8355. bottom: 0.007
  8356. }
  8357. },
  8358. back: {
  8359. height: math.unit(2.4, "meters"),
  8360. weight: math.unit(70, "kg"),
  8361. name: "Back",
  8362. image: {
  8363. source: "./media/characters/nyanuxk/back.svg",
  8364. extra: 1200 / 1141,
  8365. bottom: 0.015
  8366. }
  8367. },
  8368. foot: {
  8369. height: math.unit(0.52, "meters"),
  8370. name: "Foot",
  8371. image: {
  8372. source: "./media/characters/nyanuxk/foot.svg"
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(2, "cm")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(2.4, "meters"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Smaller Macro",
  8388. height: math.unit(120, "meters")
  8389. },
  8390. {
  8391. name: "Bigger Macro",
  8392. height: math.unit(1.2, "km")
  8393. },
  8394. {
  8395. name: "Megamacro",
  8396. height: math.unit(15, "kilometers")
  8397. },
  8398. {
  8399. name: "Gigamacro",
  8400. height: math.unit(2000, "km")
  8401. },
  8402. {
  8403. name: "Teramacro",
  8404. height: math.unit(500000, "km")
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Ailbhe" },
  8410. {
  8411. side: {
  8412. height: math.unit(6, "feet"),
  8413. name: "Side",
  8414. image: {
  8415. source: "./media/characters/ailbhe/side.svg",
  8416. extra: 757 / 464,
  8417. bottom: 0.041
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(1.07, "meters"),
  8425. default: true
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Zevulfius" },
  8431. {
  8432. front: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(120, "kg"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/zevulfius/front.svg",
  8438. extra: 965 / 903
  8439. }
  8440. },
  8441. side: {
  8442. height: math.unit(6, "feet"),
  8443. weight: math.unit(120, "kg"),
  8444. name: "Side",
  8445. image: {
  8446. source: "./media/characters/zevulfius/side.svg",
  8447. extra: 939 / 900
  8448. }
  8449. },
  8450. back: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(120, "kg"),
  8453. name: "Back",
  8454. image: {
  8455. source: "./media/characters/zevulfius/back.svg",
  8456. extra: 918 / 854,
  8457. bottom: 0.005
  8458. }
  8459. },
  8460. foot: {
  8461. height: math.unit(6 / 3.72, "feet"),
  8462. name: "Foot",
  8463. image: {
  8464. source: "./media/characters/zevulfius/foot.svg"
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(750, "meters")
  8472. },
  8473. {
  8474. name: "Megamacro",
  8475. height: math.unit(20, "km"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Gigamacro",
  8480. height: math.unit(2000, "km")
  8481. },
  8482. {
  8483. name: "Teramacro",
  8484. height: math.unit(250000, "km")
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Rikes" },
  8490. {
  8491. front: {
  8492. height: math.unit(100, "feet"),
  8493. weight: math.unit(350, "kg"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/rikes/front.svg",
  8497. extra: 1565 / 1483,
  8498. bottom: 0.017
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(100, "feet"),
  8506. default: true
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Adam Silver-Mane" },
  8512. {
  8513. anthro: {
  8514. height: math.unit(8, "feet"),
  8515. weight: math.unit(120, "kg"),
  8516. name: "Anthro",
  8517. image: {
  8518. source: "./media/characters/adam-silver-mane/anthro.svg",
  8519. extra: 5743 / 5339,
  8520. bottom: 0.07
  8521. }
  8522. },
  8523. taur: {
  8524. height: math.unit(16, "feet"),
  8525. weight: math.unit(1500, "kg"),
  8526. name: "Taur",
  8527. image: {
  8528. source: "./media/characters/adam-silver-mane/taur.svg",
  8529. extra: 1713 / 1571,
  8530. bottom: 0.01
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(8, "feet")
  8538. },
  8539. {
  8540. name: "Minimacro",
  8541. height: math.unit(80, "feet")
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(800, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Megamacro",
  8550. height: math.unit(8000, "feet")
  8551. },
  8552. {
  8553. name: "Gigamacro",
  8554. height: math.unit(800, "miles")
  8555. },
  8556. {
  8557. name: "Teramacro",
  8558. height: math.unit(80000, "miles")
  8559. },
  8560. {
  8561. name: "Celestial",
  8562. height: math.unit(8e6, "miles")
  8563. },
  8564. {
  8565. name: "Star Dragon",
  8566. height: math.unit(800000, "parsecs")
  8567. },
  8568. {
  8569. name: "Godly",
  8570. height: math.unit(800, "teraparsecs")
  8571. },
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Ky'owin" },
  8576. {
  8577. front: {
  8578. height: math.unit(6, "feet"),
  8579. weight: math.unit(150, "lb"),
  8580. name: "Front",
  8581. image: {
  8582. source: "./media/characters/ky'owin/front.svg",
  8583. extra: 3888 / 3068,
  8584. bottom: 0.015
  8585. }
  8586. },
  8587. },
  8588. [
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(6 + 8 / 12, "feet")
  8592. },
  8593. {
  8594. name: "Large",
  8595. height: math.unit(68, "feet")
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(132, "feet")
  8600. },
  8601. {
  8602. name: "Macro+",
  8603. height: math.unit(340, "feet")
  8604. },
  8605. {
  8606. name: "Macro++",
  8607. height: math.unit(680, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(1, "mile")
  8613. },
  8614. {
  8615. name: "Megamacro+",
  8616. height: math.unit(10, "miles")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Mal" },
  8622. {
  8623. front: {
  8624. height: math.unit(4, "feet"),
  8625. weight: math.unit(50, "lb"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/mal/front.svg",
  8629. extra: 785 / 724,
  8630. bottom: 0.07
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Micro",
  8637. height: math.unit(4, "inches")
  8638. },
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(4, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(200, "feet")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Jordan Deware" },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(150, "lb"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/jordan-deware/front.svg",
  8659. extra: 1191 / 1012
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Nano",
  8666. height: math.unit(0.01, "mm")
  8667. },
  8668. {
  8669. name: "Minimicro",
  8670. height: math.unit(1, "mm")
  8671. },
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(0.5, "inches")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(4, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Minimacro",
  8683. height: math.unit(40, "meters")
  8684. },
  8685. {
  8686. name: "Small Macro",
  8687. height: math.unit(400, "meters")
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(4, "miles")
  8692. },
  8693. {
  8694. name: "Megamacro",
  8695. height: math.unit(40, "miles")
  8696. },
  8697. {
  8698. name: "Megamacro+",
  8699. height: math.unit(400, "miles")
  8700. },
  8701. {
  8702. name: "Gigamacro",
  8703. height: math.unit(400000, "miles")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Kimiko" },
  8709. {
  8710. side: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(150, "lb"),
  8713. name: "Side",
  8714. image: {
  8715. source: "./media/characters/kimiko/side.svg",
  8716. extra: 600 / 358
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Normal",
  8723. height: math.unit(15, "feet"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(220, "feet")
  8729. },
  8730. {
  8731. name: "Macro+",
  8732. height: math.unit(1450, "feet")
  8733. },
  8734. {
  8735. name: "Megamacro",
  8736. height: math.unit(11500, "feet")
  8737. },
  8738. {
  8739. name: "Gigamacro",
  8740. height: math.unit(9500, "miles")
  8741. },
  8742. {
  8743. name: "Teramacro",
  8744. height: math.unit(2208005005, "miles")
  8745. },
  8746. {
  8747. name: "Examacro",
  8748. height: math.unit(2750, "parsecs")
  8749. },
  8750. {
  8751. name: "Zettamacro",
  8752. height: math.unit(101500, "parsecs")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Andrew Sleepy" },
  8758. {
  8759. front: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(70, "kg"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/andrew-sleepy/front.svg"
  8765. }
  8766. },
  8767. side: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(70, "kg"),
  8770. name: "Side",
  8771. image: {
  8772. source: "./media/characters/andrew-sleepy/side.svg"
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Micro",
  8779. height: math.unit(1, "mm"),
  8780. default: true
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Judio" },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(150, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/judio/front.svg",
  8793. extra: 1258 / 1110
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(5 + 6 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Macro",
  8804. height: math.unit(1000, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "Megamacro",
  8809. height: math.unit(10, "miles")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Nomaxice" },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(68, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/nomaxice/front.svg",
  8822. extra: 1498 / 1073,
  8823. bottom: 0.075
  8824. }
  8825. },
  8826. foot: {
  8827. height: math.unit(1.1, "feet"),
  8828. name: "Foot",
  8829. image: {
  8830. source: "./media/characters/nomaxice/foot.svg"
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Micro",
  8837. height: math.unit(8, "cm")
  8838. },
  8839. {
  8840. name: "Norm",
  8841. height: math.unit(1.82, "m")
  8842. },
  8843. {
  8844. name: "Norm+",
  8845. height: math.unit(8.8, "feet")
  8846. },
  8847. {
  8848. name: "Big",
  8849. height: math.unit(8, "meters"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(18, "meters")
  8855. },
  8856. {
  8857. name: "Macro+",
  8858. height: math.unit(88, "meters")
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Dydros" },
  8864. {
  8865. front: {
  8866. height: math.unit(12, "feet"),
  8867. weight: math.unit(1.5, "tons"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/dydros/front.svg",
  8871. extra: 863 / 800,
  8872. bottom: 0.015
  8873. }
  8874. },
  8875. back: {
  8876. height: math.unit(12, "feet"),
  8877. weight: math.unit(1.5, "tons"),
  8878. name: "Back",
  8879. image: {
  8880. source: "./media/characters/dydros/back.svg",
  8881. extra: 900 / 843,
  8882. bottom: 0.005
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(12, "feet"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Riggi" },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(100, "kg"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/riggi/front.svg",
  8903. extra: 5787 / 5303
  8904. }
  8905. },
  8906. hyper: {
  8907. height: math.unit(6 * 5 / 3, "feet"),
  8908. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8909. name: "Hyper",
  8910. image: {
  8911. source: "./media/characters/riggi/hyper.svg",
  8912. extra: 3595 / 3485
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Small Macro",
  8919. height: math.unit(50, "feet")
  8920. },
  8921. {
  8922. name: "Default",
  8923. height: math.unit(200, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Loom",
  8928. height: math.unit(10000, "feet")
  8929. },
  8930. {
  8931. name: "Cruising Altitude",
  8932. height: math.unit(30000, "feet")
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(100, "miles")
  8937. },
  8938. {
  8939. name: "Continent Sized",
  8940. height: math.unit(2800, "miles")
  8941. },
  8942. {
  8943. name: "Earth Sized",
  8944. height: math.unit(8000, "miles")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Alexi" },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(250, "lb"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/alexi/front.svg",
  8957. extra: 3483 / 3291,
  8958. bottom: 0.04
  8959. }
  8960. },
  8961. back: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(250, "lb"),
  8964. name: "Back",
  8965. image: {
  8966. source: "./media/characters/alexi/back.svg",
  8967. extra: 3533 / 3356,
  8968. bottom: 0.021
  8969. }
  8970. },
  8971. frontTransforming: {
  8972. height: math.unit(8.58, "feet"),
  8973. weight: math.unit(1300, "lb"),
  8974. name: "Transforming",
  8975. image: {
  8976. source: "./media/characters/alexi/front-transforming.svg",
  8977. extra: 437 / 409,
  8978. bottom: 19/458.66
  8979. }
  8980. },
  8981. frontTransformed: {
  8982. height: math.unit(12.5, "feet"),
  8983. weight: math.unit(4000, "lb"),
  8984. name: "Transformed",
  8985. image: {
  8986. source: "./media/characters/alexi/front-transformed.svg",
  8987. extra: 639 / 614,
  8988. bottom: 30.55/671
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Normal",
  8995. height: math.unit(3, "meters"),
  8996. default: true
  8997. },
  8998. {
  8999. name: "Minimacro",
  9000. height: math.unit(30, "meters")
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(500, "meters")
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(9000, "km")
  9009. },
  9010. {
  9011. name: "Teramacro",
  9012. height: math.unit(384000, "km")
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Kayroo" },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(150, "lb"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/kayroo/front.svg",
  9025. extra: 1153 / 1038,
  9026. bottom: 0.06
  9027. }
  9028. },
  9029. foot: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(150, "lb"),
  9032. name: "Foot",
  9033. image: {
  9034. source: "./media/characters/kayroo/foot.svg"
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(8, "feet"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Minimacro",
  9046. height: math.unit(250, "feet")
  9047. },
  9048. {
  9049. name: "Macro",
  9050. height: math.unit(2800, "feet")
  9051. },
  9052. {
  9053. name: "Megamacro",
  9054. height: math.unit(5200, "feet")
  9055. },
  9056. {
  9057. name: "Gigamacro",
  9058. height: math.unit(27000, "feet")
  9059. },
  9060. {
  9061. name: "Omega",
  9062. height: math.unit(45000, "feet")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Rhys" },
  9068. {
  9069. front: {
  9070. height: math.unit(18, "feet"),
  9071. weight: math.unit(5800, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/rhys/front.svg",
  9075. extra: 3386 / 3090,
  9076. bottom: 0.07
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(18, "feet"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Working Size",
  9088. height: math.unit(200, "feet")
  9089. },
  9090. {
  9091. name: "Demolition Size",
  9092. height: math.unit(2000, "feet")
  9093. },
  9094. {
  9095. name: "Maximum Licensed Size",
  9096. height: math.unit(5, "miles")
  9097. },
  9098. {
  9099. name: "Maximum Observed Size",
  9100. height: math.unit(10, "yottameters")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Toto" },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(250, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/toto/front.svg",
  9113. extra: 527 / 479,
  9114. bottom: 0.05
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(3, "feet")
  9122. },
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(10, "feet")
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(150, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Megamacro",
  9134. height: math.unit(1200, "feet")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "King" },
  9140. {
  9141. back: {
  9142. height: math.unit(6, "feet"),
  9143. weight: math.unit(150, "lb"),
  9144. name: "Back",
  9145. image: {
  9146. source: "./media/characters/king/back.svg"
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Micro",
  9153. height: math.unit(2, "inches")
  9154. },
  9155. {
  9156. name: "Normal",
  9157. height: math.unit(8, "feet")
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(200, "feet"),
  9162. default: true
  9163. },
  9164. {
  9165. name: "Megamacro",
  9166. height: math.unit(50, "miles")
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Cordite" },
  9172. {
  9173. anthro: {
  9174. height: math.unit(6 + 5 / 12, "feet"),
  9175. weight: math.unit(280, "lb"),
  9176. name: "Anthro",
  9177. image: {
  9178. source: "./media/characters/cordite/anthro.svg",
  9179. extra: 1986 / 1905,
  9180. bottom: 0.025
  9181. }
  9182. },
  9183. feral: {
  9184. height: math.unit(2, "feet"),
  9185. weight: math.unit(90, "lb"),
  9186. name: "Feral",
  9187. image: {
  9188. source: "./media/characters/cordite/feral.svg",
  9189. extra: 1260 / 755,
  9190. bottom: 0.05
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(6 + 5 / 12, "feet"),
  9198. default: true
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Pianostrong" },
  9204. {
  9205. front: {
  9206. height: math.unit(6, "feet"),
  9207. weight: math.unit(150, "lb"),
  9208. name: "Front",
  9209. image: {
  9210. source: "./media/characters/pianostrong/front.svg",
  9211. extra: 6577 / 6254,
  9212. bottom: 0.02
  9213. }
  9214. },
  9215. side: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(150, "lb"),
  9218. name: "Side",
  9219. image: {
  9220. source: "./media/characters/pianostrong/side.svg",
  9221. extra: 6106 / 5730
  9222. }
  9223. },
  9224. back: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(150, "lb"),
  9227. name: "Back",
  9228. image: {
  9229. source: "./media/characters/pianostrong/back.svg",
  9230. extra: 6085 / 5733,
  9231. bottom: 0.01
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(100, "feet")
  9239. },
  9240. {
  9241. name: "Macro+",
  9242. height: math.unit(300, "feet"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Macro++",
  9247. height: math.unit(1000, "feet")
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Kona" },
  9253. {
  9254. front: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(150, "lb"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/kona/front.svg",
  9260. extra: 2960 / 2629,
  9261. bottom: 0.005
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(11 + 8 / 12, "feet")
  9269. },
  9270. {
  9271. name: "Macro",
  9272. height: math.unit(850, "feet"),
  9273. default: true
  9274. },
  9275. {
  9276. name: "Macro+",
  9277. height: math.unit(1.5, "km"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Megamacro",
  9282. height: math.unit(80, "miles")
  9283. },
  9284. {
  9285. name: "Gigamacro",
  9286. height: math.unit(3500, "miles")
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Levi" },
  9292. {
  9293. side: {
  9294. height: math.unit(1.9, "meters"),
  9295. weight: math.unit(326, "kg"),
  9296. name: "Side",
  9297. image: {
  9298. source: "./media/characters/levi/side.svg",
  9299. extra: 1704 / 1334,
  9300. bottom: 0.02
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(1.9, "meters"),
  9308. default: true
  9309. },
  9310. {
  9311. name: "Macro",
  9312. height: math.unit(20, "meters")
  9313. },
  9314. {
  9315. name: "Macro+",
  9316. height: math.unit(200, "meters")
  9317. },
  9318. {
  9319. name: "Megamacro",
  9320. height: math.unit(2, "km")
  9321. },
  9322. {
  9323. name: "Megamacro+",
  9324. height: math.unit(20, "km")
  9325. },
  9326. {
  9327. name: "Gigamacro",
  9328. height: math.unit(2500, "km")
  9329. },
  9330. {
  9331. name: "Gigamacro+",
  9332. height: math.unit(120000, "km")
  9333. },
  9334. {
  9335. name: "Teramacro",
  9336. height: math.unit(7.77e6, "km")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "BMC" },
  9342. {
  9343. front: {
  9344. height: math.unit(6 + 4 / 12, "feet"),
  9345. weight: math.unit(188, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/bmc/front.svg",
  9349. extra: 1067 / 1022,
  9350. bottom: 0.047
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Human-sized",
  9357. height: math.unit(6 + 4 / 12, "feet")
  9358. },
  9359. {
  9360. name: "Small",
  9361. height: math.unit(250, "feet")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(1250, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Good Day",
  9370. height: math.unit(88, "miles")
  9371. },
  9372. {
  9373. name: "Largest Measured Size",
  9374. height: math.unit(11.2e6, "lightyears")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Sven the Kaiju" },
  9380. {
  9381. front: {
  9382. height: math.unit(20, "feet"),
  9383. weight: math.unit(2016, "kg"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/sven-the-kaiju/front.svg",
  9387. extra: 1479 / 1449,
  9388. bottom: 0.05
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Fairy",
  9395. height: math.unit(6, "inches")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(20, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Rampage",
  9404. height: math.unit(200, "feet")
  9405. },
  9406. {
  9407. name: "Archfey Forest Guardian",
  9408. height: math.unit(1, "mile")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Marik" },
  9414. {
  9415. front: {
  9416. height: math.unit(4, "meters"),
  9417. weight: math.unit(2, "tons"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/marik/front.svg",
  9421. extra: 1057 / 1003,
  9422. bottom: 0.08
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(4, "meters"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(20, "meters")
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(50, "km")
  9439. },
  9440. {
  9441. name: "Gigamacro",
  9442. height: math.unit(100, "km")
  9443. },
  9444. {
  9445. name: "Alpha Macro",
  9446. height: math.unit(7.88e7, "yottameters")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Mel" },
  9452. {
  9453. front: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(110, "lb"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/mel/front.svg",
  9459. extra: 736 / 617,
  9460. bottom: 0.017
  9461. }
  9462. },
  9463. },
  9464. [
  9465. {
  9466. name: "Pico",
  9467. height: math.unit(3, "pm")
  9468. },
  9469. {
  9470. name: "Nano",
  9471. height: math.unit(3, "nm")
  9472. },
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(0.3, "mm"),
  9476. default: true
  9477. },
  9478. {
  9479. name: "Micro+",
  9480. height: math.unit(3, "mm")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(5 + 10.5 / 12, "feet")
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Lykonous" },
  9490. {
  9491. kaiju: {
  9492. height: math.unit(1.75, "meters"),
  9493. weight: math.unit(55, "kg"),
  9494. name: "Kaiju",
  9495. image: {
  9496. source: "./media/characters/lykonous/kaiju.svg",
  9497. extra: 1055 / 946,
  9498. bottom: 0.135
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(2.5, "meters"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Kaiju Dragon",
  9510. height: math.unit(60, "meters")
  9511. },
  9512. {
  9513. name: "Mega Kaiju",
  9514. height: math.unit(120, "km")
  9515. },
  9516. {
  9517. name: "Giga Kaiju",
  9518. height: math.unit(200, "megameters")
  9519. },
  9520. {
  9521. name: "Terra Kaiju",
  9522. height: math.unit(400, "gigameters")
  9523. },
  9524. {
  9525. name: "Kaiju Dragon God",
  9526. height: math.unit(13000, "exaparsecs")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Blü" },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(150, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/blü/front.svg",
  9539. extra: 1883 / 1564,
  9540. bottom: 0.031
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(13, "feet"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Big Boi",
  9552. height: math.unit(150, "meters")
  9553. },
  9554. {
  9555. name: "Mini Stomper",
  9556. height: math.unit(300, "meters")
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(1000, "meters")
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(11000, "meters")
  9565. },
  9566. {
  9567. name: "Gigamacro",
  9568. height: math.unit(11000, "km")
  9569. },
  9570. {
  9571. name: "Teramacro",
  9572. height: math.unit(420000, "km")
  9573. },
  9574. {
  9575. name: "Examacro",
  9576. height: math.unit(120, "parsecs")
  9577. },
  9578. {
  9579. name: "God Tho",
  9580. height: math.unit(98000000000, "parsecs")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Scales" },
  9586. {
  9587. taurFront: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(200, "lb"),
  9590. name: "Taur (Front)",
  9591. image: {
  9592. source: "./media/characters/scales/taur-front.svg",
  9593. extra: 1,
  9594. bottom: 0.05
  9595. }
  9596. },
  9597. taurBack: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(200, "lb"),
  9600. name: "Taur (Back)",
  9601. image: {
  9602. source: "./media/characters/scales/taur-back.svg",
  9603. extra: 1,
  9604. bottom: 0.08
  9605. }
  9606. },
  9607. anthro: {
  9608. height: math.unit(6 * 7 / 12, "feet"),
  9609. weight: math.unit(100, "lb"),
  9610. name: "Anthro",
  9611. image: {
  9612. source: "./media/characters/scales/anthro.svg",
  9613. extra: 1,
  9614. bottom: 0.06
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(12, "feet"),
  9622. default: true
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Koragos" },
  9628. {
  9629. front: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/koragos/front.svg",
  9635. extra: 841 / 794,
  9636. bottom: 0.035
  9637. }
  9638. },
  9639. back: {
  9640. height: math.unit(6, "feet"),
  9641. weight: math.unit(150, "lb"),
  9642. name: "Back",
  9643. image: {
  9644. source: "./media/characters/koragos/back.svg",
  9645. extra: 841 / 810,
  9646. bottom: 0.022
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(6 + 11 / 12, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Macro",
  9658. height: math.unit(490, "feet")
  9659. },
  9660. {
  9661. name: "Megamacro",
  9662. height: math.unit(10, "miles")
  9663. },
  9664. {
  9665. name: "Gigamacro",
  9666. height: math.unit(50, "miles")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Xylrem" },
  9672. {
  9673. front: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(250, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/xylrem/front.svg",
  9679. extra: 3323 / 3050,
  9680. bottom: 0.065
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Micro",
  9687. height: math.unit(4, "feet")
  9688. },
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(16, "feet"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Macro",
  9696. height: math.unit(2720, "feet")
  9697. },
  9698. {
  9699. name: "Megamacro",
  9700. height: math.unit(25000, "miles")
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ikideru" },
  9706. {
  9707. front: {
  9708. height: math.unit(8, "feet"),
  9709. weight: math.unit(250, "kg"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/ikideru/front.svg",
  9713. extra: 930 / 870,
  9714. bottom: 0.087
  9715. }
  9716. },
  9717. back: {
  9718. height: math.unit(8, "feet"),
  9719. weight: math.unit(250, "kg"),
  9720. name: "Back",
  9721. image: {
  9722. source: "./media/characters/ikideru/back.svg",
  9723. extra: 919 / 852,
  9724. bottom: 0.055
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Rare",
  9731. height: math.unit(8, "feet"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Playful Loom",
  9736. height: math.unit(80, "feet")
  9737. },
  9738. {
  9739. name: "City Leaner",
  9740. height: math.unit(230, "feet")
  9741. },
  9742. {
  9743. name: "Megamacro",
  9744. height: math.unit(2500, "feet")
  9745. },
  9746. {
  9747. name: "Gigamacro",
  9748. height: math.unit(26400, "feet")
  9749. },
  9750. {
  9751. name: "Tectonic Shifter",
  9752. height: math.unit(1.7, "megameters")
  9753. },
  9754. {
  9755. name: "Planet Carer",
  9756. height: math.unit(21, "megameters")
  9757. },
  9758. {
  9759. name: "God",
  9760. height: math.unit(11157.22, "parsecs")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Neo" },
  9766. {
  9767. front: {
  9768. height: math.unit(6, "feet"),
  9769. weight: math.unit(120, "lb"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/neo/front.svg"
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(2, "inches"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Human Size",
  9784. height: math.unit(5 + 8 / 12, "feet")
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Chauncey (Chantz)" },
  9790. {
  9791. front: {
  9792. height: math.unit(13 + 10 / 12, "feet"),
  9793. weight: math.unit(5320, "lb"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/chauncey-chantz/front.svg",
  9797. extra: 1587 / 1435,
  9798. bottom: 0.02
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(13 + 10 / 12, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(45, "feet")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(250, "miles")
  9815. },
  9816. {
  9817. name: "Planetary",
  9818. height: math.unit(10000, "miles")
  9819. },
  9820. {
  9821. name: "Galactic",
  9822. height: math.unit(40000, "parsecs")
  9823. },
  9824. {
  9825. name: "Universal",
  9826. height: math.unit(1, "yottameter")
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Epifox" },
  9832. {
  9833. front: {
  9834. height: math.unit(6, "feet"),
  9835. weight: math.unit(150, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/epifox/front.svg",
  9839. extra: 1,
  9840. bottom: 0.075
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Micro",
  9847. height: math.unit(6, "inches")
  9848. },
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(12, "feet"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(3810, "feet")
  9857. },
  9858. {
  9859. name: "Megamacro",
  9860. height: math.unit(500, "miles")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Colin T." },
  9866. {
  9867. front: {
  9868. height: math.unit(1.8796, "m"),
  9869. weight: math.unit(230, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/colin-t/front.svg",
  9873. extra: 1272 / 1193,
  9874. bottom: 0.07
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Micro",
  9881. height: math.unit(0.571, "meters")
  9882. },
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(1.8796, "meters"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Tall",
  9890. height: math.unit(4, "meters")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(67.241, "meters")
  9895. },
  9896. {
  9897. name: "Megamacro",
  9898. height: math.unit(371.856, "meters")
  9899. },
  9900. {
  9901. name: "Planetary",
  9902. height: math.unit(12631.5689, "km")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Matvei" },
  9908. {
  9909. front: {
  9910. height: math.unit(1.85, "meters"),
  9911. weight: math.unit(80, "kg"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/matvei/front.svg",
  9915. extra: 614 / 594,
  9916. bottom: 0.01
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(1.85, "meters"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Quincy" },
  9930. {
  9931. front: {
  9932. height: math.unit(5 + 9 / 12, "feet"),
  9933. weight: math.unit(70, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/quincy/front.svg",
  9937. extra: 3041 / 2751
  9938. }
  9939. },
  9940. back: {
  9941. height: math.unit(5 + 9 / 12, "feet"),
  9942. weight: math.unit(70, "lb"),
  9943. name: "Back",
  9944. image: {
  9945. source: "./media/characters/quincy/back.svg",
  9946. extra: 3041 / 2751
  9947. }
  9948. },
  9949. flying: {
  9950. height: math.unit(5 + 4 / 12, "feet"),
  9951. weight: math.unit(70, "lb"),
  9952. name: "Flying",
  9953. image: {
  9954. source: "./media/characters/quincy/flying.svg",
  9955. extra: 1044 / 930
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Micro",
  9962. height: math.unit(3, "cm")
  9963. },
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(5 + 9 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Macro",
  9970. height: math.unit(200, "meters"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Megamacro",
  9975. height: math.unit(1000, "meters")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Vanrel" },
  9981. {
  9982. front: {
  9983. height: math.unit(4 + 7 / 12, "feet"),
  9984. weight: math.unit(150, "lb"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/vanrel/front.svg",
  9988. extra: 1,
  9989. bottom: 0.02
  9990. }
  9991. },
  9992. elemental: {
  9993. height: math.unit(3, "feet"),
  9994. weight: math.unit(150, "lb"),
  9995. name: "Elemental",
  9996. image: {
  9997. source: "./media/characters/vanrel/elemental.svg",
  9998. extra: 192.3/162.8,
  9999. bottom: 1.79/194.17
  10000. }
  10001. },
  10002. side: {
  10003. height: math.unit(4 + 7 / 12, "feet"),
  10004. weight: math.unit(150, "lb"),
  10005. name: "Side",
  10006. image: {
  10007. source: "./media/characters/vanrel/side.svg",
  10008. extra: 1,
  10009. bottom: 0.025
  10010. }
  10011. },
  10012. tome: {
  10013. height: math.unit(1.35, "feet"),
  10014. weight: math.unit(10, "lb"),
  10015. name: "Vanrel's Tome",
  10016. rename: true,
  10017. image: {
  10018. source: "./media/characters/vanrel/tome.svg"
  10019. }
  10020. },
  10021. beans: {
  10022. height: math.unit(0.89, "feet"),
  10023. name: "Beans",
  10024. image: {
  10025. source: "./media/characters/vanrel/beans.svg"
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(4 + 7 / 12, "feet"),
  10033. default: true
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Kuiper Vanrel" },
  10039. {
  10040. front: {
  10041. height: math.unit(7 + 5 / 12, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/kuiper-vanrel/front.svg",
  10046. extra: 1118 / 1068,
  10047. bottom: 0.09
  10048. }
  10049. },
  10050. foot: {
  10051. height: math.unit(0.55, "meters"),
  10052. name: "Foot",
  10053. image: {
  10054. source: "./media/characters/kuiper-vanrel/foot.svg",
  10055. }
  10056. },
  10057. battle: {
  10058. height: math.unit(6.824, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Battle",
  10061. image: {
  10062. source: "./media/characters/kuiper-vanrel/battle.svg",
  10063. extra: 1466/1327,
  10064. bottom: 29/1492.5
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(7 + 5 / 12, "feet"),
  10072. default: true
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Keset Vanrel" },
  10078. {
  10079. front: {
  10080. height: math.unit(8 + 5 / 12, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/keset-vanrel/front.svg",
  10085. extra: 1150 / 1084,
  10086. bottom: 0.05
  10087. }
  10088. },
  10089. hand: {
  10090. height: math.unit(0.6, "meters"),
  10091. name: "Hand",
  10092. image: {
  10093. source: "./media/characters/keset-vanrel/hand.svg"
  10094. }
  10095. },
  10096. foot: {
  10097. height: math.unit(0.94978, "meters"),
  10098. name: "Foot",
  10099. image: {
  10100. source: "./media/characters/keset-vanrel/foot.svg"
  10101. }
  10102. },
  10103. battle: {
  10104. height: math.unit(7.408, "feet"),
  10105. weight: math.unit(150, "lb"),
  10106. name: "Battle",
  10107. image: {
  10108. source: "./media/characters/keset-vanrel/battle.svg",
  10109. extra: 1890/1386,
  10110. bottom: 73.28/1970
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(8 + 5 / 12, "feet"),
  10118. default: true
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Neos" },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/neos/front.svg",
  10131. extra: 1696 / 992,
  10132. bottom: 0.14
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(54, "cm"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(100, "m")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(10, "km")
  10149. },
  10150. {
  10151. name: "Megamacro+",
  10152. height: math.unit(100, "km")
  10153. },
  10154. {
  10155. name: "Gigamacro",
  10156. height: math.unit(100, "Mm")
  10157. },
  10158. {
  10159. name: "Teramacro",
  10160. height: math.unit(100, "Gm")
  10161. },
  10162. {
  10163. name: "Examacro",
  10164. height: math.unit(100, "Em")
  10165. },
  10166. {
  10167. name: "Godly",
  10168. height: math.unit(10000, "Ym")
  10169. },
  10170. {
  10171. name: "Beyond Godly",
  10172. height: math.unit(10000000, "Ym")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Sammy Mouse" },
  10178. {
  10179. feminine: {
  10180. height: math.unit(5, "feet"),
  10181. weight: math.unit(100, "lb"),
  10182. name: "Feminine",
  10183. image: {
  10184. source: "./media/characters/sammy-mouse/feminine.svg",
  10185. extra: 2526 / 2425,
  10186. bottom: 0.123
  10187. }
  10188. },
  10189. masculine: {
  10190. height: math.unit(5, "feet"),
  10191. weight: math.unit(100, "lb"),
  10192. name: "Masculine",
  10193. image: {
  10194. source: "./media/characters/sammy-mouse/masculine.svg",
  10195. extra: 2526 / 2425,
  10196. bottom: 0.123
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Micro",
  10203. height: math.unit(5, "inches")
  10204. },
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5, "feet"),
  10208. default: true
  10209. },
  10210. {
  10211. name: "Macro",
  10212. height: math.unit(60, "feet")
  10213. },
  10214. ]
  10215. ))
  10216. characterMakers.push(() => makeCharacter(
  10217. { name: "Kole" },
  10218. {
  10219. front: {
  10220. height: math.unit(4, "feet"),
  10221. weight: math.unit(50, "lb"),
  10222. name: "Front",
  10223. image: {
  10224. source: "./media/characters/kole/front.svg",
  10225. extra: 1423 / 1303,
  10226. bottom: 0.025
  10227. }
  10228. },
  10229. back: {
  10230. height: math.unit(4, "feet"),
  10231. weight: math.unit(50, "lb"),
  10232. name: "Back",
  10233. image: {
  10234. source: "./media/characters/kole/back.svg",
  10235. extra: 1426 / 1280,
  10236. bottom: 0.02
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(4, "feet"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Rufran" },
  10250. {
  10251. front: {
  10252. height: math.unit(2 + 6 / 12, "feet"),
  10253. weight: math.unit(20, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/rufran/front.svg",
  10257. extra: 2041 / 1839,
  10258. bottom: 0.055
  10259. }
  10260. },
  10261. back: {
  10262. height: math.unit(2 + 6 / 12, "feet"),
  10263. weight: math.unit(20, "lb"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/rufran/back.svg",
  10267. extra: 2054 / 1839,
  10268. bottom: 0.01
  10269. }
  10270. },
  10271. hand: {
  10272. height: math.unit(0.2166, "meters"),
  10273. name: "Hand",
  10274. image: {
  10275. source: "./media/characters/rufran/hand.svg"
  10276. }
  10277. },
  10278. foot: {
  10279. height: math.unit(0.185, "meters"),
  10280. name: "Foot",
  10281. image: {
  10282. source: "./media/characters/rufran/foot.svg"
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Micro",
  10289. height: math.unit(1, "inch")
  10290. },
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(2 + 6 / 12, "feet"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "Big",
  10298. height: math.unit(60, "feet")
  10299. },
  10300. {
  10301. name: "Macro",
  10302. height: math.unit(325, "feet")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Chip" },
  10308. {
  10309. front: {
  10310. height: math.unit(0.3, "meters"),
  10311. weight: math.unit(3.5, "kg"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/chip/front.svg",
  10315. extra: 748 / 674
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Micro",
  10322. height: math.unit(1, "inch"),
  10323. default: true
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Torvid" },
  10329. {
  10330. side: {
  10331. height: math.unit(2.3, "meters"),
  10332. weight: math.unit(3500, "lb"),
  10333. name: "Side",
  10334. image: {
  10335. source: "./media/characters/torvid/side.svg",
  10336. extra: 1972 / 722,
  10337. bottom: 0.035
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(2.3, "meters"),
  10345. default: true
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Susan" },
  10351. {
  10352. front: {
  10353. height: math.unit(2, "meters"),
  10354. weight: math.unit(150.5, "kg"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/susan/front.svg",
  10358. extra: 693 / 635,
  10359. bottom: 0.05
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(505, "miles"),
  10367. default: true
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Raindrops" },
  10373. {
  10374. front: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(150, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/raindrops/front.svg",
  10380. extra: 2655 / 2461,
  10381. bottom: 0.02
  10382. }
  10383. },
  10384. back: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(150, "lb"),
  10387. name: "Back",
  10388. image: {
  10389. source: "./media/characters/raindrops/back.svg",
  10390. extra: 2574 / 2400,
  10391. bottom: 0.03
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Micro",
  10398. height: math.unit(6, "inches")
  10399. },
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(6 + 2 / 12, "feet")
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(131, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Megamacro",
  10411. height: math.unit(15, "miles")
  10412. },
  10413. {
  10414. name: "Gigamacro",
  10415. height: math.unit(4000, "miles")
  10416. },
  10417. {
  10418. name: "Teramacro",
  10419. height: math.unit(315000, "miles")
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Tezwa" },
  10425. {
  10426. front: {
  10427. height: math.unit(2.794, "meters"),
  10428. weight: math.unit(325, "kg"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/tezwa/front.svg",
  10432. extra: 2083 / 1906,
  10433. bottom: 0.031
  10434. }
  10435. },
  10436. foot: {
  10437. height: math.unit(0.687, "meters"),
  10438. name: "Foot",
  10439. image: {
  10440. source: "./media/characters/tezwa/foot.svg"
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(9 + 2 / 12, "feet"),
  10448. default: true
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Typhus" },
  10454. {
  10455. front: {
  10456. height: math.unit(58, "feet"),
  10457. weight: math.unit(89000, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/typhus/front.svg",
  10461. extra: 816 / 800,
  10462. bottom: 0.065
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(58, "feet"),
  10470. default: true
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Lyra Von Wulf" },
  10476. {
  10477. front: {
  10478. height: math.unit(12, "feet"),
  10479. weight: math.unit(6, "tonnes"),
  10480. name: "Front",
  10481. image: {
  10482. source: "./media/characters/lyra-von-wulf/front.svg",
  10483. extra: 1,
  10484. bottom: 0.10
  10485. }
  10486. },
  10487. frontMecha: {
  10488. height: math.unit(12, "feet"),
  10489. weight: math.unit(12, "tonnes"),
  10490. name: "Front (Mecha)",
  10491. image: {
  10492. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10493. extra: 1,
  10494. bottom: 0.042
  10495. }
  10496. },
  10497. maw: {
  10498. height: math.unit(2.2, "feet"),
  10499. name: "Maw",
  10500. image: {
  10501. source: "./media/characters/lyra-von-wulf/maw.svg"
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(12, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Classic",
  10513. height: math.unit(50, "feet")
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(500, "feet")
  10518. },
  10519. {
  10520. name: "Megamacro",
  10521. height: math.unit(1, "mile")
  10522. },
  10523. {
  10524. name: "Gigamacro",
  10525. height: math.unit(400, "miles")
  10526. },
  10527. {
  10528. name: "Teramacro",
  10529. height: math.unit(22000, "miles")
  10530. },
  10531. {
  10532. name: "Solarmacro",
  10533. height: math.unit(8600000, "miles")
  10534. },
  10535. {
  10536. name: "Galactic",
  10537. height: math.unit(1057000, "lightyears")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Dixon" },
  10543. {
  10544. front: {
  10545. height: math.unit(6 + 10 / 12, "feet"),
  10546. weight: math.unit(150, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/dixon/front.svg",
  10550. extra: 3361 / 3209,
  10551. bottom: 0.01
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(6 + 10 / 12, "feet"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "Big",
  10563. height: math.unit(12, "meters")
  10564. },
  10565. {
  10566. name: "Macro",
  10567. height: math.unit(500, "meters")
  10568. },
  10569. {
  10570. name: "Megamacro",
  10571. height: math.unit(2, "km")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Kauko" },
  10577. {
  10578. front: {
  10579. height: math.unit(185, "cm"),
  10580. weight: math.unit(68, "kg"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/kauko/front.svg",
  10584. extra: 1455 / 1421,
  10585. bottom: 0.03
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(185, "cm"),
  10590. weight: math.unit(68, "kg"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/kauko/back.svg",
  10594. extra: 1455 / 1421,
  10595. bottom: 0.004
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(185, "cm"),
  10603. default: true
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Varg" },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(150, "kg"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/varg/front.svg",
  10616. extra: 1108 / 1018,
  10617. bottom: 0.0375
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(5, "meters")
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(200, "meters")
  10629. },
  10630. {
  10631. name: "Megamacro",
  10632. height: math.unit(20, "kilometers")
  10633. },
  10634. {
  10635. name: "True Size",
  10636. height: math.unit(211, "km"),
  10637. default: true
  10638. },
  10639. {
  10640. name: "Gigamacro",
  10641. height: math.unit(1000, "km")
  10642. },
  10643. {
  10644. name: "Gigamacro+",
  10645. height: math.unit(8000, "km")
  10646. },
  10647. {
  10648. name: "Teramacro",
  10649. height: math.unit(1000000, "km")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Dayza" },
  10655. {
  10656. front: {
  10657. height: math.unit(7 + 7 / 12, "feet"),
  10658. weight: math.unit(267, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/dayza/front.svg",
  10662. extra: 1262 / 1200,
  10663. bottom: 0.035
  10664. }
  10665. },
  10666. side: {
  10667. height: math.unit(7 + 7 / 12, "feet"),
  10668. weight: math.unit(267, "lb"),
  10669. name: "Side",
  10670. image: {
  10671. source: "./media/characters/dayza/side.svg",
  10672. extra: 1295 / 1245,
  10673. bottom: 0.05
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(7 + 7 / 12, "feet"),
  10678. weight: math.unit(267, "lb"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/dayza/back.svg",
  10682. extra: 1241 / 1170
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(7 + 7 / 12, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Macro",
  10694. height: math.unit(155, "feet")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Xanthos" },
  10700. {
  10701. front: {
  10702. height: math.unit(6 + 5 / 12, "feet"),
  10703. weight: math.unit(160, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/xanthos/front.svg",
  10707. extra: 1,
  10708. bottom: 0.04
  10709. }
  10710. },
  10711. back: {
  10712. height: math.unit(6 + 5 / 12, "feet"),
  10713. weight: math.unit(160, "lb"),
  10714. name: "Back",
  10715. image: {
  10716. source: "./media/characters/xanthos/back.svg",
  10717. extra: 1,
  10718. bottom: 0.03
  10719. }
  10720. },
  10721. hand: {
  10722. height: math.unit(0.928, "feet"),
  10723. name: "Hand",
  10724. image: {
  10725. source: "./media/characters/xanthos/hand.svg"
  10726. }
  10727. },
  10728. foot: {
  10729. height: math.unit(1.286, "feet"),
  10730. name: "Foot",
  10731. image: {
  10732. source: "./media/characters/xanthos/foot.svg"
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(6 + 5 / 12, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Normal+",
  10744. height: math.unit(6, "meters")
  10745. },
  10746. {
  10747. name: "Macro",
  10748. height: math.unit(40, "feet")
  10749. },
  10750. {
  10751. name: "Macro+",
  10752. height: math.unit(200, "meters")
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(20, "km")
  10757. },
  10758. {
  10759. name: "Megamacro+",
  10760. height: math.unit(100, "km")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Grynn" },
  10766. {
  10767. front: {
  10768. height: math.unit(6 + 3 / 12, "feet"),
  10769. weight: math.unit(215, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/grynn/front.svg",
  10773. extra: 4627 / 4209,
  10774. bottom: 0.047
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Micro",
  10781. height: math.unit(6, "inches")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(6 + 3 / 12, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Big",
  10790. height: math.unit(104, "feet")
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(944, "feet")
  10795. },
  10796. {
  10797. name: "Macro+",
  10798. height: math.unit(9480, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(78752, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro+",
  10806. height: math.unit(630128, "feet")
  10807. },
  10808. {
  10809. name: "Megamacro++",
  10810. height: math.unit(3150695, "feet")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Mocha Aura" },
  10816. {
  10817. front: {
  10818. height: math.unit(7 + 5 / 12, "feet"),
  10819. weight: math.unit(450, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/mocha-aura/front.svg",
  10823. extra: 1907 / 1817,
  10824. bottom: 0.04
  10825. }
  10826. },
  10827. back: {
  10828. height: math.unit(7 + 5 / 12, "feet"),
  10829. weight: math.unit(450, "lb"),
  10830. name: "Back",
  10831. image: {
  10832. source: "./media/characters/mocha-aura/back.svg",
  10833. extra: 1900 / 1825,
  10834. bottom: 0.045
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Nano",
  10841. height: math.unit(1, "nm")
  10842. },
  10843. {
  10844. name: "Megamicro",
  10845. height: math.unit(1, "mm")
  10846. },
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(3, "inches")
  10850. },
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(7 + 5 / 12, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(30, "feet")
  10859. },
  10860. {
  10861. name: "Megamacro",
  10862. height: math.unit(3500, "feet")
  10863. },
  10864. {
  10865. name: "Teramacro",
  10866. height: math.unit(500000, "miles")
  10867. },
  10868. {
  10869. name: "Petamacro",
  10870. height: math.unit(50000000000000000, "parsecs")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Ilisha Devya" },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(150, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/ilisha-devya/front.svg",
  10883. extra: 1,
  10884. bottom: 0.175
  10885. }
  10886. },
  10887. back: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(150, "lb"),
  10890. name: "Back",
  10891. image: {
  10892. source: "./media/characters/ilisha-devya/back.svg",
  10893. extra: 1,
  10894. bottom: 0.015
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Macro",
  10901. height: math.unit(500, "feet"),
  10902. default: true
  10903. },
  10904. {
  10905. name: "Megamacro",
  10906. height: math.unit(10, "miles")
  10907. },
  10908. {
  10909. name: "Gigamacro",
  10910. height: math.unit(100000, "miles")
  10911. },
  10912. {
  10913. name: "Examacro",
  10914. height: math.unit(1e9, "lightyears")
  10915. },
  10916. {
  10917. name: "Omniversal",
  10918. height: math.unit(1e33, "lightyears")
  10919. },
  10920. {
  10921. name: "Beyond Infinite",
  10922. height: math.unit(1e100, "lightyears")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Mira" },
  10928. {
  10929. Side: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Side",
  10933. image: {
  10934. source: "./media/characters/mira/side.svg",
  10935. extra: 900 / 799,
  10936. bottom: 0.02
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Human Size",
  10943. height: math.unit(6, "feet")
  10944. },
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(100, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(10, "miles")
  10953. },
  10954. {
  10955. name: "Gigamacro",
  10956. height: math.unit(25000, "miles")
  10957. },
  10958. {
  10959. name: "Teramacro",
  10960. height: math.unit(300, "AU")
  10961. },
  10962. {
  10963. name: "Full Size",
  10964. height: math.unit(4.5e10, "lightyears")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Holly" },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/holly/front.svg",
  10977. extra: 639 / 606
  10978. }
  10979. },
  10980. back: {
  10981. height: math.unit(6, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Back",
  10984. image: {
  10985. source: "./media/characters/holly/back.svg",
  10986. extra: 623 / 598
  10987. }
  10988. },
  10989. frontWorking: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Front (Working)",
  10993. image: {
  10994. source: "./media/characters/holly/front-working.svg",
  10995. extra: 607 / 577,
  10996. bottom: 0.048
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(12 + 3 / 12, "feet"),
  11004. default: true
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Porter" },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/porter/front.svg",
  11017. extra: 1,
  11018. bottom: 0.01
  11019. }
  11020. },
  11021. frontRobes: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front (Robes)",
  11025. image: {
  11026. source: "./media/characters/porter/front-robes.svg",
  11027. extra: 1.01,
  11028. bottom: 0.01
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(11 + 9 / 12, "feet"),
  11036. default: true
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Lucy" },
  11042. {
  11043. legendary: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Legendary",
  11047. image: {
  11048. source: "./media/characters/lucy/legendary.svg",
  11049. extra: 1355 / 1100,
  11050. bottom: 0.045
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Legendary",
  11057. height: math.unit(86882 * 2, "miles"),
  11058. default: true
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Drusilla" },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(150, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/drusilla/front.svg",
  11071. extra: 678 / 635,
  11072. bottom: 0.03
  11073. }
  11074. },
  11075. back: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(150, "lb"),
  11078. name: "Back",
  11079. image: {
  11080. source: "./media/characters/drusilla/back.svg",
  11081. extra: 678 / 635,
  11082. bottom: 0.005
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Macro",
  11089. height: math.unit(100, "feet")
  11090. },
  11091. {
  11092. name: "Canon Height",
  11093. height: math.unit(2000, "feet"),
  11094. default: true
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Renard Thatch" },
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(180, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/renard-thatch/front.svg",
  11107. extra: 2411 / 2275,
  11108. bottom: 0.01
  11109. }
  11110. },
  11111. frontPosing: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(180, "lb"),
  11114. name: "Front (Posing)",
  11115. image: {
  11116. source: "./media/characters/renard-thatch/front-posing.svg",
  11117. extra: 2381 / 2261,
  11118. bottom: 0.01
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(180, "lb"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/renard-thatch/back.svg",
  11127. extra: 2428 / 2288
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Micro",
  11134. height: math.unit(3, "inches")
  11135. },
  11136. {
  11137. name: "Default",
  11138. height: math.unit(6, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Macro",
  11143. height: math.unit(75, "feet")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Sekvra" },
  11149. {
  11150. front: {
  11151. height: math.unit(1450, "feet"),
  11152. weight: math.unit(1.21e6, "tons"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/sekvra/front.svg",
  11156. extra: 1,
  11157. bottom: 0.03
  11158. }
  11159. },
  11160. frontClothed: {
  11161. height: math.unit(1450, "feet"),
  11162. weight: math.unit(1.21e6, "tons"),
  11163. name: "Front (Clothed)",
  11164. image: {
  11165. source: "./media/characters/sekvra/front-clothed.svg",
  11166. extra: 1,
  11167. bottom: 0.03
  11168. }
  11169. },
  11170. side: {
  11171. height: math.unit(1450, "feet"),
  11172. weight: math.unit(1.21e6, "tons"),
  11173. name: "Side",
  11174. image: {
  11175. source: "./media/characters/sekvra/side.svg",
  11176. extra: 1,
  11177. bottom: 0.025
  11178. }
  11179. },
  11180. back: {
  11181. height: math.unit(1450, "feet"),
  11182. weight: math.unit(1.21e6, "tons"),
  11183. name: "Back",
  11184. image: {
  11185. source: "./media/characters/sekvra/back.svg",
  11186. extra: 1,
  11187. bottom: 0.005
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(1450, "feet"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(15000, "feet")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Carmine" },
  11205. {
  11206. front: {
  11207. height: math.unit(6, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/carmine/front.svg",
  11212. extra: 1,
  11213. bottom: 0.035
  11214. }
  11215. },
  11216. frontArmor: {
  11217. height: math.unit(6, "feet"),
  11218. weight: math.unit(150, "lb"),
  11219. name: "Front (Armor)",
  11220. image: {
  11221. source: "./media/characters/carmine/front-armor.svg",
  11222. extra: 1,
  11223. bottom: 0.035
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Large",
  11230. height: math.unit(1, "mile")
  11231. },
  11232. {
  11233. name: "Huge",
  11234. height: math.unit(40, "miles"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Colossal",
  11239. height: math.unit(2500, "miles")
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "Elyssia" },
  11245. {
  11246. front: {
  11247. height: math.unit(6, "feet"),
  11248. weight: math.unit(150, "lb"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/elyssia/front.svg",
  11252. extra: 2201 / 2035,
  11253. bottom: 0.05
  11254. }
  11255. },
  11256. frontClothed: {
  11257. height: math.unit(6, "feet"),
  11258. weight: math.unit(150, "lb"),
  11259. name: "Front (Clothed)",
  11260. image: {
  11261. source: "./media/characters/elyssia/front-clothed.svg",
  11262. extra: 2201 / 2035,
  11263. bottom: 0.05
  11264. }
  11265. },
  11266. back: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(150, "lb"),
  11269. name: "Back",
  11270. image: {
  11271. source: "./media/characters/elyssia/back.svg",
  11272. extra: 2201 / 2035,
  11273. bottom: 0.013
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Smaller",
  11280. height: math.unit(150, "feet")
  11281. },
  11282. {
  11283. name: "Standard",
  11284. height: math.unit(1400, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Distracted",
  11289. height: math.unit(15000, "feet")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Geno Maxwell" },
  11295. {
  11296. front: {
  11297. height: math.unit(7 + 4 / 12, "feet"),
  11298. weight: math.unit(500, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/geno-maxwell/front.svg",
  11302. extra: 2207 / 2040,
  11303. bottom: 0.015
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Micro",
  11310. height: math.unit(3, "inches")
  11311. },
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(7 + 4 / 12, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(220, "feet")
  11320. },
  11321. {
  11322. name: "Megamacro",
  11323. height: math.unit(11, "miles")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Regena Maxwell" },
  11329. {
  11330. front: {
  11331. height: math.unit(7 + 4 / 12, "feet"),
  11332. weight: math.unit(500, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/regena-maxwell/front.svg",
  11336. extra: 3115 / 2770,
  11337. bottom: 0.02
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Normal",
  11344. height: math.unit(7 + 4 / 12, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(220, "feet")
  11350. },
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(11, "miles")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "XGlidingDragonX" },
  11359. {
  11360. front: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(150, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11366. extra: 860 / 690,
  11367. bottom: 0.03
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(1.7, "meters"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Quilly" },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/quilly/front.svg",
  11388. extra: 890 / 776
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Gigamacro",
  11395. height: math.unit(404090, "miles"),
  11396. default: true
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Tempest" },
  11402. {
  11403. front: {
  11404. height: math.unit(7 + 8 / 12, "feet"),
  11405. weight: math.unit(350, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/tempest/front.svg",
  11409. extra: 1175 / 1086,
  11410. bottom: 0.02
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(7 + 8 / 12, "feet"),
  11418. default: true
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Rodger" },
  11424. {
  11425. side: {
  11426. height: math.unit(4 + 5 / 12, "feet"),
  11427. weight: math.unit(80, "lb"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/rodger/side.svg",
  11431. extra: 1235 / 1118
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Micro",
  11438. height: math.unit(1, "inch")
  11439. },
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(4 + 5 / 12, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(120, "feet")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Danyel" },
  11453. {
  11454. front: {
  11455. height: math.unit(6, "feet"),
  11456. weight: math.unit(150, "lb"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/danyel/front.svg",
  11460. extra: 1185 / 1123,
  11461. bottom: 0.05
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Shrunken",
  11468. height: math.unit(0.5, "mm")
  11469. },
  11470. {
  11471. name: "Micro",
  11472. height: math.unit(1, "mm"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Upsized",
  11477. height: math.unit(5 + 5 / 12, "feet")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Vivian Bijoux" },
  11483. {
  11484. front: {
  11485. height: math.unit(5 + 6 / 12, "feet"),
  11486. weight: math.unit(200, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/vivian-bijoux/front.svg",
  11490. extra: 1,
  11491. bottom: 0.072
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(5 + 6 / 12, "feet"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Bad Dream",
  11503. height: math.unit(500, "feet")
  11504. },
  11505. {
  11506. name: "Nightmare",
  11507. height: math.unit(500, "miles")
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "Zeta" },
  11513. {
  11514. front: {
  11515. height: math.unit(6 + 1 / 12, "feet"),
  11516. weight: math.unit(260, "lb"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/zeta/front.svg",
  11520. extra: 1968 / 1889,
  11521. bottom: 0.06
  11522. }
  11523. },
  11524. back: {
  11525. height: math.unit(6 + 1 / 12, "feet"),
  11526. weight: math.unit(260, "lb"),
  11527. name: "Back",
  11528. image: {
  11529. source: "./media/characters/zeta/back.svg",
  11530. extra: 1944 / 1858,
  11531. bottom: 0.03
  11532. }
  11533. },
  11534. hand: {
  11535. height: math.unit(1.112, "feet"),
  11536. name: "Hand",
  11537. image: {
  11538. source: "./media/characters/zeta/hand.svg"
  11539. }
  11540. },
  11541. foot: {
  11542. height: math.unit(1.48, "feet"),
  11543. name: "Foot",
  11544. image: {
  11545. source: "./media/characters/zeta/foot.svg"
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Micro",
  11552. height: math.unit(6, "inches")
  11553. },
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(6 + 1 / 12, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(20, "feet")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Jamie Larsen" },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(150, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/jamie-larsen/front.svg",
  11574. extra: 962 / 933,
  11575. bottom: 0.02
  11576. }
  11577. },
  11578. back: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Back",
  11582. image: {
  11583. source: "./media/characters/jamie-larsen/back.svg",
  11584. extra: 997 / 946
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Macro",
  11591. height: math.unit(28 + 7 / 12, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro+",
  11596. height: math.unit(180, "feet")
  11597. },
  11598. {
  11599. name: "Megamacro",
  11600. height: math.unit(10, "miles")
  11601. },
  11602. {
  11603. name: "Gigamacro",
  11604. height: math.unit(200000, "miles")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Vance" },
  11610. {
  11611. front: {
  11612. height: math.unit(6, "feet"),
  11613. weight: math.unit(120, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/vance/front.svg",
  11617. extra: 1980 / 1890,
  11618. bottom: 0.09
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(6, "feet"),
  11623. weight: math.unit(120, "lb"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/vance/back.svg",
  11627. extra: 2081 / 1994,
  11628. bottom: 0.014
  11629. }
  11630. },
  11631. hand: {
  11632. height: math.unit(0.88, "feet"),
  11633. name: "Hand",
  11634. image: {
  11635. source: "./media/characters/vance/hand.svg"
  11636. }
  11637. },
  11638. foot: {
  11639. height: math.unit(0.64, "feet"),
  11640. name: "Foot",
  11641. image: {
  11642. source: "./media/characters/vance/foot.svg"
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Small",
  11649. height: math.unit(90, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(100, "meters")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(15, "miles")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Xochitl" },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(180, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/xochitl/front.svg",
  11671. extra: 2297 / 2261,
  11672. bottom: 0.065
  11673. }
  11674. },
  11675. back: {
  11676. height: math.unit(6, "feet"),
  11677. weight: math.unit(180, "lb"),
  11678. name: "Back",
  11679. image: {
  11680. source: "./media/characters/xochitl/back.svg",
  11681. extra: 2386 / 2354,
  11682. bottom: 0.01
  11683. }
  11684. },
  11685. foot: {
  11686. height: math.unit(6 / 5 * 1.15, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/xochitl/foot.svg"
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(80, "feet")
  11698. },
  11699. {
  11700. name: "Macro+",
  11701. height: math.unit(400, "feet"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Gigamacro",
  11706. height: math.unit(80000, "miles")
  11707. },
  11708. {
  11709. name: "Gigamacro+",
  11710. height: math.unit(400000, "miles")
  11711. },
  11712. {
  11713. name: "Teramacro",
  11714. height: math.unit(300, "AU")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Vincent" },
  11720. {
  11721. front: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/vincent/front.svg",
  11727. extra: 1130 / 1080,
  11728. bottom: 0.055
  11729. }
  11730. },
  11731. beak: {
  11732. height: math.unit(6 * 0.1, "feet"),
  11733. name: "Beak",
  11734. image: {
  11735. source: "./media/characters/vincent/beak.svg"
  11736. }
  11737. },
  11738. hand: {
  11739. height: math.unit(6 * 0.85, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Hand",
  11742. image: {
  11743. source: "./media/characters/vincent/hand.svg"
  11744. }
  11745. },
  11746. foot: {
  11747. height: math.unit(6 * 0.19, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Foot",
  11750. image: {
  11751. source: "./media/characters/vincent/foot.svg"
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Base",
  11758. height: math.unit(6 + 5 / 12, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(300, "feet")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(2, "miles")
  11768. },
  11769. {
  11770. name: "Gigamacro",
  11771. height: math.unit(1000, "miles")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Jay" },
  11777. {
  11778. front: {
  11779. height: math.unit(6 + 2 / 12, "feet"),
  11780. weight: math.unit(265, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/jay/front.svg",
  11784. extra: 1510 / 1430,
  11785. bottom: 0.042
  11786. }
  11787. },
  11788. back: {
  11789. height: math.unit(6 + 2 / 12, "feet"),
  11790. weight: math.unit(265, "lb"),
  11791. name: "Back",
  11792. image: {
  11793. source: "./media/characters/jay/back.svg",
  11794. extra: 1510 / 1430,
  11795. bottom: 0.025
  11796. }
  11797. },
  11798. clothed: {
  11799. height: math.unit(6 + 2 / 12, "feet"),
  11800. weight: math.unit(265, "lb"),
  11801. name: "Front (Clothed)",
  11802. image: {
  11803. source: "./media/characters/jay/clothed.svg",
  11804. extra: 744 / 699,
  11805. bottom: 0.043
  11806. }
  11807. },
  11808. head: {
  11809. height: math.unit(1.772, "feet"),
  11810. name: "Head",
  11811. image: {
  11812. source: "./media/characters/jay/head.svg"
  11813. }
  11814. },
  11815. sizeRay: {
  11816. height: math.unit(1.331, "feet"),
  11817. name: "Size Ray",
  11818. image: {
  11819. source: "./media/characters/jay/size-ray.svg"
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Micro",
  11826. height: math.unit(1, "inch")
  11827. },
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(6 + 2 / 12, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(1, "mile")
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(100, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Coatl" },
  11845. {
  11846. front: {
  11847. height: math.unit(2, "meters"),
  11848. weight: math.unit(500, "kg"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/coatl/front.svg",
  11852. extra: 3948 / 3500,
  11853. bottom: 0.082
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(4, "meters")
  11861. },
  11862. {
  11863. name: "Macro",
  11864. height: math.unit(100, "meters"),
  11865. default: true
  11866. },
  11867. {
  11868. name: "Macro+",
  11869. height: math.unit(300, "meters")
  11870. },
  11871. {
  11872. name: "Megamacro",
  11873. height: math.unit(3, "gigameters")
  11874. },
  11875. {
  11876. name: "Megamacro+",
  11877. height: math.unit(300, "terameters")
  11878. },
  11879. {
  11880. name: "Megamacro++",
  11881. height: math.unit(3, "lightyears")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Shiroryu" },
  11887. {
  11888. front: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(50, "kg"),
  11891. name: "front",
  11892. image: {
  11893. source: "./media/characters/shiroryu/front.svg",
  11894. extra: 1990 / 1935
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Mortal Mingling",
  11901. height: math.unit(3, "meters")
  11902. },
  11903. {
  11904. name: "Kaiju-ish",
  11905. height: math.unit(250, "meters")
  11906. },
  11907. {
  11908. name: "Somewhat Godly",
  11909. height: math.unit(400, "km"),
  11910. default: true
  11911. },
  11912. {
  11913. name: "Planetary",
  11914. height: math.unit(300, "megameters")
  11915. },
  11916. {
  11917. name: "Galaxy-dwarfing",
  11918. height: math.unit(450, "kiloparsecs")
  11919. },
  11920. {
  11921. name: "Universe Eater",
  11922. height: math.unit(150, "gigaparsecs")
  11923. },
  11924. {
  11925. name: "Almost Immeasurable",
  11926. height: math.unit(1.3e266, "yottaparsecs")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Umeko" },
  11932. {
  11933. front: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(150, "lb"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/umeko/front.svg",
  11939. extra: 1,
  11940. bottom: 0.019
  11941. }
  11942. },
  11943. frontArmored: {
  11944. height: math.unit(6, "feet"),
  11945. weight: math.unit(150, "lb"),
  11946. name: "Front (Armored)",
  11947. image: {
  11948. source: "./media/characters/umeko/front-armored.svg",
  11949. extra: 1,
  11950. bottom: 0.021
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(220, "feet"),
  11958. default: true
  11959. },
  11960. {
  11961. name: "Guardian Dragon",
  11962. height: math.unit(50, "miles")
  11963. },
  11964. {
  11965. name: "Cosmic",
  11966. height: math.unit(800000, "miles")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Cassidy" },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/cassidy/front.svg",
  11979. extra: 1,
  11980. bottom: 0.043
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Canon Height",
  11987. height: math.unit(120, "feet"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Macro+",
  11992. height: math.unit(400, "feet")
  11993. },
  11994. {
  11995. name: "Macro++",
  11996. height: math.unit(4000, "feet")
  11997. },
  11998. {
  11999. name: "Megamacro",
  12000. height: math.unit(3, "miles")
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Isaac" },
  12006. {
  12007. front: {
  12008. height: math.unit(6, "feet"),
  12009. weight: math.unit(150, "lb"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/isaac/front.svg",
  12013. extra: 896 / 815,
  12014. bottom: 0.11
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Human Size",
  12021. height: math.unit(8, "feet"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(400, "feet")
  12027. },
  12028. {
  12029. name: "Megamacro",
  12030. height: math.unit(50, "miles")
  12031. },
  12032. {
  12033. name: "Canon Height",
  12034. height: math.unit(200, "AU")
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Sleekit" },
  12040. {
  12041. front: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(72, "kg"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/sleekit/front.svg",
  12047. extra: 4693 / 4487,
  12048. bottom: 0.012
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Minimum Height",
  12055. height: math.unit(10, "meters")
  12056. },
  12057. {
  12058. name: "Smaller",
  12059. height: math.unit(25, "meters")
  12060. },
  12061. {
  12062. name: "Larger",
  12063. height: math.unit(38, "meters"),
  12064. default: true
  12065. },
  12066. {
  12067. name: "Maximum height",
  12068. height: math.unit(100, "meters")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Nillia" },
  12074. {
  12075. front: {
  12076. height: math.unit(6, "feet"),
  12077. weight: math.unit(150, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/nillia/front.svg",
  12081. extra: 2195 / 2037,
  12082. bottom: 0.005
  12083. }
  12084. },
  12085. back: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(150, "lb"),
  12088. name: "Back",
  12089. image: {
  12090. source: "./media/characters/nillia/back.svg",
  12091. extra: 2195 / 2037,
  12092. bottom: 0.005
  12093. }
  12094. },
  12095. },
  12096. [
  12097. {
  12098. name: "Canon Height",
  12099. height: math.unit(489, "feet"),
  12100. default: true
  12101. }
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Mesmyriza" },
  12106. {
  12107. front: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Front",
  12111. image: {
  12112. source: "./media/characters/mesmyriza/front.svg",
  12113. extra: 2067 / 1784,
  12114. bottom: 0.035
  12115. }
  12116. },
  12117. foot: {
  12118. height: math.unit(6 / (250 / 35), "feet"),
  12119. name: "Foot",
  12120. image: {
  12121. source: "./media/characters/mesmyriza/foot.svg"
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(457, "meters"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Megamacro",
  12133. height: math.unit(8, "megameters")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Saudade" },
  12139. {
  12140. front: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(250, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/saudade/front.svg",
  12146. extra: 1172 / 1139,
  12147. bottom: 0.035
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Micro",
  12154. height: math.unit(3, "inches")
  12155. },
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(6, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Macro",
  12163. height: math.unit(50, "feet")
  12164. },
  12165. {
  12166. name: "Megamacro",
  12167. height: math.unit(2800, "feet")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Keireer" },
  12173. {
  12174. front: {
  12175. height: math.unit(5 + 4 / 12, "feet"),
  12176. weight: math.unit(100, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/keireer/front.svg",
  12180. extra: 716 / 666,
  12181. bottom: 0.05
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(5 + 4 / 12, "feet"),
  12189. default: true
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Mirja" },
  12195. {
  12196. front: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(90, "kg"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/mirja/front.svg",
  12202. extra: 1789 / 1683,
  12203. bottom: 0.05
  12204. }
  12205. },
  12206. frontDressed: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(90, "lb"),
  12209. name: "Front (Dressed)",
  12210. image: {
  12211. source: "./media/characters/mirja/front-dressed.svg",
  12212. extra: 1789 / 1683,
  12213. bottom: 0.05
  12214. }
  12215. },
  12216. back: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(90, "lb"),
  12219. name: "Back",
  12220. image: {
  12221. source: "./media/characters/mirja/back.svg",
  12222. extra: 953 / 917,
  12223. bottom: 0.017
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "\"Incognito\"",
  12230. height: math.unit(3, "meters")
  12231. },
  12232. {
  12233. name: "Strolling Size",
  12234. height: math.unit(15, "km")
  12235. },
  12236. {
  12237. name: "Larger Strolling Size",
  12238. height: math.unit(400, "km")
  12239. },
  12240. {
  12241. name: "Preferred Size",
  12242. height: math.unit(5000, "km")
  12243. },
  12244. {
  12245. name: "True Size",
  12246. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12247. default: true
  12248. },
  12249. ]
  12250. ))
  12251. characterMakers.push(() => makeCharacter(
  12252. { name: "Nightraver" },
  12253. {
  12254. front: {
  12255. height: math.unit(15, "feet"),
  12256. weight: math.unit(880, "kg"),
  12257. name: "Front",
  12258. image: {
  12259. source: "./media/characters/nightraver/front.svg",
  12260. extra: 2444 / 2160,
  12261. bottom: 0.027
  12262. }
  12263. },
  12264. back: {
  12265. height: math.unit(15, "feet"),
  12266. weight: math.unit(880, "kg"),
  12267. name: "Back",
  12268. image: {
  12269. source: "./media/characters/nightraver/back.svg",
  12270. extra: 2309 / 2180,
  12271. bottom: 0.005
  12272. }
  12273. },
  12274. sole: {
  12275. height: math.unit(2.878, "feet"),
  12276. name: "Sole",
  12277. image: {
  12278. source: "./media/characters/nightraver/sole.svg"
  12279. }
  12280. },
  12281. foot: {
  12282. height: math.unit(2.285, "feet"),
  12283. name: "Foot",
  12284. image: {
  12285. source: "./media/characters/nightraver/foot.svg"
  12286. }
  12287. },
  12288. maw: {
  12289. height: math.unit(2.67, "feet"),
  12290. name: "Maw",
  12291. image: {
  12292. source: "./media/characters/nightraver/maw.svg"
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Micro",
  12299. height: math.unit(1, "cm")
  12300. },
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(15, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(300, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(300, "miles")
  12313. },
  12314. {
  12315. name: "Gigamacro",
  12316. height: math.unit(10000, "miles")
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Arc" },
  12322. {
  12323. side: {
  12324. height: math.unit(2, "inches"),
  12325. weight: math.unit(5, "grams"),
  12326. name: "Side",
  12327. image: {
  12328. source: "./media/characters/arc/side.svg"
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Micro",
  12335. height: math.unit(2, "inches"),
  12336. default: true
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Nebula Shahar" },
  12342. {
  12343. front: {
  12344. height: math.unit(1.1938, "meters"),
  12345. weight: math.unit(54, "kg"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/nebula-shahar/front.svg",
  12349. extra: 1642 / 1436,
  12350. bottom: 0.06
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Megamicro",
  12357. height: math.unit(0.3, "mm")
  12358. },
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(3, "cm")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(138, "cm"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(30, "m")
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Shayla" },
  12376. {
  12377. front: {
  12378. height: math.unit(5.24, "feet"),
  12379. weight: math.unit(150, "lb"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/shayla/front.svg",
  12383. extra: 1512 / 1414,
  12384. bottom: 0.01
  12385. }
  12386. },
  12387. back: {
  12388. height: math.unit(5.24, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Back",
  12391. image: {
  12392. source: "./media/characters/shayla/back.svg",
  12393. extra: 1512 / 1414
  12394. }
  12395. },
  12396. hand: {
  12397. height: math.unit(0.7781496062992126, "feet"),
  12398. name: "Hand",
  12399. image: {
  12400. source: "./media/characters/shayla/hand.svg"
  12401. }
  12402. },
  12403. foot: {
  12404. height: math.unit(1.4206036745406823, "feet"),
  12405. name: "Foot",
  12406. image: {
  12407. source: "./media/characters/shayla/foot.svg"
  12408. }
  12409. },
  12410. },
  12411. [
  12412. {
  12413. name: "Micro",
  12414. height: math.unit(0.32, "feet")
  12415. },
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(5.24, "feet"),
  12419. default: true
  12420. },
  12421. {
  12422. name: "Macro",
  12423. height: math.unit(492.12, "feet")
  12424. },
  12425. {
  12426. name: "Megamacro",
  12427. height: math.unit(186.41, "miles")
  12428. },
  12429. ]
  12430. ))
  12431. characterMakers.push(() => makeCharacter(
  12432. { name: "Pia Jr." },
  12433. {
  12434. front: {
  12435. height: math.unit(2.2, "m"),
  12436. weight: math.unit(120, "kg"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/pia-jr/front.svg",
  12440. extra: 1000 / 970,
  12441. bottom: 0.035
  12442. }
  12443. },
  12444. hand: {
  12445. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12446. name: "Hand",
  12447. image: {
  12448. source: "./media/characters/pia-jr/hand.svg"
  12449. }
  12450. },
  12451. paw: {
  12452. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12453. name: "Paw",
  12454. image: {
  12455. source: "./media/characters/pia-jr/paw.svg"
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Micro",
  12462. height: math.unit(1.2, "cm")
  12463. },
  12464. {
  12465. name: "Normal",
  12466. height: math.unit(2.2, "m"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(180, "m")
  12472. },
  12473. {
  12474. name: "Megamacro",
  12475. height: math.unit(420, "km")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Pia Sr." },
  12481. {
  12482. front: {
  12483. height: math.unit(2, "m"),
  12484. weight: math.unit(115, "kg"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/pia-sr/front.svg",
  12488. extra: 760 / 730,
  12489. bottom: 0.015
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(2, "m"),
  12494. weight: math.unit(115, "kg"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/pia-sr/back.svg",
  12498. extra: 760 / 730,
  12499. bottom: 0.01
  12500. }
  12501. },
  12502. hand: {
  12503. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12504. name: "Hand",
  12505. image: {
  12506. source: "./media/characters/pia-sr/hand.svg"
  12507. }
  12508. },
  12509. foot: {
  12510. height: math.unit(1.83, "feet"),
  12511. name: "Foot",
  12512. image: {
  12513. source: "./media/characters/pia-sr/foot.svg"
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Micro",
  12520. height: math.unit(88, "mm")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(2, "m"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(200, "m")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(420, "km")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "KIBIBYTE" },
  12539. {
  12540. front: {
  12541. height: math.unit(8 + 2 / 12, "feet"),
  12542. weight: math.unit(300, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/kibibyte/front.svg",
  12546. extra: 2221 / 2098,
  12547. bottom: 0.04
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Normal",
  12554. height: math.unit(8 + 2 / 12, "feet"),
  12555. default: true
  12556. },
  12557. {
  12558. name: "Socialable Macro",
  12559. height: math.unit(50, "feet")
  12560. },
  12561. {
  12562. name: "Macro",
  12563. height: math.unit(300, "feet")
  12564. },
  12565. {
  12566. name: "Megamacro",
  12567. height: math.unit(500, "miles")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Felix" },
  12573. {
  12574. front: {
  12575. height: math.unit(6, "feet"),
  12576. weight: math.unit(150, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/felix/front.svg",
  12580. extra: 762 / 722,
  12581. bottom: 0.02
  12582. }
  12583. },
  12584. frontClothed: {
  12585. height: math.unit(6, "feet"),
  12586. weight: math.unit(150, "lb"),
  12587. name: "Front (Clothed)",
  12588. image: {
  12589. source: "./media/characters/felix/front-clothed.svg",
  12590. extra: 762 / 722,
  12591. bottom: 0.02
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(6 + 8 / 12, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(2600, "feet")
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(450, "miles")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Tobo" },
  12613. {
  12614. front: {
  12615. height: math.unit(6 + 1 / 12, "feet"),
  12616. weight: math.unit(250, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/tobo/front.svg",
  12620. extra: 608 / 586,
  12621. bottom: 0.023
  12622. }
  12623. },
  12624. back: {
  12625. height: math.unit(6 + 1 / 12, "feet"),
  12626. weight: math.unit(250, "lb"),
  12627. name: "Back",
  12628. image: {
  12629. source: "./media/characters/tobo/back.svg",
  12630. extra: 608 / 586
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Nano",
  12637. height: math.unit(2, "nm")
  12638. },
  12639. {
  12640. name: "Megamicro",
  12641. height: math.unit(0.1, "mm")
  12642. },
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(1, "inch"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Human-sized",
  12650. height: math.unit(6 + 1 / 12, "feet")
  12651. },
  12652. {
  12653. name: "Macro",
  12654. height: math.unit(250, "feet")
  12655. },
  12656. {
  12657. name: "Megamacro",
  12658. height: math.unit(75, "miles")
  12659. },
  12660. {
  12661. name: "Texas-sized",
  12662. height: math.unit(750, "miles")
  12663. },
  12664. {
  12665. name: "Teramacro",
  12666. height: math.unit(50000, "miles")
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "Danny Kapowsky" },
  12672. {
  12673. front: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(269, "lb"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/danny-kapowsky/front.svg",
  12679. extra: 766 / 736,
  12680. bottom: 0.044
  12681. }
  12682. },
  12683. back: {
  12684. height: math.unit(6, "feet"),
  12685. weight: math.unit(269, "lb"),
  12686. name: "Back",
  12687. image: {
  12688. source: "./media/characters/danny-kapowsky/back.svg",
  12689. extra: 797 / 760,
  12690. bottom: 0.025
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(150, "feet"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Macro+",
  12702. height: math.unit(200, "feet")
  12703. },
  12704. {
  12705. name: "Macro++",
  12706. height: math.unit(300, "feet")
  12707. },
  12708. {
  12709. name: "Macro+++",
  12710. height: math.unit(400, "feet")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Finn" },
  12716. {
  12717. side: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(170, "lb"),
  12720. name: "Side",
  12721. image: {
  12722. source: "./media/characters/finn/side.svg",
  12723. extra: 1953 / 1807,
  12724. bottom: 0.057
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(14445, "feet"),
  12732. default: true
  12733. },
  12734. ]
  12735. ))
  12736. characterMakers.push(() => makeCharacter(
  12737. { name: "Roy" },
  12738. {
  12739. front: {
  12740. height: math.unit(5 + 6 / 12, "feet"),
  12741. weight: math.unit(125, "lb"),
  12742. name: "Front",
  12743. image: {
  12744. source: "./media/characters/roy/front.svg",
  12745. extra: 1,
  12746. bottom: 0.11
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Micro",
  12753. height: math.unit(3, "inches"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(5 + 6 / 12, "feet")
  12759. },
  12760. {
  12761. name: "Lesser Macro",
  12762. height: math.unit(60, "feet")
  12763. },
  12764. {
  12765. name: "Greater Macro",
  12766. height: math.unit(120, "feet")
  12767. },
  12768. ]
  12769. ))
  12770. characterMakers.push(() => makeCharacter(
  12771. { name: "Aevsivs" },
  12772. {
  12773. front: {
  12774. height: math.unit(6, "feet"),
  12775. weight: math.unit(100, "lb"),
  12776. name: "Front",
  12777. image: {
  12778. source: "./media/characters/aevsivs/front.svg",
  12779. extra: 1,
  12780. bottom: 0.03
  12781. }
  12782. },
  12783. back: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(100, "lb"),
  12786. name: "Back",
  12787. image: {
  12788. source: "./media/characters/aevsivs/back.svg"
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Micro",
  12795. height: math.unit(2, "inches"),
  12796. default: true
  12797. },
  12798. {
  12799. name: "Normal",
  12800. height: math.unit(5, "feet")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Hildegard" },
  12806. {
  12807. front: {
  12808. height: math.unit(5 + 7 / 12, "feet"),
  12809. weight: math.unit(159, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/hildegard/front.svg",
  12813. extra: 312 / 286,
  12814. bottom: 0.005
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(5 + 7 / 12, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Bernard & Wilder" },
  12828. {
  12829. bernard: {
  12830. height: math.unit(2 + 7 / 12, "feet"),
  12831. weight: math.unit(66, "lb"),
  12832. name: "Bernard",
  12833. rename: true,
  12834. image: {
  12835. source: "./media/characters/bernard-wilder/bernard.svg",
  12836. extra: 192 / 128,
  12837. bottom: 0.05
  12838. }
  12839. },
  12840. wilder: {
  12841. height: math.unit(5 + 8 / 12, "feet"),
  12842. weight: math.unit(143, "lb"),
  12843. name: "Wilder",
  12844. rename: true,
  12845. image: {
  12846. source: "./media/characters/bernard-wilder/wilder.svg",
  12847. extra: 361 / 312,
  12848. bottom: 0.02
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(2 + 7 / 12, "feet"),
  12856. default: true
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Hearth" },
  12862. {
  12863. anthro: {
  12864. height: math.unit(6 + 1 / 12, "feet"),
  12865. weight: math.unit(155, "lb"),
  12866. name: "Anthro",
  12867. image: {
  12868. source: "./media/characters/hearth/anthro.svg",
  12869. extra: 260 / 250,
  12870. bottom: 0.02
  12871. }
  12872. },
  12873. feral: {
  12874. height: math.unit(3.78, "feet"),
  12875. weight: math.unit(35, "kg"),
  12876. name: "Feral",
  12877. image: {
  12878. source: "./media/characters/hearth/feral.svg",
  12879. extra: 153 / 135,
  12880. bottom: 0.03
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(6 + 1 / 12, "feet"),
  12888. default: true
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Ingrid" },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(182, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/ingrid/front.svg",
  12901. extra: 294 / 268,
  12902. bottom: 0.027
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(6, "feet"),
  12910. default: true
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Malgam" },
  12916. {
  12917. eevee: {
  12918. height: math.unit(2 + 10 / 12, "feet"),
  12919. weight: math.unit(86, "lb"),
  12920. name: "Malgam",
  12921. image: {
  12922. source: "./media/characters/malgam/eevee.svg",
  12923. extra: 218 / 180,
  12924. bottom: 0.2
  12925. }
  12926. },
  12927. sylveon: {
  12928. height: math.unit(4, "feet"),
  12929. weight: math.unit(101, "lb"),
  12930. name: "Future Malgam",
  12931. rename: true,
  12932. image: {
  12933. source: "./media/characters/malgam/sylveon.svg",
  12934. extra: 371 / 325,
  12935. bottom: 0.015
  12936. }
  12937. },
  12938. gigantamax: {
  12939. height: math.unit(50, "feet"),
  12940. name: "Gigantamax Malgam",
  12941. rename: true,
  12942. image: {
  12943. source: "./media/characters/malgam/gigantamax.svg"
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(2 + 10 / 12, "feet"),
  12951. default: true
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Fleur" },
  12957. {
  12958. front: {
  12959. height: math.unit(5 + 11 / 12, "feet"),
  12960. weight: math.unit(188, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/fleur/front.svg",
  12964. extra: 309 / 283,
  12965. bottom: 0.007
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(5 + 11 / 12, "feet"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Jude" },
  12979. {
  12980. front: {
  12981. height: math.unit(5 + 4 / 12, "feet"),
  12982. weight: math.unit(122, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/jude/front.svg",
  12986. extra: 288 / 273,
  12987. bottom: 0.03
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(5 + 4 / 12, "feet"),
  12995. default: true
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Seara" },
  13001. {
  13002. front: {
  13003. height: math.unit(5 + 11 / 12, "feet"),
  13004. weight: math.unit(190, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/seara/front.svg",
  13008. extra: 1,
  13009. bottom: 0.05
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(5 + 11 / 12, "feet"),
  13017. default: true
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Caspian" },
  13023. {
  13024. front: {
  13025. height: math.unit(16 + 5 / 12, "feet"),
  13026. weight: math.unit(524, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/caspian/front.svg",
  13030. extra: 1,
  13031. bottom: 0.04
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(16 + 5 / 12, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Mika" },
  13045. {
  13046. front: {
  13047. height: math.unit(5 + 7 / 12, "feet"),
  13048. weight: math.unit(170, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/mika/front.svg",
  13052. extra: 1,
  13053. bottom: 0.016
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(5 + 7 / 12, "feet"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Sol" },
  13067. {
  13068. front: {
  13069. height: math.unit(6 + 2 / 12, "feet"),
  13070. weight: math.unit(268, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/sol/front.svg",
  13074. extra: 247 / 231,
  13075. bottom: 0.05
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(6 + 2 / 12, "feet"),
  13083. default: true
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Umiko" },
  13089. {
  13090. buizel: {
  13091. height: math.unit(2 + 5 / 12, "feet"),
  13092. weight: math.unit(87, "lb"),
  13093. name: "Buizel",
  13094. image: {
  13095. source: "./media/characters/umiko/buizel.svg",
  13096. extra: 172 / 157,
  13097. bottom: 0.01
  13098. }
  13099. },
  13100. floatzel: {
  13101. height: math.unit(5 + 9 / 12, "feet"),
  13102. weight: math.unit(250, "lb"),
  13103. name: "Floatzel",
  13104. image: {
  13105. source: "./media/characters/umiko/floatzel.svg",
  13106. extra: 262 / 248
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(2 + 5 / 12, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Iliac" },
  13120. {
  13121. front: {
  13122. height: math.unit(6 + 2 / 12, "feet"),
  13123. weight: math.unit(146, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/iliac/front.svg",
  13127. extra: 389 / 365,
  13128. bottom: 0.035
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(6 + 2 / 12, "feet"),
  13136. default: true
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Topaz" },
  13142. {
  13143. front: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(170, "lb"),
  13146. name: "Front",
  13147. image: {
  13148. source: "./media/characters/topaz/front.svg",
  13149. extra: 317 / 303,
  13150. bottom: 0.055
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(6, "feet"),
  13158. default: true
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Gabriel" },
  13164. {
  13165. front: {
  13166. height: math.unit(5 + 11 / 12, "feet"),
  13167. weight: math.unit(144, "lb"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/gabriel/front.svg",
  13171. extra: 285 / 262,
  13172. bottom: 0.004
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(5 + 11 / 12, "feet"),
  13180. default: true
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Tempest (Suicune)" },
  13186. {
  13187. side: {
  13188. height: math.unit(6 + 5 / 12, "feet"),
  13189. weight: math.unit(300, "lb"),
  13190. name: "Side",
  13191. image: {
  13192. source: "./media/characters/tempest-suicune/side.svg",
  13193. extra: 195 / 154,
  13194. bottom: 0.04
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(6 + 5 / 12, "feet"),
  13202. default: true
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Vulcan" },
  13208. {
  13209. front: {
  13210. height: math.unit(7 + 2 / 12, "feet"),
  13211. weight: math.unit(322, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/vulcan/front.svg",
  13215. extra: 154 / 147,
  13216. bottom: 0.04
  13217. }
  13218. },
  13219. },
  13220. [
  13221. {
  13222. name: "Normal",
  13223. height: math.unit(7 + 2 / 12, "feet"),
  13224. default: true
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Gault" },
  13230. {
  13231. front: {
  13232. height: math.unit(5 + 10 / 12, "feet"),
  13233. weight: math.unit(264, "lb"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/gault/front.svg",
  13237. extra: 161 / 140,
  13238. bottom: 0.028
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Normal",
  13245. height: math.unit(5 + 10 / 12, "feet"),
  13246. default: true
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Shard" },
  13252. {
  13253. front: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/shard/front.svg",
  13259. extra: 273 / 238,
  13260. bottom: 0.02
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(3 + 6 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Ashe" },
  13274. {
  13275. front: {
  13276. height: math.unit(5 + 11 / 12, "feet"),
  13277. weight: math.unit(146, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/ashe/front.svg",
  13281. extra: 400 / 373,
  13282. bottom: 0.01
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(5 + 11 / 12, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Beatrix" },
  13296. {
  13297. front: {
  13298. height: math.unit(5 + 5 / 12, "feet"),
  13299. weight: math.unit(135, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/beatrix/front.svg",
  13303. extra: 392 / 379,
  13304. bottom: 0.01
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(6, "feet"),
  13312. default: true
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Ignatius" },
  13318. {
  13319. front: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(150, "lb"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/ignatius/front.svg",
  13325. extra: 245 / 222,
  13326. bottom: 0.01
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(5 + 5 / 12, "feet"),
  13334. default: true
  13335. },
  13336. ]
  13337. ))
  13338. characterMakers.push(() => makeCharacter(
  13339. { name: "Mei Li" },
  13340. {
  13341. front: {
  13342. height: math.unit(6 + 2 / 12, "feet"),
  13343. weight: math.unit(138, "lb"),
  13344. name: "Front",
  13345. image: {
  13346. source: "./media/characters/mei-li/front.svg",
  13347. extra: 237 / 229,
  13348. bottom: 0.03
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Normal",
  13355. height: math.unit(6 + 2 / 12, "feet"),
  13356. default: true
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Puru" },
  13362. {
  13363. front: {
  13364. height: math.unit(2 + 4 / 12, "feet"),
  13365. weight: math.unit(62, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/puru/front.svg",
  13369. extra: 206 / 149,
  13370. bottom: 0.06
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(2 + 4 / 12, "feet"),
  13378. default: true
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Kee" },
  13384. {
  13385. taur: {
  13386. height: math.unit(11, "feet"),
  13387. weight: math.unit(500, "lb"),
  13388. name: "Taur",
  13389. image: {
  13390. source: "./media/characters/kee/taur.svg",
  13391. extra: 1,
  13392. bottom: 0.04
  13393. }
  13394. },
  13395. },
  13396. [
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(11, "feet"),
  13400. default: true
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Cobalt (Dracha)" },
  13406. {
  13407. anthro: {
  13408. height: math.unit(7, "feet"),
  13409. weight: math.unit(190, "lb"),
  13410. name: "Anthro",
  13411. image: {
  13412. source: "./media/characters/cobalt-dracha/anthro.svg",
  13413. extra: 231 / 225,
  13414. bottom: 0.04
  13415. }
  13416. },
  13417. feral: {
  13418. height: math.unit(9 + 7 / 12, "feet"),
  13419. weight: math.unit(294, "lb"),
  13420. name: "Feral",
  13421. image: {
  13422. source: "./media/characters/cobalt-dracha/feral.svg",
  13423. extra: 692 / 633,
  13424. bottom: 0.05
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Normal",
  13431. height: math.unit(7, "feet"),
  13432. default: true
  13433. },
  13434. ]
  13435. ))
  13436. characterMakers.push(() => makeCharacter(
  13437. { name: "Java" },
  13438. {
  13439. fallen: {
  13440. height: math.unit(11 + 8 / 12, "feet"),
  13441. weight: math.unit(485, "lb"),
  13442. name: "Java (Fallen)",
  13443. rename: true,
  13444. image: {
  13445. source: "./media/characters/java/fallen.svg",
  13446. extra: 226 / 208,
  13447. bottom: 0.005
  13448. }
  13449. },
  13450. godkin: {
  13451. height: math.unit(10 + 6 / 12, "feet"),
  13452. weight: math.unit(328, "lb"),
  13453. name: "Java (Godkin)",
  13454. rename: true,
  13455. image: {
  13456. source: "./media/characters/java/godkin.svg",
  13457. extra: 270 / 262,
  13458. bottom: 0.02
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Normal",
  13465. height: math.unit(11 + 8 / 12, "feet"),
  13466. default: true
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Skoll" },
  13472. {
  13473. front: {
  13474. height: math.unit(7 + 8 / 12, "feet"),
  13475. weight: math.unit(320, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/skoll/front.svg",
  13479. extra: 232 / 220,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(7 + 8 / 12, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Purna" },
  13494. {
  13495. front: {
  13496. height: math.unit(5 + 9 / 12, "feet"),
  13497. weight: math.unit(170, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/purna/front.svg",
  13501. extra: 239 / 229,
  13502. bottom: 0.01
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(5 + 9 / 12, "feet"),
  13510. default: true
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Kuva" },
  13516. {
  13517. front: {
  13518. height: math.unit(5 + 9 / 12, "feet"),
  13519. weight: math.unit(142, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/kuva/front.svg",
  13523. extra: 281 / 271,
  13524. bottom: 0.006
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(5 + 9 / 12, "feet"),
  13532. default: true
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Embra" },
  13538. {
  13539. anthro: {
  13540. height: math.unit(9 + 2 / 12, "feet"),
  13541. weight: math.unit(270, "lb"),
  13542. name: "Anthro",
  13543. image: {
  13544. source: "./media/characters/embra/anthro.svg",
  13545. extra: 200 / 187,
  13546. bottom: 0.02
  13547. }
  13548. },
  13549. feral: {
  13550. height: math.unit(18 + 8 / 12, "feet"),
  13551. weight: math.unit(576, "lb"),
  13552. name: "Feral",
  13553. image: {
  13554. source: "./media/characters/embra/feral.svg",
  13555. extra: 152 / 137,
  13556. bottom: 0.037
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(9 + 2 / 12, "feet"),
  13564. default: true
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Grottos" },
  13570. {
  13571. anthro: {
  13572. height: math.unit(10 + 9 / 12, "feet"),
  13573. weight: math.unit(224, "lb"),
  13574. name: "Anthro",
  13575. image: {
  13576. source: "./media/characters/grottos/anthro.svg",
  13577. extra: 350 / 332,
  13578. bottom: 0.045
  13579. }
  13580. },
  13581. feral: {
  13582. height: math.unit(20 + 7 / 12, "feet"),
  13583. weight: math.unit(629, "lb"),
  13584. name: "Feral",
  13585. image: {
  13586. source: "./media/characters/grottos/feral.svg",
  13587. extra: 207 / 190,
  13588. bottom: 0.05
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(10 + 9 / 12, "feet"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Frifna" },
  13602. {
  13603. anthro: {
  13604. height: math.unit(9 + 6 / 12, "feet"),
  13605. weight: math.unit(298, "lb"),
  13606. name: "Anthro",
  13607. image: {
  13608. source: "./media/characters/frifna/anthro.svg",
  13609. extra: 282 / 269,
  13610. bottom: 0.015
  13611. }
  13612. },
  13613. feral: {
  13614. height: math.unit(16 + 2 / 12, "feet"),
  13615. weight: math.unit(624, "lb"),
  13616. name: "Feral",
  13617. image: {
  13618. source: "./media/characters/frifna/feral.svg"
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Normal",
  13625. height: math.unit(9 + 6 / 12, "feet"),
  13626. default: true
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Elise" },
  13632. {
  13633. front: {
  13634. height: math.unit(6 + 2 / 12, "feet"),
  13635. weight: math.unit(168, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/elise/front.svg",
  13639. extra: 276 / 271
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "Normal",
  13646. height: math.unit(6 + 2 / 12, "feet"),
  13647. default: true
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Glade" },
  13653. {
  13654. front: {
  13655. height: math.unit(5 + 10 / 12, "feet"),
  13656. weight: math.unit(210, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/glade/front.svg",
  13660. extra: 258 / 247,
  13661. bottom: 0.008
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(5 + 10 / 12, "feet"),
  13669. default: true
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Rina" },
  13675. {
  13676. front: {
  13677. height: math.unit(5 + 10 / 12, "feet"),
  13678. weight: math.unit(129, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/rina/front.svg",
  13682. extra: 266 / 255,
  13683. bottom: 0.005
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(5 + 10 / 12, "feet"),
  13691. default: true
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Veronica" },
  13697. {
  13698. front: {
  13699. height: math.unit(6 + 1 / 12, "feet"),
  13700. weight: math.unit(192, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/veronica/front.svg",
  13704. extra: 319 / 309,
  13705. bottom: 0.005
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(6 + 1 / 12, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Braxton" },
  13719. {
  13720. front: {
  13721. height: math.unit(9 + 3 / 12, "feet"),
  13722. weight: math.unit(1100, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/braxton/front.svg",
  13726. extra: 1057 / 984,
  13727. bottom: 0.05
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Normal",
  13734. height: math.unit(9 + 3 / 12, "feet")
  13735. },
  13736. {
  13737. name: "Giant",
  13738. height: math.unit(300, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(700, "feet")
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(6000, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Blue Feyonics" },
  13753. {
  13754. front: {
  13755. height: math.unit(6 + 7 / 12, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/blue-feyonics/front.svg",
  13760. extra: 1403 / 1306,
  13761. bottom: 0.047
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(6 + 7 / 12, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Maxwell" },
  13775. {
  13776. front: {
  13777. height: math.unit(1.8, "meters"),
  13778. weight: math.unit(60, "kg"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/maxwell/front.svg",
  13782. extra: 2060 / 1873
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Micro",
  13789. height: math.unit(1, "mm")
  13790. },
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(1.8, "meter"),
  13794. default: true
  13795. },
  13796. {
  13797. name: "Macro",
  13798. height: math.unit(30, "meters")
  13799. },
  13800. {
  13801. name: "Megamacro",
  13802. height: math.unit(10, "km")
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Jack" },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/jack/front.svg",
  13815. extra: 1754 / 1640,
  13816. bottom: 0.01
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(80000, "feet"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Max size",
  13828. height: math.unit(10, "lightyears")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Cafat" },
  13834. {
  13835. upright: {
  13836. height: math.unit(7, "feet"),
  13837. weight: math.unit(170, "lb"),
  13838. name: "Upright",
  13839. image: {
  13840. source: "./media/characters/cafat/upright.svg",
  13841. bottom: 0.01
  13842. }
  13843. },
  13844. uprightFull: {
  13845. height: math.unit(7, "feet"),
  13846. weight: math.unit(170, "lb"),
  13847. name: "Upright (Full)",
  13848. image: {
  13849. source: "./media/characters/cafat/upright-full.svg",
  13850. bottom: 0.01
  13851. }
  13852. },
  13853. side: {
  13854. height: math.unit(5, "feet"),
  13855. weight: math.unit(150, "lb"),
  13856. name: "Side",
  13857. image: {
  13858. source: "./media/characters/cafat/side.svg"
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Small",
  13865. height: math.unit(7, "feet"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Large",
  13870. height: math.unit(15.5, "feet")
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Verin Raharra" },
  13876. {
  13877. front: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/verin-raharra/front.svg",
  13883. extra: 5019 / 4835,
  13884. bottom: 0.023
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Normal",
  13891. height: math.unit(7 + 5 / 12, "feet"),
  13892. default: true
  13893. },
  13894. {
  13895. name: "Upsized",
  13896. height: math.unit(20, "feet")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Nakata" },
  13902. {
  13903. front: {
  13904. height: math.unit(7, "feet"),
  13905. weight: math.unit(230, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/nakata/front.svg",
  13909. extra: 1.005,
  13910. bottom: 0.01
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Normal",
  13917. height: math.unit(7, "feet"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Big",
  13922. height: math.unit(14, "feet")
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(400, "feet")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Lily" },
  13932. {
  13933. front: {
  13934. height: math.unit(4.91, "feet"),
  13935. weight: math.unit(100, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/lily/front.svg",
  13939. extra: 1585 / 1415,
  13940. bottom: 0.02
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(4.91, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Sheila" },
  13954. {
  13955. laying: {
  13956. height: math.unit(4 + 4 / 12, "feet"),
  13957. weight: math.unit(600, "lb"),
  13958. name: "Laying",
  13959. image: {
  13960. source: "./media/characters/sheila/laying.svg",
  13961. extra: 1333 / 1265,
  13962. bottom: 0.16
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Normal",
  13969. height: math.unit(4 + 4 / 12, "feet"),
  13970. default: true
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Sax" },
  13976. {
  13977. front: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(190, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/sax/front.svg",
  13983. extra: 1187 / 973,
  13984. bottom: 0.042
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Micro",
  13991. height: math.unit(4, "inches"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Pandora" },
  13998. {
  13999. front: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(150, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/pandora/front.svg",
  14005. extra: 2720 / 2556,
  14006. bottom: 0.015
  14007. }
  14008. },
  14009. back: {
  14010. height: math.unit(6, "feet"),
  14011. weight: math.unit(150, "lb"),
  14012. name: "Back",
  14013. image: {
  14014. source: "./media/characters/pandora/back.svg",
  14015. extra: 2720 / 2556,
  14016. bottom: 0.01
  14017. }
  14018. },
  14019. beans: {
  14020. height: math.unit(6 / 8, "feet"),
  14021. name: "Beans",
  14022. image: {
  14023. source: "./media/characters/pandora/beans.svg"
  14024. }
  14025. },
  14026. skirt: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Skirt",
  14030. image: {
  14031. source: "./media/characters/pandora/skirt.svg",
  14032. extra: 1622 / 1525,
  14033. bottom: 0.015
  14034. }
  14035. },
  14036. hoodie: {
  14037. height: math.unit(6, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Hoodie",
  14040. image: {
  14041. source: "./media/characters/pandora/hoodie.svg",
  14042. extra: 1622 / 1525,
  14043. bottom: 0.015
  14044. }
  14045. },
  14046. casual: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Casual",
  14050. image: {
  14051. source: "./media/characters/pandora/casual.svg",
  14052. extra: 1622 / 1525,
  14053. bottom: 0.015
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(6, "feet")
  14061. },
  14062. {
  14063. name: "Big Steppy",
  14064. height: math.unit(1, "km"),
  14065. default: true
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Venio Darcony" },
  14071. {
  14072. side: {
  14073. height: math.unit(10, "feet"),
  14074. weight: math.unit(800, "kg"),
  14075. name: "Side",
  14076. image: {
  14077. source: "./media/characters/venio-darcony/side.svg",
  14078. extra: 1373 / 1003,
  14079. bottom: 0.037
  14080. }
  14081. },
  14082. front: {
  14083. height: math.unit(19, "feet"),
  14084. weight: math.unit(800, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/venio-darcony/front.svg"
  14088. }
  14089. },
  14090. back: {
  14091. height: math.unit(19, "feet"),
  14092. weight: math.unit(800, "kg"),
  14093. name: "Back",
  14094. image: {
  14095. source: "./media/characters/venio-darcony/back.svg"
  14096. }
  14097. },
  14098. sideNsfw: {
  14099. height: math.unit(10, "feet"),
  14100. weight: math.unit(800, "kg"),
  14101. name: "Side (NSFW)",
  14102. image: {
  14103. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14104. extra: 1373 / 1003,
  14105. bottom: 0.037
  14106. }
  14107. },
  14108. frontNsfw: {
  14109. height: math.unit(19, "feet"),
  14110. weight: math.unit(800, "kg"),
  14111. name: "Front (NSFW)",
  14112. image: {
  14113. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14114. }
  14115. },
  14116. backNsfw: {
  14117. height: math.unit(19, "feet"),
  14118. weight: math.unit(800, "kg"),
  14119. name: "Back (NSFW)",
  14120. image: {
  14121. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14122. }
  14123. },
  14124. sideArmored: {
  14125. height: math.unit(10, "feet"),
  14126. weight: math.unit(800, "kg"),
  14127. name: "Side (Armored)",
  14128. image: {
  14129. source: "./media/characters/venio-darcony/side-armored.svg",
  14130. extra: 1373 / 1003,
  14131. bottom: 0.037
  14132. }
  14133. },
  14134. frontArmored: {
  14135. height: math.unit(19, "feet"),
  14136. weight: math.unit(900, "kg"),
  14137. name: "Front (Armored)",
  14138. image: {
  14139. source: "./media/characters/venio-darcony/front-armored.svg"
  14140. }
  14141. },
  14142. backArmored: {
  14143. height: math.unit(19, "feet"),
  14144. weight: math.unit(900, "kg"),
  14145. name: "Back (Armored)",
  14146. image: {
  14147. source: "./media/characters/venio-darcony/back-armored.svg"
  14148. }
  14149. },
  14150. sword: {
  14151. height: math.unit(10, "feet"),
  14152. weight: math.unit(50, "lb"),
  14153. name: "Sword",
  14154. image: {
  14155. source: "./media/characters/venio-darcony/sword.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(10, "feet")
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(130, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Macro+",
  14171. height: math.unit(240, "feet")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Veski" },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/veski/front.svg",
  14184. extra: 1299 / 1225,
  14185. bottom: 0.04
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(150, "lb"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/veski/back.svg",
  14194. extra: 1299 / 1225,
  14195. bottom: 0.008
  14196. }
  14197. },
  14198. maw: {
  14199. height: math.unit(1.5 * 1.21, "feet"),
  14200. name: "Maw",
  14201. image: {
  14202. source: "./media/characters/veski/maw.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(2, "km"),
  14210. default: true
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Isabelle" },
  14216. {
  14217. front: {
  14218. height: math.unit(5 + 7 / 12, "feet"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/isabelle/front.svg",
  14222. extra: 2130 / 1976,
  14223. bottom: 0.05
  14224. }
  14225. },
  14226. },
  14227. [
  14228. {
  14229. name: "Supermicro",
  14230. height: math.unit(10, "micrometers")
  14231. },
  14232. {
  14233. name: "Micro",
  14234. height: math.unit(1, "inch")
  14235. },
  14236. {
  14237. name: "Tiny",
  14238. height: math.unit(5, "inches")
  14239. },
  14240. {
  14241. name: "Standard",
  14242. height: math.unit(5 + 7 / 12, "inches")
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(80, "meters"),
  14247. default: true
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(250, "meters")
  14252. },
  14253. {
  14254. name: "Gigamacro",
  14255. height: math.unit(5, "km")
  14256. },
  14257. {
  14258. name: "Cosmic",
  14259. height: math.unit(2.5e6, "miles")
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Hanzo" },
  14265. {
  14266. front: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/hanzo/front.svg",
  14272. extra: 374 / 344,
  14273. bottom: 0.02
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(8, "feet"),
  14281. default: true
  14282. },
  14283. ]
  14284. ))
  14285. characterMakers.push(() => makeCharacter(
  14286. { name: "Anna" },
  14287. {
  14288. front: {
  14289. height: math.unit(7, "feet"),
  14290. weight: math.unit(130, "lb"),
  14291. name: "Front",
  14292. image: {
  14293. source: "./media/characters/anna/front.svg",
  14294. extra: 169 / 145,
  14295. bottom: 0.06
  14296. }
  14297. },
  14298. full: {
  14299. height: math.unit(4.96, "feet"),
  14300. weight: math.unit(220, "lb"),
  14301. name: "Full",
  14302. image: {
  14303. source: "./media/characters/anna/full.svg",
  14304. extra: 138 / 114,
  14305. bottom: 0.15
  14306. }
  14307. },
  14308. tongue: {
  14309. height: math.unit(2.53, "feet"),
  14310. name: "Tongue",
  14311. image: {
  14312. source: "./media/characters/anna/tongue.svg"
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(7, "feet"),
  14320. default: true
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Ian Corvid" },
  14326. {
  14327. front: {
  14328. height: math.unit(7, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/ian-corvid/front.svg",
  14333. extra: 150 / 142,
  14334. bottom: 0.02
  14335. }
  14336. },
  14337. back: {
  14338. height: math.unit(7, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Back",
  14341. image: {
  14342. source: "./media/characters/ian-corvid/back.svg",
  14343. extra: 150 / 143,
  14344. bottom: 0.01
  14345. }
  14346. },
  14347. stomping: {
  14348. height: math.unit(7, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Stomping",
  14351. image: {
  14352. source: "./media/characters/ian-corvid/stomping.svg",
  14353. extra: 76 / 72
  14354. }
  14355. },
  14356. sitting: {
  14357. height: math.unit(7 / 1.8, "feet"),
  14358. weight: math.unit(150, "lb"),
  14359. name: "Sitting",
  14360. image: {
  14361. source: "./media/characters/ian-corvid/sitting.svg",
  14362. extra: 1400 / 1269,
  14363. bottom: 0.15
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Tiny Microw",
  14370. height: math.unit(1, "inch")
  14371. },
  14372. {
  14373. name: "Microw",
  14374. height: math.unit(6, "inches")
  14375. },
  14376. {
  14377. name: "Crow",
  14378. height: math.unit(7 + 1 / 12, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Macrow",
  14383. height: math.unit(176, "feet")
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Natalie Kellon" },
  14389. {
  14390. front: {
  14391. height: math.unit(5 + 7 / 12, "feet"),
  14392. weight: math.unit(147, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/natalie-kellon/front.svg",
  14396. extra: 1214 / 1141,
  14397. bottom: 0.02
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Micro",
  14404. height: math.unit(1 / 16, "inch")
  14405. },
  14406. {
  14407. name: "Tiny",
  14408. height: math.unit(4, "inches")
  14409. },
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(5 + 7 / 12, "feet"),
  14413. default: true
  14414. },
  14415. {
  14416. name: "Amazon",
  14417. height: math.unit(12, "feet")
  14418. },
  14419. {
  14420. name: "Giantess",
  14421. height: math.unit(160, "meters")
  14422. },
  14423. {
  14424. name: "Titaness",
  14425. height: math.unit(800, "meters")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Alluria" },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/alluria/front.svg",
  14438. extra: 806 / 738,
  14439. bottom: 0.01
  14440. }
  14441. },
  14442. side: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Side",
  14446. image: {
  14447. source: "./media/characters/alluria/side.svg",
  14448. extra: 800 / 750,
  14449. }
  14450. },
  14451. back: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(150, "lb"),
  14454. name: "Back",
  14455. image: {
  14456. source: "./media/characters/alluria/back.svg",
  14457. extra: 806 / 738,
  14458. }
  14459. },
  14460. frontMaid: {
  14461. height: math.unit(6, "feet"),
  14462. weight: math.unit(150, "lb"),
  14463. name: "Front (Maid)",
  14464. image: {
  14465. source: "./media/characters/alluria/front-maid.svg",
  14466. extra: 806 / 738,
  14467. bottom: 0.01
  14468. }
  14469. },
  14470. sideMaid: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(150, "lb"),
  14473. name: "Side (Maid)",
  14474. image: {
  14475. source: "./media/characters/alluria/side-maid.svg",
  14476. extra: 800 / 750,
  14477. bottom: 0.005
  14478. }
  14479. },
  14480. backMaid: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(150, "lb"),
  14483. name: "Back (Maid)",
  14484. image: {
  14485. source: "./media/characters/alluria/back-maid.svg",
  14486. extra: 806 / 738,
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Micro",
  14493. height: math.unit(6, "inches"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Kyle" },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(150, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/kyle/front.svg",
  14507. extra: 1069 / 962,
  14508. bottom: 77.228 / 1727.45
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(150, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Duncan" },
  14522. {
  14523. front: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(300, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/duncan/front.svg",
  14529. extra: 1650 / 1482,
  14530. bottom: 0.05
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(100, "feet"),
  14538. default: true
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Memory" },
  14544. {
  14545. front: {
  14546. height: math.unit(5 + 4 / 12, "feet"),
  14547. weight: math.unit(220, "lb"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/memory/front.svg",
  14551. extra: 3641 / 3545,
  14552. bottom: 0.03
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(5 + 4 / 12, "feet"),
  14557. weight: math.unit(220, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/memory/back.svg",
  14561. extra: 3641 / 3545,
  14562. bottom: 0.025
  14563. }
  14564. },
  14565. frontSkirt: {
  14566. height: math.unit(5 + 4 / 12, "feet"),
  14567. weight: math.unit(220, "lb"),
  14568. name: "Front (Skirt)",
  14569. image: {
  14570. source: "./media/characters/memory/front-skirt.svg",
  14571. extra: 3641 / 3545,
  14572. bottom: 0.03
  14573. }
  14574. },
  14575. frontDress: {
  14576. height: math.unit(5 + 4 / 12, "feet"),
  14577. weight: math.unit(220, "lb"),
  14578. name: "Front (Dress)",
  14579. image: {
  14580. source: "./media/characters/memory/front-dress.svg",
  14581. extra: 3641 / 3545,
  14582. bottom: 0.03
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Micro",
  14589. height: math.unit(6, "inches"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(5 + 4 / 12, "feet")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Luno" },
  14600. {
  14601. front: {
  14602. height: math.unit(4 + 11 / 12, "feet"),
  14603. weight: math.unit(100, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/luno/front.svg",
  14607. extra: 1535 / 1487,
  14608. bottom: 0.03
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(3, "inches")
  14616. },
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(4 + 11 / 12, "feet"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Macro",
  14624. height: math.unit(300, "feet")
  14625. },
  14626. {
  14627. name: "Megamacro",
  14628. height: math.unit(700, "miles")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Jamesy" },
  14634. {
  14635. front: {
  14636. height: math.unit(6 + 2 / 12, "feet"),
  14637. weight: math.unit(170, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/jamesy/front.svg",
  14641. extra: 440 / 382,
  14642. bottom: 0.005
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Micro",
  14649. height: math.unit(3, "inches")
  14650. },
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(6 + 2 / 12, "feet"),
  14654. default: true
  14655. },
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(300, "feet")
  14659. },
  14660. {
  14661. name: "Megamacro",
  14662. height: math.unit(700, "miles")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Mark" },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(160, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/mark/front.svg",
  14675. extra: 3300 / 3100,
  14676. bottom: 136.42 / 3440.47
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Macro",
  14683. height: math.unit(120, "meters")
  14684. },
  14685. {
  14686. name: "Bigger Macro",
  14687. height: math.unit(350, "meters")
  14688. },
  14689. {
  14690. name: "Megamacro",
  14691. height: math.unit(8, "km"),
  14692. default: true
  14693. },
  14694. {
  14695. name: "Continental",
  14696. height: math.unit(4550, "km")
  14697. },
  14698. {
  14699. name: "Planetary",
  14700. height: math.unit(65000, "km")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Mac" },
  14706. {
  14707. front: {
  14708. height: math.unit(6, "feet"),
  14709. weight: math.unit(400, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/mac/front.svg",
  14713. extra: 1048 / 987.7,
  14714. bottom: 60 / 1107.6,
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(500, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Bari" },
  14728. {
  14729. front: {
  14730. height: math.unit(5 + 2 / 12, "feet"),
  14731. weight: math.unit(190, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/bari/front.svg",
  14735. extra: 3156 / 2880,
  14736. bottom: 0.03
  14737. }
  14738. },
  14739. back: {
  14740. height: math.unit(5 + 2 / 12, "feet"),
  14741. weight: math.unit(190, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/bari/back.svg",
  14745. extra: 3260 / 2834,
  14746. bottom: 0.025
  14747. }
  14748. },
  14749. frontPlush: {
  14750. height: math.unit(5 + 2 / 12, "feet"),
  14751. weight: math.unit(190, "lb"),
  14752. name: "Front (Plush)",
  14753. image: {
  14754. source: "./media/characters/bari/front-plush.svg",
  14755. extra: 1112 / 1061,
  14756. bottom: 0.002
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Micro",
  14763. height: math.unit(3, "inches")
  14764. },
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 2 / 12, "feet"),
  14768. default: true
  14769. },
  14770. {
  14771. name: "Macro",
  14772. height: math.unit(20, "feet")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Hunter Misha Raven" },
  14778. {
  14779. front: {
  14780. height: math.unit(6 + 1 / 12, "feet"),
  14781. weight: math.unit(275, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/hunter-misha-raven/front.svg"
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Mortal",
  14791. height: math.unit(6 + 1 / 12, "feet")
  14792. },
  14793. {
  14794. name: "Divine",
  14795. height: math.unit(1.12134e34, "parsecs"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Max Calore" },
  14802. {
  14803. front: {
  14804. height: math.unit(6 + 3 / 12, "feet"),
  14805. weight: math.unit(220, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/max-calore/front.svg",
  14809. extra: 1700 / 1648,
  14810. bottom: 0.01
  14811. }
  14812. },
  14813. back: {
  14814. height: math.unit(6 + 3 / 12, "feet"),
  14815. weight: math.unit(220, "lb"),
  14816. name: "Back",
  14817. image: {
  14818. source: "./media/characters/max-calore/back.svg",
  14819. extra: 1700 / 1648,
  14820. bottom: 0.01
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(6 + 3 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Aspen" },
  14834. {
  14835. side: {
  14836. height: math.unit(2 + 8 / 12, "feet"),
  14837. weight: math.unit(99, "lb"),
  14838. name: "Side",
  14839. image: {
  14840. source: "./media/characters/aspen/side.svg",
  14841. extra: 152 / 138,
  14842. bottom: 0.032
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(2 + 8 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Sheila (Feral Wolf)" },
  14856. {
  14857. side: {
  14858. height: math.unit(3 + 2 / 12, "feet"),
  14859. weight: math.unit(224, "lb"),
  14860. name: "Side",
  14861. image: {
  14862. source: "./media/characters/sheila-feral-wolf/side.svg",
  14863. extra: 179 / 166,
  14864. bottom: 0.03
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(3 + 2 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Michelle" },
  14878. {
  14879. side: {
  14880. height: math.unit(1 + 9 / 12, "feet"),
  14881. weight: math.unit(38, "lb"),
  14882. name: "Side",
  14883. image: {
  14884. source: "./media/characters/michelle/side.svg",
  14885. extra: 147 / 136.7,
  14886. bottom: 0.03
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(1 + 9 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Nino" },
  14900. {
  14901. front: {
  14902. height: math.unit(1 + 1 / 12, "feet"),
  14903. weight: math.unit(18, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/nino/front.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(1 + 1 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Viola" },
  14920. {
  14921. front: {
  14922. height: math.unit(1, "feet"),
  14923. weight: math.unit(16, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/viola/front.svg"
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(1, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Atlas" },
  14940. {
  14941. front: {
  14942. height: math.unit(6 + 5 / 12, "feet"),
  14943. weight: math.unit(580, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/atlas/front.svg",
  14947. extra: 298.5 / 290,
  14948. bottom: 0.015
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(6 + 5 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Davy" },
  14962. {
  14963. side: {
  14964. height: math.unit(1 + 10 / 12, "feet"),
  14965. weight: math.unit(25, "lb"),
  14966. name: "Side",
  14967. image: {
  14968. source: "./media/characters/davy/side.svg",
  14969. extra: 200 / 170,
  14970. bottom: 0.01
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(1 + 10 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Fiona" },
  14984. {
  14985. side: {
  14986. height: math.unit(4 + 8 / 12, "feet"),
  14987. weight: math.unit(166, "lb"),
  14988. name: "Side",
  14989. image: {
  14990. source: "./media/characters/fiona/side.svg",
  14991. extra: 232 / 220,
  14992. bottom: 0.03
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(4 + 8 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Lyla" },
  15006. {
  15007. front: {
  15008. height: math.unit(2, "feet"),
  15009. weight: math.unit(62, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/lyla/front.svg",
  15013. bottom: 0.1
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(2, "feet"),
  15021. default: true
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Perseus" },
  15027. {
  15028. side: {
  15029. height: math.unit(1.8, "feet"),
  15030. weight: math.unit(44, "lb"),
  15031. name: "Side",
  15032. image: {
  15033. source: "./media/characters/perseus/side.svg",
  15034. bottom: 0.21
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(1.8, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Remus" },
  15048. {
  15049. side: {
  15050. height: math.unit(4 + 2 / 12, "feet"),
  15051. weight: math.unit(20, "lb"),
  15052. name: "Side",
  15053. image: {
  15054. source: "./media/characters/remus/side.svg"
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(4 + 2 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Raf" },
  15068. {
  15069. front: {
  15070. height: math.unit(4 + 11 / 12, "feet"),
  15071. weight: math.unit(114, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/raf/front.svg",
  15075. bottom: 0.01
  15076. }
  15077. },
  15078. side: {
  15079. height: math.unit(4 + 11 / 12, "feet"),
  15080. weight: math.unit(114, "lb"),
  15081. name: "Side",
  15082. image: {
  15083. source: "./media/characters/raf/side.svg",
  15084. bottom: 0.005
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Micro",
  15091. height: math.unit(2, "inches")
  15092. },
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(4 + 11 / 12, "feet"),
  15096. default: true
  15097. },
  15098. {
  15099. name: "Macro",
  15100. height: math.unit(70, "feet")
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Liam Einarr" },
  15106. {
  15107. front: {
  15108. height: math.unit(1.5, "meters"),
  15109. weight: math.unit(68, "kg"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/liam-einarr/front.svg",
  15113. extra: 2822 / 2666
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(1.5, "meters"),
  15118. weight: math.unit(68, "kg"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/liam-einarr/back.svg",
  15122. extra: 2822 / 2666,
  15123. bottom: 0.015
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(1.5, "meters"),
  15131. default: true
  15132. },
  15133. {
  15134. name: "Macro",
  15135. height: math.unit(150, "meters")
  15136. },
  15137. {
  15138. name: "Megamacro",
  15139. height: math.unit(35, "km")
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Linda" },
  15145. {
  15146. front: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(75, "kg"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/linda/front.svg",
  15152. extra: 930 / 874,
  15153. bottom: 0.004
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(6, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Caylex" },
  15167. {
  15168. front: {
  15169. height: math.unit(6 + 8 / 12, "feet"),
  15170. weight: math.unit(220, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/caylex/front.svg",
  15174. extra: 821 / 772,
  15175. bottom: 0.07
  15176. }
  15177. },
  15178. back: {
  15179. height: math.unit(6 + 8 / 12, "feet"),
  15180. weight: math.unit(220, "lb"),
  15181. name: "Back",
  15182. image: {
  15183. source: "./media/characters/caylex/back.svg",
  15184. extra: 821 / 772,
  15185. bottom: 0.022
  15186. }
  15187. },
  15188. hand: {
  15189. height: math.unit(1.25, "feet"),
  15190. name: "Hand",
  15191. image: {
  15192. source: "./media/characters/caylex/hand.svg"
  15193. }
  15194. },
  15195. foot: {
  15196. height: math.unit(1.6, "feet"),
  15197. name: "Foot",
  15198. image: {
  15199. source: "./media/characters/caylex/foot.svg"
  15200. }
  15201. },
  15202. armored: {
  15203. height: math.unit(6 + 8 / 12, "feet"),
  15204. weight: math.unit(250, "lb"),
  15205. name: "Armored",
  15206. image: {
  15207. source: "./media/characters/caylex/armored.svg",
  15208. extra: 1420 / 1310,
  15209. bottom: 0.045
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 8 / 12, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Normal+",
  15221. height: math.unit(12, "feet")
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Alana" },
  15227. {
  15228. front: {
  15229. height: math.unit(7 + 6 / 12, "feet"),
  15230. weight: math.unit(288, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/alana/front.svg",
  15234. extra: 679 / 653,
  15235. bottom: 22.5 / 701
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(7 + 6 / 12, "feet")
  15243. },
  15244. {
  15245. name: "Large",
  15246. height: math.unit(50, "feet")
  15247. },
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(100, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Macro+",
  15255. height: math.unit(200, "feet")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Hasani" },
  15261. {
  15262. front: {
  15263. height: math.unit(6 + 1 / 12, "feet"),
  15264. weight: math.unit(210, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/hasani/front.svg",
  15268. extra: 244 / 232,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. back: {
  15273. height: math.unit(6 + 1 / 12, "feet"),
  15274. weight: math.unit(210, "lb"),
  15275. name: "Back",
  15276. image: {
  15277. source: "./media/characters/hasani/back.svg",
  15278. extra: 244 / 232,
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(6 + 1 / 12, "feet")
  15287. },
  15288. {
  15289. name: "Macro",
  15290. height: math.unit(175, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Nita" },
  15297. {
  15298. front: {
  15299. height: math.unit(1.82, "meters"),
  15300. weight: math.unit(140, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/nita/front.svg",
  15304. extra: 2473 / 2363,
  15305. bottom: 0.01
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(1.82, "m")
  15313. },
  15314. {
  15315. name: "Macro",
  15316. height: math.unit(300, "m")
  15317. },
  15318. {
  15319. name: "Mistake Canon",
  15320. height: math.unit(0.5, "miles"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Big Mistake",
  15325. height: math.unit(13, "miles")
  15326. },
  15327. {
  15328. name: "Playing God",
  15329. height: math.unit(2450, "miles")
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Shiriko" },
  15335. {
  15336. front: {
  15337. height: math.unit(4, "feet"),
  15338. weight: math.unit(120, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/shiriko/front.svg",
  15342. extra: 195 / 188
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(4, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Deja" },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. name: "front",
  15360. image: {
  15361. source: "./media/characters/deja/front.svg",
  15362. extra: 926 / 840,
  15363. bottom: 0.07
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Planck Length",
  15370. height: math.unit(1.6e-35, "meters")
  15371. },
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(30.48, "meters"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Universal",
  15379. height: math.unit(8.8e26, "meters")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Anima" },
  15385. {
  15386. side: {
  15387. height: math.unit(8, "feet"),
  15388. weight: math.unit(6300, "lb"),
  15389. name: "Side",
  15390. image: {
  15391. source: "./media/characters/anima/side.svg",
  15392. bottom: 0.035
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(8, "feet"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Bianca" },
  15406. {
  15407. front: {
  15408. height: math.unit(8, "feet"),
  15409. weight: math.unit(350, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/bianca/front.svg",
  15413. extra: 234 / 225,
  15414. bottom: 0.03
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(8, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Adinia" },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/adinia/front.svg",
  15435. extra: 1845 / 1672,
  15436. bottom: 0.02
  15437. }
  15438. },
  15439. back: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Back",
  15443. image: {
  15444. source: "./media/characters/adinia/back.svg",
  15445. extra: 1845 / 1672,
  15446. bottom: 0.002
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(11 + 5 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Lykasa" },
  15460. {
  15461. front: {
  15462. height: math.unit(3, "meters"),
  15463. weight: math.unit(200, "kg"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/lykasa/front.svg",
  15467. extra: 1076 / 976,
  15468. bottom: 0.06
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(3, "meters")
  15476. },
  15477. {
  15478. name: "Kaiju",
  15479. height: math.unit(120, "meters"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Mega Kaiju",
  15484. height: math.unit(240, "km")
  15485. },
  15486. {
  15487. name: "Giga Kaiju",
  15488. height: math.unit(400, "megameters")
  15489. },
  15490. {
  15491. name: "Tera Kaiju",
  15492. height: math.unit(800, "gigameters")
  15493. },
  15494. {
  15495. name: "Kaiju Dragon Goddess",
  15496. height: math.unit(26, "zettaparsecs")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Malfaren" },
  15502. {
  15503. side: {
  15504. height: math.unit(283 / 124 * 6, "feet"),
  15505. weight: math.unit(35000, "lb"),
  15506. name: "Side",
  15507. image: {
  15508. source: "./media/characters/malfaren/side.svg",
  15509. extra: 2500 / 1010,
  15510. bottom: 0.01
  15511. }
  15512. },
  15513. front: {
  15514. height: math.unit(22.36, "feet"),
  15515. weight: math.unit(35000, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/malfaren/front.svg",
  15519. extra: 1631 / 1476,
  15520. bottom: 0.01
  15521. }
  15522. },
  15523. maw: {
  15524. height: math.unit(6.9, "feet"),
  15525. name: "Maw",
  15526. image: {
  15527. source: "./media/characters/malfaren/maw.svg"
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Big",
  15534. height: math.unit(283 / 162 * 6, "feet"),
  15535. },
  15536. {
  15537. name: "Bigger",
  15538. height: math.unit(283 / 124 * 6, "feet")
  15539. },
  15540. {
  15541. name: "Massive",
  15542. height: math.unit(283 / 92 * 6, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "👀💦",
  15547. height: math.unit(283 / 73 * 6, "feet"),
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Kernel" },
  15553. {
  15554. front: {
  15555. height: math.unit(1.7, "m"),
  15556. weight: math.unit(70, "kg"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/kernel/front.svg",
  15560. extra: 222 / 210,
  15561. bottom: 0.007
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Nano",
  15568. height: math.unit(17, "micrometers")
  15569. },
  15570. {
  15571. name: "Micro",
  15572. height: math.unit(1.7, "mm")
  15573. },
  15574. {
  15575. name: "Small",
  15576. height: math.unit(1.7, "cm")
  15577. },
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(1.7, "m"),
  15581. default: true
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Jayne Folest" },
  15587. {
  15588. front: {
  15589. height: math.unit(1.75, "meters"),
  15590. weight: math.unit(65, "kg"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/jayne-folest/front.svg",
  15594. extra: 2115 / 2007,
  15595. bottom: 0.02
  15596. }
  15597. },
  15598. back: {
  15599. height: math.unit(1.75, "meters"),
  15600. weight: math.unit(65, "kg"),
  15601. name: "Back",
  15602. image: {
  15603. source: "./media/characters/jayne-folest/back.svg",
  15604. extra: 2115 / 2007,
  15605. bottom: 0.005
  15606. }
  15607. },
  15608. frontClothed: {
  15609. height: math.unit(1.75, "meters"),
  15610. weight: math.unit(65, "kg"),
  15611. name: "Front (Clothed)",
  15612. image: {
  15613. source: "./media/characters/jayne-folest/front-clothed.svg",
  15614. extra: 2115 / 2007,
  15615. bottom: 0.035
  15616. }
  15617. },
  15618. hand: {
  15619. height: math.unit(1 / 1.260, "feet"),
  15620. name: "Hand",
  15621. image: {
  15622. source: "./media/characters/jayne-folest/hand.svg"
  15623. }
  15624. },
  15625. foot: {
  15626. height: math.unit(1 / 0.918, "feet"),
  15627. name: "Foot",
  15628. image: {
  15629. source: "./media/characters/jayne-folest/foot.svg"
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Micro",
  15636. height: math.unit(4, "cm")
  15637. },
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(1.75, "meters")
  15641. },
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(47.5, "meters"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Algier" },
  15651. {
  15652. front: {
  15653. height: math.unit(180, "cm"),
  15654. weight: math.unit(70, "kg"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/algier/front.svg",
  15658. extra: 596 / 572,
  15659. bottom: 0.04
  15660. }
  15661. },
  15662. back: {
  15663. height: math.unit(180, "cm"),
  15664. weight: math.unit(70, "kg"),
  15665. name: "Back",
  15666. image: {
  15667. source: "./media/characters/algier/back.svg",
  15668. extra: 596 / 572,
  15669. bottom: 0.025
  15670. }
  15671. },
  15672. frontdressed: {
  15673. height: math.unit(180, "cm"),
  15674. weight: math.unit(150, "kg"),
  15675. name: "Front-dressed",
  15676. image: {
  15677. source: "./media/characters/algier/front-dressed.svg",
  15678. extra: 596 / 572,
  15679. bottom: 0.038
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Micro",
  15686. height: math.unit(5, "cm")
  15687. },
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(180, "cm"),
  15691. default: true
  15692. },
  15693. {
  15694. name: "Macro",
  15695. height: math.unit(64, "m")
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Pretzel" },
  15701. {
  15702. upright: {
  15703. height: math.unit(7, "feet"),
  15704. weight: math.unit(300, "lb"),
  15705. name: "Upright",
  15706. image: {
  15707. source: "./media/characters/pretzel/upright.svg",
  15708. extra: 534 / 522,
  15709. bottom: 0.065
  15710. }
  15711. },
  15712. sprawling: {
  15713. height: math.unit(3.75, "feet"),
  15714. weight: math.unit(300, "lb"),
  15715. name: "Sprawling",
  15716. image: {
  15717. source: "./media/characters/pretzel/sprawling.svg",
  15718. extra: 314 / 281,
  15719. bottom: 0.1
  15720. }
  15721. },
  15722. tongue: {
  15723. height: math.unit(2, "feet"),
  15724. name: "Tongue",
  15725. image: {
  15726. source: "./media/characters/pretzel/tongue.svg"
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(7, "feet"),
  15734. default: true
  15735. },
  15736. {
  15737. name: "Oversized",
  15738. height: math.unit(15, "feet")
  15739. },
  15740. {
  15741. name: "Huge",
  15742. height: math.unit(30, "feet")
  15743. },
  15744. {
  15745. name: "Macro",
  15746. height: math.unit(250, "feet")
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Roxi" },
  15752. {
  15753. sideFront: {
  15754. height: math.unit(5 + 2 / 12, "feet"),
  15755. weight: math.unit(120, "lb"),
  15756. name: "Front Side",
  15757. image: {
  15758. source: "./media/characters/roxi/side-front.svg",
  15759. extra: 2924 / 2717,
  15760. bottom: 0.08
  15761. }
  15762. },
  15763. sideBack: {
  15764. height: math.unit(5 + 2 / 12, "feet"),
  15765. weight: math.unit(120, "lb"),
  15766. name: "Back Side",
  15767. image: {
  15768. source: "./media/characters/roxi/side-back.svg",
  15769. extra: 2904 / 2693,
  15770. bottom: 0.06
  15771. }
  15772. },
  15773. front: {
  15774. height: math.unit(5 + 2 / 12, "feet"),
  15775. weight: math.unit(120, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/roxi/front.svg",
  15779. extra: 2028 / 1907,
  15780. bottom: 0.01
  15781. }
  15782. },
  15783. frontAlt: {
  15784. height: math.unit(5 + 2 / 12, "feet"),
  15785. weight: math.unit(120, "lb"),
  15786. name: "Front (Alt)",
  15787. image: {
  15788. source: "./media/characters/roxi/front-alt.svg",
  15789. extra: 1828 / 1798,
  15790. bottom: 0.01
  15791. }
  15792. },
  15793. sitting: {
  15794. height: math.unit(2.8, "feet"),
  15795. weight: math.unit(120, "lb"),
  15796. name: "Sitting",
  15797. image: {
  15798. source: "./media/characters/roxi/sitting.svg",
  15799. extra: 2660 / 2462,
  15800. bottom: 0.1
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(5 + 2 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Shadow" },
  15814. {
  15815. side: {
  15816. height: math.unit(55, "feet"),
  15817. weight: math.unit(153, "tons"),
  15818. name: "Side",
  15819. image: {
  15820. source: "./media/characters/shadow/side.svg",
  15821. extra: 701 / 628,
  15822. bottom: 0.02
  15823. }
  15824. },
  15825. flying: {
  15826. height: math.unit(145, "feet"),
  15827. weight: math.unit(153, "tons"),
  15828. name: "Flying",
  15829. image: {
  15830. source: "./media/characters/shadow/flying.svg"
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(55, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Marcie" },
  15844. {
  15845. front: {
  15846. height: math.unit(6, "feet"),
  15847. weight: math.unit(200, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/marcie/front.svg",
  15851. extra: 960 / 876,
  15852. bottom: 58 / 1017.87
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(1, "mile"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Kachina" },
  15866. {
  15867. front: {
  15868. height: math.unit(7, "feet"),
  15869. weight: math.unit(200, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/kachina/front.svg",
  15873. extra: 1290.68 / 1119,
  15874. bottom: 36.5 / 1327.18
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(7, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Kash" },
  15888. {
  15889. looking: {
  15890. height: math.unit(2, "meters"),
  15891. weight: math.unit(300, "kg"),
  15892. name: "Looking",
  15893. image: {
  15894. source: "./media/characters/kash/looking.svg",
  15895. extra: 474 / 344,
  15896. bottom: 0.03
  15897. }
  15898. },
  15899. side: {
  15900. height: math.unit(2, "meters"),
  15901. weight: math.unit(300, "kg"),
  15902. name: "Side",
  15903. image: {
  15904. source: "./media/characters/kash/side.svg",
  15905. extra: 302 / 251,
  15906. bottom: 0.03
  15907. }
  15908. },
  15909. front: {
  15910. height: math.unit(2, "meters"),
  15911. weight: math.unit(300, "kg"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/kash/front.svg",
  15915. extra: 495 / 360,
  15916. bottom: 0.015
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(2, "meters"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Big",
  15928. height: math.unit(3, "meters")
  15929. },
  15930. {
  15931. name: "Large",
  15932. height: math.unit(5, "meters")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Lalim" },
  15938. {
  15939. feeding: {
  15940. height: math.unit(6.7, "feet"),
  15941. weight: math.unit(350, "lb"),
  15942. name: "Feeding",
  15943. image: {
  15944. source: "./media/characters/lalim/feeding.svg",
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(6.7, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "De'Vout" },
  15958. {
  15959. front: {
  15960. height: math.unit(9.5, "feet"),
  15961. weight: math.unit(600, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/de'vout/front.svg",
  15965. extra: 1443 / 1328,
  15966. bottom: 0.025
  15967. }
  15968. },
  15969. back: {
  15970. height: math.unit(9.5, "feet"),
  15971. weight: math.unit(600, "lb"),
  15972. name: "Back",
  15973. image: {
  15974. source: "./media/characters/de'vout/back.svg",
  15975. extra: 1443 / 1328
  15976. }
  15977. },
  15978. frontDressed: {
  15979. height: math.unit(9.5, "feet"),
  15980. weight: math.unit(600, "lb"),
  15981. name: "Front (Dressed",
  15982. image: {
  15983. source: "./media/characters/de'vout/front-dressed.svg",
  15984. extra: 1443 / 1328,
  15985. bottom: 0.025
  15986. }
  15987. },
  15988. backDressed: {
  15989. height: math.unit(9.5, "feet"),
  15990. weight: math.unit(600, "lb"),
  15991. name: "Back (Dressed",
  15992. image: {
  15993. source: "./media/characters/de'vout/back-dressed.svg",
  15994. extra: 1443 / 1328
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(9.5, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Talana" },
  16008. {
  16009. front: {
  16010. height: math.unit(8, "feet"),
  16011. weight: math.unit(225, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/talana/front.svg",
  16015. extra: 1410 / 1300,
  16016. bottom: 0.015
  16017. }
  16018. },
  16019. frontDressed: {
  16020. height: math.unit(8, "feet"),
  16021. weight: math.unit(225, "lb"),
  16022. name: "Front (Dressed",
  16023. image: {
  16024. source: "./media/characters/talana/front-dressed.svg",
  16025. extra: 1410 / 1300,
  16026. bottom: 0.015
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(8, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Xeauvok" },
  16040. {
  16041. side: {
  16042. height: math.unit(7.2, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Side",
  16045. image: {
  16046. source: "./media/characters/xeauvok/side.svg",
  16047. extra: 1975 / 1523,
  16048. bottom: 0.07
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(7.2, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Zara" },
  16062. {
  16063. side: {
  16064. height: math.unit(10, "feet"),
  16065. weight: math.unit(900, "kg"),
  16066. name: "Side",
  16067. image: {
  16068. source: "./media/characters/zara/side.svg",
  16069. extra: 504 / 498
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(10, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Richard (Dragon)" },
  16083. {
  16084. side: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Side",
  16088. image: {
  16089. source: "./media/characters/richard-dragon/side.svg",
  16090. extra: 845 / 340,
  16091. bottom: 0.017
  16092. }
  16093. },
  16094. maw: {
  16095. height: math.unit(2.97, "feet"),
  16096. name: "Maw",
  16097. image: {
  16098. source: "./media/characters/richard-dragon/maw.svg"
  16099. }
  16100. },
  16101. },
  16102. [
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Richard (Smeargle)" },
  16107. {
  16108. front: {
  16109. height: math.unit(4, "feet"),
  16110. weight: math.unit(100, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/richard-smeargle/front.svg",
  16114. extra: 2952 / 2820,
  16115. bottom: 0.028
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(4, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Dynamax",
  16127. height: math.unit(20, "meters")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Klay" },
  16133. {
  16134. front: {
  16135. height: math.unit(6, "feet"),
  16136. weight: math.unit(110, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/klay/front.svg",
  16140. extra: 962 / 883,
  16141. bottom: 0.04
  16142. }
  16143. },
  16144. back: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(110, "lb"),
  16147. name: "Back",
  16148. image: {
  16149. source: "./media/characters/klay/back.svg",
  16150. extra: 962 / 883
  16151. }
  16152. },
  16153. beans: {
  16154. height: math.unit(1.15, "feet"),
  16155. name: "Beans",
  16156. image: {
  16157. source: "./media/characters/klay/beans.svg"
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Micro",
  16164. height: math.unit(6, "inches")
  16165. },
  16166. {
  16167. name: "Mini",
  16168. height: math.unit(3, "feet")
  16169. },
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(6, "feet"),
  16173. default: true
  16174. },
  16175. {
  16176. name: "Big",
  16177. height: math.unit(25, "feet")
  16178. },
  16179. {
  16180. name: "Macro",
  16181. height: math.unit(100, "feet")
  16182. },
  16183. {
  16184. name: "Megamacro",
  16185. height: math.unit(400, "feet")
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Marcus" },
  16191. {
  16192. front: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(160, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/marcus/front.svg",
  16198. extra: 734 / 676,
  16199. bottom: 0.03
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Little",
  16206. height: math.unit(6, "feet")
  16207. },
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(110, "feet"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Macro",
  16215. height: math.unit(250, "feet")
  16216. },
  16217. {
  16218. name: "Megamacro",
  16219. height: math.unit(1000, "feet")
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Claude DelRoute" },
  16225. {
  16226. front: {
  16227. height: math.unit(7, "feet"),
  16228. weight: math.unit(275, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/claude-delroute/front.svg",
  16232. extra: 230 / 214,
  16233. bottom: 0.007
  16234. }
  16235. },
  16236. side: {
  16237. height: math.unit(7, "feet"),
  16238. weight: math.unit(275, "lb"),
  16239. name: "Side",
  16240. image: {
  16241. source: "./media/characters/claude-delroute/side.svg",
  16242. extra: 222 / 214,
  16243. bottom: 0.01
  16244. }
  16245. },
  16246. back: {
  16247. height: math.unit(7, "feet"),
  16248. weight: math.unit(275, "lb"),
  16249. name: "Back",
  16250. image: {
  16251. source: "./media/characters/claude-delroute/back.svg",
  16252. extra: 230 / 214,
  16253. bottom: 0.015
  16254. }
  16255. },
  16256. maw: {
  16257. height: math.unit(0.6407, "meters"),
  16258. name: "Maw",
  16259. image: {
  16260. source: "./media/characters/claude-delroute/maw.svg"
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(7, "feet"),
  16268. default: true
  16269. },
  16270. {
  16271. name: "Lorge",
  16272. height: math.unit(20, "feet")
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Dragonien" },
  16278. {
  16279. front: {
  16280. height: math.unit(8 + 4 / 12, "feet"),
  16281. weight: math.unit(600, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/dragonien/front.svg",
  16285. extra: 100 / 94,
  16286. bottom: 3.3 / 103.3445
  16287. }
  16288. },
  16289. back: {
  16290. height: math.unit(8 + 4 / 12, "feet"),
  16291. weight: math.unit(600, "lb"),
  16292. name: "Back",
  16293. image: {
  16294. source: "./media/characters/dragonien/back.svg",
  16295. extra: 776 / 746,
  16296. bottom: 6.4 / 782.0616
  16297. }
  16298. },
  16299. foot: {
  16300. height: math.unit(1.54, "feet"),
  16301. name: "Foot",
  16302. image: {
  16303. source: "./media/characters/dragonien/foot.svg",
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(8 + 4 / 12, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(200, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(1, "mile")
  16320. },
  16321. {
  16322. name: "Gigamacro",
  16323. height: math.unit(1000, "miles")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Desta" },
  16329. {
  16330. front: {
  16331. height: math.unit(5 + 2 / 12, "feet"),
  16332. weight: math.unit(110, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/desta/front.svg",
  16336. extra: 1482 / 1417
  16337. }
  16338. },
  16339. side: {
  16340. height: math.unit(5 + 2 / 12, "feet"),
  16341. weight: math.unit(110, "lb"),
  16342. name: "Side",
  16343. image: {
  16344. source: "./media/characters/desta/side.svg",
  16345. extra: 2579 / 2491,
  16346. bottom: 0.053
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(6, "inches")
  16354. },
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(5 + 2 / 12, "feet"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(62, "feet")
  16363. },
  16364. {
  16365. name: "Megamacro",
  16366. height: math.unit(1800, "feet")
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Storm Alystar" },
  16372. {
  16373. front: {
  16374. height: math.unit(10, "feet"),
  16375. weight: math.unit(700, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/storm-alystar/front.svg",
  16379. extra: 2112 / 1898,
  16380. bottom: 0.034
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Micro",
  16387. height: math.unit(3.5, "inches")
  16388. },
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(10, "feet"),
  16392. default: true
  16393. },
  16394. {
  16395. name: "Macro",
  16396. height: math.unit(400, "feet")
  16397. },
  16398. {
  16399. name: "Deific",
  16400. height: math.unit(60, "miles")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Ilia" },
  16406. {
  16407. front: {
  16408. height: math.unit(2.35, "meters"),
  16409. weight: math.unit(119, "kg"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/ilia/front.svg",
  16413. extra: 1285 / 1255,
  16414. bottom: 0.06
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(2.35, "meters")
  16422. },
  16423. {
  16424. name: "Macro",
  16425. height: math.unit(140, "meters"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Megamacro",
  16430. height: math.unit(100, "miles")
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "KingDead" },
  16436. {
  16437. front: {
  16438. height: math.unit(6 + 5 / 12, "feet"),
  16439. weight: math.unit(190, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/kingdead/front.svg",
  16443. extra: 1228 / 1177
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Micro",
  16450. height: math.unit(7, "inches")
  16451. },
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(6 + 5 / 12, "feet")
  16455. },
  16456. {
  16457. name: "Macro",
  16458. height: math.unit(150, "feet"),
  16459. default: true
  16460. },
  16461. {
  16462. name: "Megamacro",
  16463. height: math.unit(200, "miles")
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Kyrehx" },
  16469. {
  16470. front: {
  16471. height: math.unit(8, "feet"),
  16472. weight: math.unit(600, "lb"),
  16473. name: "Front",
  16474. image: {
  16475. source: "./media/characters/kyrehx/front.svg",
  16476. extra: 1195 / 1095,
  16477. bottom: 0.034
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Micro",
  16484. height: math.unit(2, "inches")
  16485. },
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(8, "feet"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Macro",
  16493. height: math.unit(255, "feet")
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Xang" },
  16499. {
  16500. front: {
  16501. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16502. weight: math.unit(184, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/xang/front.svg",
  16506. extra: 845 / 755
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(0.935 * 146, "feet")
  16519. },
  16520. {
  16521. name: "Megamacro",
  16522. height: math.unit(0.935 * 3, "miles")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Doc Weardno" },
  16528. {
  16529. frontDressed: {
  16530. height: math.unit(5 + 7 / 12, "feet"),
  16531. weight: math.unit(140, "lb"),
  16532. name: "Front (Dressed)",
  16533. image: {
  16534. source: "./media/characters/doc-weardno/front-dressed.svg",
  16535. extra: 263 / 234
  16536. }
  16537. },
  16538. backDressed: {
  16539. height: math.unit(5 + 7 / 12, "feet"),
  16540. weight: math.unit(140, "lb"),
  16541. name: "Back (Dressed)",
  16542. image: {
  16543. source: "./media/characters/doc-weardno/back-dressed.svg",
  16544. extra: 266 / 238
  16545. }
  16546. },
  16547. front: {
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. weight: math.unit(140, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/doc-weardno/front.svg",
  16553. extra: 254 / 233
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Micro",
  16560. height: math.unit(3, "inches")
  16561. },
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(5 + 7 / 12, "feet"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Macro",
  16569. height: math.unit(25, "feet")
  16570. },
  16571. {
  16572. name: "Megamacro",
  16573. height: math.unit(2, "miles")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Seth Whilst" },
  16579. {
  16580. front: {
  16581. height: math.unit(6 + 2 / 12, "feet"),
  16582. weight: math.unit(153, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/seth-whilst/front.svg",
  16586. bottom: 0.07
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Micro",
  16593. height: math.unit(5, "inches")
  16594. },
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(6 + 2 / 12, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Pocket Jabari" },
  16604. {
  16605. front: {
  16606. height: math.unit(3, "inches"),
  16607. weight: math.unit(8, "grams"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/pocket-jabari/front.svg",
  16611. extra: 1024 / 974,
  16612. bottom: 0.039
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Minimicro",
  16619. height: math.unit(8, "mm")
  16620. },
  16621. {
  16622. name: "Micro",
  16623. height: math.unit(3, "inches"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(3, "feet")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Sapphy" },
  16634. {
  16635. front: {
  16636. height: math.unit(15, "feet"),
  16637. weight: math.unit(3280, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/sapphy/front.svg",
  16641. extra: 671 / 577,
  16642. bottom: 0.085
  16643. }
  16644. },
  16645. back: {
  16646. height: math.unit(15, "feet"),
  16647. weight: math.unit(3280, "lb"),
  16648. name: "Back",
  16649. image: {
  16650. source: "./media/characters/sapphy/back.svg",
  16651. extra: 631 / 607,
  16652. bottom: 0.045
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(15, "feet")
  16660. },
  16661. {
  16662. name: "Casual Macro",
  16663. height: math.unit(120, "feet")
  16664. },
  16665. {
  16666. name: "Macro",
  16667. height: math.unit(2150, "feet"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "Megamacro",
  16672. height: math.unit(8, "miles")
  16673. },
  16674. {
  16675. name: "Galaxy Mom",
  16676. height: math.unit(6, "megalightyears")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Kiro" },
  16682. {
  16683. front: {
  16684. height: math.unit(6, "feet"),
  16685. weight: math.unit(170, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/kiro/front.svg",
  16689. extra: 1064 / 1012,
  16690. bottom: 0.052
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Micro",
  16697. height: math.unit(6, "inches")
  16698. },
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(6, "feet"),
  16702. default: true
  16703. },
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(72, "feet")
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Irishfox" },
  16712. {
  16713. front: {
  16714. height: math.unit(5 + 9 / 12, "feet"),
  16715. weight: math.unit(175, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/irishfox/front.svg",
  16719. extra: 1912 / 1680,
  16720. bottom: 0.02
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Nano",
  16727. height: math.unit(1, "mm")
  16728. },
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(2, "inches")
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(5 + 9 / 12, "feet"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Macro",
  16740. height: math.unit(45, "feet")
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Aronai Sieyes" },
  16746. {
  16747. front: {
  16748. height: math.unit(6 + 1 / 12, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/aronai-sieyes/front.svg",
  16753. extra: 1556 / 1480,
  16754. bottom: 0.015
  16755. }
  16756. },
  16757. side: {
  16758. height: math.unit(6 + 1 / 12, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Side",
  16761. image: {
  16762. source: "./media/characters/aronai-sieyes/side.svg",
  16763. extra: 1433 / 1390,
  16764. bottom: 0.0393
  16765. }
  16766. },
  16767. back: {
  16768. height: math.unit(6 + 1 / 12, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Back",
  16771. image: {
  16772. source: "./media/characters/aronai-sieyes/back.svg",
  16773. extra: 1544 / 1494,
  16774. bottom: 0.02
  16775. }
  16776. },
  16777. frontClothed: {
  16778. height: math.unit(6 + 1 / 12, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Front (Clothed)",
  16781. image: {
  16782. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16783. extra: 1582 / 1527
  16784. }
  16785. },
  16786. feral: {
  16787. height: math.unit(18, "feet"),
  16788. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16789. name: "Feral",
  16790. image: {
  16791. source: "./media/characters/aronai-sieyes/feral.svg",
  16792. extra: 1530 / 1240,
  16793. bottom: 0.035
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Micro",
  16800. height: math.unit(2, "inches")
  16801. },
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(6 + 1 / 12, "feet"),
  16805. default: true
  16806. }
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Xuna" },
  16811. {
  16812. front: {
  16813. height: math.unit(12, "feet"),
  16814. weight: math.unit(410, "kg"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/xuna/front.svg",
  16818. extra: 2184 / 1980
  16819. }
  16820. },
  16821. side: {
  16822. height: math.unit(12, "feet"),
  16823. weight: math.unit(410, "kg"),
  16824. name: "Side",
  16825. image: {
  16826. source: "./media/characters/xuna/side.svg",
  16827. extra: 2184 / 1980
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(12, "feet"),
  16832. weight: math.unit(410, "kg"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/xuna/back.svg",
  16836. extra: 2184 / 1980
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Nano glow",
  16843. height: math.unit(10, "nm")
  16844. },
  16845. {
  16846. name: "Micro floof",
  16847. height: math.unit(0.3, "m")
  16848. },
  16849. {
  16850. name: "Huggable softy boi",
  16851. height: math.unit(3.6576, "m"),
  16852. default: true
  16853. },
  16854. {
  16855. name: "Admirable floof",
  16856. height: math.unit(80, "meters")
  16857. },
  16858. {
  16859. name: "Gentle macro",
  16860. height: math.unit(300, "meters")
  16861. },
  16862. {
  16863. name: "Very careful floof",
  16864. height: math.unit(3200, "meters")
  16865. },
  16866. {
  16867. name: "The mega floof",
  16868. height: math.unit(36000, "meters")
  16869. },
  16870. {
  16871. name: "Giga-fur-Wicker",
  16872. height: math.unit(4800000, "meters")
  16873. },
  16874. {
  16875. name: "Licky world",
  16876. height: math.unit(20000000, "meters")
  16877. },
  16878. {
  16879. name: "Floofy cyan sun",
  16880. height: math.unit(1500000000, "meters")
  16881. },
  16882. {
  16883. name: "Milky Wicker",
  16884. height: math.unit(1000000000000000000000, "meters")
  16885. },
  16886. {
  16887. name: "The observing Wicker",
  16888. height: math.unit(999999999999999999999999999, "meters")
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Arokha Sieyes" },
  16894. {
  16895. front: {
  16896. height: math.unit(5 + 9 / 12, "feet"),
  16897. weight: math.unit(150, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/arokha-sieyes/front.svg",
  16901. extra: 1425 / 1284,
  16902. bottom: 0.05
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(5 + 9 / 12, "feet")
  16910. },
  16911. {
  16912. name: "Macro",
  16913. height: math.unit(30, "meters"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Arokh Sieyes" },
  16920. {
  16921. front: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(180, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/arokh-sieyes/front.svg",
  16927. extra: 1830 / 1769,
  16928. bottom: 0.01
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(6, "feet")
  16936. },
  16937. {
  16938. name: "Macro",
  16939. height: math.unit(30, "meters"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Goldeneye" },
  16946. {
  16947. side: {
  16948. height: math.unit(13 + 1 / 12, "feet"),
  16949. weight: math.unit(8.5, "tonnes"),
  16950. name: "Side",
  16951. image: {
  16952. source: "./media/characters/goldeneye/side.svg",
  16953. extra: 1182 / 778,
  16954. bottom: 0.067
  16955. }
  16956. },
  16957. paw: {
  16958. height: math.unit(3.4, "feet"),
  16959. name: "Paw",
  16960. image: {
  16961. source: "./media/characters/goldeneye/paw.svg"
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(13 + 1 / 12, "feet"),
  16969. default: true
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Leonardo Lycheborne" },
  16975. {
  16976. front: {
  16977. height: math.unit(6 + 1 / 12, "feet"),
  16978. weight: math.unit(210, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/leonardo-lycheborne/front.svg",
  16982. extra: 390 / 365,
  16983. bottom: 0.032
  16984. }
  16985. },
  16986. side: {
  16987. height: math.unit(6 + 1 / 12, "feet"),
  16988. weight: math.unit(210, "lb"),
  16989. name: "Side",
  16990. image: {
  16991. source: "./media/characters/leonardo-lycheborne/side.svg",
  16992. extra: 390 / 365,
  16993. bottom: 0.005
  16994. }
  16995. },
  16996. back: {
  16997. height: math.unit(6 + 1 / 12, "feet"),
  16998. weight: math.unit(210, "lb"),
  16999. name: "Back",
  17000. image: {
  17001. source: "./media/characters/leonardo-lycheborne/back.svg",
  17002. extra: 392 / 366,
  17003. bottom: 0.01
  17004. }
  17005. },
  17006. hand: {
  17007. height: math.unit(1.08, "feet"),
  17008. name: "Hand",
  17009. image: {
  17010. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17011. }
  17012. },
  17013. foot: {
  17014. height: math.unit(1.32, "feet"),
  17015. name: "Foot",
  17016. image: {
  17017. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17018. }
  17019. },
  17020. were: {
  17021. height: math.unit(20, "feet"),
  17022. weight: math.unit(7800, "lb"),
  17023. name: "Were",
  17024. image: {
  17025. source: "./media/characters/leonardo-lycheborne/were.svg",
  17026. extra: 308 / 294,
  17027. bottom: 0.048
  17028. }
  17029. },
  17030. feral: {
  17031. height: math.unit(7.5, "feet"),
  17032. weight: math.unit(600, "lb"),
  17033. name: "Feral",
  17034. image: {
  17035. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17036. extra: 210 / 186,
  17037. bottom: 0.108
  17038. }
  17039. },
  17040. taur: {
  17041. height: math.unit(11, "feet"),
  17042. weight: math.unit(3300, "lb"),
  17043. name: "Taur",
  17044. image: {
  17045. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17046. extra: 320 / 303,
  17047. bottom: 0.025
  17048. }
  17049. },
  17050. barghest: {
  17051. height: math.unit(11, "feet"),
  17052. weight: math.unit(1300, "lb"),
  17053. name: "Barghest",
  17054. image: {
  17055. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17056. extra: 323 / 302,
  17057. bottom: 0.027
  17058. }
  17059. },
  17060. dick: {
  17061. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17062. name: "Dick",
  17063. image: {
  17064. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17065. }
  17066. },
  17067. dickWere: {
  17068. height: math.unit((20) / 3.8, "feet"),
  17069. name: "Dick (Were)",
  17070. image: {
  17071. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(6 + 1 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Jet" },
  17085. {
  17086. front: {
  17087. height: math.unit(10, "feet"),
  17088. weight: math.unit(350, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/jet/front.svg",
  17092. extra: 2050 / 1980,
  17093. bottom: 0.013
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(10, "feet"),
  17098. weight: math.unit(350, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/jet/back.svg",
  17102. extra: 2050 / 1980,
  17103. bottom: 0.013
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Micro",
  17110. height: math.unit(6, "inches")
  17111. },
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(10, "feet"),
  17115. default: true
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(100, "feet")
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Tanarath" },
  17125. {
  17126. front: {
  17127. height: math.unit(15, "feet"),
  17128. weight: math.unit(2800, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/tanarath/front.svg",
  17132. extra: 2392 / 2220,
  17133. bottom: 0.03
  17134. }
  17135. },
  17136. back: {
  17137. height: math.unit(15, "feet"),
  17138. weight: math.unit(2800, "lb"),
  17139. name: "Back",
  17140. image: {
  17141. source: "./media/characters/tanarath/back.svg",
  17142. extra: 2392 / 2220,
  17143. bottom: 0.03
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(15, "feet"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Patty CattyBatty" },
  17157. {
  17158. front: {
  17159. height: math.unit(7 + 1 / 12, "feet"),
  17160. weight: math.unit(175, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/patty-cattybatty/front.svg",
  17164. extra: 908 / 874,
  17165. bottom: 0.025
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Micro",
  17172. height: math.unit(1, "inch")
  17173. },
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(7 + 1 / 12, "feet")
  17177. },
  17178. {
  17179. name: "Mini Macro",
  17180. height: math.unit(155, "feet")
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(1077, "feet")
  17185. },
  17186. {
  17187. name: "Mega Macro",
  17188. height: math.unit(47650, "feet"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Giga Macro",
  17193. height: math.unit(440, "miles")
  17194. },
  17195. {
  17196. name: "Tera Macro",
  17197. height: math.unit(8700, "miles")
  17198. },
  17199. {
  17200. name: "Planetary Macro",
  17201. height: math.unit(32700, "miles")
  17202. },
  17203. {
  17204. name: "Solar Macro",
  17205. height: math.unit(550000, "miles")
  17206. },
  17207. {
  17208. name: "Celestial Macro",
  17209. height: math.unit(2.5, "AU")
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Cappu" },
  17215. {
  17216. front: {
  17217. height: math.unit(4 + 5 / 12, "feet"),
  17218. weight: math.unit(90, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/cappu/front.svg",
  17222. extra: 1247 / 1152,
  17223. bottom: 0.012
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(4 + 5 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Sebi" },
  17237. {
  17238. frontDressed: {
  17239. height: math.unit(70, "cm"),
  17240. weight: math.unit(6, "kg"),
  17241. name: "Front (Dressed)",
  17242. image: {
  17243. source: "./media/characters/sebi/front-dressed.svg",
  17244. extra: 713.5 / 686.5,
  17245. bottom: 0.003
  17246. }
  17247. },
  17248. front: {
  17249. height: math.unit(70, "cm"),
  17250. weight: math.unit(5, "kg"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/sebi/front.svg",
  17254. extra: 713.5 / 686.5,
  17255. bottom: 0.003
  17256. }
  17257. }
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(70, "cm"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Macro",
  17267. height: math.unit(8, "meters")
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Typhek" },
  17273. {
  17274. front: {
  17275. height: math.unit(6, "feet"),
  17276. weight: math.unit(150, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/typhek/front.svg",
  17280. extra: 1948 / 1929,
  17281. bottom: 0.025
  17282. }
  17283. },
  17284. side: {
  17285. height: math.unit(6, "feet"),
  17286. weight: math.unit(150, "lb"),
  17287. name: "Side",
  17288. image: {
  17289. source: "./media/characters/typhek/side.svg",
  17290. extra: 2034 / 2010,
  17291. bottom: 0.003
  17292. }
  17293. },
  17294. back: {
  17295. height: math.unit(6, "feet"),
  17296. weight: math.unit(150, "lb"),
  17297. name: "Back",
  17298. image: {
  17299. source: "./media/characters/typhek/back.svg",
  17300. extra: 2005 / 1978,
  17301. bottom: 0.004
  17302. }
  17303. },
  17304. palm: {
  17305. height: math.unit(1.2, "feet"),
  17306. name: "Palm",
  17307. image: {
  17308. source: "./media/characters/typhek/palm.svg"
  17309. }
  17310. },
  17311. fist: {
  17312. height: math.unit(1.1, "feet"),
  17313. name: "Fist",
  17314. image: {
  17315. source: "./media/characters/typhek/fist.svg"
  17316. }
  17317. },
  17318. foot: {
  17319. height: math.unit(1.57, "feet"),
  17320. name: "Foot",
  17321. image: {
  17322. source: "./media/characters/typhek/foot.svg"
  17323. }
  17324. },
  17325. sole: {
  17326. height: math.unit(2.05, "feet"),
  17327. name: "Sole",
  17328. image: {
  17329. source: "./media/characters/typhek/sole.svg"
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Macro",
  17336. height: math.unit(40, "stories"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Megamacro",
  17341. height: math.unit(1, "mile")
  17342. },
  17343. {
  17344. name: "Gigamacro",
  17345. height: math.unit(4000, "solarradii")
  17346. },
  17347. {
  17348. name: "Universal",
  17349. height: math.unit(1.1, "universes")
  17350. }
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Kassy" },
  17355. {
  17356. side: {
  17357. height: math.unit(5 + 7 / 12, "feet"),
  17358. weight: math.unit(150, "lb"),
  17359. name: "Side",
  17360. image: {
  17361. source: "./media/characters/kassy/side.svg",
  17362. extra: 1280 / 1225,
  17363. bottom: 0.002
  17364. }
  17365. },
  17366. front: {
  17367. height: math.unit(5 + 7 / 12, "feet"),
  17368. weight: math.unit(150, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/kassy/front.svg",
  17372. extra: 1280 / 1225,
  17373. bottom: 0.025
  17374. }
  17375. },
  17376. back: {
  17377. height: math.unit(5 + 7 / 12, "feet"),
  17378. weight: math.unit(150, "lb"),
  17379. name: "Back",
  17380. image: {
  17381. source: "./media/characters/kassy/back.svg",
  17382. extra: 1280 / 1225,
  17383. bottom: 0.002
  17384. }
  17385. },
  17386. foot: {
  17387. height: math.unit(1.266, "feet"),
  17388. name: "Foot",
  17389. image: {
  17390. source: "./media/characters/kassy/foot.svg"
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(5 + 7 / 12, "feet")
  17398. },
  17399. {
  17400. name: "Macro",
  17401. height: math.unit(137, "feet"),
  17402. default: true
  17403. },
  17404. {
  17405. name: "Megamacro",
  17406. height: math.unit(1, "mile")
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Neil" },
  17412. {
  17413. front: {
  17414. height: math.unit(6 + 1 / 12, "feet"),
  17415. weight: math.unit(200, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/neil/front.svg",
  17419. extra: 1326 / 1250,
  17420. bottom: 0.023
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(6 + 1 / 12, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(200, "feet")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Atticus" },
  17438. {
  17439. front: {
  17440. height: math.unit(5 + 9 / 12, "feet"),
  17441. weight: math.unit(190, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/atticus/front.svg",
  17445. extra: 2934 / 2785,
  17446. bottom: 0.025
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 9 / 12, "feet"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(180, "feet")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Milo" },
  17464. {
  17465. side: {
  17466. height: math.unit(9, "feet"),
  17467. weight: math.unit(650, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/milo/side.svg",
  17471. extra: 2644 / 2310,
  17472. bottom: 0.032
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(9, "feet"),
  17480. default: true
  17481. },
  17482. {
  17483. name: "Macro",
  17484. height: math.unit(300, "feet")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Ijzer" },
  17490. {
  17491. side: {
  17492. height: math.unit(8, "meters"),
  17493. weight: math.unit(90000, "kg"),
  17494. name: "Side",
  17495. image: {
  17496. source: "./media/characters/ijzer/side.svg",
  17497. extra: 2756 / 1600,
  17498. bottom: 0.01
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Small",
  17505. height: math.unit(3, "meters")
  17506. },
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(8, "meters"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Normal+",
  17514. height: math.unit(10, "meters")
  17515. },
  17516. {
  17517. name: "Bigger",
  17518. height: math.unit(24, "meters")
  17519. },
  17520. {
  17521. name: "Huge",
  17522. height: math.unit(80, "meters")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Luca Cervicum" },
  17528. {
  17529. front: {
  17530. height: math.unit(6 + 2 / 12, "feet"),
  17531. weight: math.unit(153, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/luca-cervicum/front.svg",
  17535. extra: 370 / 327,
  17536. bottom: 0.015
  17537. }
  17538. },
  17539. back: {
  17540. height: math.unit(6 + 2 / 12, "feet"),
  17541. weight: math.unit(153, "lb"),
  17542. name: "Back",
  17543. image: {
  17544. source: "./media/characters/luca-cervicum/back.svg",
  17545. extra: 367 / 333,
  17546. bottom: 0.005
  17547. }
  17548. },
  17549. frontGear: {
  17550. height: math.unit(6 + 2 / 12, "feet"),
  17551. weight: math.unit(173, "lb"),
  17552. name: "Front (Gear)",
  17553. image: {
  17554. source: "./media/characters/luca-cervicum/front-gear.svg",
  17555. extra: 377 / 333,
  17556. bottom: 0.006
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(6 + 2 / 12, "feet"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Oliver" },
  17570. {
  17571. front: {
  17572. height: math.unit(6 + 1 / 12, "feet"),
  17573. weight: math.unit(304, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/oliver/front.svg",
  17577. extra: 157 / 143,
  17578. bottom: 0.08
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(6 + 1 / 12, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Shane" },
  17592. {
  17593. front: {
  17594. height: math.unit(5 + 7 / 12, "feet"),
  17595. weight: math.unit(140, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/shane/front.svg",
  17599. extra: 304 / 289,
  17600. bottom: 0.005
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(5 + 7 / 12, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Shin" },
  17614. {
  17615. front: {
  17616. height: math.unit(5 + 9 / 12, "feet"),
  17617. weight: math.unit(178, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/shin/front.svg",
  17621. extra: 159 / 151,
  17622. bottom: 0.015
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(5 + 9 / 12, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Xerxes" },
  17636. {
  17637. front: {
  17638. height: math.unit(5 + 10 / 12, "feet"),
  17639. weight: math.unit(168, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/xerxes/front.svg",
  17643. extra: 282 / 260,
  17644. bottom: 0.045
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(5 + 10 / 12, "feet"),
  17652. default: true
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Chaska" },
  17658. {
  17659. front: {
  17660. height: math.unit(6 + 7 / 12, "feet"),
  17661. weight: math.unit(208, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/chaska/front.svg",
  17665. extra: 332 / 319,
  17666. bottom: 0.015
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Normal",
  17673. height: math.unit(6 + 7 / 12, "feet"),
  17674. default: true
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Enuk" },
  17680. {
  17681. front: {
  17682. height: math.unit(5 + 8 / 12, "feet"),
  17683. weight: math.unit(208, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/enuk/front.svg",
  17687. extra: 437 / 406,
  17688. bottom: 0.02
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(5 + 8 / 12, "feet"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Bruun" },
  17702. {
  17703. front: {
  17704. height: math.unit(5 + 10 / 12, "feet"),
  17705. weight: math.unit(252, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/bruun/front.svg",
  17709. extra: 197 / 187,
  17710. bottom: 0.012
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(5 + 10 / 12, "feet"),
  17718. default: true
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Alexeev" },
  17724. {
  17725. front: {
  17726. height: math.unit(6 + 10 / 12, "feet"),
  17727. weight: math.unit(255, "lb"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/alexeev/front.svg",
  17731. extra: 213 / 200,
  17732. bottom: 0.05
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(6 + 10 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Evelyn" },
  17746. {
  17747. front: {
  17748. height: math.unit(2 + 8 / 12, "feet"),
  17749. weight: math.unit(22, "lb"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/evelyn/front.svg",
  17753. extra: 208 / 180
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(2 + 8 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Inca" },
  17767. {
  17768. front: {
  17769. height: math.unit(5 + 9 / 12, "feet"),
  17770. weight: math.unit(139, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/inca/front.svg",
  17774. extra: 294 / 291,
  17775. bottom: 0.03
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(5 + 9 / 12, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Magdalene" },
  17789. {
  17790. front: {
  17791. height: math.unit(5 + 1 / 12, "feet"),
  17792. weight: math.unit(84, "lb"),
  17793. name: "Front",
  17794. image: {
  17795. source: "./media/characters/magdalene/front.svg",
  17796. extra: 293 / 273
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(5 + 1 / 12, "feet"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Mera" },
  17810. {
  17811. front: {
  17812. height: math.unit(6 + 3 / 12, "feet"),
  17813. weight: math.unit(185, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/mera/front.svg",
  17817. extra: 291 / 277,
  17818. bottom: 0.03
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(6 + 3 / 12, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Ceres" },
  17832. {
  17833. front: {
  17834. height: math.unit(6 + 7 / 12, "feet"),
  17835. weight: math.unit(160, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/ceres/front.svg",
  17839. extra: 1023 / 950,
  17840. bottom: 0.027
  17841. }
  17842. },
  17843. back: {
  17844. height: math.unit(6 + 7 / 12, "feet"),
  17845. weight: math.unit(160, "lb"),
  17846. name: "Back",
  17847. image: {
  17848. source: "./media/characters/ceres/back.svg",
  17849. extra: 1023 / 950
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(6 + 7 / 12, "feet"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Kris" },
  17863. {
  17864. front: {
  17865. height: math.unit(5 + 10 / 12, "feet"),
  17866. weight: math.unit(150, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/kris/front.svg",
  17870. extra: 885 / 803,
  17871. bottom: 0.03
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(5 + 10 / 12, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Taluthus" },
  17885. {
  17886. front: {
  17887. height: math.unit(7, "feet"),
  17888. weight: math.unit(120, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/taluthus/front.svg",
  17892. extra: 903 / 833,
  17893. bottom: 0.015
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(7, "feet"),
  17901. default: true
  17902. },
  17903. {
  17904. name: "Macro",
  17905. height: math.unit(300, "feet")
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Dawn" },
  17911. {
  17912. front: {
  17913. height: math.unit(5 + 9 / 12, "feet"),
  17914. weight: math.unit(145, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/dawn/front.svg",
  17918. extra: 2094 / 2016,
  17919. bottom: 0.025
  17920. }
  17921. },
  17922. back: {
  17923. height: math.unit(5 + 9 / 12, "feet"),
  17924. weight: math.unit(160, "lb"),
  17925. name: "Back",
  17926. image: {
  17927. source: "./media/characters/dawn/back.svg",
  17928. extra: 2112 / 2080,
  17929. bottom: 0.005
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(6 + 7 / 12, "feet"),
  17937. default: true
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Arador" },
  17943. {
  17944. anthro: {
  17945. height: math.unit(8 + 3 / 12, "feet"),
  17946. weight: math.unit(450, "lb"),
  17947. name: "Anthro",
  17948. image: {
  17949. source: "./media/characters/arador/anthro.svg",
  17950. extra: 1835 / 1718,
  17951. bottom: 0.025
  17952. }
  17953. },
  17954. feral: {
  17955. height: math.unit(4, "feet"),
  17956. weight: math.unit(200, "lb"),
  17957. name: "Feral",
  17958. image: {
  17959. source: "./media/characters/arador/feral.svg",
  17960. extra: 1683 / 1514,
  17961. bottom: 0.07
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(8 + 3 / 12, "feet")
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(82.5, "feet"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Dharsi" },
  17979. {
  17980. front: {
  17981. height: math.unit(5 + 10 / 12, "feet"),
  17982. weight: math.unit(125, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/dharsi/front.svg",
  17986. extra: 716 / 630,
  17987. bottom: 0.035
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Nano",
  17994. height: math.unit(100, "nm")
  17995. },
  17996. {
  17997. name: "Micro",
  17998. height: math.unit(2, "inches")
  17999. },
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(5 + 10 / 12, "feet"),
  18003. default: true
  18004. },
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(1000, "feet")
  18008. },
  18009. {
  18010. name: "Megamacro",
  18011. height: math.unit(10, "miles")
  18012. },
  18013. {
  18014. name: "Gigamacro",
  18015. height: math.unit(3000, "miles")
  18016. },
  18017. {
  18018. name: "Teramacro",
  18019. height: math.unit(500000, "miles")
  18020. },
  18021. {
  18022. name: "Teramacro+",
  18023. height: math.unit(30, "galaxies")
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Deathy" },
  18029. {
  18030. front: {
  18031. height: math.unit(6, "feet"),
  18032. weight: math.unit(150, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/deathy/front.svg",
  18036. extra: 1552 / 1463,
  18037. bottom: 0.025
  18038. }
  18039. },
  18040. side: {
  18041. height: math.unit(6, "feet"),
  18042. weight: math.unit(150, "lb"),
  18043. name: "Side",
  18044. image: {
  18045. source: "./media/characters/deathy/side.svg",
  18046. extra: 1604 / 1455,
  18047. bottom: 0.025
  18048. }
  18049. },
  18050. back: {
  18051. height: math.unit(6, "feet"),
  18052. weight: math.unit(150, "lb"),
  18053. name: "Back",
  18054. image: {
  18055. source: "./media/characters/deathy/back.svg",
  18056. extra: 1580 / 1463,
  18057. bottom: 0.005
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Micro",
  18064. height: math.unit(5, "millimeters")
  18065. },
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(6 + 5 / 12, "feet"),
  18069. default: true
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Juniper" },
  18075. {
  18076. front: {
  18077. height: math.unit(16, "feet"),
  18078. weight: math.unit(4000, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/juniper/front.svg",
  18082. bottom: 0.04
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(16, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => 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. characterMakers.push(() => makeCharacter(
  18139. { name: "Tendirmuldr" },
  18140. {
  18141. front: {
  18142. height: math.unit(6, "feet"),
  18143. weight: math.unit(150, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/tendirmuldr/front.svg",
  18147. extra: 1878 / 1772,
  18148. bottom: 0.015
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Megamacro",
  18155. height: math.unit(1500, "miles"),
  18156. default: true
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Mort" },
  18162. {
  18163. front: {
  18164. height: math.unit(14, "feet"),
  18165. weight: math.unit(12000, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/mort/front.svg",
  18169. extra: 365 / 318,
  18170. bottom: 0.01
  18171. }
  18172. },
  18173. side: {
  18174. height: math.unit(14, "feet"),
  18175. weight: math.unit(12000, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/mort/side.svg",
  18179. extra: 365 / 318,
  18180. bottom: 0.052
  18181. },
  18182. default: true
  18183. },
  18184. back: {
  18185. height: math.unit(14, "feet"),
  18186. weight: math.unit(12000, "lb"),
  18187. name: "Back",
  18188. image: {
  18189. source: "./media/characters/mort/back.svg",
  18190. extra: 371 / 332,
  18191. bottom: 0.18
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(14, "feet"),
  18199. default: true
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Lycoa" },
  18205. {
  18206. front: {
  18207. height: math.unit(8, "feet"),
  18208. weight: math.unit(1, "ton"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/lycoa/front.svg",
  18212. extra: 1875 / 1789,
  18213. bottom: 0.022
  18214. }
  18215. },
  18216. back: {
  18217. height: math.unit(8, "feet"),
  18218. weight: math.unit(1, "ton"),
  18219. name: "Back",
  18220. image: {
  18221. source: "./media/characters/lycoa/back.svg",
  18222. extra: 1835 / 1781,
  18223. bottom: 0.03
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(8, "feet"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(30, "feet")
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Naldara" },
  18241. {
  18242. front: {
  18243. height: math.unit(4 + 2 / 12, "feet"),
  18244. weight: math.unit(70, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/naldara/front.svg",
  18248. extra: 841 / 720,
  18249. bottom: 0.04
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(4 + 2 / 12, "feet"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Briar" },
  18263. {
  18264. front: {
  18265. height: math.unit(13 + 7 / 12, "feet"),
  18266. weight: math.unit(1500, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/briar/front.svg",
  18270. extra: 626 / 596,
  18271. bottom: 0.08
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(13 + 7 / 12, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Vanguard" },
  18285. {
  18286. side: {
  18287. height: math.unit(10, "feet"),
  18288. weight: math.unit(500, "lb"),
  18289. name: "Side",
  18290. image: {
  18291. source: "./media/characters/vanguard/side.svg",
  18292. extra: 502 / 425,
  18293. bottom: 0.087
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(10, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Artemis" },
  18307. {
  18308. front: {
  18309. height: math.unit(7.5, "feet"),
  18310. weight: math.unit(2, "lb"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/artemis/front.svg",
  18314. extra: 1192 / 1075,
  18315. bottom: 0.07
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(7.5, "feet"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Enlarged",
  18327. height: math.unit(12, "feet")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Kira" },
  18333. {
  18334. front: {
  18335. height: math.unit(5 + 3 / 12, "feet"),
  18336. weight: math.unit(160, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/kira/front.svg",
  18340. extra: 906 / 786,
  18341. bottom: 0.01
  18342. }
  18343. },
  18344. back: {
  18345. height: math.unit(5 + 3 / 12, "feet"),
  18346. weight: math.unit(160, "lb"),
  18347. name: "Back",
  18348. image: {
  18349. source: "./media/characters/kira/back.svg",
  18350. extra: 882 / 757,
  18351. bottom: 0.005
  18352. }
  18353. },
  18354. frontDressed: {
  18355. height: math.unit(5 + 3 / 12, "feet"),
  18356. weight: math.unit(160, "lb"),
  18357. name: "Front (Dressed)",
  18358. image: {
  18359. source: "./media/characters/kira/front-dressed.svg",
  18360. extra: 906 / 786,
  18361. bottom: 0.01
  18362. }
  18363. },
  18364. beans: {
  18365. height: math.unit(0.92, "feet"),
  18366. name: "Beans",
  18367. image: {
  18368. source: "./media/characters/kira/beans.svg"
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(5 + 3 / 12, "feet"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Scramble" },
  18382. {
  18383. front: {
  18384. height: math.unit(5 + 4 / 12, "feet"),
  18385. weight: math.unit(145, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/scramble/front.svg",
  18389. extra: 763 / 727,
  18390. bottom: 0.05
  18391. }
  18392. },
  18393. back: {
  18394. height: math.unit(5 + 4 / 12, "feet"),
  18395. weight: math.unit(145, "lb"),
  18396. name: "Back",
  18397. image: {
  18398. source: "./media/characters/scramble/back.svg",
  18399. extra: 826 / 737,
  18400. bottom: 0.002
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 4 / 12, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Biscuit" },
  18414. {
  18415. side: {
  18416. height: math.unit(6 + 2 / 12, "feet"),
  18417. weight: math.unit(190, "lb"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/biscuit/side.svg",
  18421. extra: 858 / 791,
  18422. bottom: 0.044
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(6 + 2 / 12, "feet"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Poffin" },
  18436. {
  18437. front: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(120, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/poffin/front.svg",
  18443. extra: 786 / 680,
  18444. bottom: 0.005
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(5 + 2 / 12, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Dhari" },
  18458. {
  18459. front: {
  18460. height: math.unit(6 + 3 / 12, "feet"),
  18461. weight: math.unit(519, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/dhari/front.svg",
  18465. extra: 1048 / 946,
  18466. bottom: 0.015
  18467. }
  18468. },
  18469. back: {
  18470. height: math.unit(6 + 3 / 12, "feet"),
  18471. weight: math.unit(519, "lb"),
  18472. name: "Back",
  18473. image: {
  18474. source: "./media/characters/dhari/back.svg",
  18475. extra: 1048 / 931,
  18476. bottom: 0.005
  18477. }
  18478. },
  18479. frontDressed: {
  18480. height: math.unit(6 + 3 / 12, "feet"),
  18481. weight: math.unit(519, "lb"),
  18482. name: "Front (Dressed)",
  18483. image: {
  18484. source: "./media/characters/dhari/front-dressed.svg",
  18485. extra: 1713 / 1546,
  18486. bottom: 0.02
  18487. }
  18488. },
  18489. backDressed: {
  18490. height: math.unit(6 + 3 / 12, "feet"),
  18491. weight: math.unit(519, "lb"),
  18492. name: "Back (Dressed)",
  18493. image: {
  18494. source: "./media/characters/dhari/back-dressed.svg",
  18495. extra: 1699 / 1537,
  18496. bottom: 0.01
  18497. }
  18498. },
  18499. maw: {
  18500. height: math.unit(0.95, "feet"),
  18501. name: "Maw",
  18502. image: {
  18503. source: "./media/characters/dhari/maw.svg"
  18504. }
  18505. },
  18506. wereFront: {
  18507. height: math.unit(12 + 8 / 12, "feet"),
  18508. weight: math.unit(4000, "lb"),
  18509. name: "Front (Were)",
  18510. image: {
  18511. source: "./media/characters/dhari/were-front.svg",
  18512. extra: 1065 / 969,
  18513. bottom: 0.015
  18514. }
  18515. },
  18516. wereBack: {
  18517. height: math.unit(12 + 8 / 12, "feet"),
  18518. weight: math.unit(4000, "lb"),
  18519. name: "Back (Were)",
  18520. image: {
  18521. source: "./media/characters/dhari/were-back.svg",
  18522. extra: 1065 / 969,
  18523. bottom: 0.012
  18524. }
  18525. },
  18526. wereMaw: {
  18527. height: math.unit(0.625, "meters"),
  18528. name: "Maw (Were)",
  18529. image: {
  18530. source: "./media/characters/dhari/were-maw.svg"
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(6 + 3 / 12, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Rena Dyne" },
  18544. {
  18545. anthro: {
  18546. height: math.unit(5 + 7 / 12, "feet"),
  18547. weight: math.unit(175, "lb"),
  18548. name: "Anthro",
  18549. image: {
  18550. source: "./media/characters/rena-dyne/anthro.svg",
  18551. extra: 1849 / 1785,
  18552. bottom: 0.005
  18553. }
  18554. },
  18555. taur: {
  18556. height: math.unit(15 + 6 / 12, "feet"),
  18557. weight: math.unit(8000, "lb"),
  18558. name: "Taur",
  18559. image: {
  18560. source: "./media/characters/rena-dyne/taur.svg",
  18561. extra: 2315 / 2234,
  18562. bottom: 0.033
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(5 + 7 / 12, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Weremeep" },
  18576. {
  18577. front: {
  18578. height: math.unit(8, "feet"),
  18579. weight: math.unit(600, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/weremeep/front.svg",
  18583. extra: 967 / 862,
  18584. bottom: 0.01
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(8, "feet"),
  18592. default: true
  18593. },
  18594. {
  18595. name: "Lorg",
  18596. height: math.unit(12, "feet")
  18597. },
  18598. {
  18599. name: "Oh Lawd She Comin'",
  18600. height: math.unit(20, "feet")
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Reza" },
  18606. {
  18607. front: {
  18608. height: math.unit(4, "feet"),
  18609. weight: math.unit(90, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/reza/front.svg",
  18613. extra: 1183 / 1111,
  18614. bottom: 0.017
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(4, "feet"),
  18619. weight: math.unit(90, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/reza/back.svg",
  18623. extra: 1183 / 1111,
  18624. bottom: 0.01
  18625. }
  18626. },
  18627. drake: {
  18628. height: math.unit(30, "feet"),
  18629. weight: math.unit(246960, "lb"),
  18630. name: "Drake",
  18631. image: {
  18632. source: "./media/characters/reza/drake.svg",
  18633. extra: 2350/2024,
  18634. bottom: 60.7/2403
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(4, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Athea" },
  18648. {
  18649. side: {
  18650. height: math.unit(15, "feet"),
  18651. weight: math.unit(14, "tons"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/athea/side.svg",
  18655. extra: 960 / 540,
  18656. bottom: 0.003
  18657. }
  18658. },
  18659. sitting: {
  18660. height: math.unit(6 * 2.85, "feet"),
  18661. weight: math.unit(14, "tons"),
  18662. name: "Sitting",
  18663. image: {
  18664. source: "./media/characters/athea/sitting.svg",
  18665. extra: 621 / 581,
  18666. bottom: 0.075
  18667. }
  18668. },
  18669. maw: {
  18670. height: math.unit(7.59498031496063, "feet"),
  18671. name: "Maw",
  18672. image: {
  18673. source: "./media/characters/athea/maw.svg"
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Lap Cat",
  18680. height: math.unit(2.5, "feet")
  18681. },
  18682. {
  18683. name: "Minimacro",
  18684. height: math.unit(15, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(120, "feet")
  18690. },
  18691. {
  18692. name: "Macro+",
  18693. height: math.unit(640, "feet")
  18694. },
  18695. {
  18696. name: "Colossus",
  18697. height: math.unit(2.2, "miles")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Seroko" },
  18703. {
  18704. front: {
  18705. height: math.unit(8 + 8 / 12, "feet"),
  18706. weight: math.unit(130, "kg"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/seroko/front.svg",
  18710. extra: 1385 / 1280,
  18711. bottom: 0.025
  18712. }
  18713. },
  18714. back: {
  18715. height: math.unit(8 + 8 / 12, "feet"),
  18716. weight: math.unit(130, "kg"),
  18717. name: "Back",
  18718. image: {
  18719. source: "./media/characters/seroko/back.svg",
  18720. extra: 1369 / 1238,
  18721. bottom: 0.018
  18722. }
  18723. },
  18724. frontDressed: {
  18725. height: math.unit(8 + 8 / 12, "feet"),
  18726. weight: math.unit(130, "kg"),
  18727. name: "Front (Dressed)",
  18728. image: {
  18729. source: "./media/characters/seroko/front-dressed.svg",
  18730. extra: 1366 / 1275,
  18731. bottom: 0.03
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(8 + 8 / 12, "feet"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Quatzi" },
  18745. {
  18746. front: {
  18747. height: math.unit(5.5, "feet"),
  18748. weight: math.unit(160, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/quatzi/front.svg",
  18752. extra: 2346 / 2242,
  18753. bottom: 0.015
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(5.5, "feet"),
  18761. default: true
  18762. },
  18763. {
  18764. name: "Big",
  18765. height: math.unit(7.7, "feet")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Sen" },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 11 / 12, "feet"),
  18774. weight: math.unit(180, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/sen/front.svg",
  18778. extra: 1321 / 1254,
  18779. bottom: 0.015
  18780. }
  18781. },
  18782. side: {
  18783. height: math.unit(5 + 11 / 12, "feet"),
  18784. weight: math.unit(180, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/sen/side.svg",
  18788. extra: 1321 / 1254,
  18789. bottom: 0.007
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(5 + 11 / 12, "feet"),
  18794. weight: math.unit(180, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/sen/back.svg",
  18798. extra: 1321 / 1254
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Normal",
  18805. height: math.unit(5 + 11 / 12, "feet"),
  18806. default: true
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Fruity" },
  18812. {
  18813. front: {
  18814. height: math.unit(166.6, "cm"),
  18815. weight: math.unit(66.6, "kg"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/fruity/front.svg",
  18819. extra: 1510 / 1386,
  18820. bottom: 0.04
  18821. }
  18822. },
  18823. back: {
  18824. height: math.unit(166.6, "cm"),
  18825. weight: math.unit(66.6, "lb"),
  18826. name: "Back",
  18827. image: {
  18828. source: "./media/characters/fruity/back.svg",
  18829. extra: 1563 / 1435,
  18830. bottom: 0.005
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(166.6, "cm"),
  18838. default: true
  18839. },
  18840. {
  18841. name: "Demonic",
  18842. height: math.unit(166.6, "feet")
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Zost" },
  18848. {
  18849. side: {
  18850. height: math.unit(10, "feet"),
  18851. weight: math.unit(500, "lb"),
  18852. name: "Side",
  18853. image: {
  18854. source: "./media/characters/zost/side.svg",
  18855. extra: 966 / 880,
  18856. bottom: 0.075
  18857. }
  18858. },
  18859. mawFront: {
  18860. height: math.unit(1.08, "meters"),
  18861. name: "Maw (Front)",
  18862. image: {
  18863. source: "./media/characters/zost/maw-front.svg"
  18864. }
  18865. },
  18866. mawSide: {
  18867. height: math.unit(2.66, "feet"),
  18868. name: "Maw (Side)",
  18869. image: {
  18870. source: "./media/characters/zost/maw-side.svg"
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(10, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Luci" },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 4 / 12, "feet"),
  18887. weight: math.unit(120, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/luci/front.svg",
  18891. extra: 1985 / 1884,
  18892. bottom: 0.04
  18893. }
  18894. },
  18895. back: {
  18896. height: math.unit(5 + 4 / 12, "feet"),
  18897. weight: math.unit(120, "lb"),
  18898. name: "Back",
  18899. image: {
  18900. source: "./media/characters/luci/back.svg",
  18901. extra: 1892 / 1791,
  18902. bottom: 0.002
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(5 + 4 / 12, "feet"),
  18910. default: true
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "2th" },
  18916. {
  18917. front: {
  18918. height: math.unit(1500, "feet"),
  18919. weight: math.unit(3.8e6, "tons"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/2th/front.svg",
  18923. extra: 3489 / 3350,
  18924. bottom: 0.1
  18925. }
  18926. },
  18927. foot: {
  18928. height: math.unit(461, "feet"),
  18929. name: "Foot",
  18930. image: {
  18931. source: "./media/characters/2th/foot.svg"
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "\"Micro\"",
  18938. height: math.unit(15 + 7 / 12, "feet")
  18939. },
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(1500, "feet"),
  18943. default: true
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(5000, "feet")
  18948. },
  18949. {
  18950. name: "Megamacro",
  18951. height: math.unit(15, "miles")
  18952. },
  18953. {
  18954. name: "Gigamacro",
  18955. height: math.unit(4000, "miles")
  18956. },
  18957. {
  18958. name: "Galactic",
  18959. height: math.unit(50, "AU")
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Amethyst" },
  18965. {
  18966. front: {
  18967. height: math.unit(5 + 6 / 12, "feet"),
  18968. weight: math.unit(220, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/amethyst/front.svg",
  18972. extra: 2078 / 2040,
  18973. bottom: 0.045
  18974. }
  18975. },
  18976. back: {
  18977. height: math.unit(5 + 6 / 12, "feet"),
  18978. weight: math.unit(220, "lb"),
  18979. name: "Back",
  18980. image: {
  18981. source: "./media/characters/amethyst/back.svg",
  18982. extra: 2021 / 1989,
  18983. bottom: 0.02
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(5 + 6 / 12, "feet"),
  18991. default: true
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Yumi Akiyama" },
  18997. {
  18998. front: {
  18999. height: math.unit(4 + 11 / 12, "feet"),
  19000. weight: math.unit(120, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/yumi-akiyama/front.svg",
  19004. extra: 1327 / 1235,
  19005. bottom: 0.02
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(4 + 11 / 12, "feet"),
  19010. weight: math.unit(120, "lb"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/yumi-akiyama/back.svg",
  19014. extra: 1287 / 1245,
  19015. bottom: 0.002
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Galactic",
  19022. height: math.unit(50, "galaxies"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Universal",
  19027. height: math.unit(100, "universes")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Rifter Yrmori" },
  19033. {
  19034. front: {
  19035. height: math.unit(8, "feet"),
  19036. weight: math.unit(500, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/rifter-yrmori/front.svg",
  19040. extra: 1180 / 1125,
  19041. bottom: 0.02
  19042. }
  19043. },
  19044. back: {
  19045. height: math.unit(8, "feet"),
  19046. weight: math.unit(500, "lb"),
  19047. name: "Back",
  19048. image: {
  19049. source: "./media/characters/rifter-yrmori/back.svg",
  19050. extra: 1190 / 1145,
  19051. bottom: 0.001
  19052. }
  19053. },
  19054. wings: {
  19055. height: math.unit(7.75, "feet"),
  19056. weight: math.unit(500, "lb"),
  19057. name: "Wings",
  19058. image: {
  19059. source: "./media/characters/rifter-yrmori/wings.svg",
  19060. extra: 1357 / 1285
  19061. }
  19062. },
  19063. maw: {
  19064. height: math.unit(0.8, "feet"),
  19065. name: "Maw",
  19066. image: {
  19067. source: "./media/characters/rifter-yrmori/maw.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(8, "feet"),
  19075. default: true
  19076. },
  19077. {
  19078. name: "Macro",
  19079. height: math.unit(42, "meters")
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Tahajin" },
  19085. {
  19086. were: {
  19087. height: math.unit(25 + 6 / 12, "feet"),
  19088. weight: math.unit(10000, "lb"),
  19089. name: "Were",
  19090. image: {
  19091. source: "./media/characters/tahajin/were.svg",
  19092. extra: 801 / 770,
  19093. bottom: 0.042
  19094. }
  19095. },
  19096. aquatic: {
  19097. height: math.unit(6 + 4 / 12, "feet"),
  19098. weight: math.unit(160, "lb"),
  19099. name: "Aquatic",
  19100. image: {
  19101. source: "./media/characters/tahajin/aquatic.svg",
  19102. extra: 572 / 542,
  19103. bottom: 0.04
  19104. }
  19105. },
  19106. chow: {
  19107. height: math.unit(8 + 11 / 12, "feet"),
  19108. weight: math.unit(450, "lb"),
  19109. name: "Chow",
  19110. image: {
  19111. source: "./media/characters/tahajin/chow.svg",
  19112. extra: 660 / 640,
  19113. bottom: 0.015
  19114. }
  19115. },
  19116. demiNaga: {
  19117. height: math.unit(6 + 8 / 12, "feet"),
  19118. weight: math.unit(300, "lb"),
  19119. name: "Demi Naga",
  19120. image: {
  19121. source: "./media/characters/tahajin/demi-naga.svg",
  19122. extra: 643 / 615,
  19123. bottom: 0.1
  19124. }
  19125. },
  19126. data: {
  19127. height: math.unit(5, "inches"),
  19128. weight: math.unit(0.1, "lb"),
  19129. name: "Data",
  19130. image: {
  19131. source: "./media/characters/tahajin/data.svg"
  19132. }
  19133. },
  19134. fluu: {
  19135. height: math.unit(5 + 7 / 12, "feet"),
  19136. weight: math.unit(140, "lb"),
  19137. name: "Fluu",
  19138. image: {
  19139. source: "./media/characters/tahajin/fluu.svg",
  19140. extra: 628 / 592,
  19141. bottom: 0.02
  19142. }
  19143. },
  19144. starWarrior: {
  19145. height: math.unit(4 + 5 / 12, "feet"),
  19146. weight: math.unit(50, "lb"),
  19147. name: "Star Warrior",
  19148. image: {
  19149. source: "./media/characters/tahajin/star-warrior.svg"
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(25 + 6 / 12, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Gabira" },
  19163. {
  19164. front: {
  19165. height: math.unit(8, "feet"),
  19166. weight: math.unit(350, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/gabira/front.svg",
  19170. extra: 608 / 580,
  19171. bottom: 0.03
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(8, "feet"),
  19176. weight: math.unit(350, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/gabira/back.svg",
  19180. extra: 608 / 580,
  19181. bottom: 0.03
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(8, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Sasha Katraine" },
  19195. {
  19196. front: {
  19197. height: math.unit(5 + 3 / 12, "feet"),
  19198. weight: math.unit(137, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/sasha-katraine/front.svg",
  19202. bottom: 0.045
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(5, "inches")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(5 + 3 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Der" },
  19220. {
  19221. side: {
  19222. height: math.unit(4, "inches"),
  19223. weight: math.unit(200, "grams"),
  19224. name: "Side",
  19225. image: {
  19226. source: "./media/characters/der/side.svg",
  19227. extra: 719 / 400,
  19228. bottom: 30.6 / 749.9187
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Micro",
  19235. height: math.unit(4, "inches"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Fixerdragon" },
  19242. {
  19243. side: {
  19244. height: math.unit(30, "meters"),
  19245. weight: math.unit(700, "tonnes"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/fixerdragon/side.svg",
  19249. extra: (1293.0514 - 116.03) / 1106.86,
  19250. bottom: 116.03 / 1293.0514
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Planck",
  19257. height: math.unit(1.6e-35, "meters")
  19258. },
  19259. {
  19260. name: "Micro",
  19261. height: math.unit(0.4, "meters")
  19262. },
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(30, "meters"),
  19266. default: true
  19267. },
  19268. {
  19269. name: "Megamacro",
  19270. height: math.unit(1.2, "megameters")
  19271. },
  19272. {
  19273. name: "Teramacro",
  19274. height: math.unit(130, "terameters")
  19275. },
  19276. {
  19277. name: "Yottamacro",
  19278. height: math.unit(6200, "yottameters")
  19279. },
  19280. ]
  19281. ));
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Kite" },
  19284. {
  19285. front: {
  19286. height: math.unit(8, "feet"),
  19287. weight: math.unit(250, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/kite/front.svg",
  19291. extra: 2796 / 2659,
  19292. bottom: 0.002
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(8, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(360, "feet")
  19305. },
  19306. {
  19307. name: "Megamacro",
  19308. height: math.unit(1500, "feet")
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Poojawa Vynar" },
  19314. {
  19315. front: {
  19316. height: math.unit(5 + 10 / 12, "feet"),
  19317. weight: math.unit(150, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/poojawa-vynar/front.svg",
  19321. extra: (1506.1547 - 55) / 1356.6,
  19322. bottom: 55 / 1506.1547
  19323. }
  19324. },
  19325. frontTailless: {
  19326. height: math.unit(5 + 10 / 12, "feet"),
  19327. weight: math.unit(150, "lb"),
  19328. name: "Front (Tailless)",
  19329. image: {
  19330. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19331. extra: (1506.1547 - 55) / 1356.6,
  19332. bottom: 55 / 1506.1547
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(5 + 10 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Violette" },
  19346. {
  19347. front: {
  19348. height: math.unit(293, "meters"),
  19349. weight: math.unit(70400, "tons"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/violette/front.svg",
  19353. extra: 1227 / 1180,
  19354. bottom: 0.005
  19355. }
  19356. },
  19357. back: {
  19358. height: math.unit(293, "meters"),
  19359. weight: math.unit(70400, "tons"),
  19360. name: "Back",
  19361. image: {
  19362. source: "./media/characters/violette/back.svg",
  19363. extra: 1227 / 1180,
  19364. bottom: 0.005
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Macro",
  19371. height: math.unit(293, "meters"),
  19372. default: true
  19373. },
  19374. ]
  19375. ))
  19376. characterMakers.push(() => makeCharacter(
  19377. { name: "Alessandra" },
  19378. {
  19379. front: {
  19380. height: math.unit(1050, "feet"),
  19381. weight: math.unit(200000, "tons"),
  19382. name: "Front",
  19383. image: {
  19384. source: "./media/characters/alessandra/front.svg",
  19385. extra: 960 / 912,
  19386. bottom: 0.06
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Macro",
  19393. height: math.unit(1050, "feet")
  19394. },
  19395. {
  19396. name: "Macro+",
  19397. height: math.unit(900, "meters"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(5, "feet"),
  19407. weight: math.unit(187, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/person/front.svg",
  19411. extra: 3087 / 2945,
  19412. bottom: 91 / 3181
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Micro",
  19419. height: math.unit(3, "inches")
  19420. },
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(5, "feet"),
  19424. default: true
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(90, "feet")
  19429. },
  19430. {
  19431. name: "Max Size",
  19432. height: math.unit(280, "feet")
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Ty" },
  19438. {
  19439. front: {
  19440. height: math.unit(4.5, "meters"),
  19441. weight: math.unit(3200, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/ty/front.svg",
  19445. extra: 1038 / 960,
  19446. bottom: 31.156 / 1068
  19447. }
  19448. },
  19449. back: {
  19450. height: math.unit(4.5, "meters"),
  19451. weight: math.unit(3200, "lb"),
  19452. name: "Back",
  19453. image: {
  19454. source: "./media/characters/ty/back.svg",
  19455. extra: 1044 / 966,
  19456. bottom: 7.48 / 1049
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(4.5, "meters"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Rocky" },
  19470. {
  19471. front: {
  19472. height: math.unit(5 + 4 / 12, "feet"),
  19473. weight: math.unit(115, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/rocky/front.svg",
  19477. extra: 1012 / 975,
  19478. bottom: 54 / 1066
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(5 + 4 / 12, "feet"),
  19486. default: true
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Ruin" },
  19492. {
  19493. upright: {
  19494. height: math.unit(6, "meters"),
  19495. weight: math.unit(4000, "kg"),
  19496. name: "Upright",
  19497. image: {
  19498. source: "./media/characters/ruin/upright.svg",
  19499. extra: 668 / 661,
  19500. bottom: 42 / 799.8396
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Normal",
  19507. height: math.unit(6, "meters"),
  19508. default: true
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Robin" },
  19514. {
  19515. front: {
  19516. height: math.unit(5, "feet"),
  19517. weight: math.unit(106, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/robin/front.svg",
  19521. extra: 862 / 799,
  19522. bottom: 42.4 / 914.8856
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(5, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Saian" },
  19536. {
  19537. side: {
  19538. height: math.unit(3, "feet"),
  19539. weight: math.unit(225, "lb"),
  19540. name: "Side",
  19541. image: {
  19542. source: "./media/characters/saian/side.svg",
  19543. extra: 566 / 356,
  19544. bottom: 79.7 / 643
  19545. }
  19546. },
  19547. maw: {
  19548. height: math.unit(2.85, "feet"),
  19549. name: "Maw",
  19550. image: {
  19551. source: "./media/characters/saian/maw.svg"
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(3, "feet"),
  19559. default: true
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Equus Silvermane" },
  19565. {
  19566. side: {
  19567. height: math.unit(8, "feet"),
  19568. weight: math.unit(300, "lb"),
  19569. name: "Side",
  19570. image: {
  19571. source: "./media/characters/equus-silvermane/side.svg",
  19572. extra: 2176 / 2050,
  19573. bottom: 65.7 / 2245
  19574. }
  19575. },
  19576. front: {
  19577. height: math.unit(8, "feet"),
  19578. weight: math.unit(300, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/equus-silvermane/front.svg",
  19582. extra: 4633 / 4400,
  19583. bottom: 71.3 / 4706.915
  19584. }
  19585. },
  19586. sideStepping: {
  19587. height: math.unit(8, "feet"),
  19588. weight: math.unit(300, "lb"),
  19589. name: "Side (Stepping)",
  19590. image: {
  19591. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19592. extra: 1968 / 1860,
  19593. bottom: 16.4 / 1989
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(8, "feet")
  19601. },
  19602. {
  19603. name: "Minimacro",
  19604. height: math.unit(75, "feet"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(150, "feet")
  19610. },
  19611. {
  19612. name: "Macro+",
  19613. height: math.unit(1000, "feet")
  19614. },
  19615. {
  19616. name: "Megamacro",
  19617. height: math.unit(1, "mile")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Windar" },
  19623. {
  19624. side: {
  19625. height: math.unit(20, "feet"),
  19626. weight: math.unit(30000, "kg"),
  19627. name: "Side",
  19628. image: {
  19629. source: "./media/characters/windar/side.svg",
  19630. extra: 1491 / 1248,
  19631. bottom: 82.56 / 1568
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(20, "feet"),
  19639. default: true
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Melody" },
  19645. {
  19646. side: {
  19647. height: math.unit(15.66, "feet"),
  19648. weight: math.unit(150, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/melody/side.svg",
  19652. extra: 1097 / 944,
  19653. bottom: 11.8 / 1109
  19654. }
  19655. },
  19656. sideOutfit: {
  19657. height: math.unit(15.66, "feet"),
  19658. weight: math.unit(150, "lb"),
  19659. name: "Side (Outfit)",
  19660. image: {
  19661. source: "./media/characters/melody/side-outfit.svg",
  19662. extra: 1097 / 944,
  19663. bottom: 11.8 / 1109
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(15.66, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Windera" },
  19677. {
  19678. front: {
  19679. height: math.unit(8, "feet"),
  19680. weight: math.unit(325, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/windera/front.svg",
  19684. extra: 3180 / 2845,
  19685. bottom: 178 / 3365
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(8, "feet"),
  19693. default: true
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Sonear" },
  19699. {
  19700. front: {
  19701. height: math.unit(28.75, "feet"),
  19702. weight: math.unit(2000, "kg"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/sonear/front.svg",
  19706. extra: 1041.1 / 964.9,
  19707. bottom: 53.7 / 1096.6
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(28.75, "feet"),
  19715. default: true
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Kanara" },
  19721. {
  19722. side: {
  19723. height: math.unit(25.5, "feet"),
  19724. weight: math.unit(23000, "kg"),
  19725. name: "Side",
  19726. image: {
  19727. source: "./media/characters/kanara/side.svg"
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(25.5, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Ereus" },
  19741. {
  19742. side: {
  19743. height: math.unit(10, "feet"),
  19744. weight: math.unit(1000, "kg"),
  19745. name: "Side",
  19746. image: {
  19747. source: "./media/characters/ereus/side.svg",
  19748. extra: 1157 / 959,
  19749. bottom: 153 / 1312.5
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(10, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "E-ter" },
  19763. {
  19764. side: {
  19765. height: math.unit(4.5, "feet"),
  19766. weight: math.unit(500, "lb"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/e-ter/side.svg",
  19770. extra: 1550 / 1248,
  19771. bottom: 146 / 1694
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(4.5, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Yamie" },
  19785. {
  19786. side: {
  19787. height: math.unit(9.7, "feet"),
  19788. weight: math.unit(4000, "kg"),
  19789. name: "Side",
  19790. image: {
  19791. source: "./media/characters/yamie/side.svg"
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Normal",
  19798. height: math.unit(9.7, "feet"),
  19799. default: true
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Anders" },
  19805. {
  19806. front: {
  19807. height: math.unit(50, "feet"),
  19808. weight: math.unit(50000, "kg"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/anders/front.svg",
  19812. extra: 570 / 539,
  19813. bottom: 14.7 / 586.7
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Large",
  19820. height: math.unit(50, "feet")
  19821. },
  19822. {
  19823. name: "Macro",
  19824. height: math.unit(2000, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Megamacro",
  19829. height: math.unit(12, "miles")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Reban" },
  19835. {
  19836. front: {
  19837. height: math.unit(7 + 2 / 12, "feet"),
  19838. weight: math.unit(300, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/reban/front.svg",
  19842. extra: 516 / 487,
  19843. bottom: 42.82 / 558.356
  19844. }
  19845. },
  19846. dick: {
  19847. height: math.unit(7 / 5, "feet"),
  19848. name: "Dick",
  19849. image: {
  19850. source: "./media/characters/reban/dick.svg"
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Natural Height",
  19857. height: math.unit(7 + 2 / 12, "feet")
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(500, "feet"),
  19862. default: true
  19863. },
  19864. {
  19865. name: "Canon Height",
  19866. height: math.unit(50, "AU")
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Terrance Keayes" },
  19872. {
  19873. front: {
  19874. height: math.unit(6, "feet"),
  19875. weight: math.unit(150, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/terrance-keayes/front.svg",
  19879. extra: 1.005,
  19880. bottom: 151 / 1615
  19881. }
  19882. },
  19883. side: {
  19884. height: math.unit(6, "feet"),
  19885. weight: math.unit(150, "lb"),
  19886. name: "Side",
  19887. image: {
  19888. source: "./media/characters/terrance-keayes/side.svg",
  19889. extra: 1.005,
  19890. bottom: 129.4 / 1544
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(6, "feet"),
  19895. weight: math.unit(150, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/terrance-keayes/back.svg",
  19899. extra: 1.005,
  19900. bottom: 58.4 / 1557.3
  19901. }
  19902. },
  19903. dick: {
  19904. height: math.unit(6 * 0.208, "feet"),
  19905. name: "Dick",
  19906. image: {
  19907. source: "./media/characters/terrance-keayes/dick.svg"
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Canon Height",
  19914. height: math.unit(35, "miles"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Ofelia" },
  19921. {
  19922. front: {
  19923. height: math.unit(6, "feet"),
  19924. weight: math.unit(150, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/ofelia/front.svg",
  19928. extra: 546 / 541,
  19929. bottom: 39 / 583
  19930. }
  19931. },
  19932. back: {
  19933. height: math.unit(6, "feet"),
  19934. weight: math.unit(150, "lb"),
  19935. name: "Back",
  19936. image: {
  19937. source: "./media/characters/ofelia/back.svg",
  19938. extra: 564 / 559.5,
  19939. bottom: 8.69 / 573.02
  19940. }
  19941. },
  19942. maw: {
  19943. height: math.unit(1, "feet"),
  19944. name: "Maw",
  19945. image: {
  19946. source: "./media/characters/ofelia/maw.svg"
  19947. }
  19948. },
  19949. foot: {
  19950. height: math.unit(1.949, "feet"),
  19951. name: "Foot",
  19952. image: {
  19953. source: "./media/characters/ofelia/foot.svg"
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Canon Height",
  19960. height: math.unit(2000, "miles"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Samuel" },
  19967. {
  19968. front: {
  19969. height: math.unit(6, "feet"),
  19970. weight: math.unit(150, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/samuel/front.svg",
  19974. extra: 265 / 258,
  19975. bottom: 2 / 266.1566
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Macro",
  19982. height: math.unit(100, "feet"),
  19983. default: true
  19984. },
  19985. {
  19986. name: "Full Size",
  19987. height: math.unit(1000, "miles")
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Beishir Kiel" },
  19993. {
  19994. front: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(300, "lb"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/beishir-kiel/front.svg",
  20000. extra: 569 / 547,
  20001. bottom: 41.9 / 609
  20002. }
  20003. },
  20004. maw: {
  20005. height: math.unit(6 * 0.202, "feet"),
  20006. name: "Maw",
  20007. image: {
  20008. source: "./media/characters/beishir-kiel/maw.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Macro",
  20015. height: math.unit(300, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Logan Grey" },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 8 / 12, "feet"),
  20025. weight: math.unit(120, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/logan-grey/front.svg",
  20029. extra: 2539 / 2393,
  20030. bottom: 97.6 / 2636.37
  20031. }
  20032. },
  20033. frontAlt: {
  20034. height: math.unit(5 + 8 / 12, "feet"),
  20035. weight: math.unit(120, "lb"),
  20036. name: "Front (Alt)",
  20037. image: {
  20038. source: "./media/characters/logan-grey/front-alt.svg",
  20039. extra: 958 / 893,
  20040. bottom: 15 / 970.768
  20041. }
  20042. },
  20043. back: {
  20044. height: math.unit(5 + 8 / 12, "feet"),
  20045. weight: math.unit(120, "lb"),
  20046. name: "Back",
  20047. image: {
  20048. source: "./media/characters/logan-grey/back.svg",
  20049. extra: 958 / 893,
  20050. bottom: 2.1881 / 970.9788
  20051. }
  20052. },
  20053. dick: {
  20054. height: math.unit(1.437, "feet"),
  20055. name: "Dick",
  20056. image: {
  20057. source: "./media/characters/logan-grey/dick.svg"
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(5 + 8 / 12, "feet")
  20065. },
  20066. {
  20067. name: "The 500 Foot Femboy",
  20068. height: math.unit(500, "feet"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Megmacro",
  20073. height: math.unit(20, "miles")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Draganta" },
  20079. {
  20080. front: {
  20081. height: math.unit(8 + 2 / 12, "feet"),
  20082. weight: math.unit(275, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/draganta/front.svg",
  20086. extra: 1177 / 1135,
  20087. bottom: 33.46 / 1212.1
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(8 + 6 / 12, "feet"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Macro",
  20099. height: math.unit(150, "feet")
  20100. },
  20101. {
  20102. name: "Megamacro",
  20103. height: math.unit(1000, "miles")
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(1.72, "m"),
  20112. weight: math.unit(80, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/voski/front.svg",
  20116. extra: 2076.22 / 2022.4,
  20117. bottom: 102.7 / 2177.3866
  20118. }
  20119. },
  20120. frontNsfw: {
  20121. height: math.unit(1.72, "m"),
  20122. weight: math.unit(80, "lb"),
  20123. name: "Front (NSFW)",
  20124. image: {
  20125. source: "./media/characters/voski/front-nsfw.svg",
  20126. extra: 2076.22 / 2022.4,
  20127. bottom: 102.7 / 2177.3866
  20128. }
  20129. },
  20130. back: {
  20131. height: math.unit(1.72, "m"),
  20132. weight: math.unit(80, "lb"),
  20133. name: "Back",
  20134. image: {
  20135. source: "./media/characters/voski/back.svg",
  20136. extra: 2104 / 2051,
  20137. bottom: 10.45 / 2113.63
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(1.72, "m")
  20145. },
  20146. {
  20147. name: "Macro",
  20148. height: math.unit(55, "m"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Macro+",
  20153. height: math.unit(300, "m")
  20154. },
  20155. {
  20156. name: "Macro++",
  20157. height: math.unit(700, "m")
  20158. },
  20159. {
  20160. name: "Macro+++",
  20161. height: math.unit(4500, "m")
  20162. },
  20163. {
  20164. name: "Macro++++",
  20165. height: math.unit(45, "km")
  20166. },
  20167. {
  20168. name: "Macro+++++",
  20169. height: math.unit(1220, "km")
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Icowom Lee" },
  20175. {
  20176. front: {
  20177. height: math.unit(2.3, "m"),
  20178. weight: math.unit(304, "kg"),
  20179. name: "Front",
  20180. image: {
  20181. source: "./media/characters/icowom-lee/front.svg",
  20182. extra: 3076 / 2933,
  20183. bottom: 51.4 / 3125.1889
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(2.3, "meters"),
  20191. default: true
  20192. },
  20193. {
  20194. name: "Macro",
  20195. height: math.unit(94, "meters"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(22, "meters"),
  20205. weight: math.unit(21000, "kg"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/shock-diamond/front.svg",
  20209. extra: 2204 / 2053,
  20210. bottom: 65 / 2239.47
  20211. }
  20212. },
  20213. frontNude: {
  20214. height: math.unit(22, "meters"),
  20215. weight: math.unit(21000, "kg"),
  20216. name: "Front (Nude)",
  20217. image: {
  20218. source: "./media/characters/shock-diamond/front-nude.svg",
  20219. extra: 2514 / 2285,
  20220. bottom: 13 / 2527.56
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(3, "meters")
  20228. },
  20229. {
  20230. name: "Macro",
  20231. height: math.unit(22, "meters"),
  20232. default: true
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Rory" },
  20238. {
  20239. front: {
  20240. height: math.unit(5 + 4 / 12, "feet"),
  20241. weight: math.unit(120, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/rory/front.svg",
  20245. extra: 589 / 556,
  20246. bottom: 45.7 / 635.76
  20247. }
  20248. },
  20249. frontNude: {
  20250. height: math.unit(5 + 4 / 12, "feet"),
  20251. weight: math.unit(120, "lb"),
  20252. name: "Front (Nude)",
  20253. image: {
  20254. source: "./media/characters/rory/front-nude.svg",
  20255. extra: 589 / 556,
  20256. bottom: 45.7 / 635.76
  20257. }
  20258. },
  20259. side: {
  20260. height: math.unit(5 + 4 / 12, "feet"),
  20261. weight: math.unit(120, "lb"),
  20262. name: "Side",
  20263. image: {
  20264. source: "./media/characters/rory/side.svg",
  20265. extra: 597 / 564,
  20266. bottom: 55 / 653
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(5 + 4 / 12, "feet"),
  20271. weight: math.unit(120, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/rory/back.svg",
  20275. extra: 620 / 585,
  20276. bottom: 8.86 / 630.43
  20277. }
  20278. },
  20279. dick: {
  20280. height: math.unit(0.86, "feet"),
  20281. name: "Dick",
  20282. image: {
  20283. source: "./media/characters/rory/dick.svg"
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(5 + 4 / 12, "feet"),
  20291. default: true
  20292. },
  20293. {
  20294. name: "Macro",
  20295. height: math.unit(100, "feet")
  20296. },
  20297. {
  20298. name: "Macro+",
  20299. height: math.unit(140, "feet")
  20300. },
  20301. {
  20302. name: "Macro++",
  20303. height: math.unit(300, "feet")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Sprisk" },
  20309. {
  20310. front: {
  20311. height: math.unit(5 + 9 / 12, "feet"),
  20312. weight: math.unit(190, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/sprisk/front.svg",
  20316. extra: 1225 / 1180,
  20317. bottom: 42.7 / 1266.4
  20318. }
  20319. },
  20320. frontNsfw: {
  20321. height: math.unit(5 + 9 / 12, "feet"),
  20322. weight: math.unit(190, "lb"),
  20323. name: "Front (NSFW)",
  20324. image: {
  20325. source: "./media/characters/sprisk/front-nsfw.svg",
  20326. extra: 1225 / 1180,
  20327. bottom: 42.7 / 1266.4
  20328. }
  20329. },
  20330. back: {
  20331. height: math.unit(5 + 9 / 12, "feet"),
  20332. weight: math.unit(190, "lb"),
  20333. name: "Back",
  20334. image: {
  20335. source: "./media/characters/sprisk/back.svg",
  20336. extra: 1247 / 1200,
  20337. bottom: 5.6 / 1253.04
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Tiny",
  20344. height: math.unit(2, "inches")
  20345. },
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(5 + 9 / 12, "feet"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Mini Macro",
  20353. height: math.unit(18, "feet")
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(100, "feet")
  20358. },
  20359. {
  20360. name: "MACRO",
  20361. height: math.unit(50, "miles")
  20362. },
  20363. {
  20364. name: "M A C R O",
  20365. height: math.unit(300, "miles")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Bunsen" },
  20371. {
  20372. side: {
  20373. height: math.unit(15.6, "meters"),
  20374. weight: math.unit(700000, "kg"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/bunsen/side.svg",
  20378. extra: 1644 / 358
  20379. }
  20380. },
  20381. foot: {
  20382. height: math.unit(1.611 * 1644 / 358, "meter"),
  20383. name: "Foot",
  20384. image: {
  20385. source: "./media/characters/bunsen/foot.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Small",
  20392. height: math.unit(10, "feet")
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(15.6, "meters"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Sesh" },
  20403. {
  20404. front: {
  20405. height: math.unit(4 + 11 / 12, "feet"),
  20406. weight: math.unit(140, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/sesh/front.svg",
  20410. extra: 3420 / 3231,
  20411. bottom: 72 / 3949.5
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(4 + 11 / 12, "feet")
  20419. },
  20420. {
  20421. name: "Grown",
  20422. height: math.unit(15, "feet"),
  20423. default: true
  20424. },
  20425. {
  20426. name: "Macro",
  20427. height: math.unit(1500, "feet")
  20428. },
  20429. {
  20430. name: "Megamacro",
  20431. height: math.unit(30, "miles")
  20432. },
  20433. {
  20434. name: "Continental",
  20435. height: math.unit(3000, "miles")
  20436. },
  20437. {
  20438. name: "Gravity Mass",
  20439. height: math.unit(300000, "miles")
  20440. },
  20441. {
  20442. name: "Planet Buster",
  20443. height: math.unit(30000000, "miles")
  20444. },
  20445. {
  20446. name: "Big",
  20447. height: math.unit(3000000000, "miles")
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Pepper" },
  20453. {
  20454. front: {
  20455. height: math.unit(9, "feet"),
  20456. weight: math.unit(350, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/pepper/front.svg",
  20460. extra: 1448/1312,
  20461. bottom: 9.4/1457.88
  20462. }
  20463. },
  20464. back: {
  20465. height: math.unit(9, "feet"),
  20466. weight: math.unit(350, "lb"),
  20467. name: "Back",
  20468. image: {
  20469. source: "./media/characters/pepper/back.svg",
  20470. extra: 1423/1300,
  20471. bottom: 4.6/1429
  20472. }
  20473. },
  20474. maw: {
  20475. height: math.unit(0.932, "feet"),
  20476. name: "Maw",
  20477. image: {
  20478. source: "./media/characters/pepper/maw.svg"
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(9, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Maelstrom" },
  20492. {
  20493. front: {
  20494. height: math.unit(6, "feet"),
  20495. weight: math.unit(150, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/maelstrom/front.svg",
  20499. extra: 2100/1883,
  20500. bottom: 94/2196.7
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Less Kaiju",
  20507. height: math.unit(200, "feet")
  20508. },
  20509. {
  20510. name: "Kaiju",
  20511. height: math.unit(400, "feet"),
  20512. default: true
  20513. },
  20514. {
  20515. name: "Kaiju-er",
  20516. height: math.unit(600, "feet")
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Lexir" },
  20522. {
  20523. front: {
  20524. height: math.unit(6 + 5/12, "feet"),
  20525. weight: math.unit(180, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/lexir/front.svg",
  20529. extra: 180/172,
  20530. bottom: 12/192
  20531. }
  20532. },
  20533. back: {
  20534. height: math.unit(6 + 5/12, "feet"),
  20535. weight: math.unit(180, "lb"),
  20536. name: "Back",
  20537. image: {
  20538. source: "./media/characters/lexir/back.svg",
  20539. extra: 183.84/175.5,
  20540. bottom: 3.1/187
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Very Smal",
  20547. height: math.unit(1, "nm")
  20548. },
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(6 + 5/12, "feet"),
  20552. default: true
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(1, "mile")
  20557. },
  20558. {
  20559. name: "Megamacro",
  20560. height: math.unit(50, "miles")
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Maksio" },
  20566. {
  20567. front: {
  20568. height: math.unit(1.5, "meters"),
  20569. weight: math.unit(100, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/maksio/front.svg",
  20573. extra: 1549/1531,
  20574. bottom: 123.7/1674.5429
  20575. }
  20576. },
  20577. back: {
  20578. height: math.unit(1.5, "meters"),
  20579. weight: math.unit(100, "lb"),
  20580. name: "Back",
  20581. image: {
  20582. source: "./media/characters/maksio/back.svg",
  20583. extra: 1541/1509,
  20584. bottom: 97/1639
  20585. }
  20586. },
  20587. hand: {
  20588. height: math.unit(0.621, "feet"),
  20589. name: "Hand",
  20590. image: {
  20591. source: "./media/characters/maksio/hand.svg"
  20592. }
  20593. },
  20594. foot: {
  20595. height: math.unit(1.611, "feet"),
  20596. name: "Foot",
  20597. image: {
  20598. source: "./media/characters/maksio/foot.svg"
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Shrunken",
  20605. height: math.unit(10, "cm")
  20606. },
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(150, "cm"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Erza Bear" },
  20616. {
  20617. front: {
  20618. height: math.unit(100, "feet"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/erza-bear/front.svg",
  20622. extra: 2449/2390,
  20623. bottom: 46/2494
  20624. }
  20625. },
  20626. back: {
  20627. height: math.unit(100, "feet"),
  20628. name: "Back",
  20629. image: {
  20630. source: "./media/characters/erza-bear/back.svg",
  20631. extra: 2489/2430,
  20632. bottom: 85.4/2480
  20633. }
  20634. },
  20635. tail: {
  20636. height: math.unit(42, "feet"),
  20637. name: "Tail",
  20638. image: {
  20639. source: "./media/characters/erza-bear/tail.svg"
  20640. }
  20641. },
  20642. tongue: {
  20643. height: math.unit(8, "feet"),
  20644. name: "Tongue",
  20645. image: {
  20646. source: "./media/characters/erza-bear/tongue.svg"
  20647. }
  20648. },
  20649. dick: {
  20650. height: math.unit(10.5, "feet"),
  20651. name: "Dick",
  20652. image: {
  20653. source: "./media/characters/erza-bear/dick.svg"
  20654. }
  20655. },
  20656. dickVertical: {
  20657. height: math.unit(16.9, "feet"),
  20658. name: "Dick (Vertical)",
  20659. image: {
  20660. source: "./media/characters/erza-bear/dick-vertical.svg"
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(100, "feet"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(172, "cm"),
  20677. weight: math.unit(73, "kg"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/violet-flor/front.svg",
  20681. extra: 1530/1442,
  20682. bottom: 61.9/1588.8
  20683. }
  20684. },
  20685. back: {
  20686. height: math.unit(180, "cm"),
  20687. weight: math.unit(73, "kg"),
  20688. name: "Back",
  20689. image: {
  20690. source: "./media/characters/violet-flor/back.svg",
  20691. extra: 1692/1630,
  20692. bottom: 20/1712
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(172, "cm"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(6, "feet"),
  20709. weight: math.unit(220, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/lynn-rhea/front.svg",
  20713. extra: 310/273
  20714. }
  20715. },
  20716. back: {
  20717. height: math.unit(6, "feet"),
  20718. weight: math.unit(220, "lb"),
  20719. name: "Back",
  20720. image: {
  20721. source: "./media/characters/lynn-rhea/back.svg",
  20722. extra: 310/273
  20723. }
  20724. },
  20725. dicks: {
  20726. height: math.unit(0.9, "feet"),
  20727. name: "Dicks",
  20728. image: {
  20729. source: "./media/characters/lynn-rhea/dicks.svg"
  20730. }
  20731. },
  20732. slit: {
  20733. height: math.unit(0.4, "feet"),
  20734. name: "Slit",
  20735. image: {
  20736. source: "./media/characters/lynn-rhea/slit.svg"
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Micro",
  20743. height: math.unit(1, "inch")
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(60, "feet"),
  20748. default: true
  20749. },
  20750. {
  20751. name: "Megamacro",
  20752. height: math.unit(2, "miles")
  20753. },
  20754. {
  20755. name: "Gigamacro",
  20756. height: math.unit(3, "earths")
  20757. },
  20758. {
  20759. name: "Galactic",
  20760. height: math.unit(0.8, "galaxies")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Valathos" },
  20766. {
  20767. front: {
  20768. height: math.unit(1600, "feet"),
  20769. weight: math.unit(85758785169, "kg"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/valathos/front.svg",
  20773. extra: 1451/1339
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Macro",
  20780. height: math.unit(1600, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Azula" },
  20787. {
  20788. front: {
  20789. height: math.unit(7 + 5/12, "feet"),
  20790. weight: math.unit(300, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/azula/front.svg",
  20794. extra: 3208/2880,
  20795. bottom: 80.2/3277
  20796. }
  20797. },
  20798. back: {
  20799. height: math.unit(7 + 5/12, "feet"),
  20800. weight: math.unit(300, "lb"),
  20801. name: "Back",
  20802. image: {
  20803. source: "./media/characters/azula/back.svg",
  20804. extra: 3169/2822,
  20805. bottom: 150.6/3321
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(7 + 5/12, "feet"),
  20813. default: true
  20814. },
  20815. {
  20816. name: "Big",
  20817. height: math.unit(20, "feet")
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Rupert" },
  20823. {
  20824. front: {
  20825. height: math.unit(5 + 1/12, "feet"),
  20826. weight: math.unit(110, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/rupert/front.svg",
  20830. extra: 1549/1495,
  20831. bottom: 54.2/1604.4
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(5 + 1/12, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Sheera Castellar" },
  20845. {
  20846. front: {
  20847. height: math.unit(8 + 4/12, "feet"),
  20848. weight: math.unit(350, "lb"),
  20849. name: "Front",
  20850. image: {
  20851. source: "./media/characters/sheera-castellar/front.svg",
  20852. extra: 1957/1894,
  20853. bottom: 26.97/1975.017
  20854. }
  20855. },
  20856. side: {
  20857. height: math.unit(8 + 4/12, "feet"),
  20858. weight: math.unit(350, "lb"),
  20859. name: "Side",
  20860. image: {
  20861. source: "./media/characters/sheera-castellar/side.svg",
  20862. extra: 1957/1894
  20863. }
  20864. },
  20865. back: {
  20866. height: math.unit(8 + 4/12, "feet"),
  20867. weight: math.unit(350, "lb"),
  20868. name: "Back",
  20869. image: {
  20870. source: "./media/characters/sheera-castellar/back.svg",
  20871. extra: 1957/1894
  20872. }
  20873. },
  20874. angled: {
  20875. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20876. weight: math.unit(350, "lb"),
  20877. name: "Angled",
  20878. image: {
  20879. source: "./media/characters/sheera-castellar/angled.svg",
  20880. extra: 1807/1707,
  20881. bottom: 68/1875
  20882. }
  20883. },
  20884. genitals: {
  20885. height: math.unit(2.2, "feet"),
  20886. name: "Genitals",
  20887. image: {
  20888. source: "./media/characters/sheera-castellar/genitals.svg"
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(8 + 4/12, "feet")
  20896. },
  20897. {
  20898. name: "Macro",
  20899. height: math.unit(150, "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro+",
  20904. height: math.unit(800, "feet")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(6, "feet"),
  20913. weight: math.unit(150, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/jaipur/front.svg",
  20917. extra: 3860/3731,
  20918. bottom: 287/4140
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(6, "feet"),
  20923. weight: math.unit(150, "lb"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/jaipur/back.svg",
  20927. extra: 4060/3930,
  20928. bottom: 151/4200
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(1.85, "meters"),
  20936. default: true
  20937. },
  20938. {
  20939. name: "Macro",
  20940. height: math.unit(150, "meters")
  20941. },
  20942. {
  20943. name: "Macro+",
  20944. height: math.unit(0.5, "miles")
  20945. },
  20946. {
  20947. name: "Macro++",
  20948. height: math.unit(2.5, "miles")
  20949. },
  20950. {
  20951. name: "Macro+++",
  20952. height: math.unit(12, "miles")
  20953. },
  20954. {
  20955. name: "Macro++++",
  20956. height: math.unit(120, "miles")
  20957. },
  20958. {
  20959. name: "Macro+++++",
  20960. height: math.unit(1200, "miles")
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Sheila (Wolf)" },
  20966. {
  20967. front: {
  20968. height: math.unit(6, "feet"),
  20969. weight: math.unit(150, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/sheila-wolf/front.svg",
  20973. extra: 1931/1808,
  20974. bottom: 29.5/1960
  20975. }
  20976. },
  20977. dick: {
  20978. height: math.unit(1.464, "feet"),
  20979. name: "Dick",
  20980. image: {
  20981. source: "./media/characters/sheila-wolf/dick.svg"
  20982. }
  20983. },
  20984. muzzle: {
  20985. height: math.unit(0.513, "feet"),
  20986. name: "Muzzle",
  20987. image: {
  20988. source: "./media/characters/sheila-wolf/muzzle.svg"
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Macro",
  20995. height: math.unit(70, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(32, "meters"),
  21005. weight: math.unit(300000, "kg"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/almor/front.svg",
  21009. extra: 1408/1322,
  21010. bottom: 94.6/1506.5
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(32, "meters"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Silver" },
  21024. {
  21025. front: {
  21026. height: math.unit(7, "feet"),
  21027. weight: math.unit(200, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/silver/front.svg",
  21031. extra: 472.1/450.5,
  21032. bottom: 26.5/499.424
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(7, "feet"),
  21040. default: true
  21041. },
  21042. {
  21043. name: "Macro",
  21044. height: math.unit(800, "feet")
  21045. },
  21046. {
  21047. name: "Megamacro",
  21048. height: math.unit(250, "miles")
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Pliskin" },
  21054. {
  21055. front: {
  21056. height: math.unit(6, "feet"),
  21057. weight: math.unit(150, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/pliskin/front.svg",
  21061. extra: 1469/1359,
  21062. bottom: 70/1540
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Micro",
  21069. height: math.unit(3, "inches")
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5 + 11/12, "feet"),
  21074. default: true
  21075. },
  21076. {
  21077. name: "Macro",
  21078. height: math.unit(120, "feet")
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Sammy" },
  21084. {
  21085. front: {
  21086. height: math.unit(6, "feet"),
  21087. weight: math.unit(150, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/sammy/front.svg",
  21091. extra: 1193/1089,
  21092. bottom: 30.5/1226
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(1700, "feet"),
  21100. default: true
  21101. },
  21102. {
  21103. name: "Examacro",
  21104. height: math.unit(2.5e9, "lightyears")
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(21, "meters"),
  21113. weight: math.unit(12, "tonnes"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/kuru/front.svg",
  21117. extra: 4301/3785,
  21118. bottom: 371.3/4691
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(21, "meters"),
  21126. default: true
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(23, "meters"),
  21135. weight: math.unit(12.2, "tonnes"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/rakka/front.svg",
  21139. extra: 4670/4169,
  21140. bottom: 301/4968.7
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Macro",
  21147. height: math.unit(23, "meters"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Rhys (Feline)" },
  21154. {
  21155. front: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/rhys-feline/front.svg",
  21161. extra: 2488/2308,
  21162. bottom: 35.67/2519.19
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Really Small",
  21169. height: math.unit(1, "nm")
  21170. },
  21171. {
  21172. name: "Micro",
  21173. height: math.unit(4, "inches")
  21174. },
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(4 + 10/12, "feet"),
  21178. default: true
  21179. },
  21180. {
  21181. name: "Macro",
  21182. height: math.unit(100, "feet")
  21183. },
  21184. {
  21185. name: "Megamacto",
  21186. height: math.unit(50, "miles")
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21192. {
  21193. side: {
  21194. height: math.unit(30, "feet"),
  21195. weight: math.unit(35000, "kg"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/alydar/side.svg",
  21199. extra: 234/222,
  21200. bottom: 6.5/241
  21201. }
  21202. },
  21203. front: {
  21204. height: math.unit(30, "feet"),
  21205. weight: math.unit(35000, "kg"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/alydar/front.svg",
  21209. extra: 223.37/210.2,
  21210. bottom: 22.3/246.76
  21211. }
  21212. },
  21213. top: {
  21214. height: math.unit(64.54, "feet"),
  21215. weight: math.unit(35000, "kg"),
  21216. name: "Top",
  21217. image: {
  21218. source: "./media/characters/alydar/top.svg"
  21219. }
  21220. },
  21221. anthro: {
  21222. height: math.unit(30, "feet"),
  21223. weight: math.unit(9000, "kg"),
  21224. name: "Anthro",
  21225. image: {
  21226. source: "./media/characters/alydar/anthro.svg",
  21227. extra: 432/421,
  21228. bottom: 7.18/440
  21229. }
  21230. },
  21231. maw: {
  21232. height: math.unit(11.693, "feet"),
  21233. name: "Maw",
  21234. image: {
  21235. source: "./media/characters/alydar/maw.svg"
  21236. }
  21237. },
  21238. head: {
  21239. height: math.unit(11.693, "feet"),
  21240. name: "Head",
  21241. image: {
  21242. source: "./media/characters/alydar/head.svg"
  21243. }
  21244. },
  21245. headAlt: {
  21246. height: math.unit(12.861, "feet"),
  21247. name: "Head (Alt)",
  21248. image: {
  21249. source: "./media/characters/alydar/head-alt.svg"
  21250. }
  21251. },
  21252. wing: {
  21253. height: math.unit(20.712, "feet"),
  21254. name: "Wing",
  21255. image: {
  21256. source: "./media/characters/alydar/wing.svg"
  21257. }
  21258. },
  21259. wingFeather: {
  21260. height: math.unit(9.662, "feet"),
  21261. name: "Wing Feather",
  21262. image: {
  21263. source: "./media/characters/alydar/wing-feather.svg"
  21264. }
  21265. },
  21266. countourFeather: {
  21267. height: math.unit(4.154, "feet"),
  21268. name: "Contour Feather",
  21269. image: {
  21270. source: "./media/characters/alydar/contour-feather.svg"
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Diplomatic",
  21277. height: math.unit(13, "feet"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Small",
  21282. height: math.unit(30, "feet")
  21283. },
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(95, "feet"),
  21287. default: true
  21288. },
  21289. {
  21290. name: "Large",
  21291. height: math.unit(285, "feet")
  21292. },
  21293. {
  21294. name: "Incomprehensible",
  21295. height: math.unit(450, "megameters")
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Selicia" },
  21301. {
  21302. side: {
  21303. height: math.unit(11, "feet"),
  21304. weight: math.unit(1750, "kg"),
  21305. name: "Side",
  21306. image: {
  21307. source: "./media/characters/selicia/side.svg",
  21308. extra: 440/396,
  21309. bottom: 24.8/465.979
  21310. }
  21311. },
  21312. maw: {
  21313. height: math.unit(4.665, "feet"),
  21314. name: "Maw",
  21315. image: {
  21316. source: "./media/characters/selicia/maw.svg"
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(11, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Layla" },
  21330. {
  21331. side: {
  21332. height: math.unit(2 + 6 /12, "feet"),
  21333. weight: math.unit(30, "lb"),
  21334. name: "Side",
  21335. image: {
  21336. source: "./media/characters/layla/side.svg",
  21337. extra: 244/188,
  21338. bottom: 18.2/262.1
  21339. }
  21340. },
  21341. back: {
  21342. height: math.unit(2 + 6 /12, "feet"),
  21343. weight: math.unit(30, "lb"),
  21344. name: "Back",
  21345. image: {
  21346. source: "./media/characters/layla/back.svg",
  21347. extra: 308/241.5,
  21348. bottom: 8.9/316.8
  21349. }
  21350. },
  21351. cumming: {
  21352. height: math.unit(2 + 6 /12, "feet"),
  21353. weight: math.unit(30, "lb"),
  21354. name: "Cumming",
  21355. image: {
  21356. source: "./media/characters/layla/cumming.svg",
  21357. extra: 342/279,
  21358. bottom: 595/938
  21359. }
  21360. },
  21361. dickFlaccid: {
  21362. height: math.unit(2.595, "feet"),
  21363. name: "Flaccid Genitals",
  21364. image: {
  21365. source: "./media/characters/layla/dick-flaccid.svg"
  21366. }
  21367. },
  21368. dickErect: {
  21369. height: math.unit(2.359, "feet"),
  21370. name: "Erect Genitals",
  21371. image: {
  21372. source: "./media/characters/layla/dick-erect.svg"
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Micro",
  21379. height: math.unit(1, "inch")
  21380. },
  21381. {
  21382. name: "Small",
  21383. height: math.unit(1, "foot")
  21384. },
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(2 + 6/12, "feet"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Macro",
  21392. height: math.unit(200, "feet")
  21393. },
  21394. {
  21395. name: "Megamacro",
  21396. height: math.unit(1000, "miles")
  21397. },
  21398. {
  21399. name: "Planetary",
  21400. height: math.unit(8000, "miles")
  21401. },
  21402. {
  21403. name: "True Layla",
  21404. height: math.unit(200000*7, "multiverses")
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Knox" },
  21410. {
  21411. back: {
  21412. height: math.unit(10.5, "feet"),
  21413. weight: math.unit(800, "lb"),
  21414. name: "Back",
  21415. image: {
  21416. source: "./media/characters/knox/back.svg",
  21417. extra: 1486/1089,
  21418. bottom: 107/1601.4
  21419. }
  21420. },
  21421. side: {
  21422. height: math.unit(10.5, "feet"),
  21423. weight: math.unit(800, "lb"),
  21424. name: "Side",
  21425. image: {
  21426. source: "./media/characters/knox/side.svg",
  21427. extra: 244/218,
  21428. bottom: 14/260
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Compact",
  21435. height: math.unit(10.5, "feet"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Dynamax",
  21440. height: math.unit(210, "feet")
  21441. },
  21442. {
  21443. name: "Full Macro",
  21444. height: math.unit(850, "feet")
  21445. },
  21446. ]
  21447. ))
  21448. characterMakers.push(() => makeCharacter(
  21449. { name: "Shin (Pikachu)" },
  21450. {
  21451. front: {
  21452. height: math.unit(6, "feet"),
  21453. weight: math.unit(152, "lb"),
  21454. name: "Front",
  21455. image: {
  21456. source: "./media/characters/shin-pikachu/front.svg",
  21457. extra: 1574/1480,
  21458. bottom: 53.3/1626
  21459. }
  21460. },
  21461. hand: {
  21462. height: math.unit(1.055, "feet"),
  21463. name: "Hand",
  21464. image: {
  21465. source: "./media/characters/shin-pikachu/hand.svg"
  21466. }
  21467. },
  21468. foot: {
  21469. height: math.unit(1.1, "feet"),
  21470. name: "Foot",
  21471. image: {
  21472. source: "./media/characters/shin-pikachu/foot.svg"
  21473. }
  21474. },
  21475. collar: {
  21476. height: math.unit(0.386, "feet"),
  21477. name: "Collar",
  21478. image: {
  21479. source: "./media/characters/shin-pikachu/collar.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Smallest",
  21486. height: math.unit(0.5, "inches")
  21487. },
  21488. {
  21489. name: "Micro",
  21490. height: math.unit(6, "inches")
  21491. },
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(6, "feet"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(150, "feet")
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Kayda" },
  21505. {
  21506. front: {
  21507. height: math.unit(28, "feet"),
  21508. weight: math.unit(10500, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/kayda/front.svg",
  21512. extra: 1536/1428,
  21513. bottom: 68.7/1603
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(28, "feet"),
  21518. weight: math.unit(10500, "lb"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/kayda/back.svg",
  21522. extra: 1557/1464,
  21523. bottom: 39.5/1597.49
  21524. }
  21525. },
  21526. dick: {
  21527. height: math.unit(3.858, "feet"),
  21528. name: "Dick",
  21529. image: {
  21530. source: "./media/characters/kayda/dick.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(28, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(10 + 11/12, "feet"),
  21547. weight: math.unit(1400, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/brian/front.svg",
  21551. extra: 737/692,
  21552. bottom: 55.4/785
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(10 + 11/12, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(5 + 8/12, "feet"),
  21569. weight: math.unit(140, "lb"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/khemri/front.svg",
  21573. extra: 4780/4059,
  21574. bottom: 80.1/4859.25
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Micro",
  21581. height: math.unit(6, "inches")
  21582. },
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(5 + 8/12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Felix Braveheart" },
  21592. {
  21593. front: {
  21594. height: math.unit(13, "feet"),
  21595. weight: math.unit(1700, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/felix-braveheart/front.svg",
  21599. extra: 1222/1157,
  21600. bottom: 53.2/1280
  21601. }
  21602. },
  21603. back: {
  21604. height: math.unit(13, "feet"),
  21605. weight: math.unit(1700, "lb"),
  21606. name: "Back",
  21607. image: {
  21608. source: "./media/characters/felix-braveheart/back.svg",
  21609. extra: 1277/1203,
  21610. bottom: 50.2/1327
  21611. }
  21612. },
  21613. feral: {
  21614. height: math.unit(6, "feet"),
  21615. weight: math.unit(400, "lb"),
  21616. name: "Feral",
  21617. image: {
  21618. source: "./media/characters/felix-braveheart/feral.svg",
  21619. extra: 682/625,
  21620. bottom: 6.9/688
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(13, "feet"),
  21628. default: true
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Shadow Blade" },
  21634. {
  21635. side: {
  21636. height: math.unit(5 + 11/12, "feet"),
  21637. weight: math.unit(1400, "lb"),
  21638. name: "Side",
  21639. image: {
  21640. source: "./media/characters/shadow-blade/side.svg",
  21641. extra: 1726/1267,
  21642. bottom: 58.4/1785
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(5 + 11/12, "feet"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Karla Halldor" },
  21656. {
  21657. front: {
  21658. height: math.unit(1 + 6/12, "feet"),
  21659. weight: math.unit(25, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/karla-halldor/front.svg",
  21663. extra: 1459/1383,
  21664. bottom: 12/1472
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(1 + 6/12, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Ariam" },
  21678. {
  21679. front: {
  21680. height: math.unit(6 + 2/12, "feet"),
  21681. weight: math.unit(160, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/ariam/front.svg",
  21685. extra: 714/617,
  21686. bottom: 23.4/737,
  21687. }
  21688. },
  21689. squatting: {
  21690. height: math.unit(4.1, "feet"),
  21691. weight: math.unit(160, "lb"),
  21692. name: "Squatting",
  21693. image: {
  21694. source: "./media/characters/ariam/squatting.svg",
  21695. extra: 2617/2112,
  21696. bottom: 61.2/2681,
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(6 + 2/12, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Normal+",
  21708. height: math.unit(4, "meters")
  21709. },
  21710. {
  21711. name: "Macro",
  21712. height: math.unit(50, "meters")
  21713. },
  21714. {
  21715. name: "Macro+",
  21716. height: math.unit(100, "meters")
  21717. },
  21718. {
  21719. name: "Megamacro",
  21720. height: math.unit(20, "km")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Qodri Class-of-'Fortwelve-Six" },
  21726. {
  21727. front: {
  21728. height: math.unit(1.67, "meters"),
  21729. weight: math.unit(140, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21733. extra: 438/410,
  21734. bottom: 0.75/439
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Shrunken",
  21741. height: math.unit(7.6, "cm")
  21742. },
  21743. {
  21744. name: "Human Scale",
  21745. height: math.unit(1.67, "meters")
  21746. },
  21747. {
  21748. name: "Wolxi Scale",
  21749. height: math.unit(36.7, "meters"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Izue Two-Mothers" },
  21756. {
  21757. front: {
  21758. height: math.unit(1.73, "meters"),
  21759. weight: math.unit(240, "lb"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/izue-two-mothers/front.svg",
  21763. extra: 469/437,
  21764. bottom: 1.24/470.6
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Shrunken",
  21771. height: math.unit(7.86, "cm")
  21772. },
  21773. {
  21774. name: "Human Scale",
  21775. height: math.unit(1.73, "meters")
  21776. },
  21777. {
  21778. name: "Wolxi Scale",
  21779. height: math.unit(38, "meters"),
  21780. default: true
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Teeku Love-Shack" },
  21786. {
  21787. front: {
  21788. height: math.unit(1.55, "meters"),
  21789. weight: math.unit(120, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/teeku-love-shack/front.svg",
  21793. extra: 387/362,
  21794. bottom: 1.51/388
  21795. }
  21796. },
  21797. },
  21798. [
  21799. {
  21800. name: "Shrunken",
  21801. height: math.unit(7, "cm")
  21802. },
  21803. {
  21804. name: "Human Scale",
  21805. height: math.unit(1.55, "meters")
  21806. },
  21807. {
  21808. name: "Wolxi Scale",
  21809. height: math.unit(34.1, "meters"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Dejma the Red" },
  21816. {
  21817. front: {
  21818. height: math.unit(1.83, "meters"),
  21819. weight: math.unit(135, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/dejma-the-red/front.svg",
  21823. extra: 480/458,
  21824. bottom: 1.8/482
  21825. }
  21826. },
  21827. },
  21828. [
  21829. {
  21830. name: "Shrunken",
  21831. height: math.unit(8.3, "cm")
  21832. },
  21833. {
  21834. name: "Human Scale",
  21835. height: math.unit(1.83, "meters")
  21836. },
  21837. {
  21838. name: "Wolxi Scale",
  21839. height: math.unit(40, "meters"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Aki" },
  21846. {
  21847. front: {
  21848. height: math.unit(1.78, "meters"),
  21849. weight: math.unit(65, "kg"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/aki/front.svg",
  21853. extra: 452/415
  21854. }
  21855. },
  21856. frontNsfw: {
  21857. height: math.unit(1.78, "meters"),
  21858. weight: math.unit(65, "kg"),
  21859. name: "Front (NSFW)",
  21860. image: {
  21861. source: "./media/characters/aki/front-nsfw.svg",
  21862. extra: 452/415
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(1.78, "meters"),
  21867. weight: math.unit(65, "kg"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/aki/back.svg",
  21871. extra: 452/415
  21872. }
  21873. },
  21874. rump: {
  21875. height: math.unit(2.05, "feet"),
  21876. name: "Rump",
  21877. image: {
  21878. source: "./media/characters/aki/rump.svg"
  21879. }
  21880. },
  21881. dick: {
  21882. height: math.unit(0.95, "feet"),
  21883. name: "Dick",
  21884. image: {
  21885. source: "./media/characters/aki/dick.svg"
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Micro",
  21892. height: math.unit(15, "cm")
  21893. },
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(178, "cm"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(214, "m")
  21902. },
  21903. {
  21904. name: "Macro+",
  21905. height: math.unit(534, "m")
  21906. },
  21907. ]
  21908. ))
  21909. characterMakers.push(() => makeCharacter(
  21910. { name: "Ari" },
  21911. {
  21912. front: {
  21913. height: math.unit(5 + 5/12, "feet"),
  21914. weight: math.unit(120, "lb"),
  21915. name: "Front",
  21916. image: {
  21917. source: "./media/characters/ari/front.svg",
  21918. extra: 714.5/682,
  21919. bottom: 8/722.5
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(5 + 5/12, "feet")
  21927. },
  21928. {
  21929. name: "Macro",
  21930. height: math.unit(100, "feet"),
  21931. default: true
  21932. },
  21933. {
  21934. name: "Megamacro",
  21935. height: math.unit(100, "miles")
  21936. },
  21937. {
  21938. name: "Gigamacro",
  21939. height: math.unit(80000, "miles")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Bolt" },
  21945. {
  21946. side: {
  21947. height: math.unit(9, "feet"),
  21948. weight: math.unit(400, "kg"),
  21949. name: "Side",
  21950. image: {
  21951. source: "./media/characters/bolt/side.svg",
  21952. extra: 1126/896,
  21953. bottom: 60/1187.3,
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Micro",
  21960. height: math.unit(5, "inches")
  21961. },
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(9, "feet"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(700, "feet")
  21970. },
  21971. {
  21972. name: "Max Size",
  21973. height: math.unit(1.52e22, "yottameters")
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(4.53, "meters"),
  21982. weight: math.unit(3, "tons"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/draekon-sylviar/front.svg",
  21986. extra: 1228/1068,
  21987. bottom: 41/1270
  21988. }
  21989. },
  21990. tail: {
  21991. height: math.unit(1.772, "meter"),
  21992. name: "Tail",
  21993. image: {
  21994. source: "./media/characters/draekon-sylviar/tail.svg"
  21995. }
  21996. },
  21997. head: {
  21998. height: math.unit(1.331, "meter"),
  21999. name: "Head",
  22000. image: {
  22001. source: "./media/characters/draekon-sylviar/head.svg"
  22002. }
  22003. },
  22004. hand: {
  22005. height: math.unit(0.564, "meter"),
  22006. name: "Hand",
  22007. image: {
  22008. source: "./media/characters/draekon-sylviar/hand.svg"
  22009. }
  22010. },
  22011. foot: {
  22012. height: math.unit(0.621, "meter"),
  22013. name: "Foot",
  22014. image: {
  22015. source: "./media/characters/draekon-sylviar/foot.svg",
  22016. bottom: 32/324
  22017. }
  22018. },
  22019. dick: {
  22020. height: math.unit(61, "cm"),
  22021. name: "Dick",
  22022. image: {
  22023. source: "./media/characters/draekon-sylviar/dick.svg"
  22024. }
  22025. },
  22026. dickseparated: {
  22027. height: math.unit(61, "cm"),
  22028. name: "Dick-separated",
  22029. image: {
  22030. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Small",
  22037. height: math.unit(4.53/2, "meters"),
  22038. default: true
  22039. },
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(4.53, "meters"),
  22043. default: true
  22044. },
  22045. {
  22046. name: "Large",
  22047. height: math.unit(4.53*2, "meters"),
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(6 + 2/12, "feet"),
  22056. weight: math.unit(180, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/brawler/front.svg",
  22060. extra: 3301/3027,
  22061. bottom: 138/3439
  22062. }
  22063. },
  22064. },
  22065. [
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(6 + 2/12, "feet"),
  22069. default: true
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(11, "feet"),
  22078. weight: math.unit(1000, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/alex/front.svg",
  22082. bottom: 44.5/620
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Micro",
  22089. height: math.unit(5, "inches")
  22090. },
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(11, "feet"),
  22094. default: true
  22095. },
  22096. {
  22097. name: "Macro",
  22098. height: math.unit(9.5e9, "feet")
  22099. },
  22100. {
  22101. name: "Max Size",
  22102. height: math.unit(1.4e283, "yottameters")
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Zenari" },
  22108. {
  22109. female: {
  22110. height: math.unit(29.9, "m"),
  22111. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22112. name: "Female",
  22113. image: {
  22114. source: "./media/characters/zenari/female.svg",
  22115. extra: 3281.6/3217,
  22116. bottom: 72.2/3353
  22117. }
  22118. },
  22119. male: {
  22120. height: math.unit(27.7, "m"),
  22121. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22122. name: "Male",
  22123. image: {
  22124. source: "./media/characters/zenari/male.svg",
  22125. extra: 3008/2991,
  22126. bottom: 54.6/3069
  22127. }
  22128. },
  22129. },
  22130. [
  22131. {
  22132. name: "Macro",
  22133. height: math.unit(29.7, "meters"),
  22134. default: true
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Mactarian" },
  22140. {
  22141. female: {
  22142. height: math.unit(23.8, "m"),
  22143. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22144. name: "Female",
  22145. image: {
  22146. source: "./media/characters/mactarian/female.svg",
  22147. extra: 2662/2569,
  22148. bottom: 73/2736
  22149. }
  22150. },
  22151. male: {
  22152. height: math.unit(23.8, "m"),
  22153. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22154. name: "Male",
  22155. image: {
  22156. source: "./media/characters/mactarian/male.svg",
  22157. extra: 2673/2600,
  22158. bottom: 76/2750
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Macro",
  22165. height: math.unit(23.8, "meters"),
  22166. default: true
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Umok" },
  22172. {
  22173. female: {
  22174. height: math.unit(19.3, "m"),
  22175. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22176. name: "Female",
  22177. image: {
  22178. source: "./media/characters/umok/female.svg",
  22179. extra: 2186/2078,
  22180. bottom: 87/2277
  22181. }
  22182. },
  22183. male: {
  22184. height: math.unit(19.5, "m"),
  22185. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22186. name: "Male",
  22187. image: {
  22188. source: "./media/characters/umok/male.svg",
  22189. extra: 2233/2140,
  22190. bottom: 24.4/2258
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Macro",
  22197. height: math.unit(19.3, "meters"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Joraxian" },
  22204. {
  22205. female: {
  22206. height: math.unit(26.15, "m"),
  22207. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22208. name: "Female",
  22209. image: {
  22210. source: "./media/characters/joraxian/female.svg",
  22211. extra: 2943/2831,
  22212. bottom: 27/2972
  22213. }
  22214. },
  22215. male: {
  22216. height: math.unit(25.4, "m"),
  22217. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22218. name: "Male",
  22219. image: {
  22220. source: "./media/characters/joraxian/male.svg",
  22221. extra: 2835/2741,
  22222. bottom: 27/2862
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Macro",
  22229. height: math.unit(26.15, "meters"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Sthara" },
  22236. {
  22237. female: {
  22238. height: math.unit(21.6, "m"),
  22239. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22240. name: "Female",
  22241. image: {
  22242. source: "./media/characters/sthara/female.svg",
  22243. extra: 2516/2347,
  22244. bottom: 21.5/2537
  22245. }
  22246. },
  22247. male: {
  22248. height: math.unit(24, "m"),
  22249. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22250. name: "Male",
  22251. image: {
  22252. source: "./media/characters/sthara/male.svg",
  22253. extra: 2732/2607,
  22254. bottom: 23/2732
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Macro",
  22261. height: math.unit(21.6, "meters"),
  22262. default: true
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Luka Bryzant" },
  22268. {
  22269. front: {
  22270. height: math.unit(6 + 4/12, "feet"),
  22271. weight: math.unit(175, "lb"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/luka-bryzant/front.svg",
  22275. extra: 311/289,
  22276. bottom: 4/315
  22277. }
  22278. },
  22279. back: {
  22280. height: math.unit(6 + 4/12, "feet"),
  22281. weight: math.unit(175, "lb"),
  22282. name: "Back",
  22283. image: {
  22284. source: "./media/characters/luka-bryzant/back.svg",
  22285. extra: 311/289,
  22286. bottom: 3.8/313.7
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Micro",
  22293. height: math.unit(10, "inches")
  22294. },
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(6 + 4/12, "feet"),
  22298. default: true
  22299. },
  22300. {
  22301. name: "Large",
  22302. height: math.unit(12, "feet")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Aman Aquila" },
  22308. {
  22309. front: {
  22310. height: math.unit(5 + 7/12, "feet"),
  22311. weight: math.unit(185, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/aman-aquila/front.svg",
  22315. extra: 1013/976,
  22316. bottom: 45.6/1057
  22317. }
  22318. },
  22319. side: {
  22320. height: math.unit(5 + 7/12, "feet"),
  22321. weight: math.unit(185, "lb"),
  22322. name: "Side",
  22323. image: {
  22324. source: "./media/characters/aman-aquila/side.svg",
  22325. extra: 1054/1011,
  22326. bottom: 15/1070
  22327. }
  22328. },
  22329. back: {
  22330. height: math.unit(5 + 7/12, "feet"),
  22331. weight: math.unit(185, "lb"),
  22332. name: "Back",
  22333. image: {
  22334. source: "./media/characters/aman-aquila/back.svg",
  22335. extra: 1026/970,
  22336. bottom: 12/1039
  22337. }
  22338. },
  22339. head: {
  22340. height: math.unit(1.211, "feet"),
  22341. name: "Head",
  22342. image: {
  22343. source: "./media/characters/aman-aquila/head.svg",
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Minimicro",
  22350. height: math.unit(0.057, "inches")
  22351. },
  22352. {
  22353. name: "Micro",
  22354. height: math.unit(7, "inches")
  22355. },
  22356. {
  22357. name: "Mini",
  22358. height: math.unit(3 + 7/12, "feet")
  22359. },
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(5 + 7/12, "feet"),
  22363. default: true
  22364. },
  22365. {
  22366. name: "Macro",
  22367. height: math.unit(157 + 7/12, "feet")
  22368. },
  22369. {
  22370. name: "Megamacro",
  22371. height: math.unit(1557 + 7/12, "feet")
  22372. },
  22373. {
  22374. name: "Gigamacro",
  22375. height: math.unit(15557 + 7/12, "feet")
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22381. {
  22382. front: {
  22383. height: math.unit(3 + 2/12, "inches"),
  22384. weight: math.unit(0.3, "ounces"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/hiphae/front.svg",
  22388. extra: 1931/1683,
  22389. bottom: 24/1955
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Normal",
  22396. height: math.unit(3 + 1/2, "inches"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(5 + 10/12, "feet"),
  22406. weight: math.unit(165, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/nicky/front.svg",
  22410. extra: 3144/2886,
  22411. bottom: 45.6/3192
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(5 + 10/12, "feet"),
  22416. weight: math.unit(165, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/nicky/back.svg",
  22420. extra: 3055/2804,
  22421. bottom: 28.4/3087
  22422. }
  22423. },
  22424. frontclothed: {
  22425. height: math.unit(5 + 10/12, "feet"),
  22426. weight: math.unit(165, "lb"),
  22427. name: "Front-clothed",
  22428. image: {
  22429. source: "./media/characters/nicky/front-clothed.svg",
  22430. extra: 3184.9/2926.9,
  22431. bottom: 86.5/3239.9
  22432. }
  22433. },
  22434. foot: {
  22435. height: math.unit(1.16, "feet"),
  22436. name: "Foot",
  22437. image: {
  22438. source: "./media/characters/nicky/foot.svg"
  22439. }
  22440. },
  22441. feet: {
  22442. height: math.unit(1.34, "feet"),
  22443. name: "Feet",
  22444. image: {
  22445. source: "./media/characters/nicky/feet.svg"
  22446. }
  22447. },
  22448. maw: {
  22449. height: math.unit(0.9, "feet"),
  22450. name: "Maw",
  22451. image: {
  22452. source: "./media/characters/nicky/maw.svg"
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(5 + 10/12, "feet"),
  22460. default: true
  22461. },
  22462. {
  22463. name: "Macro",
  22464. height: math.unit(60, "feet")
  22465. },
  22466. {
  22467. name: "Megamacro",
  22468. height: math.unit(1, "mile")
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Blair" },
  22474. {
  22475. side: {
  22476. height: math.unit(10, "feet"),
  22477. weight: math.unit(600, "lb"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/blair/side.svg",
  22481. bottom: 16.6/475,
  22482. extra: 458/431
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Micro",
  22489. height: math.unit(8, "inches")
  22490. },
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(10, "feet"),
  22494. default: true
  22495. },
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(180, "feet")
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Fisher" },
  22504. {
  22505. front: {
  22506. height: math.unit(5 + 4/12, "feet"),
  22507. weight: math.unit(125, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/fisher/front.svg",
  22511. extra: 444/390,
  22512. bottom: 2/444.8
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Micro",
  22519. height: math.unit(4, "inches")
  22520. },
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(5 + 4/12, "feet"),
  22524. default: true
  22525. },
  22526. {
  22527. name: "Macro",
  22528. height: math.unit(100, "feet")
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Gliss" },
  22534. {
  22535. front: {
  22536. height: math.unit(6.71, "feet"),
  22537. weight: math.unit(200, "lb"),
  22538. capacity: math.unit(1000000, "people"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/gliss/front.svg",
  22542. extra: 2347/2231,
  22543. bottom: 113/2462
  22544. }
  22545. },
  22546. hammerspaceSize: {
  22547. height: math.unit(6.71*717, "feet"),
  22548. weight: math.unit(200, "lb"),
  22549. capacity: math.unit(1000000, "people"),
  22550. name: "Hammerspace Size",
  22551. image: {
  22552. source: "./media/characters/gliss/front.svg",
  22553. extra: 2347/2231,
  22554. bottom: 113/2462
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(6.71, "feet"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Dune Anderson" },
  22568. {
  22569. side: {
  22570. height: math.unit(1.44, "m"),
  22571. weight: math.unit(80, "kg"),
  22572. name: "Side",
  22573. image: {
  22574. source: "./media/characters/dune-anderson/side.svg",
  22575. bottom: 49/1426
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Wolf-sized",
  22582. height: math.unit(1.44, "meters")
  22583. },
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5.05, "meters"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Big",
  22591. height: math.unit(14.4, "meters")
  22592. },
  22593. {
  22594. name: "Huge",
  22595. height: math.unit(144, "meters")
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Hind" },
  22601. {
  22602. front: {
  22603. height: math.unit(7, "feet"),
  22604. weight: math.unit(425, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/hind/front.svg",
  22608. extra: 2091/1860,
  22609. bottom: 129/2220
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(7, "feet"),
  22614. weight: math.unit(425, "lb"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/hind/back.svg",
  22618. extra: 2091/1860,
  22619. bottom: 24.6/2309
  22620. }
  22621. },
  22622. tail: {
  22623. height: math.unit(2.8, "feet"),
  22624. name: "Tail",
  22625. image: {
  22626. source: "./media/characters/hind/tail.svg"
  22627. }
  22628. },
  22629. head: {
  22630. height: math.unit(2.55, "feet"),
  22631. name: "Head",
  22632. image: {
  22633. source: "./media/characters/hind/head.svg"
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "XS",
  22640. height: math.unit(0.7, "feet")
  22641. },
  22642. {
  22643. name: "Normal",
  22644. height: math.unit(7, "feet"),
  22645. default: true
  22646. },
  22647. {
  22648. name: "XL",
  22649. height: math.unit(70, "feet")
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Dylan (Skaven)" },
  22655. {
  22656. front: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(150, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/dylan-skaven/front.svg",
  22662. extra: 2318/2063,
  22663. bottom: 93.4/2410
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Nano",
  22670. height: math.unit(1, "mm")
  22671. },
  22672. {
  22673. name: "Micro",
  22674. height: math.unit(1, "cm")
  22675. },
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(2.1, "meters"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(7 + 5/12, "feet"),
  22688. weight: math.unit(357, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/solex-draconov/front.svg",
  22692. extra: 1993/1865,
  22693. bottom: 117/2111
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Natural Height",
  22700. height: math.unit(7 + 5/12, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(350, "feet")
  22706. },
  22707. {
  22708. name: "Macro+",
  22709. height: math.unit(1000, "feet")
  22710. },
  22711. {
  22712. name: "Megamacro",
  22713. height: math.unit(20, "km")
  22714. },
  22715. {
  22716. name: "Megamacro+",
  22717. height: math.unit(1000, "km")
  22718. },
  22719. {
  22720. name: "Gigamacro",
  22721. height: math.unit(2.5, "Gm")
  22722. },
  22723. {
  22724. name: "Teramacro",
  22725. height: math.unit(15, "Tm")
  22726. },
  22727. {
  22728. name: "Galactic",
  22729. height: math.unit(30, "Zm")
  22730. },
  22731. {
  22732. name: "Universal",
  22733. height: math.unit(21000, "Ym")
  22734. },
  22735. {
  22736. name: "Omniversal",
  22737. height: math.unit(9.861e50, "Ym")
  22738. },
  22739. {
  22740. name: "Existential",
  22741. height: math.unit(1e300, "meters")
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Mandarax" },
  22747. {
  22748. side: {
  22749. height: math.unit(25, "feet"),
  22750. weight: math.unit(90000, "lb"),
  22751. name: "Side",
  22752. image: {
  22753. source: "./media/characters/mandarax/side.svg",
  22754. extra: 614/332,
  22755. bottom: 55/630
  22756. }
  22757. },
  22758. head: {
  22759. height: math.unit(11.4, "feet"),
  22760. name: "Head",
  22761. image: {
  22762. source: "./media/characters/mandarax/head.svg"
  22763. }
  22764. },
  22765. belly: {
  22766. height: math.unit(33, "feet"),
  22767. name: "Belly",
  22768. capacity: math.unit(500, "people"),
  22769. image: {
  22770. source: "./media/characters/mandarax/belly.svg"
  22771. }
  22772. },
  22773. dick: {
  22774. height: math.unit(8.46, "feet"),
  22775. name: "Dick",
  22776. image: {
  22777. source: "./media/characters/mandarax/dick.svg"
  22778. }
  22779. },
  22780. top: {
  22781. height: math.unit(28, "meters"),
  22782. name: "Top",
  22783. image: {
  22784. source: "./media/characters/mandarax/top.svg"
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(25, "feet"),
  22792. default: true
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(5, "feet"),
  22801. weight: math.unit(90, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/pixil/front.svg",
  22805. extra: 2000/1618,
  22806. bottom: 12.3/2011
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Normal",
  22813. height: math.unit(5, "feet"),
  22814. default: true
  22815. },
  22816. {
  22817. name: "Megamacro",
  22818. height: math.unit(10, "miles"),
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(7 + 2/12, "feet"),
  22827. weight: math.unit(200, "lb"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/angel/front.svg",
  22831. extra: 1830/1737,
  22832. bottom: 22.6/1854,
  22833. }
  22834. },
  22835. },
  22836. [
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(7 + 2/12, "feet"),
  22840. default: true
  22841. },
  22842. {
  22843. name: "Macro",
  22844. height: math.unit(1000, "feet")
  22845. },
  22846. {
  22847. name: "Megamacro",
  22848. height: math.unit(2, "miles")
  22849. },
  22850. {
  22851. name: "Gigamacro",
  22852. height: math.unit(20, "earths")
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(5, "feet"),
  22861. weight: math.unit(180, "lb"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/mekana/front.svg",
  22865. extra: 1671/1605,
  22866. bottom: 3.5/1691
  22867. }
  22868. },
  22869. side: {
  22870. height: math.unit(5, "feet"),
  22871. weight: math.unit(180, "lb"),
  22872. name: "Side",
  22873. image: {
  22874. source: "./media/characters/mekana/side.svg",
  22875. extra: 1671/1605,
  22876. bottom: 3.5/1691
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(5, "feet"),
  22881. weight: math.unit(180, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/mekana/back.svg",
  22885. extra: 1671/1605,
  22886. bottom: 3.5/1691
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(5, "feet"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  22900. {
  22901. front: {
  22902. height: math.unit(4 + 6/12, "feet"),
  22903. weight: math.unit(80, "lb"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/pixie/front.svg",
  22907. extra: 1924/1825,
  22908. bottom: 22.4/1946
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(4 + 6/12, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(40, "feet")
  22921. },
  22922. ]
  22923. ))
  22924. //characters
  22925. function makeCharacters() {
  22926. const results = [];
  22927. characterMakers.forEach(character => {
  22928. results.push(character());
  22929. });
  22930. return results;
  22931. }