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

23837 строки
575 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: "Leaf-Nosed 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. "rodent"
  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. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. }
  672. function getSpeciesInfo(speciesList) {
  673. let result = new Set();
  674. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  675. result.add(entry)
  676. });
  677. return Array.from(result);
  678. };
  679. function getSpeciesInfoHelper(species) {
  680. if (!speciesData[species]) {
  681. console.warn(species + " doesn't exist");
  682. return [];
  683. }
  684. if (speciesData[species].parents) {
  685. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  686. } else {
  687. return [species];
  688. }
  689. }
  690. characterMakers.push(() => makeCharacter(
  691. {
  692. name: "Fen",
  693. species: ["crux"],
  694. description: {
  695. title: "Bio",
  696. text: "Very furry. Sheds on everything."
  697. },
  698. tags: [
  699. "anthro"
  700. ]
  701. },
  702. {
  703. back: {
  704. height: math.unit(2.2428, "meter"),
  705. weight: math.unit(124.738, "kg"),
  706. name: "Back",
  707. image: {
  708. source: "./media/characters/fen/back.svg",
  709. extra: 1025 / 935,
  710. bottom: 0.01
  711. },
  712. info: {
  713. description: {
  714. mode: "append",
  715. text: "\n\nHe is not currently looking at you."
  716. }
  717. }
  718. },
  719. full: {
  720. height: math.unit(1.34, "meter"),
  721. weight: math.unit(225, "kg"),
  722. name: "Full",
  723. image: {
  724. source: "./media/characters/fen/full.svg"
  725. },
  726. info: {
  727. description: {
  728. mode: "append",
  729. text: "\n\nMunch."
  730. }
  731. }
  732. },
  733. kneeling: {
  734. height: math.unit(5.4, "feet"),
  735. weight: math.unit(124.738, "kg"),
  736. name: "Kneeling",
  737. image: {
  738. source: "./media/characters/fen/kneeling.svg",
  739. extra: 563 / 507
  740. }
  741. },
  742. goo: {
  743. height: math.unit(2.8, "feet"),
  744. weight: math.unit(125, "kg"),
  745. capacity: math.unit(1, "people"),
  746. name: "Goo",
  747. image: {
  748. source: "./media/characters/fen/goo.svg",
  749. bottom: 116/613
  750. }
  751. },
  752. lounging: {
  753. height: math.unit(6.5, "feet"),
  754. weight: math.unit(125, "kg"),
  755. name: "Lounging",
  756. image: {
  757. source: "./media/characters/fen/lounging.svg"
  758. }
  759. },
  760. },
  761. [
  762. {
  763. name: "Normal",
  764. height: math.unit(2.2428, "meter")
  765. },
  766. {
  767. name: "Big",
  768. height: math.unit(12, "feet")
  769. },
  770. {
  771. name: "Minimacro",
  772. height: math.unit(40, "feet"),
  773. default: true,
  774. info: {
  775. description: {
  776. mode: "append",
  777. text: "\n\nTOO DAMN BIG"
  778. }
  779. }
  780. },
  781. {
  782. name: "Macro",
  783. height: math.unit(100, "feet"),
  784. info: {
  785. description: {
  786. mode: "append",
  787. text: "\n\nTOO DAMN BIG"
  788. }
  789. }
  790. },
  791. {
  792. name: "Macro+",
  793. height: math.unit(300, "feet")
  794. },
  795. {
  796. name: "Megamacro",
  797. height: math.unit(2, "miles")
  798. }
  799. ]
  800. ))
  801. characterMakers.push(() => makeCharacter(
  802. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  803. {
  804. front: {
  805. height: math.unit(183, "cm"),
  806. weight: math.unit(80, "kg"),
  807. name: "Front",
  808. image: {
  809. source: "./media/characters/sofia-fluttertail/front.svg",
  810. bottom: 0.01,
  811. extra: 2154 / 2081
  812. }
  813. },
  814. frontAlt: {
  815. height: math.unit(183, "cm"),
  816. weight: math.unit(80, "kg"),
  817. name: "Front (alt)",
  818. image: {
  819. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  820. }
  821. },
  822. back: {
  823. height: math.unit(183, "cm"),
  824. weight: math.unit(80, "kg"),
  825. name: "Back",
  826. image: {
  827. source: "./media/characters/sofia-fluttertail/back.svg"
  828. }
  829. },
  830. kneeling: {
  831. height: math.unit(125, "cm"),
  832. weight: math.unit(80, "kg"),
  833. name: "Kneeling",
  834. image: {
  835. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  836. extra: 1033/977,
  837. bottom: 23.7/1057
  838. }
  839. },
  840. maw: {
  841. height: math.unit(183 / 5, "cm"),
  842. name: "Maw",
  843. image: {
  844. source: "./media/characters/sofia-fluttertail/maw.svg"
  845. }
  846. },
  847. mawcloseup: {
  848. height: math.unit(183 / 5 * 0.41, "cm"),
  849. name: "Maw (Closeup)",
  850. image: {
  851. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  852. }
  853. },
  854. },
  855. [
  856. {
  857. name: "Normal",
  858. height: math.unit(1.83, "meter")
  859. },
  860. {
  861. name: "Size Thief",
  862. height: math.unit(18, "feet")
  863. },
  864. {
  865. name: "50 Foot Collie",
  866. height: math.unit(50, "feet")
  867. },
  868. {
  869. name: "Macro",
  870. height: math.unit(96, "feet"),
  871. default: true
  872. },
  873. {
  874. name: "Megamerger",
  875. height: math.unit(650, "feet")
  876. },
  877. ]
  878. ))
  879. characterMakers.push(() => makeCharacter(
  880. { name: "March", species: ["dragon"], tags: ["anthro"] },
  881. {
  882. front: {
  883. height: math.unit(7, "feet"),
  884. weight: math.unit(100, "kg"),
  885. name: "Front",
  886. image: {
  887. source: "./media/characters/march/front.svg",
  888. extra: 1,
  889. bottom: 0.015
  890. }
  891. },
  892. foot: {
  893. height: math.unit(0.9, "feet"),
  894. name: "Foot",
  895. image: {
  896. source: "./media/characters/march/foot.svg"
  897. }
  898. },
  899. },
  900. [
  901. {
  902. name: "Normal",
  903. height: math.unit(7.9, "feet")
  904. },
  905. {
  906. name: "Macro",
  907. height: math.unit(220, "meters")
  908. },
  909. {
  910. name: "Megamacro",
  911. height: math.unit(2.98, "km"),
  912. default: true
  913. },
  914. {
  915. name: "Gigamacro",
  916. height: math.unit(15963, "km")
  917. },
  918. {
  919. name: "Teramacro",
  920. height: math.unit(2980000000, "km")
  921. },
  922. {
  923. name: "Examacro",
  924. height: math.unit(250, "parsecs")
  925. },
  926. ]
  927. ))
  928. characterMakers.push(() => makeCharacter(
  929. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  930. {
  931. front: {
  932. height: math.unit(6, "feet"),
  933. weight: math.unit(60, "kg"),
  934. name: "Front",
  935. image: {
  936. source: "./media/characters/noir/front.svg",
  937. extra: 1,
  938. bottom: 0.032
  939. }
  940. },
  941. },
  942. [
  943. {
  944. name: "Normal",
  945. height: math.unit(6.6, "feet")
  946. },
  947. {
  948. name: "Macro",
  949. height: math.unit(500, "feet")
  950. },
  951. {
  952. name: "Megamacro",
  953. height: math.unit(2.5, "km"),
  954. default: true
  955. },
  956. {
  957. name: "Gigamacro",
  958. height: math.unit(22500, "km")
  959. },
  960. {
  961. name: "Teramacro",
  962. height: math.unit(2500000000, "km")
  963. },
  964. {
  965. name: "Examacro",
  966. height: math.unit(200, "parsecs")
  967. },
  968. ]
  969. ))
  970. characterMakers.push(() => makeCharacter(
  971. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  972. {
  973. front: {
  974. height: math.unit(7, "feet"),
  975. weight: math.unit(100, "kg"),
  976. name: "Front",
  977. image: {
  978. source: "./media/characters/okuri/front.svg",
  979. extra: 1,
  980. bottom: 0.037
  981. }
  982. },
  983. back: {
  984. height: math.unit(7, "feet"),
  985. weight: math.unit(100, "kg"),
  986. name: "Back",
  987. image: {
  988. source: "./media/characters/okuri/back.svg",
  989. extra: 1,
  990. bottom: 0.007
  991. }
  992. },
  993. },
  994. [
  995. {
  996. name: "Megamacro",
  997. height: math.unit(100, "miles"),
  998. default: true
  999. },
  1000. ]
  1001. ))
  1002. characterMakers.push(() => makeCharacter(
  1003. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1004. {
  1005. front: {
  1006. height: math.unit(7, "feet"),
  1007. weight: math.unit(100, "kg"),
  1008. name: "Front",
  1009. image: {
  1010. source: "./media/characters/manny/front.svg",
  1011. extra: 1,
  1012. bottom: 0.06
  1013. }
  1014. },
  1015. back: {
  1016. height: math.unit(7, "feet"),
  1017. weight: math.unit(100, "kg"),
  1018. name: "Back",
  1019. image: {
  1020. source: "./media/characters/manny/back.svg",
  1021. extra: 1,
  1022. bottom: 0.014
  1023. }
  1024. },
  1025. },
  1026. [
  1027. {
  1028. name: "Normal",
  1029. height: math.unit(7, "feet"),
  1030. },
  1031. {
  1032. name: "Macro",
  1033. height: math.unit(78, "feet"),
  1034. default: true
  1035. },
  1036. {
  1037. name: "Macro+",
  1038. height: math.unit(300, "meters")
  1039. },
  1040. {
  1041. name: "Macro++",
  1042. height: math.unit(2400, "meters")
  1043. },
  1044. {
  1045. name: "Megamacro",
  1046. height: math.unit(5167, "meters")
  1047. },
  1048. {
  1049. name: "Gigamacro",
  1050. height: math.unit(41769, "miles")
  1051. },
  1052. ]
  1053. ))
  1054. characterMakers.push(() => makeCharacter(
  1055. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1056. {
  1057. front: {
  1058. height: math.unit(7, "feet"),
  1059. weight: math.unit(100, "kg"),
  1060. name: "Front",
  1061. image: {
  1062. source: "./media/characters/adake/front-1.svg"
  1063. }
  1064. },
  1065. frontAlt: {
  1066. height: math.unit(7, "feet"),
  1067. weight: math.unit(100, "kg"),
  1068. name: "Front (Alt)",
  1069. image: {
  1070. source: "./media/characters/adake/front-2.svg",
  1071. extra: 1,
  1072. bottom: 0.01
  1073. }
  1074. },
  1075. back: {
  1076. height: math.unit(7, "feet"),
  1077. weight: math.unit(100, "kg"),
  1078. name: "Back",
  1079. image: {
  1080. source: "./media/characters/adake/back.svg",
  1081. }
  1082. },
  1083. kneel: {
  1084. height: math.unit(5.385, "feet"),
  1085. weight: math.unit(100, "kg"),
  1086. name: "Kneeling",
  1087. image: {
  1088. source: "./media/characters/adake/kneel.svg",
  1089. bottom: 0.052
  1090. }
  1091. },
  1092. },
  1093. [
  1094. {
  1095. name: "Normal",
  1096. height: math.unit(7, "feet"),
  1097. },
  1098. {
  1099. name: "Macro",
  1100. height: math.unit(78, "feet"),
  1101. default: true
  1102. },
  1103. {
  1104. name: "Macro+",
  1105. height: math.unit(300, "meters")
  1106. },
  1107. {
  1108. name: "Macro++",
  1109. height: math.unit(2400, "meters")
  1110. },
  1111. {
  1112. name: "Megamacro",
  1113. height: math.unit(5167, "meters")
  1114. },
  1115. {
  1116. name: "Gigamacro",
  1117. height: math.unit(41769, "miles")
  1118. },
  1119. ]
  1120. ))
  1121. characterMakers.push(() => makeCharacter(
  1122. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1123. {
  1124. front: {
  1125. height: math.unit(1.65, "meters"),
  1126. weight: math.unit(50, "kg"),
  1127. name: "Front",
  1128. image: {
  1129. source: "./media/characters/elijah/front.svg",
  1130. extra: 858/830,
  1131. bottom: 95.5/953.8559
  1132. }
  1133. },
  1134. back: {
  1135. height: math.unit(1.65, "meters"),
  1136. weight: math.unit(50, "kg"),
  1137. name: "Back",
  1138. image: {
  1139. source: "./media/characters/elijah/back.svg",
  1140. extra: 895/850,
  1141. bottom: 5.3/897.956
  1142. }
  1143. },
  1144. frontNsfw: {
  1145. height: math.unit(1.65, "meters"),
  1146. weight: math.unit(50, "kg"),
  1147. name: "Front (NSFW)",
  1148. image: {
  1149. source: "./media/characters/elijah/front-nsfw.svg",
  1150. extra: 858/830,
  1151. bottom: 95.5/953.8559
  1152. }
  1153. },
  1154. backNsfw: {
  1155. height: math.unit(1.65, "meters"),
  1156. weight: math.unit(50, "kg"),
  1157. name: "Back (NSFW)",
  1158. image: {
  1159. source: "./media/characters/elijah/back-nsfw.svg",
  1160. extra: 895/850,
  1161. bottom: 5.3/897.956
  1162. }
  1163. },
  1164. dick: {
  1165. height: math.unit(1, "feet"),
  1166. name: "Dick",
  1167. image: {
  1168. source: "./media/characters/elijah/dick.svg"
  1169. }
  1170. },
  1171. beakOpen: {
  1172. height: math.unit(1.25, "feet"),
  1173. name: "Beak (Open)",
  1174. image: {
  1175. source: "./media/characters/elijah/beak-open.svg"
  1176. }
  1177. },
  1178. beakShut: {
  1179. height: math.unit(1.25, "feet"),
  1180. name: "Beak (Shut)",
  1181. image: {
  1182. source: "./media/characters/elijah/beak-shut.svg"
  1183. }
  1184. },
  1185. footFlexing: {
  1186. height: math.unit(1.61, "feet"),
  1187. name: "Foot (Flexing)",
  1188. image: {
  1189. source: "./media/characters/elijah/foot-flexing.svg"
  1190. }
  1191. },
  1192. footStepping: {
  1193. height: math.unit(1.44, "feet"),
  1194. name: "Foot (Stepping)",
  1195. image: {
  1196. source: "./media/characters/elijah/foot-stepping.svg"
  1197. }
  1198. },
  1199. plantigradeLeg: {
  1200. height: math.unit(2.34, "feet"),
  1201. name: "Plantigrade Leg",
  1202. image: {
  1203. source: "./media/characters/elijah/plantigrade-leg.svg"
  1204. }
  1205. },
  1206. plantigradeFootLeft: {
  1207. height: math.unit(0.9, "feet"),
  1208. name: "Plantigrade Foot (Left)",
  1209. image: {
  1210. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1211. }
  1212. },
  1213. plantigradeFootRight: {
  1214. height: math.unit(0.9, "feet"),
  1215. name: "Plantigrade Foot (Right)",
  1216. image: {
  1217. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1218. }
  1219. },
  1220. },
  1221. [
  1222. {
  1223. name: "Normal",
  1224. height: math.unit(1.65, "meters")
  1225. },
  1226. {
  1227. name: "Macro",
  1228. height: math.unit(55, "meters"),
  1229. default: true
  1230. },
  1231. {
  1232. name: "Macro+",
  1233. height: math.unit(105, "meters")
  1234. },
  1235. ]
  1236. ))
  1237. characterMakers.push(() => makeCharacter(
  1238. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1239. {
  1240. front: {
  1241. height: math.unit(11, "feet"),
  1242. weight: math.unit(80, "kg"),
  1243. name: "Front",
  1244. image: {
  1245. source: "./media/characters/rai/front.svg",
  1246. extra: 1,
  1247. bottom: 0.03
  1248. }
  1249. },
  1250. side: {
  1251. height: math.unit(11, "feet"),
  1252. weight: math.unit(80, "kg"),
  1253. name: "Side",
  1254. image: {
  1255. source: "./media/characters/rai/side.svg"
  1256. }
  1257. },
  1258. back: {
  1259. height: math.unit(11, "feet"),
  1260. weight: math.unit(80, "lb"),
  1261. name: "Back",
  1262. image: {
  1263. source: "./media/characters/rai/back.svg",
  1264. extra: 1,
  1265. bottom: 0.01
  1266. }
  1267. },
  1268. feral: {
  1269. height: math.unit(11, "feet"),
  1270. weight: math.unit(800, "lb"),
  1271. name: "Feral",
  1272. image: {
  1273. source: "./media/characters/rai/feral.svg",
  1274. extra: 1050 / 659,
  1275. bottom: 0.07
  1276. }
  1277. },
  1278. dragon: {
  1279. height: math.unit(23, "feet"),
  1280. weight: math.unit(50000, "lb"),
  1281. name: "Dragon",
  1282. image: {
  1283. source: "./media/characters/rai/dragon.svg",
  1284. extra: 2498/2030,
  1285. bottom: 85.2/2584
  1286. }
  1287. },
  1288. maw: {
  1289. height: math.unit(6 / 3.81416, "feet"),
  1290. name: "Maw",
  1291. image: {
  1292. source: "./media/characters/rai/maw.svg"
  1293. }
  1294. },
  1295. },
  1296. [
  1297. {
  1298. name: "Normal",
  1299. height: math.unit(11, "feet")
  1300. },
  1301. {
  1302. name: "Macro",
  1303. height: math.unit(302, "feet"),
  1304. default: true
  1305. },
  1306. ]
  1307. ))
  1308. characterMakers.push(() => makeCharacter(
  1309. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1310. {
  1311. frontDressed: {
  1312. height: math.unit(216, "feet"),
  1313. weight: math.unit(7000000, "lb"),
  1314. name: "Front (Dressed)",
  1315. image: {
  1316. source: "./media/characters/jazzy/front-dressed.svg",
  1317. extra: 2738/2651,
  1318. bottom: 41.8/2786
  1319. }
  1320. },
  1321. backDressed: {
  1322. height: math.unit(216, "feet"),
  1323. weight: math.unit(7000000, "lb"),
  1324. name: "Back (Dressed)",
  1325. image: {
  1326. source: "./media/characters/jazzy/back-dressed.svg",
  1327. extra: 2775/2673,
  1328. bottom: 36.8/2817
  1329. }
  1330. },
  1331. front: {
  1332. height: math.unit(216, "feet"),
  1333. weight: math.unit(7000000, "lb"),
  1334. name: "Front",
  1335. image: {
  1336. source: "./media/characters/jazzy/front.svg",
  1337. extra: 2738/2651,
  1338. bottom: 41.8/2786
  1339. }
  1340. },
  1341. back: {
  1342. height: math.unit(216, "feet"),
  1343. weight: math.unit(7000000, "lb"),
  1344. name: "Back",
  1345. image: {
  1346. source: "./media/characters/jazzy/back.svg",
  1347. extra: 2775/2673,
  1348. bottom: 36.8/2817
  1349. }
  1350. },
  1351. maw: {
  1352. height: math.unit(20, "feet"),
  1353. name: "Maw",
  1354. image: {
  1355. source: "./media/characters/jazzy/maw.svg"
  1356. }
  1357. },
  1358. paws: {
  1359. height: math.unit(27.5, "feet"),
  1360. name: "Paws",
  1361. image: {
  1362. source: "./media/characters/jazzy/paws.svg"
  1363. }
  1364. },
  1365. eye: {
  1366. height: math.unit(4.4, "feet"),
  1367. name: "Eye",
  1368. image: {
  1369. source: "./media/characters/jazzy/eye.svg"
  1370. }
  1371. },
  1372. droneOffense: {
  1373. height: math.unit(9.5, "inches"),
  1374. name: "Drone (Offense)",
  1375. image: {
  1376. source: "./media/characters/jazzy/drone-offense.svg"
  1377. }
  1378. },
  1379. droneRecon: {
  1380. height: math.unit(9.5, "inches"),
  1381. name: "Drone (Recon)",
  1382. image: {
  1383. source: "./media/characters/jazzy/drone-recon.svg"
  1384. }
  1385. },
  1386. droneDefense: {
  1387. height: math.unit(9.5, "inches"),
  1388. name: "Drone (Defense)",
  1389. image: {
  1390. source: "./media/characters/jazzy/drone-defense.svg"
  1391. }
  1392. },
  1393. },
  1394. [
  1395. {
  1396. name: "Macro",
  1397. height: math.unit(216, "feet"),
  1398. default: true
  1399. },
  1400. ]
  1401. ))
  1402. characterMakers.push(() => makeCharacter(
  1403. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1404. {
  1405. front: {
  1406. height: math.unit(7, "feet"),
  1407. weight: math.unit(80, "kg"),
  1408. name: "Front",
  1409. image: {
  1410. source: "./media/characters/flamm/front.svg",
  1411. extra: 1794 / 1677,
  1412. bottom: 31.7 / 1828.5
  1413. }
  1414. },
  1415. },
  1416. [
  1417. {
  1418. name: "Normal",
  1419. height: math.unit(9.5, "feet")
  1420. },
  1421. {
  1422. name: "Macro",
  1423. height: math.unit(200, "feet"),
  1424. default: true
  1425. },
  1426. ]
  1427. ))
  1428. characterMakers.push(() => makeCharacter(
  1429. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1430. {
  1431. front: {
  1432. height: math.unit(7, "feet"),
  1433. weight: math.unit(80, "kg"),
  1434. name: "Front",
  1435. image: {
  1436. source: "./media/characters/zephiro/front.svg",
  1437. extra: 2309 / 2162,
  1438. bottom: 0.069
  1439. }
  1440. },
  1441. side: {
  1442. height: math.unit(7, "feet"),
  1443. weight: math.unit(80, "kg"),
  1444. name: "Side",
  1445. image: {
  1446. source: "./media/characters/zephiro/side.svg",
  1447. extra: 2403 / 2279,
  1448. bottom: 0.015
  1449. }
  1450. },
  1451. back: {
  1452. height: math.unit(7, "feet"),
  1453. weight: math.unit(80, "kg"),
  1454. name: "Back",
  1455. image: {
  1456. source: "./media/characters/zephiro/back.svg",
  1457. extra: 2373 / 2244,
  1458. bottom: 0.013
  1459. }
  1460. },
  1461. },
  1462. [
  1463. {
  1464. name: "Micro",
  1465. height: math.unit(3, "inches")
  1466. },
  1467. {
  1468. name: "Normal",
  1469. height: math.unit(5 + 3 / 12, "feet"),
  1470. default: true
  1471. },
  1472. {
  1473. name: "Macro",
  1474. height: math.unit(118, "feet")
  1475. },
  1476. ]
  1477. ))
  1478. characterMakers.push(() => makeCharacter(
  1479. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1480. {
  1481. front: {
  1482. height: math.unit(5, "feet"),
  1483. weight: math.unit(90, "kg"),
  1484. name: "Front",
  1485. image: {
  1486. source: "./media/characters/fory/front.svg",
  1487. extra: 2862 / 2674,
  1488. bottom: 180 / 3043.8
  1489. }
  1490. },
  1491. back: {
  1492. height: math.unit(5, "feet"),
  1493. weight: math.unit(90, "kg"),
  1494. name: "Back",
  1495. image: {
  1496. source: "./media/characters/fory/back.svg",
  1497. extra: 2962 / 2791,
  1498. bottom: 106 / 3071.8
  1499. }
  1500. },
  1501. foot: {
  1502. height: math.unit(2.14, "feet"),
  1503. name: "Foot",
  1504. image: {
  1505. source: "./media/characters/fory/foot.svg"
  1506. }
  1507. },
  1508. },
  1509. [
  1510. {
  1511. name: "Normal",
  1512. height: math.unit(5, "feet")
  1513. },
  1514. {
  1515. name: "Macro",
  1516. height: math.unit(50, "feet"),
  1517. default: true
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(10, "miles")
  1522. },
  1523. {
  1524. name: "Gigamacro",
  1525. height: math.unit(5, "earths")
  1526. },
  1527. ]
  1528. ))
  1529. characterMakers.push(() => makeCharacter(
  1530. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1531. {
  1532. front: {
  1533. height: math.unit(7, "feet"),
  1534. weight: math.unit(90, "kg"),
  1535. name: "Front",
  1536. image: {
  1537. source: "./media/characters/kurrikage/front.svg",
  1538. extra: 1,
  1539. bottom: 0.035
  1540. }
  1541. },
  1542. back: {
  1543. height: math.unit(7, "feet"),
  1544. weight: math.unit(90, "lb"),
  1545. name: "Back",
  1546. image: {
  1547. source: "./media/characters/kurrikage/back.svg"
  1548. }
  1549. },
  1550. paw: {
  1551. height: math.unit(1.5, "feet"),
  1552. name: "Paw",
  1553. image: {
  1554. source: "./media/characters/kurrikage/paw.svg"
  1555. }
  1556. },
  1557. staff: {
  1558. height: math.unit(6.7, "feet"),
  1559. name: "Staff",
  1560. image: {
  1561. source: "./media/characters/kurrikage/staff.svg"
  1562. }
  1563. },
  1564. peek: {
  1565. height: math.unit(1.05, "feet"),
  1566. name: "Peeking",
  1567. image: {
  1568. source: "./media/characters/kurrikage/peek.svg",
  1569. bottom: 0.08
  1570. }
  1571. },
  1572. },
  1573. [
  1574. {
  1575. name: "Normal",
  1576. height: math.unit(12, "feet"),
  1577. default: true
  1578. },
  1579. {
  1580. name: "Big",
  1581. height: math.unit(20, "feet")
  1582. },
  1583. {
  1584. name: "Macro",
  1585. height: math.unit(500, "feet")
  1586. },
  1587. {
  1588. name: "Megamacro",
  1589. height: math.unit(20, "miles")
  1590. },
  1591. ]
  1592. ))
  1593. characterMakers.push(() => makeCharacter(
  1594. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1595. {
  1596. front: {
  1597. height: math.unit(6, "feet"),
  1598. weight: math.unit(75, "kg"),
  1599. name: "Front",
  1600. image: {
  1601. source: "./media/characters/shingo/front.svg",
  1602. extra: 3511 / 3338,
  1603. bottom: 0.005
  1604. }
  1605. },
  1606. },
  1607. [
  1608. {
  1609. name: "Micro",
  1610. height: math.unit(4, "inches")
  1611. },
  1612. {
  1613. name: "Normal",
  1614. height: math.unit(6, "feet"),
  1615. default: true
  1616. },
  1617. {
  1618. name: "Macro",
  1619. height: math.unit(108, "feet")
  1620. }
  1621. ]
  1622. ))
  1623. characterMakers.push(() => makeCharacter(
  1624. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1625. {
  1626. side: {
  1627. height: math.unit(6, "feet"),
  1628. weight: math.unit(75, "kg"),
  1629. name: "Side",
  1630. image: {
  1631. source: "./media/characters/aigey/side.svg"
  1632. }
  1633. },
  1634. },
  1635. [
  1636. {
  1637. name: "Macro",
  1638. height: math.unit(200, "feet"),
  1639. default: true
  1640. },
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(100, "miles")
  1644. },
  1645. ]
  1646. )
  1647. )
  1648. characterMakers.push(() => makeCharacter(
  1649. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1650. {
  1651. front: {
  1652. height: math.unit(5 + 5 / 12, "feet"),
  1653. weight: math.unit(75, "kg"),
  1654. name: "Front",
  1655. image: {
  1656. source: "./media/characters/natasha/front.svg",
  1657. extra: 859/824,
  1658. bottom: 23/879.6
  1659. }
  1660. },
  1661. frontNsfw: {
  1662. height: math.unit(5 + 5 / 12, "feet"),
  1663. weight: math.unit(75, "kg"),
  1664. name: "Front (NSFW)",
  1665. image: {
  1666. source: "./media/characters/natasha/front-nsfw.svg",
  1667. extra: 859/824,
  1668. bottom: 23/879.6
  1669. }
  1670. },
  1671. frontErect: {
  1672. height: math.unit(5 + 5 / 12, "feet"),
  1673. weight: math.unit(75, "kg"),
  1674. name: "Front (Erect)",
  1675. image: {
  1676. source: "./media/characters/natasha/front-erect.svg",
  1677. extra: 859/824,
  1678. bottom: 23/879.6
  1679. }
  1680. },
  1681. back: {
  1682. height: math.unit(5 + 5 / 12, "feet"),
  1683. weight: math.unit(75, "kg"),
  1684. name: "Back",
  1685. image: {
  1686. source: "./media/characters/natasha/back.svg",
  1687. extra: 887.9/852.6,
  1688. bottom: 9.7/896.4
  1689. }
  1690. },
  1691. backAlt: {
  1692. height: math.unit(5 + 5 / 12, "feet"),
  1693. weight: math.unit(75, "kg"),
  1694. name: "Back (Alt)",
  1695. image: {
  1696. source: "./media/characters/natasha/back-alt.svg",
  1697. extra: 1236.7/1192,
  1698. bottom: 22.3/1258.2
  1699. }
  1700. },
  1701. dick: {
  1702. height: math.unit(1.772, "feet"),
  1703. name: "Dick",
  1704. image: {
  1705. source: "./media/characters/natasha/dick.svg"
  1706. }
  1707. },
  1708. },
  1709. [
  1710. {
  1711. name: "Normal",
  1712. height: math.unit(5 + 5 / 12, "feet")
  1713. },
  1714. {
  1715. name: "Large",
  1716. height: math.unit(12, "feet")
  1717. },
  1718. {
  1719. name: "Macro",
  1720. height: math.unit(100, "feet"),
  1721. default: true
  1722. },
  1723. {
  1724. name: "Macro+",
  1725. height: math.unit(260, "feet")
  1726. },
  1727. {
  1728. name: "Macro++",
  1729. height: math.unit(1, "mile")
  1730. },
  1731. ]
  1732. ))
  1733. characterMakers.push(() => makeCharacter(
  1734. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1735. {
  1736. front: {
  1737. height: math.unit(6, "feet"),
  1738. weight: math.unit(75, "kg"),
  1739. name: "Front",
  1740. image: {
  1741. source: "./media/characters/malik/front.svg"
  1742. }
  1743. },
  1744. side: {
  1745. height: math.unit(6, "feet"),
  1746. weight: math.unit(75, "kg"),
  1747. name: "Side",
  1748. image: {
  1749. source: "./media/characters/malik/side.svg",
  1750. extra: 1.1539
  1751. }
  1752. },
  1753. back: {
  1754. height: math.unit(6, "feet"),
  1755. weight: math.unit(75, "kg"),
  1756. name: "Back",
  1757. image: {
  1758. source: "./media/characters/malik/back.svg"
  1759. }
  1760. },
  1761. },
  1762. [
  1763. {
  1764. name: "Macro",
  1765. height: math.unit(156, "feet"),
  1766. default: true
  1767. },
  1768. {
  1769. name: "Macro+",
  1770. height: math.unit(1188, "feet")
  1771. },
  1772. ]
  1773. ))
  1774. characterMakers.push(() => makeCharacter(
  1775. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1776. {
  1777. front: {
  1778. height: math.unit(6, "feet"),
  1779. weight: math.unit(75, "kg"),
  1780. name: "Front",
  1781. image: {
  1782. source: "./media/characters/sefer/front.svg"
  1783. }
  1784. },
  1785. back: {
  1786. height: math.unit(6, "feet"),
  1787. weight: math.unit(75, "kg"),
  1788. name: "Back",
  1789. image: {
  1790. source: "./media/characters/sefer/back.svg"
  1791. }
  1792. },
  1793. },
  1794. [
  1795. {
  1796. name: "Normal",
  1797. height: math.unit(6, "feet"),
  1798. default: true
  1799. },
  1800. ]
  1801. ))
  1802. characterMakers.push(() => makeCharacter(
  1803. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1804. {
  1805. body: {
  1806. height: math.unit(2.2428, "meter"),
  1807. weight: math.unit(124.738, "kg"),
  1808. name: "Body",
  1809. image: {
  1810. extra: 1225 / 1050,
  1811. source: "./media/characters/north/front.svg"
  1812. }
  1813. }
  1814. },
  1815. [
  1816. {
  1817. name: "Micro",
  1818. height: math.unit(4, "inches")
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(63, "meters")
  1823. },
  1824. {
  1825. name: "Megamacro",
  1826. height: math.unit(101, "miles"),
  1827. default: true
  1828. }
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1833. {
  1834. angled: {
  1835. height: math.unit(4, "meter"),
  1836. weight: math.unit(150, "kg"),
  1837. name: "Angled",
  1838. image: {
  1839. source: "./media/characters/talan/angled-sfw.svg",
  1840. bottom: 29 / 3734
  1841. }
  1842. },
  1843. angledNsfw: {
  1844. height: math.unit(4, "meter"),
  1845. weight: math.unit(150, "kg"),
  1846. name: "Angled (NSFW)",
  1847. image: {
  1848. source: "./media/characters/talan/angled-nsfw.svg",
  1849. bottom: 29 / 3734
  1850. }
  1851. },
  1852. frontNsfw: {
  1853. height: math.unit(4, "meter"),
  1854. weight: math.unit(150, "kg"),
  1855. name: "Front (NSFW)",
  1856. image: {
  1857. source: "./media/characters/talan/front-nsfw.svg",
  1858. bottom: 29 / 3734
  1859. }
  1860. },
  1861. sideNsfw: {
  1862. height: math.unit(4, "meter"),
  1863. weight: math.unit(150, "kg"),
  1864. name: "Side (NSFW)",
  1865. image: {
  1866. source: "./media/characters/talan/side-nsfw.svg",
  1867. bottom: 29 / 3734
  1868. }
  1869. },
  1870. back: {
  1871. height: math.unit(4, "meter"),
  1872. weight: math.unit(150, "kg"),
  1873. name: "Back",
  1874. image: {
  1875. source: "./media/characters/talan/back.svg"
  1876. }
  1877. },
  1878. dickBottom: {
  1879. height: math.unit(0.621, "meter"),
  1880. name: "Dick (Bottom)",
  1881. image: {
  1882. source: "./media/characters/talan/dick-bottom.svg"
  1883. }
  1884. },
  1885. dickTop: {
  1886. height: math.unit(0.621, "meter"),
  1887. name: "Dick (Top)",
  1888. image: {
  1889. source: "./media/characters/talan/dick-top.svg"
  1890. }
  1891. },
  1892. dickSide: {
  1893. height: math.unit(0.305, "meter"),
  1894. name: "Dick (Side)",
  1895. image: {
  1896. source: "./media/characters/talan/dick-side.svg"
  1897. }
  1898. },
  1899. dickFront: {
  1900. height: math.unit(0.305, "meter"),
  1901. name: "Dick (Front)",
  1902. image: {
  1903. source: "./media/characters/talan/dick-front.svg"
  1904. }
  1905. },
  1906. },
  1907. [
  1908. {
  1909. name: "Normal",
  1910. height: math.unit(4, "meters")
  1911. },
  1912. {
  1913. name: "Macro",
  1914. height: math.unit(100, "meters")
  1915. },
  1916. {
  1917. name: "Megamacro",
  1918. height: math.unit(2, "miles"),
  1919. default: true
  1920. },
  1921. {
  1922. name: "Gigamacro",
  1923. height: math.unit(5000, "miles")
  1924. },
  1925. {
  1926. name: "Teramacro",
  1927. height: math.unit(100, "parsecs")
  1928. }
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(2, "meter"),
  1936. weight: math.unit(90, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/gael'rathus/front.svg"
  1940. }
  1941. },
  1942. frontAlt: {
  1943. height: math.unit(2, "meter"),
  1944. weight: math.unit(90, "kg"),
  1945. name: "Front (alt)",
  1946. image: {
  1947. source: "./media/characters/gael'rathus/front-alt.svg"
  1948. }
  1949. },
  1950. frontAlt2: {
  1951. height: math.unit(2, "meter"),
  1952. weight: math.unit(90, "kg"),
  1953. name: "Front (alt 2)",
  1954. image: {
  1955. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1956. }
  1957. }
  1958. },
  1959. [
  1960. {
  1961. name: "Normal",
  1962. height: math.unit(9, "feet"),
  1963. default: true
  1964. },
  1965. {
  1966. name: "Large",
  1967. height: math.unit(25, "feet")
  1968. },
  1969. {
  1970. name: "Macro",
  1971. height: math.unit(0.25, "miles")
  1972. },
  1973. {
  1974. name: "Megamacro",
  1975. height: math.unit(10, "miles")
  1976. }
  1977. ]
  1978. ))
  1979. characterMakers.push(() => makeCharacter(
  1980. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1981. {
  1982. side: {
  1983. height: math.unit(2, "meter"),
  1984. weight: math.unit(140, "kg"),
  1985. name: "Side",
  1986. image: {
  1987. source: "./media/characters/sosha/side.svg",
  1988. bottom: 0.042
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Normal",
  1995. height: math.unit(12, "feet"),
  1996. default: true
  1997. }
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2002. {
  2003. side: {
  2004. height: math.unit(5 + 5 / 12, "feet"),
  2005. weight: math.unit(170, "kg"),
  2006. name: "Side",
  2007. image: {
  2008. source: "./media/characters/runnola/side.svg",
  2009. extra: 741 / 448,
  2010. bottom: 0.05
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Small",
  2017. height: math.unit(3, "feet")
  2018. },
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(5 + 5 / 12, "feet"),
  2022. default: true
  2023. },
  2024. {
  2025. name: "Big",
  2026. height: math.unit(10, "feet")
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(2, "meter"),
  2035. weight: math.unit(50, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/kurribird/front.svg",
  2039. bottom: 0.015
  2040. }
  2041. },
  2042. frontAlt: {
  2043. height: math.unit(1.5, "meter"),
  2044. weight: math.unit(50, "kg"),
  2045. name: "Front (Alt)",
  2046. image: {
  2047. source: "./media/characters/kurribird/front-alt.svg",
  2048. extra: 1.45
  2049. }
  2050. },
  2051. },
  2052. [
  2053. {
  2054. name: "Normal",
  2055. height: math.unit(7, "feet")
  2056. },
  2057. {
  2058. name: "Big",
  2059. height: math.unit(12, "feet"),
  2060. default: true
  2061. },
  2062. {
  2063. name: "Macro",
  2064. height: math.unit(1500, "feet")
  2065. },
  2066. {
  2067. name: "Megamacro",
  2068. height: math.unit(2, "miles")
  2069. }
  2070. ]
  2071. ))
  2072. characterMakers.push(() => makeCharacter(
  2073. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  2074. {
  2075. front: {
  2076. height: math.unit(2, "meter"),
  2077. weight: math.unit(80, "kg"),
  2078. name: "Front",
  2079. image: {
  2080. source: "./media/characters/elbial/front.svg",
  2081. extra: 1643 / 1556,
  2082. bottom: 60.2 / 1696
  2083. }
  2084. },
  2085. side: {
  2086. height: math.unit(2, "meter"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Side",
  2089. image: {
  2090. source: "./media/characters/elbial/side.svg",
  2091. extra: 1630 / 1565,
  2092. bottom: 71.5 / 1697
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(2, "meter"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/elbial/back.svg",
  2101. extra: 1668 / 1595,
  2102. bottom: 5.6 / 1672
  2103. }
  2104. },
  2105. frontDressed: {
  2106. height: math.unit(2, "meter"),
  2107. weight: math.unit(80, "kg"),
  2108. name: "Front (Dressed)",
  2109. image: {
  2110. source: "./media/characters/elbial/front-dressed.svg",
  2111. extra: 1653 / 1584,
  2112. bottom: 57 / 1708
  2113. }
  2114. },
  2115. genitals: {
  2116. height: math.unit(2 / 3.367, "meter"),
  2117. name: "Genitals",
  2118. image: {
  2119. source: "./media/characters/elbial/genitals.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Large",
  2126. height: math.unit(100, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(500, "feet"),
  2131. default: true
  2132. },
  2133. {
  2134. name: "Megamacro",
  2135. height: math.unit(10, "miles")
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(25000, "miles")
  2140. },
  2141. {
  2142. name: "Full-Size",
  2143. height: math.unit(8000000, "gigaparsecs")
  2144. }
  2145. ]
  2146. ))
  2147. characterMakers.push(() => makeCharacter(
  2148. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2149. {
  2150. front: {
  2151. height: math.unit(2, "meter"),
  2152. weight: math.unit(60, "kg"),
  2153. name: "Front",
  2154. image: {
  2155. source: "./media/characters/noah/front.svg"
  2156. }
  2157. },
  2158. talons: {
  2159. height: math.unit(0.315, "meter"),
  2160. name: "Talons",
  2161. image: {
  2162. source: "./media/characters/noah/talons.svg"
  2163. }
  2164. }
  2165. },
  2166. [
  2167. {
  2168. name: "Large",
  2169. height: math.unit(50, "feet")
  2170. },
  2171. {
  2172. name: "Macro",
  2173. height: math.unit(750, "feet"),
  2174. default: true
  2175. },
  2176. {
  2177. name: "Megamacro",
  2178. height: math.unit(50, "miles")
  2179. },
  2180. {
  2181. name: "Gigamacro",
  2182. height: math.unit(100000, "miles")
  2183. },
  2184. {
  2185. name: "Full-Size",
  2186. height: math.unit(3000000000, "miles")
  2187. }
  2188. ]
  2189. ))
  2190. characterMakers.push(() => makeCharacter(
  2191. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2192. {
  2193. front: {
  2194. height: math.unit(2, "meter"),
  2195. weight: math.unit(80, "kg"),
  2196. name: "Front",
  2197. image: {
  2198. source: "./media/characters/natalya/front.svg"
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(2, "meter"),
  2203. weight: math.unit(80, "kg"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/natalya/back.svg"
  2207. }
  2208. }
  2209. },
  2210. [
  2211. {
  2212. name: "Normal",
  2213. height: math.unit(150, "feet"),
  2214. default: true
  2215. },
  2216. {
  2217. name: "Megamacro",
  2218. height: math.unit(5, "miles")
  2219. },
  2220. {
  2221. name: "Full-Size",
  2222. height: math.unit(600, "kiloparsecs")
  2223. }
  2224. ]
  2225. ))
  2226. characterMakers.push(() => makeCharacter(
  2227. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2228. {
  2229. front: {
  2230. height: math.unit(2, "meter"),
  2231. weight: math.unit(50, "kg"),
  2232. name: "Front",
  2233. image: {
  2234. source: "./media/characters/erestrebah/front.svg",
  2235. extra: 208 / 193,
  2236. bottom: 0.055
  2237. }
  2238. },
  2239. back: {
  2240. height: math.unit(2, "meter"),
  2241. weight: math.unit(50, "kg"),
  2242. name: "Back",
  2243. image: {
  2244. source: "./media/characters/erestrebah/back.svg",
  2245. extra: 1.3
  2246. }
  2247. }
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(10, "feet")
  2253. },
  2254. {
  2255. name: "Large",
  2256. height: math.unit(50, "feet"),
  2257. default: true
  2258. },
  2259. {
  2260. name: "Macro",
  2261. height: math.unit(300, "feet")
  2262. },
  2263. {
  2264. name: "Macro+",
  2265. height: math.unit(750, "feet")
  2266. },
  2267. {
  2268. name: "Megamacro",
  2269. height: math.unit(3, "miles")
  2270. }
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(2, "meter"),
  2278. weight: math.unit(80, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/jennifer/front.svg",
  2282. bottom: 0.11,
  2283. extra: 1.16
  2284. }
  2285. },
  2286. frontAlt: {
  2287. height: math.unit(2, "meter"),
  2288. weight: math.unit(80, "kg"),
  2289. name: "Front (Alt)",
  2290. image: {
  2291. source: "./media/characters/jennifer/front-alt.svg"
  2292. }
  2293. }
  2294. },
  2295. [
  2296. {
  2297. name: "Canon Height",
  2298. height: math.unit(120, "feet"),
  2299. default: true
  2300. },
  2301. {
  2302. name: "Macro+",
  2303. height: math.unit(300, "feet")
  2304. },
  2305. {
  2306. name: "Megamacro",
  2307. height: math.unit(20000, "feet")
  2308. }
  2309. ]
  2310. ))
  2311. characterMakers.push(() => makeCharacter(
  2312. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2313. {
  2314. front: {
  2315. height: math.unit(2, "meter"),
  2316. weight: math.unit(50, "kg"),
  2317. name: "Front",
  2318. image: {
  2319. source: "./media/characters/kalista/front.svg",
  2320. extra: 1947 / 1700,
  2321. bottom: 76.6/1412.98
  2322. }
  2323. },
  2324. back: {
  2325. height: math.unit(2, "meter"),
  2326. weight: math.unit(50, "kg"),
  2327. name: "Back",
  2328. image: {
  2329. source: "./media/characters/kalista/back.svg",
  2330. extra: 1366 / 1156,
  2331. bottom: 33.9/1362.78
  2332. }
  2333. }
  2334. },
  2335. [
  2336. {
  2337. name: "Uncomfortably Small",
  2338. height: math.unit(10, "feet")
  2339. },
  2340. {
  2341. name: "Small",
  2342. height: math.unit(30, "feet")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(100, "feet"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Macro+",
  2351. height: math.unit(2000, "feet")
  2352. },
  2353. {
  2354. name: "True Form",
  2355. height: math.unit(8924, "miles")
  2356. }
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(2, "meter"),
  2364. weight: math.unit(120, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/ggv/front.svg"
  2368. }
  2369. },
  2370. side: {
  2371. height: math.unit(2, "meter"),
  2372. weight: math.unit(120, "kg"),
  2373. name: "Side",
  2374. image: {
  2375. source: "./media/characters/ggv/side.svg"
  2376. }
  2377. }
  2378. },
  2379. [
  2380. {
  2381. name: "Extremely Puny",
  2382. height: math.unit(9 + 5 / 12, "feet")
  2383. },
  2384. {
  2385. name: "Horribly Small",
  2386. height: math.unit(47.7, "miles"),
  2387. default: true
  2388. },
  2389. {
  2390. name: "Reasonably Sized",
  2391. height: math.unit(25000, "parsecs")
  2392. },
  2393. {
  2394. name: "Slightly Uncompressed",
  2395. height: math.unit(7.77e31, "parsecs")
  2396. },
  2397. {
  2398. name: "Omniversal",
  2399. height: math.unit(1e300, "meters")
  2400. },
  2401. ]
  2402. ))
  2403. characterMakers.push(() => makeCharacter(
  2404. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2405. {
  2406. front: {
  2407. height: math.unit(2, "meter"),
  2408. weight: math.unit(75, "lb"),
  2409. name: "Front",
  2410. image: {
  2411. source: "./media/characters/napalm/front.svg"
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(2, "meter"),
  2416. weight: math.unit(75, "lb"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/napalm/back.svg"
  2420. }
  2421. }
  2422. },
  2423. [
  2424. {
  2425. name: "Standard",
  2426. height: math.unit(55, "feet"),
  2427. default: true
  2428. }
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(7 + 5 / 6, "feet"),
  2436. weight: math.unit(325, "lb"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/asana/front.svg",
  2440. extra: 1128 / 1068
  2441. }
  2442. },
  2443. back: {
  2444. height: math.unit(7 + 5 / 6, "feet"),
  2445. weight: math.unit(325, "lb"),
  2446. name: "Back",
  2447. image: {
  2448. source: "./media/characters/asana/back.svg",
  2449. extra: 1128 / 1068
  2450. }
  2451. },
  2452. },
  2453. [
  2454. {
  2455. name: "Standard",
  2456. height: math.unit(7 + 5 / 6, "feet"),
  2457. default: true
  2458. },
  2459. {
  2460. name: "Large",
  2461. height: math.unit(10, "meters")
  2462. },
  2463. {
  2464. name: "Macro",
  2465. height: math.unit(2500, "meters")
  2466. },
  2467. {
  2468. name: "Megamacro",
  2469. height: math.unit(5e6, "meters")
  2470. },
  2471. {
  2472. name: "Examacro",
  2473. height: math.unit(5e12, "lightyears")
  2474. },
  2475. {
  2476. name: "Max Size",
  2477. height: math.unit(1e31, "lightyears")
  2478. }
  2479. ]
  2480. ))
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2483. {
  2484. front: {
  2485. height: math.unit(2, "meter"),
  2486. weight: math.unit(60, "kg"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/ebony/front.svg",
  2490. bottom: 0.03,
  2491. extra: 1045 / 810 + 0.03
  2492. }
  2493. },
  2494. side: {
  2495. height: math.unit(2, "meter"),
  2496. weight: math.unit(60, "kg"),
  2497. name: "Side",
  2498. image: {
  2499. source: "./media/characters/ebony/side.svg",
  2500. bottom: 0.03,
  2501. extra: 1045 / 810 + 0.03
  2502. }
  2503. },
  2504. back: {
  2505. height: math.unit(2, "meter"),
  2506. weight: math.unit(60, "kg"),
  2507. name: "Back",
  2508. image: {
  2509. source: "./media/characters/ebony/back.svg",
  2510. bottom: 0.01,
  2511. extra: 1045 / 810 + 0.01
  2512. }
  2513. },
  2514. },
  2515. [
  2516. // TODO check why I did this lol
  2517. {
  2518. name: "Standard",
  2519. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2520. default: true
  2521. },
  2522. {
  2523. name: "Macro",
  2524. height: math.unit(200, "feet")
  2525. },
  2526. {
  2527. name: "Gigamacro",
  2528. height: math.unit(13000, "km")
  2529. }
  2530. ]
  2531. ))
  2532. characterMakers.push(() => makeCharacter(
  2533. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2534. {
  2535. front: {
  2536. height: math.unit(6, "feet"),
  2537. weight: math.unit(175, "lb"),
  2538. name: "Front",
  2539. image: {
  2540. source: "./media/characters/mountain/front.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(175, "lb"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/mountain/back.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Large",
  2555. height: math.unit(20, "meters")
  2556. },
  2557. {
  2558. name: "Macro",
  2559. height: math.unit(300, "meters")
  2560. },
  2561. {
  2562. name: "Gigamacro",
  2563. height: math.unit(10000, "km"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Examacro",
  2568. height: math.unit(10e9, "lightyears")
  2569. }
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(8, "feet"),
  2577. weight: math.unit(500, "lb"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rick/front.svg"
  2581. }
  2582. }
  2583. },
  2584. [
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(8, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Macro",
  2592. height: math.unit(5, "km")
  2593. }
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(8, "feet"),
  2601. weight: math.unit(120, "lb"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/ona/front.svg"
  2605. }
  2606. },
  2607. frontAlt: {
  2608. height: math.unit(8, "feet"),
  2609. weight: math.unit(120, "lb"),
  2610. name: "Front (Alt)",
  2611. image: {
  2612. source: "./media/characters/ona/front-alt.svg"
  2613. }
  2614. },
  2615. back: {
  2616. height: math.unit(8, "feet"),
  2617. weight: math.unit(120, "lb"),
  2618. name: "Back",
  2619. image: {
  2620. source: "./media/characters/ona/back.svg"
  2621. }
  2622. },
  2623. foot: {
  2624. height: math.unit(1.1, "feet"),
  2625. name: "Foot",
  2626. image: {
  2627. source: "./media/characters/ona/foot.svg"
  2628. }
  2629. }
  2630. },
  2631. [
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(70, "km"),
  2635. default: true
  2636. },
  2637. {
  2638. name: "Gigamacro",
  2639. height: math.unit(681818, "miles")
  2640. },
  2641. {
  2642. name: "Examacro",
  2643. height: math.unit(3800000, "lightyears")
  2644. },
  2645. ]
  2646. ))
  2647. characterMakers.push(() => makeCharacter(
  2648. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2649. {
  2650. front: {
  2651. height: math.unit(12, "feet"),
  2652. weight: math.unit(3000, "lb"),
  2653. name: "Front",
  2654. image: {
  2655. source: "./media/characters/mech/front.svg",
  2656. bottom: 0.025,
  2657. }
  2658. },
  2659. back: {
  2660. height: math.unit(12, "feet"),
  2661. weight: math.unit(3000, "lb"),
  2662. name: "Back",
  2663. image: {
  2664. source: "./media/characters/mech/back.svg",
  2665. bottom: 0.03,
  2666. }
  2667. }
  2668. },
  2669. [
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(12, "feet")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(300, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Macro+",
  2681. height: math.unit(1500, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(1.3, "meter"),
  2690. weight: math.unit(30, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/gregory/front.svg",
  2694. }
  2695. }
  2696. },
  2697. [
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(1.3, "meter"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(20, "meter")
  2706. }
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2711. {
  2712. front: {
  2713. height: math.unit(2.8, "meter"),
  2714. weight: math.unit(200, "kg"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/elory/front.svg",
  2718. }
  2719. }
  2720. },
  2721. [
  2722. {
  2723. name: "Normal",
  2724. height: math.unit(2.8, "meter"),
  2725. default: true
  2726. },
  2727. {
  2728. name: "Macro",
  2729. height: math.unit(38, "meter")
  2730. }
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2735. {
  2736. front: {
  2737. height: math.unit(470, "feet"),
  2738. weight: math.unit(924, "tons"),
  2739. name: "Front",
  2740. image: {
  2741. source: "./media/characters/angelpatamon/front.svg",
  2742. }
  2743. }
  2744. },
  2745. [
  2746. {
  2747. name: "Normal",
  2748. height: math.unit(470, "feet"),
  2749. default: true
  2750. },
  2751. {
  2752. name: "Deity Size I",
  2753. height: math.unit(28651.2, "km")
  2754. },
  2755. {
  2756. name: "Deity Size II",
  2757. height: math.unit(171907.2, "km")
  2758. }
  2759. ]
  2760. ))
  2761. characterMakers.push(() => makeCharacter(
  2762. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2763. {
  2764. side: {
  2765. height: math.unit(7.2, "meter"),
  2766. weight: math.unit(8.2, "tons"),
  2767. name: "Side",
  2768. image: {
  2769. source: "./media/characters/cryae/side.svg",
  2770. extra: 3500 / 1500
  2771. }
  2772. }
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(7.2, "meter"),
  2778. default: true
  2779. }
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(175, "lb"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/xera/front.svg",
  2791. extra: 2300 / 2061
  2792. }
  2793. },
  2794. side: {
  2795. height: math.unit(6, "feet"),
  2796. weight: math.unit(175, "lb"),
  2797. name: "Side",
  2798. image: {
  2799. source: "./media/characters/xera/side.svg",
  2800. extra: 2300 / 2061
  2801. }
  2802. },
  2803. back: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(175, "lb"),
  2806. name: "Back",
  2807. image: {
  2808. source: "./media/characters/xera/back.svg"
  2809. }
  2810. },
  2811. },
  2812. [
  2813. {
  2814. name: "Small",
  2815. height: math.unit(10, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(500, "meters"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Macro+",
  2824. height: math.unit(10, "km")
  2825. },
  2826. {
  2827. name: "Gigamacro",
  2828. height: math.unit(25000, "km")
  2829. },
  2830. {
  2831. name: "Teramacro",
  2832. height: math.unit(3e6, "km")
  2833. }
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2838. {
  2839. front: {
  2840. height: math.unit(6, "feet"),
  2841. weight: math.unit(175, "lb"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/nebula/front.svg",
  2845. extra: 2600 / 2450
  2846. }
  2847. }
  2848. },
  2849. [
  2850. {
  2851. name: "Small",
  2852. height: math.unit(4.5, "meters")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(1500, "meters"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(150, "km")
  2862. },
  2863. {
  2864. name: "Gigamacro",
  2865. height: math.unit(27000, "km")
  2866. }
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(6, "feet"),
  2874. weight: math.unit(225, "lb"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/abysgar/front.svg"
  2878. }
  2879. }
  2880. },
  2881. [
  2882. {
  2883. name: "Small",
  2884. height: math.unit(4.5, "meters")
  2885. },
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(1250, "meters"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(125, "km")
  2894. },
  2895. {
  2896. name: "Gigamacro",
  2897. height: math.unit(26000, "km")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(180, "lb"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/yakuz/front.svg"
  2910. }
  2911. }
  2912. },
  2913. [
  2914. {
  2915. name: "Small",
  2916. height: math.unit(5, "meters")
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(1500, "meters"),
  2921. default: true
  2922. },
  2923. {
  2924. name: "Megamacro",
  2925. height: math.unit(200, "km")
  2926. },
  2927. {
  2928. name: "Gigamacro",
  2929. height: math.unit(100000, "km")
  2930. }
  2931. ]
  2932. ))
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2935. {
  2936. front: {
  2937. height: math.unit(6, "feet"),
  2938. weight: math.unit(175, "lb"),
  2939. name: "Front",
  2940. image: {
  2941. source: "./media/characters/mirova/front.svg"
  2942. }
  2943. }
  2944. },
  2945. [
  2946. {
  2947. name: "Small",
  2948. height: math.unit(5, "meters")
  2949. },
  2950. {
  2951. name: "Macro",
  2952. height: math.unit(900, "meters"),
  2953. default: true
  2954. },
  2955. {
  2956. name: "Megamacro",
  2957. height: math.unit(135, "km")
  2958. },
  2959. {
  2960. name: "Gigamacro",
  2961. height: math.unit(20000, "km")
  2962. }
  2963. ]
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2967. {
  2968. side: {
  2969. height: math.unit(28.35, "feet"),
  2970. weight: math.unit(99.75, "tons"),
  2971. name: "Side",
  2972. image: {
  2973. source: "./media/characters/asana-mech/side.svg"
  2974. }
  2975. }
  2976. },
  2977. [
  2978. {
  2979. name: "Normal",
  2980. height: math.unit(28.35, "feet"),
  2981. default: true
  2982. },
  2983. {
  2984. name: "Macro",
  2985. height: math.unit(2500, "feet")
  2986. },
  2987. {
  2988. name: "Megamacro",
  2989. height: math.unit(25, "miles")
  2990. },
  2991. {
  2992. name: "Examacro",
  2993. height: math.unit(6e8, "lightyears")
  2994. },
  2995. ]
  2996. ))
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(2, "meters"),
  3002. weight: math.unit(70, "kg"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/ashtrek/front.svg",
  3006. extra: 560 / 524,
  3007. bottom: 0.01
  3008. }
  3009. },
  3010. frontArmor: {
  3011. height: math.unit(2, "meters"),
  3012. weight: math.unit(76, "kg"),
  3013. name: "Front (Armor)",
  3014. image: {
  3015. source: "./media/characters/ashtrek/front-armor.svg",
  3016. extra: 561 / 527,
  3017. bottom: 0.01
  3018. }
  3019. },
  3020. side: {
  3021. height: math.unit(2, "meters"),
  3022. weight: math.unit(70, "kg"),
  3023. name: "Side",
  3024. image: {
  3025. source: "./media/characters/ashtrek/side.svg",
  3026. extra: 1717 / 1609,
  3027. bottom: 0.005
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(2, "meters"),
  3032. weight: math.unit(70, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/ashtrek/back.svg",
  3036. extra: 1570 / 1501
  3037. }
  3038. },
  3039. },
  3040. [
  3041. {
  3042. name: "DEFCON 5",
  3043. height: math.unit(5, "meters")
  3044. },
  3045. {
  3046. name: "DEFCON 4",
  3047. height: math.unit(500, "meters"),
  3048. default: true
  3049. },
  3050. {
  3051. name: "DEFCON 3",
  3052. height: math.unit(5, "km")
  3053. },
  3054. {
  3055. name: "DEFCON 2",
  3056. height: math.unit(500, "km")
  3057. },
  3058. {
  3059. name: "DEFCON 1",
  3060. height: math.unit(500000, "km")
  3061. },
  3062. {
  3063. name: "DEFCON 0",
  3064. height: math.unit(3, "gigaparsecs")
  3065. },
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meters"),
  3073. weight: math.unit(76, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/gale/front.svg"
  3077. }
  3078. },
  3079. frontAlt1: {
  3080. height: math.unit(2, "meters"),
  3081. weight: math.unit(76, "kg"),
  3082. name: "Front (Alt 1)",
  3083. image: {
  3084. source: "./media/characters/gale/front-alt-1.svg"
  3085. }
  3086. },
  3087. frontAlt2: {
  3088. height: math.unit(2, "meters"),
  3089. weight: math.unit(76, "kg"),
  3090. name: "Front (Alt 2)",
  3091. image: {
  3092. source: "./media/characters/gale/front-alt-2.svg"
  3093. }
  3094. },
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(7, "feet")
  3100. },
  3101. {
  3102. name: "Macro",
  3103. height: math.unit(150, "feet"),
  3104. default: true
  3105. },
  3106. {
  3107. name: "Macro+",
  3108. height: math.unit(300, "feet")
  3109. },
  3110. ]
  3111. ))
  3112. characterMakers.push(() => makeCharacter(
  3113. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3114. {
  3115. front: {
  3116. height: math.unit(2, "meters"),
  3117. weight: math.unit(76, "kg"),
  3118. name: "Front",
  3119. image: {
  3120. source: "./media/characters/draylen/front.svg"
  3121. }
  3122. }
  3123. },
  3124. [
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(150, "feet"),
  3128. default: true
  3129. }
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3134. {
  3135. front: {
  3136. height: math.unit(7 + 9 / 12, "feet"),
  3137. weight: math.unit(379, "lbs"),
  3138. name: "Front",
  3139. image: {
  3140. source: "./media/characters/chez/front.svg"
  3141. }
  3142. },
  3143. side: {
  3144. height: math.unit(7 + 9 / 12, "feet"),
  3145. weight: math.unit(379, "lbs"),
  3146. name: "Side",
  3147. image: {
  3148. source: "./media/characters/chez/side.svg"
  3149. }
  3150. }
  3151. },
  3152. [
  3153. {
  3154. name: "Normal",
  3155. height: math.unit(7 + 9 / 12, "feet"),
  3156. default: true
  3157. },
  3158. {
  3159. name: "God King",
  3160. height: math.unit(9750000, "meters")
  3161. }
  3162. ]
  3163. ))
  3164. characterMakers.push(() => makeCharacter(
  3165. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3166. {
  3167. front: {
  3168. height: math.unit(6, "feet"),
  3169. weight: math.unit(275, "lbs"),
  3170. name: "Front",
  3171. image: {
  3172. source: "./media/characters/kaylum/front.svg",
  3173. bottom: 0.01,
  3174. extra: 1166 / 1031
  3175. }
  3176. },
  3177. frontWingless: {
  3178. height: math.unit(6, "feet"),
  3179. weight: math.unit(275, "lbs"),
  3180. name: "Front (Wingless)",
  3181. image: {
  3182. source: "./media/characters/kaylum/front-wingless.svg",
  3183. bottom: 0.01,
  3184. extra: 1117 / 1031
  3185. }
  3186. }
  3187. },
  3188. [
  3189. {
  3190. name: "Normal",
  3191. height: math.unit(3.05, "meters")
  3192. },
  3193. {
  3194. name: "Master",
  3195. height: math.unit(5.5, "meters")
  3196. },
  3197. {
  3198. name: "Rampage",
  3199. height: math.unit(19, "meters")
  3200. },
  3201. {
  3202. name: "Macro Lite",
  3203. height: math.unit(37, "meters")
  3204. },
  3205. {
  3206. name: "Hyper Predator",
  3207. height: math.unit(61, "meters")
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(138, "meters"),
  3212. default: true
  3213. }
  3214. ]
  3215. ))
  3216. characterMakers.push(() => makeCharacter(
  3217. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3218. {
  3219. front: {
  3220. height: math.unit(6, "feet"),
  3221. weight: math.unit(150, "lbs"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/geta/front.svg"
  3225. }
  3226. }
  3227. },
  3228. [
  3229. {
  3230. name: "Micro",
  3231. height: math.unit(3, "inches"),
  3232. default: true
  3233. },
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(5 + 5 / 12, "feet")
  3237. }
  3238. ]
  3239. ))
  3240. characterMakers.push(() => makeCharacter(
  3241. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3242. {
  3243. front: {
  3244. height: math.unit(6, "feet"),
  3245. weight: math.unit(300, "lbs"),
  3246. name: "Front",
  3247. image: {
  3248. source: "./media/characters/tyrnn/front.svg"
  3249. }
  3250. }
  3251. },
  3252. [
  3253. {
  3254. name: "Main Height",
  3255. height: math.unit(355, "feet"),
  3256. default: true
  3257. },
  3258. {
  3259. name: "Fave. Height",
  3260. height: math.unit(2400, "feet")
  3261. }
  3262. ]
  3263. ))
  3264. characterMakers.push(() => makeCharacter(
  3265. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3266. {
  3267. front: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(300, "lbs"),
  3270. name: "Front",
  3271. image: {
  3272. source: "./media/characters/appledectomy/front.svg"
  3273. }
  3274. }
  3275. },
  3276. [
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(2500, "feet")
  3280. },
  3281. {
  3282. name: "Megamacro",
  3283. height: math.unit(50, "miles"),
  3284. default: true
  3285. },
  3286. {
  3287. name: "Gigamacro",
  3288. height: math.unit(5000, "miles")
  3289. },
  3290. {
  3291. name: "Teramacro",
  3292. height: math.unit(250000, "miles")
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3298. {
  3299. front: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(200, "lbs"),
  3302. name: "Front",
  3303. image: {
  3304. source: "./media/characters/vulpes/front.svg",
  3305. extra: 573 / 543,
  3306. bottom: 0.033
  3307. }
  3308. },
  3309. side: {
  3310. height: math.unit(6, "feet"),
  3311. weight: math.unit(200, "lbs"),
  3312. name: "Side",
  3313. image: {
  3314. source: "./media/characters/vulpes/side.svg",
  3315. extra: 573 / 543,
  3316. bottom: 0.01
  3317. }
  3318. },
  3319. back: {
  3320. height: math.unit(6, "feet"),
  3321. weight: math.unit(200, "lbs"),
  3322. name: "Back",
  3323. image: {
  3324. source: "./media/characters/vulpes/back.svg",
  3325. extra: 573 / 543,
  3326. }
  3327. },
  3328. feet: {
  3329. height: math.unit(1.276, "feet"),
  3330. name: "Feet",
  3331. image: {
  3332. source: "./media/characters/vulpes/feet.svg"
  3333. }
  3334. },
  3335. maw: {
  3336. height: math.unit(1.18, "feet"),
  3337. name: "Maw",
  3338. image: {
  3339. source: "./media/characters/vulpes/maw.svg"
  3340. }
  3341. },
  3342. },
  3343. [
  3344. {
  3345. name: "Micro",
  3346. height: math.unit(2, "inches")
  3347. },
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(6.3, "feet")
  3351. },
  3352. {
  3353. name: "Macro",
  3354. height: math.unit(850, "feet")
  3355. },
  3356. {
  3357. name: "Megamacro",
  3358. height: math.unit(7500, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Gigamacro",
  3363. height: math.unit(570000, "miles")
  3364. }
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3369. {
  3370. front: {
  3371. height: math.unit(6, "feet"),
  3372. weight: math.unit(210, "lbs"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/rain-fallen/front.svg"
  3376. }
  3377. },
  3378. side: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(210, "lbs"),
  3381. name: "Side",
  3382. image: {
  3383. source: "./media/characters/rain-fallen/side.svg"
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(210, "lbs"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/rain-fallen/back.svg"
  3392. }
  3393. },
  3394. feral: {
  3395. height: math.unit(9, "feet"),
  3396. weight: math.unit(700, "lbs"),
  3397. name: "Feral",
  3398. image: {
  3399. source: "./media/characters/rain-fallen/feral.svg"
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(5, "meter")
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(150, "meter"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Megamacro",
  3415. height: math.unit(278e6, "meter")
  3416. },
  3417. {
  3418. name: "Gigamacro",
  3419. height: math.unit(2e9, "meter")
  3420. },
  3421. {
  3422. name: "Teramacro",
  3423. height: math.unit(8e12, "meter")
  3424. },
  3425. {
  3426. name: "Devourer",
  3427. height: math.unit(14, "zettameters")
  3428. },
  3429. {
  3430. name: "Scarlet King",
  3431. height: math.unit(18, "yottameters")
  3432. },
  3433. {
  3434. name: "Void",
  3435. height: math.unit(6.66e66, "yottameters")
  3436. }
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3441. {
  3442. standing: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(180, "lbs"),
  3445. name: "Standing",
  3446. image: {
  3447. source: "./media/characters/zaakira/standing.svg"
  3448. }
  3449. },
  3450. laying: {
  3451. height: math.unit(3, "feet"),
  3452. weight: math.unit(180, "lbs"),
  3453. name: "Laying",
  3454. image: {
  3455. source: "./media/characters/zaakira/laying.svg"
  3456. }
  3457. },
  3458. },
  3459. [
  3460. {
  3461. name: "Normal",
  3462. height: math.unit(12, "feet")
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(279, "feet"),
  3467. default: true
  3468. }
  3469. ]
  3470. ))
  3471. characterMakers.push(() => makeCharacter(
  3472. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3473. {
  3474. front: {
  3475. height: math.unit(6, "feet"),
  3476. weight: math.unit(250, "lbs"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/sigvald/front.svg",
  3480. extra: 1000 / 850
  3481. }
  3482. },
  3483. back: {
  3484. height: math.unit(6, "feet"),
  3485. weight: math.unit(250, "lbs"),
  3486. name: "Back",
  3487. image: {
  3488. source: "./media/characters/sigvald/back.svg"
  3489. }
  3490. },
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(8, "feet")
  3496. },
  3497. {
  3498. name: "Large",
  3499. height: math.unit(12, "feet")
  3500. },
  3501. {
  3502. name: "Larger",
  3503. height: math.unit(20, "feet")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(150, "feet")
  3508. },
  3509. {
  3510. name: "Macro+",
  3511. height: math.unit(200, "feet"),
  3512. default: true
  3513. },
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3518. {
  3519. side: {
  3520. height: math.unit(12, "feet"),
  3521. weight: math.unit(2000, "kg"),
  3522. name: "Side",
  3523. image: {
  3524. source: "./media/characters/scott/side.svg",
  3525. extra: 754/724,
  3526. bottom: 0.069
  3527. }
  3528. },
  3529. upright: {
  3530. height: math.unit(12, "feet"),
  3531. weight: math.unit(2000, "kg"),
  3532. name: "Upright",
  3533. image: {
  3534. source: "./media/characters/scott/upright.svg",
  3535. extra: 3881/3722,
  3536. bottom: 0.05
  3537. }
  3538. },
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(12, "feet"),
  3544. default: true
  3545. },
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3550. {
  3551. side: {
  3552. height: math.unit(8, "meters"),
  3553. weight: math.unit(84755, "lbs"),
  3554. name: "Side",
  3555. image: {
  3556. source: "./media/characters/tobias/side.svg",
  3557. extra: 1474 / 1096,
  3558. bottom: 38.9 / 1513.1235
  3559. }
  3560. },
  3561. },
  3562. [
  3563. {
  3564. name: "Normal",
  3565. height: math.unit(8, "meters"),
  3566. default: true
  3567. },
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3572. {
  3573. front: {
  3574. height: math.unit(5.5, "feet"),
  3575. weight: math.unit(400, "lbs"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/kieran/front.svg",
  3579. extra: 2694/2364,
  3580. bottom: 217/2908
  3581. }
  3582. },
  3583. side: {
  3584. height: math.unit(5.5, "feet"),
  3585. weight: math.unit(400, "lbs"),
  3586. name: "Side",
  3587. image: {
  3588. source: "./media/characters/kieran/side.svg",
  3589. extra: 875/777,
  3590. bottom: 84.6/959
  3591. }
  3592. },
  3593. },
  3594. [
  3595. {
  3596. name: "Normal",
  3597. height: math.unit(5.5, "feet"),
  3598. default: true
  3599. },
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3604. {
  3605. side: {
  3606. height: math.unit(2, "meters"),
  3607. weight: math.unit(70, "kg"),
  3608. name: "Side",
  3609. image: {
  3610. source: "./media/characters/sanya/side.svg",
  3611. bottom: 0.02,
  3612. extra: 1.02
  3613. }
  3614. },
  3615. },
  3616. [
  3617. {
  3618. name: "Small",
  3619. height: math.unit(2, "meters")
  3620. },
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(3, "meters")
  3624. },
  3625. {
  3626. name: "Macro",
  3627. height: math.unit(16, "meters"),
  3628. default: true
  3629. },
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3634. {
  3635. side: {
  3636. height: math.unit(2, "meters"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/miranda/front.svg",
  3641. extra: 10.6 / 10
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(10, "feet"),
  3649. default: true
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "James", species: ["deer"], tags: ["anthro"] },
  3655. {
  3656. side: {
  3657. height: math.unit(2, "meters"),
  3658. weight: math.unit(100, "kg"),
  3659. name: "Front",
  3660. image: {
  3661. source: "./media/characters/james/front.svg",
  3662. extra: 10 / 8.5
  3663. }
  3664. },
  3665. },
  3666. [
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(8.5, "feet"),
  3670. default: true
  3671. }
  3672. ]
  3673. ))
  3674. characterMakers.push(() => makeCharacter(
  3675. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3676. {
  3677. side: {
  3678. height: math.unit(9.5, "feet"),
  3679. weight: math.unit(2500, "lbs"),
  3680. name: "Side",
  3681. image: {
  3682. source: "./media/characters/heather/side.svg"
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(9.5, "feet"),
  3690. default: true
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3696. {
  3697. side: {
  3698. height: math.unit(6.5, "feet"),
  3699. weight: math.unit(400, "lbs"),
  3700. name: "Side",
  3701. image: {
  3702. source: "./media/characters/lukas/side.svg",
  3703. extra: 7.25 / 6.5
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Normal",
  3710. height: math.unit(6.5, "feet"),
  3711. default: true
  3712. }
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3717. {
  3718. side: {
  3719. height: math.unit(5, "feet"),
  3720. weight: math.unit(3000, "lbs"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/louise/side.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Normal",
  3730. height: math.unit(5, "feet"),
  3731. default: true
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3737. {
  3738. side: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(150, "lbs"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/ramona/side.svg"
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(5.3, "meters"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(20, "stories")
  3756. },
  3757. {
  3758. name: "Macro+",
  3759. height: math.unit(50, "stories")
  3760. },
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3765. {
  3766. standing: {
  3767. height: math.unit(5.75, "feet"),
  3768. weight: math.unit(160, "lbs"),
  3769. name: "Standing",
  3770. image: {
  3771. source: "./media/characters/deerpuff/standing.svg",
  3772. extra: 682 / 624
  3773. }
  3774. },
  3775. sitting: {
  3776. height: math.unit(5.75 / 1.79, "feet"),
  3777. weight: math.unit(160, "lbs"),
  3778. name: "Sitting",
  3779. image: {
  3780. source: "./media/characters/deerpuff/sitting.svg",
  3781. bottom: 44 / 400,
  3782. extra: 1
  3783. }
  3784. },
  3785. taurLaying: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(400, "lbs"),
  3788. name: "Taur (Laying)",
  3789. image: {
  3790. source: "./media/characters/deerpuff/taur-laying.svg"
  3791. }
  3792. },
  3793. },
  3794. [
  3795. {
  3796. name: "Puffball",
  3797. height: math.unit(6, "inches")
  3798. },
  3799. {
  3800. name: "Normalpuff",
  3801. height: math.unit(5.75, "feet")
  3802. },
  3803. {
  3804. name: "Macropuff",
  3805. height: math.unit(1500, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Megapuff",
  3810. height: math.unit(500, "miles")
  3811. },
  3812. {
  3813. name: "Gigapuff",
  3814. height: math.unit(250000, "miles")
  3815. },
  3816. {
  3817. name: "Omegapuff",
  3818. height: math.unit(1000, "lightyears")
  3819. },
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3824. {
  3825. stomping: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(170, "lbs"),
  3828. name: "Stomping",
  3829. image: {
  3830. source: "./media/characters/vivian/stomping.svg"
  3831. }
  3832. },
  3833. sitting: {
  3834. height: math.unit(6 / 1.75, "feet"),
  3835. weight: math.unit(170, "lbs"),
  3836. name: "Sitting",
  3837. image: {
  3838. source: "./media/characters/vivian/sitting.svg",
  3839. bottom: 1 / 6.4,
  3840. extra: 1,
  3841. }
  3842. },
  3843. },
  3844. [
  3845. {
  3846. name: "Normal",
  3847. height: math.unit(7, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(10, "stories")
  3853. },
  3854. {
  3855. name: "Macro+",
  3856. height: math.unit(30, "stories")
  3857. },
  3858. {
  3859. name: "Megamacro",
  3860. height: math.unit(10, "miles")
  3861. },
  3862. {
  3863. name: "Megamacro+",
  3864. height: math.unit(2750000, "meters")
  3865. },
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(160, "lbs"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/prince/front.svg",
  3877. extra: 3400 / 3000
  3878. }
  3879. },
  3880. jumping: {
  3881. height: math.unit(6, "feet"),
  3882. weight: math.unit(160, "lbs"),
  3883. name: "Jumping",
  3884. image: {
  3885. source: "./media/characters/prince/jump.svg",
  3886. extra: 2555 / 2134
  3887. }
  3888. },
  3889. },
  3890. [
  3891. {
  3892. name: "Normal",
  3893. height: math.unit(7.75, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Not cute",
  3898. height: math.unit(17, "feet")
  3899. },
  3900. {
  3901. name: "I said NOT",
  3902. height: math.unit(91, "feet")
  3903. },
  3904. {
  3905. name: "Please stop",
  3906. height: math.unit(560, "feet")
  3907. },
  3908. {
  3909. name: "What have you done",
  3910. height: math.unit(2200, "feet")
  3911. },
  3912. {
  3913. name: "Deer God",
  3914. height: math.unit(3.6, "miles")
  3915. },
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3920. {
  3921. standing: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(300, "lbs"),
  3924. name: "Standing",
  3925. image: {
  3926. source: "./media/characters/psymon/standing.svg",
  3927. extra: 1888 / 1810,
  3928. bottom: 0.05
  3929. }
  3930. },
  3931. slithering: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(300, "lbs"),
  3934. name: "Slithering",
  3935. image: {
  3936. source: "./media/characters/psymon/slithering.svg",
  3937. extra: 1330 / 1224
  3938. }
  3939. },
  3940. slitheringAlt: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(300, "lbs"),
  3943. name: "Slithering (Alt)",
  3944. image: {
  3945. source: "./media/characters/psymon/slithering-alt.svg",
  3946. extra: 1330 / 1224
  3947. }
  3948. },
  3949. },
  3950. [
  3951. {
  3952. name: "Normal",
  3953. height: math.unit(11.25, "feet"),
  3954. default: true
  3955. },
  3956. {
  3957. name: "Large",
  3958. height: math.unit(27, "feet")
  3959. },
  3960. {
  3961. name: "Giant",
  3962. height: math.unit(87, "feet")
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(365, "feet")
  3967. },
  3968. {
  3969. name: "Megamacro",
  3970. height: math.unit(3, "miles")
  3971. },
  3972. {
  3973. name: "World Serpent",
  3974. height: math.unit(8000, "miles")
  3975. },
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(180, "lbs"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/daimos/front.svg",
  3987. extra: 4160 / 3897,
  3988. bottom: 0.021
  3989. }
  3990. }
  3991. },
  3992. [
  3993. {
  3994. name: "Normal",
  3995. height: math.unit(8, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Big Dog",
  4000. height: math.unit(22, "feet")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(127, "feet")
  4005. },
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(3600, "feet")
  4009. },
  4010. ]
  4011. ))
  4012. characterMakers.push(() => makeCharacter(
  4013. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4014. {
  4015. side: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(180, "lbs"),
  4018. name: "Side",
  4019. image: {
  4020. source: "./media/characters/blake/side.svg",
  4021. extra: 1212 / 1120,
  4022. bottom: 0.05
  4023. }
  4024. },
  4025. crouched: {
  4026. height: math.unit(6 * 0.57, "feet"),
  4027. weight: math.unit(180, "lbs"),
  4028. name: "Crouched",
  4029. image: {
  4030. source: "./media/characters/blake/crouched.svg",
  4031. extra: 840 / 587,
  4032. bottom: 0.04
  4033. }
  4034. },
  4035. bent: {
  4036. height: math.unit(6 * 0.75, "feet"),
  4037. weight: math.unit(180, "lbs"),
  4038. name: "Bent",
  4039. image: {
  4040. source: "./media/characters/blake/bent.svg",
  4041. extra: 592 / 544,
  4042. bottom: 0.035
  4043. }
  4044. },
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(8 + 1 / 6, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Big Backside",
  4054. height: math.unit(37, "feet")
  4055. },
  4056. {
  4057. name: "Subway Shredder",
  4058. height: math.unit(72, "feet")
  4059. },
  4060. {
  4061. name: "City Carver",
  4062. height: math.unit(1675, "feet")
  4063. },
  4064. {
  4065. name: "Tectonic Tweaker",
  4066. height: math.unit(2300, "miles")
  4067. },
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(180, "lbs"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/guisetto/front.svg",
  4079. extra: 856 / 817,
  4080. bottom: 0.06
  4081. }
  4082. },
  4083. airborne: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(180, "lbs"),
  4086. name: "Airborne",
  4087. image: {
  4088. source: "./media/characters/guisetto/airborne.svg",
  4089. extra: 584 / 525
  4090. }
  4091. },
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(10 + 11 / 12, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Large",
  4101. height: math.unit(35, "feet")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(475, "feet")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(180, "lbs"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/luxor/front.svg",
  4118. extra: 2940 / 2152
  4119. }
  4120. },
  4121. back: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(180, "lbs"),
  4124. name: "Back",
  4125. image: {
  4126. source: "./media/characters/luxor/back.svg",
  4127. extra: 1083 / 960
  4128. }
  4129. },
  4130. },
  4131. [
  4132. {
  4133. name: "Normal",
  4134. height: math.unit(5 + 5 / 6, "feet"),
  4135. default: true
  4136. },
  4137. {
  4138. name: "Lamp",
  4139. height: math.unit(50, "feet")
  4140. },
  4141. {
  4142. name: "Lämp",
  4143. height: math.unit(300, "feet")
  4144. },
  4145. {
  4146. name: "The sun is a lamp",
  4147. height: math.unit(250000, "miles")
  4148. },
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4153. {
  4154. front: {
  4155. height: math.unit(6, "feet"),
  4156. weight: math.unit(50, "lbs"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/huoyan/front.svg"
  4160. }
  4161. },
  4162. side: {
  4163. height: math.unit(6, "feet"),
  4164. weight: math.unit(180, "lbs"),
  4165. name: "Side",
  4166. image: {
  4167. source: "./media/characters/huoyan/side.svg"
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Chef",
  4174. height: math.unit(9, "feet")
  4175. },
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(65, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(780, "feet")
  4184. },
  4185. {
  4186. name: "Flaming Mountain",
  4187. height: math.unit(4.8, "miles")
  4188. },
  4189. {
  4190. name: "Celestial",
  4191. height: math.unit(765000, "miles")
  4192. },
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(5 + 3 / 4, "feet"),
  4200. weight: math.unit(120, "lbs"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/tails/front.svg"
  4204. }
  4205. }
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(5 + 3 / 4, "feet"),
  4211. default: true
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(4, "feet"),
  4220. weight: math.unit(50, "lbs"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/rainy/front.svg"
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Macro",
  4230. height: math.unit(800, "feet"),
  4231. default: true
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(150, "lbs"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/rainier/front.svg"
  4244. }
  4245. }
  4246. },
  4247. [
  4248. {
  4249. name: "Micro",
  4250. height: math.unit(2, "mm"),
  4251. default: true
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(6, "feet"),
  4260. weight: math.unit(180, "lbs"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/andy/front.svg"
  4264. }
  4265. }
  4266. },
  4267. [
  4268. {
  4269. name: "Normal",
  4270. height: math.unit(8, "feet"),
  4271. default: true
  4272. },
  4273. {
  4274. name: "Macro",
  4275. height: math.unit(1000, "feet")
  4276. },
  4277. {
  4278. name: "Megamacro",
  4279. height: math.unit(5, "miles")
  4280. },
  4281. {
  4282. name: "Gigamacro",
  4283. height: math.unit(5000, "miles")
  4284. },
  4285. ]
  4286. ))
  4287. characterMakers.push(() => makeCharacter(
  4288. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4289. {
  4290. front: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(210, "lbs"),
  4293. name: "Front",
  4294. image: {
  4295. source: "./media/characters/cimmaron/front-sfw.svg",
  4296. extra: 701 / 676,
  4297. bottom: 0.046
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(6, "feet"),
  4302. weight: math.unit(210, "lbs"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/cimmaron/back-sfw.svg",
  4306. extra: 701 / 676,
  4307. bottom: 0.046
  4308. }
  4309. },
  4310. frontNsfw: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(210, "lbs"),
  4313. name: "Front (NSFW)",
  4314. image: {
  4315. source: "./media/characters/cimmaron/front-nsfw.svg",
  4316. extra: 701 / 676,
  4317. bottom: 0.046
  4318. }
  4319. },
  4320. backNsfw: {
  4321. height: math.unit(6, "feet"),
  4322. weight: math.unit(210, "lbs"),
  4323. name: "Back (NSFW)",
  4324. image: {
  4325. source: "./media/characters/cimmaron/back-nsfw.svg",
  4326. extra: 701 / 676,
  4327. bottom: 0.046
  4328. }
  4329. },
  4330. dick: {
  4331. height: math.unit(1.714, "feet"),
  4332. name: "Dick",
  4333. image: {
  4334. source: "./media/characters/cimmaron/dick.svg"
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(6, "feet"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Macro Mayor",
  4346. height: math.unit(350, "meters")
  4347. },
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(6, "feet"),
  4355. weight: math.unit(200, "lbs"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/akari/front.svg",
  4359. extra: 962 / 901,
  4360. bottom: 0.04
  4361. }
  4362. }
  4363. },
  4364. [
  4365. {
  4366. name: "Micro",
  4367. height: math.unit(5, "inches"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(7, "feet")
  4373. },
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(140, "lbs"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/cynosura/front.svg",
  4385. extra: 896 / 847
  4386. }
  4387. },
  4388. back: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(140, "lbs"),
  4391. name: "Back",
  4392. image: {
  4393. source: "./media/characters/cynosura/back.svg",
  4394. extra: 1365 / 1250
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Micro",
  4401. height: math.unit(4, "inches")
  4402. },
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(5.75, "feet"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Tall",
  4410. height: math.unit(10, "feet")
  4411. },
  4412. {
  4413. name: "Big",
  4414. height: math.unit(20, "feet")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(50, "feet")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(170, "lbs"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/gin/front.svg",
  4431. extra: 1.053,
  4432. bottom: 0.025
  4433. }
  4434. },
  4435. foot: {
  4436. height: math.unit(6 / 4.25, "feet"),
  4437. name: "Foot",
  4438. image: {
  4439. source: "./media/characters/gin/foot.svg"
  4440. }
  4441. },
  4442. sole: {
  4443. height: math.unit(6 / 4.40, "feet"),
  4444. name: "Sole",
  4445. image: {
  4446. source: "./media/characters/gin/sole.svg"
  4447. }
  4448. },
  4449. },
  4450. [
  4451. {
  4452. name: "Normal",
  4453. height: math.unit(13 + 2/12, "feet")
  4454. },
  4455. {
  4456. name: "Macro",
  4457. height: math.unit(1500, "feet")
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(200, "miles"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Gigamacro",
  4466. height: math.unit(500, "megameters")
  4467. },
  4468. {
  4469. name: "Teramacro",
  4470. height: math.unit(15, "lightyears")
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4476. {
  4477. front: {
  4478. height: math.unit(6 + 1 / 6, "feet"),
  4479. weight: math.unit(178, "lbs"),
  4480. name: "Front",
  4481. image: {
  4482. source: "./media/characters/guy/front.svg"
  4483. }
  4484. }
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(6 + 1 / 6, "feet"),
  4490. default: true
  4491. },
  4492. {
  4493. name: "Large",
  4494. height: math.unit(25 + 7 / 12, "feet")
  4495. },
  4496. {
  4497. name: "Macro",
  4498. height: math.unit(60 + 9 / 12, "feet")
  4499. },
  4500. {
  4501. name: "Macro+",
  4502. height: math.unit(246, "feet")
  4503. },
  4504. {
  4505. name: "Macro++",
  4506. height: math.unit(878, "feet")
  4507. }
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4512. {
  4513. front: {
  4514. height: math.unit(9, "feet"),
  4515. weight: math.unit(800, "lbs"),
  4516. name: "Front",
  4517. image: {
  4518. source: "./media/characters/tiberius/front.svg",
  4519. extra: 2295 / 2071
  4520. }
  4521. },
  4522. back: {
  4523. height: math.unit(9, "feet"),
  4524. weight: math.unit(800, "lbs"),
  4525. name: "Back",
  4526. image: {
  4527. source: "./media/characters/tiberius/back.svg",
  4528. extra: 2373 / 2160
  4529. }
  4530. },
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(9, "feet"),
  4536. default: true
  4537. }
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4542. {
  4543. front: {
  4544. height: math.unit(6, "feet"),
  4545. weight: math.unit(600, "lbs"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/surgo/front.svg",
  4549. extra: 3591 / 2227
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(600, "lbs"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/surgo/back.svg",
  4558. extra: 3557 / 2228
  4559. }
  4560. },
  4561. laying: {
  4562. height: math.unit(6 * 0.85, "feet"),
  4563. weight: math.unit(600, "lbs"),
  4564. name: "Laying",
  4565. image: {
  4566. source: "./media/characters/surgo/laying.svg"
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "Normal",
  4573. height: math.unit(6, "feet"),
  4574. default: true
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4580. {
  4581. side: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(150, "lbs"),
  4584. name: "Side",
  4585. image: {
  4586. source: "./media/characters/cibus/side.svg",
  4587. extra: 800 / 400
  4588. }
  4589. },
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(6, "feet"),
  4595. default: true
  4596. }
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4601. {
  4602. front: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(240, "lbs"),
  4605. name: "Front",
  4606. image: {
  4607. source: "./media/characters/nibbles/front.svg"
  4608. }
  4609. },
  4610. side: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(240, "lbs"),
  4613. name: "Side",
  4614. image: {
  4615. source: "./media/characters/nibbles/side.svg"
  4616. }
  4617. },
  4618. },
  4619. [
  4620. {
  4621. name: "Normal",
  4622. height: math.unit(9, "feet"),
  4623. default: true
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4629. {
  4630. side: {
  4631. height: math.unit(5 + 1 / 6, "feet"),
  4632. weight: math.unit(130, "lbs"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/rikky/side.svg"
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(5 + 1 / 6, "feet")
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(152, "feet"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Megamacro",
  4651. height: math.unit(7, "miles")
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4657. {
  4658. side: {
  4659. height: math.unit(370, "cm"),
  4660. weight: math.unit(350, "lbs"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/malfressa/side.svg"
  4664. }
  4665. },
  4666. walking: {
  4667. height: math.unit(370, "cm"),
  4668. weight: math.unit(350, "lbs"),
  4669. name: "Walking",
  4670. image: {
  4671. source: "./media/characters/malfressa/walking.svg"
  4672. }
  4673. },
  4674. feral: {
  4675. height: math.unit(2500, "cm"),
  4676. weight: math.unit(100000, "lbs"),
  4677. name: "Feral",
  4678. image: {
  4679. source: "./media/characters/malfressa/feral.svg",
  4680. extra: 2108 / 837,
  4681. bottom: 0.02
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(370, "cm")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(300, "meters"),
  4693. default: true
  4694. }
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(60, "kg"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/jaro/front.svg"
  4706. }
  4707. },
  4708. back: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(60, "kg"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/jaro/back.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Micro",
  4720. height: math.unit(7, "inches")
  4721. },
  4722. {
  4723. name: "Normal",
  4724. height: math.unit(5.5, "feet"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Minimacro",
  4729. height: math.unit(20, "feet")
  4730. },
  4731. {
  4732. name: "Macro",
  4733. height: math.unit(200, "meters")
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(195, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/rogue/front.svg"
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(90, "feet"),
  4753. default: true
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(5 + 8 / 12, "feet"),
  4762. weight: math.unit(140, "lb"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/piper/front.svg",
  4766. extra: 3928 / 3681
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Micro",
  4773. height: math.unit(2, "inches")
  4774. },
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(5 + 8 / 12, "feet")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(250, "feet"),
  4782. default: true
  4783. },
  4784. {
  4785. name: "Megamacro",
  4786. height: math.unit(7, "miles")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(220, "lb"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/gemini/front.svg"
  4799. }
  4800. },
  4801. back: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(220, "lb"),
  4804. name: "Back",
  4805. image: {
  4806. source: "./media/characters/gemini/back.svg"
  4807. }
  4808. },
  4809. kneeling: {
  4810. height: math.unit(6 / 1.5, "feet"),
  4811. weight: math.unit(220, "lb"),
  4812. name: "Kneeling",
  4813. image: {
  4814. source: "./media/characters/gemini/kneeling.svg",
  4815. bottom: 0.02
  4816. }
  4817. },
  4818. },
  4819. [
  4820. {
  4821. name: "Macro",
  4822. height: math.unit(300, "meters"),
  4823. default: true
  4824. },
  4825. {
  4826. name: "Megamacro",
  4827. height: math.unit(6900, "meters")
  4828. },
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  4833. {
  4834. anthro: {
  4835. height: math.unit(2.35, "meters"),
  4836. weight: math.unit(73, "kg"),
  4837. name: "Anthro",
  4838. image: {
  4839. source: "./media/characters/alicia/anthro.svg"
  4840. }
  4841. },
  4842. feral: {
  4843. height: math.unit(1.69, "meters"),
  4844. weight: math.unit(73, "kg"),
  4845. name: "Feral",
  4846. image: {
  4847. source: "./media/characters/alicia/feral.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(2.35, "meters")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(60, "meters"),
  4859. default: true
  4860. },
  4861. {
  4862. name: "Megamacro",
  4863. height: math.unit(10000, "kilometers")
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  4869. {
  4870. front: {
  4871. height: math.unit(7, "feet"),
  4872. weight: math.unit(250, "lbs"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/archy/front.svg"
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Micro",
  4882. height: math.unit(1, "inch")
  4883. },
  4884. {
  4885. name: "Shorty",
  4886. height: math.unit(5, "feet")
  4887. },
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(7, "feet")
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(600, "meters"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(1, "mile")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(1.65, "meters"),
  4908. weight: math.unit(74, "kg"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/berri/front.svg"
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(1.65, "meters")
  4919. },
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(60, "m"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Megamacro",
  4927. height: math.unit(9.213, "km")
  4928. },
  4929. {
  4930. name: "Planet Eater",
  4931. height: math.unit(489, "megameters")
  4932. },
  4933. {
  4934. name: "Teramacro",
  4935. height: math.unit(2471635000000, "meters")
  4936. },
  4937. {
  4938. name: "Examacro",
  4939. height: math.unit(8.0624e+26, "meters")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(1.72, "meters"),
  4948. weight: math.unit(68, "kg"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/lexi/front.svg"
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Very Smol",
  4958. height: math.unit(10, "mm")
  4959. },
  4960. {
  4961. name: "Micro",
  4962. height: math.unit(6.8, "cm"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(1.72, "m")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(1.69, "meters"),
  4976. weight: math.unit(68, "kg"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/martin/front.svg",
  4980. extra: 596 / 581
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Micro",
  4987. height: math.unit(6.85, "cm"),
  4988. default: true
  4989. },
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(1.69, "m")
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(1.69, "meters"),
  5001. weight: math.unit(68, "kg"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/juno/front.svg"
  5005. }
  5006. }
  5007. },
  5008. [
  5009. {
  5010. name: "Micro",
  5011. height: math.unit(7, "cm")
  5012. },
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(1.89, "m")
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(353, "meters"),
  5020. default: true
  5021. }
  5022. ]
  5023. ))
  5024. characterMakers.push(() => makeCharacter(
  5025. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5026. {
  5027. front: {
  5028. height: math.unit(1.93, "meters"),
  5029. weight: math.unit(83, "kg"),
  5030. name: "Front",
  5031. image: {
  5032. source: "./media/characters/samantha/front.svg"
  5033. }
  5034. },
  5035. frontClothed: {
  5036. height: math.unit(1.93, "meters"),
  5037. weight: math.unit(83, "kg"),
  5038. name: "Front (Clothed)",
  5039. image: {
  5040. source: "./media/characters/samantha/front-clothed.svg"
  5041. }
  5042. },
  5043. back: {
  5044. height: math.unit(1.93, "meters"),
  5045. weight: math.unit(83, "kg"),
  5046. name: "Back",
  5047. image: {
  5048. source: "./media/characters/samantha/back.svg"
  5049. }
  5050. },
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(1.93, "m")
  5056. },
  5057. {
  5058. name: "Macro",
  5059. height: math.unit(74, "meters"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Macro+",
  5064. height: math.unit(223, "meters"),
  5065. },
  5066. {
  5067. name: "Megamacro",
  5068. height: math.unit(8381, "meters"),
  5069. },
  5070. {
  5071. name: "Megamacro+",
  5072. height: math.unit(12000, "kilometers")
  5073. },
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(1.92, "meters"),
  5081. weight: math.unit(80, "kg"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/dr-clay/front.svg"
  5085. }
  5086. },
  5087. frontClothed: {
  5088. height: math.unit(1.92, "meters"),
  5089. weight: math.unit(80, "kg"),
  5090. name: "Front (Clothed)",
  5091. image: {
  5092. source: "./media/characters/dr-clay/front-clothed.svg"
  5093. }
  5094. }
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(1.92, "m")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(214, "meters"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro+",
  5108. height: math.unit(12.237, "meters"),
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(557, "megameters"),
  5113. },
  5114. {
  5115. name: "Unimaginable",
  5116. height: math.unit(120e9, "lightyears")
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(2, "meters"),
  5125. weight: math.unit(80, "kg"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5129. }
  5130. }
  5131. },
  5132. [
  5133. {
  5134. name: "Teramacro",
  5135. height: math.unit(500000, "lightyears"),
  5136. default: true
  5137. },
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5142. {
  5143. front: {
  5144. height: math.unit(2, "meters"),
  5145. weight: math.unit(150, "kg"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/vemus/front.svg",
  5149. extra: 2384 / 2084,
  5150. bottom: 0.0123
  5151. }
  5152. }
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(3.75, "meters"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Big",
  5162. height: math.unit(8, "meters")
  5163. },
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(100, "meters")
  5167. },
  5168. {
  5169. name: "Macro+",
  5170. height: math.unit(1500, "meters")
  5171. },
  5172. {
  5173. name: "Stellar",
  5174. height: math.unit(14e8, "meters")
  5175. },
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5180. {
  5181. front: {
  5182. height: math.unit(2, "meters"),
  5183. weight: math.unit(70, "kg"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/beherit/front.svg",
  5187. extra: 1408 / 1242
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(6, "feet")
  5195. },
  5196. {
  5197. name: "Lorg",
  5198. height: math.unit(25, "feet"),
  5199. default: true
  5200. },
  5201. {
  5202. name: "Lorger",
  5203. height: math.unit(75, "feet")
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(200, "meters")
  5208. },
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(2, "meters"),
  5216. weight: math.unit(150, "kg"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/everett/front.svg",
  5220. extra: 2038 / 1737,
  5221. bottom: 0.03
  5222. }
  5223. },
  5224. paw: {
  5225. height: math.unit(2 / 3.6, "meters"),
  5226. name: "Paw",
  5227. image: {
  5228. source: "./media/characters/everett/paw.svg"
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(15, "feet"),
  5236. default: true
  5237. },
  5238. {
  5239. name: "Lorg",
  5240. height: math.unit(70, "feet"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "Lorger",
  5245. height: math.unit(250, "feet")
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(500, "meters")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(2, "meters"),
  5258. weight: math.unit(86, "kg"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/rose-lion/front.svg"
  5262. }
  5263. },
  5264. bent: {
  5265. height: math.unit(2 / 1.4288, "meters"),
  5266. weight: math.unit(86, "kg"),
  5267. name: "Bent",
  5268. image: {
  5269. source: "./media/characters/rose-lion/bent.svg"
  5270. }
  5271. }
  5272. },
  5273. [
  5274. {
  5275. name: "Mini-Micro",
  5276. height: math.unit(1, "cm")
  5277. },
  5278. {
  5279. name: "Micro",
  5280. height: math.unit(3.5, "inches"),
  5281. default: true
  5282. },
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(6 + 1 / 6, "feet")
  5286. },
  5287. {
  5288. name: "Mini-Macro",
  5289. height: math.unit(9 + 10 / 12, "feet")
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5295. {
  5296. front: {
  5297. height: math.unit(2, "meters"),
  5298. weight: math.unit(350, "lbs"),
  5299. name: "Front",
  5300. image: {
  5301. source: "./media/characters/regal/front.svg"
  5302. }
  5303. },
  5304. back: {
  5305. height: math.unit(2, "meters"),
  5306. weight: math.unit(350, "lbs"),
  5307. name: "Back",
  5308. image: {
  5309. source: "./media/characters/regal/back.svg"
  5310. }
  5311. },
  5312. },
  5313. [
  5314. {
  5315. name: "Macro",
  5316. height: math.unit(350, "feet"),
  5317. default: true
  5318. }
  5319. ]
  5320. ))
  5321. characterMakers.push(() => makeCharacter(
  5322. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5323. {
  5324. front: {
  5325. height: math.unit(4 + 11 / 12, "feet"),
  5326. weight: math.unit(100, "lbs"),
  5327. name: "Front",
  5328. image: {
  5329. source: "./media/characters/opal/front.svg"
  5330. }
  5331. },
  5332. frontAlt: {
  5333. height: math.unit(4 + 11 / 12, "feet"),
  5334. weight: math.unit(100, "lbs"),
  5335. name: "Front (Alt)",
  5336. image: {
  5337. source: "./media/characters/opal/front-alt.svg"
  5338. }
  5339. },
  5340. },
  5341. [
  5342. {
  5343. name: "Small",
  5344. height: math.unit(4 + 11 / 12, "feet")
  5345. },
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(20, "feet"),
  5349. default: true
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(120, "feet")
  5354. },
  5355. {
  5356. name: "Megamacro",
  5357. height: math.unit(80, "miles")
  5358. },
  5359. {
  5360. name: "True Size",
  5361. height: math.unit(100000, "lightyears")
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5367. {
  5368. front: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(200, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/vector-wuff/front.svg"
  5374. }
  5375. }
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(2.8, "meters")
  5381. },
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(450, "meters"),
  5385. default: true
  5386. },
  5387. {
  5388. name: "Megamacro",
  5389. height: math.unit(15, "kilometers")
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(256, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/dannik/front.svg"
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(69.57, "meters"),
  5409. default: true
  5410. },
  5411. ]
  5412. ))
  5413. characterMakers.push(() => makeCharacter(
  5414. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5415. {
  5416. front: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(120, "lbs"),
  5419. name: "Front",
  5420. image: {
  5421. source: "./media/characters/azura-saharah/front.svg"
  5422. }
  5423. },
  5424. back: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(120, "lbs"),
  5427. name: "Back",
  5428. image: {
  5429. source: "./media/characters/azura-saharah/back.svg"
  5430. }
  5431. },
  5432. },
  5433. [
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(100, "feet"),
  5437. default: true
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  5443. {
  5444. side: {
  5445. height: math.unit(5 + 4 / 12, "feet"),
  5446. weight: math.unit(163, "lbs"),
  5447. name: "Side",
  5448. image: {
  5449. source: "./media/characters/kennedy/side.svg"
  5450. }
  5451. }
  5452. },
  5453. [
  5454. {
  5455. name: "Standard Doggo",
  5456. height: math.unit(5 + 4 / 12, "feet")
  5457. },
  5458. {
  5459. name: "Big Doggo",
  5460. height: math.unit(25 + 3 / 12, "feet"),
  5461. default: true
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  5467. {
  5468. front: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(90, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/odi-lunar/front.svg"
  5474. }
  5475. }
  5476. },
  5477. [
  5478. {
  5479. name: "Micro",
  5480. height: math.unit(3, "inches"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Normal",
  5485. height: math.unit(5.5, "feet")
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  5491. {
  5492. back: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(220, "lbs"),
  5495. name: "Back",
  5496. image: {
  5497. source: "./media/characters/mandake/back.svg"
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(7, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(78, "feet")
  5510. },
  5511. {
  5512. name: "Macro+",
  5513. height: math.unit(300, "meters")
  5514. },
  5515. {
  5516. name: "Macro++",
  5517. height: math.unit(2400, "feet")
  5518. },
  5519. {
  5520. name: "Megamacro",
  5521. height: math.unit(5167, "meters")
  5522. },
  5523. {
  5524. name: "Gigamacro",
  5525. height: math.unit(41769, "miles")
  5526. },
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(120, "lbs"),
  5535. name: "Front",
  5536. image: {
  5537. source: "./media/characters/yozey/front.svg"
  5538. }
  5539. },
  5540. frontAlt: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(120, "lbs"),
  5543. name: "Front (Alt)",
  5544. image: {
  5545. source: "./media/characters/yozey/front-alt.svg"
  5546. }
  5547. },
  5548. side: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(120, "lbs"),
  5551. name: "Side",
  5552. image: {
  5553. source: "./media/characters/yozey/side.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Micro",
  5560. height: math.unit(3, "inches"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Normal",
  5565. height: math.unit(6, "feet")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(103, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/valeska-voss/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Mini-Sized Sub",
  5584. height: math.unit(3.1, "inches")
  5585. },
  5586. {
  5587. name: "Mid-Sized Sub",
  5588. height: math.unit(6.2, "inches")
  5589. },
  5590. {
  5591. name: "Full-Sized Sub",
  5592. height: math.unit(9.3, "inches")
  5593. },
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(5 + 2 / 12, "foot"),
  5597. default: true
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(160, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/gene-zeta/front.svg",
  5610. bottom: 0.03,
  5611. extra: 1
  5612. }
  5613. }
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(6.25, "foot"),
  5619. default: true
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  5625. {
  5626. front: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(350, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/razinox/front.svg",
  5632. extra: 1686 / 1548,
  5633. bottom: 28.2/1868
  5634. }
  5635. },
  5636. back: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(350, "lbs"),
  5639. name: "Back",
  5640. image: {
  5641. source: "./media/characters/razinox/back.svg",
  5642. extra: 1660 / 1590,
  5643. bottom: 15/1665
  5644. }
  5645. },
  5646. },
  5647. [
  5648. {
  5649. name: "Normal",
  5650. height: math.unit(10 + 8 / 12, "foot")
  5651. },
  5652. {
  5653. name: "Minimacro",
  5654. height: math.unit(15, "foot")
  5655. },
  5656. {
  5657. name: "Macro",
  5658. height: math.unit(60, "foot"),
  5659. default: true
  5660. },
  5661. {
  5662. name: "Megamacro",
  5663. height: math.unit(5, "miles")
  5664. },
  5665. {
  5666. name: "Gigamacro",
  5667. height: math.unit(6000, "miles")
  5668. },
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  5673. {
  5674. front: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(150, "lbs"),
  5677. name: "Front",
  5678. image: {
  5679. source: "./media/characters/cobalt/front.svg"
  5680. }
  5681. }
  5682. },
  5683. [
  5684. {
  5685. name: "Normal",
  5686. height: math.unit(8 + 1 / 12, "foot")
  5687. },
  5688. {
  5689. name: "Macro",
  5690. height: math.unit(111, "foot"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Supracosmic",
  5695. height: math.unit(1e42, "feet")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(140, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/amanda/front.svg"
  5708. }
  5709. }
  5710. },
  5711. [
  5712. {
  5713. name: "Micro",
  5714. height: math.unit(5, "inches"),
  5715. default: true
  5716. },
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(5.59, "feet"),
  5724. weight: math.unit(250, "lbs"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/teal/front.svg"
  5728. }
  5729. },
  5730. frontAlt: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(250, "lbs"),
  5733. name: "Front (Alt)",
  5734. image: {
  5735. source: "./media/characters/teal/front-alt.svg",
  5736. bottom: 0.04,
  5737. extra: 1
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(12, "feet"),
  5745. default: true
  5746. },
  5747. {
  5748. name: "Macro",
  5749. height: math.unit(300, "feet")
  5750. },
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  5755. {
  5756. frontCat: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(180, "lbs"),
  5759. name: "Front (Cat)",
  5760. image: {
  5761. source: "./media/characters/ravin-amulet/front-cat.svg"
  5762. }
  5763. },
  5764. frontCatAlt: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(180, "lbs"),
  5767. name: "Front (Alt, Cat)",
  5768. image: {
  5769. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5770. }
  5771. },
  5772. frontWerewolf: {
  5773. height: math.unit(6 * 1.2, "feet"),
  5774. weight: math.unit(225, "lbs"),
  5775. name: "Front (Werewolf)",
  5776. image: {
  5777. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5778. }
  5779. },
  5780. backWerewolf: {
  5781. height: math.unit(6 * 1.2, "feet"),
  5782. weight: math.unit(225, "lbs"),
  5783. name: "Back (Werewolf)",
  5784. image: {
  5785. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Nano",
  5792. height: math.unit(1, "micrometer")
  5793. },
  5794. {
  5795. name: "Micro",
  5796. height: math.unit(1, "inch")
  5797. },
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(6, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(60, "feet")
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(165, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/fluoresce/front.svg"
  5818. }
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(6, "cm")
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(5 + 7 / 12, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(56, "feet")
  5834. },
  5835. {
  5836. name: "Megamacro",
  5837. height: math.unit(1.9, "miles")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(9 + 6 / 12, "feet"),
  5846. weight: math.unit(523, "lbs"),
  5847. name: "Side",
  5848. image: {
  5849. source: "./media/characters/aurora/side.svg"
  5850. }
  5851. }
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(9 + 6 / 12, "feet")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(96, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Macro+",
  5865. height: math.unit(243, "feet")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(194, "cm"),
  5874. weight: math.unit(90, "kg"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/ranek/front.svg"
  5878. }
  5879. },
  5880. side: {
  5881. height: math.unit(194, "cm"),
  5882. weight: math.unit(90, "kg"),
  5883. name: "Side",
  5884. image: {
  5885. source: "./media/characters/ranek/side.svg"
  5886. }
  5887. },
  5888. back: {
  5889. height: math.unit(194, "cm"),
  5890. weight: math.unit(90, "kg"),
  5891. name: "Back",
  5892. image: {
  5893. source: "./media/characters/ranek/back.svg"
  5894. }
  5895. },
  5896. feral: {
  5897. height: math.unit(30, "cm"),
  5898. weight: math.unit(1.6, "lbs"),
  5899. name: "Feral",
  5900. image: {
  5901. source: "./media/characters/ranek/feral.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(194, "cm"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(100, "meters")
  5914. },
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(5 + 6 / 12, "feet"),
  5922. weight: math.unit(153, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/andrew-cooper/front.svg"
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Nano",
  5932. height: math.unit(1, "mm")
  5933. },
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(5 + 6 / 12, "feet"),
  5941. default: true
  5942. }
  5943. ]
  5944. ))
  5945. characterMakers.push(() => makeCharacter(
  5946. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  5947. {
  5948. front: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(180, "lbs"),
  5951. name: "Front",
  5952. image: {
  5953. source: "./media/characters/akane-sato/front.svg",
  5954. extra: 1219 / 1140
  5955. }
  5956. },
  5957. back: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(180, "lbs"),
  5960. name: "Back",
  5961. image: {
  5962. source: "./media/characters/akane-sato/back.svg",
  5963. extra: 1219 / 1170
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(2.5, "meters")
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(250, "meters"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Megamacro",
  5979. height: math.unit(25, "km")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(65, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/rook/front.svg",
  5992. extra: 960/950
  5993. }
  5994. }
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(8.8, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(88, "feet"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Megamacro",
  6008. height: math.unit(8, "miles")
  6009. },
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6014. {
  6015. front: {
  6016. height: math.unit(12 + 2 / 12, "feet"),
  6017. weight: math.unit(808, "lbs"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/prodigy/front.svg"
  6021. }
  6022. }
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(12 + 2 / 12, "feet"),
  6028. default: true
  6029. },
  6030. {
  6031. name: "Macro",
  6032. height: math.unit(143, "feet")
  6033. },
  6034. {
  6035. name: "Macro+",
  6036. height: math.unit(400, "feet")
  6037. },
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6042. {
  6043. front: {
  6044. height: math.unit(6, "feet"),
  6045. weight: math.unit(225, "lbs"),
  6046. name: "Front",
  6047. image: {
  6048. source: "./media/characters/daniel/front.svg"
  6049. }
  6050. },
  6051. leaning: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(225, "lbs"),
  6054. name: "Leaning",
  6055. image: {
  6056. source: "./media/characters/daniel/leaning.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Macro",
  6063. height: math.unit(1000, "feet"),
  6064. default: true
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(88, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/chiros/front.svg",
  6077. extra: 306 / 226
  6078. }
  6079. },
  6080. side: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(88, "lbs"),
  6083. name: "Side",
  6084. image: {
  6085. source: "./media/characters/chiros/side.svg",
  6086. extra: 306 / 226
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(6, "cm"),
  6094. default: true
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(100, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/selka/front.svg",
  6107. extra: 947 / 887
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(5, "cm"),
  6115. default: true
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(8 + 3 / 12, "feet"),
  6124. weight: math.unit(424, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/verin/front.svg",
  6128. extra: 1845 / 1550
  6129. }
  6130. },
  6131. frontArmored: {
  6132. height: math.unit(8 + 3 / 12, "feet"),
  6133. weight: math.unit(424, "lbs"),
  6134. name: "Front (Armored)",
  6135. image: {
  6136. source: "./media/characters/verin/front-armor.svg",
  6137. extra: 1845 / 1550,
  6138. bottom: 0.01
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(8 + 3 / 12, "feet"),
  6143. weight: math.unit(424, "lbs"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/verin/back.svg",
  6147. bottom: 0.1,
  6148. extra: 1
  6149. }
  6150. },
  6151. foot: {
  6152. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6153. name: "Foot",
  6154. image: {
  6155. source: "./media/characters/verin/foot.svg"
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(8 + 3 / 12, "feet")
  6163. },
  6164. {
  6165. name: "Minimacro",
  6166. height: math.unit(21, "feet"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(626, "feet")
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6177. {
  6178. front: {
  6179. height: math.unit(2.718, "meters"),
  6180. weight: math.unit(150, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/sovrim-terraquian/front.svg"
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(2.718, "meters"),
  6188. weight: math.unit(150, "lbs"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/sovrim-terraquian/back.svg"
  6192. }
  6193. }
  6194. },
  6195. [
  6196. {
  6197. name: "Micro",
  6198. height: math.unit(2, "inches")
  6199. },
  6200. {
  6201. name: "Small",
  6202. height: math.unit(1, "meter")
  6203. },
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(Math.E, "meters"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Macro",
  6211. height: math.unit(20, "meters")
  6212. },
  6213. {
  6214. name: "Macro+",
  6215. height: math.unit(400, "meters")
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(7, "feet"),
  6224. weight: math.unit(489, "lbs"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/reece-silvermane/front.svg",
  6228. bottom: 0.02,
  6229. extra: 1
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(1.5, "miles"),
  6237. default: true
  6238. },
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(78, "kg"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/kane/front.svg",
  6250. extra: 978 / 899
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(2.1, "m"),
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(1, "km"),
  6262. default: true
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(200, "kg"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/tegon/front.svg",
  6275. bottom: 0.01,
  6276. extra: 1
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(1, "inch")
  6284. },
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(6 + 3 / 12, "feet"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(300, "feet")
  6293. },
  6294. {
  6295. name: "Megamacro",
  6296. height: math.unit(69, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6302. {
  6303. side: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(2304, "lbs"),
  6306. name: "Side",
  6307. image: {
  6308. source: "./media/characters/arcturax/side.svg",
  6309. extra: 790 / 376,
  6310. bottom: 0.01
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Micro",
  6317. height: math.unit(2, "inch")
  6318. },
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(6, "feet")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(39, "feet"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Megamacro",
  6330. height: math.unit(7, "miles")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(6, "feet"),
  6339. weight: math.unit(50, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/sentri/front.svg",
  6343. extra: 1750 / 1570,
  6344. bottom: 0.025
  6345. }
  6346. },
  6347. frontAlt: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(50, "lbs"),
  6350. name: "Front (Alt)",
  6351. image: {
  6352. source: "./media/characters/sentri/front-alt.svg",
  6353. extra: 1750 / 1570,
  6354. bottom: 0.025
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(15, "feet"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(2500, "feet")
  6367. }
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(5 + 8 / 12, "feet"),
  6375. weight: math.unit(130, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/corvin/front.svg",
  6379. extra: 1803 / 1629
  6380. }
  6381. },
  6382. frontShirt: {
  6383. height: math.unit(5 + 8 / 12, "feet"),
  6384. weight: math.unit(130, "lbs"),
  6385. name: "Front (Shirt)",
  6386. image: {
  6387. source: "./media/characters/corvin/front-shirt.svg",
  6388. extra: 1803 / 1629
  6389. }
  6390. },
  6391. frontPoncho: {
  6392. height: math.unit(5 + 8 / 12, "feet"),
  6393. weight: math.unit(130, "lbs"),
  6394. name: "Front (Poncho)",
  6395. image: {
  6396. source: "./media/characters/corvin/front-poncho.svg",
  6397. extra: 1803 / 1629
  6398. }
  6399. },
  6400. side: {
  6401. height: math.unit(5 + 8 / 12, "feet"),
  6402. weight: math.unit(130, "lbs"),
  6403. name: "Side",
  6404. image: {
  6405. source: "./media/characters/corvin/side.svg",
  6406. extra: 1012 / 945
  6407. }
  6408. },
  6409. back: {
  6410. height: math.unit(5 + 8 / 12, "feet"),
  6411. weight: math.unit(130, "lbs"),
  6412. name: "Back",
  6413. image: {
  6414. source: "./media/characters/corvin/back.svg",
  6415. extra: 1803 / 1629
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Micro",
  6422. height: math.unit(3, "inches")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5 + 8 / 12, "feet")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(300, "feet"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(500, "miles")
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(135, "lbs"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/q/front.svg",
  6448. extra: 854 / 752,
  6449. bottom: 0.005
  6450. }
  6451. },
  6452. back: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(130, "lbs"),
  6455. name: "Back",
  6456. image: {
  6457. source: "./media/characters/q/back.svg",
  6458. extra: 854 / 752
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(90, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Extra Macro",
  6470. height: math.unit(300, "feet"),
  6471. },
  6472. {
  6473. name: "BIG WALF",
  6474. height: math.unit(750, "feet"),
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(150, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/carley/front.svg",
  6487. extra: 3927 / 3540,
  6488. bottom: 0.03
  6489. }
  6490. }
  6491. },
  6492. [
  6493. {
  6494. name: "Normal",
  6495. height: math.unit(6 + 3 / 12, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(185, "feet"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Megamacro",
  6504. height: math.unit(8, "miles"),
  6505. },
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(3, "feet"),
  6513. weight: math.unit(28, "lbs"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/citrine/front.svg"
  6517. }
  6518. }
  6519. },
  6520. [
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(3, "feet"),
  6524. default: true
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  6530. {
  6531. front: {
  6532. height: math.unit(14, "feet"),
  6533. weight: math.unit(1450, "kg"),
  6534. capacity: math.unit(15, "people"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/aura-starwind/front.svg",
  6538. extra: 1455 / 1335
  6539. }
  6540. },
  6541. side: {
  6542. height: math.unit(14, "feet"),
  6543. weight: math.unit(1450, "kg"),
  6544. capacity: math.unit(15, "people"),
  6545. name: "Side",
  6546. image: {
  6547. source: "./media/characters/aura-starwind/side.svg",
  6548. extra: 1654 / 1497
  6549. }
  6550. },
  6551. taur: {
  6552. height: math.unit(18, "feet"),
  6553. weight: math.unit(5500, "kg"),
  6554. capacity: math.unit(50, "people"),
  6555. name: "Taur",
  6556. image: {
  6557. source: "./media/characters/aura-starwind/taur.svg",
  6558. extra: 1760 / 1650
  6559. }
  6560. },
  6561. feral: {
  6562. height: math.unit(46, "feet"),
  6563. weight: math.unit(25000, "kg"),
  6564. capacity: math.unit(120, "people"),
  6565. name: "Feral",
  6566. image: {
  6567. source: "./media/characters/aura-starwind/feral.svg"
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(14, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(50, "meters")
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(5000, "meters")
  6584. },
  6585. {
  6586. name: "Gigamacro",
  6587. height: math.unit(100000, "kilometers")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(2 + 7 / 12, "feet"),
  6596. weight: math.unit(32, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/rivet/front.svg",
  6600. extra: 1716 / 1658,
  6601. bottom: 0.03
  6602. }
  6603. },
  6604. foot: {
  6605. height: math.unit(0.551, "feet"),
  6606. name: "Rivet's Foot",
  6607. image: {
  6608. source: "./media/characters/rivet/foot.svg"
  6609. },
  6610. rename: true
  6611. }
  6612. },
  6613. [
  6614. {
  6615. name: "Micro",
  6616. height: math.unit(1.5, "inches"),
  6617. },
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(2 + 7 / 12, "feet"),
  6621. default: true
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(85, "feet")
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(2.2, "km")
  6630. }
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(5 + 9 / 12, "feet"),
  6638. weight: math.unit(150, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/coffee/front.svg",
  6642. extra: 3666 / 3032,
  6643. bottom: 0.04
  6644. }
  6645. },
  6646. foot: {
  6647. height: math.unit(1.29, "feet"),
  6648. name: "Foot",
  6649. image: {
  6650. source: "./media/characters/coffee/foot.svg"
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(2, "inches"),
  6658. },
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(5 + 9 / 12, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(800, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(25, "miles")
  6671. }
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(200, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/chari-gal/front.svg",
  6683. extra: 1568 / 1385,
  6684. bottom: 0.047
  6685. }
  6686. },
  6687. gigantamax: {
  6688. height: math.unit(6 * 16, "feet"),
  6689. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6690. name: "Gigantamax",
  6691. image: {
  6692. source: "./media/characters/chari-gal/gigantamax.svg",
  6693. extra: 1124 / 888,
  6694. bottom: 0.03
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(5 + 7 / 12, "feet")
  6702. },
  6703. {
  6704. name: "Macro",
  6705. height: math.unit(200, "feet"),
  6706. default: true
  6707. }
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(150, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/nova/front.svg",
  6719. extra: 5000 / 4722,
  6720. bottom: 0.02
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Micro-",
  6727. height: math.unit(0.8, "inches")
  6728. },
  6729. {
  6730. name: "Micro",
  6731. height: math.unit(2, "inches"),
  6732. default: true
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(3 + 1 / 12, "feet"),
  6741. weight: math.unit(21.7, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/argent/front.svg",
  6745. extra: 1565 / 1416,
  6746. bottom: 0.01
  6747. }
  6748. }
  6749. },
  6750. [
  6751. {
  6752. name: "Micro",
  6753. height: math.unit(2, "inches")
  6754. },
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(3 + 1 / 12, "feet"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(120, "feet")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  6768. {
  6769. lamp: {
  6770. height: math.unit(7 * 1559 / 989, "feet"),
  6771. name: "Magic Lamp",
  6772. image: {
  6773. source: "./media/characters/mira-al-cul/lamp.svg",
  6774. extra: 1617 / 1559
  6775. }
  6776. },
  6777. front: {
  6778. height: math.unit(7, "feet"),
  6779. name: "Front",
  6780. image: {
  6781. source: "./media/characters/mira-al-cul/front.svg",
  6782. extra: 1044 / 990
  6783. }
  6784. },
  6785. },
  6786. [
  6787. {
  6788. name: "Heavily Restricted",
  6789. height: math.unit(7 * 1559 / 989, "feet")
  6790. },
  6791. {
  6792. name: "Freshly Freed",
  6793. height: math.unit(50 * 1559 / 989, "feet")
  6794. },
  6795. {
  6796. name: "World Encompassing",
  6797. height: math.unit(10000 * 1559 / 989, "miles")
  6798. },
  6799. {
  6800. name: "Galactic",
  6801. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6802. },
  6803. {
  6804. name: "Palmed Universe",
  6805. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Multiversal Matriarch",
  6810. height: math.unit(8.87e10, "yottameters")
  6811. },
  6812. {
  6813. name: "Void Mother",
  6814. height: math.unit(3.14e110, "yottaparsecs")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  6820. {
  6821. front: {
  6822. height: math.unit(17 + 1 / 12, "feet"),
  6823. weight: math.unit(476.2 * 5, "lbs"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/kuro-shi-uchū/front.svg",
  6827. extra: 2329 / 1835,
  6828. bottom: 0.02
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(2, "inches")
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(12, "meters")
  6840. },
  6841. {
  6842. name: "Planetary",
  6843. height: math.unit(0.00929, "AU"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Universal",
  6848. height: math.unit(20, "gigaparsecs")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(5 + 2 / 12, "feet"),
  6857. weight: math.unit(120, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/katherine/front.svg",
  6861. extra: 2075 / 1969
  6862. }
  6863. },
  6864. dress: {
  6865. height: math.unit(5 + 2 / 12, "feet"),
  6866. weight: math.unit(120, "lbs"),
  6867. name: "Dress",
  6868. image: {
  6869. source: "./media/characters/katherine/dress.svg",
  6870. extra: 2258 / 2064
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(1, "inches"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(5 + 2 / 12, "feet")
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(100, "meters")
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(80, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(7 + 8 / 12, "feet"),
  6899. weight: math.unit(250, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/yevis/front.svg",
  6903. extra: 1938 / 1755
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Mortal",
  6910. height: math.unit(7 + 8 / 12, "feet")
  6911. },
  6912. {
  6913. name: "Battle",
  6914. height: math.unit(25 + 11 / 12, "feet")
  6915. },
  6916. {
  6917. name: "Wrath",
  6918. height: math.unit(1654 + 11 / 12, "feet")
  6919. },
  6920. {
  6921. name: "Planet Destroyer",
  6922. height: math.unit(12000, "miles")
  6923. },
  6924. {
  6925. name: "Galaxy Conqueror",
  6926. height: math.unit(1.45, "zettameters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Universal War",
  6931. height: math.unit(184, "gigaparsecs")
  6932. },
  6933. {
  6934. name: "Eternity War",
  6935. height: math.unit(1.98e55, "yottaparsecs")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(5 + 8 / 12, "feet"),
  6944. weight: math.unit(63, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/xavier/front.svg",
  6948. extra: 944 / 883
  6949. }
  6950. },
  6951. frontStretch: {
  6952. height: math.unit(5 + 8 / 12, "feet"),
  6953. weight: math.unit(63, "kg"),
  6954. name: "Stretching",
  6955. image: {
  6956. source: "./media/characters/xavier/front-stretch.svg",
  6957. extra: 962 / 820
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(5 + 8 / 12, "feet")
  6965. },
  6966. {
  6967. name: "Macro",
  6968. height: math.unit(100, "meters"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "McLargeHuge",
  6973. height: math.unit(10, "miles")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(5 + 5 / 12, "feet"),
  6982. weight: math.unit(150, "lb"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/joshii/front.svg"
  6986. }
  6987. },
  6988. foot: {
  6989. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6990. name: "Foot",
  6991. image: {
  6992. source: "./media/characters/joshii/foot.svg"
  6993. }
  6994. },
  6995. },
  6996. [
  6997. {
  6998. name: "Micro",
  6999. height: math.unit(2, "inches")
  7000. },
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(5 + 5 / 12, "feet"),
  7004. default: true
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(785, "feet")
  7009. },
  7010. {
  7011. name: "Megamacro",
  7012. height: math.unit(24.5, "miles")
  7013. },
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(6, "feet"),
  7021. weight: math.unit(150, "lb"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/goddess-elizabeth/front.svg",
  7025. extra: 1800 / 1525,
  7026. bottom: 0.005
  7027. }
  7028. },
  7029. foot: {
  7030. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7031. name: "Foot",
  7032. image: {
  7033. source: "./media/characters/goddess-elizabeth/foot.svg"
  7034. }
  7035. },
  7036. mouth: {
  7037. height: math.unit(6, "feet"),
  7038. name: "Mouth",
  7039. image: {
  7040. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Micro",
  7047. height: math.unit(12, "feet")
  7048. },
  7049. {
  7050. name: "Normal",
  7051. height: math.unit(80, "miles"),
  7052. default: true
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(15000, "parsecs")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(5 + 9 / 12, "feet"),
  7065. weight: math.unit(144, "lb"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/kara/front.svg"
  7069. }
  7070. },
  7071. feet: {
  7072. height: math.unit(6 / 6.765, "feet"),
  7073. name: "Kara's Feet",
  7074. rename: true,
  7075. image: {
  7076. source: "./media/characters/kara/feet.svg"
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(5 + 9 / 12, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(174, "feet"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(18, "feet"),
  7097. weight: math.unit(4050, "lb"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/tyrone/front.svg",
  7101. extra: 2520 / 2402,
  7102. bottom: 0.025
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(18, "feet"),
  7110. default: true
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(300, "feet")
  7115. },
  7116. ]
  7117. ))
  7118. characterMakers.push(() => makeCharacter(
  7119. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7120. {
  7121. front: {
  7122. height: math.unit(7 + 8 / 12, "feet"),
  7123. weight: math.unit(120, "lb"),
  7124. name: "Front",
  7125. image: {
  7126. source: "./media/characters/danny/front.svg",
  7127. extra: 1490 / 1350
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(7 + 8 / 12, "feet"),
  7132. weight: math.unit(120, "lb"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/danny/back.svg",
  7136. extra: 1490 / 1350
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(7 + 8 / 12, "feet"),
  7144. default: true
  7145. },
  7146. ]
  7147. ))
  7148. characterMakers.push(() => makeCharacter(
  7149. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7150. {
  7151. front: {
  7152. height: math.unit(3.5, "inches"),
  7153. weight: math.unit(19, "grams"),
  7154. name: "Front",
  7155. image: {
  7156. source: "./media/characters/mallow/front.svg",
  7157. extra: 471 / 431
  7158. }
  7159. },
  7160. back: {
  7161. height: math.unit(3.5, "inches"),
  7162. weight: math.unit(19, "grams"),
  7163. name: "Back",
  7164. image: {
  7165. source: "./media/characters/mallow/back.svg",
  7166. extra: 471 / 431
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(3.5, "inches"),
  7174. default: true
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(9, "feet"),
  7183. weight: math.unit(230, "kg"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/starry-aqua/front.svg"
  7187. }
  7188. },
  7189. back: {
  7190. height: math.unit(9, "feet"),
  7191. weight: math.unit(230, "kg"),
  7192. name: "Back",
  7193. image: {
  7194. source: "./media/characters/starry-aqua/back.svg"
  7195. }
  7196. },
  7197. hand: {
  7198. height: math.unit(9 * 0.1168, "feet"),
  7199. name: "Hand",
  7200. image: {
  7201. source: "./media/characters/starry-aqua/hand.svg"
  7202. }
  7203. },
  7204. foot: {
  7205. height: math.unit(9 * 0.18, "feet"),
  7206. name: "Foot",
  7207. image: {
  7208. source: "./media/characters/starry-aqua/foot.svg"
  7209. }
  7210. }
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(3, "inches")
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(9, "feet")
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(300, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(3200, "feet")
  7229. }
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(230, "lb"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/luka/front.svg",
  7241. extra: 1,
  7242. bottom: 0.025
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(12 + 8 / 12, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Minimacro",
  7254. height: math.unit(20, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(250, "feet")
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(5, "miles")
  7263. },
  7264. {
  7265. name: "Gigamacro",
  7266. height: math.unit(8000, "miles")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(150, "lb"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/natalie-nightring/front.svg",
  7279. extra: 1,
  7280. bottom: 0.06
  7281. }
  7282. },
  7283. },
  7284. [
  7285. {
  7286. name: "Uh Oh",
  7287. height: math.unit(0.1, "mm")
  7288. },
  7289. {
  7290. name: "Small",
  7291. height: math.unit(3, "inches")
  7292. },
  7293. {
  7294. name: "Human Scale",
  7295. height: math.unit(6, "feet")
  7296. },
  7297. {
  7298. name: "Librarian",
  7299. height: math.unit(50, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Immense",
  7304. height: math.unit(200, "miles")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(180, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/danni-rosie/front.svg",
  7317. extra: 1260 / 1128,
  7318. bottom: 0.022
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(2, "inches"),
  7326. default: true
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(5 + 9 / 12, "feet"),
  7335. weight: math.unit(220, "lb"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/samantha-kruse/front.svg",
  7339. extra: (985 / 935),
  7340. bottom: 0.03
  7341. }
  7342. },
  7343. frontUndressed: {
  7344. height: math.unit(5 + 9 / 12, "feet"),
  7345. weight: math.unit(220, "lb"),
  7346. name: "Front (Undressed)",
  7347. image: {
  7348. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7349. extra: (973 / 923),
  7350. bottom: 0.025
  7351. }
  7352. },
  7353. fat: {
  7354. height: math.unit(5 + 9 / 12, "feet"),
  7355. weight: math.unit(900, "lb"),
  7356. name: "Front (Fat)",
  7357. image: {
  7358. source: "./media/characters/samantha-kruse/fat.svg",
  7359. extra: 2688 / 2561
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5 + 9 / 12, "feet"),
  7367. default: true
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7373. {
  7374. back: {
  7375. height: math.unit(5 + 4 / 12, "feet"),
  7376. weight: math.unit(4963, "lb"),
  7377. name: "Back",
  7378. image: {
  7379. source: "./media/characters/amelia-rosie/back.svg",
  7380. extra: 1113 / 963,
  7381. bottom: 0.01
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Level 0",
  7388. height: math.unit(5 + 4 / 12, "feet")
  7389. },
  7390. {
  7391. name: "Level 1",
  7392. height: math.unit(164597, "feet"),
  7393. default: true
  7394. },
  7395. {
  7396. name: "Level 2",
  7397. height: math.unit(956243, "miles")
  7398. },
  7399. {
  7400. name: "Level 3",
  7401. height: math.unit(29421709423, "miles")
  7402. },
  7403. {
  7404. name: "Level 4",
  7405. height: math.unit(154, "lightyears")
  7406. },
  7407. {
  7408. name: "Level 5",
  7409. height: math.unit(4738272, "lightyears")
  7410. },
  7411. {
  7412. name: "Level 6",
  7413. height: math.unit(145787152896, "lightyears")
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(5 + 11 / 12, "feet"),
  7422. weight: math.unit(65, "kg"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/rook-kitara/front.svg",
  7426. extra: 1347 / 1274,
  7427. bottom: 0.005
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Totally Unfair",
  7434. height: math.unit(1.8, "mm")
  7435. },
  7436. {
  7437. name: "Lap Rookie",
  7438. height: math.unit(1.4, "feet")
  7439. },
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(5 + 11 / 12, "feet"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "How Did This Happen",
  7447. height: math.unit(80, "miles")
  7448. }
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(7, "feet"),
  7456. weight: math.unit(300, "lb"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/pisces/front.svg",
  7460. extra: 2255 / 2115,
  7461. bottom: 0.03
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(7, "feet"),
  7466. weight: math.unit(300, "lb"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/pisces/back.svg",
  7470. extra: 2146 / 2055,
  7471. bottom: 0.04
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(7, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Swimming Pool",
  7483. height: math.unit(12.2, "meters")
  7484. },
  7485. {
  7486. name: "Olympic Swimming Pool",
  7487. height: math.unit(56.3, "meters")
  7488. },
  7489. {
  7490. name: "Lake Superior",
  7491. height: math.unit(93900, "meters")
  7492. },
  7493. {
  7494. name: "Mediterranean Sea",
  7495. height: math.unit(644457, "meters")
  7496. },
  7497. {
  7498. name: "World's Oceans",
  7499. height: math.unit(4567491, "meters")
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(2.3, "meters"),
  7508. weight: math.unit(120, "kg"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/zelas/front.svg"
  7512. }
  7513. },
  7514. side: {
  7515. height: math.unit(2.3, "meters"),
  7516. weight: math.unit(120, "kg"),
  7517. name: "Side",
  7518. image: {
  7519. source: "./media/characters/zelas/side.svg"
  7520. }
  7521. },
  7522. back: {
  7523. height: math.unit(2.3, "meters"),
  7524. weight: math.unit(120, "kg"),
  7525. name: "Back",
  7526. image: {
  7527. source: "./media/characters/zelas/back.svg"
  7528. }
  7529. },
  7530. foot: {
  7531. height: math.unit(1.116, "feet"),
  7532. name: "Foot",
  7533. image: {
  7534. source: "./media/characters/zelas/foot.svg"
  7535. }
  7536. },
  7537. },
  7538. [
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(2.3, "meters")
  7542. },
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(30, "meters"),
  7546. default: true
  7547. },
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(1, "inch"),
  7555. weight: math.unit(0.21, "grams"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/talbot/front.svg",
  7559. extra: 594 / 544
  7560. }
  7561. },
  7562. },
  7563. [
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(1, "inch"),
  7567. default: true
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  7573. {
  7574. front: {
  7575. height: math.unit(3 + 3 / 12, "feet"),
  7576. weight: math.unit(51.8, "lb"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/fliss/front.svg",
  7580. extra: 840 / 640
  7581. }
  7582. },
  7583. },
  7584. [
  7585. {
  7586. name: "Teeny Tiny",
  7587. height: math.unit(1, "mm")
  7588. },
  7589. {
  7590. name: "Small",
  7591. height: math.unit(1, "inch"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Standard Sylveon",
  7596. height: math.unit(3 + 3 / 12, "feet")
  7597. },
  7598. {
  7599. name: "Large Nuisance",
  7600. height: math.unit(33, "feet")
  7601. },
  7602. {
  7603. name: "City Filler",
  7604. height: math.unit(3000, "feet")
  7605. },
  7606. {
  7607. name: "New Horizon",
  7608. height: math.unit(6000, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(5, "cm"),
  7617. weight: math.unit(1.94, "g"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/fleta/front.svg",
  7621. extra: 835 / 803
  7622. }
  7623. },
  7624. back: {
  7625. height: math.unit(5, "cm"),
  7626. weight: math.unit(1.94, "g"),
  7627. name: "Back",
  7628. image: {
  7629. source: "./media/characters/fleta/back.svg",
  7630. extra: 835 / 803
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(5, "cm"),
  7638. default: true
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(225, "lb"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/dominic/front.svg",
  7651. extra: 1770 / 1620,
  7652. bottom: 0.025
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(6, "feet"),
  7657. weight: math.unit(225, "lb"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/dominic/back.svg",
  7661. extra: 1745 / 1620,
  7662. bottom: 0.065
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Nano",
  7669. height: math.unit(0.1, "mm")
  7670. },
  7671. {
  7672. name: "Micro-",
  7673. height: math.unit(1, "mm")
  7674. },
  7675. {
  7676. name: "Micro",
  7677. height: math.unit(4, "inches")
  7678. },
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(6 + 4 / 12, "feet"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(115, "feet")
  7687. },
  7688. {
  7689. name: "Macro+",
  7690. height: math.unit(955, "feet")
  7691. },
  7692. {
  7693. name: "Megamacro",
  7694. height: math.unit(8990, "feet")
  7695. },
  7696. {
  7697. name: "Gigmacro",
  7698. height: math.unit(9310, "miles")
  7699. },
  7700. {
  7701. name: "Teramacro",
  7702. height: math.unit(1567005010, "miles")
  7703. },
  7704. {
  7705. name: "Examacro",
  7706. height: math.unit(1425, "parsecs")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(400, "feet"),
  7715. weight: math.unit(44444444, "lb"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/major-colonel/front.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(400, "feet"),
  7723. weight: math.unit(44444444, "lb"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/major-colonel/back.svg"
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(400, "feet"),
  7734. default: true
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(120, "lb"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/axel-lycan/front.svg",
  7747. extra: 1,
  7748. bottom: 0.08
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(1, "km"),
  7756. default: true
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(5 + 9 / 12, "feet"),
  7765. weight: math.unit(175, "lb"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/vanrel-hyena/front.svg",
  7769. extra: 1086 / 1010,
  7770. bottom: 0.04
  7771. }
  7772. },
  7773. },
  7774. [
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(5 + 9 / 12, "feet"),
  7778. default: true
  7779. },
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(103, "lb"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/abbott-absol/front.svg",
  7791. extra: 2010 / 1842
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Megamicro",
  7798. height: math.unit(0.1, "mm")
  7799. },
  7800. {
  7801. name: "Micro",
  7802. height: math.unit(1, "inch")
  7803. },
  7804. {
  7805. name: "Normal",
  7806. height: math.unit(6, "feet"),
  7807. default: true
  7808. },
  7809. ]
  7810. ))
  7811. characterMakers.push(() => makeCharacter(
  7812. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  7813. {
  7814. front: {
  7815. height: math.unit(6, "feet"),
  7816. weight: math.unit(264, "lb"),
  7817. name: "Front",
  7818. image: {
  7819. source: "./media/characters/hector/front.svg",
  7820. extra: 2280 / 2130,
  7821. bottom: 0.07
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(12.25, "foot"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(160, "feet")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(6, "feet"),
  7842. weight: math.unit(150, "lb"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/sal/front.svg",
  7846. extra: 1846 / 1699,
  7847. bottom: 0.04
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Megamacro",
  7854. height: math.unit(10, "miles"),
  7855. default: true
  7856. },
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  7861. {
  7862. front: {
  7863. height: math.unit(3, "meters"),
  7864. weight: math.unit(450, "kg"),
  7865. name: "front",
  7866. image: {
  7867. source: "./media/characters/ranger/front.svg",
  7868. extra: 2401 / 2243,
  7869. bottom: 0.05
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(3, "meters"),
  7877. default: true
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(14, "feet"),
  7886. weight: math.unit(800, "kg"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/theresa/front.svg",
  7890. extra: 3575 / 3346,
  7891. bottom: 0.03
  7892. }
  7893. },
  7894. },
  7895. [
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(14, "feet"),
  7899. default: true
  7900. },
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  7905. {
  7906. front: {
  7907. height: math.unit(6, "feet"),
  7908. weight: math.unit(3, "kg"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/ine/front.svg",
  7912. extra: 678 / 539,
  7913. bottom: 0.023
  7914. }
  7915. },
  7916. },
  7917. [
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(2.265, "feet"),
  7921. default: true
  7922. },
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  7927. {
  7928. front: {
  7929. height: math.unit(5, "feet"),
  7930. weight: math.unit(30, "kg"),
  7931. name: "Front",
  7932. image: {
  7933. source: "./media/characters/vial/front.svg",
  7934. extra: 1365 / 1277,
  7935. bottom: 0.04
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(5, "feet"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  7949. {
  7950. side: {
  7951. height: math.unit(3.4, "meters"),
  7952. weight: math.unit(1000, "lb"),
  7953. name: "Side",
  7954. image: {
  7955. source: "./media/characters/rovoska/side.svg",
  7956. extra: 4403 / 1515
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(3.4, "meters"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(8, "feet"),
  7973. weight: math.unit(315, "lb"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/gunner-rotthbauer/front.svg"
  7977. }
  7978. },
  7979. back: {
  7980. height: math.unit(8, "feet"),
  7981. weight: math.unit(315, "lb"),
  7982. name: "Back",
  7983. image: {
  7984. source: "./media/characters/gunner-rotthbauer/back.svg"
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(3.5, "inches")
  7992. },
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(8, "feet"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(250, "feet")
  8001. },
  8002. {
  8003. name: "Megamacro",
  8004. height: math.unit(1, "AU")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(5 + 5 / 12, "feet"),
  8013. weight: math.unit(140, "lb"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/allatia/front.svg",
  8017. extra: 1227 / 1180,
  8018. bottom: 0.027
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(5 + 5 / 12, "feet")
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(250, "feet"),
  8030. default: true
  8031. },
  8032. {
  8033. name: "Megamacro",
  8034. height: math.unit(8, "miles")
  8035. }
  8036. ]
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(120, "lb"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/tene/front.svg",
  8047. extra: 1728 / 1578,
  8048. bottom: 0.022
  8049. }
  8050. },
  8051. stomping: {
  8052. height: math.unit(2.025, "meters"),
  8053. weight: math.unit(120, "lb"),
  8054. name: "Stomping",
  8055. image: {
  8056. source: "./media/characters/tene/stomping.svg",
  8057. extra: 938 / 873,
  8058. bottom: 0.01
  8059. }
  8060. },
  8061. sitting: {
  8062. height: math.unit(1, "meter"),
  8063. weight: math.unit(120, "lb"),
  8064. name: "Sitting",
  8065. image: {
  8066. source: "./media/characters/tene/sitting.svg",
  8067. extra: 437 / 415,
  8068. bottom: 0.1
  8069. }
  8070. },
  8071. feral: {
  8072. height: math.unit(3.9, "feet"),
  8073. weight: math.unit(250, "lb"),
  8074. name: "Feral",
  8075. image: {
  8076. source: "./media/characters/tene/feral.svg",
  8077. extra: 717 / 458,
  8078. bottom: 0.179
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Normal",
  8085. height: math.unit(6, "feet")
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(300, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Megamacro",
  8094. height: math.unit(5, "miles")
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8100. {
  8101. side: {
  8102. height: math.unit(6, "feet"),
  8103. name: "Side",
  8104. image: {
  8105. source: "./media/characters/evander/side.svg",
  8106. extra: 877 / 477
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(0.83, "meters"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(12, "feet"),
  8123. weight: math.unit(1000, "lb"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8127. extra: 1762 / 1611
  8128. }
  8129. },
  8130. back: {
  8131. height: math.unit(12, "feet"),
  8132. weight: math.unit(1000, "lb"),
  8133. name: "Back",
  8134. image: {
  8135. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8136. extra: 1762 / 1611
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(12, "feet"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Kaiju",
  8148. height: math.unit(150, "feet")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(150, "lb"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/zero-alurus/front.svg"
  8161. }
  8162. },
  8163. back: {
  8164. height: math.unit(6, "feet"),
  8165. weight: math.unit(150, "lb"),
  8166. name: "Back",
  8167. image: {
  8168. source: "./media/characters/zero-alurus/back.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(5 + 10 / 12, "feet")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(60, "feet"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Macro+",
  8184. height: math.unit(450, "feet")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(200, "lb"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/mega-shi/front.svg",
  8197. extra: 1279 / 1250,
  8198. bottom: 0.02
  8199. }
  8200. },
  8201. back: {
  8202. height: math.unit(6, "feet"),
  8203. weight: math.unit(200, "lb"),
  8204. name: "Back",
  8205. image: {
  8206. source: "./media/characters/mega-shi/back.svg",
  8207. extra: 1279 / 1250,
  8208. bottom: 0.02
  8209. }
  8210. },
  8211. },
  8212. [
  8213. {
  8214. name: "Micro",
  8215. height: math.unit(16 + 6 / 12, "feet")
  8216. },
  8217. {
  8218. name: "Third Dimension",
  8219. height: math.unit(40, "meters")
  8220. },
  8221. {
  8222. name: "Normal",
  8223. height: math.unit(660, "feet"),
  8224. default: true
  8225. },
  8226. {
  8227. name: "Megamacro",
  8228. height: math.unit(10, "miles")
  8229. },
  8230. {
  8231. name: "Planetary Launch",
  8232. height: math.unit(500, "miles")
  8233. },
  8234. {
  8235. name: "Interstellar",
  8236. height: math.unit(1e9, "miles")
  8237. },
  8238. {
  8239. name: "Leaving the Universe",
  8240. height: math.unit(1, "gigaparsec")
  8241. },
  8242. {
  8243. name: "Travelling Universes",
  8244. height: math.unit(30e15, "parsecs")
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(6, "feet"),
  8253. weight: math.unit(150, "lb"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/odyssey/front.svg",
  8257. extra: 1782 / 1582,
  8258. bottom: 0.01
  8259. }
  8260. },
  8261. side: {
  8262. height: math.unit(5.7, "feet"),
  8263. weight: math.unit(140, "lb"),
  8264. name: "Side",
  8265. image: {
  8266. source: "./media/characters/odyssey/side.svg",
  8267. extra: 6462 / 5700
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(5 + 4 / 12, "feet")
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(1, "km")
  8279. },
  8280. {
  8281. name: "Megamacro",
  8282. height: math.unit(3000, "km")
  8283. },
  8284. {
  8285. name: "Gigamacro",
  8286. height: math.unit(1, "AU"),
  8287. default: true
  8288. },
  8289. {
  8290. name: "Omniversal",
  8291. height: math.unit(100e14, "lightyears")
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(300, "lb"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/mekuto/front.svg",
  8304. extra: 921 / 832,
  8305. bottom: 0.03
  8306. }
  8307. },
  8308. hand: {
  8309. height: math.unit(6 / 10.24, "feet"),
  8310. name: "Hand",
  8311. image: {
  8312. source: "./media/characters/mekuto/hand.svg"
  8313. }
  8314. },
  8315. foot: {
  8316. height: math.unit(6 / 5.05, "feet"),
  8317. name: "Foot",
  8318. image: {
  8319. source: "./media/characters/mekuto/foot.svg"
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Minimicro",
  8326. height: math.unit(0.2, "inches")
  8327. },
  8328. {
  8329. name: "Micro",
  8330. height: math.unit(1.5, "inches")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(5 + 11 / 12, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Minimacro",
  8339. height: math.unit(17 + 9 / 12, "feet")
  8340. },
  8341. {
  8342. name: "Macro",
  8343. height: math.unit(177.5, "feet")
  8344. },
  8345. {
  8346. name: "Megamacro",
  8347. height: math.unit(152, "miles")
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6.5, "inches"),
  8356. weight: math.unit(13, "oz"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/dafydd-tomos/front.svg",
  8360. extra: 2990 / 2603,
  8361. bottom: 0.03
  8362. }
  8363. },
  8364. },
  8365. [
  8366. {
  8367. name: "Micro",
  8368. height: math.unit(6.5, "inches"),
  8369. default: true
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(150, "lb"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/splinter/front.svg",
  8382. extra: 2990 / 2882,
  8383. bottom: 0.04
  8384. }
  8385. },
  8386. back: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(150, "lb"),
  8389. name: "Back",
  8390. image: {
  8391. source: "./media/characters/splinter/back.svg",
  8392. extra: 2990 / 2882,
  8393. bottom: 0.04
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(6, "feet")
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(230, "meters"),
  8405. default: true
  8406. },
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(4 + 10 / 12, "feet"),
  8414. weight: math.unit(480, "lb"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/snow-gabumon/front.svg",
  8418. extra: 1140 / 963,
  8419. bottom: 0.058
  8420. }
  8421. },
  8422. back: {
  8423. height: math.unit(4 + 10 / 12, "feet"),
  8424. weight: math.unit(480, "lb"),
  8425. name: "Back",
  8426. image: {
  8427. source: "./media/characters/snow-gabumon/back.svg",
  8428. extra: 1115 / 962,
  8429. bottom: 0.041
  8430. }
  8431. },
  8432. frontUndresed: {
  8433. height: math.unit(4 + 10 / 12, "feet"),
  8434. weight: math.unit(480, "lb"),
  8435. name: "Front (Undressed)",
  8436. image: {
  8437. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8438. extra: 1061 / 960,
  8439. bottom: 0.045
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(1, "inch")
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(4 + 10 / 12, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(200, "feet")
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(120, "miles")
  8460. },
  8461. {
  8462. name: "Gigamacro",
  8463. height: math.unit(9800, "miles")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(1.7, "meters"),
  8472. weight: math.unit(140, "lb"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/moody/front.svg",
  8476. extra: 3226 / 3007,
  8477. bottom: 0.087
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Micro",
  8484. height: math.unit(1, "mm")
  8485. },
  8486. {
  8487. name: "Normal",
  8488. height: math.unit(1.7, "meters"),
  8489. default: true
  8490. },
  8491. {
  8492. name: "Macro",
  8493. height: math.unit(80, "meters")
  8494. },
  8495. {
  8496. name: "Macro+",
  8497. height: math.unit(500, "meters")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(150, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/zyas/front.svg",
  8510. extra: 1180 / 1120,
  8511. bottom: 0.045
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(10, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(500, "feet")
  8524. },
  8525. {
  8526. name: "Megamacro",
  8527. height: math.unit(5, "miles")
  8528. },
  8529. {
  8530. name: "Teramacro",
  8531. height: math.unit(150000, "miles")
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Cuon" },
  8537. {
  8538. front: {
  8539. height: math.unit(6, "feet"),
  8540. weight: math.unit(150, "lb"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/cuon/front.svg",
  8544. extra: 1390 / 1320,
  8545. bottom: 0.008
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(3, "inches")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(18 + 9 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(360, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(360, "miles")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Nyanuxk" },
  8571. {
  8572. front: {
  8573. height: math.unit(2.4, "meters"),
  8574. weight: math.unit(70, "kg"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/nyanuxk/front.svg",
  8578. extra: 1172 / 1084,
  8579. bottom: 0.065
  8580. }
  8581. },
  8582. side: {
  8583. height: math.unit(2.4, "meters"),
  8584. weight: math.unit(70, "kg"),
  8585. name: "Side",
  8586. image: {
  8587. source: "./media/characters/nyanuxk/side.svg",
  8588. extra: 1190 / 1132,
  8589. bottom: 0.007
  8590. }
  8591. },
  8592. back: {
  8593. height: math.unit(2.4, "meters"),
  8594. weight: math.unit(70, "kg"),
  8595. name: "Back",
  8596. image: {
  8597. source: "./media/characters/nyanuxk/back.svg",
  8598. extra: 1200 / 1141,
  8599. bottom: 0.015
  8600. }
  8601. },
  8602. foot: {
  8603. height: math.unit(0.52, "meters"),
  8604. name: "Foot",
  8605. image: {
  8606. source: "./media/characters/nyanuxk/foot.svg"
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Micro",
  8613. height: math.unit(2, "cm")
  8614. },
  8615. {
  8616. name: "Normal",
  8617. height: math.unit(2.4, "meters"),
  8618. default: true
  8619. },
  8620. {
  8621. name: "Smaller Macro",
  8622. height: math.unit(120, "meters")
  8623. },
  8624. {
  8625. name: "Bigger Macro",
  8626. height: math.unit(1.2, "km")
  8627. },
  8628. {
  8629. name: "Megamacro",
  8630. height: math.unit(15, "kilometers")
  8631. },
  8632. {
  8633. name: "Gigamacro",
  8634. height: math.unit(2000, "km")
  8635. },
  8636. {
  8637. name: "Teramacro",
  8638. height: math.unit(500000, "km")
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Ailbhe" },
  8644. {
  8645. side: {
  8646. height: math.unit(6, "feet"),
  8647. name: "Side",
  8648. image: {
  8649. source: "./media/characters/ailbhe/side.svg",
  8650. extra: 757 / 464,
  8651. bottom: 0.041
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(1.07, "meters"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Zevulfius" },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(120, "kg"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/zevulfius/front.svg",
  8672. extra: 965 / 903
  8673. }
  8674. },
  8675. side: {
  8676. height: math.unit(6, "feet"),
  8677. weight: math.unit(120, "kg"),
  8678. name: "Side",
  8679. image: {
  8680. source: "./media/characters/zevulfius/side.svg",
  8681. extra: 939 / 900
  8682. }
  8683. },
  8684. back: {
  8685. height: math.unit(6, "feet"),
  8686. weight: math.unit(120, "kg"),
  8687. name: "Back",
  8688. image: {
  8689. source: "./media/characters/zevulfius/back.svg",
  8690. extra: 918 / 854,
  8691. bottom: 0.005
  8692. }
  8693. },
  8694. foot: {
  8695. height: math.unit(6 / 3.72, "feet"),
  8696. name: "Foot",
  8697. image: {
  8698. source: "./media/characters/zevulfius/foot.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(750, "meters")
  8706. },
  8707. {
  8708. name: "Megamacro",
  8709. height: math.unit(20, "km"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Gigamacro",
  8714. height: math.unit(2000, "km")
  8715. },
  8716. {
  8717. name: "Teramacro",
  8718. height: math.unit(250000, "km")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Rikes" },
  8724. {
  8725. front: {
  8726. height: math.unit(100, "feet"),
  8727. weight: math.unit(350, "kg"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/rikes/front.svg",
  8731. extra: 1565 / 1483,
  8732. bottom: 0.017
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Macro",
  8739. height: math.unit(100, "feet"),
  8740. default: true
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Adam Silver-Mane" },
  8746. {
  8747. anthro: {
  8748. height: math.unit(8, "feet"),
  8749. weight: math.unit(120, "kg"),
  8750. name: "Anthro",
  8751. image: {
  8752. source: "./media/characters/adam-silver-mane/anthro.svg",
  8753. extra: 5743 / 5339,
  8754. bottom: 0.07
  8755. }
  8756. },
  8757. taur: {
  8758. height: math.unit(16, "feet"),
  8759. weight: math.unit(1500, "kg"),
  8760. name: "Taur",
  8761. image: {
  8762. source: "./media/characters/adam-silver-mane/taur.svg",
  8763. extra: 1713 / 1571,
  8764. bottom: 0.01
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(8, "feet")
  8772. },
  8773. {
  8774. name: "Minimacro",
  8775. height: math.unit(80, "feet")
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(800, "feet"),
  8780. default: true
  8781. },
  8782. {
  8783. name: "Megamacro",
  8784. height: math.unit(8000, "feet")
  8785. },
  8786. {
  8787. name: "Gigamacro",
  8788. height: math.unit(800, "miles")
  8789. },
  8790. {
  8791. name: "Teramacro",
  8792. height: math.unit(80000, "miles")
  8793. },
  8794. {
  8795. name: "Celestial",
  8796. height: math.unit(8e6, "miles")
  8797. },
  8798. {
  8799. name: "Star Dragon",
  8800. height: math.unit(800000, "parsecs")
  8801. },
  8802. {
  8803. name: "Godly",
  8804. height: math.unit(800, "teraparsecs")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Ky'owin" },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(150, "lb"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/ky'owin/front.svg",
  8817. extra: 3888 / 3068,
  8818. bottom: 0.015
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(6 + 8 / 12, "feet")
  8826. },
  8827. {
  8828. name: "Large",
  8829. height: math.unit(68, "feet")
  8830. },
  8831. {
  8832. name: "Macro",
  8833. height: math.unit(132, "feet")
  8834. },
  8835. {
  8836. name: "Macro+",
  8837. height: math.unit(340, "feet")
  8838. },
  8839. {
  8840. name: "Macro++",
  8841. height: math.unit(680, "feet"),
  8842. default: true
  8843. },
  8844. {
  8845. name: "Megamacro",
  8846. height: math.unit(1, "mile")
  8847. },
  8848. {
  8849. name: "Megamacro+",
  8850. height: math.unit(10, "miles")
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Mal" },
  8856. {
  8857. front: {
  8858. height: math.unit(4, "feet"),
  8859. weight: math.unit(50, "lb"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/mal/front.svg",
  8863. extra: 785 / 724,
  8864. bottom: 0.07
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(4, "inches")
  8872. },
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(4, "feet"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(200, "feet")
  8881. },
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Jordan Deware" },
  8886. {
  8887. front: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(150, "lb"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/jordan-deware/front.svg",
  8893. extra: 1191 / 1012
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Nano",
  8900. height: math.unit(0.01, "mm")
  8901. },
  8902. {
  8903. name: "Minimicro",
  8904. height: math.unit(1, "mm")
  8905. },
  8906. {
  8907. name: "Micro",
  8908. height: math.unit(0.5, "inches")
  8909. },
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(4, "feet"),
  8913. default: true
  8914. },
  8915. {
  8916. name: "Minimacro",
  8917. height: math.unit(40, "meters")
  8918. },
  8919. {
  8920. name: "Small Macro",
  8921. height: math.unit(400, "meters")
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(4, "miles")
  8926. },
  8927. {
  8928. name: "Megamacro",
  8929. height: math.unit(40, "miles")
  8930. },
  8931. {
  8932. name: "Megamacro+",
  8933. height: math.unit(400, "miles")
  8934. },
  8935. {
  8936. name: "Gigamacro",
  8937. height: math.unit(400000, "miles")
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Kimiko" },
  8943. {
  8944. side: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(150, "lb"),
  8947. name: "Side",
  8948. image: {
  8949. source: "./media/characters/kimiko/side.svg",
  8950. extra: 600 / 358
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(15, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(220, "feet")
  8963. },
  8964. {
  8965. name: "Macro+",
  8966. height: math.unit(1450, "feet")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(11500, "feet")
  8971. },
  8972. {
  8973. name: "Gigamacro",
  8974. height: math.unit(9500, "miles")
  8975. },
  8976. {
  8977. name: "Teramacro",
  8978. height: math.unit(2208005005, "miles")
  8979. },
  8980. {
  8981. name: "Examacro",
  8982. height: math.unit(2750, "parsecs")
  8983. },
  8984. {
  8985. name: "Zettamacro",
  8986. height: math.unit(101500, "parsecs")
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Andrew Sleepy" },
  8992. {
  8993. front: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(70, "kg"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/andrew-sleepy/front.svg"
  8999. }
  9000. },
  9001. side: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(70, "kg"),
  9004. name: "Side",
  9005. image: {
  9006. source: "./media/characters/andrew-sleepy/side.svg"
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(1, "mm"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Judio" },
  9020. {
  9021. front: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(150, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/judio/front.svg",
  9027. extra: 1258 / 1110
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(5 + 6 / 12, "feet")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(1000, "feet"),
  9039. default: true
  9040. },
  9041. {
  9042. name: "Megamacro",
  9043. height: math.unit(10, "miles")
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Nomaxice" },
  9049. {
  9050. front: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(68, "kg"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/nomaxice/front.svg",
  9056. extra: 1498 / 1073,
  9057. bottom: 0.075
  9058. }
  9059. },
  9060. foot: {
  9061. height: math.unit(1.1, "feet"),
  9062. name: "Foot",
  9063. image: {
  9064. source: "./media/characters/nomaxice/foot.svg"
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Micro",
  9071. height: math.unit(8, "cm")
  9072. },
  9073. {
  9074. name: "Norm",
  9075. height: math.unit(1.82, "m")
  9076. },
  9077. {
  9078. name: "Norm+",
  9079. height: math.unit(8.8, "feet")
  9080. },
  9081. {
  9082. name: "Big",
  9083. height: math.unit(8, "meters"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Macro",
  9088. height: math.unit(18, "meters")
  9089. },
  9090. {
  9091. name: "Macro+",
  9092. height: math.unit(88, "meters")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Dydros" },
  9098. {
  9099. front: {
  9100. height: math.unit(12, "feet"),
  9101. weight: math.unit(1.5, "tons"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/dydros/front.svg",
  9105. extra: 863 / 800,
  9106. bottom: 0.015
  9107. }
  9108. },
  9109. back: {
  9110. height: math.unit(12, "feet"),
  9111. weight: math.unit(1.5, "tons"),
  9112. name: "Back",
  9113. image: {
  9114. source: "./media/characters/dydros/back.svg",
  9115. extra: 900 / 843,
  9116. bottom: 0.005
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Normal",
  9123. height: math.unit(12, "feet"),
  9124. default: true
  9125. },
  9126. ]
  9127. ))
  9128. characterMakers.push(() => makeCharacter(
  9129. { name: "Riggi" },
  9130. {
  9131. front: {
  9132. height: math.unit(6, "feet"),
  9133. weight: math.unit(100, "kg"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/riggi/front.svg",
  9137. extra: 5787 / 5303
  9138. }
  9139. },
  9140. hyper: {
  9141. height: math.unit(6 * 5 / 3, "feet"),
  9142. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9143. name: "Hyper",
  9144. image: {
  9145. source: "./media/characters/riggi/hyper.svg",
  9146. extra: 3595 / 3485
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Small Macro",
  9153. height: math.unit(50, "feet")
  9154. },
  9155. {
  9156. name: "Default",
  9157. height: math.unit(200, "feet"),
  9158. default: true
  9159. },
  9160. {
  9161. name: "Loom",
  9162. height: math.unit(10000, "feet")
  9163. },
  9164. {
  9165. name: "Cruising Altitude",
  9166. height: math.unit(30000, "feet")
  9167. },
  9168. {
  9169. name: "Megamacro",
  9170. height: math.unit(100, "miles")
  9171. },
  9172. {
  9173. name: "Continent Sized",
  9174. height: math.unit(2800, "miles")
  9175. },
  9176. {
  9177. name: "Earth Sized",
  9178. height: math.unit(8000, "miles")
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Alexi" },
  9184. {
  9185. front: {
  9186. height: math.unit(6, "feet"),
  9187. weight: math.unit(250, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/alexi/front.svg",
  9191. extra: 3483 / 3291,
  9192. bottom: 0.04
  9193. }
  9194. },
  9195. back: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(250, "lb"),
  9198. name: "Back",
  9199. image: {
  9200. source: "./media/characters/alexi/back.svg",
  9201. extra: 3533 / 3356,
  9202. bottom: 0.021
  9203. }
  9204. },
  9205. frontTransforming: {
  9206. height: math.unit(8.58, "feet"),
  9207. weight: math.unit(1300, "lb"),
  9208. name: "Transforming",
  9209. image: {
  9210. source: "./media/characters/alexi/front-transforming.svg",
  9211. extra: 437 / 409,
  9212. bottom: 19/458.66
  9213. }
  9214. },
  9215. frontTransformed: {
  9216. height: math.unit(12.5, "feet"),
  9217. weight: math.unit(4000, "lb"),
  9218. name: "Transformed",
  9219. image: {
  9220. source: "./media/characters/alexi/front-transformed.svg",
  9221. extra: 639 / 614,
  9222. bottom: 30.55/671
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(3, "meters"),
  9230. default: true
  9231. },
  9232. {
  9233. name: "Minimacro",
  9234. height: math.unit(30, "meters")
  9235. },
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(500, "meters")
  9239. },
  9240. {
  9241. name: "Megamacro",
  9242. height: math.unit(9000, "km")
  9243. },
  9244. {
  9245. name: "Teramacro",
  9246. height: math.unit(384000, "km")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Kayroo" },
  9252. {
  9253. front: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(150, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/kayroo/front.svg",
  9259. extra: 1153 / 1038,
  9260. bottom: 0.06
  9261. }
  9262. },
  9263. foot: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(150, "lb"),
  9266. name: "Foot",
  9267. image: {
  9268. source: "./media/characters/kayroo/foot.svg"
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(8, "feet"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Minimacro",
  9280. height: math.unit(250, "feet")
  9281. },
  9282. {
  9283. name: "Macro",
  9284. height: math.unit(2800, "feet")
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(5200, "feet")
  9289. },
  9290. {
  9291. name: "Gigamacro",
  9292. height: math.unit(27000, "feet")
  9293. },
  9294. {
  9295. name: "Omega",
  9296. height: math.unit(45000, "feet")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Rhys" },
  9302. {
  9303. front: {
  9304. height: math.unit(18, "feet"),
  9305. weight: math.unit(5800, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/rhys/front.svg",
  9309. extra: 3386 / 3090,
  9310. bottom: 0.07
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(18, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Working Size",
  9322. height: math.unit(200, "feet")
  9323. },
  9324. {
  9325. name: "Demolition Size",
  9326. height: math.unit(2000, "feet")
  9327. },
  9328. {
  9329. name: "Maximum Licensed Size",
  9330. height: math.unit(5, "miles")
  9331. },
  9332. {
  9333. name: "Maximum Observed Size",
  9334. height: math.unit(10, "yottameters")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Toto" },
  9340. {
  9341. front: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(250, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/toto/front.svg",
  9347. extra: 527 / 479,
  9348. bottom: 0.05
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Micro",
  9355. height: math.unit(3, "feet")
  9356. },
  9357. {
  9358. name: "Normal",
  9359. height: math.unit(10, "feet")
  9360. },
  9361. {
  9362. name: "Macro",
  9363. height: math.unit(150, "feet"),
  9364. default: true
  9365. },
  9366. {
  9367. name: "Megamacro",
  9368. height: math.unit(1200, "feet")
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "King" },
  9374. {
  9375. back: {
  9376. height: math.unit(6, "feet"),
  9377. weight: math.unit(150, "lb"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/king/back.svg"
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Micro",
  9387. height: math.unit(2, "inches")
  9388. },
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(8, "feet")
  9392. },
  9393. {
  9394. name: "Macro",
  9395. height: math.unit(200, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Megamacro",
  9400. height: math.unit(50, "miles")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Cordite" },
  9406. {
  9407. anthro: {
  9408. height: math.unit(6 + 5 / 12, "feet"),
  9409. weight: math.unit(280, "lb"),
  9410. name: "Anthro",
  9411. image: {
  9412. source: "./media/characters/cordite/anthro.svg",
  9413. extra: 1986 / 1905,
  9414. bottom: 0.025
  9415. }
  9416. },
  9417. feral: {
  9418. height: math.unit(2, "feet"),
  9419. weight: math.unit(90, "lb"),
  9420. name: "Feral",
  9421. image: {
  9422. source: "./media/characters/cordite/feral.svg",
  9423. extra: 1260 / 755,
  9424. bottom: 0.05
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(6 + 5 / 12, "feet"),
  9432. default: true
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Pianostrong" },
  9438. {
  9439. front: {
  9440. height: math.unit(6, "feet"),
  9441. weight: math.unit(150, "lb"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/pianostrong/front.svg",
  9445. extra: 6577 / 6254,
  9446. bottom: 0.02
  9447. }
  9448. },
  9449. side: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(150, "lb"),
  9452. name: "Side",
  9453. image: {
  9454. source: "./media/characters/pianostrong/side.svg",
  9455. extra: 6106 / 5730
  9456. }
  9457. },
  9458. back: {
  9459. height: math.unit(6, "feet"),
  9460. weight: math.unit(150, "lb"),
  9461. name: "Back",
  9462. image: {
  9463. source: "./media/characters/pianostrong/back.svg",
  9464. extra: 6085 / 5733,
  9465. bottom: 0.01
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Macro",
  9472. height: math.unit(100, "feet")
  9473. },
  9474. {
  9475. name: "Macro+",
  9476. height: math.unit(300, "feet"),
  9477. default: true
  9478. },
  9479. {
  9480. name: "Macro++",
  9481. height: math.unit(1000, "feet")
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Kona" },
  9487. {
  9488. front: {
  9489. height: math.unit(6, "feet"),
  9490. weight: math.unit(150, "lb"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/kona/front.svg",
  9494. extra: 2960 / 2629,
  9495. bottom: 0.005
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(11 + 8 / 12, "feet")
  9503. },
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(850, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Macro+",
  9511. height: math.unit(1.5, "km"),
  9512. default: true
  9513. },
  9514. {
  9515. name: "Megamacro",
  9516. height: math.unit(80, "miles")
  9517. },
  9518. {
  9519. name: "Gigamacro",
  9520. height: math.unit(3500, "miles")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Levi" },
  9526. {
  9527. side: {
  9528. height: math.unit(1.9, "meters"),
  9529. weight: math.unit(326, "kg"),
  9530. name: "Side",
  9531. image: {
  9532. source: "./media/characters/levi/side.svg",
  9533. extra: 1704 / 1334,
  9534. bottom: 0.02
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(1.9, "meters"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(20, "meters")
  9547. },
  9548. {
  9549. name: "Macro+",
  9550. height: math.unit(200, "meters")
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(2, "km")
  9555. },
  9556. {
  9557. name: "Megamacro+",
  9558. height: math.unit(20, "km")
  9559. },
  9560. {
  9561. name: "Gigamacro",
  9562. height: math.unit(2500, "km")
  9563. },
  9564. {
  9565. name: "Gigamacro+",
  9566. height: math.unit(120000, "km")
  9567. },
  9568. {
  9569. name: "Teramacro",
  9570. height: math.unit(7.77e6, "km")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "BMC" },
  9576. {
  9577. front: {
  9578. height: math.unit(6 + 4 / 12, "feet"),
  9579. weight: math.unit(188, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/bmc/front.svg",
  9583. extra: 1067 / 1022,
  9584. bottom: 0.047
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Human-sized",
  9591. height: math.unit(6 + 4 / 12, "feet")
  9592. },
  9593. {
  9594. name: "Small",
  9595. height: math.unit(250, "feet")
  9596. },
  9597. {
  9598. name: "Normal",
  9599. height: math.unit(1250, "feet"),
  9600. default: true
  9601. },
  9602. {
  9603. name: "Good Day",
  9604. height: math.unit(88, "miles")
  9605. },
  9606. {
  9607. name: "Largest Measured Size",
  9608. height: math.unit(11.2e6, "lightyears")
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Sven the Kaiju" },
  9614. {
  9615. front: {
  9616. height: math.unit(20, "feet"),
  9617. weight: math.unit(2016, "kg"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/sven-the-kaiju/front.svg",
  9621. extra: 1479 / 1449,
  9622. bottom: 0.05
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Fairy",
  9629. height: math.unit(6, "inches")
  9630. },
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(20, "feet"),
  9634. default: true
  9635. },
  9636. {
  9637. name: "Rampage",
  9638. height: math.unit(200, "feet")
  9639. },
  9640. {
  9641. name: "Archfey Forest Guardian",
  9642. height: math.unit(1, "mile")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Marik" },
  9648. {
  9649. front: {
  9650. height: math.unit(4, "meters"),
  9651. weight: math.unit(2, "tons"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/marik/front.svg",
  9655. extra: 1057 / 1003,
  9656. bottom: 0.08
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(4, "meters"),
  9664. default: true
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(20, "meters")
  9669. },
  9670. {
  9671. name: "Megamacro",
  9672. height: math.unit(50, "km")
  9673. },
  9674. {
  9675. name: "Gigamacro",
  9676. height: math.unit(100, "km")
  9677. },
  9678. {
  9679. name: "Alpha Macro",
  9680. height: math.unit(7.88e7, "yottameters")
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Mel" },
  9686. {
  9687. front: {
  9688. height: math.unit(6, "feet"),
  9689. weight: math.unit(110, "lb"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/mel/front.svg",
  9693. extra: 736 / 617,
  9694. bottom: 0.017
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Pico",
  9701. height: math.unit(3, "pm")
  9702. },
  9703. {
  9704. name: "Nano",
  9705. height: math.unit(3, "nm")
  9706. },
  9707. {
  9708. name: "Micro",
  9709. height: math.unit(0.3, "mm"),
  9710. default: true
  9711. },
  9712. {
  9713. name: "Micro+",
  9714. height: math.unit(3, "mm")
  9715. },
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(5 + 10.5 / 12, "feet")
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Lykonous" },
  9724. {
  9725. kaiju: {
  9726. height: math.unit(1.75, "meters"),
  9727. weight: math.unit(55, "kg"),
  9728. name: "Kaiju",
  9729. image: {
  9730. source: "./media/characters/lykonous/kaiju.svg",
  9731. extra: 1055 / 946,
  9732. bottom: 0.135
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(2.5, "meters"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Kaiju Dragon",
  9744. height: math.unit(60, "meters")
  9745. },
  9746. {
  9747. name: "Mega Kaiju",
  9748. height: math.unit(120, "km")
  9749. },
  9750. {
  9751. name: "Giga Kaiju",
  9752. height: math.unit(200, "megameters")
  9753. },
  9754. {
  9755. name: "Terra Kaiju",
  9756. height: math.unit(400, "gigameters")
  9757. },
  9758. {
  9759. name: "Kaiju Dragon God",
  9760. height: math.unit(13000, "exaparsecs")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Blü" },
  9766. {
  9767. front: {
  9768. height: math.unit(6, "feet"),
  9769. weight: math.unit(150, "lb"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/blü/front.svg",
  9773. extra: 1883 / 1564,
  9774. bottom: 0.031
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(13, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Big Boi",
  9786. height: math.unit(150, "meters")
  9787. },
  9788. {
  9789. name: "Mini Stomper",
  9790. height: math.unit(300, "meters")
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(1000, "meters")
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(11000, "meters")
  9799. },
  9800. {
  9801. name: "Gigamacro",
  9802. height: math.unit(11000, "km")
  9803. },
  9804. {
  9805. name: "Teramacro",
  9806. height: math.unit(420000, "km")
  9807. },
  9808. {
  9809. name: "Examacro",
  9810. height: math.unit(120, "parsecs")
  9811. },
  9812. {
  9813. name: "God Tho",
  9814. height: math.unit(98000000000, "parsecs")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Scales" },
  9820. {
  9821. taurFront: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(200, "lb"),
  9824. name: "Taur (Front)",
  9825. image: {
  9826. source: "./media/characters/scales/taur-front.svg",
  9827. extra: 1,
  9828. bottom: 0.05
  9829. }
  9830. },
  9831. taurBack: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(200, "lb"),
  9834. name: "Taur (Back)",
  9835. image: {
  9836. source: "./media/characters/scales/taur-back.svg",
  9837. extra: 1,
  9838. bottom: 0.08
  9839. }
  9840. },
  9841. anthro: {
  9842. height: math.unit(6 * 7 / 12, "feet"),
  9843. weight: math.unit(100, "lb"),
  9844. name: "Anthro",
  9845. image: {
  9846. source: "./media/characters/scales/anthro.svg",
  9847. extra: 1,
  9848. bottom: 0.06
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(12, "feet"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Koragos" },
  9862. {
  9863. front: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(150, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/koragos/front.svg",
  9869. extra: 841 / 794,
  9870. bottom: 0.035
  9871. }
  9872. },
  9873. back: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Back",
  9877. image: {
  9878. source: "./media/characters/koragos/back.svg",
  9879. extra: 841 / 810,
  9880. bottom: 0.022
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(6 + 11 / 12, "feet"),
  9888. default: true
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(490, "feet")
  9893. },
  9894. {
  9895. name: "Megamacro",
  9896. height: math.unit(10, "miles")
  9897. },
  9898. {
  9899. name: "Gigamacro",
  9900. height: math.unit(50, "miles")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Xylrem" },
  9906. {
  9907. front: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(250, "lb"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/xylrem/front.svg",
  9913. extra: 3323 / 3050,
  9914. bottom: 0.065
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(4, "feet")
  9922. },
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(16, "feet"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(2720, "feet")
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(25000, "miles")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Ikideru" },
  9940. {
  9941. front: {
  9942. height: math.unit(8, "feet"),
  9943. weight: math.unit(250, "kg"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/ikideru/front.svg",
  9947. extra: 930 / 870,
  9948. bottom: 0.087
  9949. }
  9950. },
  9951. back: {
  9952. height: math.unit(8, "feet"),
  9953. weight: math.unit(250, "kg"),
  9954. name: "Back",
  9955. image: {
  9956. source: "./media/characters/ikideru/back.svg",
  9957. extra: 919 / 852,
  9958. bottom: 0.055
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Rare",
  9965. height: math.unit(8, "feet"),
  9966. default: true
  9967. },
  9968. {
  9969. name: "Playful Loom",
  9970. height: math.unit(80, "feet")
  9971. },
  9972. {
  9973. name: "City Leaner",
  9974. height: math.unit(230, "feet")
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(2500, "feet")
  9979. },
  9980. {
  9981. name: "Gigamacro",
  9982. height: math.unit(26400, "feet")
  9983. },
  9984. {
  9985. name: "Tectonic Shifter",
  9986. height: math.unit(1.7, "megameters")
  9987. },
  9988. {
  9989. name: "Planet Carer",
  9990. height: math.unit(21, "megameters")
  9991. },
  9992. {
  9993. name: "God",
  9994. height: math.unit(11157.22, "parsecs")
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Neo" },
  10000. {
  10001. front: {
  10002. height: math.unit(6, "feet"),
  10003. weight: math.unit(120, "lb"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/neo/front.svg"
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(2, "inches"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Human Size",
  10018. height: math.unit(5 + 8 / 12, "feet")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Chauncey (Chantz)" },
  10024. {
  10025. front: {
  10026. height: math.unit(13 + 10 / 12, "feet"),
  10027. weight: math.unit(5320, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/chauncey-chantz/front.svg",
  10031. extra: 1587 / 1435,
  10032. bottom: 0.02
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(13 + 10 / 12, "feet"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Macro",
  10044. height: math.unit(45, "feet")
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(250, "miles")
  10049. },
  10050. {
  10051. name: "Planetary",
  10052. height: math.unit(10000, "miles")
  10053. },
  10054. {
  10055. name: "Galactic",
  10056. height: math.unit(40000, "parsecs")
  10057. },
  10058. {
  10059. name: "Universal",
  10060. height: math.unit(1, "yottameter")
  10061. },
  10062. ]
  10063. ))
  10064. characterMakers.push(() => makeCharacter(
  10065. { name: "Epifox" },
  10066. {
  10067. front: {
  10068. height: math.unit(6, "feet"),
  10069. weight: math.unit(150, "lb"),
  10070. name: "Front",
  10071. image: {
  10072. source: "./media/characters/epifox/front.svg",
  10073. extra: 1,
  10074. bottom: 0.075
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Micro",
  10081. height: math.unit(6, "inches")
  10082. },
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(12, "feet"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(3810, "feet")
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(500, "miles")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Colin T." },
  10100. {
  10101. front: {
  10102. height: math.unit(1.8796, "m"),
  10103. weight: math.unit(230, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/colin-t/front.svg",
  10107. extra: 1272 / 1193,
  10108. bottom: 0.07
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Micro",
  10115. height: math.unit(0.571, "meters")
  10116. },
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(1.8796, "meters"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Tall",
  10124. height: math.unit(4, "meters")
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(67.241, "meters")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(371.856, "meters")
  10133. },
  10134. {
  10135. name: "Planetary",
  10136. height: math.unit(12631.5689, "km")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Matvei" },
  10142. {
  10143. front: {
  10144. height: math.unit(1.85, "meters"),
  10145. weight: math.unit(80, "kg"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/matvei/front.svg",
  10149. extra: 614 / 594,
  10150. bottom: 0.01
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(1.85, "meters"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Quincy" },
  10164. {
  10165. front: {
  10166. height: math.unit(5 + 9 / 12, "feet"),
  10167. weight: math.unit(70, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/quincy/front.svg",
  10171. extra: 3041 / 2751
  10172. }
  10173. },
  10174. back: {
  10175. height: math.unit(5 + 9 / 12, "feet"),
  10176. weight: math.unit(70, "lb"),
  10177. name: "Back",
  10178. image: {
  10179. source: "./media/characters/quincy/back.svg",
  10180. extra: 3041 / 2751
  10181. }
  10182. },
  10183. flying: {
  10184. height: math.unit(5 + 4 / 12, "feet"),
  10185. weight: math.unit(70, "lb"),
  10186. name: "Flying",
  10187. image: {
  10188. source: "./media/characters/quincy/flying.svg",
  10189. extra: 1044 / 930
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Micro",
  10196. height: math.unit(3, "cm")
  10197. },
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(5 + 9 / 12, "feet")
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(200, "meters"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Megamacro",
  10209. height: math.unit(1000, "meters")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Vanrel" },
  10215. {
  10216. front: {
  10217. height: math.unit(4 + 7 / 12, "feet"),
  10218. weight: math.unit(150, "lb"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/vanrel/front.svg",
  10222. extra: 1,
  10223. bottom: 0.02
  10224. }
  10225. },
  10226. elemental: {
  10227. height: math.unit(3, "feet"),
  10228. weight: math.unit(150, "lb"),
  10229. name: "Elemental",
  10230. image: {
  10231. source: "./media/characters/vanrel/elemental.svg",
  10232. extra: 192.3/162.8,
  10233. bottom: 1.79/194.17
  10234. }
  10235. },
  10236. side: {
  10237. height: math.unit(4 + 7 / 12, "feet"),
  10238. weight: math.unit(150, "lb"),
  10239. name: "Side",
  10240. image: {
  10241. source: "./media/characters/vanrel/side.svg",
  10242. extra: 1,
  10243. bottom: 0.025
  10244. }
  10245. },
  10246. tome: {
  10247. height: math.unit(1.35, "feet"),
  10248. weight: math.unit(10, "lb"),
  10249. name: "Vanrel's Tome",
  10250. rename: true,
  10251. image: {
  10252. source: "./media/characters/vanrel/tome.svg"
  10253. }
  10254. },
  10255. beans: {
  10256. height: math.unit(0.89, "feet"),
  10257. name: "Beans",
  10258. image: {
  10259. source: "./media/characters/vanrel/beans.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(4 + 7 / 12, "feet"),
  10267. default: true
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Kuiper Vanrel" },
  10273. {
  10274. front: {
  10275. height: math.unit(7 + 5 / 12, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/kuiper-vanrel/front.svg",
  10280. extra: 1118 / 1068,
  10281. bottom: 0.09
  10282. }
  10283. },
  10284. foot: {
  10285. height: math.unit(0.55, "meters"),
  10286. name: "Foot",
  10287. image: {
  10288. source: "./media/characters/kuiper-vanrel/foot.svg",
  10289. }
  10290. },
  10291. battle: {
  10292. height: math.unit(6.824, "feet"),
  10293. weight: math.unit(150, "lb"),
  10294. name: "Battle",
  10295. image: {
  10296. source: "./media/characters/kuiper-vanrel/battle.svg",
  10297. extra: 1466/1327,
  10298. bottom: 29/1492.5
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(7 + 5 / 12, "feet"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Keset Vanrel" },
  10312. {
  10313. front: {
  10314. height: math.unit(8 + 5 / 12, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/keset-vanrel/front.svg",
  10319. extra: 1150 / 1084,
  10320. bottom: 0.05
  10321. }
  10322. },
  10323. hand: {
  10324. height: math.unit(0.6, "meters"),
  10325. name: "Hand",
  10326. image: {
  10327. source: "./media/characters/keset-vanrel/hand.svg"
  10328. }
  10329. },
  10330. foot: {
  10331. height: math.unit(0.94978, "meters"),
  10332. name: "Foot",
  10333. image: {
  10334. source: "./media/characters/keset-vanrel/foot.svg"
  10335. }
  10336. },
  10337. battle: {
  10338. height: math.unit(7.408, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Battle",
  10341. image: {
  10342. source: "./media/characters/keset-vanrel/battle.svg",
  10343. extra: 1890/1386,
  10344. bottom: 73.28/1970
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(8 + 5 / 12, "feet"),
  10352. default: true
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Neos" },
  10358. {
  10359. front: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(150, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/neos/front.svg",
  10365. extra: 1696 / 992,
  10366. bottom: 0.14
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(54, "cm"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(100, "m")
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(10, "km")
  10383. },
  10384. {
  10385. name: "Megamacro+",
  10386. height: math.unit(100, "km")
  10387. },
  10388. {
  10389. name: "Gigamacro",
  10390. height: math.unit(100, "Mm")
  10391. },
  10392. {
  10393. name: "Teramacro",
  10394. height: math.unit(100, "Gm")
  10395. },
  10396. {
  10397. name: "Examacro",
  10398. height: math.unit(100, "Em")
  10399. },
  10400. {
  10401. name: "Godly",
  10402. height: math.unit(10000, "Ym")
  10403. },
  10404. {
  10405. name: "Beyond Godly",
  10406. height: math.unit(10000000, "Ym")
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Sammy Mouse" },
  10412. {
  10413. feminine: {
  10414. height: math.unit(5, "feet"),
  10415. weight: math.unit(100, "lb"),
  10416. name: "Feminine",
  10417. image: {
  10418. source: "./media/characters/sammy-mouse/feminine.svg",
  10419. extra: 2526 / 2425,
  10420. bottom: 0.123
  10421. }
  10422. },
  10423. masculine: {
  10424. height: math.unit(5, "feet"),
  10425. weight: math.unit(100, "lb"),
  10426. name: "Masculine",
  10427. image: {
  10428. source: "./media/characters/sammy-mouse/masculine.svg",
  10429. extra: 2526 / 2425,
  10430. bottom: 0.123
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Micro",
  10437. height: math.unit(5, "inches")
  10438. },
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(5, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Macro",
  10446. height: math.unit(60, "feet")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Kole" },
  10452. {
  10453. front: {
  10454. height: math.unit(4, "feet"),
  10455. weight: math.unit(50, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/kole/front.svg",
  10459. extra: 1423 / 1303,
  10460. bottom: 0.025
  10461. }
  10462. },
  10463. back: {
  10464. height: math.unit(4, "feet"),
  10465. weight: math.unit(50, "lb"),
  10466. name: "Back",
  10467. image: {
  10468. source: "./media/characters/kole/back.svg",
  10469. extra: 1426 / 1280,
  10470. bottom: 0.02
  10471. }
  10472. },
  10473. },
  10474. [
  10475. {
  10476. name: "Normal",
  10477. height: math.unit(4, "feet"),
  10478. default: true
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Rufran" },
  10484. {
  10485. front: {
  10486. height: math.unit(2 + 6 / 12, "feet"),
  10487. weight: math.unit(20, "lb"),
  10488. name: "Front",
  10489. image: {
  10490. source: "./media/characters/rufran/front.svg",
  10491. extra: 2041 / 1839,
  10492. bottom: 0.055
  10493. }
  10494. },
  10495. back: {
  10496. height: math.unit(2 + 6 / 12, "feet"),
  10497. weight: math.unit(20, "lb"),
  10498. name: "Back",
  10499. image: {
  10500. source: "./media/characters/rufran/back.svg",
  10501. extra: 2054 / 1839,
  10502. bottom: 0.01
  10503. }
  10504. },
  10505. hand: {
  10506. height: math.unit(0.2166, "meters"),
  10507. name: "Hand",
  10508. image: {
  10509. source: "./media/characters/rufran/hand.svg"
  10510. }
  10511. },
  10512. foot: {
  10513. height: math.unit(0.185, "meters"),
  10514. name: "Foot",
  10515. image: {
  10516. source: "./media/characters/rufran/foot.svg"
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Micro",
  10523. height: math.unit(1, "inch")
  10524. },
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(2 + 6 / 12, "feet"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Big",
  10532. height: math.unit(60, "feet")
  10533. },
  10534. {
  10535. name: "Macro",
  10536. height: math.unit(325, "feet")
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Chip" },
  10542. {
  10543. front: {
  10544. height: math.unit(0.3, "meters"),
  10545. weight: math.unit(3.5, "kg"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/chip/front.svg",
  10549. extra: 748 / 674
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Micro",
  10556. height: math.unit(1, "inch"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Torvid" },
  10563. {
  10564. side: {
  10565. height: math.unit(2.3, "meters"),
  10566. weight: math.unit(3500, "lb"),
  10567. name: "Side",
  10568. image: {
  10569. source: "./media/characters/torvid/side.svg",
  10570. extra: 1972 / 722,
  10571. bottom: 0.035
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(2.3, "meters"),
  10579. default: true
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Susan" },
  10585. {
  10586. front: {
  10587. height: math.unit(2, "meters"),
  10588. weight: math.unit(150.5, "kg"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/susan/front.svg",
  10592. extra: 693 / 635,
  10593. bottom: 0.05
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Megamacro",
  10600. height: math.unit(505, "miles"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Raindrops" },
  10607. {
  10608. front: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(150, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/raindrops/front.svg",
  10614. extra: 2655 / 2461,
  10615. bottom: 0.02
  10616. }
  10617. },
  10618. back: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(150, "lb"),
  10621. name: "Back",
  10622. image: {
  10623. source: "./media/characters/raindrops/back.svg",
  10624. extra: 2574 / 2400,
  10625. bottom: 0.03
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Micro",
  10632. height: math.unit(6, "inches")
  10633. },
  10634. {
  10635. name: "Normal",
  10636. height: math.unit(6 + 2 / 12, "feet")
  10637. },
  10638. {
  10639. name: "Macro",
  10640. height: math.unit(131, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Megamacro",
  10645. height: math.unit(15, "miles")
  10646. },
  10647. {
  10648. name: "Gigamacro",
  10649. height: math.unit(4000, "miles")
  10650. },
  10651. {
  10652. name: "Teramacro",
  10653. height: math.unit(315000, "miles")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Tezwa" },
  10659. {
  10660. front: {
  10661. height: math.unit(2.794, "meters"),
  10662. weight: math.unit(325, "kg"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/tezwa/front.svg",
  10666. extra: 2083 / 1906,
  10667. bottom: 0.031
  10668. }
  10669. },
  10670. foot: {
  10671. height: math.unit(0.687, "meters"),
  10672. name: "Foot",
  10673. image: {
  10674. source: "./media/characters/tezwa/foot.svg"
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(9 + 2 / 12, "feet"),
  10682. default: true
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Typhus" },
  10688. {
  10689. front: {
  10690. height: math.unit(58, "feet"),
  10691. weight: math.unit(89000, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/typhus/front.svg",
  10695. extra: 816 / 800,
  10696. bottom: 0.065
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Macro",
  10703. height: math.unit(58, "feet"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Lyra Von Wulf" },
  10710. {
  10711. front: {
  10712. height: math.unit(12, "feet"),
  10713. weight: math.unit(6, "tonnes"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/lyra-von-wulf/front.svg",
  10717. extra: 1,
  10718. bottom: 0.10
  10719. }
  10720. },
  10721. frontMecha: {
  10722. height: math.unit(12, "feet"),
  10723. weight: math.unit(12, "tonnes"),
  10724. name: "Front (Mecha)",
  10725. image: {
  10726. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10727. extra: 1,
  10728. bottom: 0.042
  10729. }
  10730. },
  10731. maw: {
  10732. height: math.unit(2.2, "feet"),
  10733. name: "Maw",
  10734. image: {
  10735. source: "./media/characters/lyra-von-wulf/maw.svg"
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(12, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Classic",
  10747. height: math.unit(50, "feet")
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(500, "feet")
  10752. },
  10753. {
  10754. name: "Megamacro",
  10755. height: math.unit(1, "mile")
  10756. },
  10757. {
  10758. name: "Gigamacro",
  10759. height: math.unit(400, "miles")
  10760. },
  10761. {
  10762. name: "Teramacro",
  10763. height: math.unit(22000, "miles")
  10764. },
  10765. {
  10766. name: "Solarmacro",
  10767. height: math.unit(8600000, "miles")
  10768. },
  10769. {
  10770. name: "Galactic",
  10771. height: math.unit(1057000, "lightyears")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Dixon" },
  10777. {
  10778. front: {
  10779. height: math.unit(6 + 10 / 12, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/dixon/front.svg",
  10784. extra: 3361 / 3209,
  10785. bottom: 0.01
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(6 + 10 / 12, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Big",
  10797. height: math.unit(12, "meters")
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(500, "meters")
  10802. },
  10803. {
  10804. name: "Megamacro",
  10805. height: math.unit(2, "km")
  10806. },
  10807. ]
  10808. ))
  10809. characterMakers.push(() => makeCharacter(
  10810. { name: "Kauko" },
  10811. {
  10812. front: {
  10813. height: math.unit(185, "cm"),
  10814. weight: math.unit(68, "kg"),
  10815. name: "Front",
  10816. image: {
  10817. source: "./media/characters/kauko/front.svg",
  10818. extra: 1455 / 1421,
  10819. bottom: 0.03
  10820. }
  10821. },
  10822. back: {
  10823. height: math.unit(185, "cm"),
  10824. weight: math.unit(68, "kg"),
  10825. name: "Back",
  10826. image: {
  10827. source: "./media/characters/kauko/back.svg",
  10828. extra: 1455 / 1421,
  10829. bottom: 0.004
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(185, "cm"),
  10837. default: true
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Varg" },
  10843. {
  10844. front: {
  10845. height: math.unit(6, "feet"),
  10846. weight: math.unit(150, "kg"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/varg/front.svg",
  10850. extra: 1108 / 1018,
  10851. bottom: 0.0375
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(5, "meters")
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(200, "meters")
  10863. },
  10864. {
  10865. name: "Megamacro",
  10866. height: math.unit(20, "kilometers")
  10867. },
  10868. {
  10869. name: "True Size",
  10870. height: math.unit(211, "km"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Gigamacro",
  10875. height: math.unit(1000, "km")
  10876. },
  10877. {
  10878. name: "Gigamacro+",
  10879. height: math.unit(8000, "km")
  10880. },
  10881. {
  10882. name: "Teramacro",
  10883. height: math.unit(1000000, "km")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Dayza" },
  10889. {
  10890. front: {
  10891. height: math.unit(7 + 7 / 12, "feet"),
  10892. weight: math.unit(267, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/dayza/front.svg",
  10896. extra: 1262 / 1200,
  10897. bottom: 0.035
  10898. }
  10899. },
  10900. side: {
  10901. height: math.unit(7 + 7 / 12, "feet"),
  10902. weight: math.unit(267, "lb"),
  10903. name: "Side",
  10904. image: {
  10905. source: "./media/characters/dayza/side.svg",
  10906. extra: 1295 / 1245,
  10907. bottom: 0.05
  10908. }
  10909. },
  10910. back: {
  10911. height: math.unit(7 + 7 / 12, "feet"),
  10912. weight: math.unit(267, "lb"),
  10913. name: "Back",
  10914. image: {
  10915. source: "./media/characters/dayza/back.svg",
  10916. extra: 1241 / 1170
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(7 + 7 / 12, "feet"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(155, "feet")
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Xanthos" },
  10934. {
  10935. front: {
  10936. height: math.unit(6 + 5 / 12, "feet"),
  10937. weight: math.unit(160, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/xanthos/front.svg",
  10941. extra: 1,
  10942. bottom: 0.04
  10943. }
  10944. },
  10945. back: {
  10946. height: math.unit(6 + 5 / 12, "feet"),
  10947. weight: math.unit(160, "lb"),
  10948. name: "Back",
  10949. image: {
  10950. source: "./media/characters/xanthos/back.svg",
  10951. extra: 1,
  10952. bottom: 0.03
  10953. }
  10954. },
  10955. hand: {
  10956. height: math.unit(0.928, "feet"),
  10957. name: "Hand",
  10958. image: {
  10959. source: "./media/characters/xanthos/hand.svg"
  10960. }
  10961. },
  10962. foot: {
  10963. height: math.unit(1.286, "feet"),
  10964. name: "Foot",
  10965. image: {
  10966. source: "./media/characters/xanthos/foot.svg"
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(6 + 5 / 12, "feet"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Normal+",
  10978. height: math.unit(6, "meters")
  10979. },
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(40, "feet")
  10983. },
  10984. {
  10985. name: "Macro+",
  10986. height: math.unit(200, "meters")
  10987. },
  10988. {
  10989. name: "Megamacro",
  10990. height: math.unit(20, "km")
  10991. },
  10992. {
  10993. name: "Megamacro+",
  10994. height: math.unit(100, "km")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Grynn" },
  11000. {
  11001. front: {
  11002. height: math.unit(6 + 3 / 12, "feet"),
  11003. weight: math.unit(215, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/grynn/front.svg",
  11007. extra: 4627 / 4209,
  11008. bottom: 0.047
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(6, "inches")
  11016. },
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(6 + 3 / 12, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Big",
  11024. height: math.unit(104, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(944, "feet")
  11029. },
  11030. {
  11031. name: "Macro+",
  11032. height: math.unit(9480, "feet")
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(78752, "feet")
  11037. },
  11038. {
  11039. name: "Megamacro+",
  11040. height: math.unit(630128, "feet")
  11041. },
  11042. {
  11043. name: "Megamacro++",
  11044. height: math.unit(3150695, "feet")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Mocha Aura" },
  11050. {
  11051. front: {
  11052. height: math.unit(7 + 5 / 12, "feet"),
  11053. weight: math.unit(450, "lb"),
  11054. name: "Front",
  11055. image: {
  11056. source: "./media/characters/mocha-aura/front.svg",
  11057. extra: 1907 / 1817,
  11058. bottom: 0.04
  11059. }
  11060. },
  11061. back: {
  11062. height: math.unit(7 + 5 / 12, "feet"),
  11063. weight: math.unit(450, "lb"),
  11064. name: "Back",
  11065. image: {
  11066. source: "./media/characters/mocha-aura/back.svg",
  11067. extra: 1900 / 1825,
  11068. bottom: 0.045
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Nano",
  11075. height: math.unit(1, "nm")
  11076. },
  11077. {
  11078. name: "Megamicro",
  11079. height: math.unit(1, "mm")
  11080. },
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(3, "inches")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(7 + 5 / 12, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(30, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(3500, "feet")
  11097. },
  11098. {
  11099. name: "Teramacro",
  11100. height: math.unit(500000, "miles")
  11101. },
  11102. {
  11103. name: "Petamacro",
  11104. height: math.unit(50000000000000000, "parsecs")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Ilisha Devya" },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/ilisha-devya/front.svg",
  11117. extra: 1,
  11118. bottom: 0.175
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/ilisha-devya/back.svg",
  11127. extra: 1,
  11128. bottom: 0.015
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(500, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Megamacro",
  11140. height: math.unit(10, "miles")
  11141. },
  11142. {
  11143. name: "Gigamacro",
  11144. height: math.unit(100000, "miles")
  11145. },
  11146. {
  11147. name: "Examacro",
  11148. height: math.unit(1e9, "lightyears")
  11149. },
  11150. {
  11151. name: "Omniversal",
  11152. height: math.unit(1e33, "lightyears")
  11153. },
  11154. {
  11155. name: "Beyond Infinite",
  11156. height: math.unit(1e100, "lightyears")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Mira" },
  11162. {
  11163. Side: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Side",
  11167. image: {
  11168. source: "./media/characters/mira/side.svg",
  11169. extra: 900 / 799,
  11170. bottom: 0.02
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Human Size",
  11177. height: math.unit(6, "feet")
  11178. },
  11179. {
  11180. name: "Macro",
  11181. height: math.unit(100, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(10, "miles")
  11187. },
  11188. {
  11189. name: "Gigamacro",
  11190. height: math.unit(25000, "miles")
  11191. },
  11192. {
  11193. name: "Teramacro",
  11194. height: math.unit(300, "AU")
  11195. },
  11196. {
  11197. name: "Full Size",
  11198. height: math.unit(4.5e10, "lightyears")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Holly" },
  11204. {
  11205. front: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/holly/front.svg",
  11211. extra: 639 / 606
  11212. }
  11213. },
  11214. back: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Back",
  11218. image: {
  11219. source: "./media/characters/holly/back.svg",
  11220. extra: 623 / 598
  11221. }
  11222. },
  11223. frontWorking: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Front (Working)",
  11227. image: {
  11228. source: "./media/characters/holly/front-working.svg",
  11229. extra: 607 / 577,
  11230. bottom: 0.048
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(12 + 3 / 12, "feet"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Porter" },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/porter/front.svg",
  11251. extra: 1,
  11252. bottom: 0.01
  11253. }
  11254. },
  11255. frontRobes: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Front (Robes)",
  11259. image: {
  11260. source: "./media/characters/porter/front-robes.svg",
  11261. extra: 1.01,
  11262. bottom: 0.01
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(11 + 9 / 12, "feet"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Lucy" },
  11276. {
  11277. legendary: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Legendary",
  11281. image: {
  11282. source: "./media/characters/lucy/legendary.svg",
  11283. extra: 1355 / 1100,
  11284. bottom: 0.045
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Legendary",
  11291. height: math.unit(86882 * 2, "miles"),
  11292. default: true
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Drusilla" },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/drusilla/front.svg",
  11305. extra: 678 / 635,
  11306. bottom: 0.03
  11307. }
  11308. },
  11309. back: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Back",
  11313. image: {
  11314. source: "./media/characters/drusilla/back.svg",
  11315. extra: 678 / 635,
  11316. bottom: 0.005
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(100, "feet")
  11324. },
  11325. {
  11326. name: "Canon Height",
  11327. height: math.unit(2000, "feet"),
  11328. default: true
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Renard Thatch" },
  11334. {
  11335. front: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(180, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/renard-thatch/front.svg",
  11341. extra: 2411 / 2275,
  11342. bottom: 0.01
  11343. }
  11344. },
  11345. frontPosing: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(180, "lb"),
  11348. name: "Front (Posing)",
  11349. image: {
  11350. source: "./media/characters/renard-thatch/front-posing.svg",
  11351. extra: 2381 / 2261,
  11352. bottom: 0.01
  11353. }
  11354. },
  11355. back: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(180, "lb"),
  11358. name: "Back",
  11359. image: {
  11360. source: "./media/characters/renard-thatch/back.svg",
  11361. extra: 2428 / 2288
  11362. }
  11363. },
  11364. },
  11365. [
  11366. {
  11367. name: "Micro",
  11368. height: math.unit(3, "inches")
  11369. },
  11370. {
  11371. name: "Default",
  11372. height: math.unit(6, "feet"),
  11373. default: true
  11374. },
  11375. {
  11376. name: "Macro",
  11377. height: math.unit(75, "feet")
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Sekvra" },
  11383. {
  11384. front: {
  11385. height: math.unit(1450, "feet"),
  11386. weight: math.unit(1.21e6, "tons"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/sekvra/front.svg",
  11390. extra: 1,
  11391. bottom: 0.03
  11392. }
  11393. },
  11394. frontClothed: {
  11395. height: math.unit(1450, "feet"),
  11396. weight: math.unit(1.21e6, "tons"),
  11397. name: "Front (Clothed)",
  11398. image: {
  11399. source: "./media/characters/sekvra/front-clothed.svg",
  11400. extra: 1,
  11401. bottom: 0.03
  11402. }
  11403. },
  11404. side: {
  11405. height: math.unit(1450, "feet"),
  11406. weight: math.unit(1.21e6, "tons"),
  11407. name: "Side",
  11408. image: {
  11409. source: "./media/characters/sekvra/side.svg",
  11410. extra: 1,
  11411. bottom: 0.025
  11412. }
  11413. },
  11414. back: {
  11415. height: math.unit(1450, "feet"),
  11416. weight: math.unit(1.21e6, "tons"),
  11417. name: "Back",
  11418. image: {
  11419. source: "./media/characters/sekvra/back.svg",
  11420. extra: 1,
  11421. bottom: 0.005
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(1450, "feet"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(15000, "feet")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Carmine" },
  11439. {
  11440. front: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(150, "lb"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/carmine/front.svg",
  11446. extra: 1,
  11447. bottom: 0.035
  11448. }
  11449. },
  11450. frontArmor: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front (Armor)",
  11454. image: {
  11455. source: "./media/characters/carmine/front-armor.svg",
  11456. extra: 1,
  11457. bottom: 0.035
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Large",
  11464. height: math.unit(1, "mile")
  11465. },
  11466. {
  11467. name: "Huge",
  11468. height: math.unit(40, "miles"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Colossal",
  11473. height: math.unit(2500, "miles")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Elyssia" },
  11479. {
  11480. front: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(150, "lb"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/elyssia/front.svg",
  11486. extra: 2201 / 2035,
  11487. bottom: 0.05
  11488. }
  11489. },
  11490. frontClothed: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Front (Clothed)",
  11494. image: {
  11495. source: "./media/characters/elyssia/front-clothed.svg",
  11496. extra: 2201 / 2035,
  11497. bottom: 0.05
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/elyssia/back.svg",
  11506. extra: 2201 / 2035,
  11507. bottom: 0.013
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Smaller",
  11514. height: math.unit(150, "feet")
  11515. },
  11516. {
  11517. name: "Standard",
  11518. height: math.unit(1400, "feet"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Distracted",
  11523. height: math.unit(15000, "feet")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Geno Maxwell" },
  11529. {
  11530. front: {
  11531. height: math.unit(7 + 4 / 12, "feet"),
  11532. weight: math.unit(500, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/geno-maxwell/front.svg",
  11536. extra: 2207 / 2040,
  11537. bottom: 0.015
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(3, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(7 + 4 / 12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(220, "feet")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(11, "miles")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Regena Maxwell" },
  11563. {
  11564. front: {
  11565. height: math.unit(7 + 4 / 12, "feet"),
  11566. weight: math.unit(500, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/regena-maxwell/front.svg",
  11570. extra: 3115 / 2770,
  11571. bottom: 0.02
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Normal",
  11578. height: math.unit(7 + 4 / 12, "feet"),
  11579. default: true
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(220, "feet")
  11584. },
  11585. {
  11586. name: "Megamacro",
  11587. height: math.unit(11, "miles")
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "XGlidingDragonX" },
  11593. {
  11594. front: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(150, "lb"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11600. extra: 860 / 690,
  11601. bottom: 0.03
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(1.7, "meters"),
  11609. default: true
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Quilly" },
  11615. {
  11616. front: {
  11617. height: math.unit(6, "feet"),
  11618. weight: math.unit(150, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/quilly/front.svg",
  11622. extra: 890 / 776
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(404090, "miles"),
  11630. default: true
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Tempest" },
  11636. {
  11637. front: {
  11638. height: math.unit(7 + 8 / 12, "feet"),
  11639. weight: math.unit(350, "lb"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/tempest/front.svg",
  11643. extra: 1175 / 1086,
  11644. bottom: 0.02
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(7 + 8 / 12, "feet"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Rodger" },
  11658. {
  11659. side: {
  11660. height: math.unit(4 + 5 / 12, "feet"),
  11661. weight: math.unit(80, "lb"),
  11662. name: "Side",
  11663. image: {
  11664. source: "./media/characters/rodger/side.svg",
  11665. extra: 1235 / 1118
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Micro",
  11672. height: math.unit(1, "inch")
  11673. },
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(4 + 5 / 12, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(120, "feet")
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Danyel" },
  11687. {
  11688. front: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(150, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/danyel/front.svg",
  11694. extra: 1185 / 1123,
  11695. bottom: 0.05
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Shrunken",
  11702. height: math.unit(0.5, "mm")
  11703. },
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(1, "mm"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Upsized",
  11711. height: math.unit(5 + 5 / 12, "feet")
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Vivian Bijoux" },
  11717. {
  11718. front: {
  11719. height: math.unit(5 + 6 / 12, "feet"),
  11720. weight: math.unit(200, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/vivian-bijoux/front.svg",
  11724. extra: 1,
  11725. bottom: 0.072
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(5 + 6 / 12, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Bad Dream",
  11737. height: math.unit(500, "feet")
  11738. },
  11739. {
  11740. name: "Nightmare",
  11741. height: math.unit(500, "miles")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Zeta" },
  11747. {
  11748. front: {
  11749. height: math.unit(6 + 1 / 12, "feet"),
  11750. weight: math.unit(260, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/zeta/front.svg",
  11754. extra: 1968 / 1889,
  11755. bottom: 0.06
  11756. }
  11757. },
  11758. back: {
  11759. height: math.unit(6 + 1 / 12, "feet"),
  11760. weight: math.unit(260, "lb"),
  11761. name: "Back",
  11762. image: {
  11763. source: "./media/characters/zeta/back.svg",
  11764. extra: 1944 / 1858,
  11765. bottom: 0.03
  11766. }
  11767. },
  11768. hand: {
  11769. height: math.unit(1.112, "feet"),
  11770. name: "Hand",
  11771. image: {
  11772. source: "./media/characters/zeta/hand.svg"
  11773. }
  11774. },
  11775. foot: {
  11776. height: math.unit(1.48, "feet"),
  11777. name: "Foot",
  11778. image: {
  11779. source: "./media/characters/zeta/foot.svg"
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(6, "inches")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(6 + 1 / 12, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro",
  11795. height: math.unit(20, "feet")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Jamie Larsen" },
  11801. {
  11802. front: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/jamie-larsen/front.svg",
  11808. extra: 962 / 933,
  11809. bottom: 0.02
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(150, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/jamie-larsen/back.svg",
  11818. extra: 997 / 946
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(28 + 7 / 12, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Macro+",
  11830. height: math.unit(180, "feet")
  11831. },
  11832. {
  11833. name: "Megamacro",
  11834. height: math.unit(10, "miles")
  11835. },
  11836. {
  11837. name: "Gigamacro",
  11838. height: math.unit(200000, "miles")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Vance" },
  11844. {
  11845. front: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(120, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/vance/front.svg",
  11851. extra: 1980 / 1890,
  11852. bottom: 0.09
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(120, "lb"),
  11858. name: "Back",
  11859. image: {
  11860. source: "./media/characters/vance/back.svg",
  11861. extra: 2081 / 1994,
  11862. bottom: 0.014
  11863. }
  11864. },
  11865. hand: {
  11866. height: math.unit(0.88, "feet"),
  11867. name: "Hand",
  11868. image: {
  11869. source: "./media/characters/vance/hand.svg"
  11870. }
  11871. },
  11872. foot: {
  11873. height: math.unit(0.64, "feet"),
  11874. name: "Foot",
  11875. image: {
  11876. source: "./media/characters/vance/foot.svg"
  11877. }
  11878. },
  11879. },
  11880. [
  11881. {
  11882. name: "Small",
  11883. height: math.unit(90, "feet"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(100, "meters")
  11889. },
  11890. {
  11891. name: "Megamacro",
  11892. height: math.unit(15, "miles")
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Xochitl" },
  11898. {
  11899. front: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(180, "lb"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/xochitl/front.svg",
  11905. extra: 2297 / 2261,
  11906. bottom: 0.065
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(180, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/xochitl/back.svg",
  11915. extra: 2386 / 2354,
  11916. bottom: 0.01
  11917. }
  11918. },
  11919. foot: {
  11920. height: math.unit(6 / 5 * 1.15, "feet"),
  11921. weight: math.unit(150, "lb"),
  11922. name: "Foot",
  11923. image: {
  11924. source: "./media/characters/xochitl/foot.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(80, "feet")
  11932. },
  11933. {
  11934. name: "Macro+",
  11935. height: math.unit(400, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Gigamacro",
  11940. height: math.unit(80000, "miles")
  11941. },
  11942. {
  11943. name: "Gigamacro+",
  11944. height: math.unit(400000, "miles")
  11945. },
  11946. {
  11947. name: "Teramacro",
  11948. height: math.unit(300, "AU")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Vincent" },
  11954. {
  11955. front: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(150, "lb"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/vincent/front.svg",
  11961. extra: 1130 / 1080,
  11962. bottom: 0.055
  11963. }
  11964. },
  11965. beak: {
  11966. height: math.unit(6 * 0.1, "feet"),
  11967. name: "Beak",
  11968. image: {
  11969. source: "./media/characters/vincent/beak.svg"
  11970. }
  11971. },
  11972. hand: {
  11973. height: math.unit(6 * 0.85, "feet"),
  11974. weight: math.unit(150, "lb"),
  11975. name: "Hand",
  11976. image: {
  11977. source: "./media/characters/vincent/hand.svg"
  11978. }
  11979. },
  11980. foot: {
  11981. height: math.unit(6 * 0.19, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Foot",
  11984. image: {
  11985. source: "./media/characters/vincent/foot.svg"
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Base",
  11992. height: math.unit(6 + 5 / 12, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Macro",
  11997. height: math.unit(300, "feet")
  11998. },
  11999. {
  12000. name: "Megamacro",
  12001. height: math.unit(2, "miles")
  12002. },
  12003. {
  12004. name: "Gigamacro",
  12005. height: math.unit(1000, "miles")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Jay" },
  12011. {
  12012. front: {
  12013. height: math.unit(6 + 2 / 12, "feet"),
  12014. weight: math.unit(265, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/jay/front.svg",
  12018. extra: 1510 / 1430,
  12019. bottom: 0.042
  12020. }
  12021. },
  12022. back: {
  12023. height: math.unit(6 + 2 / 12, "feet"),
  12024. weight: math.unit(265, "lb"),
  12025. name: "Back",
  12026. image: {
  12027. source: "./media/characters/jay/back.svg",
  12028. extra: 1510 / 1430,
  12029. bottom: 0.025
  12030. }
  12031. },
  12032. clothed: {
  12033. height: math.unit(6 + 2 / 12, "feet"),
  12034. weight: math.unit(265, "lb"),
  12035. name: "Front (Clothed)",
  12036. image: {
  12037. source: "./media/characters/jay/clothed.svg",
  12038. extra: 744 / 699,
  12039. bottom: 0.043
  12040. }
  12041. },
  12042. head: {
  12043. height: math.unit(1.772, "feet"),
  12044. name: "Head",
  12045. image: {
  12046. source: "./media/characters/jay/head.svg"
  12047. }
  12048. },
  12049. sizeRay: {
  12050. height: math.unit(1.331, "feet"),
  12051. name: "Size Ray",
  12052. image: {
  12053. source: "./media/characters/jay/size-ray.svg"
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Micro",
  12060. height: math.unit(1, "inch")
  12061. },
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(6 + 2 / 12, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(1, "mile")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(100, "miles")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Coatl" },
  12079. {
  12080. front: {
  12081. height: math.unit(2, "meters"),
  12082. weight: math.unit(500, "kg"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/coatl/front.svg",
  12086. extra: 3948 / 3500,
  12087. bottom: 0.082
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(4, "meters")
  12095. },
  12096. {
  12097. name: "Macro",
  12098. height: math.unit(100, "meters"),
  12099. default: true
  12100. },
  12101. {
  12102. name: "Macro+",
  12103. height: math.unit(300, "meters")
  12104. },
  12105. {
  12106. name: "Megamacro",
  12107. height: math.unit(3, "gigameters")
  12108. },
  12109. {
  12110. name: "Megamacro+",
  12111. height: math.unit(300, "terameters")
  12112. },
  12113. {
  12114. name: "Megamacro++",
  12115. height: math.unit(3, "lightyears")
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Shiroryu" },
  12121. {
  12122. front: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(50, "kg"),
  12125. name: "front",
  12126. image: {
  12127. source: "./media/characters/shiroryu/front.svg",
  12128. extra: 1990 / 1935
  12129. }
  12130. },
  12131. },
  12132. [
  12133. {
  12134. name: "Mortal Mingling",
  12135. height: math.unit(3, "meters")
  12136. },
  12137. {
  12138. name: "Kaiju-ish",
  12139. height: math.unit(250, "meters")
  12140. },
  12141. {
  12142. name: "Somewhat Godly",
  12143. height: math.unit(400, "km"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Planetary",
  12148. height: math.unit(300, "megameters")
  12149. },
  12150. {
  12151. name: "Galaxy-dwarfing",
  12152. height: math.unit(450, "kiloparsecs")
  12153. },
  12154. {
  12155. name: "Universe Eater",
  12156. height: math.unit(150, "gigaparsecs")
  12157. },
  12158. {
  12159. name: "Almost Immeasurable",
  12160. height: math.unit(1.3e266, "yottaparsecs")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Umeko" },
  12166. {
  12167. front: {
  12168. height: math.unit(6, "feet"),
  12169. weight: math.unit(150, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/umeko/front.svg",
  12173. extra: 1,
  12174. bottom: 0.019
  12175. }
  12176. },
  12177. frontArmored: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(150, "lb"),
  12180. name: "Front (Armored)",
  12181. image: {
  12182. source: "./media/characters/umeko/front-armored.svg",
  12183. extra: 1,
  12184. bottom: 0.021
  12185. }
  12186. },
  12187. },
  12188. [
  12189. {
  12190. name: "Macro",
  12191. height: math.unit(220, "feet"),
  12192. default: true
  12193. },
  12194. {
  12195. name: "Guardian Dragon",
  12196. height: math.unit(50, "miles")
  12197. },
  12198. {
  12199. name: "Cosmic",
  12200. height: math.unit(800000, "miles")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Cassidy" },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/cassidy/front.svg",
  12213. extra: 1,
  12214. bottom: 0.043
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Canon Height",
  12221. height: math.unit(120, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Macro+",
  12226. height: math.unit(400, "feet")
  12227. },
  12228. {
  12229. name: "Macro++",
  12230. height: math.unit(4000, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(3, "miles")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Isaac" },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/isaac/front.svg",
  12247. extra: 896 / 815,
  12248. bottom: 0.11
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Human Size",
  12255. height: math.unit(8, "feet"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Macro",
  12260. height: math.unit(400, "feet")
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(50, "miles")
  12265. },
  12266. {
  12267. name: "Canon Height",
  12268. height: math.unit(200, "AU")
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Sleekit" },
  12274. {
  12275. front: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(72, "kg"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/sleekit/front.svg",
  12281. extra: 4693 / 4487,
  12282. bottom: 0.012
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Minimum Height",
  12289. height: math.unit(10, "meters")
  12290. },
  12291. {
  12292. name: "Smaller",
  12293. height: math.unit(25, "meters")
  12294. },
  12295. {
  12296. name: "Larger",
  12297. height: math.unit(38, "meters"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Maximum height",
  12302. height: math.unit(100, "meters")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Nillia" },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/nillia/front.svg",
  12315. extra: 2195 / 2037,
  12316. bottom: 0.005
  12317. }
  12318. },
  12319. back: {
  12320. height: math.unit(6, "feet"),
  12321. weight: math.unit(150, "lb"),
  12322. name: "Back",
  12323. image: {
  12324. source: "./media/characters/nillia/back.svg",
  12325. extra: 2195 / 2037,
  12326. bottom: 0.005
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Canon Height",
  12333. height: math.unit(489, "feet"),
  12334. default: true
  12335. }
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Mesmyriza" },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/mesmyriza/front.svg",
  12347. extra: 2067 / 1784,
  12348. bottom: 0.035
  12349. }
  12350. },
  12351. foot: {
  12352. height: math.unit(6 / (250 / 35), "feet"),
  12353. name: "Foot",
  12354. image: {
  12355. source: "./media/characters/mesmyriza/foot.svg"
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(457, "meters"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Megamacro",
  12367. height: math.unit(8, "megameters")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Saudade" },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(250, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/saudade/front.svg",
  12380. extra: 1172 / 1139,
  12381. bottom: 0.035
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Micro",
  12388. height: math.unit(3, "inches")
  12389. },
  12390. {
  12391. name: "Normal",
  12392. height: math.unit(6, "feet"),
  12393. default: true
  12394. },
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(50, "feet")
  12398. },
  12399. {
  12400. name: "Megamacro",
  12401. height: math.unit(2800, "feet")
  12402. },
  12403. ]
  12404. ))
  12405. characterMakers.push(() => makeCharacter(
  12406. { name: "Keireer" },
  12407. {
  12408. front: {
  12409. height: math.unit(5 + 4 / 12, "feet"),
  12410. weight: math.unit(100, "lb"),
  12411. name: "Front",
  12412. image: {
  12413. source: "./media/characters/keireer/front.svg",
  12414. extra: 716 / 666,
  12415. bottom: 0.05
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(5 + 4 / 12, "feet"),
  12423. default: true
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Mirja" },
  12429. {
  12430. front: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(90, "kg"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/mirja/front.svg",
  12436. extra: 1789 / 1683,
  12437. bottom: 0.05
  12438. }
  12439. },
  12440. frontDressed: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(90, "lb"),
  12443. name: "Front (Dressed)",
  12444. image: {
  12445. source: "./media/characters/mirja/front-dressed.svg",
  12446. extra: 1789 / 1683,
  12447. bottom: 0.05
  12448. }
  12449. },
  12450. back: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(90, "lb"),
  12453. name: "Back",
  12454. image: {
  12455. source: "./media/characters/mirja/back.svg",
  12456. extra: 953 / 917,
  12457. bottom: 0.017
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "\"Incognito\"",
  12464. height: math.unit(3, "meters")
  12465. },
  12466. {
  12467. name: "Strolling Size",
  12468. height: math.unit(15, "km")
  12469. },
  12470. {
  12471. name: "Larger Strolling Size",
  12472. height: math.unit(400, "km")
  12473. },
  12474. {
  12475. name: "Preferred Size",
  12476. height: math.unit(5000, "km")
  12477. },
  12478. {
  12479. name: "True Size",
  12480. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12481. default: true
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Nightraver" },
  12487. {
  12488. front: {
  12489. height: math.unit(15, "feet"),
  12490. weight: math.unit(880, "kg"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/nightraver/front.svg",
  12494. extra: 2444 / 2160,
  12495. bottom: 0.027
  12496. }
  12497. },
  12498. back: {
  12499. height: math.unit(15, "feet"),
  12500. weight: math.unit(880, "kg"),
  12501. name: "Back",
  12502. image: {
  12503. source: "./media/characters/nightraver/back.svg",
  12504. extra: 2309 / 2180,
  12505. bottom: 0.005
  12506. }
  12507. },
  12508. sole: {
  12509. height: math.unit(2.878, "feet"),
  12510. name: "Sole",
  12511. image: {
  12512. source: "./media/characters/nightraver/sole.svg"
  12513. }
  12514. },
  12515. foot: {
  12516. height: math.unit(2.285, "feet"),
  12517. name: "Foot",
  12518. image: {
  12519. source: "./media/characters/nightraver/foot.svg"
  12520. }
  12521. },
  12522. maw: {
  12523. height: math.unit(2.67, "feet"),
  12524. name: "Maw",
  12525. image: {
  12526. source: "./media/characters/nightraver/maw.svg"
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(1, "cm")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(15, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(300, "feet")
  12543. },
  12544. {
  12545. name: "Megamacro",
  12546. height: math.unit(300, "miles")
  12547. },
  12548. {
  12549. name: "Gigamacro",
  12550. height: math.unit(10000, "miles")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Arc" },
  12556. {
  12557. side: {
  12558. height: math.unit(2, "inches"),
  12559. weight: math.unit(5, "grams"),
  12560. name: "Side",
  12561. image: {
  12562. source: "./media/characters/arc/side.svg"
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Micro",
  12569. height: math.unit(2, "inches"),
  12570. default: true
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Nebula Shahar" },
  12576. {
  12577. front: {
  12578. height: math.unit(1.1938, "meters"),
  12579. weight: math.unit(54, "kg"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/nebula-shahar/front.svg",
  12583. extra: 1642 / 1436,
  12584. bottom: 0.06
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Megamicro",
  12591. height: math.unit(0.3, "mm")
  12592. },
  12593. {
  12594. name: "Micro",
  12595. height: math.unit(3, "cm")
  12596. },
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(138, "cm"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(30, "m")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Shayla" },
  12610. {
  12611. front: {
  12612. height: math.unit(5.24, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/shayla/front.svg",
  12617. extra: 1512 / 1414,
  12618. bottom: 0.01
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(5.24, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/shayla/back.svg",
  12627. extra: 1512 / 1414
  12628. }
  12629. },
  12630. hand: {
  12631. height: math.unit(0.7781496062992126, "feet"),
  12632. name: "Hand",
  12633. image: {
  12634. source: "./media/characters/shayla/hand.svg"
  12635. }
  12636. },
  12637. foot: {
  12638. height: math.unit(1.4206036745406823, "feet"),
  12639. name: "Foot",
  12640. image: {
  12641. source: "./media/characters/shayla/foot.svg"
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Micro",
  12648. height: math.unit(0.32, "feet")
  12649. },
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(5.24, "feet"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(492.12, "feet")
  12658. },
  12659. {
  12660. name: "Megamacro",
  12661. height: math.unit(186.41, "miles")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Pia Jr." },
  12667. {
  12668. front: {
  12669. height: math.unit(2.2, "m"),
  12670. weight: math.unit(120, "kg"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/pia-jr/front.svg",
  12674. extra: 1000 / 970,
  12675. bottom: 0.035
  12676. }
  12677. },
  12678. hand: {
  12679. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12680. name: "Hand",
  12681. image: {
  12682. source: "./media/characters/pia-jr/hand.svg"
  12683. }
  12684. },
  12685. paw: {
  12686. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12687. name: "Paw",
  12688. image: {
  12689. source: "./media/characters/pia-jr/paw.svg"
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(1.2, "cm")
  12697. },
  12698. {
  12699. name: "Normal",
  12700. height: math.unit(2.2, "m"),
  12701. default: true
  12702. },
  12703. {
  12704. name: "Macro",
  12705. height: math.unit(180, "m")
  12706. },
  12707. {
  12708. name: "Megamacro",
  12709. height: math.unit(420, "km")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Pia Sr." },
  12715. {
  12716. front: {
  12717. height: math.unit(2, "m"),
  12718. weight: math.unit(115, "kg"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/pia-sr/front.svg",
  12722. extra: 760 / 730,
  12723. bottom: 0.015
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(2, "m"),
  12728. weight: math.unit(115, "kg"),
  12729. name: "Back",
  12730. image: {
  12731. source: "./media/characters/pia-sr/back.svg",
  12732. extra: 760 / 730,
  12733. bottom: 0.01
  12734. }
  12735. },
  12736. hand: {
  12737. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12738. name: "Hand",
  12739. image: {
  12740. source: "./media/characters/pia-sr/hand.svg"
  12741. }
  12742. },
  12743. foot: {
  12744. height: math.unit(1.83, "feet"),
  12745. name: "Foot",
  12746. image: {
  12747. source: "./media/characters/pia-sr/foot.svg"
  12748. }
  12749. },
  12750. },
  12751. [
  12752. {
  12753. name: "Micro",
  12754. height: math.unit(88, "mm")
  12755. },
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(2, "m"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(200, "m")
  12764. },
  12765. {
  12766. name: "Megamacro",
  12767. height: math.unit(420, "km")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "KIBIBYTE" },
  12773. {
  12774. front: {
  12775. height: math.unit(8 + 2 / 12, "feet"),
  12776. weight: math.unit(300, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/kibibyte/front.svg",
  12780. extra: 2221 / 2098,
  12781. bottom: 0.04
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Normal",
  12788. height: math.unit(8 + 2 / 12, "feet"),
  12789. default: true
  12790. },
  12791. {
  12792. name: "Socialable Macro",
  12793. height: math.unit(50, "feet")
  12794. },
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(300, "feet")
  12798. },
  12799. {
  12800. name: "Megamacro",
  12801. height: math.unit(500, "miles")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Felix" },
  12807. {
  12808. front: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/felix/front.svg",
  12814. extra: 762 / 722,
  12815. bottom: 0.02
  12816. }
  12817. },
  12818. frontClothed: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "lb"),
  12821. name: "Front (Clothed)",
  12822. image: {
  12823. source: "./media/characters/felix/front-clothed.svg",
  12824. extra: 762 / 722,
  12825. bottom: 0.02
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(6 + 8 / 12, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(2600, "feet")
  12838. },
  12839. {
  12840. name: "Megamacro",
  12841. height: math.unit(450, "miles")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Tobo" },
  12847. {
  12848. front: {
  12849. height: math.unit(6 + 1 / 12, "feet"),
  12850. weight: math.unit(250, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/tobo/front.svg",
  12854. extra: 608 / 586,
  12855. bottom: 0.023
  12856. }
  12857. },
  12858. back: {
  12859. height: math.unit(6 + 1 / 12, "feet"),
  12860. weight: math.unit(250, "lb"),
  12861. name: "Back",
  12862. image: {
  12863. source: "./media/characters/tobo/back.svg",
  12864. extra: 608 / 586
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Nano",
  12871. height: math.unit(2, "nm")
  12872. },
  12873. {
  12874. name: "Megamicro",
  12875. height: math.unit(0.1, "mm")
  12876. },
  12877. {
  12878. name: "Micro",
  12879. height: math.unit(1, "inch"),
  12880. default: true
  12881. },
  12882. {
  12883. name: "Human-sized",
  12884. height: math.unit(6 + 1 / 12, "feet")
  12885. },
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(250, "feet")
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(75, "miles")
  12893. },
  12894. {
  12895. name: "Texas-sized",
  12896. height: math.unit(750, "miles")
  12897. },
  12898. {
  12899. name: "Teramacro",
  12900. height: math.unit(50000, "miles")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Danny Kapowsky" },
  12906. {
  12907. front: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(269, "lb"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/danny-kapowsky/front.svg",
  12913. extra: 766 / 736,
  12914. bottom: 0.044
  12915. }
  12916. },
  12917. back: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(269, "lb"),
  12920. name: "Back",
  12921. image: {
  12922. source: "./media/characters/danny-kapowsky/back.svg",
  12923. extra: 797 / 760,
  12924. bottom: 0.025
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Macro",
  12931. height: math.unit(150, "feet"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Macro+",
  12936. height: math.unit(200, "feet")
  12937. },
  12938. {
  12939. name: "Macro++",
  12940. height: math.unit(300, "feet")
  12941. },
  12942. {
  12943. name: "Macro+++",
  12944. height: math.unit(400, "feet")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Finn" },
  12950. {
  12951. side: {
  12952. height: math.unit(6, "feet"),
  12953. weight: math.unit(170, "lb"),
  12954. name: "Side",
  12955. image: {
  12956. source: "./media/characters/finn/side.svg",
  12957. extra: 1953 / 1807,
  12958. bottom: 0.057
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Megamacro",
  12965. height: math.unit(14445, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Roy" },
  12972. {
  12973. front: {
  12974. height: math.unit(5 + 6 / 12, "feet"),
  12975. weight: math.unit(125, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/roy/front.svg",
  12979. extra: 1,
  12980. bottom: 0.11
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Micro",
  12987. height: math.unit(3, "inches"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(5 + 6 / 12, "feet")
  12993. },
  12994. {
  12995. name: "Lesser Macro",
  12996. height: math.unit(60, "feet")
  12997. },
  12998. {
  12999. name: "Greater Macro",
  13000. height: math.unit(120, "feet")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Aevsivs" },
  13006. {
  13007. front: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(100, "lb"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/aevsivs/front.svg",
  13013. extra: 1,
  13014. bottom: 0.03
  13015. }
  13016. },
  13017. back: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(100, "lb"),
  13020. name: "Back",
  13021. image: {
  13022. source: "./media/characters/aevsivs/back.svg"
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Micro",
  13029. height: math.unit(2, "inches"),
  13030. default: true
  13031. },
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(5, "feet")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Hildegard" },
  13040. {
  13041. front: {
  13042. height: math.unit(5 + 7 / 12, "feet"),
  13043. weight: math.unit(159, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/hildegard/front.svg",
  13047. extra: 312 / 286,
  13048. bottom: 0.005
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5 + 7 / 12, "feet"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Bernard & Wilder" },
  13062. {
  13063. bernard: {
  13064. height: math.unit(2 + 7 / 12, "feet"),
  13065. weight: math.unit(66, "lb"),
  13066. name: "Bernard",
  13067. rename: true,
  13068. image: {
  13069. source: "./media/characters/bernard-wilder/bernard.svg",
  13070. extra: 192 / 128,
  13071. bottom: 0.05
  13072. }
  13073. },
  13074. wilder: {
  13075. height: math.unit(5 + 8 / 12, "feet"),
  13076. weight: math.unit(143, "lb"),
  13077. name: "Wilder",
  13078. rename: true,
  13079. image: {
  13080. source: "./media/characters/bernard-wilder/wilder.svg",
  13081. extra: 361 / 312,
  13082. bottom: 0.02
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(2 + 7 / 12, "feet"),
  13090. default: true
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Hearth" },
  13096. {
  13097. anthro: {
  13098. height: math.unit(6 + 1 / 12, "feet"),
  13099. weight: math.unit(155, "lb"),
  13100. name: "Anthro",
  13101. image: {
  13102. source: "./media/characters/hearth/anthro.svg",
  13103. extra: 260 / 250,
  13104. bottom: 0.02
  13105. }
  13106. },
  13107. feral: {
  13108. height: math.unit(3.78, "feet"),
  13109. weight: math.unit(35, "kg"),
  13110. name: "Feral",
  13111. image: {
  13112. source: "./media/characters/hearth/feral.svg",
  13113. extra: 153 / 135,
  13114. bottom: 0.03
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(6 + 1 / 12, "feet"),
  13122. default: true
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Ingrid" },
  13128. {
  13129. front: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(182, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/ingrid/front.svg",
  13135. extra: 294 / 268,
  13136. bottom: 0.027
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(6, "feet"),
  13144. default: true
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Malgam" },
  13150. {
  13151. eevee: {
  13152. height: math.unit(2 + 10 / 12, "feet"),
  13153. weight: math.unit(86, "lb"),
  13154. name: "Malgam",
  13155. image: {
  13156. source: "./media/characters/malgam/eevee.svg",
  13157. extra: 218 / 180,
  13158. bottom: 0.2
  13159. }
  13160. },
  13161. sylveon: {
  13162. height: math.unit(4, "feet"),
  13163. weight: math.unit(101, "lb"),
  13164. name: "Future Malgam",
  13165. rename: true,
  13166. image: {
  13167. source: "./media/characters/malgam/sylveon.svg",
  13168. extra: 371 / 325,
  13169. bottom: 0.015
  13170. }
  13171. },
  13172. gigantamax: {
  13173. height: math.unit(50, "feet"),
  13174. name: "Gigantamax Malgam",
  13175. rename: true,
  13176. image: {
  13177. source: "./media/characters/malgam/gigantamax.svg"
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Normal",
  13184. height: math.unit(2 + 10 / 12, "feet"),
  13185. default: true
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Fleur" },
  13191. {
  13192. front: {
  13193. height: math.unit(5 + 11 / 12, "feet"),
  13194. weight: math.unit(188, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/fleur/front.svg",
  13198. extra: 309 / 283,
  13199. bottom: 0.007
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(5 + 11 / 12, "feet"),
  13207. default: true
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Jude" },
  13213. {
  13214. front: {
  13215. height: math.unit(5 + 4 / 12, "feet"),
  13216. weight: math.unit(122, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/jude/front.svg",
  13220. extra: 288 / 273,
  13221. bottom: 0.03
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(5 + 4 / 12, "feet"),
  13229. default: true
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Seara" },
  13235. {
  13236. front: {
  13237. height: math.unit(5 + 11 / 12, "feet"),
  13238. weight: math.unit(190, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/seara/front.svg",
  13242. extra: 1,
  13243. bottom: 0.05
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(5 + 11 / 12, "feet"),
  13251. default: true
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Caspian" },
  13257. {
  13258. front: {
  13259. height: math.unit(16 + 5 / 12, "feet"),
  13260. weight: math.unit(524, "lb"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/caspian/front.svg",
  13264. extra: 1,
  13265. bottom: 0.04
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(16 + 5 / 12, "feet"),
  13273. default: true
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Mika" },
  13279. {
  13280. front: {
  13281. height: math.unit(5 + 7 / 12, "feet"),
  13282. weight: math.unit(170, "lb"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/mika/front.svg",
  13286. extra: 1,
  13287. bottom: 0.016
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(5 + 7 / 12, "feet"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Sol" },
  13301. {
  13302. front: {
  13303. height: math.unit(6 + 2 / 12, "feet"),
  13304. weight: math.unit(268, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/sol/front.svg",
  13308. extra: 247 / 231,
  13309. bottom: 0.05
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(6 + 2 / 12, "feet"),
  13317. default: true
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Umiko" },
  13323. {
  13324. buizel: {
  13325. height: math.unit(2 + 5 / 12, "feet"),
  13326. weight: math.unit(87, "lb"),
  13327. name: "Buizel",
  13328. image: {
  13329. source: "./media/characters/umiko/buizel.svg",
  13330. extra: 172 / 157,
  13331. bottom: 0.01
  13332. }
  13333. },
  13334. floatzel: {
  13335. height: math.unit(5 + 9 / 12, "feet"),
  13336. weight: math.unit(250, "lb"),
  13337. name: "Floatzel",
  13338. image: {
  13339. source: "./media/characters/umiko/floatzel.svg",
  13340. extra: 262 / 248
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(2 + 5 / 12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Iliac" },
  13354. {
  13355. front: {
  13356. height: math.unit(6 + 2 / 12, "feet"),
  13357. weight: math.unit(146, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/iliac/front.svg",
  13361. extra: 389 / 365,
  13362. bottom: 0.035
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Normal",
  13369. height: math.unit(6 + 2 / 12, "feet"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Topaz" },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(170, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/topaz/front.svg",
  13383. extra: 317 / 303,
  13384. bottom: 0.055
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(6, "feet"),
  13392. default: true
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Gabriel" },
  13398. {
  13399. front: {
  13400. height: math.unit(5 + 11 / 12, "feet"),
  13401. weight: math.unit(144, "lb"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/gabriel/front.svg",
  13405. extra: 285 / 262,
  13406. bottom: 0.004
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Normal",
  13413. height: math.unit(5 + 11 / 12, "feet"),
  13414. default: true
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Tempest (Suicune)" },
  13420. {
  13421. side: {
  13422. height: math.unit(6 + 5 / 12, "feet"),
  13423. weight: math.unit(300, "lb"),
  13424. name: "Side",
  13425. image: {
  13426. source: "./media/characters/tempest-suicune/side.svg",
  13427. extra: 195 / 154,
  13428. bottom: 0.04
  13429. }
  13430. },
  13431. },
  13432. [
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(6 + 5 / 12, "feet"),
  13436. default: true
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Vulcan" },
  13442. {
  13443. front: {
  13444. height: math.unit(7 + 2 / 12, "feet"),
  13445. weight: math.unit(322, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/vulcan/front.svg",
  13449. extra: 154 / 147,
  13450. bottom: 0.04
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(7 + 2 / 12, "feet"),
  13458. default: true
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Gault" },
  13464. {
  13465. front: {
  13466. height: math.unit(5 + 10 / 12, "feet"),
  13467. weight: math.unit(264, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/gault/front.svg",
  13471. extra: 161 / 140,
  13472. bottom: 0.028
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(5 + 10 / 12, "feet"),
  13480. default: true
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Shard" },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/shard/front.svg",
  13493. extra: 273 / 238,
  13494. bottom: 0.02
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(3 + 6 / 12, "feet"),
  13502. default: true
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Ashe" },
  13508. {
  13509. front: {
  13510. height: math.unit(5 + 11 / 12, "feet"),
  13511. weight: math.unit(146, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/ashe/front.svg",
  13515. extra: 400 / 373,
  13516. bottom: 0.01
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(5 + 11 / 12, "feet"),
  13524. default: true
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Beatrix" },
  13530. {
  13531. front: {
  13532. height: math.unit(5 + 5 / 12, "feet"),
  13533. weight: math.unit(135, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/beatrix/front.svg",
  13537. extra: 392 / 379,
  13538. bottom: 0.01
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(6, "feet"),
  13546. default: true
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Ignatius" },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/ignatius/front.svg",
  13559. extra: 245 / 222,
  13560. bottom: 0.01
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(5 + 5 / 12, "feet"),
  13568. default: true
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Mei Li" },
  13574. {
  13575. front: {
  13576. height: math.unit(6 + 2 / 12, "feet"),
  13577. weight: math.unit(138, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/mei-li/front.svg",
  13581. extra: 237 / 229,
  13582. bottom: 0.03
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(6 + 2 / 12, "feet"),
  13590. default: true
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Puru" },
  13596. {
  13597. front: {
  13598. height: math.unit(2 + 4 / 12, "feet"),
  13599. weight: math.unit(62, "lb"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/puru/front.svg",
  13603. extra: 206 / 149,
  13604. bottom: 0.06
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(2 + 4 / 12, "feet"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Kee" },
  13618. {
  13619. taur: {
  13620. height: math.unit(11, "feet"),
  13621. weight: math.unit(500, "lb"),
  13622. name: "Taur",
  13623. image: {
  13624. source: "./media/characters/kee/taur.svg",
  13625. extra: 1,
  13626. bottom: 0.04
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(11, "feet"),
  13634. default: true
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Cobalt (Dracha)" },
  13640. {
  13641. anthro: {
  13642. height: math.unit(7, "feet"),
  13643. weight: math.unit(190, "lb"),
  13644. name: "Anthro",
  13645. image: {
  13646. source: "./media/characters/cobalt-dracha/anthro.svg",
  13647. extra: 231 / 225,
  13648. bottom: 0.04
  13649. }
  13650. },
  13651. feral: {
  13652. height: math.unit(9 + 7 / 12, "feet"),
  13653. weight: math.unit(294, "lb"),
  13654. name: "Feral",
  13655. image: {
  13656. source: "./media/characters/cobalt-dracha/feral.svg",
  13657. extra: 692 / 633,
  13658. bottom: 0.05
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(7, "feet"),
  13666. default: true
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Java" },
  13672. {
  13673. fallen: {
  13674. height: math.unit(11 + 8 / 12, "feet"),
  13675. weight: math.unit(485, "lb"),
  13676. name: "Java (Fallen)",
  13677. rename: true,
  13678. image: {
  13679. source: "./media/characters/java/fallen.svg",
  13680. extra: 226 / 208,
  13681. bottom: 0.005
  13682. }
  13683. },
  13684. godkin: {
  13685. height: math.unit(10 + 6 / 12, "feet"),
  13686. weight: math.unit(328, "lb"),
  13687. name: "Java (Godkin)",
  13688. rename: true,
  13689. image: {
  13690. source: "./media/characters/java/godkin.svg",
  13691. extra: 270 / 262,
  13692. bottom: 0.02
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(11 + 8 / 12, "feet"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Skoll" },
  13706. {
  13707. front: {
  13708. height: math.unit(7 + 8 / 12, "feet"),
  13709. weight: math.unit(320, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/skoll/front.svg",
  13713. extra: 232 / 220,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(7 + 8 / 12, "feet"),
  13722. default: true
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Purna" },
  13728. {
  13729. front: {
  13730. height: math.unit(5 + 9 / 12, "feet"),
  13731. weight: math.unit(170, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/purna/front.svg",
  13735. extra: 239 / 229,
  13736. bottom: 0.01
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Normal",
  13743. height: math.unit(5 + 9 / 12, "feet"),
  13744. default: true
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Kuva" },
  13750. {
  13751. front: {
  13752. height: math.unit(5 + 9 / 12, "feet"),
  13753. weight: math.unit(142, "lb"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/kuva/front.svg",
  13757. extra: 281 / 271,
  13758. bottom: 0.006
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(5 + 9 / 12, "feet"),
  13766. default: true
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Embra" },
  13772. {
  13773. anthro: {
  13774. height: math.unit(9 + 2 / 12, "feet"),
  13775. weight: math.unit(270, "lb"),
  13776. name: "Anthro",
  13777. image: {
  13778. source: "./media/characters/embra/anthro.svg",
  13779. extra: 200 / 187,
  13780. bottom: 0.02
  13781. }
  13782. },
  13783. feral: {
  13784. height: math.unit(18 + 8 / 12, "feet"),
  13785. weight: math.unit(576, "lb"),
  13786. name: "Feral",
  13787. image: {
  13788. source: "./media/characters/embra/feral.svg",
  13789. extra: 152 / 137,
  13790. bottom: 0.037
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(9 + 2 / 12, "feet"),
  13798. default: true
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Grottos" },
  13804. {
  13805. anthro: {
  13806. height: math.unit(10 + 9 / 12, "feet"),
  13807. weight: math.unit(224, "lb"),
  13808. name: "Anthro",
  13809. image: {
  13810. source: "./media/characters/grottos/anthro.svg",
  13811. extra: 350 / 332,
  13812. bottom: 0.045
  13813. }
  13814. },
  13815. feral: {
  13816. height: math.unit(20 + 7 / 12, "feet"),
  13817. weight: math.unit(629, "lb"),
  13818. name: "Feral",
  13819. image: {
  13820. source: "./media/characters/grottos/feral.svg",
  13821. extra: 207 / 190,
  13822. bottom: 0.05
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(10 + 9 / 12, "feet"),
  13830. default: true
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Frifna" },
  13836. {
  13837. anthro: {
  13838. height: math.unit(9 + 6 / 12, "feet"),
  13839. weight: math.unit(298, "lb"),
  13840. name: "Anthro",
  13841. image: {
  13842. source: "./media/characters/frifna/anthro.svg",
  13843. extra: 282 / 269,
  13844. bottom: 0.015
  13845. }
  13846. },
  13847. feral: {
  13848. height: math.unit(16 + 2 / 12, "feet"),
  13849. weight: math.unit(624, "lb"),
  13850. name: "Feral",
  13851. image: {
  13852. source: "./media/characters/frifna/feral.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(9 + 6 / 12, "feet"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Elise" },
  13866. {
  13867. front: {
  13868. height: math.unit(6 + 2 / 12, "feet"),
  13869. weight: math.unit(168, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/elise/front.svg",
  13873. extra: 276 / 271
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(6 + 2 / 12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Glade" },
  13887. {
  13888. front: {
  13889. height: math.unit(5 + 10 / 12, "feet"),
  13890. weight: math.unit(210, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/glade/front.svg",
  13894. extra: 258 / 247,
  13895. bottom: 0.008
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(5 + 10 / 12, "feet"),
  13903. default: true
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Rina" },
  13909. {
  13910. front: {
  13911. height: math.unit(5 + 10 / 12, "feet"),
  13912. weight: math.unit(129, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/rina/front.svg",
  13916. extra: 266 / 255,
  13917. bottom: 0.005
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(5 + 10 / 12, "feet"),
  13925. default: true
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Veronica" },
  13931. {
  13932. front: {
  13933. height: math.unit(6 + 1 / 12, "feet"),
  13934. weight: math.unit(192, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/veronica/front.svg",
  13938. extra: 319 / 309,
  13939. bottom: 0.005
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(6 + 1 / 12, "feet"),
  13947. default: true
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Braxton" },
  13953. {
  13954. front: {
  13955. height: math.unit(9 + 3 / 12, "feet"),
  13956. weight: math.unit(1100, "lb"),
  13957. name: "Front",
  13958. image: {
  13959. source: "./media/characters/braxton/front.svg",
  13960. extra: 1057 / 984,
  13961. bottom: 0.05
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Normal",
  13968. height: math.unit(9 + 3 / 12, "feet")
  13969. },
  13970. {
  13971. name: "Giant",
  13972. height: math.unit(300, "feet"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Macro",
  13977. height: math.unit(700, "feet")
  13978. },
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(6000, "feet")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Blue Feyonics" },
  13987. {
  13988. front: {
  13989. height: math.unit(6 + 7 / 12, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/blue-feyonics/front.svg",
  13994. extra: 1403 / 1306,
  13995. bottom: 0.047
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(6 + 7 / 12, "feet"),
  14003. default: true
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Maxwell" },
  14009. {
  14010. front: {
  14011. height: math.unit(1.8, "meters"),
  14012. weight: math.unit(60, "kg"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/maxwell/front.svg",
  14016. extra: 2060 / 1873
  14017. }
  14018. },
  14019. },
  14020. [
  14021. {
  14022. name: "Micro",
  14023. height: math.unit(1, "mm")
  14024. },
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(1.8, "meter"),
  14028. default: true
  14029. },
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(30, "meters")
  14033. },
  14034. {
  14035. name: "Megamacro",
  14036. height: math.unit(10, "km")
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Jack" },
  14042. {
  14043. front: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(150, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/jack/front.svg",
  14049. extra: 1754 / 1640,
  14050. bottom: 0.01
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Normal",
  14057. height: math.unit(80000, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Max size",
  14062. height: math.unit(10, "lightyears")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Cafat" },
  14068. {
  14069. upright: {
  14070. height: math.unit(7, "feet"),
  14071. weight: math.unit(170, "lb"),
  14072. name: "Upright",
  14073. image: {
  14074. source: "./media/characters/cafat/upright.svg",
  14075. bottom: 0.01
  14076. }
  14077. },
  14078. uprightFull: {
  14079. height: math.unit(7, "feet"),
  14080. weight: math.unit(170, "lb"),
  14081. name: "Upright (Full)",
  14082. image: {
  14083. source: "./media/characters/cafat/upright-full.svg",
  14084. bottom: 0.01
  14085. }
  14086. },
  14087. side: {
  14088. height: math.unit(5, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Side",
  14091. image: {
  14092. source: "./media/characters/cafat/side.svg"
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Small",
  14099. height: math.unit(7, "feet"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Large",
  14104. height: math.unit(15.5, "feet")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Verin Raharra" },
  14110. {
  14111. front: {
  14112. height: math.unit(6, "feet"),
  14113. weight: math.unit(150, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/verin-raharra/front.svg",
  14117. extra: 5019 / 4835,
  14118. bottom: 0.023
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Normal",
  14125. height: math.unit(7 + 5 / 12, "feet"),
  14126. default: true
  14127. },
  14128. {
  14129. name: "Upsized",
  14130. height: math.unit(20, "feet")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Nakata" },
  14136. {
  14137. front: {
  14138. height: math.unit(7, "feet"),
  14139. weight: math.unit(230, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/nakata/front.svg",
  14143. extra: 1.005,
  14144. bottom: 0.01
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(7, "feet"),
  14152. default: true
  14153. },
  14154. {
  14155. name: "Big",
  14156. height: math.unit(14, "feet")
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(400, "feet")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Lily" },
  14166. {
  14167. front: {
  14168. height: math.unit(4.91, "feet"),
  14169. weight: math.unit(100, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/lily/front.svg",
  14173. extra: 1585 / 1415,
  14174. bottom: 0.02
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(4.91, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Sheila" },
  14188. {
  14189. laying: {
  14190. height: math.unit(4 + 4 / 12, "feet"),
  14191. weight: math.unit(600, "lb"),
  14192. name: "Laying",
  14193. image: {
  14194. source: "./media/characters/sheila/laying.svg",
  14195. extra: 1333 / 1265,
  14196. bottom: 0.16
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(4 + 4 / 12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Sax" },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(190, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/sax/front.svg",
  14217. extra: 1187 / 973,
  14218. bottom: 0.042
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(4, "inches"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Pandora" },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/pandora/front.svg",
  14239. extra: 2720 / 2556,
  14240. bottom: 0.015
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/pandora/back.svg",
  14249. extra: 2720 / 2556,
  14250. bottom: 0.01
  14251. }
  14252. },
  14253. beans: {
  14254. height: math.unit(6 / 8, "feet"),
  14255. name: "Beans",
  14256. image: {
  14257. source: "./media/characters/pandora/beans.svg"
  14258. }
  14259. },
  14260. skirt: {
  14261. height: math.unit(6, "feet"),
  14262. weight: math.unit(150, "lb"),
  14263. name: "Skirt",
  14264. image: {
  14265. source: "./media/characters/pandora/skirt.svg",
  14266. extra: 1622 / 1525,
  14267. bottom: 0.015
  14268. }
  14269. },
  14270. hoodie: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Hoodie",
  14274. image: {
  14275. source: "./media/characters/pandora/hoodie.svg",
  14276. extra: 1622 / 1525,
  14277. bottom: 0.015
  14278. }
  14279. },
  14280. casual: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Casual",
  14284. image: {
  14285. source: "./media/characters/pandora/casual.svg",
  14286. extra: 1622 / 1525,
  14287. bottom: 0.015
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(6, "feet")
  14295. },
  14296. {
  14297. name: "Big Steppy",
  14298. height: math.unit(1, "km"),
  14299. default: true
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Venio Darcony" },
  14305. {
  14306. side: {
  14307. height: math.unit(10, "feet"),
  14308. weight: math.unit(800, "kg"),
  14309. name: "Side",
  14310. image: {
  14311. source: "./media/characters/venio-darcony/side.svg",
  14312. extra: 1373 / 1003,
  14313. bottom: 0.037
  14314. }
  14315. },
  14316. front: {
  14317. height: math.unit(19, "feet"),
  14318. weight: math.unit(800, "kg"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/venio-darcony/front.svg"
  14322. }
  14323. },
  14324. back: {
  14325. height: math.unit(19, "feet"),
  14326. weight: math.unit(800, "kg"),
  14327. name: "Back",
  14328. image: {
  14329. source: "./media/characters/venio-darcony/back.svg"
  14330. }
  14331. },
  14332. sideNsfw: {
  14333. height: math.unit(10, "feet"),
  14334. weight: math.unit(800, "kg"),
  14335. name: "Side (NSFW)",
  14336. image: {
  14337. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14338. extra: 1373 / 1003,
  14339. bottom: 0.037
  14340. }
  14341. },
  14342. frontNsfw: {
  14343. height: math.unit(19, "feet"),
  14344. weight: math.unit(800, "kg"),
  14345. name: "Front (NSFW)",
  14346. image: {
  14347. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14348. }
  14349. },
  14350. backNsfw: {
  14351. height: math.unit(19, "feet"),
  14352. weight: math.unit(800, "kg"),
  14353. name: "Back (NSFW)",
  14354. image: {
  14355. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14356. }
  14357. },
  14358. sideArmored: {
  14359. height: math.unit(10, "feet"),
  14360. weight: math.unit(800, "kg"),
  14361. name: "Side (Armored)",
  14362. image: {
  14363. source: "./media/characters/venio-darcony/side-armored.svg",
  14364. extra: 1373 / 1003,
  14365. bottom: 0.037
  14366. }
  14367. },
  14368. frontArmored: {
  14369. height: math.unit(19, "feet"),
  14370. weight: math.unit(900, "kg"),
  14371. name: "Front (Armored)",
  14372. image: {
  14373. source: "./media/characters/venio-darcony/front-armored.svg"
  14374. }
  14375. },
  14376. backArmored: {
  14377. height: math.unit(19, "feet"),
  14378. weight: math.unit(900, "kg"),
  14379. name: "Back (Armored)",
  14380. image: {
  14381. source: "./media/characters/venio-darcony/back-armored.svg"
  14382. }
  14383. },
  14384. sword: {
  14385. height: math.unit(10, "feet"),
  14386. weight: math.unit(50, "lb"),
  14387. name: "Sword",
  14388. image: {
  14389. source: "./media/characters/venio-darcony/sword.svg"
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(10, "feet")
  14397. },
  14398. {
  14399. name: "Macro",
  14400. height: math.unit(130, "feet"),
  14401. default: true
  14402. },
  14403. {
  14404. name: "Macro+",
  14405. height: math.unit(240, "feet")
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Veski" },
  14411. {
  14412. front: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(150, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/veski/front.svg",
  14418. extra: 1299 / 1225,
  14419. bottom: 0.04
  14420. }
  14421. },
  14422. back: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(150, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/veski/back.svg",
  14428. extra: 1299 / 1225,
  14429. bottom: 0.008
  14430. }
  14431. },
  14432. maw: {
  14433. height: math.unit(1.5 * 1.21, "feet"),
  14434. name: "Maw",
  14435. image: {
  14436. source: "./media/characters/veski/maw.svg"
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Macro",
  14443. height: math.unit(2, "km"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Isabelle" },
  14450. {
  14451. front: {
  14452. height: math.unit(5 + 7 / 12, "feet"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/isabelle/front.svg",
  14456. extra: 2130 / 1976,
  14457. bottom: 0.05
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Supermicro",
  14464. height: math.unit(10, "micrometers")
  14465. },
  14466. {
  14467. name: "Micro",
  14468. height: math.unit(1, "inch")
  14469. },
  14470. {
  14471. name: "Tiny",
  14472. height: math.unit(5, "inches")
  14473. },
  14474. {
  14475. name: "Standard",
  14476. height: math.unit(5 + 7 / 12, "inches")
  14477. },
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(80, "meters"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Megamacro",
  14485. height: math.unit(250, "meters")
  14486. },
  14487. {
  14488. name: "Gigamacro",
  14489. height: math.unit(5, "km")
  14490. },
  14491. {
  14492. name: "Cosmic",
  14493. height: math.unit(2.5e6, "miles")
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Hanzo" },
  14499. {
  14500. front: {
  14501. height: math.unit(6, "feet"),
  14502. weight: math.unit(150, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/hanzo/front.svg",
  14506. extra: 374 / 344,
  14507. bottom: 0.02
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(8, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Anna" },
  14521. {
  14522. front: {
  14523. height: math.unit(7, "feet"),
  14524. weight: math.unit(130, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/anna/front.svg",
  14528. extra: 169 / 145,
  14529. bottom: 0.06
  14530. }
  14531. },
  14532. full: {
  14533. height: math.unit(4.96, "feet"),
  14534. weight: math.unit(220, "lb"),
  14535. name: "Full",
  14536. image: {
  14537. source: "./media/characters/anna/full.svg",
  14538. extra: 138 / 114,
  14539. bottom: 0.15
  14540. }
  14541. },
  14542. tongue: {
  14543. height: math.unit(2.53, "feet"),
  14544. name: "Tongue",
  14545. image: {
  14546. source: "./media/characters/anna/tongue.svg"
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(7, "feet"),
  14554. default: true
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Ian Corvid" },
  14560. {
  14561. front: {
  14562. height: math.unit(7, "feet"),
  14563. weight: math.unit(150, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/ian-corvid/front.svg",
  14567. extra: 150 / 142,
  14568. bottom: 0.02
  14569. }
  14570. },
  14571. back: {
  14572. height: math.unit(7, "feet"),
  14573. weight: math.unit(150, "lb"),
  14574. name: "Back",
  14575. image: {
  14576. source: "./media/characters/ian-corvid/back.svg",
  14577. extra: 150 / 143,
  14578. bottom: 0.01
  14579. }
  14580. },
  14581. stomping: {
  14582. height: math.unit(7, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Stomping",
  14585. image: {
  14586. source: "./media/characters/ian-corvid/stomping.svg",
  14587. extra: 76 / 72
  14588. }
  14589. },
  14590. sitting: {
  14591. height: math.unit(7 / 1.8, "feet"),
  14592. weight: math.unit(150, "lb"),
  14593. name: "Sitting",
  14594. image: {
  14595. source: "./media/characters/ian-corvid/sitting.svg",
  14596. extra: 1400 / 1269,
  14597. bottom: 0.15
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Tiny Microw",
  14604. height: math.unit(1, "inch")
  14605. },
  14606. {
  14607. name: "Microw",
  14608. height: math.unit(6, "inches")
  14609. },
  14610. {
  14611. name: "Crow",
  14612. height: math.unit(7 + 1 / 12, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Macrow",
  14617. height: math.unit(176, "feet")
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Natalie Kellon" },
  14623. {
  14624. front: {
  14625. height: math.unit(5 + 7 / 12, "feet"),
  14626. weight: math.unit(147, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/natalie-kellon/front.svg",
  14630. extra: 1214 / 1141,
  14631. bottom: 0.02
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Micro",
  14638. height: math.unit(1 / 16, "inch")
  14639. },
  14640. {
  14641. name: "Tiny",
  14642. height: math.unit(4, "inches")
  14643. },
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5 + 7 / 12, "feet"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Amazon",
  14651. height: math.unit(12, "feet")
  14652. },
  14653. {
  14654. name: "Giantess",
  14655. height: math.unit(160, "meters")
  14656. },
  14657. {
  14658. name: "Titaness",
  14659. height: math.unit(800, "meters")
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Alluria" },
  14665. {
  14666. front: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front",
  14670. image: {
  14671. source: "./media/characters/alluria/front.svg",
  14672. extra: 806 / 738,
  14673. bottom: 0.01
  14674. }
  14675. },
  14676. side: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Side",
  14680. image: {
  14681. source: "./media/characters/alluria/side.svg",
  14682. extra: 800 / 750,
  14683. }
  14684. },
  14685. back: {
  14686. height: math.unit(6, "feet"),
  14687. weight: math.unit(150, "lb"),
  14688. name: "Back",
  14689. image: {
  14690. source: "./media/characters/alluria/back.svg",
  14691. extra: 806 / 738,
  14692. }
  14693. },
  14694. frontMaid: {
  14695. height: math.unit(6, "feet"),
  14696. weight: math.unit(150, "lb"),
  14697. name: "Front (Maid)",
  14698. image: {
  14699. source: "./media/characters/alluria/front-maid.svg",
  14700. extra: 806 / 738,
  14701. bottom: 0.01
  14702. }
  14703. },
  14704. sideMaid: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Side (Maid)",
  14708. image: {
  14709. source: "./media/characters/alluria/side-maid.svg",
  14710. extra: 800 / 750,
  14711. bottom: 0.005
  14712. }
  14713. },
  14714. backMaid: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(150, "lb"),
  14717. name: "Back (Maid)",
  14718. image: {
  14719. source: "./media/characters/alluria/back-maid.svg",
  14720. extra: 806 / 738,
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Micro",
  14727. height: math.unit(6, "inches"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Kyle" },
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/kyle/front.svg",
  14741. extra: 1069 / 962,
  14742. bottom: 77.228 / 1727.45
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(150, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Duncan" },
  14756. {
  14757. front: {
  14758. height: math.unit(6, "feet"),
  14759. weight: math.unit(300, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/duncan/front.svg",
  14763. extra: 1650 / 1482,
  14764. bottom: 0.05
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Macro",
  14771. height: math.unit(100, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Memory" },
  14778. {
  14779. front: {
  14780. height: math.unit(5 + 4 / 12, "feet"),
  14781. weight: math.unit(220, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/memory/front.svg",
  14785. extra: 3641 / 3545,
  14786. bottom: 0.03
  14787. }
  14788. },
  14789. back: {
  14790. height: math.unit(5 + 4 / 12, "feet"),
  14791. weight: math.unit(220, "lb"),
  14792. name: "Back",
  14793. image: {
  14794. source: "./media/characters/memory/back.svg",
  14795. extra: 3641 / 3545,
  14796. bottom: 0.025
  14797. }
  14798. },
  14799. frontSkirt: {
  14800. height: math.unit(5 + 4 / 12, "feet"),
  14801. weight: math.unit(220, "lb"),
  14802. name: "Front (Skirt)",
  14803. image: {
  14804. source: "./media/characters/memory/front-skirt.svg",
  14805. extra: 3641 / 3545,
  14806. bottom: 0.03
  14807. }
  14808. },
  14809. frontDress: {
  14810. height: math.unit(5 + 4 / 12, "feet"),
  14811. weight: math.unit(220, "lb"),
  14812. name: "Front (Dress)",
  14813. image: {
  14814. source: "./media/characters/memory/front-dress.svg",
  14815. extra: 3641 / 3545,
  14816. bottom: 0.03
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Micro",
  14823. height: math.unit(6, "inches"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(5 + 4 / 12, "feet")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Luno" },
  14834. {
  14835. front: {
  14836. height: math.unit(4 + 11 / 12, "feet"),
  14837. weight: math.unit(100, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/luno/front.svg",
  14841. extra: 1535 / 1487,
  14842. bottom: 0.03
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(3, "inches")
  14850. },
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(4 + 11 / 12, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(300, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(700, "miles")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Jamesy" },
  14868. {
  14869. front: {
  14870. height: math.unit(6 + 2 / 12, "feet"),
  14871. weight: math.unit(170, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/jamesy/front.svg",
  14875. extra: 440 / 382,
  14876. bottom: 0.005
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Micro",
  14883. height: math.unit(3, "inches")
  14884. },
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(6 + 2 / 12, "feet"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(300, "feet")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(700, "miles")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Mark" },
  14902. {
  14903. front: {
  14904. height: math.unit(6, "feet"),
  14905. weight: math.unit(160, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/mark/front.svg",
  14909. extra: 3300 / 3100,
  14910. bottom: 136.42 / 3440.47
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(120, "meters")
  14918. },
  14919. {
  14920. name: "Bigger Macro",
  14921. height: math.unit(350, "meters")
  14922. },
  14923. {
  14924. name: "Megamacro",
  14925. height: math.unit(8, "km"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Continental",
  14930. height: math.unit(4550, "km")
  14931. },
  14932. {
  14933. name: "Planetary",
  14934. height: math.unit(65000, "km")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Mac" },
  14940. {
  14941. front: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(400, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/mac/front.svg",
  14947. extra: 1048 / 987.7,
  14948. bottom: 60 / 1107.6,
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(500, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Bari" },
  14962. {
  14963. front: {
  14964. height: math.unit(5 + 2 / 12, "feet"),
  14965. weight: math.unit(190, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/bari/front.svg",
  14969. extra: 3156 / 2880,
  14970. bottom: 0.03
  14971. }
  14972. },
  14973. back: {
  14974. height: math.unit(5 + 2 / 12, "feet"),
  14975. weight: math.unit(190, "lb"),
  14976. name: "Back",
  14977. image: {
  14978. source: "./media/characters/bari/back.svg",
  14979. extra: 3260 / 2834,
  14980. bottom: 0.025
  14981. }
  14982. },
  14983. frontPlush: {
  14984. height: math.unit(5 + 2 / 12, "feet"),
  14985. weight: math.unit(190, "lb"),
  14986. name: "Front (Plush)",
  14987. image: {
  14988. source: "./media/characters/bari/front-plush.svg",
  14989. extra: 1112 / 1061,
  14990. bottom: 0.002
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Micro",
  14997. height: math.unit(3, "inches")
  14998. },
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(5 + 2 / 12, "feet"),
  15002. default: true
  15003. },
  15004. {
  15005. name: "Macro",
  15006. height: math.unit(20, "feet")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Hunter Misha Raven" },
  15012. {
  15013. front: {
  15014. height: math.unit(6 + 1 / 12, "feet"),
  15015. weight: math.unit(275, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/hunter-misha-raven/front.svg"
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Mortal",
  15025. height: math.unit(6 + 1 / 12, "feet")
  15026. },
  15027. {
  15028. name: "Divine",
  15029. height: math.unit(1.12134e34, "parsecs"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Max Calore" },
  15036. {
  15037. front: {
  15038. height: math.unit(6 + 3 / 12, "feet"),
  15039. weight: math.unit(220, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/max-calore/front.svg",
  15043. extra: 1700 / 1648,
  15044. bottom: 0.01
  15045. }
  15046. },
  15047. back: {
  15048. height: math.unit(6 + 3 / 12, "feet"),
  15049. weight: math.unit(220, "lb"),
  15050. name: "Back",
  15051. image: {
  15052. source: "./media/characters/max-calore/back.svg",
  15053. extra: 1700 / 1648,
  15054. bottom: 0.01
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(6 + 3 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Aspen" },
  15068. {
  15069. side: {
  15070. height: math.unit(2 + 8 / 12, "feet"),
  15071. weight: math.unit(99, "lb"),
  15072. name: "Side",
  15073. image: {
  15074. source: "./media/characters/aspen/side.svg",
  15075. extra: 152 / 138,
  15076. bottom: 0.032
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(2 + 8 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Sheila (Feral Wolf)" },
  15090. {
  15091. side: {
  15092. height: math.unit(3 + 2 / 12, "feet"),
  15093. weight: math.unit(224, "lb"),
  15094. name: "Side",
  15095. image: {
  15096. source: "./media/characters/sheila-feral-wolf/side.svg",
  15097. extra: 179 / 166,
  15098. bottom: 0.03
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(3 + 2 / 12, "feet"),
  15106. default: true
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Michelle" },
  15112. {
  15113. side: {
  15114. height: math.unit(1 + 9 / 12, "feet"),
  15115. weight: math.unit(38, "lb"),
  15116. name: "Side",
  15117. image: {
  15118. source: "./media/characters/michelle/side.svg",
  15119. extra: 147 / 136.7,
  15120. bottom: 0.03
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(1 + 9 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Nino" },
  15134. {
  15135. front: {
  15136. height: math.unit(1 + 1 / 12, "feet"),
  15137. weight: math.unit(18, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/nino/front.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(1 + 1 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Viola" },
  15154. {
  15155. front: {
  15156. height: math.unit(1, "feet"),
  15157. weight: math.unit(16, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/viola/front.svg"
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(1, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Atlas" },
  15174. {
  15175. front: {
  15176. height: math.unit(6 + 5 / 12, "feet"),
  15177. weight: math.unit(580, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/atlas/front.svg",
  15181. extra: 298.5 / 290,
  15182. bottom: 0.015
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(6 + 5 / 12, "feet"),
  15190. default: true
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Davy" },
  15196. {
  15197. side: {
  15198. height: math.unit(1 + 10 / 12, "feet"),
  15199. weight: math.unit(25, "lb"),
  15200. name: "Side",
  15201. image: {
  15202. source: "./media/characters/davy/side.svg",
  15203. extra: 200 / 170,
  15204. bottom: 0.01
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(1 + 10 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Fiona" },
  15218. {
  15219. side: {
  15220. height: math.unit(4 + 8 / 12, "feet"),
  15221. weight: math.unit(166, "lb"),
  15222. name: "Side",
  15223. image: {
  15224. source: "./media/characters/fiona/side.svg",
  15225. extra: 232 / 220,
  15226. bottom: 0.03
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(4 + 8 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Lyla" },
  15240. {
  15241. front: {
  15242. height: math.unit(2, "feet"),
  15243. weight: math.unit(62, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/lyla/front.svg",
  15247. bottom: 0.1
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(2, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Perseus" },
  15261. {
  15262. side: {
  15263. height: math.unit(1.8, "feet"),
  15264. weight: math.unit(44, "lb"),
  15265. name: "Side",
  15266. image: {
  15267. source: "./media/characters/perseus/side.svg",
  15268. bottom: 0.21
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(1.8, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Remus" },
  15282. {
  15283. side: {
  15284. height: math.unit(4 + 2 / 12, "feet"),
  15285. weight: math.unit(20, "lb"),
  15286. name: "Side",
  15287. image: {
  15288. source: "./media/characters/remus/side.svg"
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(4 + 2 / 12, "feet"),
  15296. default: true
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Raf" },
  15302. {
  15303. front: {
  15304. height: math.unit(4 + 11 / 12, "feet"),
  15305. weight: math.unit(114, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/raf/front.svg",
  15309. bottom: 0.01
  15310. }
  15311. },
  15312. side: {
  15313. height: math.unit(4 + 11 / 12, "feet"),
  15314. weight: math.unit(114, "lb"),
  15315. name: "Side",
  15316. image: {
  15317. source: "./media/characters/raf/side.svg",
  15318. bottom: 0.005
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Micro",
  15325. height: math.unit(2, "inches")
  15326. },
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(4 + 11 / 12, "feet"),
  15330. default: true
  15331. },
  15332. {
  15333. name: "Macro",
  15334. height: math.unit(70, "feet")
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Liam Einarr" },
  15340. {
  15341. front: {
  15342. height: math.unit(1.5, "meters"),
  15343. weight: math.unit(68, "kg"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/liam-einarr/front.svg",
  15347. extra: 2822 / 2666
  15348. }
  15349. },
  15350. back: {
  15351. height: math.unit(1.5, "meters"),
  15352. weight: math.unit(68, "kg"),
  15353. name: "Back",
  15354. image: {
  15355. source: "./media/characters/liam-einarr/back.svg",
  15356. extra: 2822 / 2666,
  15357. bottom: 0.015
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(1.5, "meters"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(150, "meters")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(35, "km")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "Linda" },
  15379. {
  15380. front: {
  15381. height: math.unit(6, "feet"),
  15382. weight: math.unit(75, "kg"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/linda/front.svg",
  15386. extra: 930 / 874,
  15387. bottom: 0.004
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(6, "feet"),
  15395. default: true
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Caylex" },
  15401. {
  15402. front: {
  15403. height: math.unit(6 + 8 / 12, "feet"),
  15404. weight: math.unit(220, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/caylex/front.svg",
  15408. extra: 821 / 772,
  15409. bottom: 0.07
  15410. }
  15411. },
  15412. back: {
  15413. height: math.unit(6 + 8 / 12, "feet"),
  15414. weight: math.unit(220, "lb"),
  15415. name: "Back",
  15416. image: {
  15417. source: "./media/characters/caylex/back.svg",
  15418. extra: 821 / 772,
  15419. bottom: 0.022
  15420. }
  15421. },
  15422. hand: {
  15423. height: math.unit(1.25, "feet"),
  15424. name: "Hand",
  15425. image: {
  15426. source: "./media/characters/caylex/hand.svg"
  15427. }
  15428. },
  15429. foot: {
  15430. height: math.unit(1.6, "feet"),
  15431. name: "Foot",
  15432. image: {
  15433. source: "./media/characters/caylex/foot.svg"
  15434. }
  15435. },
  15436. armored: {
  15437. height: math.unit(6 + 8 / 12, "feet"),
  15438. weight: math.unit(250, "lb"),
  15439. name: "Armored",
  15440. image: {
  15441. source: "./media/characters/caylex/armored.svg",
  15442. extra: 1420 / 1310,
  15443. bottom: 0.045
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6 + 8 / 12, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Normal+",
  15455. height: math.unit(12, "feet")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Alana" },
  15461. {
  15462. front: {
  15463. height: math.unit(7 + 6 / 12, "feet"),
  15464. weight: math.unit(288, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/alana/front.svg",
  15468. extra: 679 / 653,
  15469. bottom: 22.5 / 701
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(7 + 6 / 12, "feet")
  15477. },
  15478. {
  15479. name: "Large",
  15480. height: math.unit(50, "feet")
  15481. },
  15482. {
  15483. name: "Macro",
  15484. height: math.unit(100, "feet"),
  15485. default: true
  15486. },
  15487. {
  15488. name: "Macro+",
  15489. height: math.unit(200, "feet")
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Hasani" },
  15495. {
  15496. front: {
  15497. height: math.unit(6 + 1 / 12, "feet"),
  15498. weight: math.unit(210, "lb"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/hasani/front.svg",
  15502. extra: 244 / 232,
  15503. bottom: 0.01
  15504. }
  15505. },
  15506. back: {
  15507. height: math.unit(6 + 1 / 12, "feet"),
  15508. weight: math.unit(210, "lb"),
  15509. name: "Back",
  15510. image: {
  15511. source: "./media/characters/hasani/back.svg",
  15512. extra: 244 / 232,
  15513. bottom: 0.01
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(6 + 1 / 12, "feet")
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(175, "feet"),
  15525. default: true
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Nita" },
  15531. {
  15532. front: {
  15533. height: math.unit(1.82, "meters"),
  15534. weight: math.unit(140, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/nita/front.svg",
  15538. extra: 2473 / 2363,
  15539. bottom: 0.01
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(1.82, "m")
  15547. },
  15548. {
  15549. name: "Macro",
  15550. height: math.unit(300, "m")
  15551. },
  15552. {
  15553. name: "Mistake Canon",
  15554. height: math.unit(0.5, "miles"),
  15555. default: true
  15556. },
  15557. {
  15558. name: "Big Mistake",
  15559. height: math.unit(13, "miles")
  15560. },
  15561. {
  15562. name: "Playing God",
  15563. height: math.unit(2450, "miles")
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Shiriko" },
  15569. {
  15570. front: {
  15571. height: math.unit(4, "feet"),
  15572. weight: math.unit(120, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/shiriko/front.svg",
  15576. extra: 195 / 188
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(4, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Deja" },
  15590. {
  15591. front: {
  15592. height: math.unit(6, "feet"),
  15593. name: "front",
  15594. image: {
  15595. source: "./media/characters/deja/front.svg",
  15596. extra: 926 / 840,
  15597. bottom: 0.07
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Planck Length",
  15604. height: math.unit(1.6e-35, "meters")
  15605. },
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(30.48, "meters"),
  15609. default: true
  15610. },
  15611. {
  15612. name: "Universal",
  15613. height: math.unit(8.8e26, "meters")
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Anima" },
  15619. {
  15620. side: {
  15621. height: math.unit(8, "feet"),
  15622. weight: math.unit(6300, "lb"),
  15623. name: "Side",
  15624. image: {
  15625. source: "./media/characters/anima/side.svg",
  15626. bottom: 0.035
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(8, "feet"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Bianca" },
  15640. {
  15641. front: {
  15642. height: math.unit(8, "feet"),
  15643. weight: math.unit(350, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/bianca/front.svg",
  15647. extra: 234 / 225,
  15648. bottom: 0.03
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(8, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Adinia" },
  15662. {
  15663. front: {
  15664. height: math.unit(6, "feet"),
  15665. weight: math.unit(150, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/adinia/front.svg",
  15669. extra: 1845 / 1672,
  15670. bottom: 0.02
  15671. }
  15672. },
  15673. back: {
  15674. height: math.unit(6, "feet"),
  15675. weight: math.unit(150, "lb"),
  15676. name: "Back",
  15677. image: {
  15678. source: "./media/characters/adinia/back.svg",
  15679. extra: 1845 / 1672,
  15680. bottom: 0.002
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(11 + 5 / 12, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Lykasa" },
  15694. {
  15695. front: {
  15696. height: math.unit(3, "meters"),
  15697. weight: math.unit(200, "kg"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/lykasa/front.svg",
  15701. extra: 1076 / 976,
  15702. bottom: 0.06
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(3, "meters")
  15710. },
  15711. {
  15712. name: "Kaiju",
  15713. height: math.unit(120, "meters"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Mega Kaiju",
  15718. height: math.unit(240, "km")
  15719. },
  15720. {
  15721. name: "Giga Kaiju",
  15722. height: math.unit(400, "megameters")
  15723. },
  15724. {
  15725. name: "Tera Kaiju",
  15726. height: math.unit(800, "gigameters")
  15727. },
  15728. {
  15729. name: "Kaiju Dragon Goddess",
  15730. height: math.unit(26, "zettaparsecs")
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Malfaren" },
  15736. {
  15737. side: {
  15738. height: math.unit(283 / 124 * 6, "feet"),
  15739. weight: math.unit(35000, "lb"),
  15740. name: "Side",
  15741. image: {
  15742. source: "./media/characters/malfaren/side.svg",
  15743. extra: 2500 / 1010,
  15744. bottom: 0.01
  15745. }
  15746. },
  15747. front: {
  15748. height: math.unit(22.36, "feet"),
  15749. weight: math.unit(35000, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/malfaren/front.svg",
  15753. extra: 1631 / 1476,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. maw: {
  15758. height: math.unit(6.9, "feet"),
  15759. name: "Maw",
  15760. image: {
  15761. source: "./media/characters/malfaren/maw.svg"
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Big",
  15768. height: math.unit(283 / 162 * 6, "feet"),
  15769. },
  15770. {
  15771. name: "Bigger",
  15772. height: math.unit(283 / 124 * 6, "feet")
  15773. },
  15774. {
  15775. name: "Massive",
  15776. height: math.unit(283 / 92 * 6, "feet"),
  15777. default: true
  15778. },
  15779. {
  15780. name: "👀💦",
  15781. height: math.unit(283 / 73 * 6, "feet"),
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Kernel" },
  15787. {
  15788. front: {
  15789. height: math.unit(1.7, "m"),
  15790. weight: math.unit(70, "kg"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/kernel/front.svg",
  15794. extra: 222 / 210,
  15795. bottom: 0.007
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Nano",
  15802. height: math.unit(17, "micrometers")
  15803. },
  15804. {
  15805. name: "Micro",
  15806. height: math.unit(1.7, "mm")
  15807. },
  15808. {
  15809. name: "Small",
  15810. height: math.unit(1.7, "cm")
  15811. },
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(1.7, "m"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Jayne Folest" },
  15821. {
  15822. front: {
  15823. height: math.unit(1.75, "meters"),
  15824. weight: math.unit(65, "kg"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/jayne-folest/front.svg",
  15828. extra: 2115 / 2007,
  15829. bottom: 0.02
  15830. }
  15831. },
  15832. back: {
  15833. height: math.unit(1.75, "meters"),
  15834. weight: math.unit(65, "kg"),
  15835. name: "Back",
  15836. image: {
  15837. source: "./media/characters/jayne-folest/back.svg",
  15838. extra: 2115 / 2007,
  15839. bottom: 0.005
  15840. }
  15841. },
  15842. frontClothed: {
  15843. height: math.unit(1.75, "meters"),
  15844. weight: math.unit(65, "kg"),
  15845. name: "Front (Clothed)",
  15846. image: {
  15847. source: "./media/characters/jayne-folest/front-clothed.svg",
  15848. extra: 2115 / 2007,
  15849. bottom: 0.035
  15850. }
  15851. },
  15852. hand: {
  15853. height: math.unit(1 / 1.260, "feet"),
  15854. name: "Hand",
  15855. image: {
  15856. source: "./media/characters/jayne-folest/hand.svg"
  15857. }
  15858. },
  15859. foot: {
  15860. height: math.unit(1 / 0.918, "feet"),
  15861. name: "Foot",
  15862. image: {
  15863. source: "./media/characters/jayne-folest/foot.svg"
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Micro",
  15870. height: math.unit(4, "cm")
  15871. },
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(1.75, "meters")
  15875. },
  15876. {
  15877. name: "Macro",
  15878. height: math.unit(47.5, "meters"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Algier" },
  15885. {
  15886. front: {
  15887. height: math.unit(180, "cm"),
  15888. weight: math.unit(70, "kg"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/algier/front.svg",
  15892. extra: 596 / 572,
  15893. bottom: 0.04
  15894. }
  15895. },
  15896. back: {
  15897. height: math.unit(180, "cm"),
  15898. weight: math.unit(70, "kg"),
  15899. name: "Back",
  15900. image: {
  15901. source: "./media/characters/algier/back.svg",
  15902. extra: 596 / 572,
  15903. bottom: 0.025
  15904. }
  15905. },
  15906. frontdressed: {
  15907. height: math.unit(180, "cm"),
  15908. weight: math.unit(150, "kg"),
  15909. name: "Front-dressed",
  15910. image: {
  15911. source: "./media/characters/algier/front-dressed.svg",
  15912. extra: 596 / 572,
  15913. bottom: 0.038
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Micro",
  15920. height: math.unit(5, "cm")
  15921. },
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(180, "cm"),
  15925. default: true
  15926. },
  15927. {
  15928. name: "Macro",
  15929. height: math.unit(64, "m")
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Pretzel" },
  15935. {
  15936. upright: {
  15937. height: math.unit(7, "feet"),
  15938. weight: math.unit(300, "lb"),
  15939. name: "Upright",
  15940. image: {
  15941. source: "./media/characters/pretzel/upright.svg",
  15942. extra: 534 / 522,
  15943. bottom: 0.065
  15944. }
  15945. },
  15946. sprawling: {
  15947. height: math.unit(3.75, "feet"),
  15948. weight: math.unit(300, "lb"),
  15949. name: "Sprawling",
  15950. image: {
  15951. source: "./media/characters/pretzel/sprawling.svg",
  15952. extra: 314 / 281,
  15953. bottom: 0.1
  15954. }
  15955. },
  15956. tongue: {
  15957. height: math.unit(2, "feet"),
  15958. name: "Tongue",
  15959. image: {
  15960. source: "./media/characters/pretzel/tongue.svg"
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(7, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Oversized",
  15972. height: math.unit(15, "feet")
  15973. },
  15974. {
  15975. name: "Huge",
  15976. height: math.unit(30, "feet")
  15977. },
  15978. {
  15979. name: "Macro",
  15980. height: math.unit(250, "feet")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Roxi" },
  15986. {
  15987. sideFront: {
  15988. height: math.unit(5 + 2 / 12, "feet"),
  15989. weight: math.unit(120, "lb"),
  15990. name: "Front Side",
  15991. image: {
  15992. source: "./media/characters/roxi/side-front.svg",
  15993. extra: 2924 / 2717,
  15994. bottom: 0.08
  15995. }
  15996. },
  15997. sideBack: {
  15998. height: math.unit(5 + 2 / 12, "feet"),
  15999. weight: math.unit(120, "lb"),
  16000. name: "Back Side",
  16001. image: {
  16002. source: "./media/characters/roxi/side-back.svg",
  16003. extra: 2904 / 2693,
  16004. bottom: 0.06
  16005. }
  16006. },
  16007. front: {
  16008. height: math.unit(5 + 2 / 12, "feet"),
  16009. weight: math.unit(120, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/roxi/front.svg",
  16013. extra: 2028 / 1907,
  16014. bottom: 0.01
  16015. }
  16016. },
  16017. frontAlt: {
  16018. height: math.unit(5 + 2 / 12, "feet"),
  16019. weight: math.unit(120, "lb"),
  16020. name: "Front (Alt)",
  16021. image: {
  16022. source: "./media/characters/roxi/front-alt.svg",
  16023. extra: 1828 / 1798,
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. sitting: {
  16028. height: math.unit(2.8, "feet"),
  16029. weight: math.unit(120, "lb"),
  16030. name: "Sitting",
  16031. image: {
  16032. source: "./media/characters/roxi/sitting.svg",
  16033. extra: 2660 / 2462,
  16034. bottom: 0.1
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 2 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Shadow" },
  16048. {
  16049. side: {
  16050. height: math.unit(55, "feet"),
  16051. weight: math.unit(153, "tons"),
  16052. name: "Side",
  16053. image: {
  16054. source: "./media/characters/shadow/side.svg",
  16055. extra: 701 / 628,
  16056. bottom: 0.02
  16057. }
  16058. },
  16059. flying: {
  16060. height: math.unit(145, "feet"),
  16061. weight: math.unit(153, "tons"),
  16062. name: "Flying",
  16063. image: {
  16064. source: "./media/characters/shadow/flying.svg"
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(55, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Marcie" },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(200, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/marcie/front.svg",
  16085. extra: 960 / 876,
  16086. bottom: 58 / 1017.87
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Macro",
  16093. height: math.unit(1, "mile"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Kachina" },
  16100. {
  16101. front: {
  16102. height: math.unit(7, "feet"),
  16103. weight: math.unit(200, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/kachina/front.svg",
  16107. extra: 1290.68 / 1119,
  16108. bottom: 36.5 / 1327.18
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(7, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Kash" },
  16122. {
  16123. looking: {
  16124. height: math.unit(2, "meters"),
  16125. weight: math.unit(300, "kg"),
  16126. name: "Looking",
  16127. image: {
  16128. source: "./media/characters/kash/looking.svg",
  16129. extra: 474 / 344,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. side: {
  16134. height: math.unit(2, "meters"),
  16135. weight: math.unit(300, "kg"),
  16136. name: "Side",
  16137. image: {
  16138. source: "./media/characters/kash/side.svg",
  16139. extra: 302 / 251,
  16140. bottom: 0.03
  16141. }
  16142. },
  16143. front: {
  16144. height: math.unit(2, "meters"),
  16145. weight: math.unit(300, "kg"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/kash/front.svg",
  16149. extra: 495 / 360,
  16150. bottom: 0.015
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(2, "meters"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Big",
  16162. height: math.unit(3, "meters")
  16163. },
  16164. {
  16165. name: "Large",
  16166. height: math.unit(5, "meters")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Lalim" },
  16172. {
  16173. feeding: {
  16174. height: math.unit(6.7, "feet"),
  16175. weight: math.unit(350, "lb"),
  16176. name: "Feeding",
  16177. image: {
  16178. source: "./media/characters/lalim/feeding.svg",
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(6.7, "feet"),
  16186. default: true
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "De'Vout" },
  16192. {
  16193. front: {
  16194. height: math.unit(9.5, "feet"),
  16195. weight: math.unit(600, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/de'vout/front.svg",
  16199. extra: 1443 / 1328,
  16200. bottom: 0.025
  16201. }
  16202. },
  16203. back: {
  16204. height: math.unit(9.5, "feet"),
  16205. weight: math.unit(600, "lb"),
  16206. name: "Back",
  16207. image: {
  16208. source: "./media/characters/de'vout/back.svg",
  16209. extra: 1443 / 1328
  16210. }
  16211. },
  16212. frontDressed: {
  16213. height: math.unit(9.5, "feet"),
  16214. weight: math.unit(600, "lb"),
  16215. name: "Front (Dressed",
  16216. image: {
  16217. source: "./media/characters/de'vout/front-dressed.svg",
  16218. extra: 1443 / 1328,
  16219. bottom: 0.025
  16220. }
  16221. },
  16222. backDressed: {
  16223. height: math.unit(9.5, "feet"),
  16224. weight: math.unit(600, "lb"),
  16225. name: "Back (Dressed",
  16226. image: {
  16227. source: "./media/characters/de'vout/back-dressed.svg",
  16228. extra: 1443 / 1328
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(9.5, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Talana" },
  16242. {
  16243. front: {
  16244. height: math.unit(8, "feet"),
  16245. weight: math.unit(225, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/talana/front.svg",
  16249. extra: 1410 / 1300,
  16250. bottom: 0.015
  16251. }
  16252. },
  16253. frontDressed: {
  16254. height: math.unit(8, "feet"),
  16255. weight: math.unit(225, "lb"),
  16256. name: "Front (Dressed",
  16257. image: {
  16258. source: "./media/characters/talana/front-dressed.svg",
  16259. extra: 1410 / 1300,
  16260. bottom: 0.015
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(8, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Xeauvok" },
  16274. {
  16275. side: {
  16276. height: math.unit(7.2, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Side",
  16279. image: {
  16280. source: "./media/characters/xeauvok/side.svg",
  16281. extra: 1975 / 1523,
  16282. bottom: 0.07
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(7.2, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Zara" },
  16296. {
  16297. side: {
  16298. height: math.unit(10, "feet"),
  16299. weight: math.unit(900, "kg"),
  16300. name: "Side",
  16301. image: {
  16302. source: "./media/characters/zara/side.svg",
  16303. extra: 504 / 498
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(10, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Richard (Dragon)" },
  16317. {
  16318. side: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Side",
  16322. image: {
  16323. source: "./media/characters/richard-dragon/side.svg",
  16324. extra: 845 / 340,
  16325. bottom: 0.017
  16326. }
  16327. },
  16328. maw: {
  16329. height: math.unit(2.97, "feet"),
  16330. name: "Maw",
  16331. image: {
  16332. source: "./media/characters/richard-dragon/maw.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Richard (Smeargle)" },
  16341. {
  16342. front: {
  16343. height: math.unit(4, "feet"),
  16344. weight: math.unit(100, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/richard-smeargle/front.svg",
  16348. extra: 2952 / 2820,
  16349. bottom: 0.028
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(4, "feet"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Dynamax",
  16361. height: math.unit(20, "meters")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Klay" },
  16367. {
  16368. front: {
  16369. height: math.unit(6, "feet"),
  16370. weight: math.unit(110, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/klay/front.svg",
  16374. extra: 962 / 883,
  16375. bottom: 0.04
  16376. }
  16377. },
  16378. back: {
  16379. height: math.unit(6, "feet"),
  16380. weight: math.unit(110, "lb"),
  16381. name: "Back",
  16382. image: {
  16383. source: "./media/characters/klay/back.svg",
  16384. extra: 962 / 883
  16385. }
  16386. },
  16387. beans: {
  16388. height: math.unit(1.15, "feet"),
  16389. name: "Beans",
  16390. image: {
  16391. source: "./media/characters/klay/beans.svg"
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Micro",
  16398. height: math.unit(6, "inches")
  16399. },
  16400. {
  16401. name: "Mini",
  16402. height: math.unit(3, "feet")
  16403. },
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(6, "feet"),
  16407. default: true
  16408. },
  16409. {
  16410. name: "Big",
  16411. height: math.unit(25, "feet")
  16412. },
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(100, "feet")
  16416. },
  16417. {
  16418. name: "Megamacro",
  16419. height: math.unit(400, "feet")
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Marcus" },
  16425. {
  16426. front: {
  16427. height: math.unit(6, "feet"),
  16428. weight: math.unit(160, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/marcus/front.svg",
  16432. extra: 734 / 676,
  16433. bottom: 0.03
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Little",
  16440. height: math.unit(6, "feet")
  16441. },
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(110, "feet"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(250, "feet")
  16450. },
  16451. {
  16452. name: "Megamacro",
  16453. height: math.unit(1000, "feet")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Claude DelRoute" },
  16459. {
  16460. front: {
  16461. height: math.unit(7, "feet"),
  16462. weight: math.unit(275, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/claude-delroute/front.svg",
  16466. extra: 230 / 214,
  16467. bottom: 0.007
  16468. }
  16469. },
  16470. side: {
  16471. height: math.unit(7, "feet"),
  16472. weight: math.unit(275, "lb"),
  16473. name: "Side",
  16474. image: {
  16475. source: "./media/characters/claude-delroute/side.svg",
  16476. extra: 222 / 214,
  16477. bottom: 0.01
  16478. }
  16479. },
  16480. back: {
  16481. height: math.unit(7, "feet"),
  16482. weight: math.unit(275, "lb"),
  16483. name: "Back",
  16484. image: {
  16485. source: "./media/characters/claude-delroute/back.svg",
  16486. extra: 230 / 214,
  16487. bottom: 0.015
  16488. }
  16489. },
  16490. maw: {
  16491. height: math.unit(0.6407, "meters"),
  16492. name: "Maw",
  16493. image: {
  16494. source: "./media/characters/claude-delroute/maw.svg"
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(7, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Lorge",
  16506. height: math.unit(20, "feet")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Dragonien" },
  16512. {
  16513. front: {
  16514. height: math.unit(8 + 4 / 12, "feet"),
  16515. weight: math.unit(600, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/dragonien/front.svg",
  16519. extra: 100 / 94,
  16520. bottom: 3.3 / 103.3445
  16521. }
  16522. },
  16523. back: {
  16524. height: math.unit(8 + 4 / 12, "feet"),
  16525. weight: math.unit(600, "lb"),
  16526. name: "Back",
  16527. image: {
  16528. source: "./media/characters/dragonien/back.svg",
  16529. extra: 776 / 746,
  16530. bottom: 6.4 / 782.0616
  16531. }
  16532. },
  16533. foot: {
  16534. height: math.unit(1.54, "feet"),
  16535. name: "Foot",
  16536. image: {
  16537. source: "./media/characters/dragonien/foot.svg",
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(8 + 4 / 12, "feet"),
  16545. default: true
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(200, "feet")
  16550. },
  16551. {
  16552. name: "Megamacro",
  16553. height: math.unit(1, "mile")
  16554. },
  16555. {
  16556. name: "Gigamacro",
  16557. height: math.unit(1000, "miles")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Desta" },
  16563. {
  16564. front: {
  16565. height: math.unit(5 + 2 / 12, "feet"),
  16566. weight: math.unit(110, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/desta/front.svg",
  16570. extra: 1482 / 1417
  16571. }
  16572. },
  16573. side: {
  16574. height: math.unit(5 + 2 / 12, "feet"),
  16575. weight: math.unit(110, "lb"),
  16576. name: "Side",
  16577. image: {
  16578. source: "./media/characters/desta/side.svg",
  16579. extra: 2579 / 2491,
  16580. bottom: 0.053
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Micro",
  16587. height: math.unit(6, "inches")
  16588. },
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(5 + 2 / 12, "feet"),
  16592. default: true
  16593. },
  16594. {
  16595. name: "Macro",
  16596. height: math.unit(62, "feet")
  16597. },
  16598. {
  16599. name: "Megamacro",
  16600. height: math.unit(1800, "feet")
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Storm Alystar" },
  16606. {
  16607. front: {
  16608. height: math.unit(10, "feet"),
  16609. weight: math.unit(700, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/storm-alystar/front.svg",
  16613. extra: 2112 / 1898,
  16614. bottom: 0.034
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Micro",
  16621. height: math.unit(3.5, "inches")
  16622. },
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(10, "feet"),
  16626. default: true
  16627. },
  16628. {
  16629. name: "Macro",
  16630. height: math.unit(400, "feet")
  16631. },
  16632. {
  16633. name: "Deific",
  16634. height: math.unit(60, "miles")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Ilia" },
  16640. {
  16641. front: {
  16642. height: math.unit(2.35, "meters"),
  16643. weight: math.unit(119, "kg"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/ilia/front.svg",
  16647. extra: 1285 / 1255,
  16648. bottom: 0.06
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(2.35, "meters")
  16656. },
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(140, "meters"),
  16660. default: true
  16661. },
  16662. {
  16663. name: "Megamacro",
  16664. height: math.unit(100, "miles")
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "KingDead" },
  16670. {
  16671. front: {
  16672. height: math.unit(6 + 5 / 12, "feet"),
  16673. weight: math.unit(190, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/kingdead/front.svg",
  16677. extra: 1228 / 1177
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(7, "inches")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6 + 5 / 12, "feet")
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(150, "feet"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(200, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Kyrehx" },
  16703. {
  16704. front: {
  16705. height: math.unit(8, "feet"),
  16706. weight: math.unit(600, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/kyrehx/front.svg",
  16710. extra: 1195 / 1095,
  16711. bottom: 0.034
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Micro",
  16718. height: math.unit(2, "inches")
  16719. },
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(8, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(255, "feet")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Xang" },
  16733. {
  16734. front: {
  16735. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16736. weight: math.unit(184, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/xang/front.svg",
  16740. extra: 845 / 755
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(0.935 * 146, "feet")
  16753. },
  16754. {
  16755. name: "Megamacro",
  16756. height: math.unit(0.935 * 3, "miles")
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Doc Weardno" },
  16762. {
  16763. frontDressed: {
  16764. height: math.unit(5 + 7 / 12, "feet"),
  16765. weight: math.unit(140, "lb"),
  16766. name: "Front (Dressed)",
  16767. image: {
  16768. source: "./media/characters/doc-weardno/front-dressed.svg",
  16769. extra: 263 / 234
  16770. }
  16771. },
  16772. backDressed: {
  16773. height: math.unit(5 + 7 / 12, "feet"),
  16774. weight: math.unit(140, "lb"),
  16775. name: "Back (Dressed)",
  16776. image: {
  16777. source: "./media/characters/doc-weardno/back-dressed.svg",
  16778. extra: 266 / 238
  16779. }
  16780. },
  16781. front: {
  16782. height: math.unit(5 + 7 / 12, "feet"),
  16783. weight: math.unit(140, "lb"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/doc-weardno/front.svg",
  16787. extra: 254 / 233
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Micro",
  16794. height: math.unit(3, "inches")
  16795. },
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(5 + 7 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(25, "feet")
  16804. },
  16805. {
  16806. name: "Megamacro",
  16807. height: math.unit(2, "miles")
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Seth Whilst" },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 2 / 12, "feet"),
  16816. weight: math.unit(153, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/seth-whilst/front.svg",
  16820. bottom: 0.07
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Micro",
  16827. height: math.unit(5, "inches")
  16828. },
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(6 + 2 / 12, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Pocket Jabari" },
  16838. {
  16839. front: {
  16840. height: math.unit(3, "inches"),
  16841. weight: math.unit(8, "grams"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/pocket-jabari/front.svg",
  16845. extra: 1024 / 974,
  16846. bottom: 0.039
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Minimicro",
  16853. height: math.unit(8, "mm")
  16854. },
  16855. {
  16856. name: "Micro",
  16857. height: math.unit(3, "inches"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(3, "feet")
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Sapphy" },
  16868. {
  16869. front: {
  16870. height: math.unit(15, "feet"),
  16871. weight: math.unit(3280, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/sapphy/front.svg",
  16875. extra: 671 / 577,
  16876. bottom: 0.085
  16877. }
  16878. },
  16879. back: {
  16880. height: math.unit(15, "feet"),
  16881. weight: math.unit(3280, "lb"),
  16882. name: "Back",
  16883. image: {
  16884. source: "./media/characters/sapphy/back.svg",
  16885. extra: 631 / 607,
  16886. bottom: 0.045
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(15, "feet")
  16894. },
  16895. {
  16896. name: "Casual Macro",
  16897. height: math.unit(120, "feet")
  16898. },
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(2150, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Megamacro",
  16906. height: math.unit(8, "miles")
  16907. },
  16908. {
  16909. name: "Galaxy Mom",
  16910. height: math.unit(6, "megalightyears")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Kiro" },
  16916. {
  16917. front: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(170, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/kiro/front.svg",
  16923. extra: 1064 / 1012,
  16924. bottom: 0.052
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Micro",
  16931. height: math.unit(6, "inches")
  16932. },
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(6, "feet"),
  16936. default: true
  16937. },
  16938. {
  16939. name: "Macro",
  16940. height: math.unit(72, "feet")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Irishfox" },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 9 / 12, "feet"),
  16949. weight: math.unit(175, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/irishfox/front.svg",
  16953. extra: 1912 / 1680,
  16954. bottom: 0.02
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Nano",
  16961. height: math.unit(1, "mm")
  16962. },
  16963. {
  16964. name: "Micro",
  16965. height: math.unit(2, "inches")
  16966. },
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(5 + 9 / 12, "feet"),
  16970. default: true
  16971. },
  16972. {
  16973. name: "Macro",
  16974. height: math.unit(45, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Aronai Sieyes" },
  16980. {
  16981. front: {
  16982. height: math.unit(6 + 1 / 12, "feet"),
  16983. weight: math.unit(150, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/aronai-sieyes/front.svg",
  16987. extra: 1556 / 1480,
  16988. bottom: 0.015
  16989. }
  16990. },
  16991. side: {
  16992. height: math.unit(6 + 1 / 12, "feet"),
  16993. weight: math.unit(150, "lb"),
  16994. name: "Side",
  16995. image: {
  16996. source: "./media/characters/aronai-sieyes/side.svg",
  16997. extra: 1433 / 1390,
  16998. bottom: 0.0393
  16999. }
  17000. },
  17001. back: {
  17002. height: math.unit(6 + 1 / 12, "feet"),
  17003. weight: math.unit(150, "lb"),
  17004. name: "Back",
  17005. image: {
  17006. source: "./media/characters/aronai-sieyes/back.svg",
  17007. extra: 1544 / 1494,
  17008. bottom: 0.02
  17009. }
  17010. },
  17011. frontClothed: {
  17012. height: math.unit(6 + 1 / 12, "feet"),
  17013. weight: math.unit(150, "lb"),
  17014. name: "Front (Clothed)",
  17015. image: {
  17016. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17017. extra: 1582 / 1527
  17018. }
  17019. },
  17020. feral: {
  17021. height: math.unit(18, "feet"),
  17022. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17023. name: "Feral",
  17024. image: {
  17025. source: "./media/characters/aronai-sieyes/feral.svg",
  17026. extra: 1530 / 1240,
  17027. bottom: 0.035
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Micro",
  17034. height: math.unit(2, "inches")
  17035. },
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(6 + 1 / 12, "feet"),
  17039. default: true
  17040. }
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Xuna" },
  17045. {
  17046. front: {
  17047. height: math.unit(12, "feet"),
  17048. weight: math.unit(410, "kg"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/xuna/front.svg",
  17052. extra: 2184 / 1980
  17053. }
  17054. },
  17055. side: {
  17056. height: math.unit(12, "feet"),
  17057. weight: math.unit(410, "kg"),
  17058. name: "Side",
  17059. image: {
  17060. source: "./media/characters/xuna/side.svg",
  17061. extra: 2184 / 1980
  17062. }
  17063. },
  17064. back: {
  17065. height: math.unit(12, "feet"),
  17066. weight: math.unit(410, "kg"),
  17067. name: "Back",
  17068. image: {
  17069. source: "./media/characters/xuna/back.svg",
  17070. extra: 2184 / 1980
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Nano glow",
  17077. height: math.unit(10, "nm")
  17078. },
  17079. {
  17080. name: "Micro floof",
  17081. height: math.unit(0.3, "m")
  17082. },
  17083. {
  17084. name: "Huggable softy boi",
  17085. height: math.unit(3.6576, "m"),
  17086. default: true
  17087. },
  17088. {
  17089. name: "Admirable floof",
  17090. height: math.unit(80, "meters")
  17091. },
  17092. {
  17093. name: "Gentle macro",
  17094. height: math.unit(300, "meters")
  17095. },
  17096. {
  17097. name: "Very careful floof",
  17098. height: math.unit(3200, "meters")
  17099. },
  17100. {
  17101. name: "The mega floof",
  17102. height: math.unit(36000, "meters")
  17103. },
  17104. {
  17105. name: "Giga-fur-Wicker",
  17106. height: math.unit(4800000, "meters")
  17107. },
  17108. {
  17109. name: "Licky world",
  17110. height: math.unit(20000000, "meters")
  17111. },
  17112. {
  17113. name: "Floofy cyan sun",
  17114. height: math.unit(1500000000, "meters")
  17115. },
  17116. {
  17117. name: "Milky Wicker",
  17118. height: math.unit(1000000000000000000000, "meters")
  17119. },
  17120. {
  17121. name: "The observing Wicker",
  17122. height: math.unit(999999999999999999999999999, "meters")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Arokha Sieyes" },
  17128. {
  17129. front: {
  17130. height: math.unit(5 + 9 / 12, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/arokha-sieyes/front.svg",
  17135. extra: 1425 / 1284,
  17136. bottom: 0.05
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(5 + 9 / 12, "feet")
  17144. },
  17145. {
  17146. name: "Macro",
  17147. height: math.unit(30, "meters"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Arokh Sieyes" },
  17154. {
  17155. front: {
  17156. height: math.unit(6, "feet"),
  17157. weight: math.unit(180, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/arokh-sieyes/front.svg",
  17161. extra: 1830 / 1769,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6, "feet")
  17170. },
  17171. {
  17172. name: "Macro",
  17173. height: math.unit(30, "meters"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Goldeneye" },
  17180. {
  17181. side: {
  17182. height: math.unit(13 + 1 / 12, "feet"),
  17183. weight: math.unit(8.5, "tonnes"),
  17184. name: "Side",
  17185. image: {
  17186. source: "./media/characters/goldeneye/side.svg",
  17187. extra: 1182 / 778,
  17188. bottom: 0.067
  17189. }
  17190. },
  17191. paw: {
  17192. height: math.unit(3.4, "feet"),
  17193. name: "Paw",
  17194. image: {
  17195. source: "./media/characters/goldeneye/paw.svg"
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(13 + 1 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Leonardo Lycheborne" },
  17209. {
  17210. front: {
  17211. height: math.unit(6 + 1 / 12, "feet"),
  17212. weight: math.unit(210, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/leonardo-lycheborne/front.svg",
  17216. extra: 390 / 365,
  17217. bottom: 0.032
  17218. }
  17219. },
  17220. side: {
  17221. height: math.unit(6 + 1 / 12, "feet"),
  17222. weight: math.unit(210, "lb"),
  17223. name: "Side",
  17224. image: {
  17225. source: "./media/characters/leonardo-lycheborne/side.svg",
  17226. extra: 390 / 365,
  17227. bottom: 0.005
  17228. }
  17229. },
  17230. back: {
  17231. height: math.unit(6 + 1 / 12, "feet"),
  17232. weight: math.unit(210, "lb"),
  17233. name: "Back",
  17234. image: {
  17235. source: "./media/characters/leonardo-lycheborne/back.svg",
  17236. extra: 392 / 366,
  17237. bottom: 0.01
  17238. }
  17239. },
  17240. hand: {
  17241. height: math.unit(1.08, "feet"),
  17242. name: "Hand",
  17243. image: {
  17244. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17245. }
  17246. },
  17247. foot: {
  17248. height: math.unit(1.32, "feet"),
  17249. name: "Foot",
  17250. image: {
  17251. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17252. }
  17253. },
  17254. were: {
  17255. height: math.unit(20, "feet"),
  17256. weight: math.unit(7800, "lb"),
  17257. name: "Were",
  17258. image: {
  17259. source: "./media/characters/leonardo-lycheborne/were.svg",
  17260. extra: 308 / 294,
  17261. bottom: 0.048
  17262. }
  17263. },
  17264. feral: {
  17265. height: math.unit(7.5, "feet"),
  17266. weight: math.unit(600, "lb"),
  17267. name: "Feral",
  17268. image: {
  17269. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17270. extra: 210 / 186,
  17271. bottom: 0.108
  17272. }
  17273. },
  17274. taur: {
  17275. height: math.unit(11, "feet"),
  17276. weight: math.unit(3300, "lb"),
  17277. name: "Taur",
  17278. image: {
  17279. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17280. extra: 320 / 303,
  17281. bottom: 0.025
  17282. }
  17283. },
  17284. barghest: {
  17285. height: math.unit(11, "feet"),
  17286. weight: math.unit(1300, "lb"),
  17287. name: "Barghest",
  17288. image: {
  17289. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17290. extra: 323 / 302,
  17291. bottom: 0.027
  17292. }
  17293. },
  17294. dick: {
  17295. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17296. name: "Dick",
  17297. image: {
  17298. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17299. }
  17300. },
  17301. dickWere: {
  17302. height: math.unit((20) / 3.8, "feet"),
  17303. name: "Dick (Were)",
  17304. image: {
  17305. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(6 + 1 / 12, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Jet" },
  17319. {
  17320. front: {
  17321. height: math.unit(10, "feet"),
  17322. weight: math.unit(350, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/jet/front.svg",
  17326. extra: 2050 / 1980,
  17327. bottom: 0.013
  17328. }
  17329. },
  17330. back: {
  17331. height: math.unit(10, "feet"),
  17332. weight: math.unit(350, "lb"),
  17333. name: "Back",
  17334. image: {
  17335. source: "./media/characters/jet/back.svg",
  17336. extra: 2050 / 1980,
  17337. bottom: 0.013
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(6, "inches")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(10, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(100, "feet")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Tanarath" },
  17359. {
  17360. front: {
  17361. height: math.unit(15, "feet"),
  17362. weight: math.unit(2800, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/tanarath/front.svg",
  17366. extra: 2392 / 2220,
  17367. bottom: 0.03
  17368. }
  17369. },
  17370. back: {
  17371. height: math.unit(15, "feet"),
  17372. weight: math.unit(2800, "lb"),
  17373. name: "Back",
  17374. image: {
  17375. source: "./media/characters/tanarath/back.svg",
  17376. extra: 2392 / 2220,
  17377. bottom: 0.03
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(15, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Patty CattyBatty" },
  17391. {
  17392. front: {
  17393. height: math.unit(7 + 1 / 12, "feet"),
  17394. weight: math.unit(175, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/patty-cattybatty/front.svg",
  17398. extra: 908 / 874,
  17399. bottom: 0.025
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Micro",
  17406. height: math.unit(1, "inch")
  17407. },
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(7 + 1 / 12, "feet")
  17411. },
  17412. {
  17413. name: "Mini Macro",
  17414. height: math.unit(155, "feet")
  17415. },
  17416. {
  17417. name: "Macro",
  17418. height: math.unit(1077, "feet")
  17419. },
  17420. {
  17421. name: "Mega Macro",
  17422. height: math.unit(47650, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Giga Macro",
  17427. height: math.unit(440, "miles")
  17428. },
  17429. {
  17430. name: "Tera Macro",
  17431. height: math.unit(8700, "miles")
  17432. },
  17433. {
  17434. name: "Planetary Macro",
  17435. height: math.unit(32700, "miles")
  17436. },
  17437. {
  17438. name: "Solar Macro",
  17439. height: math.unit(550000, "miles")
  17440. },
  17441. {
  17442. name: "Celestial Macro",
  17443. height: math.unit(2.5, "AU")
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Cappu" },
  17449. {
  17450. front: {
  17451. height: math.unit(4 + 5 / 12, "feet"),
  17452. weight: math.unit(90, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/cappu/front.svg",
  17456. extra: 1247 / 1152,
  17457. bottom: 0.012
  17458. }
  17459. },
  17460. },
  17461. [
  17462. {
  17463. name: "Normal",
  17464. height: math.unit(4 + 5 / 12, "feet"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Sebi" },
  17471. {
  17472. frontDressed: {
  17473. height: math.unit(70, "cm"),
  17474. weight: math.unit(6, "kg"),
  17475. name: "Front (Dressed)",
  17476. image: {
  17477. source: "./media/characters/sebi/front-dressed.svg",
  17478. extra: 713.5 / 686.5,
  17479. bottom: 0.003
  17480. }
  17481. },
  17482. front: {
  17483. height: math.unit(70, "cm"),
  17484. weight: math.unit(5, "kg"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/sebi/front.svg",
  17488. extra: 713.5 / 686.5,
  17489. bottom: 0.003
  17490. }
  17491. }
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(70, "cm"),
  17497. default: true
  17498. },
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(8, "meters")
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Typhek" },
  17507. {
  17508. front: {
  17509. height: math.unit(6, "feet"),
  17510. weight: math.unit(150, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/typhek/front.svg",
  17514. extra: 1948 / 1929,
  17515. bottom: 0.025
  17516. }
  17517. },
  17518. side: {
  17519. height: math.unit(6, "feet"),
  17520. weight: math.unit(150, "lb"),
  17521. name: "Side",
  17522. image: {
  17523. source: "./media/characters/typhek/side.svg",
  17524. extra: 2034 / 2010,
  17525. bottom: 0.003
  17526. }
  17527. },
  17528. back: {
  17529. height: math.unit(6, "feet"),
  17530. weight: math.unit(150, "lb"),
  17531. name: "Back",
  17532. image: {
  17533. source: "./media/characters/typhek/back.svg",
  17534. extra: 2005 / 1978,
  17535. bottom: 0.004
  17536. }
  17537. },
  17538. palm: {
  17539. height: math.unit(1.2, "feet"),
  17540. name: "Palm",
  17541. image: {
  17542. source: "./media/characters/typhek/palm.svg"
  17543. }
  17544. },
  17545. fist: {
  17546. height: math.unit(1.1, "feet"),
  17547. name: "Fist",
  17548. image: {
  17549. source: "./media/characters/typhek/fist.svg"
  17550. }
  17551. },
  17552. foot: {
  17553. height: math.unit(1.57, "feet"),
  17554. name: "Foot",
  17555. image: {
  17556. source: "./media/characters/typhek/foot.svg"
  17557. }
  17558. },
  17559. sole: {
  17560. height: math.unit(2.05, "feet"),
  17561. name: "Sole",
  17562. image: {
  17563. source: "./media/characters/typhek/sole.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(40, "stories"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "Megamacro",
  17575. height: math.unit(1, "mile")
  17576. },
  17577. {
  17578. name: "Gigamacro",
  17579. height: math.unit(4000, "solarradii")
  17580. },
  17581. {
  17582. name: "Universal",
  17583. height: math.unit(1.1, "universes")
  17584. }
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Kassy" },
  17589. {
  17590. side: {
  17591. height: math.unit(5 + 7 / 12, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Side",
  17594. image: {
  17595. source: "./media/characters/kassy/side.svg",
  17596. extra: 1280 / 1225,
  17597. bottom: 0.002
  17598. }
  17599. },
  17600. front: {
  17601. height: math.unit(5 + 7 / 12, "feet"),
  17602. weight: math.unit(150, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/kassy/front.svg",
  17606. extra: 1280 / 1225,
  17607. bottom: 0.025
  17608. }
  17609. },
  17610. back: {
  17611. height: math.unit(5 + 7 / 12, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Back",
  17614. image: {
  17615. source: "./media/characters/kassy/back.svg",
  17616. extra: 1280 / 1225,
  17617. bottom: 0.002
  17618. }
  17619. },
  17620. foot: {
  17621. height: math.unit(1.266, "feet"),
  17622. name: "Foot",
  17623. image: {
  17624. source: "./media/characters/kassy/foot.svg"
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(5 + 7 / 12, "feet")
  17632. },
  17633. {
  17634. name: "Macro",
  17635. height: math.unit(137, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Megamacro",
  17640. height: math.unit(1, "mile")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Neil" },
  17646. {
  17647. front: {
  17648. height: math.unit(6 + 1 / 12, "feet"),
  17649. weight: math.unit(200, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/neil/front.svg",
  17653. extra: 1326 / 1250,
  17654. bottom: 0.023
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(6 + 1 / 12, "feet"),
  17662. default: true
  17663. },
  17664. {
  17665. name: "Macro",
  17666. height: math.unit(200, "feet")
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Atticus" },
  17672. {
  17673. front: {
  17674. height: math.unit(5 + 9 / 12, "feet"),
  17675. weight: math.unit(190, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/atticus/front.svg",
  17679. extra: 2934 / 2785,
  17680. bottom: 0.025
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(5 + 9 / 12, "feet"),
  17688. default: true
  17689. },
  17690. {
  17691. name: "Macro",
  17692. height: math.unit(180, "feet")
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Milo" },
  17698. {
  17699. side: {
  17700. height: math.unit(9, "feet"),
  17701. weight: math.unit(650, "lb"),
  17702. name: "Side",
  17703. image: {
  17704. source: "./media/characters/milo/side.svg",
  17705. extra: 2644 / 2310,
  17706. bottom: 0.032
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(9, "feet"),
  17714. default: true
  17715. },
  17716. {
  17717. name: "Macro",
  17718. height: math.unit(300, "feet")
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Ijzer" },
  17724. {
  17725. side: {
  17726. height: math.unit(8, "meters"),
  17727. weight: math.unit(90000, "kg"),
  17728. name: "Side",
  17729. image: {
  17730. source: "./media/characters/ijzer/side.svg",
  17731. extra: 2756 / 1600,
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Small",
  17739. height: math.unit(3, "meters")
  17740. },
  17741. {
  17742. name: "Normal",
  17743. height: math.unit(8, "meters"),
  17744. default: true
  17745. },
  17746. {
  17747. name: "Normal+",
  17748. height: math.unit(10, "meters")
  17749. },
  17750. {
  17751. name: "Bigger",
  17752. height: math.unit(24, "meters")
  17753. },
  17754. {
  17755. name: "Huge",
  17756. height: math.unit(80, "meters")
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Luca Cervicum" },
  17762. {
  17763. front: {
  17764. height: math.unit(6 + 2 / 12, "feet"),
  17765. weight: math.unit(153, "lb"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/luca-cervicum/front.svg",
  17769. extra: 370 / 327,
  17770. bottom: 0.015
  17771. }
  17772. },
  17773. back: {
  17774. height: math.unit(6 + 2 / 12, "feet"),
  17775. weight: math.unit(153, "lb"),
  17776. name: "Back",
  17777. image: {
  17778. source: "./media/characters/luca-cervicum/back.svg",
  17779. extra: 367 / 333,
  17780. bottom: 0.005
  17781. }
  17782. },
  17783. frontGear: {
  17784. height: math.unit(6 + 2 / 12, "feet"),
  17785. weight: math.unit(173, "lb"),
  17786. name: "Front (Gear)",
  17787. image: {
  17788. source: "./media/characters/luca-cervicum/front-gear.svg",
  17789. extra: 377 / 333,
  17790. bottom: 0.006
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(6 + 2 / 12, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Oliver" },
  17804. {
  17805. front: {
  17806. height: math.unit(6 + 1 / 12, "feet"),
  17807. weight: math.unit(304, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/oliver/front.svg",
  17811. extra: 157 / 143,
  17812. bottom: 0.08
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(6 + 1 / 12, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Shane" },
  17826. {
  17827. front: {
  17828. height: math.unit(5 + 7 / 12, "feet"),
  17829. weight: math.unit(140, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/shane/front.svg",
  17833. extra: 304 / 289,
  17834. bottom: 0.005
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(5 + 7 / 12, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Shin" },
  17848. {
  17849. front: {
  17850. height: math.unit(5 + 9 / 12, "feet"),
  17851. weight: math.unit(178, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/shin/front.svg",
  17855. extra: 159 / 151,
  17856. bottom: 0.015
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(5 + 9 / 12, "feet"),
  17864. default: true
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Xerxes" },
  17870. {
  17871. front: {
  17872. height: math.unit(5 + 10 / 12, "feet"),
  17873. weight: math.unit(168, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/xerxes/front.svg",
  17877. extra: 282 / 260,
  17878. bottom: 0.045
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(5 + 10 / 12, "feet"),
  17886. default: true
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Chaska" },
  17892. {
  17893. front: {
  17894. height: math.unit(6 + 7 / 12, "feet"),
  17895. weight: math.unit(208, "lb"),
  17896. name: "Front",
  17897. image: {
  17898. source: "./media/characters/chaska/front.svg",
  17899. extra: 332 / 319,
  17900. bottom: 0.015
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(6 + 7 / 12, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Enuk" },
  17914. {
  17915. front: {
  17916. height: math.unit(5 + 8 / 12, "feet"),
  17917. weight: math.unit(208, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/enuk/front.svg",
  17921. extra: 437 / 406,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(5 + 8 / 12, "feet"),
  17930. default: true
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Bruun" },
  17936. {
  17937. front: {
  17938. height: math.unit(5 + 10 / 12, "feet"),
  17939. weight: math.unit(252, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/bruun/front.svg",
  17943. extra: 197 / 187,
  17944. bottom: 0.012
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(5 + 10 / 12, "feet"),
  17952. default: true
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Alexeev" },
  17958. {
  17959. front: {
  17960. height: math.unit(6 + 10 / 12, "feet"),
  17961. weight: math.unit(255, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/alexeev/front.svg",
  17965. extra: 213 / 200,
  17966. bottom: 0.05
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(6 + 10 / 12, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Evelyn" },
  17980. {
  17981. front: {
  17982. height: math.unit(2 + 8 / 12, "feet"),
  17983. weight: math.unit(22, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/evelyn/front.svg",
  17987. extra: 208 / 180
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(2 + 8 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Inca" },
  18001. {
  18002. front: {
  18003. height: math.unit(5 + 9 / 12, "feet"),
  18004. weight: math.unit(139, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/inca/front.svg",
  18008. extra: 294 / 291,
  18009. bottom: 0.03
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(5 + 9 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Magdalene" },
  18023. {
  18024. front: {
  18025. height: math.unit(5 + 1 / 12, "feet"),
  18026. weight: math.unit(84, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/magdalene/front.svg",
  18030. extra: 293 / 273
  18031. }
  18032. },
  18033. },
  18034. [
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(5 + 1 / 12, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Mera" },
  18044. {
  18045. front: {
  18046. height: math.unit(6 + 3 / 12, "feet"),
  18047. weight: math.unit(185, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/mera/front.svg",
  18051. extra: 291 / 277,
  18052. bottom: 0.03
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(6 + 3 / 12, "feet"),
  18060. default: true
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Ceres" },
  18066. {
  18067. front: {
  18068. height: math.unit(6 + 7 / 12, "feet"),
  18069. weight: math.unit(160, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/ceres/front.svg",
  18073. extra: 1023 / 950,
  18074. bottom: 0.027
  18075. }
  18076. },
  18077. back: {
  18078. height: math.unit(6 + 7 / 12, "feet"),
  18079. weight: math.unit(160, "lb"),
  18080. name: "Back",
  18081. image: {
  18082. source: "./media/characters/ceres/back.svg",
  18083. extra: 1023 / 950
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(6 + 7 / 12, "feet"),
  18091. default: true
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Kris" },
  18097. {
  18098. front: {
  18099. height: math.unit(5 + 10 / 12, "feet"),
  18100. weight: math.unit(150, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/kris/front.svg",
  18104. extra: 885 / 803,
  18105. bottom: 0.03
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(5 + 10 / 12, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Taluthus" },
  18119. {
  18120. front: {
  18121. height: math.unit(7, "feet"),
  18122. weight: math.unit(120, "kg"),
  18123. name: "Front",
  18124. image: {
  18125. source: "./media/characters/taluthus/front.svg",
  18126. extra: 903 / 833,
  18127. bottom: 0.015
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(7, "feet"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Macro",
  18139. height: math.unit(300, "feet")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Dawn" },
  18145. {
  18146. front: {
  18147. height: math.unit(5 + 9 / 12, "feet"),
  18148. weight: math.unit(145, "lb"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/dawn/front.svg",
  18152. extra: 2094 / 2016,
  18153. bottom: 0.025
  18154. }
  18155. },
  18156. back: {
  18157. height: math.unit(5 + 9 / 12, "feet"),
  18158. weight: math.unit(160, "lb"),
  18159. name: "Back",
  18160. image: {
  18161. source: "./media/characters/dawn/back.svg",
  18162. extra: 2112 / 2080,
  18163. bottom: 0.005
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(6 + 7 / 12, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Arador" },
  18177. {
  18178. anthro: {
  18179. height: math.unit(8 + 3 / 12, "feet"),
  18180. weight: math.unit(450, "lb"),
  18181. name: "Anthro",
  18182. image: {
  18183. source: "./media/characters/arador/anthro.svg",
  18184. extra: 1835 / 1718,
  18185. bottom: 0.025
  18186. }
  18187. },
  18188. feral: {
  18189. height: math.unit(4, "feet"),
  18190. weight: math.unit(200, "lb"),
  18191. name: "Feral",
  18192. image: {
  18193. source: "./media/characters/arador/feral.svg",
  18194. extra: 1683 / 1514,
  18195. bottom: 0.07
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(8 + 3 / 12, "feet")
  18203. },
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(82.5, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Dharsi" },
  18213. {
  18214. front: {
  18215. height: math.unit(5 + 10 / 12, "feet"),
  18216. weight: math.unit(125, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/dharsi/front.svg",
  18220. extra: 716 / 630,
  18221. bottom: 0.035
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Nano",
  18228. height: math.unit(100, "nm")
  18229. },
  18230. {
  18231. name: "Micro",
  18232. height: math.unit(2, "inches")
  18233. },
  18234. {
  18235. name: "Normal",
  18236. height: math.unit(5 + 10 / 12, "feet"),
  18237. default: true
  18238. },
  18239. {
  18240. name: "Macro",
  18241. height: math.unit(1000, "feet")
  18242. },
  18243. {
  18244. name: "Megamacro",
  18245. height: math.unit(10, "miles")
  18246. },
  18247. {
  18248. name: "Gigamacro",
  18249. height: math.unit(3000, "miles")
  18250. },
  18251. {
  18252. name: "Teramacro",
  18253. height: math.unit(500000, "miles")
  18254. },
  18255. {
  18256. name: "Teramacro+",
  18257. height: math.unit(30, "galaxies")
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Deathy" },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/deathy/front.svg",
  18270. extra: 1552 / 1463,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. side: {
  18275. height: math.unit(6, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Side",
  18278. image: {
  18279. source: "./media/characters/deathy/side.svg",
  18280. extra: 1604 / 1455,
  18281. bottom: 0.025
  18282. }
  18283. },
  18284. back: {
  18285. height: math.unit(6, "feet"),
  18286. weight: math.unit(150, "lb"),
  18287. name: "Back",
  18288. image: {
  18289. source: "./media/characters/deathy/back.svg",
  18290. extra: 1580 / 1463,
  18291. bottom: 0.005
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Micro",
  18298. height: math.unit(5, "millimeters")
  18299. },
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(6 + 5 / 12, "feet"),
  18303. default: true
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Juniper" },
  18309. {
  18310. front: {
  18311. height: math.unit(16, "feet"),
  18312. weight: math.unit(4000, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/juniper/front.svg",
  18316. bottom: 0.04
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(16, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Hipster" },
  18330. {
  18331. front: {
  18332. height: math.unit(6, "feet"),
  18333. weight: math.unit(150, "lb"),
  18334. name: "Front",
  18335. image: {
  18336. source: "./media/characters/hipster/front.svg",
  18337. extra: 1312 / 1209,
  18338. bottom: 0.025
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(6, "feet"),
  18343. weight: math.unit(150, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/hipster/back.svg",
  18347. extra: 1281 / 1196,
  18348. bottom: 0.01
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Micro",
  18355. height: math.unit(1, "mm")
  18356. },
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(4, "inches"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(500, "feet")
  18365. },
  18366. {
  18367. name: "Megamacro",
  18368. height: math.unit(1000, "miles")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Tendirmuldr" },
  18374. {
  18375. front: {
  18376. height: math.unit(6, "feet"),
  18377. weight: math.unit(150, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/tendirmuldr/front.svg",
  18381. extra: 1878 / 1772,
  18382. bottom: 0.015
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Megamacro",
  18389. height: math.unit(1500, "miles"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Mort" },
  18396. {
  18397. front: {
  18398. height: math.unit(14, "feet"),
  18399. weight: math.unit(12000, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/mort/front.svg",
  18403. extra: 365 / 318,
  18404. bottom: 0.01
  18405. }
  18406. },
  18407. side: {
  18408. height: math.unit(14, "feet"),
  18409. weight: math.unit(12000, "lb"),
  18410. name: "Side",
  18411. image: {
  18412. source: "./media/characters/mort/side.svg",
  18413. extra: 365 / 318,
  18414. bottom: 0.052
  18415. },
  18416. default: true
  18417. },
  18418. back: {
  18419. height: math.unit(14, "feet"),
  18420. weight: math.unit(12000, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/mort/back.svg",
  18424. extra: 371 / 332,
  18425. bottom: 0.18
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(14, "feet"),
  18433. default: true
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Lycoa" },
  18439. {
  18440. front: {
  18441. height: math.unit(8, "feet"),
  18442. weight: math.unit(1, "ton"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/lycoa/front.svg",
  18446. extra: 1875 / 1789,
  18447. bottom: 0.022
  18448. }
  18449. },
  18450. back: {
  18451. height: math.unit(8, "feet"),
  18452. weight: math.unit(1, "ton"),
  18453. name: "Back",
  18454. image: {
  18455. source: "./media/characters/lycoa/back.svg",
  18456. extra: 1835 / 1781,
  18457. bottom: 0.03
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(8, "feet"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(30, "feet")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Naldara" },
  18475. {
  18476. front: {
  18477. height: math.unit(4 + 2 / 12, "feet"),
  18478. weight: math.unit(70, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/naldara/front.svg",
  18482. extra: 841 / 720,
  18483. bottom: 0.04
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(4 + 2 / 12, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Briar" },
  18497. {
  18498. front: {
  18499. height: math.unit(13 + 7 / 12, "feet"),
  18500. weight: math.unit(1500, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/briar/front.svg",
  18504. extra: 626 / 596,
  18505. bottom: 0.08
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(13 + 7 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Vanguard" },
  18519. {
  18520. side: {
  18521. height: math.unit(10, "feet"),
  18522. weight: math.unit(500, "lb"),
  18523. name: "Side",
  18524. image: {
  18525. source: "./media/characters/vanguard/side.svg",
  18526. extra: 502 / 425,
  18527. bottom: 0.087
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(10, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Artemis" },
  18541. {
  18542. front: {
  18543. height: math.unit(7.5, "feet"),
  18544. weight: math.unit(2, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/artemis/front.svg",
  18548. extra: 1192 / 1075,
  18549. bottom: 0.07
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(7.5, "feet"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Enlarged",
  18561. height: math.unit(12, "feet")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Kira" },
  18567. {
  18568. front: {
  18569. height: math.unit(5 + 3 / 12, "feet"),
  18570. weight: math.unit(160, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/kira/front.svg",
  18574. extra: 906 / 786,
  18575. bottom: 0.01
  18576. }
  18577. },
  18578. back: {
  18579. height: math.unit(5 + 3 / 12, "feet"),
  18580. weight: math.unit(160, "lb"),
  18581. name: "Back",
  18582. image: {
  18583. source: "./media/characters/kira/back.svg",
  18584. extra: 882 / 757,
  18585. bottom: 0.005
  18586. }
  18587. },
  18588. frontDressed: {
  18589. height: math.unit(5 + 3 / 12, "feet"),
  18590. weight: math.unit(160, "lb"),
  18591. name: "Front (Dressed)",
  18592. image: {
  18593. source: "./media/characters/kira/front-dressed.svg",
  18594. extra: 906 / 786,
  18595. bottom: 0.01
  18596. }
  18597. },
  18598. beans: {
  18599. height: math.unit(0.92, "feet"),
  18600. name: "Beans",
  18601. image: {
  18602. source: "./media/characters/kira/beans.svg"
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(5 + 3 / 12, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Scramble" },
  18616. {
  18617. front: {
  18618. height: math.unit(5 + 4 / 12, "feet"),
  18619. weight: math.unit(145, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/scramble/front.svg",
  18623. extra: 763 / 727,
  18624. bottom: 0.05
  18625. }
  18626. },
  18627. back: {
  18628. height: math.unit(5 + 4 / 12, "feet"),
  18629. weight: math.unit(145, "lb"),
  18630. name: "Back",
  18631. image: {
  18632. source: "./media/characters/scramble/back.svg",
  18633. extra: 826 / 737,
  18634. bottom: 0.002
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(5 + 4 / 12, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Biscuit" },
  18648. {
  18649. side: {
  18650. height: math.unit(6 + 2 / 12, "feet"),
  18651. weight: math.unit(190, "lb"),
  18652. name: "Side",
  18653. image: {
  18654. source: "./media/characters/biscuit/side.svg",
  18655. extra: 858 / 791,
  18656. bottom: 0.044
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(6 + 2 / 12, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Poffin" },
  18670. {
  18671. front: {
  18672. height: math.unit(5 + 2 / 12, "feet"),
  18673. weight: math.unit(120, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/poffin/front.svg",
  18677. extra: 786 / 680,
  18678. bottom: 0.005
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(5 + 2 / 12, "feet"),
  18686. default: true
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Dhari" },
  18692. {
  18693. front: {
  18694. height: math.unit(6 + 3 / 12, "feet"),
  18695. weight: math.unit(519, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/dhari/front.svg",
  18699. extra: 1048 / 946,
  18700. bottom: 0.015
  18701. }
  18702. },
  18703. back: {
  18704. height: math.unit(6 + 3 / 12, "feet"),
  18705. weight: math.unit(519, "lb"),
  18706. name: "Back",
  18707. image: {
  18708. source: "./media/characters/dhari/back.svg",
  18709. extra: 1048 / 931,
  18710. bottom: 0.005
  18711. }
  18712. },
  18713. frontDressed: {
  18714. height: math.unit(6 + 3 / 12, "feet"),
  18715. weight: math.unit(519, "lb"),
  18716. name: "Front (Dressed)",
  18717. image: {
  18718. source: "./media/characters/dhari/front-dressed.svg",
  18719. extra: 1713 / 1546,
  18720. bottom: 0.02
  18721. }
  18722. },
  18723. backDressed: {
  18724. height: math.unit(6 + 3 / 12, "feet"),
  18725. weight: math.unit(519, "lb"),
  18726. name: "Back (Dressed)",
  18727. image: {
  18728. source: "./media/characters/dhari/back-dressed.svg",
  18729. extra: 1699 / 1537,
  18730. bottom: 0.01
  18731. }
  18732. },
  18733. maw: {
  18734. height: math.unit(0.95, "feet"),
  18735. name: "Maw",
  18736. image: {
  18737. source: "./media/characters/dhari/maw.svg"
  18738. }
  18739. },
  18740. wereFront: {
  18741. height: math.unit(12 + 8 / 12, "feet"),
  18742. weight: math.unit(4000, "lb"),
  18743. name: "Front (Were)",
  18744. image: {
  18745. source: "./media/characters/dhari/were-front.svg",
  18746. extra: 1065 / 969,
  18747. bottom: 0.015
  18748. }
  18749. },
  18750. wereBack: {
  18751. height: math.unit(12 + 8 / 12, "feet"),
  18752. weight: math.unit(4000, "lb"),
  18753. name: "Back (Were)",
  18754. image: {
  18755. source: "./media/characters/dhari/were-back.svg",
  18756. extra: 1065 / 969,
  18757. bottom: 0.012
  18758. }
  18759. },
  18760. wereMaw: {
  18761. height: math.unit(0.625, "meters"),
  18762. name: "Maw (Were)",
  18763. image: {
  18764. source: "./media/characters/dhari/were-maw.svg"
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(6 + 3 / 12, "feet"),
  18772. default: true
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Rena Dyne" },
  18778. {
  18779. anthro: {
  18780. height: math.unit(5 + 7 / 12, "feet"),
  18781. weight: math.unit(175, "lb"),
  18782. name: "Anthro",
  18783. image: {
  18784. source: "./media/characters/rena-dyne/anthro.svg",
  18785. extra: 1849 / 1785,
  18786. bottom: 0.005
  18787. }
  18788. },
  18789. taur: {
  18790. height: math.unit(15 + 6 / 12, "feet"),
  18791. weight: math.unit(8000, "lb"),
  18792. name: "Taur",
  18793. image: {
  18794. source: "./media/characters/rena-dyne/taur.svg",
  18795. extra: 2315 / 2234,
  18796. bottom: 0.033
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(5 + 7 / 12, "feet"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Weremeep" },
  18810. {
  18811. front: {
  18812. height: math.unit(8, "feet"),
  18813. weight: math.unit(600, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/weremeep/front.svg",
  18817. extra: 967 / 862,
  18818. bottom: 0.01
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(8, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Lorg",
  18830. height: math.unit(12, "feet")
  18831. },
  18832. {
  18833. name: "Oh Lawd She Comin'",
  18834. height: math.unit(20, "feet")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Reza" },
  18840. {
  18841. front: {
  18842. height: math.unit(4, "feet"),
  18843. weight: math.unit(90, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/reza/front.svg",
  18847. extra: 1183 / 1111,
  18848. bottom: 0.017
  18849. }
  18850. },
  18851. back: {
  18852. height: math.unit(4, "feet"),
  18853. weight: math.unit(90, "lb"),
  18854. name: "Back",
  18855. image: {
  18856. source: "./media/characters/reza/back.svg",
  18857. extra: 1183 / 1111,
  18858. bottom: 0.01
  18859. }
  18860. },
  18861. drake: {
  18862. height: math.unit(30, "feet"),
  18863. weight: math.unit(246960, "lb"),
  18864. name: "Drake",
  18865. image: {
  18866. source: "./media/characters/reza/drake.svg",
  18867. extra: 2350/2024,
  18868. bottom: 60.7/2403
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(4, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Athea" },
  18882. {
  18883. side: {
  18884. height: math.unit(15, "feet"),
  18885. weight: math.unit(14, "tons"),
  18886. name: "Side",
  18887. image: {
  18888. source: "./media/characters/athea/side.svg",
  18889. extra: 960 / 540,
  18890. bottom: 0.003
  18891. }
  18892. },
  18893. sitting: {
  18894. height: math.unit(6 * 2.85, "feet"),
  18895. weight: math.unit(14, "tons"),
  18896. name: "Sitting",
  18897. image: {
  18898. source: "./media/characters/athea/sitting.svg",
  18899. extra: 621 / 581,
  18900. bottom: 0.075
  18901. }
  18902. },
  18903. maw: {
  18904. height: math.unit(7.59498031496063, "feet"),
  18905. name: "Maw",
  18906. image: {
  18907. source: "./media/characters/athea/maw.svg"
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Lap Cat",
  18914. height: math.unit(2.5, "feet")
  18915. },
  18916. {
  18917. name: "Minimacro",
  18918. height: math.unit(15, "feet"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(120, "feet")
  18924. },
  18925. {
  18926. name: "Macro+",
  18927. height: math.unit(640, "feet")
  18928. },
  18929. {
  18930. name: "Colossus",
  18931. height: math.unit(2.2, "miles")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Seroko" },
  18937. {
  18938. front: {
  18939. height: math.unit(8 + 8 / 12, "feet"),
  18940. weight: math.unit(130, "kg"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/seroko/front.svg",
  18944. extra: 1385 / 1280,
  18945. bottom: 0.025
  18946. }
  18947. },
  18948. back: {
  18949. height: math.unit(8 + 8 / 12, "feet"),
  18950. weight: math.unit(130, "kg"),
  18951. name: "Back",
  18952. image: {
  18953. source: "./media/characters/seroko/back.svg",
  18954. extra: 1369 / 1238,
  18955. bottom: 0.018
  18956. }
  18957. },
  18958. frontDressed: {
  18959. height: math.unit(8 + 8 / 12, "feet"),
  18960. weight: math.unit(130, "kg"),
  18961. name: "Front (Dressed)",
  18962. image: {
  18963. source: "./media/characters/seroko/front-dressed.svg",
  18964. extra: 1366 / 1275,
  18965. bottom: 0.03
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(8 + 8 / 12, "feet"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Quatzi" },
  18979. {
  18980. front: {
  18981. height: math.unit(5.5, "feet"),
  18982. weight: math.unit(160, "lb"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/quatzi/front.svg",
  18986. extra: 2346 / 2242,
  18987. bottom: 0.015
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Normal",
  18994. height: math.unit(5.5, "feet"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Big",
  18999. height: math.unit(7.7, "feet")
  19000. },
  19001. ]
  19002. ))
  19003. characterMakers.push(() => makeCharacter(
  19004. { name: "Sen" },
  19005. {
  19006. front: {
  19007. height: math.unit(5 + 11 / 12, "feet"),
  19008. weight: math.unit(180, "lb"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/sen/front.svg",
  19012. extra: 1321 / 1254,
  19013. bottom: 0.015
  19014. }
  19015. },
  19016. side: {
  19017. height: math.unit(5 + 11 / 12, "feet"),
  19018. weight: math.unit(180, "lb"),
  19019. name: "Side",
  19020. image: {
  19021. source: "./media/characters/sen/side.svg",
  19022. extra: 1321 / 1254,
  19023. bottom: 0.007
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(5 + 11 / 12, "feet"),
  19028. weight: math.unit(180, "lb"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/sen/back.svg",
  19032. extra: 1321 / 1254
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(5 + 11 / 12, "feet"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Fruity" },
  19046. {
  19047. front: {
  19048. height: math.unit(166.6, "cm"),
  19049. weight: math.unit(66.6, "kg"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/fruity/front.svg",
  19053. extra: 1510 / 1386,
  19054. bottom: 0.04
  19055. }
  19056. },
  19057. back: {
  19058. height: math.unit(166.6, "cm"),
  19059. weight: math.unit(66.6, "lb"),
  19060. name: "Back",
  19061. image: {
  19062. source: "./media/characters/fruity/back.svg",
  19063. extra: 1563 / 1435,
  19064. bottom: 0.005
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(166.6, "cm"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Demonic",
  19076. height: math.unit(166.6, "feet")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Zost" },
  19082. {
  19083. side: {
  19084. height: math.unit(10, "feet"),
  19085. weight: math.unit(500, "lb"),
  19086. name: "Side",
  19087. image: {
  19088. source: "./media/characters/zost/side.svg",
  19089. extra: 966 / 880,
  19090. bottom: 0.075
  19091. }
  19092. },
  19093. mawFront: {
  19094. height: math.unit(1.08, "meters"),
  19095. name: "Maw (Front)",
  19096. image: {
  19097. source: "./media/characters/zost/maw-front.svg"
  19098. }
  19099. },
  19100. mawSide: {
  19101. height: math.unit(2.66, "feet"),
  19102. name: "Maw (Side)",
  19103. image: {
  19104. source: "./media/characters/zost/maw-side.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(10, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Luci" },
  19118. {
  19119. front: {
  19120. height: math.unit(5 + 4 / 12, "feet"),
  19121. weight: math.unit(120, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/luci/front.svg",
  19125. extra: 1985 / 1884,
  19126. bottom: 0.04
  19127. }
  19128. },
  19129. back: {
  19130. height: math.unit(5 + 4 / 12, "feet"),
  19131. weight: math.unit(120, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/luci/back.svg",
  19135. extra: 1892 / 1791,
  19136. bottom: 0.002
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(5 + 4 / 12, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "2th" },
  19150. {
  19151. front: {
  19152. height: math.unit(1500, "feet"),
  19153. weight: math.unit(3.8e6, "tons"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/2th/front.svg",
  19157. extra: 3489 / 3350,
  19158. bottom: 0.1
  19159. }
  19160. },
  19161. foot: {
  19162. height: math.unit(461, "feet"),
  19163. name: "Foot",
  19164. image: {
  19165. source: "./media/characters/2th/foot.svg"
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "\"Micro\"",
  19172. height: math.unit(15 + 7 / 12, "feet")
  19173. },
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(1500, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Macro",
  19181. height: math.unit(5000, "feet")
  19182. },
  19183. {
  19184. name: "Megamacro",
  19185. height: math.unit(15, "miles")
  19186. },
  19187. {
  19188. name: "Gigamacro",
  19189. height: math.unit(4000, "miles")
  19190. },
  19191. {
  19192. name: "Galactic",
  19193. height: math.unit(50, "AU")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Amethyst" },
  19199. {
  19200. front: {
  19201. height: math.unit(5 + 6 / 12, "feet"),
  19202. weight: math.unit(220, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/amethyst/front.svg",
  19206. extra: 2078 / 2040,
  19207. bottom: 0.045
  19208. }
  19209. },
  19210. back: {
  19211. height: math.unit(5 + 6 / 12, "feet"),
  19212. weight: math.unit(220, "lb"),
  19213. name: "Back",
  19214. image: {
  19215. source: "./media/characters/amethyst/back.svg",
  19216. extra: 2021 / 1989,
  19217. bottom: 0.02
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(5 + 6 / 12, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Yumi Akiyama" },
  19231. {
  19232. front: {
  19233. height: math.unit(4 + 11 / 12, "feet"),
  19234. weight: math.unit(120, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/yumi-akiyama/front.svg",
  19238. extra: 1327 / 1235,
  19239. bottom: 0.02
  19240. }
  19241. },
  19242. back: {
  19243. height: math.unit(4 + 11 / 12, "feet"),
  19244. weight: math.unit(120, "lb"),
  19245. name: "Back",
  19246. image: {
  19247. source: "./media/characters/yumi-akiyama/back.svg",
  19248. extra: 1287 / 1245,
  19249. bottom: 0.002
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Galactic",
  19256. height: math.unit(50, "galaxies"),
  19257. default: true
  19258. },
  19259. {
  19260. name: "Universal",
  19261. height: math.unit(100, "universes")
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Rifter Yrmori" },
  19267. {
  19268. front: {
  19269. height: math.unit(8, "feet"),
  19270. weight: math.unit(500, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/rifter-yrmori/front.svg",
  19274. extra: 1180 / 1125,
  19275. bottom: 0.02
  19276. }
  19277. },
  19278. back: {
  19279. height: math.unit(8, "feet"),
  19280. weight: math.unit(500, "lb"),
  19281. name: "Back",
  19282. image: {
  19283. source: "./media/characters/rifter-yrmori/back.svg",
  19284. extra: 1190 / 1145,
  19285. bottom: 0.001
  19286. }
  19287. },
  19288. wings: {
  19289. height: math.unit(7.75, "feet"),
  19290. weight: math.unit(500, "lb"),
  19291. name: "Wings",
  19292. image: {
  19293. source: "./media/characters/rifter-yrmori/wings.svg",
  19294. extra: 1357 / 1285
  19295. }
  19296. },
  19297. maw: {
  19298. height: math.unit(0.8, "feet"),
  19299. name: "Maw",
  19300. image: {
  19301. source: "./media/characters/rifter-yrmori/maw.svg"
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Normal",
  19308. height: math.unit(8, "feet"),
  19309. default: true
  19310. },
  19311. {
  19312. name: "Macro",
  19313. height: math.unit(42, "meters")
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Tahajin" },
  19319. {
  19320. were: {
  19321. height: math.unit(25 + 6 / 12, "feet"),
  19322. weight: math.unit(10000, "lb"),
  19323. name: "Were",
  19324. image: {
  19325. source: "./media/characters/tahajin/were.svg",
  19326. extra: 801 / 770,
  19327. bottom: 0.042
  19328. }
  19329. },
  19330. aquatic: {
  19331. height: math.unit(6 + 4 / 12, "feet"),
  19332. weight: math.unit(160, "lb"),
  19333. name: "Aquatic",
  19334. image: {
  19335. source: "./media/characters/tahajin/aquatic.svg",
  19336. extra: 572 / 542,
  19337. bottom: 0.04
  19338. }
  19339. },
  19340. chow: {
  19341. height: math.unit(8 + 11 / 12, "feet"),
  19342. weight: math.unit(450, "lb"),
  19343. name: "Chow",
  19344. image: {
  19345. source: "./media/characters/tahajin/chow.svg",
  19346. extra: 660 / 640,
  19347. bottom: 0.015
  19348. }
  19349. },
  19350. demiNaga: {
  19351. height: math.unit(6 + 8 / 12, "feet"),
  19352. weight: math.unit(300, "lb"),
  19353. name: "Demi Naga",
  19354. image: {
  19355. source: "./media/characters/tahajin/demi-naga.svg",
  19356. extra: 643 / 615,
  19357. bottom: 0.1
  19358. }
  19359. },
  19360. data: {
  19361. height: math.unit(5, "inches"),
  19362. weight: math.unit(0.1, "lb"),
  19363. name: "Data",
  19364. image: {
  19365. source: "./media/characters/tahajin/data.svg"
  19366. }
  19367. },
  19368. fluu: {
  19369. height: math.unit(5 + 7 / 12, "feet"),
  19370. weight: math.unit(140, "lb"),
  19371. name: "Fluu",
  19372. image: {
  19373. source: "./media/characters/tahajin/fluu.svg",
  19374. extra: 628 / 592,
  19375. bottom: 0.02
  19376. }
  19377. },
  19378. starWarrior: {
  19379. height: math.unit(4 + 5 / 12, "feet"),
  19380. weight: math.unit(50, "lb"),
  19381. name: "Star Warrior",
  19382. image: {
  19383. source: "./media/characters/tahajin/star-warrior.svg"
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(25 + 6 / 12, "feet"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Gabira" },
  19397. {
  19398. front: {
  19399. height: math.unit(8, "feet"),
  19400. weight: math.unit(350, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/gabira/front.svg",
  19404. extra: 608 / 580,
  19405. bottom: 0.03
  19406. }
  19407. },
  19408. back: {
  19409. height: math.unit(8, "feet"),
  19410. weight: math.unit(350, "lb"),
  19411. name: "Back",
  19412. image: {
  19413. source: "./media/characters/gabira/back.svg",
  19414. extra: 608 / 580,
  19415. bottom: 0.03
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(8, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Sasha Katraine" },
  19429. {
  19430. front: {
  19431. height: math.unit(5 + 3 / 12, "feet"),
  19432. weight: math.unit(137, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/sasha-katraine/front.svg",
  19436. bottom: 0.045
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Micro",
  19443. height: math.unit(5, "inches")
  19444. },
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(5 + 3 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Der" },
  19454. {
  19455. side: {
  19456. height: math.unit(4, "inches"),
  19457. weight: math.unit(200, "grams"),
  19458. name: "Side",
  19459. image: {
  19460. source: "./media/characters/der/side.svg",
  19461. extra: 719 / 400,
  19462. bottom: 30.6 / 749.9187
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Micro",
  19469. height: math.unit(4, "inches"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Fixerdragon" },
  19476. {
  19477. side: {
  19478. height: math.unit(30, "meters"),
  19479. weight: math.unit(700, "tonnes"),
  19480. name: "Side",
  19481. image: {
  19482. source: "./media/characters/fixerdragon/side.svg",
  19483. extra: (1293.0514 - 116.03) / 1106.86,
  19484. bottom: 116.03 / 1293.0514
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Planck",
  19491. height: math.unit(1.6e-35, "meters")
  19492. },
  19493. {
  19494. name: "Micro",
  19495. height: math.unit(0.4, "meters")
  19496. },
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(30, "meters"),
  19500. default: true
  19501. },
  19502. {
  19503. name: "Megamacro",
  19504. height: math.unit(1.2, "megameters")
  19505. },
  19506. {
  19507. name: "Teramacro",
  19508. height: math.unit(130, "terameters")
  19509. },
  19510. {
  19511. name: "Yottamacro",
  19512. height: math.unit(6200, "yottameters")
  19513. },
  19514. ]
  19515. ));
  19516. characterMakers.push(() => makeCharacter(
  19517. { name: "Kite" },
  19518. {
  19519. front: {
  19520. height: math.unit(8, "feet"),
  19521. weight: math.unit(250, "lb"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/kite/front.svg",
  19525. extra: 2796 / 2659,
  19526. bottom: 0.002
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(8, "feet"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(360, "feet")
  19539. },
  19540. {
  19541. name: "Megamacro",
  19542. height: math.unit(1500, "feet")
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Poojawa Vynar" },
  19548. {
  19549. front: {
  19550. height: math.unit(5 + 10 / 12, "feet"),
  19551. weight: math.unit(150, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/poojawa-vynar/front.svg",
  19555. extra: (1506.1547 - 55) / 1356.6,
  19556. bottom: 55 / 1506.1547
  19557. }
  19558. },
  19559. frontTailless: {
  19560. height: math.unit(5 + 10 / 12, "feet"),
  19561. weight: math.unit(150, "lb"),
  19562. name: "Front (Tailless)",
  19563. image: {
  19564. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19565. extra: (1506.1547 - 55) / 1356.6,
  19566. bottom: 55 / 1506.1547
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(5 + 10 / 12, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Violette" },
  19580. {
  19581. front: {
  19582. height: math.unit(293, "meters"),
  19583. weight: math.unit(70400, "tons"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/violette/front.svg",
  19587. extra: 1227 / 1180,
  19588. bottom: 0.005
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(293, "meters"),
  19593. weight: math.unit(70400, "tons"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/violette/back.svg",
  19597. extra: 1227 / 1180,
  19598. bottom: 0.005
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Macro",
  19605. height: math.unit(293, "meters"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Alessandra" },
  19612. {
  19613. front: {
  19614. height: math.unit(1050, "feet"),
  19615. weight: math.unit(200000, "tons"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/alessandra/front.svg",
  19619. extra: 960 / 912,
  19620. bottom: 0.06
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Macro",
  19627. height: math.unit(1050, "feet")
  19628. },
  19629. {
  19630. name: "Macro+",
  19631. height: math.unit(900, "meters"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(5, "feet"),
  19641. weight: math.unit(187, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/person/front.svg",
  19645. extra: 3087 / 2945,
  19646. bottom: 91 / 3181
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Micro",
  19653. height: math.unit(3, "inches")
  19654. },
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(5, "feet"),
  19658. default: true
  19659. },
  19660. {
  19661. name: "Macro",
  19662. height: math.unit(90, "feet")
  19663. },
  19664. {
  19665. name: "Max Size",
  19666. height: math.unit(280, "feet")
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Ty" },
  19672. {
  19673. front: {
  19674. height: math.unit(4.5, "meters"),
  19675. weight: math.unit(3200, "lb"),
  19676. name: "Front",
  19677. image: {
  19678. source: "./media/characters/ty/front.svg",
  19679. extra: 1038 / 960,
  19680. bottom: 31.156 / 1068
  19681. }
  19682. },
  19683. back: {
  19684. height: math.unit(4.5, "meters"),
  19685. weight: math.unit(3200, "lb"),
  19686. name: "Back",
  19687. image: {
  19688. source: "./media/characters/ty/back.svg",
  19689. extra: 1044 / 966,
  19690. bottom: 7.48 / 1049
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(4.5, "meters"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Rocky" },
  19704. {
  19705. front: {
  19706. height: math.unit(5 + 4 / 12, "feet"),
  19707. weight: math.unit(115, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/rocky/front.svg",
  19711. extra: 1012 / 975,
  19712. bottom: 54 / 1066
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(5 + 4 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Ruin" },
  19726. {
  19727. upright: {
  19728. height: math.unit(6, "meters"),
  19729. weight: math.unit(4000, "kg"),
  19730. name: "Upright",
  19731. image: {
  19732. source: "./media/characters/ruin/upright.svg",
  19733. extra: 668 / 661,
  19734. bottom: 42 / 799.8396
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(6, "meters"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Robin" },
  19748. {
  19749. front: {
  19750. height: math.unit(5, "feet"),
  19751. weight: math.unit(106, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/robin/front.svg",
  19755. extra: 862 / 799,
  19756. bottom: 42.4 / 914.8856
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(5, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Saian" },
  19770. {
  19771. side: {
  19772. height: math.unit(3, "feet"),
  19773. weight: math.unit(225, "lb"),
  19774. name: "Side",
  19775. image: {
  19776. source: "./media/characters/saian/side.svg",
  19777. extra: 566 / 356,
  19778. bottom: 79.7 / 643
  19779. }
  19780. },
  19781. maw: {
  19782. height: math.unit(2.85, "feet"),
  19783. name: "Maw",
  19784. image: {
  19785. source: "./media/characters/saian/maw.svg"
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(3, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Equus Silvermane" },
  19799. {
  19800. side: {
  19801. height: math.unit(8, "feet"),
  19802. weight: math.unit(300, "lb"),
  19803. name: "Side",
  19804. image: {
  19805. source: "./media/characters/equus-silvermane/side.svg",
  19806. extra: 2176 / 2050,
  19807. bottom: 65.7 / 2245
  19808. }
  19809. },
  19810. front: {
  19811. height: math.unit(8, "feet"),
  19812. weight: math.unit(300, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/equus-silvermane/front.svg",
  19816. extra: 4633 / 4400,
  19817. bottom: 71.3 / 4706.915
  19818. }
  19819. },
  19820. sideStepping: {
  19821. height: math.unit(8, "feet"),
  19822. weight: math.unit(300, "lb"),
  19823. name: "Side (Stepping)",
  19824. image: {
  19825. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19826. extra: 1968 / 1860,
  19827. bottom: 16.4 / 1989
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(8, "feet")
  19835. },
  19836. {
  19837. name: "Minimacro",
  19838. height: math.unit(75, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(150, "feet")
  19844. },
  19845. {
  19846. name: "Macro+",
  19847. height: math.unit(1000, "feet")
  19848. },
  19849. {
  19850. name: "Megamacro",
  19851. height: math.unit(1, "mile")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Windar" },
  19857. {
  19858. side: {
  19859. height: math.unit(20, "feet"),
  19860. weight: math.unit(30000, "kg"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/windar/side.svg",
  19864. extra: 1491 / 1248,
  19865. bottom: 82.56 / 1568
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(20, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Melody" },
  19879. {
  19880. side: {
  19881. height: math.unit(15.66, "feet"),
  19882. weight: math.unit(150, "lb"),
  19883. name: "Side",
  19884. image: {
  19885. source: "./media/characters/melody/side.svg",
  19886. extra: 1097 / 944,
  19887. bottom: 11.8 / 1109
  19888. }
  19889. },
  19890. sideOutfit: {
  19891. height: math.unit(15.66, "feet"),
  19892. weight: math.unit(150, "lb"),
  19893. name: "Side (Outfit)",
  19894. image: {
  19895. source: "./media/characters/melody/side-outfit.svg",
  19896. extra: 1097 / 944,
  19897. bottom: 11.8 / 1109
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(15.66, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Windera" },
  19911. {
  19912. front: {
  19913. height: math.unit(8, "feet"),
  19914. weight: math.unit(325, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/windera/front.svg",
  19918. extra: 3180 / 2845,
  19919. bottom: 178 / 3365
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(8, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Sonear" },
  19933. {
  19934. front: {
  19935. height: math.unit(28.75, "feet"),
  19936. weight: math.unit(2000, "kg"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/sonear/front.svg",
  19940. extra: 1041.1 / 964.9,
  19941. bottom: 53.7 / 1096.6
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(28.75, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Kanara" },
  19955. {
  19956. side: {
  19957. height: math.unit(25.5, "feet"),
  19958. weight: math.unit(23000, "kg"),
  19959. name: "Side",
  19960. image: {
  19961. source: "./media/characters/kanara/side.svg"
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(25.5, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Ereus" },
  19975. {
  19976. side: {
  19977. height: math.unit(10, "feet"),
  19978. weight: math.unit(1000, "kg"),
  19979. name: "Side",
  19980. image: {
  19981. source: "./media/characters/ereus/side.svg",
  19982. extra: 1157 / 959,
  19983. bottom: 153 / 1312.5
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(10, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "E-ter" },
  19997. {
  19998. side: {
  19999. height: math.unit(4.5, "feet"),
  20000. weight: math.unit(500, "lb"),
  20001. name: "Side",
  20002. image: {
  20003. source: "./media/characters/e-ter/side.svg",
  20004. extra: 1550 / 1248,
  20005. bottom: 146 / 1694
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(4.5, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Yamie" },
  20019. {
  20020. side: {
  20021. height: math.unit(9.7, "feet"),
  20022. weight: math.unit(4000, "kg"),
  20023. name: "Side",
  20024. image: {
  20025. source: "./media/characters/yamie/side.svg"
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(9.7, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Anders" },
  20039. {
  20040. front: {
  20041. height: math.unit(50, "feet"),
  20042. weight: math.unit(50000, "kg"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/anders/front.svg",
  20046. extra: 570 / 539,
  20047. bottom: 14.7 / 586.7
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Large",
  20054. height: math.unit(50, "feet")
  20055. },
  20056. {
  20057. name: "Macro",
  20058. height: math.unit(2000, "feet"),
  20059. default: true
  20060. },
  20061. {
  20062. name: "Megamacro",
  20063. height: math.unit(12, "miles")
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Reban" },
  20069. {
  20070. front: {
  20071. height: math.unit(7 + 2 / 12, "feet"),
  20072. weight: math.unit(300, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/reban/front.svg",
  20076. extra: 516 / 487,
  20077. bottom: 42.82 / 558.356
  20078. }
  20079. },
  20080. dick: {
  20081. height: math.unit(7 / 5, "feet"),
  20082. name: "Dick",
  20083. image: {
  20084. source: "./media/characters/reban/dick.svg"
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Natural Height",
  20091. height: math.unit(7 + 2 / 12, "feet")
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(500, "feet"),
  20096. default: true
  20097. },
  20098. {
  20099. name: "Canon Height",
  20100. height: math.unit(50, "AU")
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Terrance Keayes" },
  20106. {
  20107. front: {
  20108. height: math.unit(6, "feet"),
  20109. weight: math.unit(150, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/terrance-keayes/front.svg",
  20113. extra: 1.005,
  20114. bottom: 151 / 1615
  20115. }
  20116. },
  20117. side: {
  20118. height: math.unit(6, "feet"),
  20119. weight: math.unit(150, "lb"),
  20120. name: "Side",
  20121. image: {
  20122. source: "./media/characters/terrance-keayes/side.svg",
  20123. extra: 1.005,
  20124. bottom: 129.4 / 1544
  20125. }
  20126. },
  20127. back: {
  20128. height: math.unit(6, "feet"),
  20129. weight: math.unit(150, "lb"),
  20130. name: "Back",
  20131. image: {
  20132. source: "./media/characters/terrance-keayes/back.svg",
  20133. extra: 1.005,
  20134. bottom: 58.4 / 1557.3
  20135. }
  20136. },
  20137. dick: {
  20138. height: math.unit(6 * 0.208, "feet"),
  20139. name: "Dick",
  20140. image: {
  20141. source: "./media/characters/terrance-keayes/dick.svg"
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Canon Height",
  20148. height: math.unit(35, "miles"),
  20149. default: true
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Ofelia" },
  20155. {
  20156. front: {
  20157. height: math.unit(6, "feet"),
  20158. weight: math.unit(150, "lb"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/ofelia/front.svg",
  20162. extra: 546 / 541,
  20163. bottom: 39 / 583
  20164. }
  20165. },
  20166. back: {
  20167. height: math.unit(6, "feet"),
  20168. weight: math.unit(150, "lb"),
  20169. name: "Back",
  20170. image: {
  20171. source: "./media/characters/ofelia/back.svg",
  20172. extra: 564 / 559.5,
  20173. bottom: 8.69 / 573.02
  20174. }
  20175. },
  20176. maw: {
  20177. height: math.unit(1, "feet"),
  20178. name: "Maw",
  20179. image: {
  20180. source: "./media/characters/ofelia/maw.svg"
  20181. }
  20182. },
  20183. foot: {
  20184. height: math.unit(1.949, "feet"),
  20185. name: "Foot",
  20186. image: {
  20187. source: "./media/characters/ofelia/foot.svg"
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Canon Height",
  20194. height: math.unit(2000, "miles"),
  20195. default: true
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Samuel" },
  20201. {
  20202. front: {
  20203. height: math.unit(6, "feet"),
  20204. weight: math.unit(150, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/samuel/front.svg",
  20208. extra: 265 / 258,
  20209. bottom: 2 / 266.1566
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Macro",
  20216. height: math.unit(100, "feet"),
  20217. default: true
  20218. },
  20219. {
  20220. name: "Full Size",
  20221. height: math.unit(1000, "miles")
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Beishir Kiel" },
  20227. {
  20228. front: {
  20229. height: math.unit(6, "feet"),
  20230. weight: math.unit(300, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/beishir-kiel/front.svg",
  20234. extra: 569 / 547,
  20235. bottom: 41.9 / 609
  20236. }
  20237. },
  20238. maw: {
  20239. height: math.unit(6 * 0.202, "feet"),
  20240. name: "Maw",
  20241. image: {
  20242. source: "./media/characters/beishir-kiel/maw.svg"
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Macro",
  20249. height: math.unit(300, "feet"),
  20250. default: true
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Logan Grey" },
  20256. {
  20257. front: {
  20258. height: math.unit(5 + 8 / 12, "feet"),
  20259. weight: math.unit(120, "lb"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/logan-grey/front.svg",
  20263. extra: 2539 / 2393,
  20264. bottom: 97.6 / 2636.37
  20265. }
  20266. },
  20267. frontAlt: {
  20268. height: math.unit(5 + 8 / 12, "feet"),
  20269. weight: math.unit(120, "lb"),
  20270. name: "Front (Alt)",
  20271. image: {
  20272. source: "./media/characters/logan-grey/front-alt.svg",
  20273. extra: 958 / 893,
  20274. bottom: 15 / 970.768
  20275. }
  20276. },
  20277. back: {
  20278. height: math.unit(5 + 8 / 12, "feet"),
  20279. weight: math.unit(120, "lb"),
  20280. name: "Back",
  20281. image: {
  20282. source: "./media/characters/logan-grey/back.svg",
  20283. extra: 958 / 893,
  20284. bottom: 2.1881 / 970.9788
  20285. }
  20286. },
  20287. dick: {
  20288. height: math.unit(1.437, "feet"),
  20289. name: "Dick",
  20290. image: {
  20291. source: "./media/characters/logan-grey/dick.svg"
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Normal",
  20298. height: math.unit(5 + 8 / 12, "feet")
  20299. },
  20300. {
  20301. name: "The 500 Foot Femboy",
  20302. height: math.unit(500, "feet"),
  20303. default: true
  20304. },
  20305. {
  20306. name: "Megmacro",
  20307. height: math.unit(20, "miles")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Draganta" },
  20313. {
  20314. front: {
  20315. height: math.unit(8 + 2 / 12, "feet"),
  20316. weight: math.unit(275, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/draganta/front.svg",
  20320. extra: 1177 / 1135,
  20321. bottom: 33.46 / 1212.1
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(8 + 6 / 12, "feet"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(150, "feet")
  20334. },
  20335. {
  20336. name: "Megamacro",
  20337. height: math.unit(1000, "miles")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20343. {
  20344. front: {
  20345. height: math.unit(1.72, "m"),
  20346. weight: math.unit(80, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/voski/front.svg",
  20350. extra: 2076.22 / 2022.4,
  20351. bottom: 102.7 / 2177.3866
  20352. }
  20353. },
  20354. frontNsfw: {
  20355. height: math.unit(1.72, "m"),
  20356. weight: math.unit(80, "lb"),
  20357. name: "Front (NSFW)",
  20358. image: {
  20359. source: "./media/characters/voski/front-nsfw.svg",
  20360. extra: 2076.22 / 2022.4,
  20361. bottom: 102.7 / 2177.3866
  20362. }
  20363. },
  20364. back: {
  20365. height: math.unit(1.72, "m"),
  20366. weight: math.unit(80, "lb"),
  20367. name: "Back",
  20368. image: {
  20369. source: "./media/characters/voski/back.svg",
  20370. extra: 2104 / 2051,
  20371. bottom: 10.45 / 2113.63
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(1.72, "m")
  20379. },
  20380. {
  20381. name: "Macro",
  20382. height: math.unit(55, "m"),
  20383. default: true
  20384. },
  20385. {
  20386. name: "Macro+",
  20387. height: math.unit(300, "m")
  20388. },
  20389. {
  20390. name: "Macro++",
  20391. height: math.unit(700, "m")
  20392. },
  20393. {
  20394. name: "Macro+++",
  20395. height: math.unit(4500, "m")
  20396. },
  20397. {
  20398. name: "Macro++++",
  20399. height: math.unit(45, "km")
  20400. },
  20401. {
  20402. name: "Macro+++++",
  20403. height: math.unit(1220, "km")
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Icowom Lee" },
  20409. {
  20410. front: {
  20411. height: math.unit(2.3, "m"),
  20412. weight: math.unit(304, "kg"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/icowom-lee/front.svg",
  20416. extra: 3076 / 2933,
  20417. bottom: 51.4 / 3125.1889
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(2.3, "meters"),
  20425. default: true
  20426. },
  20427. {
  20428. name: "Macro",
  20429. height: math.unit(94, "meters"),
  20430. default: true
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(22, "meters"),
  20439. weight: math.unit(21000, "kg"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/shock-diamond/front.svg",
  20443. extra: 2204 / 2053,
  20444. bottom: 65 / 2239.47
  20445. }
  20446. },
  20447. frontNude: {
  20448. height: math.unit(22, "meters"),
  20449. weight: math.unit(21000, "kg"),
  20450. name: "Front (Nude)",
  20451. image: {
  20452. source: "./media/characters/shock-diamond/front-nude.svg",
  20453. extra: 2514 / 2285,
  20454. bottom: 13 / 2527.56
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(3, "meters")
  20462. },
  20463. {
  20464. name: "Macro",
  20465. height: math.unit(22, "meters"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Rory" },
  20472. {
  20473. front: {
  20474. height: math.unit(5 + 4 / 12, "feet"),
  20475. weight: math.unit(120, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/rory/front.svg",
  20479. extra: 589 / 556,
  20480. bottom: 45.7 / 635.76
  20481. }
  20482. },
  20483. frontNude: {
  20484. height: math.unit(5 + 4 / 12, "feet"),
  20485. weight: math.unit(120, "lb"),
  20486. name: "Front (Nude)",
  20487. image: {
  20488. source: "./media/characters/rory/front-nude.svg",
  20489. extra: 589 / 556,
  20490. bottom: 45.7 / 635.76
  20491. }
  20492. },
  20493. side: {
  20494. height: math.unit(5 + 4 / 12, "feet"),
  20495. weight: math.unit(120, "lb"),
  20496. name: "Side",
  20497. image: {
  20498. source: "./media/characters/rory/side.svg",
  20499. extra: 597 / 564,
  20500. bottom: 55 / 653
  20501. }
  20502. },
  20503. back: {
  20504. height: math.unit(5 + 4 / 12, "feet"),
  20505. weight: math.unit(120, "lb"),
  20506. name: "Back",
  20507. image: {
  20508. source: "./media/characters/rory/back.svg",
  20509. extra: 620 / 585,
  20510. bottom: 8.86 / 630.43
  20511. }
  20512. },
  20513. dick: {
  20514. height: math.unit(0.86, "feet"),
  20515. name: "Dick",
  20516. image: {
  20517. source: "./media/characters/rory/dick.svg"
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(5 + 4 / 12, "feet"),
  20525. default: true
  20526. },
  20527. {
  20528. name: "Macro",
  20529. height: math.unit(100, "feet")
  20530. },
  20531. {
  20532. name: "Macro+",
  20533. height: math.unit(140, "feet")
  20534. },
  20535. {
  20536. name: "Macro++",
  20537. height: math.unit(300, "feet")
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Sprisk" },
  20543. {
  20544. front: {
  20545. height: math.unit(5 + 9 / 12, "feet"),
  20546. weight: math.unit(190, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/sprisk/front.svg",
  20550. extra: 1225 / 1180,
  20551. bottom: 42.7 / 1266.4
  20552. }
  20553. },
  20554. frontNsfw: {
  20555. height: math.unit(5 + 9 / 12, "feet"),
  20556. weight: math.unit(190, "lb"),
  20557. name: "Front (NSFW)",
  20558. image: {
  20559. source: "./media/characters/sprisk/front-nsfw.svg",
  20560. extra: 1225 / 1180,
  20561. bottom: 42.7 / 1266.4
  20562. }
  20563. },
  20564. back: {
  20565. height: math.unit(5 + 9 / 12, "feet"),
  20566. weight: math.unit(190, "lb"),
  20567. name: "Back",
  20568. image: {
  20569. source: "./media/characters/sprisk/back.svg",
  20570. extra: 1247 / 1200,
  20571. bottom: 5.6 / 1253.04
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Tiny",
  20578. height: math.unit(2, "inches")
  20579. },
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 9 / 12, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Mini Macro",
  20587. height: math.unit(18, "feet")
  20588. },
  20589. {
  20590. name: "Macro",
  20591. height: math.unit(100, "feet")
  20592. },
  20593. {
  20594. name: "MACRO",
  20595. height: math.unit(50, "miles")
  20596. },
  20597. {
  20598. name: "M A C R O",
  20599. height: math.unit(300, "miles")
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Bunsen" },
  20605. {
  20606. side: {
  20607. height: math.unit(15.6, "meters"),
  20608. weight: math.unit(700000, "kg"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/bunsen/side.svg",
  20612. extra: 1644 / 358
  20613. }
  20614. },
  20615. foot: {
  20616. height: math.unit(1.611 * 1644 / 358, "meter"),
  20617. name: "Foot",
  20618. image: {
  20619. source: "./media/characters/bunsen/foot.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Small",
  20626. height: math.unit(10, "feet")
  20627. },
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(15.6, "meters"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Sesh" },
  20637. {
  20638. front: {
  20639. height: math.unit(4 + 11 / 12, "feet"),
  20640. weight: math.unit(140, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/sesh/front.svg",
  20644. extra: 3420 / 3231,
  20645. bottom: 72 / 3949.5
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(4 + 11 / 12, "feet")
  20653. },
  20654. {
  20655. name: "Grown",
  20656. height: math.unit(15, "feet"),
  20657. default: true
  20658. },
  20659. {
  20660. name: "Macro",
  20661. height: math.unit(1500, "feet")
  20662. },
  20663. {
  20664. name: "Megamacro",
  20665. height: math.unit(30, "miles")
  20666. },
  20667. {
  20668. name: "Continental",
  20669. height: math.unit(3000, "miles")
  20670. },
  20671. {
  20672. name: "Gravity Mass",
  20673. height: math.unit(300000, "miles")
  20674. },
  20675. {
  20676. name: "Planet Buster",
  20677. height: math.unit(30000000, "miles")
  20678. },
  20679. {
  20680. name: "Big",
  20681. height: math.unit(3000000000, "miles")
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Pepper" },
  20687. {
  20688. front: {
  20689. height: math.unit(9, "feet"),
  20690. weight: math.unit(350, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/pepper/front.svg",
  20694. extra: 1448/1312,
  20695. bottom: 9.4/1457.88
  20696. }
  20697. },
  20698. back: {
  20699. height: math.unit(9, "feet"),
  20700. weight: math.unit(350, "lb"),
  20701. name: "Back",
  20702. image: {
  20703. source: "./media/characters/pepper/back.svg",
  20704. extra: 1423/1300,
  20705. bottom: 4.6/1429
  20706. }
  20707. },
  20708. maw: {
  20709. height: math.unit(0.932, "feet"),
  20710. name: "Maw",
  20711. image: {
  20712. source: "./media/characters/pepper/maw.svg"
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(9, "feet"),
  20720. default: true
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Maelstrom" },
  20726. {
  20727. front: {
  20728. height: math.unit(6, "feet"),
  20729. weight: math.unit(150, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/maelstrom/front.svg",
  20733. extra: 2100/1883,
  20734. bottom: 94/2196.7
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Less Kaiju",
  20741. height: math.unit(200, "feet")
  20742. },
  20743. {
  20744. name: "Kaiju",
  20745. height: math.unit(400, "feet"),
  20746. default: true
  20747. },
  20748. {
  20749. name: "Kaiju-er",
  20750. height: math.unit(600, "feet")
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Lexir" },
  20756. {
  20757. front: {
  20758. height: math.unit(6 + 5/12, "feet"),
  20759. weight: math.unit(180, "lb"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/lexir/front.svg",
  20763. extra: 180/172,
  20764. bottom: 12/192
  20765. }
  20766. },
  20767. back: {
  20768. height: math.unit(6 + 5/12, "feet"),
  20769. weight: math.unit(180, "lb"),
  20770. name: "Back",
  20771. image: {
  20772. source: "./media/characters/lexir/back.svg",
  20773. extra: 183.84/175.5,
  20774. bottom: 3.1/187
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Very Smal",
  20781. height: math.unit(1, "nm")
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(6 + 5/12, "feet"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Macro",
  20790. height: math.unit(1, "mile")
  20791. },
  20792. {
  20793. name: "Megamacro",
  20794. height: math.unit(50, "miles")
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Maksio" },
  20800. {
  20801. front: {
  20802. height: math.unit(1.5, "meters"),
  20803. weight: math.unit(100, "lb"),
  20804. name: "Front",
  20805. image: {
  20806. source: "./media/characters/maksio/front.svg",
  20807. extra: 1549/1531,
  20808. bottom: 123.7/1674.5429
  20809. }
  20810. },
  20811. back: {
  20812. height: math.unit(1.5, "meters"),
  20813. weight: math.unit(100, "lb"),
  20814. name: "Back",
  20815. image: {
  20816. source: "./media/characters/maksio/back.svg",
  20817. extra: 1541/1509,
  20818. bottom: 97/1639
  20819. }
  20820. },
  20821. hand: {
  20822. height: math.unit(0.621, "feet"),
  20823. name: "Hand",
  20824. image: {
  20825. source: "./media/characters/maksio/hand.svg"
  20826. }
  20827. },
  20828. foot: {
  20829. height: math.unit(1.611, "feet"),
  20830. name: "Foot",
  20831. image: {
  20832. source: "./media/characters/maksio/foot.svg"
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Shrunken",
  20839. height: math.unit(10, "cm")
  20840. },
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(150, "cm"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Erza Bear" },
  20850. {
  20851. front: {
  20852. height: math.unit(100, "feet"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/erza-bear/front.svg",
  20856. extra: 2449/2390,
  20857. bottom: 46/2494
  20858. }
  20859. },
  20860. back: {
  20861. height: math.unit(100, "feet"),
  20862. name: "Back",
  20863. image: {
  20864. source: "./media/characters/erza-bear/back.svg",
  20865. extra: 2489/2430,
  20866. bottom: 85.4/2480
  20867. }
  20868. },
  20869. tail: {
  20870. height: math.unit(42, "feet"),
  20871. name: "Tail",
  20872. image: {
  20873. source: "./media/characters/erza-bear/tail.svg"
  20874. }
  20875. },
  20876. tongue: {
  20877. height: math.unit(8, "feet"),
  20878. name: "Tongue",
  20879. image: {
  20880. source: "./media/characters/erza-bear/tongue.svg"
  20881. }
  20882. },
  20883. dick: {
  20884. height: math.unit(10.5, "feet"),
  20885. name: "Dick",
  20886. image: {
  20887. source: "./media/characters/erza-bear/dick.svg"
  20888. }
  20889. },
  20890. dickVertical: {
  20891. height: math.unit(16.9, "feet"),
  20892. name: "Dick (Vertical)",
  20893. image: {
  20894. source: "./media/characters/erza-bear/dick-vertical.svg"
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Macro",
  20901. height: math.unit(100, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20908. {
  20909. front: {
  20910. height: math.unit(172, "cm"),
  20911. weight: math.unit(73, "kg"),
  20912. name: "Front",
  20913. image: {
  20914. source: "./media/characters/violet-flor/front.svg",
  20915. extra: 1530/1442,
  20916. bottom: 61.9/1588.8
  20917. }
  20918. },
  20919. back: {
  20920. height: math.unit(180, "cm"),
  20921. weight: math.unit(73, "kg"),
  20922. name: "Back",
  20923. image: {
  20924. source: "./media/characters/violet-flor/back.svg",
  20925. extra: 1692/1630,
  20926. bottom: 20/1712
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(172, "cm"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(6, "feet"),
  20943. weight: math.unit(220, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/lynn-rhea/front.svg",
  20947. extra: 310/273
  20948. }
  20949. },
  20950. back: {
  20951. height: math.unit(6, "feet"),
  20952. weight: math.unit(220, "lb"),
  20953. name: "Back",
  20954. image: {
  20955. source: "./media/characters/lynn-rhea/back.svg",
  20956. extra: 310/273
  20957. }
  20958. },
  20959. dicks: {
  20960. height: math.unit(0.9, "feet"),
  20961. name: "Dicks",
  20962. image: {
  20963. source: "./media/characters/lynn-rhea/dicks.svg"
  20964. }
  20965. },
  20966. slit: {
  20967. height: math.unit(0.4, "feet"),
  20968. name: "Slit",
  20969. image: {
  20970. source: "./media/characters/lynn-rhea/slit.svg"
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Micro",
  20977. height: math.unit(1, "inch")
  20978. },
  20979. {
  20980. name: "Macro",
  20981. height: math.unit(60, "feet"),
  20982. default: true
  20983. },
  20984. {
  20985. name: "Megamacro",
  20986. height: math.unit(2, "miles")
  20987. },
  20988. {
  20989. name: "Gigamacro",
  20990. height: math.unit(3, "earths")
  20991. },
  20992. {
  20993. name: "Galactic",
  20994. height: math.unit(0.8, "galaxies")
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Valathos" },
  21000. {
  21001. front: {
  21002. height: math.unit(1600, "feet"),
  21003. weight: math.unit(85758785169, "kg"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/valathos/front.svg",
  21007. extra: 1451/1339
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Macro",
  21014. height: math.unit(1600, "feet"),
  21015. default: true
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Azula" },
  21021. {
  21022. front: {
  21023. height: math.unit(7 + 5/12, "feet"),
  21024. weight: math.unit(300, "lb"),
  21025. name: "Front",
  21026. image: {
  21027. source: "./media/characters/azula/front.svg",
  21028. extra: 3208/2880,
  21029. bottom: 80.2/3277
  21030. }
  21031. },
  21032. back: {
  21033. height: math.unit(7 + 5/12, "feet"),
  21034. weight: math.unit(300, "lb"),
  21035. name: "Back",
  21036. image: {
  21037. source: "./media/characters/azula/back.svg",
  21038. extra: 3169/2822,
  21039. bottom: 150.6/3321
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(7 + 5/12, "feet"),
  21047. default: true
  21048. },
  21049. {
  21050. name: "Big",
  21051. height: math.unit(20, "feet")
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Rupert" },
  21057. {
  21058. front: {
  21059. height: math.unit(5 + 1/12, "feet"),
  21060. weight: math.unit(110, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/rupert/front.svg",
  21064. extra: 1549/1495,
  21065. bottom: 54.2/1604.4
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(5 + 1/12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Sheera Castellar" },
  21079. {
  21080. front: {
  21081. height: math.unit(8 + 4/12, "feet"),
  21082. weight: math.unit(350, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/sheera-castellar/front.svg",
  21086. extra: 1957/1894,
  21087. bottom: 26.97/1975.017
  21088. }
  21089. },
  21090. side: {
  21091. height: math.unit(8 + 4/12, "feet"),
  21092. weight: math.unit(350, "lb"),
  21093. name: "Side",
  21094. image: {
  21095. source: "./media/characters/sheera-castellar/side.svg",
  21096. extra: 1957/1894
  21097. }
  21098. },
  21099. back: {
  21100. height: math.unit(8 + 4/12, "feet"),
  21101. weight: math.unit(350, "lb"),
  21102. name: "Back",
  21103. image: {
  21104. source: "./media/characters/sheera-castellar/back.svg",
  21105. extra: 1957/1894
  21106. }
  21107. },
  21108. angled: {
  21109. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21110. weight: math.unit(350, "lb"),
  21111. name: "Angled",
  21112. image: {
  21113. source: "./media/characters/sheera-castellar/angled.svg",
  21114. extra: 1807/1707,
  21115. bottom: 68/1875
  21116. }
  21117. },
  21118. genitals: {
  21119. height: math.unit(2.2, "feet"),
  21120. name: "Genitals",
  21121. image: {
  21122. source: "./media/characters/sheera-castellar/genitals.svg"
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(8 + 4/12, "feet")
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(150, "feet"),
  21134. default: true
  21135. },
  21136. {
  21137. name: "Macro+",
  21138. height: math.unit(800, "feet")
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(6, "feet"),
  21147. weight: math.unit(150, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/jaipur/front.svg",
  21151. extra: 3860/3731,
  21152. bottom: 287/4140
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/jaipur/back.svg",
  21161. extra: 4060/3930,
  21162. bottom: 151/4200
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(1.85, "meters"),
  21170. default: true
  21171. },
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(150, "meters")
  21175. },
  21176. {
  21177. name: "Macro+",
  21178. height: math.unit(0.5, "miles")
  21179. },
  21180. {
  21181. name: "Macro++",
  21182. height: math.unit(2.5, "miles")
  21183. },
  21184. {
  21185. name: "Macro+++",
  21186. height: math.unit(12, "miles")
  21187. },
  21188. {
  21189. name: "Macro++++",
  21190. height: math.unit(120, "miles")
  21191. },
  21192. {
  21193. name: "Macro+++++",
  21194. height: math.unit(1200, "miles")
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Sheila (Wolf)" },
  21200. {
  21201. front: {
  21202. height: math.unit(6, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/sheila-wolf/front.svg",
  21207. extra: 1931/1808,
  21208. bottom: 29.5/1960
  21209. }
  21210. },
  21211. dick: {
  21212. height: math.unit(1.464, "feet"),
  21213. name: "Dick",
  21214. image: {
  21215. source: "./media/characters/sheila-wolf/dick.svg"
  21216. }
  21217. },
  21218. muzzle: {
  21219. height: math.unit(0.513, "feet"),
  21220. name: "Muzzle",
  21221. image: {
  21222. source: "./media/characters/sheila-wolf/muzzle.svg"
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Macro",
  21229. height: math.unit(70, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(32, "meters"),
  21239. weight: math.unit(300000, "kg"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/almor/front.svg",
  21243. extra: 1408/1322,
  21244. bottom: 94.6/1506.5
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Macro",
  21251. height: math.unit(32, "meters"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Silver" },
  21258. {
  21259. front: {
  21260. height: math.unit(7, "feet"),
  21261. weight: math.unit(200, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/silver/front.svg",
  21265. extra: 472.1/450.5,
  21266. bottom: 26.5/499.424
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(7, "feet"),
  21274. default: true
  21275. },
  21276. {
  21277. name: "Macro",
  21278. height: math.unit(800, "feet")
  21279. },
  21280. {
  21281. name: "Megamacro",
  21282. height: math.unit(250, "miles")
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Pliskin" },
  21288. {
  21289. front: {
  21290. height: math.unit(6, "feet"),
  21291. weight: math.unit(150, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/pliskin/front.svg",
  21295. extra: 1469/1359,
  21296. bottom: 70/1540
  21297. }
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Micro",
  21303. height: math.unit(3, "inches")
  21304. },
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(5 + 11/12, "feet"),
  21308. default: true
  21309. },
  21310. {
  21311. name: "Macro",
  21312. height: math.unit(120, "feet")
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Sammy" },
  21318. {
  21319. front: {
  21320. height: math.unit(6, "feet"),
  21321. weight: math.unit(150, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/sammy/front.svg",
  21325. extra: 1193/1089,
  21326. bottom: 30.5/1226
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(1700, "feet"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Examacro",
  21338. height: math.unit(2.5e9, "lightyears")
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(21, "meters"),
  21347. weight: math.unit(12, "tonnes"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/kuru/front.svg",
  21351. extra: 4301/3785,
  21352. bottom: 371.3/4691
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Macro",
  21359. height: math.unit(21, "meters"),
  21360. default: true
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(23, "meters"),
  21369. weight: math.unit(12.2, "tonnes"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/rakka/front.svg",
  21373. extra: 4670/4169,
  21374. bottom: 301/4968.7
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Macro",
  21381. height: math.unit(23, "meters"),
  21382. default: true
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Rhys (Feline)" },
  21388. {
  21389. front: {
  21390. height: math.unit(6, "feet"),
  21391. weight: math.unit(150, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/rhys-feline/front.svg",
  21395. extra: 2488/2308,
  21396. bottom: 35.67/2519.19
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Really Small",
  21403. height: math.unit(1, "nm")
  21404. },
  21405. {
  21406. name: "Micro",
  21407. height: math.unit(4, "inches")
  21408. },
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(4 + 10/12, "feet"),
  21412. default: true
  21413. },
  21414. {
  21415. name: "Macro",
  21416. height: math.unit(100, "feet")
  21417. },
  21418. {
  21419. name: "Megamacto",
  21420. height: math.unit(50, "miles")
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21426. {
  21427. side: {
  21428. height: math.unit(30, "feet"),
  21429. weight: math.unit(35000, "kg"),
  21430. name: "Side",
  21431. image: {
  21432. source: "./media/characters/alydar/side.svg",
  21433. extra: 234/222,
  21434. bottom: 6.5/241
  21435. }
  21436. },
  21437. front: {
  21438. height: math.unit(30, "feet"),
  21439. weight: math.unit(35000, "kg"),
  21440. name: "Front",
  21441. image: {
  21442. source: "./media/characters/alydar/front.svg",
  21443. extra: 223.37/210.2,
  21444. bottom: 22.3/246.76
  21445. }
  21446. },
  21447. top: {
  21448. height: math.unit(64.54, "feet"),
  21449. weight: math.unit(35000, "kg"),
  21450. name: "Top",
  21451. image: {
  21452. source: "./media/characters/alydar/top.svg"
  21453. }
  21454. },
  21455. anthro: {
  21456. height: math.unit(30, "feet"),
  21457. weight: math.unit(9000, "kg"),
  21458. name: "Anthro",
  21459. image: {
  21460. source: "./media/characters/alydar/anthro.svg",
  21461. extra: 432/421,
  21462. bottom: 7.18/440
  21463. }
  21464. },
  21465. maw: {
  21466. height: math.unit(11.693, "feet"),
  21467. name: "Maw",
  21468. image: {
  21469. source: "./media/characters/alydar/maw.svg"
  21470. }
  21471. },
  21472. head: {
  21473. height: math.unit(11.693, "feet"),
  21474. name: "Head",
  21475. image: {
  21476. source: "./media/characters/alydar/head.svg"
  21477. }
  21478. },
  21479. headAlt: {
  21480. height: math.unit(12.861, "feet"),
  21481. name: "Head (Alt)",
  21482. image: {
  21483. source: "./media/characters/alydar/head-alt.svg"
  21484. }
  21485. },
  21486. wing: {
  21487. height: math.unit(20.712, "feet"),
  21488. name: "Wing",
  21489. image: {
  21490. source: "./media/characters/alydar/wing.svg"
  21491. }
  21492. },
  21493. wingFeather: {
  21494. height: math.unit(9.662, "feet"),
  21495. name: "Wing Feather",
  21496. image: {
  21497. source: "./media/characters/alydar/wing-feather.svg"
  21498. }
  21499. },
  21500. countourFeather: {
  21501. height: math.unit(4.154, "feet"),
  21502. name: "Contour Feather",
  21503. image: {
  21504. source: "./media/characters/alydar/contour-feather.svg"
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Diplomatic",
  21511. height: math.unit(13, "feet"),
  21512. default: true
  21513. },
  21514. {
  21515. name: "Small",
  21516. height: math.unit(30, "feet")
  21517. },
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(95, "feet"),
  21521. default: true
  21522. },
  21523. {
  21524. name: "Large",
  21525. height: math.unit(285, "feet")
  21526. },
  21527. {
  21528. name: "Incomprehensible",
  21529. height: math.unit(450, "megameters")
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Selicia" },
  21535. {
  21536. side: {
  21537. height: math.unit(11, "feet"),
  21538. weight: math.unit(1750, "kg"),
  21539. name: "Side",
  21540. image: {
  21541. source: "./media/characters/selicia/side.svg",
  21542. extra: 440/396,
  21543. bottom: 24.8/465.979
  21544. }
  21545. },
  21546. maw: {
  21547. height: math.unit(4.665, "feet"),
  21548. name: "Maw",
  21549. image: {
  21550. source: "./media/characters/selicia/maw.svg"
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Normal",
  21557. height: math.unit(11, "feet"),
  21558. default: true
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Layla" },
  21564. {
  21565. side: {
  21566. height: math.unit(2 + 6 /12, "feet"),
  21567. weight: math.unit(30, "lb"),
  21568. name: "Side",
  21569. image: {
  21570. source: "./media/characters/layla/side.svg",
  21571. extra: 244/188,
  21572. bottom: 18.2/262.1
  21573. }
  21574. },
  21575. back: {
  21576. height: math.unit(2 + 6 /12, "feet"),
  21577. weight: math.unit(30, "lb"),
  21578. name: "Back",
  21579. image: {
  21580. source: "./media/characters/layla/back.svg",
  21581. extra: 308/241.5,
  21582. bottom: 8.9/316.8
  21583. }
  21584. },
  21585. cumming: {
  21586. height: math.unit(2 + 6 /12, "feet"),
  21587. weight: math.unit(30, "lb"),
  21588. name: "Cumming",
  21589. image: {
  21590. source: "./media/characters/layla/cumming.svg",
  21591. extra: 342/279,
  21592. bottom: 595/938
  21593. }
  21594. },
  21595. dickFlaccid: {
  21596. height: math.unit(2.595, "feet"),
  21597. name: "Flaccid Genitals",
  21598. image: {
  21599. source: "./media/characters/layla/dick-flaccid.svg"
  21600. }
  21601. },
  21602. dickErect: {
  21603. height: math.unit(2.359, "feet"),
  21604. name: "Erect Genitals",
  21605. image: {
  21606. source: "./media/characters/layla/dick-erect.svg"
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Micro",
  21613. height: math.unit(1, "inch")
  21614. },
  21615. {
  21616. name: "Small",
  21617. height: math.unit(1, "foot")
  21618. },
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(2 + 6/12, "feet"),
  21622. default: true
  21623. },
  21624. {
  21625. name: "Macro",
  21626. height: math.unit(200, "feet")
  21627. },
  21628. {
  21629. name: "Megamacro",
  21630. height: math.unit(1000, "miles")
  21631. },
  21632. {
  21633. name: "Planetary",
  21634. height: math.unit(8000, "miles")
  21635. },
  21636. {
  21637. name: "True Layla",
  21638. height: math.unit(200000*7, "multiverses")
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Knox" },
  21644. {
  21645. back: {
  21646. height: math.unit(10.5, "feet"),
  21647. weight: math.unit(800, "lb"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/knox/back.svg",
  21651. extra: 1486/1089,
  21652. bottom: 107/1601.4
  21653. }
  21654. },
  21655. side: {
  21656. height: math.unit(10.5, "feet"),
  21657. weight: math.unit(800, "lb"),
  21658. name: "Side",
  21659. image: {
  21660. source: "./media/characters/knox/side.svg",
  21661. extra: 244/218,
  21662. bottom: 14/260
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Compact",
  21669. height: math.unit(10.5, "feet"),
  21670. default: true
  21671. },
  21672. {
  21673. name: "Dynamax",
  21674. height: math.unit(210, "feet")
  21675. },
  21676. {
  21677. name: "Full Macro",
  21678. height: math.unit(850, "feet")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Shin (Pikachu)" },
  21684. {
  21685. front: {
  21686. height: math.unit(6, "feet"),
  21687. weight: math.unit(152, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/shin-pikachu/front.svg",
  21691. extra: 1574/1480,
  21692. bottom: 53.3/1626
  21693. }
  21694. },
  21695. hand: {
  21696. height: math.unit(1.055, "feet"),
  21697. name: "Hand",
  21698. image: {
  21699. source: "./media/characters/shin-pikachu/hand.svg"
  21700. }
  21701. },
  21702. foot: {
  21703. height: math.unit(1.1, "feet"),
  21704. name: "Foot",
  21705. image: {
  21706. source: "./media/characters/shin-pikachu/foot.svg"
  21707. }
  21708. },
  21709. collar: {
  21710. height: math.unit(0.386, "feet"),
  21711. name: "Collar",
  21712. image: {
  21713. source: "./media/characters/shin-pikachu/collar.svg"
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Smallest",
  21720. height: math.unit(0.5, "inches")
  21721. },
  21722. {
  21723. name: "Micro",
  21724. height: math.unit(6, "inches")
  21725. },
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(6, "feet"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Macro",
  21733. height: math.unit(150, "feet")
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Kayda" },
  21739. {
  21740. front: {
  21741. height: math.unit(28, "feet"),
  21742. weight: math.unit(10500, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/kayda/front.svg",
  21746. extra: 1536/1428,
  21747. bottom: 68.7/1603
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(28, "feet"),
  21752. weight: math.unit(10500, "lb"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/kayda/back.svg",
  21756. extra: 1557/1464,
  21757. bottom: 39.5/1597.49
  21758. }
  21759. },
  21760. dick: {
  21761. height: math.unit(3.858, "feet"),
  21762. name: "Dick",
  21763. image: {
  21764. source: "./media/characters/kayda/dick.svg"
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Macro",
  21771. height: math.unit(28, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(10 + 11/12, "feet"),
  21781. weight: math.unit(1400, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/brian/front.svg",
  21785. extra: 737/692,
  21786. bottom: 55.4/785
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(10 + 11/12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(5 + 8/12, "feet"),
  21803. weight: math.unit(140, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/khemri/front.svg",
  21807. extra: 4780/4059,
  21808. bottom: 80.1/4859.25
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Micro",
  21815. height: math.unit(6, "inches")
  21816. },
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 8/12, "feet"),
  21820. default: true
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Felix Braveheart" },
  21826. {
  21827. front: {
  21828. height: math.unit(13, "feet"),
  21829. weight: math.unit(1700, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/felix-braveheart/front.svg",
  21833. extra: 1222/1157,
  21834. bottom: 53.2/1280
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(13, "feet"),
  21839. weight: math.unit(1700, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/felix-braveheart/back.svg",
  21843. extra: 1277/1203,
  21844. bottom: 50.2/1327
  21845. }
  21846. },
  21847. feral: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(400, "lb"),
  21850. name: "Feral",
  21851. image: {
  21852. source: "./media/characters/felix-braveheart/feral.svg",
  21853. extra: 682/625,
  21854. bottom: 6.9/688
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(13, "feet"),
  21862. default: true
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Shadow Blade" },
  21868. {
  21869. side: {
  21870. height: math.unit(5 + 11/12, "feet"),
  21871. weight: math.unit(1400, "lb"),
  21872. name: "Side",
  21873. image: {
  21874. source: "./media/characters/shadow-blade/side.svg",
  21875. extra: 1726/1267,
  21876. bottom: 58.4/1785
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(5 + 11/12, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Karla Halldor" },
  21890. {
  21891. front: {
  21892. height: math.unit(1 + 6/12, "feet"),
  21893. weight: math.unit(25, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/karla-halldor/front.svg",
  21897. extra: 1459/1383,
  21898. bottom: 12/1472
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(1 + 6/12, "feet"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Ariam" },
  21912. {
  21913. front: {
  21914. height: math.unit(6 + 2/12, "feet"),
  21915. weight: math.unit(160, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/ariam/front.svg",
  21919. extra: 714/617,
  21920. bottom: 23.4/737,
  21921. }
  21922. },
  21923. squatting: {
  21924. height: math.unit(4.1, "feet"),
  21925. weight: math.unit(160, "lb"),
  21926. name: "Squatting",
  21927. image: {
  21928. source: "./media/characters/ariam/squatting.svg",
  21929. extra: 2617/2112,
  21930. bottom: 61.2/2681,
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(6 + 2/12, "feet"),
  21938. default: true
  21939. },
  21940. {
  21941. name: "Normal+",
  21942. height: math.unit(4, "meters")
  21943. },
  21944. {
  21945. name: "Macro",
  21946. height: math.unit(50, "meters")
  21947. },
  21948. {
  21949. name: "Macro+",
  21950. height: math.unit(100, "meters")
  21951. },
  21952. {
  21953. name: "Megamacro",
  21954. height: math.unit(20, "km")
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Qodri Class-of-'Fortwelve-Six" },
  21960. {
  21961. front: {
  21962. height: math.unit(1.67, "meters"),
  21963. weight: math.unit(140, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21967. extra: 438/410,
  21968. bottom: 0.75/439
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Shrunken",
  21975. height: math.unit(7.6, "cm")
  21976. },
  21977. {
  21978. name: "Human Scale",
  21979. height: math.unit(1.67, "meters")
  21980. },
  21981. {
  21982. name: "Wolxi Scale",
  21983. height: math.unit(36.7, "meters"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Izue Two-Mothers" },
  21990. {
  21991. front: {
  21992. height: math.unit(1.73, "meters"),
  21993. weight: math.unit(240, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/izue-two-mothers/front.svg",
  21997. extra: 469/437,
  21998. bottom: 1.24/470.6
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Shrunken",
  22005. height: math.unit(7.86, "cm")
  22006. },
  22007. {
  22008. name: "Human Scale",
  22009. height: math.unit(1.73, "meters")
  22010. },
  22011. {
  22012. name: "Wolxi Scale",
  22013. height: math.unit(38, "meters"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Teeku Love-Shack" },
  22020. {
  22021. front: {
  22022. height: math.unit(1.55, "meters"),
  22023. weight: math.unit(120, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/teeku-love-shack/front.svg",
  22027. extra: 387/362,
  22028. bottom: 1.51/388
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Shrunken",
  22035. height: math.unit(7, "cm")
  22036. },
  22037. {
  22038. name: "Human Scale",
  22039. height: math.unit(1.55, "meters")
  22040. },
  22041. {
  22042. name: "Wolxi Scale",
  22043. height: math.unit(34.1, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Dejma the Red" },
  22050. {
  22051. front: {
  22052. height: math.unit(1.83, "meters"),
  22053. weight: math.unit(135, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/dejma-the-red/front.svg",
  22057. extra: 480/458,
  22058. bottom: 1.8/482
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Shrunken",
  22065. height: math.unit(8.3, "cm")
  22066. },
  22067. {
  22068. name: "Human Scale",
  22069. height: math.unit(1.83, "meters")
  22070. },
  22071. {
  22072. name: "Wolxi Scale",
  22073. height: math.unit(40, "meters"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Aki" },
  22080. {
  22081. front: {
  22082. height: math.unit(1.78, "meters"),
  22083. weight: math.unit(65, "kg"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/aki/front.svg",
  22087. extra: 452/415
  22088. }
  22089. },
  22090. frontNsfw: {
  22091. height: math.unit(1.78, "meters"),
  22092. weight: math.unit(65, "kg"),
  22093. name: "Front (NSFW)",
  22094. image: {
  22095. source: "./media/characters/aki/front-nsfw.svg",
  22096. extra: 452/415
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(1.78, "meters"),
  22101. weight: math.unit(65, "kg"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/aki/back.svg",
  22105. extra: 452/415
  22106. }
  22107. },
  22108. rump: {
  22109. height: math.unit(2.05, "feet"),
  22110. name: "Rump",
  22111. image: {
  22112. source: "./media/characters/aki/rump.svg"
  22113. }
  22114. },
  22115. dick: {
  22116. height: math.unit(0.95, "feet"),
  22117. name: "Dick",
  22118. image: {
  22119. source: "./media/characters/aki/dick.svg"
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Micro",
  22126. height: math.unit(15, "cm")
  22127. },
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(178, "cm"),
  22131. default: true
  22132. },
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(214, "m")
  22136. },
  22137. {
  22138. name: "Macro+",
  22139. height: math.unit(534, "m")
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Ari" },
  22145. {
  22146. front: {
  22147. height: math.unit(5 + 5/12, "feet"),
  22148. weight: math.unit(120, "lb"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/ari/front.svg",
  22152. extra: 714.5/682,
  22153. bottom: 8/722.5
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(5 + 5/12, "feet")
  22161. },
  22162. {
  22163. name: "Macro",
  22164. height: math.unit(100, "feet"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Megamacro",
  22169. height: math.unit(100, "miles")
  22170. },
  22171. {
  22172. name: "Gigamacro",
  22173. height: math.unit(80000, "miles")
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Bolt" },
  22179. {
  22180. side: {
  22181. height: math.unit(9, "feet"),
  22182. weight: math.unit(400, "kg"),
  22183. name: "Side",
  22184. image: {
  22185. source: "./media/characters/bolt/side.svg",
  22186. extra: 1126/896,
  22187. bottom: 60/1187.3,
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Micro",
  22194. height: math.unit(5, "inches")
  22195. },
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(9, "feet"),
  22199. default: true
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(700, "feet")
  22204. },
  22205. {
  22206. name: "Max Size",
  22207. height: math.unit(1.52e22, "yottameters")
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(4.53, "meters"),
  22216. weight: math.unit(3, "tons"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/draekon-sylviar/front.svg",
  22220. extra: 1228/1068,
  22221. bottom: 41/1270
  22222. }
  22223. },
  22224. tail: {
  22225. height: math.unit(1.772, "meter"),
  22226. name: "Tail",
  22227. image: {
  22228. source: "./media/characters/draekon-sylviar/tail.svg"
  22229. }
  22230. },
  22231. head: {
  22232. height: math.unit(1.331, "meter"),
  22233. name: "Head",
  22234. image: {
  22235. source: "./media/characters/draekon-sylviar/head.svg"
  22236. }
  22237. },
  22238. hand: {
  22239. height: math.unit(0.564, "meter"),
  22240. name: "Hand",
  22241. image: {
  22242. source: "./media/characters/draekon-sylviar/hand.svg"
  22243. }
  22244. },
  22245. foot: {
  22246. height: math.unit(0.621, "meter"),
  22247. name: "Foot",
  22248. image: {
  22249. source: "./media/characters/draekon-sylviar/foot.svg",
  22250. bottom: 32/324
  22251. }
  22252. },
  22253. dick: {
  22254. height: math.unit(61, "cm"),
  22255. name: "Dick",
  22256. image: {
  22257. source: "./media/characters/draekon-sylviar/dick.svg"
  22258. }
  22259. },
  22260. dickseparated: {
  22261. height: math.unit(61, "cm"),
  22262. name: "Dick-separated",
  22263. image: {
  22264. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Small",
  22271. height: math.unit(4.53/2, "meters"),
  22272. default: true
  22273. },
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(4.53, "meters"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Large",
  22281. height: math.unit(4.53*2, "meters"),
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(6 + 2/12, "feet"),
  22290. weight: math.unit(180, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/brawler/front.svg",
  22294. extra: 3301/3027,
  22295. bottom: 138/3439
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(6 + 2/12, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(11, "feet"),
  22312. weight: math.unit(1000, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/alex/front.svg",
  22316. bottom: 44.5/620
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Micro",
  22323. height: math.unit(5, "inches")
  22324. },
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(11, "feet"),
  22328. default: true
  22329. },
  22330. {
  22331. name: "Macro",
  22332. height: math.unit(9.5e9, "feet")
  22333. },
  22334. {
  22335. name: "Max Size",
  22336. height: math.unit(1.4e283, "yottameters")
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Zenari" },
  22342. {
  22343. female: {
  22344. height: math.unit(29.9, "m"),
  22345. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22346. name: "Female",
  22347. image: {
  22348. source: "./media/characters/zenari/female.svg",
  22349. extra: 3281.6/3217,
  22350. bottom: 72.2/3353
  22351. }
  22352. },
  22353. male: {
  22354. height: math.unit(27.7, "m"),
  22355. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22356. name: "Male",
  22357. image: {
  22358. source: "./media/characters/zenari/male.svg",
  22359. extra: 3008/2991,
  22360. bottom: 54.6/3069
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Macro",
  22367. height: math.unit(29.7, "meters"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Mactarian" },
  22374. {
  22375. female: {
  22376. height: math.unit(23.8, "m"),
  22377. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22378. name: "Female",
  22379. image: {
  22380. source: "./media/characters/mactarian/female.svg",
  22381. extra: 2662/2569,
  22382. bottom: 73/2736
  22383. }
  22384. },
  22385. male: {
  22386. height: math.unit(23.8, "m"),
  22387. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22388. name: "Male",
  22389. image: {
  22390. source: "./media/characters/mactarian/male.svg",
  22391. extra: 2673/2600,
  22392. bottom: 76/2750
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(23.8, "meters"),
  22400. default: true
  22401. },
  22402. ]
  22403. ))
  22404. characterMakers.push(() => makeCharacter(
  22405. { name: "Umok" },
  22406. {
  22407. female: {
  22408. height: math.unit(19.3, "m"),
  22409. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22410. name: "Female",
  22411. image: {
  22412. source: "./media/characters/umok/female.svg",
  22413. extra: 2186/2078,
  22414. bottom: 87/2277
  22415. }
  22416. },
  22417. male: {
  22418. height: math.unit(19.5, "m"),
  22419. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22420. name: "Male",
  22421. image: {
  22422. source: "./media/characters/umok/male.svg",
  22423. extra: 2233/2140,
  22424. bottom: 24.4/2258
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Macro",
  22431. height: math.unit(19.3, "meters"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Joraxian" },
  22438. {
  22439. female: {
  22440. height: math.unit(26.15, "m"),
  22441. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22442. name: "Female",
  22443. image: {
  22444. source: "./media/characters/joraxian/female.svg",
  22445. extra: 2943/2831,
  22446. bottom: 27/2972
  22447. }
  22448. },
  22449. male: {
  22450. height: math.unit(25.4, "m"),
  22451. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22452. name: "Male",
  22453. image: {
  22454. source: "./media/characters/joraxian/male.svg",
  22455. extra: 2835/2741,
  22456. bottom: 27/2862
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Macro",
  22463. height: math.unit(26.15, "meters"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Sthara" },
  22470. {
  22471. female: {
  22472. height: math.unit(21.6, "m"),
  22473. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22474. name: "Female",
  22475. image: {
  22476. source: "./media/characters/sthara/female.svg",
  22477. extra: 2516/2347,
  22478. bottom: 21.5/2537
  22479. }
  22480. },
  22481. male: {
  22482. height: math.unit(24, "m"),
  22483. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22484. name: "Male",
  22485. image: {
  22486. source: "./media/characters/sthara/male.svg",
  22487. extra: 2732/2607,
  22488. bottom: 23/2732
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Macro",
  22495. height: math.unit(21.6, "meters"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Luka Bryzant" },
  22502. {
  22503. front: {
  22504. height: math.unit(6 + 4/12, "feet"),
  22505. weight: math.unit(175, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/luka-bryzant/front.svg",
  22509. extra: 311/289,
  22510. bottom: 4/315
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(6 + 4/12, "feet"),
  22515. weight: math.unit(175, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/luka-bryzant/back.svg",
  22519. extra: 311/289,
  22520. bottom: 3.8/313.7
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Micro",
  22527. height: math.unit(10, "inches")
  22528. },
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(6 + 4/12, "feet"),
  22532. default: true
  22533. },
  22534. {
  22535. name: "Large",
  22536. height: math.unit(12, "feet")
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Aman Aquila" },
  22542. {
  22543. front: {
  22544. height: math.unit(5 + 7/12, "feet"),
  22545. weight: math.unit(185, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/aman-aquila/front.svg",
  22549. extra: 1013/976,
  22550. bottom: 45.6/1057
  22551. }
  22552. },
  22553. side: {
  22554. height: math.unit(5 + 7/12, "feet"),
  22555. weight: math.unit(185, "lb"),
  22556. name: "Side",
  22557. image: {
  22558. source: "./media/characters/aman-aquila/side.svg",
  22559. extra: 1054/1011,
  22560. bottom: 15/1070
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(5 + 7/12, "feet"),
  22565. weight: math.unit(185, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/aman-aquila/back.svg",
  22569. extra: 1026/970,
  22570. bottom: 12/1039
  22571. }
  22572. },
  22573. head: {
  22574. height: math.unit(1.211, "feet"),
  22575. name: "Head",
  22576. image: {
  22577. source: "./media/characters/aman-aquila/head.svg",
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Minimicro",
  22584. height: math.unit(0.057, "inches")
  22585. },
  22586. {
  22587. name: "Micro",
  22588. height: math.unit(7, "inches")
  22589. },
  22590. {
  22591. name: "Mini",
  22592. height: math.unit(3 + 7/12, "feet")
  22593. },
  22594. {
  22595. name: "Normal",
  22596. height: math.unit(5 + 7/12, "feet"),
  22597. default: true
  22598. },
  22599. {
  22600. name: "Macro",
  22601. height: math.unit(157 + 7/12, "feet")
  22602. },
  22603. {
  22604. name: "Megamacro",
  22605. height: math.unit(1557 + 7/12, "feet")
  22606. },
  22607. {
  22608. name: "Gigamacro",
  22609. height: math.unit(15557 + 7/12, "feet")
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22615. {
  22616. front: {
  22617. height: math.unit(3 + 2/12, "inches"),
  22618. weight: math.unit(0.3, "ounces"),
  22619. name: "Front",
  22620. image: {
  22621. source: "./media/characters/hiphae/front.svg",
  22622. extra: 1931/1683,
  22623. bottom: 24/1955
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(3 + 1/2, "inches"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22637. {
  22638. front: {
  22639. height: math.unit(5 + 10/12, "feet"),
  22640. weight: math.unit(165, "lb"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/nicky/front.svg",
  22644. extra: 3144/2886,
  22645. bottom: 45.6/3192
  22646. }
  22647. },
  22648. back: {
  22649. height: math.unit(5 + 10/12, "feet"),
  22650. weight: math.unit(165, "lb"),
  22651. name: "Back",
  22652. image: {
  22653. source: "./media/characters/nicky/back.svg",
  22654. extra: 3055/2804,
  22655. bottom: 28.4/3087
  22656. }
  22657. },
  22658. frontclothed: {
  22659. height: math.unit(5 + 10/12, "feet"),
  22660. weight: math.unit(165, "lb"),
  22661. name: "Front-clothed",
  22662. image: {
  22663. source: "./media/characters/nicky/front-clothed.svg",
  22664. extra: 3184.9/2926.9,
  22665. bottom: 86.5/3239.9
  22666. }
  22667. },
  22668. foot: {
  22669. height: math.unit(1.16, "feet"),
  22670. name: "Foot",
  22671. image: {
  22672. source: "./media/characters/nicky/foot.svg"
  22673. }
  22674. },
  22675. feet: {
  22676. height: math.unit(1.34, "feet"),
  22677. name: "Feet",
  22678. image: {
  22679. source: "./media/characters/nicky/feet.svg"
  22680. }
  22681. },
  22682. maw: {
  22683. height: math.unit(0.9, "feet"),
  22684. name: "Maw",
  22685. image: {
  22686. source: "./media/characters/nicky/maw.svg"
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(5 + 10/12, "feet"),
  22694. default: true
  22695. },
  22696. {
  22697. name: "Macro",
  22698. height: math.unit(60, "feet")
  22699. },
  22700. {
  22701. name: "Megamacro",
  22702. height: math.unit(1, "mile")
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Blair" },
  22708. {
  22709. side: {
  22710. height: math.unit(10, "feet"),
  22711. weight: math.unit(600, "lb"),
  22712. name: "Side",
  22713. image: {
  22714. source: "./media/characters/blair/side.svg",
  22715. bottom: 16.6/475,
  22716. extra: 458/431
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Micro",
  22723. height: math.unit(8, "inches")
  22724. },
  22725. {
  22726. name: "Normal",
  22727. height: math.unit(10, "feet"),
  22728. default: true
  22729. },
  22730. {
  22731. name: "Macro",
  22732. height: math.unit(180, "feet")
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Fisher" },
  22738. {
  22739. front: {
  22740. height: math.unit(5 + 4/12, "feet"),
  22741. weight: math.unit(125, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/fisher/front.svg",
  22745. extra: 444/390,
  22746. bottom: 2/444.8
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Micro",
  22753. height: math.unit(4, "inches")
  22754. },
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(5 + 4/12, "feet"),
  22758. default: true
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(100, "feet")
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Gliss" },
  22768. {
  22769. front: {
  22770. height: math.unit(6.71, "feet"),
  22771. weight: math.unit(200, "lb"),
  22772. capacity: math.unit(1000000, "people"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/gliss/front.svg",
  22776. extra: 2347/2231,
  22777. bottom: 113/2462
  22778. }
  22779. },
  22780. hammerspaceSize: {
  22781. height: math.unit(6.71*717, "feet"),
  22782. weight: math.unit(200, "lb"),
  22783. capacity: math.unit(1000000, "people"),
  22784. name: "Hammerspace Size",
  22785. image: {
  22786. source: "./media/characters/gliss/front.svg",
  22787. extra: 2347/2231,
  22788. bottom: 113/2462
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(6.71, "feet"),
  22796. default: true
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Dune Anderson" },
  22802. {
  22803. side: {
  22804. height: math.unit(1.44, "m"),
  22805. weight: math.unit(80, "kg"),
  22806. name: "Side",
  22807. image: {
  22808. source: "./media/characters/dune-anderson/side.svg",
  22809. bottom: 49/1426
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Wolf-sized",
  22816. height: math.unit(1.44, "meters")
  22817. },
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(5.05, "meters"),
  22821. default: true
  22822. },
  22823. {
  22824. name: "Big",
  22825. height: math.unit(14.4, "meters")
  22826. },
  22827. {
  22828. name: "Huge",
  22829. height: math.unit(144, "meters")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Hind" },
  22835. {
  22836. front: {
  22837. height: math.unit(7, "feet"),
  22838. weight: math.unit(425, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/hind/front.svg",
  22842. extra: 2091/1860,
  22843. bottom: 129/2220
  22844. }
  22845. },
  22846. back: {
  22847. height: math.unit(7, "feet"),
  22848. weight: math.unit(425, "lb"),
  22849. name: "Back",
  22850. image: {
  22851. source: "./media/characters/hind/back.svg",
  22852. extra: 2091/1860,
  22853. bottom: 24.6/2309
  22854. }
  22855. },
  22856. tail: {
  22857. height: math.unit(2.8, "feet"),
  22858. name: "Tail",
  22859. image: {
  22860. source: "./media/characters/hind/tail.svg"
  22861. }
  22862. },
  22863. head: {
  22864. height: math.unit(2.55, "feet"),
  22865. name: "Head",
  22866. image: {
  22867. source: "./media/characters/hind/head.svg"
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "XS",
  22874. height: math.unit(0.7, "feet")
  22875. },
  22876. {
  22877. name: "Normal",
  22878. height: math.unit(7, "feet"),
  22879. default: true
  22880. },
  22881. {
  22882. name: "XL",
  22883. height: math.unit(70, "feet")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Dylan (Skaven)" },
  22889. {
  22890. front: {
  22891. height: math.unit(6, "feet"),
  22892. weight: math.unit(150, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/dylan-skaven/front.svg",
  22896. extra: 2318/2063,
  22897. bottom: 93.4/2410
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Nano",
  22904. height: math.unit(1, "mm")
  22905. },
  22906. {
  22907. name: "Micro",
  22908. height: math.unit(1, "cm")
  22909. },
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(2.1, "meters"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(7 + 5/12, "feet"),
  22922. weight: math.unit(357, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/solex-draconov/front.svg",
  22926. extra: 1993/1865,
  22927. bottom: 117/2111
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Natural Height",
  22934. height: math.unit(7 + 5/12, "feet"),
  22935. default: true
  22936. },
  22937. {
  22938. name: "Macro",
  22939. height: math.unit(350, "feet")
  22940. },
  22941. {
  22942. name: "Macro+",
  22943. height: math.unit(1000, "feet")
  22944. },
  22945. {
  22946. name: "Megamacro",
  22947. height: math.unit(20, "km")
  22948. },
  22949. {
  22950. name: "Megamacro+",
  22951. height: math.unit(1000, "km")
  22952. },
  22953. {
  22954. name: "Gigamacro",
  22955. height: math.unit(2.5, "Gm")
  22956. },
  22957. {
  22958. name: "Teramacro",
  22959. height: math.unit(15, "Tm")
  22960. },
  22961. {
  22962. name: "Galactic",
  22963. height: math.unit(30, "Zm")
  22964. },
  22965. {
  22966. name: "Universal",
  22967. height: math.unit(21000, "Ym")
  22968. },
  22969. {
  22970. name: "Omniversal",
  22971. height: math.unit(9.861e50, "Ym")
  22972. },
  22973. {
  22974. name: "Existential",
  22975. height: math.unit(1e300, "meters")
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Mandarax" },
  22981. {
  22982. side: {
  22983. height: math.unit(25, "feet"),
  22984. weight: math.unit(90000, "lb"),
  22985. name: "Side",
  22986. image: {
  22987. source: "./media/characters/mandarax/side.svg",
  22988. extra: 614/332,
  22989. bottom: 55/630
  22990. }
  22991. },
  22992. head: {
  22993. height: math.unit(11.4, "feet"),
  22994. name: "Head",
  22995. image: {
  22996. source: "./media/characters/mandarax/head.svg"
  22997. }
  22998. },
  22999. belly: {
  23000. height: math.unit(33, "feet"),
  23001. name: "Belly",
  23002. capacity: math.unit(500, "people"),
  23003. image: {
  23004. source: "./media/characters/mandarax/belly.svg"
  23005. }
  23006. },
  23007. dick: {
  23008. height: math.unit(8.46, "feet"),
  23009. name: "Dick",
  23010. image: {
  23011. source: "./media/characters/mandarax/dick.svg"
  23012. }
  23013. },
  23014. top: {
  23015. height: math.unit(28, "meters"),
  23016. name: "Top",
  23017. image: {
  23018. source: "./media/characters/mandarax/top.svg"
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(25, "feet"),
  23026. default: true
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23032. {
  23033. front: {
  23034. height: math.unit(5, "feet"),
  23035. weight: math.unit(90, "lb"),
  23036. name: "Front",
  23037. image: {
  23038. source: "./media/characters/pixil/front.svg",
  23039. extra: 2000/1618,
  23040. bottom: 12.3/2011
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Normal",
  23047. height: math.unit(5, "feet"),
  23048. default: true
  23049. },
  23050. {
  23051. name: "Megamacro",
  23052. height: math.unit(10, "miles"),
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23058. {
  23059. front: {
  23060. height: math.unit(7 + 2/12, "feet"),
  23061. weight: math.unit(200, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/angel/front.svg",
  23065. extra: 1830/1737,
  23066. bottom: 22.6/1854,
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(7 + 2/12, "feet"),
  23074. default: true
  23075. },
  23076. {
  23077. name: "Macro",
  23078. height: math.unit(1000, "feet")
  23079. },
  23080. {
  23081. name: "Megamacro",
  23082. height: math.unit(2, "miles")
  23083. },
  23084. {
  23085. name: "Gigamacro",
  23086. height: math.unit(20, "earths")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23092. {
  23093. front: {
  23094. height: math.unit(5, "feet"),
  23095. weight: math.unit(180, "lb"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/mekana/front.svg",
  23099. extra: 1671/1605,
  23100. bottom: 3.5/1691
  23101. }
  23102. },
  23103. side: {
  23104. height: math.unit(5, "feet"),
  23105. weight: math.unit(180, "lb"),
  23106. name: "Side",
  23107. image: {
  23108. source: "./media/characters/mekana/side.svg",
  23109. extra: 1671/1605,
  23110. bottom: 3.5/1691
  23111. }
  23112. },
  23113. back: {
  23114. height: math.unit(5, "feet"),
  23115. weight: math.unit(180, "lb"),
  23116. name: "Back",
  23117. image: {
  23118. source: "./media/characters/mekana/back.svg",
  23119. extra: 1671/1605,
  23120. bottom: 3.5/1691
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Normal",
  23127. height: math.unit(5, "feet"),
  23128. default: true
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(4 + 6/12, "feet"),
  23137. weight: math.unit(80, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/pixie/front.svg",
  23141. extra: 1924/1825,
  23142. bottom: 22.4/1946
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Normal",
  23149. height: math.unit(4 + 6/12, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(40, "feet")
  23155. },
  23156. ]
  23157. ))
  23158. //characters
  23159. function makeCharacters() {
  23160. const results = [];
  23161. characterMakers.forEach(character => {
  23162. results.push(character());
  23163. });
  23164. return results;
  23165. }