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

26245 строки
652 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. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. }
  1280. //species
  1281. function getSpeciesInfo(speciesList) {
  1282. let result = new Set();
  1283. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1284. result.add(entry)
  1285. });
  1286. return Array.from(result);
  1287. };
  1288. function getSpeciesInfoHelper(species) {
  1289. if (!speciesData[species]) {
  1290. console.warn(species + " doesn't exist");
  1291. return [];
  1292. }
  1293. if (speciesData[species].parents) {
  1294. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1295. } else {
  1296. return [species];
  1297. }
  1298. }
  1299. characterMakers.push(() => makeCharacter(
  1300. {
  1301. name: "Fen",
  1302. species: ["crux"],
  1303. description: {
  1304. title: "Bio",
  1305. text: "Very furry. Sheds on everything."
  1306. },
  1307. tags: [
  1308. "anthro",
  1309. "goo"
  1310. ]
  1311. },
  1312. {
  1313. back: {
  1314. height: math.unit(2.2428, "meter"),
  1315. weight: math.unit(124.738, "kg"),
  1316. name: "Back",
  1317. image: {
  1318. source: "./media/characters/fen/back.svg",
  1319. extra: 1025 / 935,
  1320. bottom: 0.01
  1321. },
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nHe is not currently looking at you."
  1326. }
  1327. }
  1328. },
  1329. full: {
  1330. height: math.unit(1.34, "meter"),
  1331. weight: math.unit(225, "kg"),
  1332. name: "Full",
  1333. image: {
  1334. source: "./media/characters/fen/full.svg"
  1335. },
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nMunch."
  1340. }
  1341. }
  1342. },
  1343. kneeling: {
  1344. height: math.unit(5.4, "feet"),
  1345. weight: math.unit(124.738, "kg"),
  1346. name: "Kneeling",
  1347. image: {
  1348. source: "./media/characters/fen/kneeling.svg",
  1349. extra: 563 / 507
  1350. }
  1351. },
  1352. goo: {
  1353. height: math.unit(2.8, "feet"),
  1354. weight: math.unit(125, "kg"),
  1355. capacity: math.unit(1, "people"),
  1356. name: "Goo",
  1357. image: {
  1358. source: "./media/characters/fen/goo.svg",
  1359. bottom: 116 / 613
  1360. }
  1361. },
  1362. lounging: {
  1363. height: math.unit(6.5, "feet"),
  1364. weight: math.unit(125, "kg"),
  1365. name: "Lounging",
  1366. image: {
  1367. source: "./media/characters/fen/lounging.svg"
  1368. }
  1369. },
  1370. },
  1371. [
  1372. {
  1373. name: "Normal",
  1374. height: math.unit(2.2428, "meter")
  1375. },
  1376. {
  1377. name: "Big",
  1378. height: math.unit(12, "feet")
  1379. },
  1380. {
  1381. name: "Minimacro",
  1382. height: math.unit(40, "feet"),
  1383. default: true,
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nTOO DAMN BIG"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. name: "Macro",
  1393. height: math.unit(100, "feet"),
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nTOO DAMN BIG"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. name: "Macro+",
  1403. height: math.unit(300, "feet")
  1404. },
  1405. {
  1406. name: "Megamacro",
  1407. height: math.unit(2, "miles")
  1408. }
  1409. ]
  1410. ))
  1411. characterMakers.push(() => makeCharacter(
  1412. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1413. {
  1414. front: {
  1415. height: math.unit(183, "cm"),
  1416. weight: math.unit(80, "kg"),
  1417. name: "Front",
  1418. image: {
  1419. source: "./media/characters/sofia-fluttertail/front.svg",
  1420. bottom: 0.01,
  1421. extra: 2154 / 2081
  1422. }
  1423. },
  1424. frontAlt: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Front (alt)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1430. }
  1431. },
  1432. back: {
  1433. height: math.unit(183, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Back",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/back.svg"
  1438. }
  1439. },
  1440. kneeling: {
  1441. height: math.unit(125, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Kneeling",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1446. extra: 1033 / 977,
  1447. bottom: 23.7 / 1057
  1448. }
  1449. },
  1450. maw: {
  1451. height: math.unit(183 / 5, "cm"),
  1452. name: "Maw",
  1453. image: {
  1454. source: "./media/characters/sofia-fluttertail/maw.svg"
  1455. }
  1456. },
  1457. mawcloseup: {
  1458. height: math.unit(183 / 5 * 0.41, "cm"),
  1459. name: "Maw (Closeup)",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1462. }
  1463. },
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(1.83, "meter")
  1469. },
  1470. {
  1471. name: "Size Thief",
  1472. height: math.unit(18, "feet")
  1473. },
  1474. {
  1475. name: "50 Foot Collie",
  1476. height: math.unit(50, "feet")
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(96, "feet"),
  1481. default: true
  1482. },
  1483. {
  1484. name: "Megamerger",
  1485. height: math.unit(650, "feet")
  1486. },
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1491. {
  1492. front: {
  1493. height: math.unit(7, "feet"),
  1494. weight: math.unit(100, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/march/front.svg",
  1498. extra: 1,
  1499. bottom: 0.015
  1500. }
  1501. },
  1502. foot: {
  1503. height: math.unit(0.9, "feet"),
  1504. name: "Foot",
  1505. image: {
  1506. source: "./media/characters/march/foot.svg"
  1507. }
  1508. },
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(7.9, "feet")
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(220, "meters")
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(2.98, "km"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Gigamacro",
  1526. height: math.unit(15963, "km")
  1527. },
  1528. {
  1529. name: "Teramacro",
  1530. height: math.unit(2980000000, "km")
  1531. },
  1532. {
  1533. name: "Examacro",
  1534. height: math.unit(250, "parsecs")
  1535. },
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1540. {
  1541. front: {
  1542. height: math.unit(6, "feet"),
  1543. weight: math.unit(60, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/noir/front.svg",
  1547. extra: 1,
  1548. bottom: 0.032
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6.6, "feet")
  1556. },
  1557. {
  1558. name: "Macro",
  1559. height: math.unit(500, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2.5, "km"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(22500, "km")
  1569. },
  1570. {
  1571. name: "Teramacro",
  1572. height: math.unit(2500000000, "km")
  1573. },
  1574. {
  1575. name: "Examacro",
  1576. height: math.unit(200, "parsecs")
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/okuri/front.svg",
  1589. extra: 1,
  1590. bottom: 0.037
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/okuri/back.svg",
  1599. extra: 1,
  1600. bottom: 0.007
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(100, "miles"),
  1608. default: true
  1609. },
  1610. ]
  1611. ))
  1612. characterMakers.push(() => makeCharacter(
  1613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1614. {
  1615. front: {
  1616. height: math.unit(7, "feet"),
  1617. weight: math.unit(100, "kg"),
  1618. name: "Front",
  1619. image: {
  1620. source: "./media/characters/manny/front.svg",
  1621. extra: 1,
  1622. bottom: 0.06
  1623. }
  1624. },
  1625. back: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/manny/back.svg",
  1631. extra: 1,
  1632. bottom: 0.014
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(7, "feet"),
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(78, "feet"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Macro+",
  1648. height: math.unit(300, "meters")
  1649. },
  1650. {
  1651. name: "Macro++",
  1652. height: math.unit(2400, "meters")
  1653. },
  1654. {
  1655. name: "Megamacro",
  1656. height: math.unit(5167, "meters")
  1657. },
  1658. {
  1659. name: "Gigamacro",
  1660. height: math.unit(41769, "miles")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/adake/front-1.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(7, "feet"),
  1677. weight: math.unit(100, "kg"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/adake/front-2.svg",
  1681. extra: 1,
  1682. bottom: 0.01
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(7, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/adake/back.svg",
  1691. }
  1692. },
  1693. kneel: {
  1694. height: math.unit(5.385, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Kneeling",
  1697. image: {
  1698. source: "./media/characters/adake/kneel.svg",
  1699. bottom: 0.052
  1700. }
  1701. },
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(7, "feet"),
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(78, "feet"),
  1711. default: true
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Macro++",
  1719. height: math.unit(2400, "meters")
  1720. },
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(5167, "meters")
  1724. },
  1725. {
  1726. name: "Gigamacro",
  1727. height: math.unit(41769, "miles")
  1728. },
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/elijah/front.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/elijah/back.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. frontNsfw: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front (NSFW)",
  1758. image: {
  1759. source: "./media/characters/elijah/front-nsfw.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. backNsfw: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back (NSFW)",
  1768. image: {
  1769. source: "./media/characters/elijah/back-nsfw.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. dick: {
  1775. height: math.unit(1, "feet"),
  1776. name: "Dick",
  1777. image: {
  1778. source: "./media/characters/elijah/dick.svg"
  1779. }
  1780. },
  1781. beakOpen: {
  1782. height: math.unit(1.25, "feet"),
  1783. name: "Beak (Open)",
  1784. image: {
  1785. source: "./media/characters/elijah/beak-open.svg"
  1786. }
  1787. },
  1788. beakShut: {
  1789. height: math.unit(1.25, "feet"),
  1790. name: "Beak (Shut)",
  1791. image: {
  1792. source: "./media/characters/elijah/beak-shut.svg"
  1793. }
  1794. },
  1795. footFlexing: {
  1796. height: math.unit(1.61, "feet"),
  1797. name: "Foot (Flexing)",
  1798. image: {
  1799. source: "./media/characters/elijah/foot-flexing.svg"
  1800. }
  1801. },
  1802. footStepping: {
  1803. height: math.unit(1.44, "feet"),
  1804. name: "Foot (Stepping)",
  1805. image: {
  1806. source: "./media/characters/elijah/foot-stepping.svg"
  1807. }
  1808. },
  1809. plantigradeLeg: {
  1810. height: math.unit(2.34, "feet"),
  1811. name: "Plantigrade Leg",
  1812. image: {
  1813. source: "./media/characters/elijah/plantigrade-leg.svg"
  1814. }
  1815. },
  1816. plantigradeFootLeft: {
  1817. height: math.unit(0.9, "feet"),
  1818. name: "Plantigrade Foot (Left)",
  1819. image: {
  1820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1821. }
  1822. },
  1823. plantigradeFootRight: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Plantigrade Foot (Right)",
  1826. image: {
  1827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(1.65, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(55, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Macro+",
  1843. height: math.unit(105, "meters")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(11, "feet"),
  1852. weight: math.unit(80, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/rai/front.svg",
  1856. extra: 1,
  1857. bottom: 0.03
  1858. }
  1859. },
  1860. side: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "kg"),
  1863. name: "Side",
  1864. image: {
  1865. source: "./media/characters/rai/side.svg"
  1866. }
  1867. },
  1868. back: {
  1869. height: math.unit(11, "feet"),
  1870. weight: math.unit(80, "lb"),
  1871. name: "Back",
  1872. image: {
  1873. source: "./media/characters/rai/back.svg",
  1874. extra: 1,
  1875. bottom: 0.01
  1876. }
  1877. },
  1878. feral: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(800, "lb"),
  1881. name: "Feral",
  1882. image: {
  1883. source: "./media/characters/rai/feral.svg",
  1884. extra: 1050 / 659,
  1885. bottom: 0.07
  1886. }
  1887. },
  1888. dragon: {
  1889. height: math.unit(23, "feet"),
  1890. weight: math.unit(50000, "lb"),
  1891. name: "Dragon",
  1892. image: {
  1893. source: "./media/characters/rai/dragon.svg",
  1894. extra: 2498 / 2030,
  1895. bottom: 85.2 / 2584
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(6 / 3.81416, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/rai/maw.svg"
  1903. }
  1904. },
  1905. },
  1906. [
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(11, "feet")
  1910. },
  1911. {
  1912. name: "Macro",
  1913. height: math.unit(302, "feet"),
  1914. default: true
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1920. {
  1921. frontDressed: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front (Dressed)",
  1925. image: {
  1926. source: "./media/characters/jazzy/front-dressed.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. backDressed: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back (Dressed)",
  1935. image: {
  1936. source: "./media/characters/jazzy/back-dressed.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. front: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/jazzy/front.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/jazzy/back.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(20, "feet"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/jazzy/maw.svg"
  1966. }
  1967. },
  1968. paws: {
  1969. height: math.unit(27.5, "feet"),
  1970. name: "Paws",
  1971. image: {
  1972. source: "./media/characters/jazzy/paws.svg"
  1973. }
  1974. },
  1975. eye: {
  1976. height: math.unit(4.4, "feet"),
  1977. name: "Eye",
  1978. image: {
  1979. source: "./media/characters/jazzy/eye.svg"
  1980. }
  1981. },
  1982. droneOffense: {
  1983. height: math.unit(9.5, "inches"),
  1984. name: "Drone (Offense)",
  1985. image: {
  1986. source: "./media/characters/jazzy/drone-offense.svg"
  1987. }
  1988. },
  1989. droneRecon: {
  1990. height: math.unit(9.5, "inches"),
  1991. name: "Drone (Recon)",
  1992. image: {
  1993. source: "./media/characters/jazzy/drone-recon.svg"
  1994. }
  1995. },
  1996. droneDefense: {
  1997. height: math.unit(9.5, "inches"),
  1998. name: "Drone (Defense)",
  1999. image: {
  2000. source: "./media/characters/jazzy/drone-defense.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(216, "feet"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/flamm/front.svg",
  2021. extra: 1794 / 1677,
  2022. bottom: 31.7 / 1828.5
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(9.5, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(200, "feet"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/zephiro/front.svg",
  2047. extra: 2309 / 2162,
  2048. bottom: 0.069
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/zephiro/side.svg",
  2057. extra: 2403 / 2279,
  2058. bottom: 0.015
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/zephiro/back.svg",
  2067. extra: 2373 / 2244,
  2068. bottom: 0.013
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Micro",
  2075. height: math.unit(3, "inches")
  2076. },
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(5 + 3 / 12, "feet"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(118, "feet")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(5, "feet"),
  2093. weight: math.unit(90, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/fory/front.svg",
  2097. extra: 2862 / 2674,
  2098. bottom: 180 / 3043.8
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(5, "feet"),
  2103. weight: math.unit(90, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/fory/back.svg",
  2107. extra: 2962 / 2791,
  2108. bottom: 106 / 3071.8
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(2.14, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/fory/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(5, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(50, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(10, "miles")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(5, "earths")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(90, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kurrikage/front.svg",
  2148. extra: 1,
  2149. bottom: 0.035
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(90, "lb"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kurrikage/back.svg"
  2158. }
  2159. },
  2160. paw: {
  2161. height: math.unit(1.5, "feet"),
  2162. name: "Paw",
  2163. image: {
  2164. source: "./media/characters/kurrikage/paw.svg"
  2165. }
  2166. },
  2167. staff: {
  2168. height: math.unit(6.7, "feet"),
  2169. name: "Staff",
  2170. image: {
  2171. source: "./media/characters/kurrikage/staff.svg"
  2172. }
  2173. },
  2174. peek: {
  2175. height: math.unit(1.05, "feet"),
  2176. name: "Peeking",
  2177. image: {
  2178. source: "./media/characters/kurrikage/peek.svg",
  2179. bottom: 0.08
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Macro",
  2195. height: math.unit(500, "feet")
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(20, "miles")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(75, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/shingo/front.svg",
  2212. extra: 3511 / 3338,
  2213. bottom: 0.005
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(4, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(108, "feet")
  2230. }
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2235. {
  2236. side: {
  2237. height: math.unit(6, "feet"),
  2238. weight: math.unit(75, "kg"),
  2239. name: "Side",
  2240. image: {
  2241. source: "./media/characters/aigey/side.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(200, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Megamacro",
  2253. height: math.unit(100, "miles")
  2254. },
  2255. ]
  2256. )
  2257. )
  2258. characterMakers.push(() => makeCharacter(
  2259. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2260. {
  2261. front: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front",
  2265. image: {
  2266. source: "./media/characters/natasha/front.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. frontNsfw: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Front (NSFW)",
  2275. image: {
  2276. source: "./media/characters/natasha/front-nsfw.svg",
  2277. extra: 859 / 824,
  2278. bottom: 23 / 879.6
  2279. }
  2280. },
  2281. frontErect: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Front (Erect)",
  2285. image: {
  2286. source: "./media/characters/natasha/front-erect.svg",
  2287. extra: 859 / 824,
  2288. bottom: 23 / 879.6
  2289. }
  2290. },
  2291. back: {
  2292. height: math.unit(5 + 5 / 12, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Back",
  2295. image: {
  2296. source: "./media/characters/natasha/back.svg",
  2297. extra: 887.9 / 852.6,
  2298. bottom: 9.7 / 896.4
  2299. }
  2300. },
  2301. backAlt: {
  2302. height: math.unit(5 + 5 / 12, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back (Alt)",
  2305. image: {
  2306. source: "./media/characters/natasha/back-alt.svg",
  2307. extra: 1236.7 / 1192,
  2308. bottom: 22.3 / 1258.2
  2309. }
  2310. },
  2311. dick: {
  2312. height: math.unit(1.772, "feet"),
  2313. name: "Dick",
  2314. image: {
  2315. source: "./media/characters/natasha/dick.svg"
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(5 + 5 / 12, "feet")
  2323. },
  2324. {
  2325. name: "Large",
  2326. height: math.unit(12, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "Macro+",
  2335. height: math.unit(260, "feet")
  2336. },
  2337. {
  2338. name: "Macro++",
  2339. height: math.unit(1, "mile")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/malik/front.svg"
  2352. }
  2353. },
  2354. side: {
  2355. height: math.unit(6, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Side",
  2358. image: {
  2359. source: "./media/characters/malik/side.svg",
  2360. extra: 1.1539
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/malik/back.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(156, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(1188, "feet")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/sefer/front.svg",
  2393. extra: 848 / 659,
  2394. bottom: 28.3 / 876.442
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/sefer/back.svg",
  2403. extra: 864 / 695,
  2404. bottom: 10 / 871
  2405. }
  2406. },
  2407. frontDressed: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/sefer/front-dressed.svg",
  2413. extra: 839 / 653,
  2414. bottom: 37.6 / 878
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(6, "feet"),
  2422. default: true
  2423. },
  2424. ]
  2425. ))
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2428. {
  2429. body: {
  2430. height: math.unit(2.2428, "meter"),
  2431. weight: math.unit(124.738, "kg"),
  2432. name: "Body",
  2433. image: {
  2434. extra: 1225 / 1050,
  2435. source: "./media/characters/north/front.svg"
  2436. }
  2437. }
  2438. },
  2439. [
  2440. {
  2441. name: "Micro",
  2442. height: math.unit(4, "inches")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(63, "meters")
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(101, "miles"),
  2451. default: true
  2452. }
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2457. {
  2458. angled: {
  2459. height: math.unit(4, "meter"),
  2460. weight: math.unit(150, "kg"),
  2461. name: "Angled",
  2462. image: {
  2463. source: "./media/characters/talan/angled-sfw.svg",
  2464. bottom: 29 / 3734
  2465. }
  2466. },
  2467. angledNsfw: {
  2468. height: math.unit(4, "meter"),
  2469. weight: math.unit(150, "kg"),
  2470. name: "Angled (NSFW)",
  2471. image: {
  2472. source: "./media/characters/talan/angled-nsfw.svg",
  2473. bottom: 29 / 3734
  2474. }
  2475. },
  2476. frontNsfw: {
  2477. height: math.unit(4, "meter"),
  2478. weight: math.unit(150, "kg"),
  2479. name: "Front (NSFW)",
  2480. image: {
  2481. source: "./media/characters/talan/front-nsfw.svg",
  2482. bottom: 29 / 3734
  2483. }
  2484. },
  2485. sideNsfw: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Side (NSFW)",
  2489. image: {
  2490. source: "./media/characters/talan/side-nsfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/talan/back.svg"
  2500. }
  2501. },
  2502. dickBottom: {
  2503. height: math.unit(0.621, "meter"),
  2504. name: "Dick (Bottom)",
  2505. image: {
  2506. source: "./media/characters/talan/dick-bottom.svg"
  2507. }
  2508. },
  2509. dickTop: {
  2510. height: math.unit(0.621, "meter"),
  2511. name: "Dick (Top)",
  2512. image: {
  2513. source: "./media/characters/talan/dick-top.svg"
  2514. }
  2515. },
  2516. dickSide: {
  2517. height: math.unit(0.305, "meter"),
  2518. name: "Dick (Side)",
  2519. image: {
  2520. source: "./media/characters/talan/dick-side.svg"
  2521. }
  2522. },
  2523. dickFront: {
  2524. height: math.unit(0.305, "meter"),
  2525. name: "Dick (Front)",
  2526. image: {
  2527. source: "./media/characters/talan/dick-front.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(4, "meters")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2, "miles"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(5000, "miles")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(100, "parsecs")
  2552. }
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front.svg"
  2564. }
  2565. },
  2566. frontAlt: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt.svg"
  2572. }
  2573. },
  2574. frontAlt2: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front (alt 2)",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2580. }
  2581. }
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(9, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Large",
  2591. height: math.unit(25, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(0.25, "miles")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(10, "miles")
  2600. }
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2605. {
  2606. side: {
  2607. height: math.unit(2, "meter"),
  2608. weight: math.unit(140, "kg"),
  2609. name: "Side",
  2610. image: {
  2611. source: "./media/characters/sosha/side.svg",
  2612. bottom: 0.042
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2626. {
  2627. side: {
  2628. height: math.unit(5 + 5 / 12, "feet"),
  2629. weight: math.unit(170, "kg"),
  2630. name: "Side",
  2631. image: {
  2632. source: "./media/characters/runnola/side.svg",
  2633. extra: 741 / 448,
  2634. bottom: 0.05
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Small",
  2641. height: math.unit(3, "feet")
  2642. },
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(10, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/kurribird/front.svg",
  2663. bottom: 0.015
  2664. }
  2665. },
  2666. frontAlt: {
  2667. height: math.unit(1.5, "meter"),
  2668. weight: math.unit(50, "kg"),
  2669. name: "Front (Alt)",
  2670. image: {
  2671. source: "./media/characters/kurribird/front-alt.svg",
  2672. extra: 1.45
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7, "feet")
  2680. },
  2681. {
  2682. name: "Big",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(1500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/elbial/front.svg",
  2705. extra: 1643 / 1556,
  2706. bottom: 60.2 / 1696
  2707. }
  2708. },
  2709. side: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Side",
  2713. image: {
  2714. source: "./media/characters/elbial/side.svg",
  2715. extra: 1630 / 1565,
  2716. bottom: 71.5 / 1697
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(2, "meter"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/elbial/back.svg",
  2725. extra: 1668 / 1595,
  2726. bottom: 5.6 / 1672
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/elbial/front-dressed.svg",
  2735. extra: 1653 / 1584,
  2736. bottom: 57 / 1708
  2737. }
  2738. },
  2739. genitals: {
  2740. height: math.unit(2 / 3.367, "meter"),
  2741. name: "Genitals",
  2742. image: {
  2743. source: "./media/characters/elbial/genitals.svg"
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Large",
  2750. height: math.unit(100, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(10, "miles")
  2760. },
  2761. {
  2762. name: "Gigamacro",
  2763. height: math.unit(25000, "miles")
  2764. },
  2765. {
  2766. name: "Full-Size",
  2767. height: math.unit(8000000, "gigaparsecs")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(60, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/noah/front.svg"
  2780. }
  2781. },
  2782. talons: {
  2783. height: math.unit(0.315, "meter"),
  2784. name: "Talons",
  2785. image: {
  2786. source: "./media/characters/noah/talons.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(50, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(750, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(50, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(100000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(3000000000, "miles")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/natalya/front.svg"
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/natalya/back.svg"
  2831. }
  2832. }
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(150, "feet"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(5, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(600, "kiloparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/erestrebah/front.svg",
  2859. extra: 208 / 193,
  2860. bottom: 0.055
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/erestrebah/back.svg",
  2869. extra: 1.3
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(10, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(300, "feet")
  2886. },
  2887. {
  2888. name: "Macro+",
  2889. height: math.unit(750, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(3, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jennifer/front.svg",
  2906. bottom: 0.11,
  2907. extra: 1.16
  2908. }
  2909. },
  2910. frontAlt: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Front (Alt)",
  2914. image: {
  2915. source: "./media/characters/jennifer/front-alt.svg"
  2916. }
  2917. }
  2918. },
  2919. [
  2920. {
  2921. name: "Canon Height",
  2922. height: math.unit(120, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(20000, "feet")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/kalista/front.svg",
  2944. extra: 1947 / 1700,
  2945. bottom: 76.6 / 1412.98
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/kalista/back.svg",
  2954. extra: 1366 / 1156,
  2955. bottom: 33.9 / 1362.78
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Uncomfortably Small",
  2962. height: math.unit(10, "feet")
  2963. },
  2964. {
  2965. name: "Small",
  2966. height: math.unit(30, "feet")
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(100, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(2000, "feet")
  2976. },
  2977. {
  2978. name: "True Form",
  2979. height: math.unit(8924, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/ggv/front.svg"
  2992. }
  2993. },
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(120, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/ggv/side.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Extremely Puny",
  3006. height: math.unit(9 + 5 / 12, "feet")
  3007. },
  3008. {
  3009. name: "Horribly Small",
  3010. height: math.unit(47.7, "miles"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Reasonably Sized",
  3015. height: math.unit(25000, "parsecs")
  3016. },
  3017. {
  3018. name: "Slightly Uncompressed",
  3019. height: math.unit(7.77e31, "parsecs")
  3020. },
  3021. {
  3022. name: "Omniversal",
  3023. height: math.unit(1e300, "meters")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/napalm/front.svg"
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(75, "lb"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/napalm/back.svg"
  3044. }
  3045. }
  3046. },
  3047. [
  3048. {
  3049. name: "Standard",
  3050. height: math.unit(55, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 5 / 6, "feet"),
  3060. weight: math.unit(325, "lb"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/asana/front.svg",
  3064. extra: 1133 / 1060,
  3065. bottom: 15.2/1148.6
  3066. }
  3067. },
  3068. back: {
  3069. height: math.unit(7 + 5 / 6, "feet"),
  3070. weight: math.unit(325, "lb"),
  3071. name: "Back",
  3072. image: {
  3073. source: "./media/characters/asana/back.svg",
  3074. extra: 1114 / 1043,
  3075. bottom: 5/1120
  3076. }
  3077. },
  3078. dressedDark: {
  3079. height: math.unit(7 + 5 / 6, "feet"),
  3080. weight: math.unit(325, "lb"),
  3081. name: "Dressed (Dark)",
  3082. image: {
  3083. source: "./media/characters/asana/dressed-dark.svg",
  3084. extra: 1133 / 1060,
  3085. bottom: 15.2/1148.6
  3086. }
  3087. },
  3088. dressedLight: {
  3089. height: math.unit(7 + 5 / 6, "feet"),
  3090. weight: math.unit(325, "lb"),
  3091. name: "Dressed (Light)",
  3092. image: {
  3093. source: "./media/characters/asana/dressed-light.svg",
  3094. extra: 1133 / 1060,
  3095. bottom: 15.2/1148.6
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Standard",
  3102. height: math.unit(7 + 5 / 6, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Large",
  3107. height: math.unit(10, "meters")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(2500, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(5e6, "meters")
  3116. },
  3117. {
  3118. name: "Examacro",
  3119. height: math.unit(5e12, "lightyears")
  3120. },
  3121. {
  3122. name: "Max Size",
  3123. height: math.unit(1e31, "lightyears")
  3124. }
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(2, "meter"),
  3132. weight: math.unit(60, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/ebony/front.svg",
  3136. bottom: 0.03,
  3137. extra: 1045 / 810 + 0.03
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(2, "meter"),
  3142. weight: math.unit(60, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/ebony/side.svg",
  3146. bottom: 0.03,
  3147. extra: 1045 / 810 + 0.03
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(2, "meter"),
  3152. weight: math.unit(60, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/ebony/back.svg",
  3156. bottom: 0.01,
  3157. extra: 1045 / 810 + 0.01
  3158. }
  3159. },
  3160. },
  3161. [
  3162. // TODO check why I did this lol
  3163. {
  3164. name: "Standard",
  3165. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(200, "feet")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(13000, "km")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(175, "lb"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/mountain/front.svg",
  3187. extra: 972/955,
  3188. bottom: 64/1036.6
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(175, "lb"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/mountain/back.svg",
  3197. extra: 970/950,
  3198. bottom: 28.25/999
  3199. }
  3200. },
  3201. },
  3202. [
  3203. {
  3204. name: "Large",
  3205. height: math.unit(20, "meters")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(300, "meters")
  3210. },
  3211. {
  3212. name: "Gigamacro",
  3213. height: math.unit(10000, "km"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Examacro",
  3218. height: math.unit(10e9, "lightyears")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(8, "feet"),
  3227. weight: math.unit(500, "lb"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/rick/front.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(8, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(5, "km")
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(8, "feet"),
  3251. weight: math.unit(120, "lb"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/ona/front.svg"
  3255. }
  3256. },
  3257. frontAlt: {
  3258. height: math.unit(8, "feet"),
  3259. weight: math.unit(120, "lb"),
  3260. name: "Front (Alt)",
  3261. image: {
  3262. source: "./media/characters/ona/front-alt.svg"
  3263. }
  3264. },
  3265. back: {
  3266. height: math.unit(8, "feet"),
  3267. weight: math.unit(120, "lb"),
  3268. name: "Back",
  3269. image: {
  3270. source: "./media/characters/ona/back.svg"
  3271. }
  3272. },
  3273. foot: {
  3274. height: math.unit(1.1, "feet"),
  3275. name: "Foot",
  3276. image: {
  3277. source: "./media/characters/ona/foot.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(70, "km"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Gigamacro",
  3289. height: math.unit(681818, "miles")
  3290. },
  3291. {
  3292. name: "Examacro",
  3293. height: math.unit(3800000, "lightyears")
  3294. },
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(12, "feet"),
  3302. weight: math.unit(3000, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/mech/front.svg",
  3306. bottom: 0.025,
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(12, "feet"),
  3311. weight: math.unit(3000, "lb"),
  3312. name: "Back",
  3313. image: {
  3314. source: "./media/characters/mech/back.svg",
  3315. bottom: 0.03,
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Normal",
  3322. height: math.unit(12, "feet")
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(300, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Macro+",
  3331. height: math.unit(1500, "feet")
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(1.3, "meter"),
  3340. weight: math.unit(30, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/gregory/front.svg",
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(1.3, "meter"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(20, "meter")
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(2.8, "meter"),
  3364. weight: math.unit(200, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/elory/front.svg",
  3368. }
  3369. }
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(2.8, "meter"),
  3375. default: true
  3376. },
  3377. {
  3378. name: "Macro",
  3379. height: math.unit(38, "meter")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(470, "feet"),
  3388. weight: math.unit(924, "tons"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/angelpatamon/front.svg",
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(470, "feet"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Deity Size I",
  3403. height: math.unit(28651.2, "km")
  3404. },
  3405. {
  3406. name: "Deity Size II",
  3407. height: math.unit(171907.2, "km")
  3408. }
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3413. {
  3414. side: {
  3415. height: math.unit(7.2, "meter"),
  3416. weight: math.unit(8.2, "tons"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/cryae/side.svg",
  3420. extra: 3500 / 1500
  3421. }
  3422. }
  3423. },
  3424. [
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(7.2, "meter"),
  3428. default: true
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(6, "feet"),
  3437. weight: math.unit(175, "lb"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/xera/front.svg",
  3441. extra: 2377 / 1972,
  3442. bottom: 75.5/2452
  3443. }
  3444. },
  3445. side: {
  3446. height: math.unit(6, "feet"),
  3447. weight: math.unit(175, "lb"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/xera/side.svg",
  3451. extra: 2345/2019,
  3452. bottom: 39.7/2384
  3453. }
  3454. },
  3455. back: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(175, "lb"),
  3458. name: "Back",
  3459. image: {
  3460. source: "./media/characters/xera/back.svg",
  3461. extra: 2095/1984,
  3462. bottom: 67/2166
  3463. }
  3464. },
  3465. },
  3466. [
  3467. {
  3468. name: "Small",
  3469. height: math.unit(10, "feet")
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(500, "meters"),
  3474. default: true
  3475. },
  3476. {
  3477. name: "Macro+",
  3478. height: math.unit(10, "km")
  3479. },
  3480. {
  3481. name: "Gigamacro",
  3482. height: math.unit(25000, "km")
  3483. },
  3484. {
  3485. name: "Teramacro",
  3486. height: math.unit(3e6, "km")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(6, "feet"),
  3495. weight: math.unit(175, "lb"),
  3496. name: "Front",
  3497. image: {
  3498. source: "./media/characters/nebula/front.svg",
  3499. extra: 2600 / 2450
  3500. }
  3501. }
  3502. },
  3503. [
  3504. {
  3505. name: "Small",
  3506. height: math.unit(4.5, "meters")
  3507. },
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(1500, "meters"),
  3511. default: true
  3512. },
  3513. {
  3514. name: "Megamacro",
  3515. height: math.unit(150, "km")
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(27000, "km")
  3520. }
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(225, "lb"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/abysgar/front.svg"
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Small",
  3538. height: math.unit(4.5, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(1250, "meters"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(125, "km")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(26000, "km")
  3552. }
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(180, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/yakuz/front.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1500, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(200, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(100000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(175, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/mirova/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(900, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(135, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(20000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3621. {
  3622. side: {
  3623. height: math.unit(28.35, "feet"),
  3624. weight: math.unit(99.75, "tons"),
  3625. name: "Side",
  3626. image: {
  3627. source: "./media/characters/asana-mech/side.svg",
  3628. extra: 923/699,
  3629. bottom: 50/975
  3630. }
  3631. },
  3632. chaingun: {
  3633. height: math.unit(7, "feet"),
  3634. weight: math.unit(2400, "lb"),
  3635. name: "Chaingun",
  3636. image: {
  3637. source: "./media/characters/asana-mech/chaingun.svg"
  3638. }
  3639. },
  3640. laser: {
  3641. height: math.unit(7.12, "feet"),
  3642. weight: math.unit(2000, "lb"),
  3643. name: "Laser",
  3644. image: {
  3645. source: "./media/characters/asana-mech/laser.svg"
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(28.35, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(2500, "feet")
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(25, "miles")
  3662. },
  3663. {
  3664. name: "Examacro",
  3665. height: math.unit(6e8, "lightyears")
  3666. },
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(2, "meters"),
  3674. weight: math.unit(70, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/ashtrek/front.svg",
  3678. extra: 560 / 524,
  3679. bottom: 0.01
  3680. }
  3681. },
  3682. frontArmor: {
  3683. height: math.unit(2, "meters"),
  3684. weight: math.unit(76, "kg"),
  3685. name: "Front (Armor)",
  3686. image: {
  3687. source: "./media/characters/ashtrek/front-armor.svg",
  3688. extra: 561 / 527,
  3689. bottom: 0.01
  3690. }
  3691. },
  3692. side: {
  3693. height: math.unit(2, "meters"),
  3694. weight: math.unit(70, "kg"),
  3695. name: "Side",
  3696. image: {
  3697. source: "./media/characters/ashtrek/side.svg",
  3698. extra: 1717 / 1609,
  3699. bottom: 0.005
  3700. }
  3701. },
  3702. back: {
  3703. height: math.unit(2, "meters"),
  3704. weight: math.unit(70, "kg"),
  3705. name: "Back",
  3706. image: {
  3707. source: "./media/characters/ashtrek/back.svg",
  3708. extra: 1570 / 1501
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "DEFCON 5",
  3715. height: math.unit(5, "meters")
  3716. },
  3717. {
  3718. name: "DEFCON 4",
  3719. height: math.unit(500, "meters"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "DEFCON 3",
  3724. height: math.unit(5, "km")
  3725. },
  3726. {
  3727. name: "DEFCON 2",
  3728. height: math.unit(500, "km")
  3729. },
  3730. {
  3731. name: "DEFCON 1",
  3732. height: math.unit(500000, "km")
  3733. },
  3734. {
  3735. name: "DEFCON 0",
  3736. height: math.unit(3, "gigaparsecs")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(2, "meters"),
  3745. weight: math.unit(76, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/gale/front.svg"
  3749. }
  3750. },
  3751. frontAlt1: {
  3752. height: math.unit(2, "meters"),
  3753. weight: math.unit(76, "kg"),
  3754. name: "Front (Alt 1)",
  3755. image: {
  3756. source: "./media/characters/gale/front-alt-1.svg"
  3757. }
  3758. },
  3759. frontAlt2: {
  3760. height: math.unit(2, "meters"),
  3761. weight: math.unit(76, "kg"),
  3762. name: "Front (Alt 2)",
  3763. image: {
  3764. source: "./media/characters/gale/front-alt-2.svg"
  3765. }
  3766. },
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7, "feet")
  3772. },
  3773. {
  3774. name: "Macro",
  3775. height: math.unit(150, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Macro+",
  3780. height: math.unit(300, "feet")
  3781. },
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3786. {
  3787. front: {
  3788. height: math.unit(2, "meters"),
  3789. weight: math.unit(76, "kg"),
  3790. name: "Front",
  3791. image: {
  3792. source: "./media/characters/draylen/front.svg"
  3793. }
  3794. }
  3795. },
  3796. [
  3797. {
  3798. name: "Macro",
  3799. height: math.unit(150, "feet"),
  3800. default: true
  3801. }
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3806. {
  3807. front: {
  3808. height: math.unit(7 + 9 / 12, "feet"),
  3809. weight: math.unit(379, "lbs"),
  3810. name: "Front",
  3811. image: {
  3812. source: "./media/characters/chez/front.svg"
  3813. }
  3814. },
  3815. side: {
  3816. height: math.unit(7 + 9 / 12, "feet"),
  3817. weight: math.unit(379, "lbs"),
  3818. name: "Side",
  3819. image: {
  3820. source: "./media/characters/chez/side.svg"
  3821. }
  3822. }
  3823. },
  3824. [
  3825. {
  3826. name: "Normal",
  3827. height: math.unit(7 + 9 / 12, "feet"),
  3828. default: true
  3829. },
  3830. {
  3831. name: "God King",
  3832. height: math.unit(9750000, "meters")
  3833. }
  3834. ]
  3835. ))
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3838. {
  3839. front: {
  3840. height: math.unit(6, "feet"),
  3841. weight: math.unit(275, "lbs"),
  3842. name: "Front",
  3843. image: {
  3844. source: "./media/characters/kaylum/front.svg",
  3845. bottom: 0.01,
  3846. extra: 1166 / 1031
  3847. }
  3848. },
  3849. frontWingless: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(275, "lbs"),
  3852. name: "Front (Wingless)",
  3853. image: {
  3854. source: "./media/characters/kaylum/front-wingless.svg",
  3855. bottom: 0.01,
  3856. extra: 1117 / 1031
  3857. }
  3858. }
  3859. },
  3860. [
  3861. {
  3862. name: "Normal",
  3863. height: math.unit(3.05, "meters")
  3864. },
  3865. {
  3866. name: "Master",
  3867. height: math.unit(5.5, "meters")
  3868. },
  3869. {
  3870. name: "Rampage",
  3871. height: math.unit(19, "meters")
  3872. },
  3873. {
  3874. name: "Macro Lite",
  3875. height: math.unit(37, "meters")
  3876. },
  3877. {
  3878. name: "Hyper Predator",
  3879. height: math.unit(61, "meters")
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(138, "meters"),
  3884. default: true
  3885. }
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(150, "lbs"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/geta/front.svg"
  3897. }
  3898. }
  3899. },
  3900. [
  3901. {
  3902. name: "Micro",
  3903. height: math.unit(3, "inches"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. }
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(300, "lbs"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/tyrnn/front.svg"
  3921. }
  3922. }
  3923. },
  3924. [
  3925. {
  3926. name: "Main Height",
  3927. height: math.unit(355, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Fave. Height",
  3932. height: math.unit(2400, "feet")
  3933. }
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(300, "lbs"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/appledectomy/front.svg"
  3945. }
  3946. }
  3947. },
  3948. [
  3949. {
  3950. name: "Macro",
  3951. height: math.unit(2500, "feet")
  3952. },
  3953. {
  3954. name: "Megamacro",
  3955. height: math.unit(50, "miles"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Gigamacro",
  3960. height: math.unit(5000, "miles")
  3961. },
  3962. {
  3963. name: "Teramacro",
  3964. height: math.unit(250000, "miles")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(200, "lbs"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/vulpes/front.svg",
  3977. extra: 573 / 543,
  3978. bottom: 0.033
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(200, "lbs"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/vulpes/side.svg",
  3987. extra: 573 / 543,
  3988. bottom: 0.01
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(200, "lbs"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/vulpes/back.svg",
  3997. extra: 573 / 543,
  3998. }
  3999. },
  4000. feet: {
  4001. height: math.unit(1.276, "feet"),
  4002. name: "Feet",
  4003. image: {
  4004. source: "./media/characters/vulpes/feet.svg"
  4005. }
  4006. },
  4007. maw: {
  4008. height: math.unit(1.18, "feet"),
  4009. name: "Maw",
  4010. image: {
  4011. source: "./media/characters/vulpes/maw.svg"
  4012. }
  4013. },
  4014. },
  4015. [
  4016. {
  4017. name: "Micro",
  4018. height: math.unit(2, "inches")
  4019. },
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(6.3, "feet")
  4023. },
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(850, "feet")
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(7500, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Gigamacro",
  4035. height: math.unit(570000, "miles")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4041. {
  4042. front: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(210, "lbs"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/rain-fallen/front.svg"
  4048. }
  4049. },
  4050. side: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(210, "lbs"),
  4053. name: "Side",
  4054. image: {
  4055. source: "./media/characters/rain-fallen/side.svg"
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(210, "lbs"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/rain-fallen/back.svg"
  4064. }
  4065. },
  4066. feral: {
  4067. height: math.unit(9, "feet"),
  4068. weight: math.unit(700, "lbs"),
  4069. name: "Feral",
  4070. image: {
  4071. source: "./media/characters/rain-fallen/feral.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(5, "meter")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(150, "meter"),
  4083. default: true
  4084. },
  4085. {
  4086. name: "Megamacro",
  4087. height: math.unit(278e6, "meter")
  4088. },
  4089. {
  4090. name: "Gigamacro",
  4091. height: math.unit(2e9, "meter")
  4092. },
  4093. {
  4094. name: "Teramacro",
  4095. height: math.unit(8e12, "meter")
  4096. },
  4097. {
  4098. name: "Devourer",
  4099. height: math.unit(14, "zettameters")
  4100. },
  4101. {
  4102. name: "Scarlet King",
  4103. height: math.unit(18, "yottameters")
  4104. },
  4105. {
  4106. name: "Void",
  4107. height: math.unit(6.66e66, "yottameters")
  4108. }
  4109. ]
  4110. ))
  4111. characterMakers.push(() => makeCharacter(
  4112. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4113. {
  4114. standing: {
  4115. height: math.unit(6, "feet"),
  4116. weight: math.unit(180, "lbs"),
  4117. name: "Standing",
  4118. image: {
  4119. source: "./media/characters/zaakira/standing.svg"
  4120. }
  4121. },
  4122. laying: {
  4123. height: math.unit(3, "feet"),
  4124. weight: math.unit(180, "lbs"),
  4125. name: "Laying",
  4126. image: {
  4127. source: "./media/characters/zaakira/laying.svg"
  4128. }
  4129. },
  4130. },
  4131. [
  4132. {
  4133. name: "Normal",
  4134. height: math.unit(12, "feet")
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(279, "feet"),
  4139. default: true
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(250, "lbs"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/sigvald/front.svg",
  4152. extra: 1000 / 850
  4153. }
  4154. },
  4155. back: {
  4156. height: math.unit(6, "feet"),
  4157. weight: math.unit(250, "lbs"),
  4158. name: "Back",
  4159. image: {
  4160. source: "./media/characters/sigvald/back.svg"
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(8, "feet")
  4168. },
  4169. {
  4170. name: "Large",
  4171. height: math.unit(12, "feet")
  4172. },
  4173. {
  4174. name: "Larger",
  4175. height: math.unit(20, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(150, "feet")
  4180. },
  4181. {
  4182. name: "Macro+",
  4183. height: math.unit(200, "feet"),
  4184. default: true
  4185. },
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4190. {
  4191. side: {
  4192. height: math.unit(12, "feet"),
  4193. weight: math.unit(2000, "kg"),
  4194. name: "Side",
  4195. image: {
  4196. source: "./media/characters/scott/side.svg",
  4197. extra: 754 / 724,
  4198. bottom: 0.069
  4199. }
  4200. },
  4201. upright: {
  4202. height: math.unit(12, "feet"),
  4203. weight: math.unit(2000, "kg"),
  4204. name: "Upright",
  4205. image: {
  4206. source: "./media/characters/scott/upright.svg",
  4207. extra: 3881 / 3722,
  4208. bottom: 0.05
  4209. }
  4210. },
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(12, "feet"),
  4216. default: true
  4217. },
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4222. {
  4223. side: {
  4224. height: math.unit(8, "meters"),
  4225. weight: math.unit(84755, "lbs"),
  4226. name: "Side",
  4227. image: {
  4228. source: "./media/characters/tobias/side.svg",
  4229. extra: 1474 / 1096,
  4230. bottom: 38.9 / 1513.1235
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(8, "meters"),
  4238. default: true
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4244. {
  4245. front: {
  4246. height: math.unit(5.5, "feet"),
  4247. weight: math.unit(400, "lbs"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/kieran/front.svg",
  4251. extra: 2694 / 2364,
  4252. bottom: 217 / 2908
  4253. }
  4254. },
  4255. side: {
  4256. height: math.unit(5.5, "feet"),
  4257. weight: math.unit(400, "lbs"),
  4258. name: "Side",
  4259. image: {
  4260. source: "./media/characters/kieran/side.svg",
  4261. extra: 875 / 777,
  4262. bottom: 84.6 / 959
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(5.5, "feet"),
  4270. default: true
  4271. },
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4276. {
  4277. side: {
  4278. height: math.unit(2, "meters"),
  4279. weight: math.unit(70, "kg"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/sanya/side.svg",
  4283. bottom: 0.02,
  4284. extra: 1.02
  4285. }
  4286. },
  4287. },
  4288. [
  4289. {
  4290. name: "Small",
  4291. height: math.unit(2, "meters")
  4292. },
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(3, "meters")
  4296. },
  4297. {
  4298. name: "Macro",
  4299. height: math.unit(16, "meters"),
  4300. default: true
  4301. },
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(2, "meters"),
  4309. weight: math.unit(120, "kg"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/miranda/front.svg",
  4313. extra: 195/185,
  4314. bottom: 10.9/206.5
  4315. }
  4316. },
  4317. back: {
  4318. height: math.unit(2, "meters"),
  4319. weight: math.unit(120, "kg"),
  4320. name: "Back",
  4321. image: {
  4322. source: "./media/characters/miranda/back.svg",
  4323. extra: 201/193,
  4324. bottom: 2.3/203.7
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(10, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "James", species: ["deer"], tags: ["anthro"] },
  4338. {
  4339. side: {
  4340. height: math.unit(2, "meters"),
  4341. weight: math.unit(100, "kg"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/james/front.svg",
  4345. extra: 10 / 8.5
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(8.5, "feet"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4359. {
  4360. side: {
  4361. height: math.unit(9.5, "feet"),
  4362. weight: math.unit(2500, "lbs"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/heather/side.svg"
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(9.5, "feet"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4379. {
  4380. side: {
  4381. height: math.unit(6.5, "feet"),
  4382. weight: math.unit(400, "lbs"),
  4383. name: "Side",
  4384. image: {
  4385. source: "./media/characters/lukas/side.svg",
  4386. extra: 7.25 / 6.5
  4387. }
  4388. },
  4389. },
  4390. [
  4391. {
  4392. name: "Normal",
  4393. height: math.unit(6.5, "feet"),
  4394. default: true
  4395. }
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4400. {
  4401. side: {
  4402. height: math.unit(5, "feet"),
  4403. weight: math.unit(3000, "lbs"),
  4404. name: "Side",
  4405. image: {
  4406. source: "./media/characters/louise/side.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(5, "feet"),
  4414. default: true
  4415. }
  4416. ]
  4417. ))
  4418. characterMakers.push(() => makeCharacter(
  4419. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4420. {
  4421. side: {
  4422. height: math.unit(6, "feet"),
  4423. weight: math.unit(150, "lbs"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/ramona/side.svg"
  4427. }
  4428. },
  4429. },
  4430. [
  4431. {
  4432. name: "Normal",
  4433. height: math.unit(5.3, "meters"),
  4434. default: true
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(20, "stories")
  4439. },
  4440. {
  4441. name: "Macro+",
  4442. height: math.unit(50, "stories")
  4443. },
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4448. {
  4449. standing: {
  4450. height: math.unit(5.75, "feet"),
  4451. weight: math.unit(160, "lbs"),
  4452. name: "Standing",
  4453. image: {
  4454. source: "./media/characters/deerpuff/standing.svg",
  4455. extra: 682 / 624
  4456. }
  4457. },
  4458. sitting: {
  4459. height: math.unit(5.75 / 1.79, "feet"),
  4460. weight: math.unit(160, "lbs"),
  4461. name: "Sitting",
  4462. image: {
  4463. source: "./media/characters/deerpuff/sitting.svg",
  4464. bottom: 44 / 400,
  4465. extra: 1
  4466. }
  4467. },
  4468. taurLaying: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(400, "lbs"),
  4471. name: "Taur (Laying)",
  4472. image: {
  4473. source: "./media/characters/deerpuff/taur-laying.svg"
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Puffball",
  4480. height: math.unit(6, "inches")
  4481. },
  4482. {
  4483. name: "Normalpuff",
  4484. height: math.unit(5.75, "feet")
  4485. },
  4486. {
  4487. name: "Macropuff",
  4488. height: math.unit(1500, "feet"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Megapuff",
  4493. height: math.unit(500, "miles")
  4494. },
  4495. {
  4496. name: "Gigapuff",
  4497. height: math.unit(250000, "miles")
  4498. },
  4499. {
  4500. name: "Omegapuff",
  4501. height: math.unit(1000, "lightyears")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4507. {
  4508. stomping: {
  4509. height: math.unit(6, "feet"),
  4510. weight: math.unit(170, "lbs"),
  4511. name: "Stomping",
  4512. image: {
  4513. source: "./media/characters/vivian/stomping.svg"
  4514. }
  4515. },
  4516. sitting: {
  4517. height: math.unit(6 / 1.75, "feet"),
  4518. weight: math.unit(170, "lbs"),
  4519. name: "Sitting",
  4520. image: {
  4521. source: "./media/characters/vivian/sitting.svg",
  4522. bottom: 1 / 6.4,
  4523. extra: 1,
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(7, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(10, "stories")
  4536. },
  4537. {
  4538. name: "Macro+",
  4539. height: math.unit(30, "stories")
  4540. },
  4541. {
  4542. name: "Megamacro",
  4543. height: math.unit(10, "miles")
  4544. },
  4545. {
  4546. name: "Megamacro+",
  4547. height: math.unit(2750000, "meters")
  4548. },
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4553. {
  4554. front: {
  4555. height: math.unit(6, "feet"),
  4556. weight: math.unit(160, "lbs"),
  4557. name: "Front",
  4558. image: {
  4559. source: "./media/characters/prince/front.svg",
  4560. extra: 3400 / 3000
  4561. }
  4562. },
  4563. jumping: {
  4564. height: math.unit(6, "feet"),
  4565. weight: math.unit(160, "lbs"),
  4566. name: "Jumping",
  4567. image: {
  4568. source: "./media/characters/prince/jump.svg",
  4569. extra: 2555 / 2134
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(7.75, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Not cute",
  4581. height: math.unit(17, "feet")
  4582. },
  4583. {
  4584. name: "I said NOT",
  4585. height: math.unit(91, "feet")
  4586. },
  4587. {
  4588. name: "Please stop",
  4589. height: math.unit(560, "feet")
  4590. },
  4591. {
  4592. name: "What have you done",
  4593. height: math.unit(2200, "feet")
  4594. },
  4595. {
  4596. name: "Deer God",
  4597. height: math.unit(3.6, "miles")
  4598. },
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4603. {
  4604. standing: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(300, "lbs"),
  4607. name: "Standing",
  4608. image: {
  4609. source: "./media/characters/psymon/standing.svg",
  4610. extra: 1888 / 1810,
  4611. bottom: 0.05
  4612. }
  4613. },
  4614. slithering: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(300, "lbs"),
  4617. name: "Slithering",
  4618. image: {
  4619. source: "./media/characters/psymon/slithering.svg",
  4620. extra: 1330 / 1224
  4621. }
  4622. },
  4623. slitheringAlt: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(300, "lbs"),
  4626. name: "Slithering (Alt)",
  4627. image: {
  4628. source: "./media/characters/psymon/slithering-alt.svg",
  4629. extra: 1330 / 1224
  4630. }
  4631. },
  4632. },
  4633. [
  4634. {
  4635. name: "Normal",
  4636. height: math.unit(11.25, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Large",
  4641. height: math.unit(27, "feet")
  4642. },
  4643. {
  4644. name: "Giant",
  4645. height: math.unit(87, "feet")
  4646. },
  4647. {
  4648. name: "Macro",
  4649. height: math.unit(365, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(3, "miles")
  4654. },
  4655. {
  4656. name: "World Serpent",
  4657. height: math.unit(8000, "miles")
  4658. },
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(180, "lbs"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/daimos/front.svg",
  4670. extra: 4160 / 3897,
  4671. bottom: 0.021
  4672. }
  4673. }
  4674. },
  4675. [
  4676. {
  4677. name: "Normal",
  4678. height: math.unit(8, "feet"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Big Dog",
  4683. height: math.unit(22, "feet")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(127, "feet")
  4688. },
  4689. {
  4690. name: "Megamacro",
  4691. height: math.unit(3600, "feet")
  4692. },
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4697. {
  4698. side: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(180, "lbs"),
  4701. name: "Side",
  4702. image: {
  4703. source: "./media/characters/blake/side.svg",
  4704. extra: 1212 / 1120,
  4705. bottom: 0.05
  4706. }
  4707. },
  4708. crouched: {
  4709. height: math.unit(6 * 0.57, "feet"),
  4710. weight: math.unit(180, "lbs"),
  4711. name: "Crouched",
  4712. image: {
  4713. source: "./media/characters/blake/crouched.svg",
  4714. extra: 840 / 587,
  4715. bottom: 0.04
  4716. }
  4717. },
  4718. bent: {
  4719. height: math.unit(6 * 0.75, "feet"),
  4720. weight: math.unit(180, "lbs"),
  4721. name: "Bent",
  4722. image: {
  4723. source: "./media/characters/blake/bent.svg",
  4724. extra: 592 / 544,
  4725. bottom: 0.035
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(8 + 1 / 6, "feet"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Big Backside",
  4737. height: math.unit(37, "feet")
  4738. },
  4739. {
  4740. name: "Subway Shredder",
  4741. height: math.unit(72, "feet")
  4742. },
  4743. {
  4744. name: "City Carver",
  4745. height: math.unit(1675, "feet")
  4746. },
  4747. {
  4748. name: "Tectonic Tweaker",
  4749. height: math.unit(2300, "miles")
  4750. },
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(180, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/guisetto/front.svg",
  4762. extra: 856 / 817,
  4763. bottom: 0.06
  4764. }
  4765. },
  4766. airborne: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(180, "lbs"),
  4769. name: "Airborne",
  4770. image: {
  4771. source: "./media/characters/guisetto/airborne.svg",
  4772. extra: 584 / 525
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(10 + 11 / 12, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Large",
  4784. height: math.unit(35, "feet")
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(475, "feet")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(180, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/luxor/front.svg",
  4801. extra: 2940 / 2152
  4802. }
  4803. },
  4804. back: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(180, "lbs"),
  4807. name: "Back",
  4808. image: {
  4809. source: "./media/characters/luxor/back.svg",
  4810. extra: 1083 / 960
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(5 + 5 / 6, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Lamp",
  4822. height: math.unit(50, "feet")
  4823. },
  4824. {
  4825. name: "Lämp",
  4826. height: math.unit(300, "feet")
  4827. },
  4828. {
  4829. name: "The sun is a lamp",
  4830. height: math.unit(250000, "miles")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4836. {
  4837. front: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(50, "lbs"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/huoyan/front.svg"
  4843. }
  4844. },
  4845. side: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(180, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/huoyan/side.svg"
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Chef",
  4857. height: math.unit(9, "feet")
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(65, "feet"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Macro",
  4866. height: math.unit(780, "feet")
  4867. },
  4868. {
  4869. name: "Flaming Mountain",
  4870. height: math.unit(4.8, "miles")
  4871. },
  4872. {
  4873. name: "Celestial",
  4874. height: math.unit(765000, "miles")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(5 + 3 / 4, "feet"),
  4883. weight: math.unit(120, "lbs"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/tails/front.svg"
  4887. }
  4888. }
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(5 + 3 / 4, "feet"),
  4894. default: true
  4895. }
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4900. {
  4901. front: {
  4902. height: math.unit(4, "feet"),
  4903. weight: math.unit(50, "lbs"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/rainy/front.svg"
  4907. }
  4908. }
  4909. },
  4910. [
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(800, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4920. {
  4921. front: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(150, "lbs"),
  4924. name: "Front",
  4925. image: {
  4926. source: "./media/characters/rainier/front.svg"
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Micro",
  4933. height: math.unit(2, "mm"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4940. {
  4941. front: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(180, "lbs"),
  4944. name: "Front",
  4945. image: {
  4946. source: "./media/characters/andy/front.svg"
  4947. }
  4948. }
  4949. },
  4950. [
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(8, "feet"),
  4954. default: true
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(1000, "feet")
  4959. },
  4960. {
  4961. name: "Megamacro",
  4962. height: math.unit(5, "miles")
  4963. },
  4964. {
  4965. name: "Gigamacro",
  4966. height: math.unit(5000, "miles")
  4967. },
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4972. {
  4973. front: {
  4974. height: math.unit(6, "feet"),
  4975. weight: math.unit(210, "lbs"),
  4976. name: "Front",
  4977. image: {
  4978. source: "./media/characters/cimmaron/front-sfw.svg",
  4979. extra: 701 / 676,
  4980. bottom: 0.046
  4981. }
  4982. },
  4983. back: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(210, "lbs"),
  4986. name: "Back",
  4987. image: {
  4988. source: "./media/characters/cimmaron/back-sfw.svg",
  4989. extra: 701 / 676,
  4990. bottom: 0.046
  4991. }
  4992. },
  4993. frontNsfw: {
  4994. height: math.unit(6, "feet"),
  4995. weight: math.unit(210, "lbs"),
  4996. name: "Front (NSFW)",
  4997. image: {
  4998. source: "./media/characters/cimmaron/front-nsfw.svg",
  4999. extra: 701 / 676,
  5000. bottom: 0.046
  5001. }
  5002. },
  5003. backNsfw: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back (NSFW)",
  5007. image: {
  5008. source: "./media/characters/cimmaron/back-nsfw.svg",
  5009. extra: 701 / 676,
  5010. bottom: 0.046
  5011. }
  5012. },
  5013. dick: {
  5014. height: math.unit(1.714, "feet"),
  5015. name: "Dick",
  5016. image: {
  5017. source: "./media/characters/cimmaron/dick.svg"
  5018. }
  5019. },
  5020. },
  5021. [
  5022. {
  5023. name: "Normal",
  5024. height: math.unit(6, "feet"),
  5025. default: true
  5026. },
  5027. {
  5028. name: "Macro Mayor",
  5029. height: math.unit(350, "meters")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5035. {
  5036. front: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(200, "lbs"),
  5039. name: "Front",
  5040. image: {
  5041. source: "./media/characters/akari/front.svg",
  5042. extra: 962 / 901,
  5043. bottom: 0.04
  5044. }
  5045. }
  5046. },
  5047. [
  5048. {
  5049. name: "Micro",
  5050. height: math.unit(5, "inches"),
  5051. default: true
  5052. },
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(7, "feet")
  5056. },
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(140, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/cynosura/front.svg",
  5068. extra: 896 / 847
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(140, "lbs"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/cynosura/back.svg",
  5077. extra: 1365 / 1250
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Micro",
  5084. height: math.unit(4, "inches")
  5085. },
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(5.75, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Tall",
  5093. height: math.unit(10, "feet")
  5094. },
  5095. {
  5096. name: "Big",
  5097. height: math.unit(20, "feet")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(50, "feet")
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(170, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/gin/front.svg",
  5114. extra: 1.053,
  5115. bottom: 0.025
  5116. }
  5117. },
  5118. foot: {
  5119. height: math.unit(6 / 4.25, "feet"),
  5120. name: "Foot",
  5121. image: {
  5122. source: "./media/characters/gin/foot.svg"
  5123. }
  5124. },
  5125. sole: {
  5126. height: math.unit(6 / 4.40, "feet"),
  5127. name: "Sole",
  5128. image: {
  5129. source: "./media/characters/gin/sole.svg"
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(13 + 2 / 12, "feet")
  5137. },
  5138. {
  5139. name: "Macro",
  5140. height: math.unit(1500, "feet")
  5141. },
  5142. {
  5143. name: "Megamacro",
  5144. height: math.unit(200, "miles"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Gigamacro",
  5149. height: math.unit(500, "megameters")
  5150. },
  5151. {
  5152. name: "Teramacro",
  5153. height: math.unit(15, "lightyears")
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(6 + 1 / 6, "feet"),
  5162. weight: math.unit(178, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/guy/front.svg"
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(6 + 1 / 6, "feet"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "Large",
  5177. height: math.unit(25 + 7 / 12, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(60 + 9 / 12, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(246, "feet")
  5186. },
  5187. {
  5188. name: "Macro++",
  5189. height: math.unit(878, "feet")
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(9, "feet"),
  5198. weight: math.unit(800, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/tiberius/front.svg",
  5202. extra: 2295 / 2071
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(9, "feet"),
  5207. weight: math.unit(800, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/tiberius/back.svg",
  5211. extra: 2373 / 2160
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(600, "lbs"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/surgo/front.svg",
  5232. extra: 3591 / 2227
  5233. }
  5234. },
  5235. back: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(600, "lbs"),
  5238. name: "Back",
  5239. image: {
  5240. source: "./media/characters/surgo/back.svg",
  5241. extra: 3557 / 2228
  5242. }
  5243. },
  5244. laying: {
  5245. height: math.unit(6 * 0.85, "feet"),
  5246. weight: math.unit(600, "lbs"),
  5247. name: "Laying",
  5248. image: {
  5249. source: "./media/characters/surgo/laying.svg"
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(6, "feet"),
  5257. default: true
  5258. }
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5263. {
  5264. side: {
  5265. height: math.unit(6, "feet"),
  5266. weight: math.unit(150, "lbs"),
  5267. name: "Side",
  5268. image: {
  5269. source: "./media/characters/cibus/side.svg",
  5270. extra: 800 / 400
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(6, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(240, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/nibbles/front.svg"
  5291. }
  5292. },
  5293. side: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(240, "lbs"),
  5296. name: "Side",
  5297. image: {
  5298. source: "./media/characters/nibbles/side.svg"
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(9, "feet"),
  5306. default: true
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5312. {
  5313. side: {
  5314. height: math.unit(5 + 1 / 6, "feet"),
  5315. weight: math.unit(130, "lbs"),
  5316. name: "Side",
  5317. image: {
  5318. source: "./media/characters/rikky/side.svg"
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5 + 1 / 6, "feet")
  5326. },
  5327. {
  5328. name: "Macro",
  5329. height: math.unit(152, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Megamacro",
  5334. height: math.unit(7, "miles")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5340. {
  5341. side: {
  5342. height: math.unit(370, "cm"),
  5343. weight: math.unit(350, "lbs"),
  5344. name: "Side",
  5345. image: {
  5346. source: "./media/characters/malfressa/side.svg"
  5347. }
  5348. },
  5349. walking: {
  5350. height: math.unit(370, "cm"),
  5351. weight: math.unit(350, "lbs"),
  5352. name: "Walking",
  5353. image: {
  5354. source: "./media/characters/malfressa/walking.svg"
  5355. }
  5356. },
  5357. feral: {
  5358. height: math.unit(2500, "cm"),
  5359. weight: math.unit(100000, "lbs"),
  5360. name: "Feral",
  5361. image: {
  5362. source: "./media/characters/malfressa/feral.svg",
  5363. extra: 2108 / 837,
  5364. bottom: 0.02
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(370, "cm")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(300, "meters"),
  5376. default: true
  5377. }
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5382. {
  5383. front: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(60, "kg"),
  5386. name: "Front",
  5387. image: {
  5388. source: "./media/characters/jaro/front.svg"
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(60, "kg"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/jaro/back.svg"
  5397. }
  5398. },
  5399. },
  5400. [
  5401. {
  5402. name: "Micro",
  5403. height: math.unit(7, "inches")
  5404. },
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5.5, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Minimacro",
  5412. height: math.unit(20, "feet")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(200, "meters")
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5422. {
  5423. front: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(195, "lb"),
  5426. name: "Front",
  5427. image: {
  5428. source: "./media/characters/rogue/front.svg"
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(90, "feet"),
  5436. default: true
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(5 + 8 / 12, "feet"),
  5445. weight: math.unit(140, "lb"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/piper/front.svg",
  5449. extra: 3928 / 3681
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Micro",
  5456. height: math.unit(2, "inches")
  5457. },
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(5 + 8 / 12, "feet")
  5461. },
  5462. {
  5463. name: "Macro",
  5464. height: math.unit(250, "feet"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Megamacro",
  5469. height: math.unit(7, "miles")
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(220, "lb"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/gemini/front.svg"
  5482. }
  5483. },
  5484. back: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(220, "lb"),
  5487. name: "Back",
  5488. image: {
  5489. source: "./media/characters/gemini/back.svg"
  5490. }
  5491. },
  5492. kneeling: {
  5493. height: math.unit(6 / 1.5, "feet"),
  5494. weight: math.unit(220, "lb"),
  5495. name: "Kneeling",
  5496. image: {
  5497. source: "./media/characters/gemini/kneeling.svg",
  5498. bottom: 0.02
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(300, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(6900, "meters")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5516. {
  5517. anthro: {
  5518. height: math.unit(2.35, "meters"),
  5519. weight: math.unit(73, "kg"),
  5520. name: "Anthro",
  5521. image: {
  5522. source: "./media/characters/alicia/anthro.svg",
  5523. extra: 2571 / 2385,
  5524. bottom: 75 / 2648
  5525. }
  5526. },
  5527. paw: {
  5528. height: math.unit(1.32, "feet"),
  5529. name: "Paw",
  5530. image: {
  5531. source: "./media/characters/alicia/paw.svg"
  5532. }
  5533. },
  5534. feral: {
  5535. height: math.unit(1.69, "meters"),
  5536. weight: math.unit(73, "kg"),
  5537. name: "Feral",
  5538. image: {
  5539. source: "./media/characters/alicia/feral.svg",
  5540. extra: 2123 / 1715,
  5541. bottom: 222 / 2349
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(2.35, "meters")
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(60, "meters"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Megamacro",
  5557. height: math.unit(10000, "kilometers")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(7, "feet"),
  5566. weight: math.unit(250, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/archy/front.svg"
  5570. }
  5571. }
  5572. },
  5573. [
  5574. {
  5575. name: "Micro",
  5576. height: math.unit(1, "inch")
  5577. },
  5578. {
  5579. name: "Shorty",
  5580. height: math.unit(5, "feet")
  5581. },
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(7, "feet")
  5585. },
  5586. {
  5587. name: "Macro",
  5588. height: math.unit(600, "meters"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Megamacro",
  5593. height: math.unit(1, "mile")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(1.65, "meters"),
  5602. weight: math.unit(74, "kg"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/berri/front.svg",
  5606. extra: 857 / 837,
  5607. bottom: 18 / 877
  5608. }
  5609. },
  5610. bum: {
  5611. height: math.unit(1.46, "feet"),
  5612. name: "Bum",
  5613. image: {
  5614. source: "./media/characters/berri/bum.svg"
  5615. }
  5616. },
  5617. mouth: {
  5618. height: math.unit(0.44, "feet"),
  5619. name: "Mouth",
  5620. image: {
  5621. source: "./media/characters/berri/mouth.svg"
  5622. }
  5623. },
  5624. paw: {
  5625. height: math.unit(0.826, "feet"),
  5626. name: "Paw",
  5627. image: {
  5628. source: "./media/characters/berri/paw.svg"
  5629. }
  5630. },
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(1.65, "meters")
  5636. },
  5637. {
  5638. name: "Macro",
  5639. height: math.unit(60, "m"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Megamacro",
  5644. height: math.unit(9.213, "km")
  5645. },
  5646. {
  5647. name: "Planet Eater",
  5648. height: math.unit(489, "megameters")
  5649. },
  5650. {
  5651. name: "Teramacro",
  5652. height: math.unit(2471635000000, "meters")
  5653. },
  5654. {
  5655. name: "Examacro",
  5656. height: math.unit(8.0624e+26, "meters")
  5657. }
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(1.72, "meters"),
  5665. weight: math.unit(68, "kg"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/lexi/front.svg"
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Very Smol",
  5675. height: math.unit(10, "mm")
  5676. },
  5677. {
  5678. name: "Micro",
  5679. height: math.unit(6.8, "cm"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(1.72, "m")
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(1.69, "meters"),
  5693. weight: math.unit(68, "kg"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/martin/front.svg",
  5697. extra: 596 / 581
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(6.85, "cm"),
  5705. default: true
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(1.69, "m")
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5715. {
  5716. front: {
  5717. height: math.unit(1.69, "meters"),
  5718. weight: math.unit(68, "kg"),
  5719. name: "Front",
  5720. image: {
  5721. source: "./media/characters/juno/front.svg"
  5722. }
  5723. }
  5724. },
  5725. [
  5726. {
  5727. name: "Micro",
  5728. height: math.unit(7, "cm")
  5729. },
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(1.89, "m")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(353, "meters"),
  5737. default: true
  5738. }
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5743. {
  5744. front: {
  5745. height: math.unit(1.93, "meters"),
  5746. weight: math.unit(83, "kg"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/samantha/front.svg"
  5750. }
  5751. },
  5752. frontClothed: {
  5753. height: math.unit(1.93, "meters"),
  5754. weight: math.unit(83, "kg"),
  5755. name: "Front (Clothed)",
  5756. image: {
  5757. source: "./media/characters/samantha/front-clothed.svg"
  5758. }
  5759. },
  5760. back: {
  5761. height: math.unit(1.93, "meters"),
  5762. weight: math.unit(83, "kg"),
  5763. name: "Back",
  5764. image: {
  5765. source: "./media/characters/samantha/back.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(1.93, "m")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(74, "meters"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Macro+",
  5781. height: math.unit(223, "meters"),
  5782. },
  5783. {
  5784. name: "Megamacro",
  5785. height: math.unit(8381, "meters"),
  5786. },
  5787. {
  5788. name: "Megamacro+",
  5789. height: math.unit(12000, "kilometers")
  5790. },
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(1.92, "meters"),
  5798. weight: math.unit(80, "kg"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/dr-clay/front.svg"
  5802. }
  5803. },
  5804. frontClothed: {
  5805. height: math.unit(1.92, "meters"),
  5806. weight: math.unit(80, "kg"),
  5807. name: "Front (Clothed)",
  5808. image: {
  5809. source: "./media/characters/dr-clay/front-clothed.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(1.92, "m")
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(214, "meters"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Macro+",
  5825. height: math.unit(12.237, "meters"),
  5826. },
  5827. {
  5828. name: "Megamacro",
  5829. height: math.unit(557, "megameters"),
  5830. },
  5831. {
  5832. name: "Unimaginable",
  5833. height: math.unit(120e9, "lightyears")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(2, "meters"),
  5842. weight: math.unit(80, "kg"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Teramacro",
  5852. height: math.unit(500000, "lightyears"),
  5853. default: true
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(2, "meters"),
  5862. weight: math.unit(150, "kg"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/vemus/front.svg",
  5866. extra: 2384 / 2084,
  5867. bottom: 0.0123
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(3.75, "meters"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Big",
  5879. height: math.unit(8, "meters")
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(100, "meters")
  5884. },
  5885. {
  5886. name: "Macro+",
  5887. height: math.unit(1500, "meters")
  5888. },
  5889. {
  5890. name: "Stellar",
  5891. height: math.unit(14e8, "meters")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(2, "meters"),
  5900. weight: math.unit(70, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/beherit/front.svg",
  5904. extra: 1408 / 1242
  5905. }
  5906. }
  5907. },
  5908. [
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(6, "feet")
  5912. },
  5913. {
  5914. name: "Lorg",
  5915. height: math.unit(25, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Lorger",
  5920. height: math.unit(75, "feet")
  5921. },
  5922. {
  5923. name: "Macro",
  5924. height: math.unit(200, "meters")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(2, "meters"),
  5933. weight: math.unit(150, "kg"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/everett/front.svg",
  5937. extra: 2038 / 1737,
  5938. bottom: 0.03
  5939. }
  5940. },
  5941. paw: {
  5942. height: math.unit(2 / 3.6, "meters"),
  5943. name: "Paw",
  5944. image: {
  5945. source: "./media/characters/everett/paw.svg"
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(15, "feet"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Lorg",
  5957. height: math.unit(70, "feet"),
  5958. default: true
  5959. },
  5960. {
  5961. name: "Lorger",
  5962. height: math.unit(250, "feet")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(500, "meters")
  5967. },
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(86, "kg"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/rose-lion/front.svg"
  5979. }
  5980. },
  5981. bent: {
  5982. height: math.unit(2 / 1.4288, "meters"),
  5983. weight: math.unit(86, "kg"),
  5984. name: "Bent",
  5985. image: {
  5986. source: "./media/characters/rose-lion/bent.svg"
  5987. }
  5988. }
  5989. },
  5990. [
  5991. {
  5992. name: "Mini-Micro",
  5993. height: math.unit(1, "cm")
  5994. },
  5995. {
  5996. name: "Micro",
  5997. height: math.unit(3.5, "inches"),
  5998. default: true
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(6 + 1 / 6, "feet")
  6003. },
  6004. {
  6005. name: "Mini-Macro",
  6006. height: math.unit(9 + 10 / 12, "feet")
  6007. },
  6008. ]
  6009. ))
  6010. characterMakers.push(() => makeCharacter(
  6011. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6012. {
  6013. front: {
  6014. height: math.unit(2, "meters"),
  6015. weight: math.unit(350, "lbs"),
  6016. name: "Front",
  6017. image: {
  6018. source: "./media/characters/regal/front.svg"
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(2, "meters"),
  6023. weight: math.unit(350, "lbs"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/regal/back.svg"
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(350, "feet"),
  6034. default: true
  6035. }
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6040. {
  6041. front: {
  6042. height: math.unit(4 + 11 / 12, "feet"),
  6043. weight: math.unit(100, "lbs"),
  6044. name: "Front",
  6045. image: {
  6046. source: "./media/characters/opal/front.svg"
  6047. }
  6048. },
  6049. frontAlt: {
  6050. height: math.unit(4 + 11 / 12, "feet"),
  6051. weight: math.unit(100, "lbs"),
  6052. name: "Front (Alt)",
  6053. image: {
  6054. source: "./media/characters/opal/front-alt.svg"
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Small",
  6061. height: math.unit(4 + 11 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(20, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(120, "feet")
  6071. },
  6072. {
  6073. name: "Megamacro",
  6074. height: math.unit(80, "miles")
  6075. },
  6076. {
  6077. name: "True Size",
  6078. height: math.unit(100000, "lightyears")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(200, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/vector-wuff/front.svg"
  6091. }
  6092. }
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(2.8, "meters")
  6098. },
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(450, "meters"),
  6102. default: true
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(15, "kilometers")
  6107. }
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(256, "lbs"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/dannik/front.svg"
  6119. }
  6120. }
  6121. },
  6122. [
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(69.57, "meters"),
  6126. default: true
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(6, "feet"),
  6135. weight: math.unit(120, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/azura-saharah/front.svg"
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(6, "feet"),
  6143. weight: math.unit(120, "lbs"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/azura-saharah/back.svg"
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(100, "feet"),
  6154. default: true
  6155. },
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6160. {
  6161. side: {
  6162. height: math.unit(5 + 4 / 12, "feet"),
  6163. weight: math.unit(163, "lbs"),
  6164. name: "Side",
  6165. image: {
  6166. source: "./media/characters/kennedy/side.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Standard Doggo",
  6173. height: math.unit(5 + 4 / 12, "feet")
  6174. },
  6175. {
  6176. name: "Big Doggo",
  6177. height: math.unit(25 + 3 / 12, "feet"),
  6178. default: true
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(90, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/odi-lunar/front.svg"
  6191. }
  6192. }
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(3, "inches"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5.5, "feet")
  6203. }
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6208. {
  6209. back: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(220, "lbs"),
  6212. name: "Back",
  6213. image: {
  6214. source: "./media/characters/mandake/back.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(7, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Macro",
  6226. height: math.unit(78, "feet")
  6227. },
  6228. {
  6229. name: "Macro+",
  6230. height: math.unit(300, "meters")
  6231. },
  6232. {
  6233. name: "Macro++",
  6234. height: math.unit(2400, "feet")
  6235. },
  6236. {
  6237. name: "Megamacro",
  6238. height: math.unit(5167, "meters")
  6239. },
  6240. {
  6241. name: "Gigamacro",
  6242. height: math.unit(41769, "miles")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(120, "lbs"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/yozey/front.svg"
  6255. }
  6256. },
  6257. frontAlt: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(120, "lbs"),
  6260. name: "Front (Alt)",
  6261. image: {
  6262. source: "./media/characters/yozey/front-alt.svg"
  6263. }
  6264. },
  6265. side: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(120, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/yozey/side.svg"
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(3, "inches"),
  6278. default: true
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(6, "feet")
  6283. }
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(103, "lbs"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/valeska-voss/front.svg"
  6295. }
  6296. }
  6297. },
  6298. [
  6299. {
  6300. name: "Mini-Sized Sub",
  6301. height: math.unit(3.1, "inches")
  6302. },
  6303. {
  6304. name: "Mid-Sized Sub",
  6305. height: math.unit(6.2, "inches")
  6306. },
  6307. {
  6308. name: "Full-Sized Sub",
  6309. height: math.unit(9.3, "inches")
  6310. },
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(5 + 2 / 12, "foot"),
  6314. default: true
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(160, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/gene-zeta/front.svg",
  6327. bottom: 0.03,
  6328. extra: 1
  6329. }
  6330. }
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(6.25, "foot"),
  6336. default: true
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(350, "lbs"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/razinox/front.svg",
  6349. extra: 1686 / 1548,
  6350. bottom: 28.2 / 1868
  6351. }
  6352. },
  6353. back: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(350, "lbs"),
  6356. name: "Back",
  6357. image: {
  6358. source: "./media/characters/razinox/back.svg",
  6359. extra: 1660 / 1590,
  6360. bottom: 15 / 1665
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(10 + 8 / 12, "foot")
  6368. },
  6369. {
  6370. name: "Minimacro",
  6371. height: math.unit(15, "foot")
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(60, "foot"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(5, "miles")
  6381. },
  6382. {
  6383. name: "Gigamacro",
  6384. height: math.unit(6000, "miles")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(150, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/cobalt/front.svg"
  6397. }
  6398. }
  6399. },
  6400. [
  6401. {
  6402. name: "Normal",
  6403. height: math.unit(8 + 1 / 12, "foot")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(111, "foot"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Supracosmic",
  6412. height: math.unit(1e42, "feet")
  6413. },
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(140, "lbs"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/amanda/front.svg"
  6425. }
  6426. }
  6427. },
  6428. [
  6429. {
  6430. name: "Micro",
  6431. height: math.unit(5, "inches"),
  6432. default: true
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(5.59, "feet"),
  6441. weight: math.unit(250, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/teal/front.svg"
  6445. }
  6446. },
  6447. frontAlt: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(250, "lbs"),
  6450. name: "Front (Alt)",
  6451. image: {
  6452. source: "./media/characters/teal/front-alt.svg",
  6453. bottom: 0.04,
  6454. extra: 1
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(12, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(300, "feet")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6472. {
  6473. frontCat: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(180, "lbs"),
  6476. name: "Front (Cat)",
  6477. image: {
  6478. source: "./media/characters/ravin-amulet/front-cat.svg"
  6479. }
  6480. },
  6481. frontCatAlt: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Front (Alt, Cat)",
  6485. image: {
  6486. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6487. }
  6488. },
  6489. frontWerewolf: {
  6490. height: math.unit(6 * 1.2, "feet"),
  6491. weight: math.unit(225, "lbs"),
  6492. name: "Front (Werewolf)",
  6493. image: {
  6494. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6495. }
  6496. },
  6497. backWerewolf: {
  6498. height: math.unit(6 * 1.2, "feet"),
  6499. weight: math.unit(225, "lbs"),
  6500. name: "Back (Werewolf)",
  6501. image: {
  6502. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Nano",
  6509. height: math.unit(1, "micrometer")
  6510. },
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(1, "inch")
  6514. },
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(6, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(60, "feet")
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(165, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/fluoresce/front.svg"
  6535. }
  6536. }
  6537. },
  6538. [
  6539. {
  6540. name: "Micro",
  6541. height: math.unit(6, "cm")
  6542. },
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(5 + 7 / 12, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(56, "feet")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(1.9, "miles")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(9 + 6 / 12, "feet"),
  6563. weight: math.unit(523, "lbs"),
  6564. name: "Side",
  6565. image: {
  6566. source: "./media/characters/aurora/side.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(9 + 6 / 12, "feet")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(96, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro+",
  6582. height: math.unit(243, "feet")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(194, "cm"),
  6591. weight: math.unit(90, "kg"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/ranek/front.svg"
  6595. }
  6596. },
  6597. side: {
  6598. height: math.unit(194, "cm"),
  6599. weight: math.unit(90, "kg"),
  6600. name: "Side",
  6601. image: {
  6602. source: "./media/characters/ranek/side.svg"
  6603. }
  6604. },
  6605. back: {
  6606. height: math.unit(194, "cm"),
  6607. weight: math.unit(90, "kg"),
  6608. name: "Back",
  6609. image: {
  6610. source: "./media/characters/ranek/back.svg"
  6611. }
  6612. },
  6613. feral: {
  6614. height: math.unit(30, "cm"),
  6615. weight: math.unit(1.6, "lbs"),
  6616. name: "Feral",
  6617. image: {
  6618. source: "./media/characters/ranek/feral.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(194, "cm"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Macro",
  6630. height: math.unit(100, "meters")
  6631. },
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(5 + 6 / 12, "feet"),
  6639. weight: math.unit(153, "lbs"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/andrew-cooper/front.svg"
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Nano",
  6649. height: math.unit(1, "mm")
  6650. },
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(2, "inches")
  6654. },
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(5 + 6 / 12, "feet"),
  6658. default: true
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(180, "lbs"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/akane-sato/front.svg",
  6671. extra: 1219 / 1140
  6672. }
  6673. },
  6674. back: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(180, "lbs"),
  6677. name: "Back",
  6678. image: {
  6679. source: "./media/characters/akane-sato/back.svg",
  6680. extra: 1219 / 1170
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(2.5, "meters")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(250, "meters"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Megamacro",
  6696. height: math.unit(25, "km")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(6, "feet"),
  6705. weight: math.unit(65, "kg"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/rook/front.svg",
  6709. extra: 960 / 950
  6710. }
  6711. }
  6712. },
  6713. [
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(8.8, "feet")
  6717. },
  6718. {
  6719. name: "Macro",
  6720. height: math.unit(88, "feet"),
  6721. default: true
  6722. },
  6723. {
  6724. name: "Megamacro",
  6725. height: math.unit(8, "miles")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(12 + 2 / 12, "feet"),
  6734. weight: math.unit(808, "lbs"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/prodigy/front.svg"
  6738. }
  6739. }
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(12 + 2 / 12, "feet"),
  6745. default: true
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(143, "feet")
  6750. },
  6751. {
  6752. name: "Macro+",
  6753. height: math.unit(400, "feet")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(6, "feet"),
  6762. weight: math.unit(225, "lbs"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/daniel/front.svg"
  6766. }
  6767. },
  6768. leaning: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(225, "lbs"),
  6771. name: "Leaning",
  6772. image: {
  6773. source: "./media/characters/daniel/leaning.svg"
  6774. }
  6775. },
  6776. },
  6777. [
  6778. {
  6779. name: "Macro",
  6780. height: math.unit(1000, "feet"),
  6781. default: true
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(88, "lbs"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/chiros/front.svg",
  6794. extra: 306 / 226
  6795. }
  6796. },
  6797. side: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(88, "lbs"),
  6800. name: "Side",
  6801. image: {
  6802. source: "./media/characters/chiros/side.svg",
  6803. extra: 306 / 226
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(6, "cm"),
  6811. default: true
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6817. {
  6818. front: {
  6819. height: math.unit(6, "feet"),
  6820. weight: math.unit(100, "lbs"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/selka/front.svg",
  6824. extra: 947 / 887
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(5, "cm"),
  6832. default: true
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(8 + 3 / 12, "feet"),
  6841. weight: math.unit(424, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/verin/front.svg",
  6845. extra: 1845 / 1550
  6846. }
  6847. },
  6848. frontArmored: {
  6849. height: math.unit(8 + 3 / 12, "feet"),
  6850. weight: math.unit(424, "lbs"),
  6851. name: "Front (Armored)",
  6852. image: {
  6853. source: "./media/characters/verin/front-armor.svg",
  6854. extra: 1845 / 1550,
  6855. bottom: 0.01
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(8 + 3 / 12, "feet"),
  6860. weight: math.unit(424, "lbs"),
  6861. name: "Back",
  6862. image: {
  6863. source: "./media/characters/verin/back.svg",
  6864. bottom: 0.1,
  6865. extra: 1
  6866. }
  6867. },
  6868. foot: {
  6869. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6870. name: "Foot",
  6871. image: {
  6872. source: "./media/characters/verin/foot.svg"
  6873. }
  6874. },
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(8 + 3 / 12, "feet")
  6880. },
  6881. {
  6882. name: "Minimacro",
  6883. height: math.unit(21, "feet"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(626, "feet")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2.718, "meters"),
  6897. weight: math.unit(150, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/sovrim-terraquian/front.svg"
  6901. }
  6902. },
  6903. back: {
  6904. height: math.unit(2.718, "meters"),
  6905. weight: math.unit(150, "lbs"),
  6906. name: "Back",
  6907. image: {
  6908. source: "./media/characters/sovrim-terraquian/back.svg"
  6909. }
  6910. }
  6911. },
  6912. [
  6913. {
  6914. name: "Micro",
  6915. height: math.unit(2, "inches")
  6916. },
  6917. {
  6918. name: "Small",
  6919. height: math.unit(1, "meter")
  6920. },
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(Math.E, "meters"),
  6924. default: true
  6925. },
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(20, "meters")
  6929. },
  6930. {
  6931. name: "Macro+",
  6932. height: math.unit(400, "meters")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(7, "feet"),
  6941. weight: math.unit(489, "lbs"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/reece-silvermane/front.svg",
  6945. bottom: 0.02,
  6946. extra: 1
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(1.5, "miles"),
  6954. default: true
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(78, "kg"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/kane/front.svg",
  6967. extra: 978 / 899
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(2.1, "m"),
  6975. },
  6976. {
  6977. name: "Macro",
  6978. height: math.unit(1, "km"),
  6979. default: true
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(200, "kg"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/tegon/front.svg",
  6992. bottom: 0.01,
  6993. extra: 1
  6994. }
  6995. },
  6996. },
  6997. [
  6998. {
  6999. name: "Micro",
  7000. height: math.unit(1, "inch")
  7001. },
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(6 + 3 / 12, "feet"),
  7005. default: true
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(300, "feet")
  7010. },
  7011. {
  7012. name: "Megamacro",
  7013. height: math.unit(69, "miles")
  7014. },
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7019. {
  7020. side: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(2304, "lbs"),
  7023. name: "Side",
  7024. image: {
  7025. source: "./media/characters/arcturax/side.svg",
  7026. extra: 790 / 376,
  7027. bottom: 0.01
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(2, "inch")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(6, "feet")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(39, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Megamacro",
  7047. height: math.unit(7, "miles")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(50, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/sentri/front.svg",
  7060. extra: 1750 / 1570,
  7061. bottom: 0.025
  7062. }
  7063. },
  7064. frontAlt: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(50, "lbs"),
  7067. name: "Front (Alt)",
  7068. image: {
  7069. source: "./media/characters/sentri/front-alt.svg",
  7070. extra: 1750 / 1570,
  7071. bottom: 0.025
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(15, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(2500, "feet")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(5 + 8 / 12, "feet"),
  7092. weight: math.unit(130, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/corvin/front.svg",
  7096. extra: 1803 / 1629
  7097. }
  7098. },
  7099. frontShirt: {
  7100. height: math.unit(5 + 8 / 12, "feet"),
  7101. weight: math.unit(130, "lbs"),
  7102. name: "Front (Shirt)",
  7103. image: {
  7104. source: "./media/characters/corvin/front-shirt.svg",
  7105. extra: 1803 / 1629
  7106. }
  7107. },
  7108. frontPoncho: {
  7109. height: math.unit(5 + 8 / 12, "feet"),
  7110. weight: math.unit(130, "lbs"),
  7111. name: "Front (Poncho)",
  7112. image: {
  7113. source: "./media/characters/corvin/front-poncho.svg",
  7114. extra: 1803 / 1629
  7115. }
  7116. },
  7117. side: {
  7118. height: math.unit(5 + 8 / 12, "feet"),
  7119. weight: math.unit(130, "lbs"),
  7120. name: "Side",
  7121. image: {
  7122. source: "./media/characters/corvin/side.svg",
  7123. extra: 1012 / 945
  7124. }
  7125. },
  7126. back: {
  7127. height: math.unit(5 + 8 / 12, "feet"),
  7128. weight: math.unit(130, "lbs"),
  7129. name: "Back",
  7130. image: {
  7131. source: "./media/characters/corvin/back.svg",
  7132. extra: 1803 / 1629
  7133. }
  7134. },
  7135. },
  7136. [
  7137. {
  7138. name: "Micro",
  7139. height: math.unit(3, "inches")
  7140. },
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(5 + 8 / 12, "feet")
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(300, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Megamacro",
  7152. height: math.unit(500, "miles")
  7153. }
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(135, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/q/front.svg",
  7165. extra: 854 / 752,
  7166. bottom: 0.005
  7167. }
  7168. },
  7169. back: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(130, "lbs"),
  7172. name: "Back",
  7173. image: {
  7174. source: "./media/characters/q/back.svg",
  7175. extra: 854 / 752
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Macro",
  7182. height: math.unit(90, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Extra Macro",
  7187. height: math.unit(300, "feet"),
  7188. },
  7189. {
  7190. name: "BIG WALF",
  7191. height: math.unit(750, "feet"),
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(150, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/carley/front.svg",
  7204. extra: 3927 / 3540,
  7205. bottom: 0.03
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(6 + 3 / 12, "feet")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(185, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(8, "miles"),
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(3, "feet"),
  7230. weight: math.unit(28, "lbs"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/citrine/front.svg"
  7234. }
  7235. }
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(3, "feet"),
  7241. default: true
  7242. }
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7247. {
  7248. front: {
  7249. height: math.unit(14, "feet"),
  7250. weight: math.unit(1450, "kg"),
  7251. capacity: math.unit(15, "people"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/aura-starwind/front.svg",
  7255. extra: 1455 / 1335
  7256. }
  7257. },
  7258. side: {
  7259. height: math.unit(14, "feet"),
  7260. weight: math.unit(1450, "kg"),
  7261. capacity: math.unit(15, "people"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/aura-starwind/side.svg",
  7265. extra: 1654 / 1497
  7266. }
  7267. },
  7268. taur: {
  7269. height: math.unit(18, "feet"),
  7270. weight: math.unit(5500, "kg"),
  7271. capacity: math.unit(50, "people"),
  7272. name: "Taur",
  7273. image: {
  7274. source: "./media/characters/aura-starwind/taur.svg",
  7275. extra: 1760 / 1650
  7276. }
  7277. },
  7278. feral: {
  7279. height: math.unit(46, "feet"),
  7280. weight: math.unit(25000, "kg"),
  7281. capacity: math.unit(120, "people"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/aura-starwind/feral.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(14, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(50, "meters")
  7297. },
  7298. {
  7299. name: "Megamacro",
  7300. height: math.unit(5000, "meters")
  7301. },
  7302. {
  7303. name: "Gigamacro",
  7304. height: math.unit(100000, "kilometers")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(2 + 7 / 12, "feet"),
  7313. weight: math.unit(32, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/rivet/front.svg",
  7317. extra: 1716 / 1658,
  7318. bottom: 0.03
  7319. }
  7320. },
  7321. foot: {
  7322. height: math.unit(0.551, "feet"),
  7323. name: "Rivet's Foot",
  7324. image: {
  7325. source: "./media/characters/rivet/foot.svg"
  7326. },
  7327. rename: true
  7328. }
  7329. },
  7330. [
  7331. {
  7332. name: "Micro",
  7333. height: math.unit(1.5, "inches"),
  7334. },
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(2 + 7 / 12, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(85, "feet")
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(2.2, "km")
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(5 + 9 / 12, "feet"),
  7355. weight: math.unit(150, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/coffee/front.svg",
  7359. extra: 3666 / 3032,
  7360. bottom: 0.04
  7361. }
  7362. },
  7363. foot: {
  7364. height: math.unit(1.29, "feet"),
  7365. name: "Foot",
  7366. image: {
  7367. source: "./media/characters/coffee/foot.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(2, "inches"),
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(5 + 9 / 12, "feet"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(800, "feet")
  7384. },
  7385. {
  7386. name: "Megamacro",
  7387. height: math.unit(25, "miles")
  7388. }
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6, "feet"),
  7396. weight: math.unit(200, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/chari-gal/front.svg",
  7400. extra: 1568 / 1385,
  7401. bottom: 0.047
  7402. }
  7403. },
  7404. gigantamax: {
  7405. height: math.unit(6 * 16, "feet"),
  7406. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7407. name: "Gigantamax",
  7408. image: {
  7409. source: "./media/characters/chari-gal/gigantamax.svg",
  7410. extra: 1124 / 888,
  7411. bottom: 0.03
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(5 + 7 / 12, "feet")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(200, "feet"),
  7423. default: true
  7424. }
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/nova/front.svg",
  7436. extra: 5000 / 4722,
  7437. bottom: 0.02
  7438. }
  7439. }
  7440. },
  7441. [
  7442. {
  7443. name: "Micro-",
  7444. height: math.unit(0.8, "inches")
  7445. },
  7446. {
  7447. name: "Micro",
  7448. height: math.unit(2, "inches"),
  7449. default: true
  7450. },
  7451. ]
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(3 + 1 / 12, "feet"),
  7458. weight: math.unit(21.7, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/argent/front.svg",
  7462. extra: 1471 / 1331,
  7463. bottom: 100.8 / 1575.5
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(2, "inches")
  7471. },
  7472. {
  7473. name: "Normal",
  7474. height: math.unit(3 + 1 / 12, "feet"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(120, "feet")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7485. {
  7486. lamp: {
  7487. height: math.unit(7 * 1559 / 989, "feet"),
  7488. name: "Magic Lamp",
  7489. image: {
  7490. source: "./media/characters/mira-al-cul/lamp.svg",
  7491. extra: 1617 / 1559
  7492. }
  7493. },
  7494. front: {
  7495. height: math.unit(7, "feet"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/mira-al-cul/front.svg",
  7499. extra: 1044 / 990
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Heavily Restricted",
  7506. height: math.unit(7 * 1559 / 989, "feet")
  7507. },
  7508. {
  7509. name: "Freshly Freed",
  7510. height: math.unit(50 * 1559 / 989, "feet")
  7511. },
  7512. {
  7513. name: "World Encompassing",
  7514. height: math.unit(10000 * 1559 / 989, "miles")
  7515. },
  7516. {
  7517. name: "Galactic",
  7518. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7519. },
  7520. {
  7521. name: "Palmed Universe",
  7522. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7523. default: true
  7524. },
  7525. {
  7526. name: "Multiversal Matriarch",
  7527. height: math.unit(8.87e10, "yottameters")
  7528. },
  7529. {
  7530. name: "Void Mother",
  7531. height: math.unit(3.14e110, "yottaparsecs")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7537. {
  7538. front: {
  7539. height: math.unit(17 + 1 / 12, "feet"),
  7540. weight: math.unit(476.2 * 5, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/kuro-shi-uchū/front.svg",
  7544. extra: 2329 / 1835,
  7545. bottom: 0.02
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(2, "inches")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(12, "meters")
  7557. },
  7558. {
  7559. name: "Planetary",
  7560. height: math.unit(0.00929, "AU"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Universal",
  7565. height: math.unit(20, "gigaparsecs")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(5 + 2 / 12, "feet"),
  7574. weight: math.unit(120, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/katherine/front.svg",
  7578. extra: 2075 / 1969
  7579. }
  7580. },
  7581. dress: {
  7582. height: math.unit(5 + 2 / 12, "feet"),
  7583. weight: math.unit(120, "lbs"),
  7584. name: "Dress",
  7585. image: {
  7586. source: "./media/characters/katherine/dress.svg",
  7587. extra: 2258 / 2064
  7588. }
  7589. },
  7590. },
  7591. [
  7592. {
  7593. name: "Micro",
  7594. height: math.unit(1, "inches"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(5 + 2 / 12, "feet")
  7600. },
  7601. {
  7602. name: "Macro",
  7603. height: math.unit(100, "meters")
  7604. },
  7605. {
  7606. name: "Megamacro",
  7607. height: math.unit(80, "miles")
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7613. {
  7614. front: {
  7615. height: math.unit(7 + 8 / 12, "feet"),
  7616. weight: math.unit(250, "lbs"),
  7617. name: "Front",
  7618. image: {
  7619. source: "./media/characters/yevis/front.svg",
  7620. extra: 1938 / 1755
  7621. }
  7622. }
  7623. },
  7624. [
  7625. {
  7626. name: "Mortal",
  7627. height: math.unit(7 + 8 / 12, "feet")
  7628. },
  7629. {
  7630. name: "Battle",
  7631. height: math.unit(25 + 11 / 12, "feet")
  7632. },
  7633. {
  7634. name: "Wrath",
  7635. height: math.unit(1654 + 11 / 12, "feet")
  7636. },
  7637. {
  7638. name: "Planet Destroyer",
  7639. height: math.unit(12000, "miles")
  7640. },
  7641. {
  7642. name: "Galaxy Conqueror",
  7643. height: math.unit(1.45, "zettameters"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Universal War",
  7648. height: math.unit(184, "gigaparsecs")
  7649. },
  7650. {
  7651. name: "Eternity War",
  7652. height: math.unit(1.98e55, "yottaparsecs")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(5 + 8 / 12, "feet"),
  7661. weight: math.unit(63, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/xavier/front.svg",
  7665. extra: 944 / 883
  7666. }
  7667. },
  7668. frontStretch: {
  7669. height: math.unit(5 + 8 / 12, "feet"),
  7670. weight: math.unit(63, "kg"),
  7671. name: "Stretching",
  7672. image: {
  7673. source: "./media/characters/xavier/front-stretch.svg",
  7674. extra: 962 / 820
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(5 + 8 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(100, "meters"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "McLargeHuge",
  7690. height: math.unit(10, "miles")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(5 + 5 / 12, "feet"),
  7699. weight: math.unit(150, "lb"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/joshii/front.svg"
  7703. }
  7704. },
  7705. foot: {
  7706. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7707. name: "Foot",
  7708. image: {
  7709. source: "./media/characters/joshii/foot.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(2, "inches")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(5 + 5 / 12, "feet"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(785, "feet")
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(24.5, "miles")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(150, "lb"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/goddess-elizabeth/front.svg",
  7742. extra: 1800 / 1525,
  7743. bottom: 0.005
  7744. }
  7745. },
  7746. foot: {
  7747. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7748. name: "Foot",
  7749. image: {
  7750. source: "./media/characters/goddess-elizabeth/foot.svg"
  7751. }
  7752. },
  7753. mouth: {
  7754. height: math.unit(6, "feet"),
  7755. name: "Mouth",
  7756. image: {
  7757. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(12, "feet")
  7765. },
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(80, "miles"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Macro",
  7773. height: math.unit(15000, "parsecs")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(5 + 9 / 12, "feet"),
  7782. weight: math.unit(144, "lb"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/kara/front.svg"
  7786. }
  7787. },
  7788. feet: {
  7789. height: math.unit(6 / 6.765, "feet"),
  7790. name: "Kara's Feet",
  7791. rename: true,
  7792. image: {
  7793. source: "./media/characters/kara/feet.svg"
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(5 + 9 / 12, "feet")
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(174, "feet"),
  7805. default: true
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(18, "feet"),
  7814. weight: math.unit(4050, "lb"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/tyrone/front.svg",
  7818. extra: 2520 / 2402,
  7819. bottom: 0.025
  7820. }
  7821. },
  7822. },
  7823. [
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(18, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(300, "feet")
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(7 + 8 / 12, "feet"),
  7840. weight: math.unit(120, "lb"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/danny/front.svg",
  7844. extra: 1490 / 1350
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(7 + 8 / 12, "feet"),
  7849. weight: math.unit(120, "lb"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/danny/back.svg",
  7853. extra: 1490 / 1350
  7854. }
  7855. },
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(7 + 8 / 12, "feet"),
  7861. default: true
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(3.5, "inches"),
  7870. weight: math.unit(19, "grams"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/mallow/front.svg",
  7874. extra: 471 / 431
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(3.5, "inches"),
  7879. weight: math.unit(19, "grams"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/mallow/back.svg",
  7883. extra: 471 / 431
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(3.5, "inches"),
  7891. default: true
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(9, "feet"),
  7900. weight: math.unit(230, "kg"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/starry-aqua/front.svg"
  7904. }
  7905. },
  7906. back: {
  7907. height: math.unit(9, "feet"),
  7908. weight: math.unit(230, "kg"),
  7909. name: "Back",
  7910. image: {
  7911. source: "./media/characters/starry-aqua/back.svg"
  7912. }
  7913. },
  7914. hand: {
  7915. height: math.unit(9 * 0.1168, "feet"),
  7916. name: "Hand",
  7917. image: {
  7918. source: "./media/characters/starry-aqua/hand.svg"
  7919. }
  7920. },
  7921. foot: {
  7922. height: math.unit(9 * 0.18, "feet"),
  7923. name: "Foot",
  7924. image: {
  7925. source: "./media/characters/starry-aqua/foot.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(3, "inches")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(9, "feet")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(300, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Megamacro",
  7945. height: math.unit(3200, "feet")
  7946. }
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(230, "lb"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/luka/front.svg",
  7958. extra: 1,
  7959. bottom: 0.025
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(12 + 8 / 12, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Minimacro",
  7971. height: math.unit(20, "feet")
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(250, "feet")
  7976. },
  7977. {
  7978. name: "Megamacro",
  7979. height: math.unit(5, "miles")
  7980. },
  7981. {
  7982. name: "Gigamacro",
  7983. height: math.unit(8000, "miles")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(150, "lb"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/natalie-nightring/front.svg",
  7996. extra: 1,
  7997. bottom: 0.06
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Uh Oh",
  8004. height: math.unit(0.1, "mm")
  8005. },
  8006. {
  8007. name: "Small",
  8008. height: math.unit(3, "inches")
  8009. },
  8010. {
  8011. name: "Human Scale",
  8012. height: math.unit(6, "feet")
  8013. },
  8014. {
  8015. name: "Librarian",
  8016. height: math.unit(50, "feet"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Immense",
  8021. height: math.unit(200, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(180, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/danni-rosie/front.svg",
  8034. extra: 1260 / 1128,
  8035. bottom: 0.022
  8036. }
  8037. },
  8038. },
  8039. [
  8040. {
  8041. name: "Micro",
  8042. height: math.unit(2, "inches"),
  8043. default: true
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8049. {
  8050. front: {
  8051. height: math.unit(5 + 9 / 12, "feet"),
  8052. weight: math.unit(220, "lb"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/samantha-kruse/front.svg",
  8056. extra: (985 / 935),
  8057. bottom: 0.03
  8058. }
  8059. },
  8060. frontUndressed: {
  8061. height: math.unit(5 + 9 / 12, "feet"),
  8062. weight: math.unit(220, "lb"),
  8063. name: "Front (Undressed)",
  8064. image: {
  8065. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8066. extra: (973 / 923),
  8067. bottom: 0.025
  8068. }
  8069. },
  8070. fat: {
  8071. height: math.unit(5 + 9 / 12, "feet"),
  8072. weight: math.unit(900, "lb"),
  8073. name: "Front (Fat)",
  8074. image: {
  8075. source: "./media/characters/samantha-kruse/fat.svg",
  8076. extra: 2688 / 2561
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(5 + 9 / 12, "feet"),
  8084. default: true
  8085. }
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8090. {
  8091. back: {
  8092. height: math.unit(5 + 4 / 12, "feet"),
  8093. weight: math.unit(4963, "lb"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/amelia-rosie/back.svg",
  8097. extra: 1113 / 963,
  8098. bottom: 0.01
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Level 0",
  8105. height: math.unit(5 + 4 / 12, "feet")
  8106. },
  8107. {
  8108. name: "Level 1",
  8109. height: math.unit(164597, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Level 2",
  8114. height: math.unit(956243, "miles")
  8115. },
  8116. {
  8117. name: "Level 3",
  8118. height: math.unit(29421709423, "miles")
  8119. },
  8120. {
  8121. name: "Level 4",
  8122. height: math.unit(154, "lightyears")
  8123. },
  8124. {
  8125. name: "Level 5",
  8126. height: math.unit(4738272, "lightyears")
  8127. },
  8128. {
  8129. name: "Level 6",
  8130. height: math.unit(145787152896, "lightyears")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(5 + 11 / 12, "feet"),
  8139. weight: math.unit(65, "kg"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/rook-kitara/front.svg",
  8143. extra: 1347 / 1274,
  8144. bottom: 0.005
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Totally Unfair",
  8151. height: math.unit(1.8, "mm")
  8152. },
  8153. {
  8154. name: "Lap Rookie",
  8155. height: math.unit(1.4, "feet")
  8156. },
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(5 + 11 / 12, "feet"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "How Did This Happen",
  8164. height: math.unit(80, "miles")
  8165. }
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(7, "feet"),
  8173. weight: math.unit(300, "lb"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/pisces/front.svg",
  8177. extra: 2255 / 2115,
  8178. bottom: 0.03
  8179. }
  8180. },
  8181. back: {
  8182. height: math.unit(7, "feet"),
  8183. weight: math.unit(300, "lb"),
  8184. name: "Back",
  8185. image: {
  8186. source: "./media/characters/pisces/back.svg",
  8187. extra: 2146 / 2055,
  8188. bottom: 0.04
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(7, "feet"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Swimming Pool",
  8200. height: math.unit(12.2, "meters")
  8201. },
  8202. {
  8203. name: "Olympic Swimming Pool",
  8204. height: math.unit(56.3, "meters")
  8205. },
  8206. {
  8207. name: "Lake Superior",
  8208. height: math.unit(93900, "meters")
  8209. },
  8210. {
  8211. name: "Mediterranean Sea",
  8212. height: math.unit(644457, "meters")
  8213. },
  8214. {
  8215. name: "World's Oceans",
  8216. height: math.unit(4567491, "meters")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(2.3, "meters"),
  8225. weight: math.unit(120, "kg"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/zelas/front.svg"
  8229. }
  8230. },
  8231. side: {
  8232. height: math.unit(2.3, "meters"),
  8233. weight: math.unit(120, "kg"),
  8234. name: "Side",
  8235. image: {
  8236. source: "./media/characters/zelas/side.svg"
  8237. }
  8238. },
  8239. back: {
  8240. height: math.unit(2.3, "meters"),
  8241. weight: math.unit(120, "kg"),
  8242. name: "Back",
  8243. image: {
  8244. source: "./media/characters/zelas/back.svg"
  8245. }
  8246. },
  8247. foot: {
  8248. height: math.unit(1.116, "feet"),
  8249. name: "Foot",
  8250. image: {
  8251. source: "./media/characters/zelas/foot.svg"
  8252. }
  8253. },
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(2.3, "meters")
  8259. },
  8260. {
  8261. name: "Macro",
  8262. height: math.unit(30, "meters"),
  8263. default: true
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(1, "inch"),
  8272. weight: math.unit(0.21, "grams"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/talbot/front.svg",
  8276. extra: 594 / 544
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(1, "inch"),
  8284. default: true
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8290. {
  8291. front: {
  8292. height: math.unit(3 + 3 / 12, "feet"),
  8293. weight: math.unit(51.8, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/fliss/front.svg",
  8297. extra: 840 / 640
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Teeny Tiny",
  8304. height: math.unit(1, "mm")
  8305. },
  8306. {
  8307. name: "Small",
  8308. height: math.unit(1, "inch"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Standard Sylveon",
  8313. height: math.unit(3 + 3 / 12, "feet")
  8314. },
  8315. {
  8316. name: "Large Nuisance",
  8317. height: math.unit(33, "feet")
  8318. },
  8319. {
  8320. name: "City Filler",
  8321. height: math.unit(3000, "feet")
  8322. },
  8323. {
  8324. name: "New Horizon",
  8325. height: math.unit(6000, "miles")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(5, "cm"),
  8334. weight: math.unit(1.94, "g"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/fleta/front.svg",
  8338. extra: 835 / 803
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(5, "cm"),
  8343. weight: math.unit(1.94, "g"),
  8344. name: "Back",
  8345. image: {
  8346. source: "./media/characters/fleta/back.svg",
  8347. extra: 835 / 803
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(5, "cm"),
  8355. default: true
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(225, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/dominic/front.svg",
  8368. extra: 1770 / 1620,
  8369. bottom: 0.025
  8370. }
  8371. },
  8372. back: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(225, "lb"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/dominic/back.svg",
  8378. extra: 1745 / 1620,
  8379. bottom: 0.065
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Nano",
  8386. height: math.unit(0.1, "mm")
  8387. },
  8388. {
  8389. name: "Micro-",
  8390. height: math.unit(1, "mm")
  8391. },
  8392. {
  8393. name: "Micro",
  8394. height: math.unit(4, "inches")
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(6 + 4 / 12, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Macro",
  8403. height: math.unit(115, "feet")
  8404. },
  8405. {
  8406. name: "Macro+",
  8407. height: math.unit(955, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(8990, "feet")
  8412. },
  8413. {
  8414. name: "Gigmacro",
  8415. height: math.unit(9310, "miles")
  8416. },
  8417. {
  8418. name: "Teramacro",
  8419. height: math.unit(1567005010, "miles")
  8420. },
  8421. {
  8422. name: "Examacro",
  8423. height: math.unit(1425, "parsecs")
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(400, "feet"),
  8432. weight: math.unit(44444444, "lb"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/major-colonel/front.svg"
  8436. }
  8437. },
  8438. back: {
  8439. height: math.unit(400, "feet"),
  8440. weight: math.unit(44444444, "lb"),
  8441. name: "Back",
  8442. image: {
  8443. source: "./media/characters/major-colonel/back.svg"
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(400, "feet"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8457. {
  8458. catFront: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lb"),
  8461. name: "Front (Cat Side)",
  8462. image: {
  8463. source: "./media/characters/axel-lycan/cat-front.svg",
  8464. extra: 430 / 402,
  8465. bottom: 43 / 472.35
  8466. }
  8467. },
  8468. catBack: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(120, "lb"),
  8471. name: "Back (Cat Side)",
  8472. image: {
  8473. source: "./media/characters/axel-lycan/cat-back.svg",
  8474. extra: 447 / 419,
  8475. bottom: 23.3 / 469
  8476. }
  8477. },
  8478. wolfFront: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lb"),
  8481. name: "Front (Wolf Side)",
  8482. image: {
  8483. source: "./media/characters/axel-lycan/wolf-front.svg",
  8484. extra: 485 / 456,
  8485. bottom: 19 / 504
  8486. }
  8487. },
  8488. wolfBack: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(120, "lb"),
  8491. name: "Back (Wolf Side)",
  8492. image: {
  8493. source: "./media/characters/axel-lycan/wolf-back.svg",
  8494. extra: 475 / 438,
  8495. bottom: 39.2 / 514
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(1, "km"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(5 + 9 / 12, "feet"),
  8512. weight: math.unit(175, "lb"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/vanrel-hyena/front.svg",
  8516. extra: 1086 / 1010,
  8517. bottom: 0.04
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5 + 9 / 12, "feet"),
  8525. default: true
  8526. },
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(103, "lb"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/abbott-absol/front.svg",
  8538. extra: 2010 / 1842
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Megamicro",
  8545. height: math.unit(0.1, "mm")
  8546. },
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(1, "inch")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(6, "feet"),
  8554. default: true
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(264, "lb"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/hector/front.svg",
  8567. extra: 2280 / 2130,
  8568. bottom: 0.07
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(12.25, "foot"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(160, "feet")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(150, "lb"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/sal/front.svg",
  8593. extra: 1846 / 1699,
  8594. bottom: 0.04
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Megamacro",
  8601. height: math.unit(10, "miles"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8608. {
  8609. front: {
  8610. height: math.unit(3, "meters"),
  8611. weight: math.unit(450, "kg"),
  8612. name: "front",
  8613. image: {
  8614. source: "./media/characters/ranger/front.svg",
  8615. extra: 2401 / 2243,
  8616. bottom: 0.05
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3, "meters"),
  8624. default: true
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(14, "feet"),
  8633. weight: math.unit(800, "kg"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/theresa/front.svg",
  8637. extra: 3575 / 3346,
  8638. bottom: 0.03
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(14, "feet"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(3, "kg"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/ine/front.svg",
  8659. extra: 678 / 539,
  8660. bottom: 0.023
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(2.265, "feet"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5, "feet"),
  8677. weight: math.unit(30, "kg"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/vial/front.svg",
  8681. extra: 1365 / 1277,
  8682. bottom: 0.04
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5, "feet"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8696. {
  8697. side: {
  8698. height: math.unit(3.4, "meters"),
  8699. weight: math.unit(1000, "lb"),
  8700. name: "Side",
  8701. image: {
  8702. source: "./media/characters/rovoska/side.svg",
  8703. extra: 4403 / 1515
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(3.4, "meters"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(8, "feet"),
  8720. weight: math.unit(315, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/gunner-rotthbauer/front.svg"
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(8, "feet"),
  8728. weight: math.unit(315, "lb"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/gunner-rotthbauer/back.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(3.5, "inches")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(8, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(250, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(1, "AU")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(5 + 5 / 12, "feet"),
  8760. weight: math.unit(140, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/allatia/front.svg",
  8764. extra: 1227 / 1180,
  8765. bottom: 0.027
  8766. }
  8767. },
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(5 + 5 / 12, "feet")
  8773. },
  8774. {
  8775. name: "Macro",
  8776. height: math.unit(250, "feet"),
  8777. default: true
  8778. },
  8779. {
  8780. name: "Megamacro",
  8781. height: math.unit(8, "miles")
  8782. }
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(120, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/tene/front.svg",
  8794. extra: 1728 / 1578,
  8795. bottom: 0.022
  8796. }
  8797. },
  8798. stomping: {
  8799. height: math.unit(2.025, "meters"),
  8800. weight: math.unit(120, "lb"),
  8801. name: "Stomping",
  8802. image: {
  8803. source: "./media/characters/tene/stomping.svg",
  8804. extra: 938 / 873,
  8805. bottom: 0.01
  8806. }
  8807. },
  8808. sitting: {
  8809. height: math.unit(1, "meter"),
  8810. weight: math.unit(120, "lb"),
  8811. name: "Sitting",
  8812. image: {
  8813. source: "./media/characters/tene/sitting.svg",
  8814. extra: 437 / 415,
  8815. bottom: 0.1
  8816. }
  8817. },
  8818. feral: {
  8819. height: math.unit(3.9, "feet"),
  8820. weight: math.unit(250, "lb"),
  8821. name: "Feral",
  8822. image: {
  8823. source: "./media/characters/tene/feral.svg",
  8824. extra: 717 / 458,
  8825. bottom: 0.179
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(6, "feet")
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(300, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(5, "miles")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8847. {
  8848. side: {
  8849. height: math.unit(6, "feet"),
  8850. name: "Side",
  8851. image: {
  8852. source: "./media/characters/evander/side.svg",
  8853. extra: 877 / 477
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(0.83, "meters"),
  8861. default: true
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(12, "feet"),
  8870. weight: math.unit(1000, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8874. extra: 1762 / 1611
  8875. }
  8876. },
  8877. back: {
  8878. height: math.unit(12, "feet"),
  8879. weight: math.unit(1000, "lb"),
  8880. name: "Back",
  8881. image: {
  8882. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8883. extra: 1762 / 1611
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(12, "feet"),
  8891. default: true
  8892. },
  8893. {
  8894. name: "Kaiju",
  8895. height: math.unit(150, "feet")
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(6, "feet"),
  8904. weight: math.unit(150, "lb"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/zero-alurus/front.svg"
  8908. }
  8909. },
  8910. back: {
  8911. height: math.unit(6, "feet"),
  8912. weight: math.unit(150, "lb"),
  8913. name: "Back",
  8914. image: {
  8915. source: "./media/characters/zero-alurus/back.svg"
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(5 + 10 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(60, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Macro+",
  8931. height: math.unit(450, "feet")
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(200, "lb"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/mega-shi/front.svg",
  8944. extra: 1279 / 1250,
  8945. bottom: 0.02
  8946. }
  8947. },
  8948. back: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(200, "lb"),
  8951. name: "Back",
  8952. image: {
  8953. source: "./media/characters/mega-shi/back.svg",
  8954. extra: 1279 / 1250,
  8955. bottom: 0.02
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Micro",
  8962. height: math.unit(16 + 6 / 12, "feet")
  8963. },
  8964. {
  8965. name: "Third Dimension",
  8966. height: math.unit(40, "meters")
  8967. },
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(660, "feet"),
  8971. default: true
  8972. },
  8973. {
  8974. name: "Megamacro",
  8975. height: math.unit(10, "miles")
  8976. },
  8977. {
  8978. name: "Planetary Launch",
  8979. height: math.unit(500, "miles")
  8980. },
  8981. {
  8982. name: "Interstellar",
  8983. height: math.unit(1e9, "miles")
  8984. },
  8985. {
  8986. name: "Leaving the Universe",
  8987. height: math.unit(1, "gigaparsec")
  8988. },
  8989. {
  8990. name: "Travelling Universes",
  8991. height: math.unit(30e15, "parsecs")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(150, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/odyssey/front.svg",
  9004. extra: 1782 / 1582,
  9005. bottom: 0.01
  9006. }
  9007. },
  9008. side: {
  9009. height: math.unit(5.7, "feet"),
  9010. weight: math.unit(140, "lb"),
  9011. name: "Side",
  9012. image: {
  9013. source: "./media/characters/odyssey/side.svg",
  9014. extra: 6462 / 5700
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(5 + 4 / 12, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(1, "km")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(3000, "km")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(1, "AU"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Omniversal",
  9038. height: math.unit(100e14, "lightyears")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(300, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/mekuto/front.svg",
  9051. extra: 921 / 832,
  9052. bottom: 0.03
  9053. }
  9054. },
  9055. hand: {
  9056. height: math.unit(6 / 10.24, "feet"),
  9057. name: "Hand",
  9058. image: {
  9059. source: "./media/characters/mekuto/hand.svg"
  9060. }
  9061. },
  9062. foot: {
  9063. height: math.unit(6 / 5.05, "feet"),
  9064. name: "Foot",
  9065. image: {
  9066. source: "./media/characters/mekuto/foot.svg"
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Minimicro",
  9073. height: math.unit(0.2, "inches")
  9074. },
  9075. {
  9076. name: "Micro",
  9077. height: math.unit(1.5, "inches")
  9078. },
  9079. {
  9080. name: "Normal",
  9081. height: math.unit(5 + 11 / 12, "feet"),
  9082. default: true
  9083. },
  9084. {
  9085. name: "Minimacro",
  9086. height: math.unit(17 + 9 / 12, "feet")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(177.5, "feet")
  9091. },
  9092. {
  9093. name: "Megamacro",
  9094. height: math.unit(152, "miles")
  9095. },
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(6.5, "inches"),
  9103. weight: math.unit(13, "oz"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/dafydd-tomos/front.svg",
  9107. extra: 2990 / 2603,
  9108. bottom: 0.03
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(6.5, "inches"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(150, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/splinter/front.svg",
  9129. extra: 2990 / 2882,
  9130. bottom: 0.04
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(150, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/splinter/back.svg",
  9139. extra: 2990 / 2882,
  9140. bottom: 0.04
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Normal",
  9147. height: math.unit(6, "feet")
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(230, "meters"),
  9152. default: true
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(4 + 10 / 12, "feet"),
  9161. weight: math.unit(480, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/snow-gabumon/front.svg",
  9165. extra: 1140 / 963,
  9166. bottom: 0.058
  9167. }
  9168. },
  9169. back: {
  9170. height: math.unit(4 + 10 / 12, "feet"),
  9171. weight: math.unit(480, "lb"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/snow-gabumon/back.svg",
  9175. extra: 1115 / 962,
  9176. bottom: 0.041
  9177. }
  9178. },
  9179. frontUndresed: {
  9180. height: math.unit(4 + 10 / 12, "feet"),
  9181. weight: math.unit(480, "lb"),
  9182. name: "Front (Undressed)",
  9183. image: {
  9184. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9185. extra: 1061 / 960,
  9186. bottom: 0.045
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Micro",
  9193. height: math.unit(1, "inch")
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(4 + 10 / 12, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(200, "feet")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(120, "miles")
  9207. },
  9208. {
  9209. name: "Gigamacro",
  9210. height: math.unit(9800, "miles")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(1.7, "meters"),
  9219. weight: math.unit(140, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/moody/front.svg",
  9223. extra: 3226 / 3007,
  9224. bottom: 0.087
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Micro",
  9231. height: math.unit(1, "mm")
  9232. },
  9233. {
  9234. name: "Normal",
  9235. height: math.unit(1.7, "meters"),
  9236. default: true
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(80, "meters")
  9241. },
  9242. {
  9243. name: "Macro+",
  9244. height: math.unit(500, "meters")
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(6, "feet"),
  9253. weight: math.unit(150, "lb"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/zyas/front.svg",
  9257. extra: 1180 / 1120,
  9258. bottom: 0.045
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(10, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(500, "feet")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(5, "miles")
  9275. },
  9276. {
  9277. name: "Teramacro",
  9278. height: math.unit(150000, "miles")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(6, "feet"),
  9287. weight: math.unit(150, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/cuon/front.svg",
  9291. extra: 1390 / 1320,
  9292. bottom: 0.008
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Micro",
  9299. height: math.unit(3, "inches")
  9300. },
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(18 + 9 / 12, "feet"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(360, "feet")
  9309. },
  9310. {
  9311. name: "Megamacro",
  9312. height: math.unit(360, "miles")
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(2.4, "meters"),
  9321. weight: math.unit(70, "kg"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/nyanuxk/front.svg",
  9325. extra: 1172 / 1084,
  9326. bottom: 0.065
  9327. }
  9328. },
  9329. side: {
  9330. height: math.unit(2.4, "meters"),
  9331. weight: math.unit(70, "kg"),
  9332. name: "Side",
  9333. image: {
  9334. source: "./media/characters/nyanuxk/side.svg",
  9335. extra: 1190 / 1132,
  9336. bottom: 0.007
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(2.4, "meters"),
  9341. weight: math.unit(70, "kg"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/nyanuxk/back.svg",
  9345. extra: 1200 / 1141,
  9346. bottom: 0.015
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit(0.52, "meters"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/nyanuxk/foot.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(2, "cm")
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(2.4, "meters"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Smaller Macro",
  9369. height: math.unit(120, "meters")
  9370. },
  9371. {
  9372. name: "Bigger Macro",
  9373. height: math.unit(1.2, "km")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(15, "kilometers")
  9378. },
  9379. {
  9380. name: "Gigamacro",
  9381. height: math.unit(2000, "km")
  9382. },
  9383. {
  9384. name: "Teramacro",
  9385. height: math.unit(500000, "km")
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9391. {
  9392. side: {
  9393. height: math.unit(6, "feet"),
  9394. name: "Side",
  9395. image: {
  9396. source: "./media/characters/ailbhe/side.svg",
  9397. extra: 757 / 464,
  9398. bottom: 0.041
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(1.07, "meters"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(120, "kg"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/zevulfius/front.svg",
  9419. extra: 965 / 903
  9420. }
  9421. },
  9422. side: {
  9423. height: math.unit(6, "feet"),
  9424. weight: math.unit(120, "kg"),
  9425. name: "Side",
  9426. image: {
  9427. source: "./media/characters/zevulfius/side.svg",
  9428. extra: 939 / 900
  9429. }
  9430. },
  9431. back: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(120, "kg"),
  9434. name: "Back",
  9435. image: {
  9436. source: "./media/characters/zevulfius/back.svg",
  9437. extra: 918 / 854,
  9438. bottom: 0.005
  9439. }
  9440. },
  9441. foot: {
  9442. height: math.unit(6 / 3.72, "feet"),
  9443. name: "Foot",
  9444. image: {
  9445. source: "./media/characters/zevulfius/foot.svg"
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(750, "meters")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(20, "km"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Gigamacro",
  9461. height: math.unit(2000, "km")
  9462. },
  9463. {
  9464. name: "Teramacro",
  9465. height: math.unit(250000, "km")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(100, "feet"),
  9474. weight: math.unit(350, "kg"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/rikes/front.svg",
  9478. extra: 1565 / 1483,
  9479. bottom: 0.017
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(100, "feet"),
  9487. default: true
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9493. {
  9494. anthro: {
  9495. height: math.unit(8, "feet"),
  9496. weight: math.unit(120, "kg"),
  9497. name: "Anthro",
  9498. image: {
  9499. source: "./media/characters/adam-silver-mane/anthro.svg",
  9500. extra: 5743 / 5339,
  9501. bottom: 0.07
  9502. }
  9503. },
  9504. taur: {
  9505. height: math.unit(16, "feet"),
  9506. weight: math.unit(1500, "kg"),
  9507. name: "Taur",
  9508. image: {
  9509. source: "./media/characters/adam-silver-mane/taur.svg",
  9510. extra: 1713 / 1571,
  9511. bottom: 0.01
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(8, "feet")
  9519. },
  9520. {
  9521. name: "Minimacro",
  9522. height: math.unit(80, "feet")
  9523. },
  9524. {
  9525. name: "Macro",
  9526. height: math.unit(800, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Megamacro",
  9531. height: math.unit(8000, "feet")
  9532. },
  9533. {
  9534. name: "Gigamacro",
  9535. height: math.unit(800, "miles")
  9536. },
  9537. {
  9538. name: "Teramacro",
  9539. height: math.unit(80000, "miles")
  9540. },
  9541. {
  9542. name: "Celestial",
  9543. height: math.unit(8e6, "miles")
  9544. },
  9545. {
  9546. name: "Star Dragon",
  9547. height: math.unit(800000, "parsecs")
  9548. },
  9549. {
  9550. name: "Godly",
  9551. height: math.unit(800, "teraparsecs")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(150, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/ky'owin/front.svg",
  9564. extra: 3888 / 3068,
  9565. bottom: 0.015
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(6 + 8 / 12, "feet")
  9573. },
  9574. {
  9575. name: "Large",
  9576. height: math.unit(68, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(132, "feet")
  9581. },
  9582. {
  9583. name: "Macro+",
  9584. height: math.unit(340, "feet")
  9585. },
  9586. {
  9587. name: "Macro++",
  9588. height: math.unit(680, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(1, "mile")
  9594. },
  9595. {
  9596. name: "Megamacro+",
  9597. height: math.unit(10, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(4, "feet"),
  9606. weight: math.unit(50, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/mal/front.svg",
  9610. extra: 785 / 724,
  9611. bottom: 0.07
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(4, "inches")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(4, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(200, "feet")
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(150, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/jordan-deware/front.svg",
  9640. extra: 1191 / 1012
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Nano",
  9647. height: math.unit(0.01, "mm")
  9648. },
  9649. {
  9650. name: "Minimicro",
  9651. height: math.unit(1, "mm")
  9652. },
  9653. {
  9654. name: "Micro",
  9655. height: math.unit(0.5, "inches")
  9656. },
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(4, "feet"),
  9660. default: true
  9661. },
  9662. {
  9663. name: "Minimacro",
  9664. height: math.unit(40, "meters")
  9665. },
  9666. {
  9667. name: "Small Macro",
  9668. height: math.unit(400, "meters")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(4, "miles")
  9673. },
  9674. {
  9675. name: "Megamacro",
  9676. height: math.unit(40, "miles")
  9677. },
  9678. {
  9679. name: "Megamacro+",
  9680. height: math.unit(400, "miles")
  9681. },
  9682. {
  9683. name: "Gigamacro",
  9684. height: math.unit(400000, "miles")
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9690. {
  9691. side: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Side",
  9695. image: {
  9696. source: "./media/characters/kimiko/side.svg",
  9697. extra: 600 / 358
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(15, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Macro",
  9709. height: math.unit(220, "feet")
  9710. },
  9711. {
  9712. name: "Macro+",
  9713. height: math.unit(1450, "feet")
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(11500, "feet")
  9718. },
  9719. {
  9720. name: "Gigamacro",
  9721. height: math.unit(9500, "miles")
  9722. },
  9723. {
  9724. name: "Teramacro",
  9725. height: math.unit(2208005005, "miles")
  9726. },
  9727. {
  9728. name: "Examacro",
  9729. height: math.unit(2750, "parsecs")
  9730. },
  9731. {
  9732. name: "Zettamacro",
  9733. height: math.unit(101500, "parsecs")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(6, "feet"),
  9742. weight: math.unit(70, "kg"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/andrew-sleepy/front.svg"
  9746. }
  9747. },
  9748. side: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(70, "kg"),
  9751. name: "Side",
  9752. image: {
  9753. source: "./media/characters/andrew-sleepy/side.svg"
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(1, "mm"),
  9761. default: true
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/judio/front.svg",
  9774. extra: 1258 / 1110
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(5 + 6 / 12, "feet")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(1000, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Megamacro",
  9790. height: math.unit(10, "miles")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(6, "feet"),
  9799. weight: math.unit(68, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/nomaxice/front.svg",
  9803. extra: 1498 / 1073,
  9804. bottom: 0.075
  9805. }
  9806. },
  9807. foot: {
  9808. height: math.unit(1.1, "feet"),
  9809. name: "Foot",
  9810. image: {
  9811. source: "./media/characters/nomaxice/foot.svg"
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Micro",
  9818. height: math.unit(8, "cm")
  9819. },
  9820. {
  9821. name: "Norm",
  9822. height: math.unit(1.82, "m")
  9823. },
  9824. {
  9825. name: "Norm+",
  9826. height: math.unit(8.8, "feet")
  9827. },
  9828. {
  9829. name: "Big",
  9830. height: math.unit(8, "meters"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(18, "meters")
  9836. },
  9837. {
  9838. name: "Macro+",
  9839. height: math.unit(88, "meters")
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(12, "feet"),
  9848. weight: math.unit(1.5, "tons"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/dydros/front.svg",
  9852. extra: 863 / 800,
  9853. bottom: 0.015
  9854. }
  9855. },
  9856. back: {
  9857. height: math.unit(12, "feet"),
  9858. weight: math.unit(1.5, "tons"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/dydros/back.svg",
  9862. extra: 900 / 843,
  9863. bottom: 0.005
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(12, "feet"),
  9871. default: true
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(100, "kg"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/riggi/front.svg",
  9884. extra: 5787 / 5303
  9885. }
  9886. },
  9887. hyper: {
  9888. height: math.unit(6 * 5 / 3, "feet"),
  9889. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9890. name: "Hyper",
  9891. image: {
  9892. source: "./media/characters/riggi/hyper.svg",
  9893. extra: 3595 / 3485
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Small Macro",
  9900. height: math.unit(50, "feet")
  9901. },
  9902. {
  9903. name: "Default",
  9904. height: math.unit(200, "feet"),
  9905. default: true
  9906. },
  9907. {
  9908. name: "Loom",
  9909. height: math.unit(10000, "feet")
  9910. },
  9911. {
  9912. name: "Cruising Altitude",
  9913. height: math.unit(30000, "feet")
  9914. },
  9915. {
  9916. name: "Megamacro",
  9917. height: math.unit(100, "miles")
  9918. },
  9919. {
  9920. name: "Continent Sized",
  9921. height: math.unit(2800, "miles")
  9922. },
  9923. {
  9924. name: "Earth Sized",
  9925. height: math.unit(8000, "miles")
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9931. {
  9932. front: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(250, "lb"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/alexi/front.svg",
  9938. extra: 3483 / 3291,
  9939. bottom: 0.04
  9940. }
  9941. },
  9942. back: {
  9943. height: math.unit(6, "feet"),
  9944. weight: math.unit(250, "lb"),
  9945. name: "Back",
  9946. image: {
  9947. source: "./media/characters/alexi/back.svg",
  9948. extra: 3533 / 3356,
  9949. bottom: 0.021
  9950. }
  9951. },
  9952. frontTransforming: {
  9953. height: math.unit(8.58, "feet"),
  9954. weight: math.unit(1300, "lb"),
  9955. name: "Transforming",
  9956. image: {
  9957. source: "./media/characters/alexi/front-transforming.svg",
  9958. extra: 437 / 409,
  9959. bottom: 19 / 458.66
  9960. }
  9961. },
  9962. frontTransformed: {
  9963. height: math.unit(12.5, "feet"),
  9964. weight: math.unit(4000, "lb"),
  9965. name: "Transformed",
  9966. image: {
  9967. source: "./media/characters/alexi/front-transformed.svg",
  9968. extra: 639 / 614,
  9969. bottom: 30.55 / 671
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(3, "meters"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Minimacro",
  9981. height: math.unit(30, "meters")
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(500, "meters")
  9986. },
  9987. {
  9988. name: "Megamacro",
  9989. height: math.unit(9000, "km")
  9990. },
  9991. {
  9992. name: "Teramacro",
  9993. height: math.unit(384000, "km")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(150, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/kayroo/front.svg",
  10006. extra: 1153 / 1038,
  10007. bottom: 0.06
  10008. }
  10009. },
  10010. foot: {
  10011. height: math.unit(6, "feet"),
  10012. weight: math.unit(150, "lb"),
  10013. name: "Foot",
  10014. image: {
  10015. source: "./media/characters/kayroo/foot.svg"
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(8, "feet"),
  10023. default: true
  10024. },
  10025. {
  10026. name: "Minimacro",
  10027. height: math.unit(250, "feet")
  10028. },
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(2800, "feet")
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(5200, "feet")
  10036. },
  10037. {
  10038. name: "Gigamacro",
  10039. height: math.unit(27000, "feet")
  10040. },
  10041. {
  10042. name: "Omega",
  10043. height: math.unit(45000, "feet")
  10044. },
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(18, "feet"),
  10052. weight: math.unit(5800, "lb"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/rhys/front.svg",
  10056. extra: 3386 / 3090,
  10057. bottom: 0.07
  10058. }
  10059. },
  10060. },
  10061. [
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(18, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Working Size",
  10069. height: math.unit(200, "feet")
  10070. },
  10071. {
  10072. name: "Demolition Size",
  10073. height: math.unit(2000, "feet")
  10074. },
  10075. {
  10076. name: "Maximum Licensed Size",
  10077. height: math.unit(5, "miles")
  10078. },
  10079. {
  10080. name: "Maximum Observed Size",
  10081. height: math.unit(10, "yottameters")
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10087. {
  10088. front: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(250, "lb"),
  10091. name: "Front",
  10092. image: {
  10093. source: "./media/characters/toto/front.svg",
  10094. extra: 527 / 479,
  10095. bottom: 0.05
  10096. }
  10097. },
  10098. },
  10099. [
  10100. {
  10101. name: "Micro",
  10102. height: math.unit(3, "feet")
  10103. },
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(10, "feet")
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(150, "feet"),
  10111. default: true
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(1200, "feet")
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "King", species: ["lion"], tags: ["anthro"] },
  10121. {
  10122. back: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(150, "lb"),
  10125. name: "Back",
  10126. image: {
  10127. source: "./media/characters/king/back.svg"
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Micro",
  10134. height: math.unit(2, "inches")
  10135. },
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(8, "feet")
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(200, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(50, "miles")
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10153. {
  10154. anthro: {
  10155. height: math.unit(6 + 5 / 12, "feet"),
  10156. weight: math.unit(280, "lb"),
  10157. name: "Anthro",
  10158. image: {
  10159. source: "./media/characters/cordite/anthro.svg",
  10160. extra: 1986 / 1905,
  10161. bottom: 0.025
  10162. }
  10163. },
  10164. feral: {
  10165. height: math.unit(2, "feet"),
  10166. weight: math.unit(90, "lb"),
  10167. name: "Feral",
  10168. image: {
  10169. source: "./media/characters/cordite/feral.svg",
  10170. extra: 1260 / 755,
  10171. bottom: 0.05
  10172. }
  10173. },
  10174. },
  10175. [
  10176. {
  10177. name: "Normal",
  10178. height: math.unit(6 + 5 / 12, "feet"),
  10179. default: true
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10185. {
  10186. front: {
  10187. height: math.unit(6, "feet"),
  10188. weight: math.unit(150, "lb"),
  10189. name: "Front",
  10190. image: {
  10191. source: "./media/characters/pianostrong/front.svg",
  10192. extra: 6577 / 6254,
  10193. bottom: 0.02
  10194. }
  10195. },
  10196. side: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(150, "lb"),
  10199. name: "Side",
  10200. image: {
  10201. source: "./media/characters/pianostrong/side.svg",
  10202. extra: 6106 / 5730
  10203. }
  10204. },
  10205. back: {
  10206. height: math.unit(6, "feet"),
  10207. weight: math.unit(150, "lb"),
  10208. name: "Back",
  10209. image: {
  10210. source: "./media/characters/pianostrong/back.svg",
  10211. extra: 6085 / 5733,
  10212. bottom: 0.01
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(100, "feet")
  10220. },
  10221. {
  10222. name: "Macro+",
  10223. height: math.unit(300, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro++",
  10228. height: math.unit(1000, "feet")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/kona/front.svg",
  10241. extra: 2960 / 2629,
  10242. bottom: 0.005
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(11 + 8 / 12, "feet")
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(850, "feet"),
  10254. default: true
  10255. },
  10256. {
  10257. name: "Macro+",
  10258. height: math.unit(1.5, "km"),
  10259. default: true
  10260. },
  10261. {
  10262. name: "Megamacro",
  10263. height: math.unit(80, "miles")
  10264. },
  10265. {
  10266. name: "Gigamacro",
  10267. height: math.unit(3500, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10273. {
  10274. side: {
  10275. height: math.unit(1.9, "meters"),
  10276. weight: math.unit(326, "kg"),
  10277. name: "Side",
  10278. image: {
  10279. source: "./media/characters/levi/side.svg",
  10280. extra: 1704 / 1334,
  10281. bottom: 0.02
  10282. }
  10283. },
  10284. },
  10285. [
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(1.9, "meters"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(20, "meters")
  10294. },
  10295. {
  10296. name: "Macro+",
  10297. height: math.unit(200, "meters")
  10298. },
  10299. {
  10300. name: "Megamacro",
  10301. height: math.unit(2, "km")
  10302. },
  10303. {
  10304. name: "Megamacro+",
  10305. height: math.unit(20, "km")
  10306. },
  10307. {
  10308. name: "Gigamacro",
  10309. height: math.unit(2500, "km")
  10310. },
  10311. {
  10312. name: "Gigamacro+",
  10313. height: math.unit(120000, "km")
  10314. },
  10315. {
  10316. name: "Teramacro",
  10317. height: math.unit(7.77e6, "km")
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10323. {
  10324. front: {
  10325. height: math.unit(6 + 4 / 12, "feet"),
  10326. weight: math.unit(188, "lb"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/bmc/front.svg",
  10330. extra: 1067 / 1022,
  10331. bottom: 0.047
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Human-sized",
  10338. height: math.unit(6 + 4 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Small",
  10342. height: math.unit(250, "feet")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(1250, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Good Day",
  10351. height: math.unit(88, "miles")
  10352. },
  10353. {
  10354. name: "Largest Measured Size",
  10355. height: math.unit(11.2e6, "lightyears")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(20, "feet"),
  10364. weight: math.unit(2016, "kg"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/sven-the-kaiju/front.svg",
  10368. extra: 1479 / 1449,
  10369. bottom: 0.05
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Fairy",
  10376. height: math.unit(6, "inches")
  10377. },
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(20, "feet"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "Rampage",
  10385. height: math.unit(200, "feet")
  10386. },
  10387. {
  10388. name: "Archfey Forest Guardian",
  10389. height: math.unit(1, "mile")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(4, "meters"),
  10398. weight: math.unit(2, "tons"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/marik/front.svg",
  10402. extra: 1057 / 1003,
  10403. bottom: 0.08
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(4, "meters"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(20, "meters")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(50, "km")
  10420. },
  10421. {
  10422. name: "Gigamacro",
  10423. height: math.unit(100, "km")
  10424. },
  10425. {
  10426. name: "Alpha Macro",
  10427. height: math.unit(7.88e7, "yottameters")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10433. {
  10434. front: {
  10435. height: math.unit(6, "feet"),
  10436. weight: math.unit(110, "lb"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/mel/front.svg",
  10440. extra: 736 / 617,
  10441. bottom: 0.017
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Pico",
  10448. height: math.unit(3, "pm")
  10449. },
  10450. {
  10451. name: "Nano",
  10452. height: math.unit(3, "nm")
  10453. },
  10454. {
  10455. name: "Micro",
  10456. height: math.unit(0.3, "mm"),
  10457. default: true
  10458. },
  10459. {
  10460. name: "Micro+",
  10461. height: math.unit(3, "mm")
  10462. },
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(5 + 10.5 / 12, "feet")
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10471. {
  10472. kaiju: {
  10473. height: math.unit(1.75, "meters"),
  10474. weight: math.unit(55, "kg"),
  10475. name: "Kaiju",
  10476. image: {
  10477. source: "./media/characters/lykonous/kaiju.svg",
  10478. extra: 1055 / 946,
  10479. bottom: 0.135
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(2.5, "meters"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Kaiju Dragon",
  10491. height: math.unit(60, "meters")
  10492. },
  10493. {
  10494. name: "Mega Kaiju",
  10495. height: math.unit(120, "km")
  10496. },
  10497. {
  10498. name: "Giga Kaiju",
  10499. height: math.unit(200, "megameters")
  10500. },
  10501. {
  10502. name: "Terra Kaiju",
  10503. height: math.unit(400, "gigameters")
  10504. },
  10505. {
  10506. name: "Kaiju Dragon God",
  10507. height: math.unit(13000, "exaparsecs")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(6, "feet"),
  10516. weight: math.unit(150, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/blü/front.svg",
  10520. extra: 1883 / 1564,
  10521. bottom: 0.031
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(13, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Big Boi",
  10533. height: math.unit(150, "meters")
  10534. },
  10535. {
  10536. name: "Mini Stomper",
  10537. height: math.unit(300, "meters")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(1000, "meters")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(11000, "meters")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(11000, "km")
  10550. },
  10551. {
  10552. name: "Teramacro",
  10553. height: math.unit(420000, "km")
  10554. },
  10555. {
  10556. name: "Examacro",
  10557. height: math.unit(120, "parsecs")
  10558. },
  10559. {
  10560. name: "God Tho",
  10561. height: math.unit(98000000000, "parsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10567. {
  10568. taurFront: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(200, "lb"),
  10571. name: "Taur (Front)",
  10572. image: {
  10573. source: "./media/characters/scales/taur-front.svg",
  10574. extra: 1,
  10575. bottom: 0.05
  10576. }
  10577. },
  10578. taurBack: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(200, "lb"),
  10581. name: "Taur (Back)",
  10582. image: {
  10583. source: "./media/characters/scales/taur-back.svg",
  10584. extra: 1,
  10585. bottom: 0.08
  10586. }
  10587. },
  10588. anthro: {
  10589. height: math.unit(6 * 7 / 12, "feet"),
  10590. weight: math.unit(100, "lb"),
  10591. name: "Anthro",
  10592. image: {
  10593. source: "./media/characters/scales/anthro.svg",
  10594. extra: 1,
  10595. bottom: 0.06
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(12, "feet"),
  10603. default: true
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(150, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/koragos/front.svg",
  10616. extra: 841 / 794,
  10617. bottom: 0.035
  10618. }
  10619. },
  10620. back: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Back",
  10624. image: {
  10625. source: "./media/characters/koragos/back.svg",
  10626. extra: 841 / 810,
  10627. bottom: 0.022
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(6 + 11 / 12, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(490, "feet")
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(10, "miles")
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(50, "miles")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(250, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/xylrem/front.svg",
  10660. extra: 3323 / 3050,
  10661. bottom: 0.065
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Micro",
  10668. height: math.unit(4, "feet")
  10669. },
  10670. {
  10671. name: "Normal",
  10672. height: math.unit(16, "feet"),
  10673. default: true
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(2720, "feet")
  10678. },
  10679. {
  10680. name: "Megamacro",
  10681. height: math.unit(25000, "miles")
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(8, "feet"),
  10690. weight: math.unit(250, "kg"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/ikideru/front.svg",
  10694. extra: 930 / 870,
  10695. bottom: 0.087
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(8, "feet"),
  10700. weight: math.unit(250, "kg"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/ikideru/back.svg",
  10704. extra: 919 / 852,
  10705. bottom: 0.055
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Rare",
  10712. height: math.unit(8, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Playful Loom",
  10717. height: math.unit(80, "feet")
  10718. },
  10719. {
  10720. name: "City Leaner",
  10721. height: math.unit(230, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(2500, "feet")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(26400, "feet")
  10730. },
  10731. {
  10732. name: "Tectonic Shifter",
  10733. height: math.unit(1.7, "megameters")
  10734. },
  10735. {
  10736. name: "Planet Carer",
  10737. height: math.unit(21, "megameters")
  10738. },
  10739. {
  10740. name: "God",
  10741. height: math.unit(11157.22, "parsecs")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(120, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/neo/front.svg"
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Micro",
  10760. height: math.unit(2, "inches"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Human Size",
  10765. height: math.unit(5 + 8 / 12, "feet")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(13 + 10 / 12, "feet"),
  10774. weight: math.unit(5320, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/chauncey-chantz/front.svg",
  10778. extra: 1587 / 1435,
  10779. bottom: 0.02
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Normal",
  10786. height: math.unit(13 + 10 / 12, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Macro",
  10791. height: math.unit(45, "feet")
  10792. },
  10793. {
  10794. name: "Megamacro",
  10795. height: math.unit(250, "miles")
  10796. },
  10797. {
  10798. name: "Planetary",
  10799. height: math.unit(10000, "miles")
  10800. },
  10801. {
  10802. name: "Galactic",
  10803. height: math.unit(40000, "parsecs")
  10804. },
  10805. {
  10806. name: "Universal",
  10807. height: math.unit(1, "yottameter")
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10813. {
  10814. front: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(150, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/epifox/front.svg",
  10820. extra: 1,
  10821. bottom: 0.075
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Micro",
  10828. height: math.unit(6, "inches")
  10829. },
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(12, "feet"),
  10833. default: true
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(3810, "feet")
  10838. },
  10839. {
  10840. name: "Megamacro",
  10841. height: math.unit(500, "miles")
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(1.8796, "m"),
  10850. weight: math.unit(230, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/colin-t/front.svg",
  10854. extra: 1272 / 1193,
  10855. bottom: 0.07
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Micro",
  10862. height: math.unit(0.571, "meters")
  10863. },
  10864. {
  10865. name: "Normal",
  10866. height: math.unit(1.8796, "meters"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Tall",
  10871. height: math.unit(4, "meters")
  10872. },
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(67.241, "meters")
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(371.856, "meters")
  10880. },
  10881. {
  10882. name: "Planetary",
  10883. height: math.unit(12631.5689, "km")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(1.85, "meters"),
  10892. weight: math.unit(80, "kg"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/matvei/front.svg",
  10896. extra: 614 / 594,
  10897. bottom: 0.01
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(1.85, "meters"),
  10905. default: true
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(5 + 9 / 12, "feet"),
  10914. weight: math.unit(70, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/quincy/front.svg",
  10918. extra: 3041 / 2751
  10919. }
  10920. },
  10921. back: {
  10922. height: math.unit(5 + 9 / 12, "feet"),
  10923. weight: math.unit(70, "lb"),
  10924. name: "Back",
  10925. image: {
  10926. source: "./media/characters/quincy/back.svg",
  10927. extra: 3041 / 2751
  10928. }
  10929. },
  10930. flying: {
  10931. height: math.unit(5 + 4 / 12, "feet"),
  10932. weight: math.unit(70, "lb"),
  10933. name: "Flying",
  10934. image: {
  10935. source: "./media/characters/quincy/flying.svg",
  10936. extra: 1044 / 930
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Micro",
  10943. height: math.unit(3, "cm")
  10944. },
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(5 + 9 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Macro",
  10951. height: math.unit(200, "meters"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(1000, "meters")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(4 + 7 / 12, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/vanrel/front.svg",
  10969. extra: 1,
  10970. bottom: 0.02
  10971. }
  10972. },
  10973. elemental: {
  10974. height: math.unit(3, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Elemental",
  10977. image: {
  10978. source: "./media/characters/vanrel/elemental.svg",
  10979. extra: 192.3 / 162.8,
  10980. bottom: 1.79 / 194.17
  10981. }
  10982. },
  10983. side: {
  10984. height: math.unit(4 + 7 / 12, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Side",
  10987. image: {
  10988. source: "./media/characters/vanrel/side.svg",
  10989. extra: 1,
  10990. bottom: 0.025
  10991. }
  10992. },
  10993. tome: {
  10994. height: math.unit(1.35, "feet"),
  10995. weight: math.unit(10, "lb"),
  10996. name: "Vanrel's Tome",
  10997. rename: true,
  10998. image: {
  10999. source: "./media/characters/vanrel/tome.svg"
  11000. }
  11001. },
  11002. beans: {
  11003. height: math.unit(0.89, "feet"),
  11004. name: "Beans",
  11005. image: {
  11006. source: "./media/characters/vanrel/beans.svg"
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(4 + 7 / 12, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(7 + 5 / 12, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/kuiper-vanrel/front.svg",
  11027. extra: 1118 / 1068,
  11028. bottom: 0.09
  11029. }
  11030. },
  11031. foot: {
  11032. height: math.unit(0.55, "meters"),
  11033. name: "Foot",
  11034. image: {
  11035. source: "./media/characters/kuiper-vanrel/foot.svg",
  11036. }
  11037. },
  11038. battle: {
  11039. height: math.unit(6.824, "feet"),
  11040. weight: math.unit(150, "lb"),
  11041. name: "Battle",
  11042. image: {
  11043. source: "./media/characters/kuiper-vanrel/battle.svg",
  11044. extra: 1466 / 1327,
  11045. bottom: 29 / 1492.5
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Normal",
  11052. height: math.unit(7 + 5 / 12, "feet"),
  11053. default: true
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(8 + 5 / 12, "feet"),
  11062. weight: math.unit(150, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/keset-vanrel/front.svg",
  11066. extra: 1150 / 1084,
  11067. bottom: 0.05
  11068. }
  11069. },
  11070. hand: {
  11071. height: math.unit(0.6, "meters"),
  11072. name: "Hand",
  11073. image: {
  11074. source: "./media/characters/keset-vanrel/hand.svg"
  11075. }
  11076. },
  11077. foot: {
  11078. height: math.unit(0.94978, "meters"),
  11079. name: "Foot",
  11080. image: {
  11081. source: "./media/characters/keset-vanrel/foot.svg"
  11082. }
  11083. },
  11084. battle: {
  11085. height: math.unit(7.408, "feet"),
  11086. weight: math.unit(150, "lb"),
  11087. name: "Battle",
  11088. image: {
  11089. source: "./media/characters/keset-vanrel/battle.svg",
  11090. extra: 1890 / 1386,
  11091. bottom: 73.28 / 1970
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(8 + 5 / 12, "feet"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(150, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/neos/front.svg",
  11112. extra: 1696 / 992,
  11113. bottom: 0.14
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(54, "cm"),
  11121. default: true
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(100, "m")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(10, "km")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(100, "km")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(100, "Mm")
  11138. },
  11139. {
  11140. name: "Teramacro",
  11141. height: math.unit(100, "Gm")
  11142. },
  11143. {
  11144. name: "Examacro",
  11145. height: math.unit(100, "Em")
  11146. },
  11147. {
  11148. name: "Godly",
  11149. height: math.unit(10000, "Ym")
  11150. },
  11151. {
  11152. name: "Beyond Godly",
  11153. height: math.unit(25, "multiverses")
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11159. {
  11160. feminine: {
  11161. height: math.unit(5, "feet"),
  11162. weight: math.unit(100, "lb"),
  11163. name: "Feminine",
  11164. image: {
  11165. source: "./media/characters/sammy-mouse/feminine.svg",
  11166. extra: 2526 / 2425,
  11167. bottom: 0.123
  11168. }
  11169. },
  11170. masculine: {
  11171. height: math.unit(5, "feet"),
  11172. weight: math.unit(100, "lb"),
  11173. name: "Masculine",
  11174. image: {
  11175. source: "./media/characters/sammy-mouse/masculine.svg",
  11176. extra: 2526 / 2425,
  11177. bottom: 0.123
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(5, "inches")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(5, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(60, "feet")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(4, "feet"),
  11202. weight: math.unit(50, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/kole/front.svg",
  11206. extra: 1423 / 1303,
  11207. bottom: 0.025
  11208. }
  11209. },
  11210. back: {
  11211. height: math.unit(4, "feet"),
  11212. weight: math.unit(50, "lb"),
  11213. name: "Back",
  11214. image: {
  11215. source: "./media/characters/kole/back.svg",
  11216. extra: 1426 / 1280,
  11217. bottom: 0.02
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(4, "feet"),
  11225. default: true
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11231. {
  11232. front: {
  11233. height: math.unit(2 + 6 / 12, "feet"),
  11234. weight: math.unit(20, "lb"),
  11235. name: "Front",
  11236. image: {
  11237. source: "./media/characters/rufran/front.svg",
  11238. extra: 2041 / 1839,
  11239. bottom: 0.055
  11240. }
  11241. },
  11242. back: {
  11243. height: math.unit(2 + 6 / 12, "feet"),
  11244. weight: math.unit(20, "lb"),
  11245. name: "Back",
  11246. image: {
  11247. source: "./media/characters/rufran/back.svg",
  11248. extra: 2054 / 1839,
  11249. bottom: 0.01
  11250. }
  11251. },
  11252. hand: {
  11253. height: math.unit(0.2166, "meters"),
  11254. name: "Hand",
  11255. image: {
  11256. source: "./media/characters/rufran/hand.svg"
  11257. }
  11258. },
  11259. foot: {
  11260. height: math.unit(0.185, "meters"),
  11261. name: "Foot",
  11262. image: {
  11263. source: "./media/characters/rufran/foot.svg"
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Micro",
  11270. height: math.unit(1, "inch")
  11271. },
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(2 + 6 / 12, "feet"),
  11275. default: true
  11276. },
  11277. {
  11278. name: "Big",
  11279. height: math.unit(60, "feet")
  11280. },
  11281. {
  11282. name: "Macro",
  11283. height: math.unit(325, "feet")
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11289. {
  11290. front: {
  11291. height: math.unit(0.3, "meters"),
  11292. weight: math.unit(3.5, "kg"),
  11293. name: "Front",
  11294. image: {
  11295. source: "./media/characters/chip/front.svg",
  11296. extra: 748 / 674
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(1, "inch"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11310. {
  11311. side: {
  11312. height: math.unit(2.3, "meters"),
  11313. weight: math.unit(3500, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/torvid/side.svg",
  11317. extra: 1972 / 722,
  11318. bottom: 0.035
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(2.3, "meters"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(2, "meters"),
  11335. weight: math.unit(150.5, "kg"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/susan/front.svg",
  11339. extra: 693 / 635,
  11340. bottom: 0.05
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Megamacro",
  11347. height: math.unit(505, "miles"),
  11348. default: true
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/raindrops/front.svg",
  11361. extra: 2655 / 2461,
  11362. bottom: 0.02
  11363. }
  11364. },
  11365. back: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/raindrops/back.svg",
  11371. extra: 2574 / 2400,
  11372. bottom: 0.03
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Micro",
  11379. height: math.unit(6, "inches")
  11380. },
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(6 + 2 / 12, "feet")
  11384. },
  11385. {
  11386. name: "Macro",
  11387. height: math.unit(131, "feet"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(15, "miles")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(4000, "miles")
  11397. },
  11398. {
  11399. name: "Teramacro",
  11400. height: math.unit(315000, "miles")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(2.794, "meters"),
  11409. weight: math.unit(325, "kg"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/tezwa/front.svg",
  11413. extra: 2083 / 1906,
  11414. bottom: 0.031
  11415. }
  11416. },
  11417. foot: {
  11418. height: math.unit(0.687, "meters"),
  11419. name: "Foot",
  11420. image: {
  11421. source: "./media/characters/tezwa/foot.svg"
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(9 + 2 / 12, "feet"),
  11429. default: true
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(58, "feet"),
  11438. weight: math.unit(89000, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/typhus/front.svg",
  11442. extra: 816 / 800,
  11443. bottom: 0.065
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(58, "feet"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(12, "feet"),
  11460. weight: math.unit(6, "tonnes"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/lyra-von-wulf/front.svg",
  11464. extra: 1,
  11465. bottom: 0.10
  11466. }
  11467. },
  11468. frontMecha: {
  11469. height: math.unit(12, "feet"),
  11470. weight: math.unit(12, "tonnes"),
  11471. name: "Front (Mecha)",
  11472. image: {
  11473. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11474. extra: 1,
  11475. bottom: 0.042
  11476. }
  11477. },
  11478. maw: {
  11479. height: math.unit(2.2, "feet"),
  11480. name: "Maw",
  11481. image: {
  11482. source: "./media/characters/lyra-von-wulf/maw.svg"
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(12, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Classic",
  11494. height: math.unit(50, "feet")
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(500, "feet")
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(1, "mile")
  11503. },
  11504. {
  11505. name: "Gigamacro",
  11506. height: math.unit(400, "miles")
  11507. },
  11508. {
  11509. name: "Teramacro",
  11510. height: math.unit(22000, "miles")
  11511. },
  11512. {
  11513. name: "Solarmacro",
  11514. height: math.unit(8600000, "miles")
  11515. },
  11516. {
  11517. name: "Galactic",
  11518. height: math.unit(1057000, "lightyears")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(6 + 10 / 12, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/dixon/front.svg",
  11531. extra: 3361 / 3209,
  11532. bottom: 0.01
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(6 + 10 / 12, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Big",
  11544. height: math.unit(12, "meters")
  11545. },
  11546. {
  11547. name: "Macro",
  11548. height: math.unit(500, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2, "km")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(185, "cm"),
  11561. weight: math.unit(68, "kg"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/kauko/front.svg",
  11565. extra: 1455 / 1421,
  11566. bottom: 0.03
  11567. }
  11568. },
  11569. back: {
  11570. height: math.unit(185, "cm"),
  11571. weight: math.unit(68, "kg"),
  11572. name: "Back",
  11573. image: {
  11574. source: "./media/characters/kauko/back.svg",
  11575. extra: 1455 / 1421,
  11576. bottom: 0.004
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(185, "cm"),
  11584. default: true
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(150, "kg"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/varg/front.svg",
  11597. extra: 1108 / 1018,
  11598. bottom: 0.0375
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(5, "meters")
  11606. },
  11607. {
  11608. name: "Macro",
  11609. height: math.unit(200, "meters")
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(20, "kilometers")
  11614. },
  11615. {
  11616. name: "True Size",
  11617. height: math.unit(211, "km"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Gigamacro",
  11622. height: math.unit(1000, "km")
  11623. },
  11624. {
  11625. name: "Gigamacro+",
  11626. height: math.unit(8000, "km")
  11627. },
  11628. {
  11629. name: "Teramacro",
  11630. height: math.unit(1000000, "km")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(7 + 7 / 12, "feet"),
  11639. weight: math.unit(267, "lb"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/dayza/front.svg",
  11643. extra: 1262 / 1200,
  11644. bottom: 0.035
  11645. }
  11646. },
  11647. side: {
  11648. height: math.unit(7 + 7 / 12, "feet"),
  11649. weight: math.unit(267, "lb"),
  11650. name: "Side",
  11651. image: {
  11652. source: "./media/characters/dayza/side.svg",
  11653. extra: 1295 / 1245,
  11654. bottom: 0.05
  11655. }
  11656. },
  11657. back: {
  11658. height: math.unit(7 + 7 / 12, "feet"),
  11659. weight: math.unit(267, "lb"),
  11660. name: "Back",
  11661. image: {
  11662. source: "./media/characters/dayza/back.svg",
  11663. extra: 1241 / 1170
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(7 + 7 / 12, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(155, "feet")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(6 + 5 / 12, "feet"),
  11684. weight: math.unit(160, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/xanthos/front.svg",
  11688. extra: 1,
  11689. bottom: 0.04
  11690. }
  11691. },
  11692. back: {
  11693. height: math.unit(6 + 5 / 12, "feet"),
  11694. weight: math.unit(160, "lb"),
  11695. name: "Back",
  11696. image: {
  11697. source: "./media/characters/xanthos/back.svg",
  11698. extra: 1,
  11699. bottom: 0.03
  11700. }
  11701. },
  11702. hand: {
  11703. height: math.unit(0.928, "feet"),
  11704. name: "Hand",
  11705. image: {
  11706. source: "./media/characters/xanthos/hand.svg"
  11707. }
  11708. },
  11709. foot: {
  11710. height: math.unit(1.286, "feet"),
  11711. name: "Foot",
  11712. image: {
  11713. source: "./media/characters/xanthos/foot.svg"
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(6 + 5 / 12, "feet"),
  11721. default: true
  11722. },
  11723. {
  11724. name: "Normal+",
  11725. height: math.unit(6, "meters")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(40, "feet")
  11730. },
  11731. {
  11732. name: "Macro+",
  11733. height: math.unit(200, "meters")
  11734. },
  11735. {
  11736. name: "Megamacro",
  11737. height: math.unit(20, "km")
  11738. },
  11739. {
  11740. name: "Megamacro+",
  11741. height: math.unit(100, "km")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(6 + 3 / 12, "feet"),
  11750. weight: math.unit(215, "lb"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/grynn/front.svg",
  11754. extra: 4627 / 4209,
  11755. bottom: 0.047
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(6, "inches")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(6 + 3 / 12, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Big",
  11771. height: math.unit(104, "feet")
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(944, "feet")
  11776. },
  11777. {
  11778. name: "Macro+",
  11779. height: math.unit(9480, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(78752, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro+",
  11787. height: math.unit(630128, "feet")
  11788. },
  11789. {
  11790. name: "Megamacro++",
  11791. height: math.unit(3150695, "feet")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(7 + 5 / 12, "feet"),
  11800. weight: math.unit(450, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/mocha-aura/front.svg",
  11804. extra: 1907 / 1817,
  11805. bottom: 0.04
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(7 + 5 / 12, "feet"),
  11810. weight: math.unit(450, "lb"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/mocha-aura/back.svg",
  11814. extra: 1900 / 1825,
  11815. bottom: 0.045
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Nano",
  11822. height: math.unit(1, "nm")
  11823. },
  11824. {
  11825. name: "Megamicro",
  11826. height: math.unit(1, "mm")
  11827. },
  11828. {
  11829. name: "Micro",
  11830. height: math.unit(3, "inches")
  11831. },
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(7 + 5 / 12, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(30, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(3500, "feet")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(500000, "miles")
  11848. },
  11849. {
  11850. name: "Petamacro",
  11851. height: math.unit(50000000000000000, "parsecs")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/ilisha-devya/front.svg",
  11864. extra: 1,
  11865. bottom: 0.175
  11866. }
  11867. },
  11868. back: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Back",
  11872. image: {
  11873. source: "./media/characters/ilisha-devya/back.svg",
  11874. extra: 1,
  11875. bottom: 0.015
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Macro",
  11882. height: math.unit(500, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(10, "miles")
  11888. },
  11889. {
  11890. name: "Gigamacro",
  11891. height: math.unit(100000, "miles")
  11892. },
  11893. {
  11894. name: "Examacro",
  11895. height: math.unit(1e9, "lightyears")
  11896. },
  11897. {
  11898. name: "Omniversal",
  11899. height: math.unit(1e33, "lightyears")
  11900. },
  11901. {
  11902. name: "Beyond Infinite",
  11903. height: math.unit(1e100, "lightyears")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11909. {
  11910. Side: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/mira/side.svg",
  11916. extra: 900 / 799,
  11917. bottom: 0.02
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Human Size",
  11924. height: math.unit(6, "feet")
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(100, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(10, "miles")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(25000, "miles")
  11938. },
  11939. {
  11940. name: "Teramacro",
  11941. height: math.unit(300, "AU")
  11942. },
  11943. {
  11944. name: "Full Size",
  11945. height: math.unit(4.5e10, "lightyears")
  11946. },
  11947. ]
  11948. ))
  11949. characterMakers.push(() => makeCharacter(
  11950. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11951. {
  11952. front: {
  11953. height: math.unit(6, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Front",
  11956. image: {
  11957. source: "./media/characters/holly/front.svg",
  11958. extra: 639 / 606
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(150, "lb"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/holly/back.svg",
  11967. extra: 623 / 598
  11968. }
  11969. },
  11970. frontWorking: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front (Working)",
  11974. image: {
  11975. source: "./media/characters/holly/front-working.svg",
  11976. extra: 607 / 577,
  11977. bottom: 0.048
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(12 + 3 / 12, "feet"),
  11985. default: true
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/porter/front.svg",
  11998. extra: 1,
  11999. bottom: 0.01
  12000. }
  12001. },
  12002. frontRobes: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Front (Robes)",
  12006. image: {
  12007. source: "./media/characters/porter/front-robes.svg",
  12008. extra: 1.01,
  12009. bottom: 0.01
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Normal",
  12016. height: math.unit(11 + 9 / 12, "feet"),
  12017. default: true
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12023. {
  12024. legendary: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Legendary",
  12028. image: {
  12029. source: "./media/characters/lucy/legendary.svg",
  12030. extra: 1355 / 1100,
  12031. bottom: 0.045
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Legendary",
  12038. height: math.unit(86882 * 2, "miles"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/drusilla/front.svg",
  12052. extra: 678 / 635,
  12053. bottom: 0.03
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(6, "feet"),
  12058. weight: math.unit(150, "lb"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/drusilla/back.svg",
  12062. extra: 678 / 635,
  12063. bottom: 0.005
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(100, "feet")
  12071. },
  12072. {
  12073. name: "Canon Height",
  12074. height: math.unit(2000, "feet"),
  12075. default: true
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(180, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/renard-thatch/front.svg",
  12088. extra: 2411 / 2275,
  12089. bottom: 0.01
  12090. }
  12091. },
  12092. frontPosing: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(180, "lb"),
  12095. name: "Front (Posing)",
  12096. image: {
  12097. source: "./media/characters/renard-thatch/front-posing.svg",
  12098. extra: 2381 / 2261,
  12099. bottom: 0.01
  12100. }
  12101. },
  12102. back: {
  12103. height: math.unit(6, "feet"),
  12104. weight: math.unit(180, "lb"),
  12105. name: "Back",
  12106. image: {
  12107. source: "./media/characters/renard-thatch/back.svg",
  12108. extra: 2428 / 2288
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Micro",
  12115. height: math.unit(3, "inches")
  12116. },
  12117. {
  12118. name: "Default",
  12119. height: math.unit(6, "feet"),
  12120. default: true
  12121. },
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(75, "feet")
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12130. {
  12131. front: {
  12132. height: math.unit(1450, "feet"),
  12133. weight: math.unit(1.21e6, "tons"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/sekvra/front.svg",
  12137. extra: 1,
  12138. bottom: 0.03
  12139. }
  12140. },
  12141. frontClothed: {
  12142. height: math.unit(1450, "feet"),
  12143. weight: math.unit(1.21e6, "tons"),
  12144. name: "Front (Clothed)",
  12145. image: {
  12146. source: "./media/characters/sekvra/front-clothed.svg",
  12147. extra: 1,
  12148. bottom: 0.03
  12149. }
  12150. },
  12151. side: {
  12152. height: math.unit(1450, "feet"),
  12153. weight: math.unit(1.21e6, "tons"),
  12154. name: "Side",
  12155. image: {
  12156. source: "./media/characters/sekvra/side.svg",
  12157. extra: 1,
  12158. bottom: 0.025
  12159. }
  12160. },
  12161. back: {
  12162. height: math.unit(1450, "feet"),
  12163. weight: math.unit(1.21e6, "tons"),
  12164. name: "Back",
  12165. image: {
  12166. source: "./media/characters/sekvra/back.svg",
  12167. extra: 1,
  12168. bottom: 0.005
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(1450, "feet"),
  12176. default: true
  12177. },
  12178. {
  12179. name: "Megamacro",
  12180. height: math.unit(15000, "feet")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(150, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/carmine/front.svg",
  12193. extra: 1,
  12194. bottom: 0.035
  12195. }
  12196. },
  12197. frontArmor: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Front (Armor)",
  12201. image: {
  12202. source: "./media/characters/carmine/front-armor.svg",
  12203. extra: 1,
  12204. bottom: 0.035
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Large",
  12211. height: math.unit(1, "mile")
  12212. },
  12213. {
  12214. name: "Huge",
  12215. height: math.unit(40, "miles"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Colossal",
  12220. height: math.unit(2500, "miles")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/elyssia/front.svg",
  12233. extra: 2201 / 2035,
  12234. bottom: 0.05
  12235. }
  12236. },
  12237. frontClothed: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front (Clothed)",
  12241. image: {
  12242. source: "./media/characters/elyssia/front-clothed.svg",
  12243. extra: 2201 / 2035,
  12244. bottom: 0.05
  12245. }
  12246. },
  12247. back: {
  12248. height: math.unit(6, "feet"),
  12249. weight: math.unit(150, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/elyssia/back.svg",
  12253. extra: 2201 / 2035,
  12254. bottom: 0.013
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Smaller",
  12261. height: math.unit(150, "feet")
  12262. },
  12263. {
  12264. name: "Standard",
  12265. height: math.unit(1400, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Distracted",
  12270. height: math.unit(15000, "feet")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(7 + 4 / 12, "feet"),
  12279. weight: math.unit(500, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/geno-maxwell/front.svg",
  12283. extra: 2207 / 2040,
  12284. bottom: 0.015
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(3, "inches")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(7 + 4 / 12, "feet"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(220, "feet")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(11, "miles")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(7 + 4 / 12, "feet"),
  12313. weight: math.unit(500, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/regena-maxwell/front.svg",
  12317. extra: 3115 / 2770,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Normal",
  12325. height: math.unit(7 + 4 / 12, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(220, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro",
  12334. height: math.unit(11, "miles")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(6, "feet"),
  12343. weight: math.unit(150, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12347. extra: 860 / 690,
  12348. bottom: 0.03
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(1.7, "meters"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/quilly/front.svg",
  12369. extra: 890 / 776
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Gigamacro",
  12376. height: math.unit(404090, "miles"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(7 + 8 / 12, "feet"),
  12386. weight: math.unit(350, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/tempest/front.svg",
  12390. extra: 1175 / 1086,
  12391. bottom: 0.02
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(7 + 8 / 12, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12405. {
  12406. side: {
  12407. height: math.unit(4 + 5 / 12, "feet"),
  12408. weight: math.unit(80, "lb"),
  12409. name: "Side",
  12410. image: {
  12411. source: "./media/characters/rodger/side.svg",
  12412. extra: 1235 / 1118
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(1, "inch")
  12420. },
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(4 + 5 / 12, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(120, "feet")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/danyel/front.svg",
  12441. extra: 1185 / 1123,
  12442. bottom: 0.05
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Shrunken",
  12449. height: math.unit(0.5, "mm")
  12450. },
  12451. {
  12452. name: "Micro",
  12453. height: math.unit(1, "mm"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Upsized",
  12458. height: math.unit(5 + 5 / 12, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(5 + 6 / 12, "feet"),
  12467. weight: math.unit(200, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/vivian-bijoux/front.svg",
  12471. extra: 1,
  12472. bottom: 0.072
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5 + 6 / 12, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Bad Dream",
  12484. height: math.unit(500, "feet")
  12485. },
  12486. {
  12487. name: "Nightmare",
  12488. height: math.unit(500, "miles")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6 + 1 / 12, "feet"),
  12497. weight: math.unit(260, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/zeta/front.svg",
  12501. extra: 1968 / 1889,
  12502. bottom: 0.06
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(6 + 1 / 12, "feet"),
  12507. weight: math.unit(260, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/zeta/back.svg",
  12511. extra: 1944 / 1858,
  12512. bottom: 0.03
  12513. }
  12514. },
  12515. hand: {
  12516. height: math.unit(1.112, "feet"),
  12517. name: "Hand",
  12518. image: {
  12519. source: "./media/characters/zeta/hand.svg"
  12520. }
  12521. },
  12522. foot: {
  12523. height: math.unit(1.48, "feet"),
  12524. name: "Foot",
  12525. image: {
  12526. source: "./media/characters/zeta/foot.svg"
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(6, "inches")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(6 + 1 / 12, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(20, "feet")
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12548. {
  12549. front: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/jamie-larsen/front.svg",
  12555. extra: 962 / 933,
  12556. bottom: 0.02
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/jamie-larsen/back.svg",
  12565. extra: 997 / 946
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(28 + 7 / 12, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro+",
  12577. height: math.unit(180, "feet")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(10, "miles")
  12582. },
  12583. {
  12584. name: "Gigamacro",
  12585. height: math.unit(200000, "miles")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(120, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/vance/front.svg",
  12598. extra: 1980 / 1890,
  12599. bottom: 0.09
  12600. }
  12601. },
  12602. back: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(120, "lb"),
  12605. name: "Back",
  12606. image: {
  12607. source: "./media/characters/vance/back.svg",
  12608. extra: 2081 / 1994,
  12609. bottom: 0.014
  12610. }
  12611. },
  12612. hand: {
  12613. height: math.unit(0.88, "feet"),
  12614. name: "Hand",
  12615. image: {
  12616. source: "./media/characters/vance/hand.svg"
  12617. }
  12618. },
  12619. foot: {
  12620. height: math.unit(0.64, "feet"),
  12621. name: "Foot",
  12622. image: {
  12623. source: "./media/characters/vance/foot.svg"
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Small",
  12630. height: math.unit(90, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(100, "meters")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(15, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(180, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/xochitl/front.svg",
  12652. extra: 2297 / 2261,
  12653. bottom: 0.065
  12654. }
  12655. },
  12656. back: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(180, "lb"),
  12659. name: "Back",
  12660. image: {
  12661. source: "./media/characters/xochitl/back.svg",
  12662. extra: 2386 / 2354,
  12663. bottom: 0.01
  12664. }
  12665. },
  12666. foot: {
  12667. height: math.unit(6 / 5 * 1.15, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Foot",
  12670. image: {
  12671. source: "./media/characters/xochitl/foot.svg"
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(80, "feet")
  12679. },
  12680. {
  12681. name: "Macro+",
  12682. height: math.unit(400, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Gigamacro",
  12687. height: math.unit(80000, "miles")
  12688. },
  12689. {
  12690. name: "Gigamacro+",
  12691. height: math.unit(400000, "miles")
  12692. },
  12693. {
  12694. name: "Teramacro",
  12695. height: math.unit(300, "AU")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/vincent/front.svg",
  12708. extra: 1130 / 1080,
  12709. bottom: 0.055
  12710. }
  12711. },
  12712. beak: {
  12713. height: math.unit(6 * 0.1, "feet"),
  12714. name: "Beak",
  12715. image: {
  12716. source: "./media/characters/vincent/beak.svg"
  12717. }
  12718. },
  12719. hand: {
  12720. height: math.unit(6 * 0.85, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Hand",
  12723. image: {
  12724. source: "./media/characters/vincent/hand.svg"
  12725. }
  12726. },
  12727. foot: {
  12728. height: math.unit(6 * 0.19, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Foot",
  12731. image: {
  12732. source: "./media/characters/vincent/foot.svg"
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Base",
  12739. height: math.unit(6 + 5 / 12, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Macro",
  12744. height: math.unit(300, "feet")
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(2, "miles")
  12749. },
  12750. {
  12751. name: "Gigamacro",
  12752. height: math.unit(1000, "miles")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6 + 2 / 12, "feet"),
  12761. weight: math.unit(265, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/jay/front.svg",
  12765. extra: 1510 / 1430,
  12766. bottom: 0.042
  12767. }
  12768. },
  12769. back: {
  12770. height: math.unit(6 + 2 / 12, "feet"),
  12771. weight: math.unit(265, "lb"),
  12772. name: "Back",
  12773. image: {
  12774. source: "./media/characters/jay/back.svg",
  12775. extra: 1510 / 1430,
  12776. bottom: 0.025
  12777. }
  12778. },
  12779. clothed: {
  12780. height: math.unit(6 + 2 / 12, "feet"),
  12781. weight: math.unit(265, "lb"),
  12782. name: "Front (Clothed)",
  12783. image: {
  12784. source: "./media/characters/jay/clothed.svg",
  12785. extra: 744 / 699,
  12786. bottom: 0.043
  12787. }
  12788. },
  12789. head: {
  12790. height: math.unit(1.772, "feet"),
  12791. name: "Head",
  12792. image: {
  12793. source: "./media/characters/jay/head.svg"
  12794. }
  12795. },
  12796. sizeRay: {
  12797. height: math.unit(1.331, "feet"),
  12798. name: "Size Ray",
  12799. image: {
  12800. source: "./media/characters/jay/size-ray.svg"
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(1, "inch")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(6 + 2 / 12, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(1, "mile")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(100, "miles")
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(2, "meters"),
  12829. weight: math.unit(500, "kg"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/coatl/front.svg",
  12833. extra: 3948 / 3500,
  12834. bottom: 0.082
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(4, "meters")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(100, "meters"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Macro+",
  12850. height: math.unit(300, "meters")
  12851. },
  12852. {
  12853. name: "Megamacro",
  12854. height: math.unit(3, "gigameters")
  12855. },
  12856. {
  12857. name: "Megamacro+",
  12858. height: math.unit(300, "terameters")
  12859. },
  12860. {
  12861. name: "Megamacro++",
  12862. height: math.unit(3, "lightyears")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(50, "kg"),
  12872. name: "front",
  12873. image: {
  12874. source: "./media/characters/shiroryu/front.svg",
  12875. extra: 1990 / 1935
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Mortal Mingling",
  12882. height: math.unit(3, "meters")
  12883. },
  12884. {
  12885. name: "Kaiju-ish",
  12886. height: math.unit(250, "meters")
  12887. },
  12888. {
  12889. name: "Somewhat Godly",
  12890. height: math.unit(400, "km"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Planetary",
  12895. height: math.unit(300, "megameters")
  12896. },
  12897. {
  12898. name: "Galaxy-dwarfing",
  12899. height: math.unit(450, "kiloparsecs")
  12900. },
  12901. {
  12902. name: "Universe Eater",
  12903. height: math.unit(150, "gigaparsecs")
  12904. },
  12905. {
  12906. name: "Almost Immeasurable",
  12907. height: math.unit(1.3e266, "yottaparsecs")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(6, "feet"),
  12916. weight: math.unit(150, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/umeko/front.svg",
  12920. extra: 1,
  12921. bottom: 0.019
  12922. }
  12923. },
  12924. frontArmored: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Front (Armored)",
  12928. image: {
  12929. source: "./media/characters/umeko/front-armored.svg",
  12930. extra: 1,
  12931. bottom: 0.021
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(220, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Guardian Dragon",
  12943. height: math.unit(50, "miles")
  12944. },
  12945. {
  12946. name: "Cosmic",
  12947. height: math.unit(800000, "miles")
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(6, "feet"),
  12956. weight: math.unit(150, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/cassidy/front.svg",
  12960. extra: 1,
  12961. bottom: 0.043
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Canon Height",
  12968. height: math.unit(120, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Macro+",
  12973. height: math.unit(400, "feet")
  12974. },
  12975. {
  12976. name: "Macro++",
  12977. height: math.unit(4000, "feet")
  12978. },
  12979. {
  12980. name: "Megamacro",
  12981. height: math.unit(3, "miles")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/isaac/front.svg",
  12994. extra: 896 / 815,
  12995. bottom: 0.11
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Human Size",
  13002. height: math.unit(8, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(400, "feet")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(50, "miles")
  13012. },
  13013. {
  13014. name: "Canon Height",
  13015. height: math.unit(200, "AU")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(72, "kg"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/sleekit/front.svg",
  13028. extra: 4693 / 4487,
  13029. bottom: 0.012
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Minimum Height",
  13036. height: math.unit(10, "meters")
  13037. },
  13038. {
  13039. name: "Smaller",
  13040. height: math.unit(25, "meters")
  13041. },
  13042. {
  13043. name: "Larger",
  13044. height: math.unit(38, "meters"),
  13045. default: true
  13046. },
  13047. {
  13048. name: "Maximum height",
  13049. height: math.unit(100, "meters")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(150, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/nillia/front.svg",
  13062. extra: 2195 / 2037,
  13063. bottom: 0.005
  13064. }
  13065. },
  13066. back: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Back",
  13070. image: {
  13071. source: "./media/characters/nillia/back.svg",
  13072. extra: 2195 / 2037,
  13073. bottom: 0.005
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Canon Height",
  13080. height: math.unit(489, "feet"),
  13081. default: true
  13082. }
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/mesmyriza/front.svg",
  13094. extra: 2067 / 1784,
  13095. bottom: 0.035
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(6 / (250 / 35), "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/mesmyriza/foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(457, "meters"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(8, "megameters")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(250, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/saudade/front.svg",
  13127. extra: 1172 / 1139,
  13128. bottom: 0.035
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Micro",
  13135. height: math.unit(3, "inches")
  13136. },
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(6, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(50, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(2800, "feet")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(5 + 4 / 12, "feet"),
  13157. weight: math.unit(100, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/keireer/front.svg",
  13161. extra: 716 / 666,
  13162. bottom: 0.05
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(5 + 4 / 12, "feet"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(6, "feet"),
  13179. weight: math.unit(90, "kg"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/mirja/front.svg",
  13183. extra: 1789 / 1683,
  13184. bottom: 0.05
  13185. }
  13186. },
  13187. frontDressed: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(90, "lb"),
  13190. name: "Front (Dressed)",
  13191. image: {
  13192. source: "./media/characters/mirja/front-dressed.svg",
  13193. extra: 1789 / 1683,
  13194. bottom: 0.05
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(90, "lb"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/mirja/back.svg",
  13203. extra: 953 / 917,
  13204. bottom: 0.017
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "\"Incognito\"",
  13211. height: math.unit(3, "meters")
  13212. },
  13213. {
  13214. name: "Strolling Size",
  13215. height: math.unit(15, "km")
  13216. },
  13217. {
  13218. name: "Larger Strolling Size",
  13219. height: math.unit(400, "km")
  13220. },
  13221. {
  13222. name: "Preferred Size",
  13223. height: math.unit(5000, "km")
  13224. },
  13225. {
  13226. name: "True Size",
  13227. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(15, "feet"),
  13237. weight: math.unit(880, "kg"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/nightraver/front.svg",
  13241. extra: 2444 / 2160,
  13242. bottom: 0.027
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(15, "feet"),
  13247. weight: math.unit(880, "kg"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/nightraver/back.svg",
  13251. extra: 2309 / 2180,
  13252. bottom: 0.005
  13253. }
  13254. },
  13255. sole: {
  13256. height: math.unit(2.878, "feet"),
  13257. name: "Sole",
  13258. image: {
  13259. source: "./media/characters/nightraver/sole.svg"
  13260. }
  13261. },
  13262. foot: {
  13263. height: math.unit(2.285, "feet"),
  13264. name: "Foot",
  13265. image: {
  13266. source: "./media/characters/nightraver/foot.svg"
  13267. }
  13268. },
  13269. maw: {
  13270. height: math.unit(2.67, "feet"),
  13271. name: "Maw",
  13272. image: {
  13273. source: "./media/characters/nightraver/maw.svg"
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Micro",
  13280. height: math.unit(1, "cm")
  13281. },
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(15, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(300, "feet")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(300, "miles")
  13294. },
  13295. {
  13296. name: "Gigamacro",
  13297. height: math.unit(10000, "miles")
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13303. {
  13304. side: {
  13305. height: math.unit(2, "inches"),
  13306. weight: math.unit(5, "grams"),
  13307. name: "Side",
  13308. image: {
  13309. source: "./media/characters/arc/side.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(2, "inches"),
  13317. default: true
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(1.1938, "meters"),
  13326. weight: math.unit(54, "kg"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/nebula-shahar/front.svg",
  13330. extra: 1642 / 1436,
  13331. bottom: 0.06
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Megamicro",
  13338. height: math.unit(0.3, "mm")
  13339. },
  13340. {
  13341. name: "Micro",
  13342. height: math.unit(3, "cm")
  13343. },
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(138, "cm"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(30, "m")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(5.24, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/shayla/front.svg",
  13364. extra: 1512 / 1414,
  13365. bottom: 0.01
  13366. }
  13367. },
  13368. back: {
  13369. height: math.unit(5.24, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Back",
  13372. image: {
  13373. source: "./media/characters/shayla/back.svg",
  13374. extra: 1512 / 1414
  13375. }
  13376. },
  13377. hand: {
  13378. height: math.unit(0.7781496062992126, "feet"),
  13379. name: "Hand",
  13380. image: {
  13381. source: "./media/characters/shayla/hand.svg"
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(1.4206036745406823, "feet"),
  13386. name: "Foot",
  13387. image: {
  13388. source: "./media/characters/shayla/foot.svg"
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(0.32, "feet")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(5.24, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(492.12, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(186.41, "miles")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(2.2, "m"),
  13417. weight: math.unit(120, "kg"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/pia-jr/front.svg",
  13421. extra: 1000 / 970,
  13422. bottom: 0.035
  13423. }
  13424. },
  13425. hand: {
  13426. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13427. name: "Hand",
  13428. image: {
  13429. source: "./media/characters/pia-jr/hand.svg"
  13430. }
  13431. },
  13432. paw: {
  13433. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13434. name: "Paw",
  13435. image: {
  13436. source: "./media/characters/pia-jr/paw.svg"
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Micro",
  13443. height: math.unit(1.2, "cm")
  13444. },
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(2.2, "m"),
  13448. default: true
  13449. },
  13450. {
  13451. name: "Macro",
  13452. height: math.unit(180, "m")
  13453. },
  13454. {
  13455. name: "Megamacro",
  13456. height: math.unit(420, "km")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(2, "m"),
  13465. weight: math.unit(115, "kg"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/pia-sr/front.svg",
  13469. extra: 760 / 730,
  13470. bottom: 0.015
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(2, "m"),
  13475. weight: math.unit(115, "kg"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/pia-sr/back.svg",
  13479. extra: 760 / 730,
  13480. bottom: 0.01
  13481. }
  13482. },
  13483. hand: {
  13484. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13485. name: "Hand",
  13486. image: {
  13487. source: "./media/characters/pia-sr/hand.svg"
  13488. }
  13489. },
  13490. foot: {
  13491. height: math.unit(1.83, "feet"),
  13492. name: "Foot",
  13493. image: {
  13494. source: "./media/characters/pia-sr/foot.svg"
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(88, "mm")
  13502. },
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(2, "m"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(200, "m")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(420, "km")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(8 + 2 / 12, "feet"),
  13523. weight: math.unit(300, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/kibibyte/front.svg",
  13527. extra: 2221 / 2098,
  13528. bottom: 0.04
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Normal",
  13535. height: math.unit(8 + 2 / 12, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Socialable Macro",
  13540. height: math.unit(50, "feet")
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(300, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro",
  13548. height: math.unit(500, "miles")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/felix/front.svg",
  13561. extra: 762 / 722,
  13562. bottom: 0.02
  13563. }
  13564. },
  13565. frontClothed: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(150, "lb"),
  13568. name: "Front (Clothed)",
  13569. image: {
  13570. source: "./media/characters/felix/front-clothed.svg",
  13571. extra: 762 / 722,
  13572. bottom: 0.02
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(6 + 8 / 12, "feet"),
  13580. default: true
  13581. },
  13582. {
  13583. name: "Macro",
  13584. height: math.unit(2600, "feet")
  13585. },
  13586. {
  13587. name: "Megamacro",
  13588. height: math.unit(450, "miles")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6 + 1 / 12, "feet"),
  13597. weight: math.unit(250, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/tobo/front.svg",
  13601. extra: 608 / 586,
  13602. bottom: 0.023
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(6 + 1 / 12, "feet"),
  13607. weight: math.unit(250, "lb"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/tobo/back.svg",
  13611. extra: 608 / 586
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Nano",
  13618. height: math.unit(2, "nm")
  13619. },
  13620. {
  13621. name: "Megamicro",
  13622. height: math.unit(0.1, "mm")
  13623. },
  13624. {
  13625. name: "Micro",
  13626. height: math.unit(1, "inch"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Human-sized",
  13631. height: math.unit(6 + 1 / 12, "feet")
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(250, "feet")
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(75, "miles")
  13640. },
  13641. {
  13642. name: "Texas-sized",
  13643. height: math.unit(750, "miles")
  13644. },
  13645. {
  13646. name: "Teramacro",
  13647. height: math.unit(50000, "miles")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(269, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/danny-kapowsky/front.svg",
  13660. extra: 766 / 736,
  13661. bottom: 0.044
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(269, "lb"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/danny-kapowsky/back.svg",
  13670. extra: 797 / 760,
  13671. bottom: 0.025
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(150, "feet"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Macro+",
  13683. height: math.unit(200, "feet")
  13684. },
  13685. {
  13686. name: "Macro++",
  13687. height: math.unit(300, "feet")
  13688. },
  13689. {
  13690. name: "Macro+++",
  13691. height: math.unit(400, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13697. {
  13698. side: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(170, "lb"),
  13701. name: "Side",
  13702. image: {
  13703. source: "./media/characters/finn/side.svg",
  13704. extra: 1953 / 1807,
  13705. bottom: 0.057
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(14445, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(5 + 6 / 12, "feet"),
  13722. weight: math.unit(125, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/roy/front.svg",
  13726. extra: 1,
  13727. bottom: 0.11
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(3, "inches"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(5 + 6 / 12, "feet")
  13740. },
  13741. {
  13742. name: "Lesser Macro",
  13743. height: math.unit(60, "feet")
  13744. },
  13745. {
  13746. name: "Greater Macro",
  13747. height: math.unit(120, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(100, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/aevsivs/front.svg",
  13760. extra: 1,
  13761. bottom: 0.03
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(100, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/aevsivs/back.svg"
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(2, "inches"),
  13777. default: true
  13778. },
  13779. {
  13780. name: "Normal",
  13781. height: math.unit(5, "feet")
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(5 + 7 / 12, "feet"),
  13790. weight: math.unit(159, "lb"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/hildegard/front.svg",
  13794. extra: 312 / 286,
  13795. bottom: 0.005
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(5 + 7 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13809. {
  13810. bernard: {
  13811. height: math.unit(2 + 7 / 12, "feet"),
  13812. weight: math.unit(66, "lb"),
  13813. name: "Bernard",
  13814. rename: true,
  13815. image: {
  13816. source: "./media/characters/bernard-wilder/bernard.svg",
  13817. extra: 192 / 128,
  13818. bottom: 0.05
  13819. }
  13820. },
  13821. wilder: {
  13822. height: math.unit(5 + 8 / 12, "feet"),
  13823. weight: math.unit(143, "lb"),
  13824. name: "Wilder",
  13825. rename: true,
  13826. image: {
  13827. source: "./media/characters/bernard-wilder/wilder.svg",
  13828. extra: 361 / 312,
  13829. bottom: 0.02
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Normal",
  13836. height: math.unit(2 + 7 / 12, "feet"),
  13837. default: true
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13843. {
  13844. anthro: {
  13845. height: math.unit(6 + 1 / 12, "feet"),
  13846. weight: math.unit(155, "lb"),
  13847. name: "Anthro",
  13848. image: {
  13849. source: "./media/characters/hearth/anthro.svg",
  13850. extra: 260 / 250,
  13851. bottom: 0.02
  13852. }
  13853. },
  13854. feral: {
  13855. height: math.unit(3.78, "feet"),
  13856. weight: math.unit(35, "kg"),
  13857. name: "Feral",
  13858. image: {
  13859. source: "./media/characters/hearth/feral.svg",
  13860. extra: 153 / 135,
  13861. bottom: 0.03
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(6 + 1 / 12, "feet"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(6, "feet"),
  13878. weight: math.unit(182, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/ingrid/front.svg",
  13882. extra: 294 / 268,
  13883. bottom: 0.027
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(6, "feet"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13897. {
  13898. eevee: {
  13899. height: math.unit(2 + 10 / 12, "feet"),
  13900. weight: math.unit(86, "lb"),
  13901. name: "Malgam",
  13902. image: {
  13903. source: "./media/characters/malgam/eevee.svg",
  13904. extra: 218 / 180,
  13905. bottom: 0.2
  13906. }
  13907. },
  13908. sylveon: {
  13909. height: math.unit(4, "feet"),
  13910. weight: math.unit(101, "lb"),
  13911. name: "Future Malgam",
  13912. rename: true,
  13913. image: {
  13914. source: "./media/characters/malgam/sylveon.svg",
  13915. extra: 371 / 325,
  13916. bottom: 0.015
  13917. }
  13918. },
  13919. gigantamax: {
  13920. height: math.unit(50, "feet"),
  13921. name: "Gigantamax Malgam",
  13922. rename: true,
  13923. image: {
  13924. source: "./media/characters/malgam/gigantamax.svg"
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(2 + 10 / 12, "feet"),
  13932. default: true
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(5 + 11 / 12, "feet"),
  13941. weight: math.unit(188, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/fleur/front.svg",
  13945. extra: 309 / 283,
  13946. bottom: 0.007
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(5 + 11 / 12, "feet"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5 + 4 / 12, "feet"),
  13963. weight: math.unit(122, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/jude/front.svg",
  13967. extra: 288 / 273,
  13968. bottom: 0.03
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(5 + 4 / 12, "feet"),
  13976. default: true
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 11 / 12, "feet"),
  13985. weight: math.unit(190, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/seara/front.svg",
  13989. extra: 1,
  13990. bottom: 0.05
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(5 + 11 / 12, "feet"),
  13998. default: true
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14004. {
  14005. front: {
  14006. height: math.unit(16 + 5 / 12, "feet"),
  14007. weight: math.unit(524, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/caspian/front.svg",
  14011. extra: 1,
  14012. bottom: 0.04
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(16 + 5 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(5 + 7 / 12, "feet"),
  14029. weight: math.unit(170, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/mika/front.svg",
  14033. extra: 1,
  14034. bottom: 0.016
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Normal",
  14041. height: math.unit(5 + 7 / 12, "feet"),
  14042. default: true
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14048. {
  14049. front: {
  14050. height: math.unit(6 + 2 / 12, "feet"),
  14051. weight: math.unit(268, "lb"),
  14052. name: "Front",
  14053. image: {
  14054. source: "./media/characters/sol/front.svg",
  14055. extra: 247 / 231,
  14056. bottom: 0.05
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(6 + 2 / 12, "feet"),
  14064. default: true
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14070. {
  14071. buizel: {
  14072. height: math.unit(2 + 5 / 12, "feet"),
  14073. weight: math.unit(87, "lb"),
  14074. name: "Buizel",
  14075. image: {
  14076. source: "./media/characters/umiko/buizel.svg",
  14077. extra: 172 / 157,
  14078. bottom: 0.01
  14079. }
  14080. },
  14081. floatzel: {
  14082. height: math.unit(5 + 9 / 12, "feet"),
  14083. weight: math.unit(250, "lb"),
  14084. name: "Floatzel",
  14085. image: {
  14086. source: "./media/characters/umiko/floatzel.svg",
  14087. extra: 262 / 248
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(2 + 5 / 12, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6 + 2 / 12, "feet"),
  14104. weight: math.unit(146, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/iliac/front.svg",
  14108. extra: 389 / 365,
  14109. bottom: 0.035
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(6 + 2 / 12, "feet"),
  14117. default: true
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(170, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/topaz/front.svg",
  14130. extra: 317 / 303,
  14131. bottom: 0.055
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(6, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(5 + 11 / 12, "feet"),
  14148. weight: math.unit(144, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/gabriel/front.svg",
  14152. extra: 285 / 262,
  14153. bottom: 0.004
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(5 + 11 / 12, "feet"),
  14161. default: true
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14167. {
  14168. side: {
  14169. height: math.unit(6 + 5 / 12, "feet"),
  14170. weight: math.unit(300, "lb"),
  14171. name: "Side",
  14172. image: {
  14173. source: "./media/characters/tempest-suicune/side.svg",
  14174. extra: 195 / 154,
  14175. bottom: 0.04
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(6 + 5 / 12, "feet"),
  14183. default: true
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(7 + 2 / 12, "feet"),
  14192. weight: math.unit(322, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/vulcan/front.svg",
  14196. extra: 154 / 147,
  14197. bottom: 0.04
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(7 + 2 / 12, "feet"),
  14205. default: true
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(5 + 10 / 12, "feet"),
  14214. weight: math.unit(264, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/gault/front.svg",
  14218. extra: 161 / 140,
  14219. bottom: 0.028
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(5 + 10 / 12, "feet"),
  14227. default: true
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(6, "feet"),
  14236. weight: math.unit(150, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/shard/front.svg",
  14240. extra: 273 / 238,
  14241. bottom: 0.02
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(3 + 6 / 12, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(5 + 11 / 12, "feet"),
  14258. weight: math.unit(146, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/ashe/front.svg",
  14262. extra: 400 / 373,
  14263. bottom: 0.01
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(5 + 11 / 12, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(5 + 5 / 12, "feet"),
  14280. weight: math.unit(135, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/beatrix/front.svg",
  14284. extra: 392 / 379,
  14285. bottom: 0.01
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(6, "feet"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/ignatius/front.svg",
  14306. extra: 245 / 222,
  14307. bottom: 0.01
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(5 + 5 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6 + 2 / 12, "feet"),
  14324. weight: math.unit(138, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/mei-li/front.svg",
  14328. extra: 237 / 229,
  14329. bottom: 0.03
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(6 + 2 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(2 + 4 / 12, "feet"),
  14346. weight: math.unit(62, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/puru/front.svg",
  14350. extra: 206 / 149,
  14351. bottom: 0.06
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(2 + 4 / 12, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14365. {
  14366. taur: {
  14367. height: math.unit(11, "feet"),
  14368. weight: math.unit(500, "lb"),
  14369. name: "Taur",
  14370. image: {
  14371. source: "./media/characters/kee/taur.svg",
  14372. extra: 1,
  14373. bottom: 0.04
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(11, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14387. {
  14388. anthro: {
  14389. height: math.unit(7, "feet"),
  14390. weight: math.unit(190, "lb"),
  14391. name: "Anthro",
  14392. image: {
  14393. source: "./media/characters/cobalt-dracha/anthro.svg",
  14394. extra: 231 / 225,
  14395. bottom: 0.04
  14396. }
  14397. },
  14398. feral: {
  14399. height: math.unit(9 + 7 / 12, "feet"),
  14400. weight: math.unit(294, "lb"),
  14401. name: "Feral",
  14402. image: {
  14403. source: "./media/characters/cobalt-dracha/feral.svg",
  14404. extra: 692 / 633,
  14405. bottom: 0.05
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(7, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14419. {
  14420. fallen: {
  14421. height: math.unit(11 + 8 / 12, "feet"),
  14422. weight: math.unit(485, "lb"),
  14423. name: "Java (Fallen)",
  14424. rename: true,
  14425. image: {
  14426. source: "./media/characters/java/fallen.svg",
  14427. extra: 226 / 208,
  14428. bottom: 0.005
  14429. }
  14430. },
  14431. godkin: {
  14432. height: math.unit(10 + 6 / 12, "feet"),
  14433. weight: math.unit(328, "lb"),
  14434. name: "Java (Godkin)",
  14435. rename: true,
  14436. image: {
  14437. source: "./media/characters/java/godkin.svg",
  14438. extra: 270 / 262,
  14439. bottom: 0.02
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(11 + 8 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(7 + 8 / 12, "feet"),
  14456. weight: math.unit(320, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/skoll/front.svg",
  14460. extra: 232 / 220,
  14461. bottom: 0.02
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(7 + 8 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(5 + 9 / 12, "feet"),
  14478. weight: math.unit(170, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/purna/front.svg",
  14482. extra: 239 / 229,
  14483. bottom: 0.01
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(5 + 9 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(5 + 9 / 12, "feet"),
  14500. weight: math.unit(142, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/kuva/front.svg",
  14504. extra: 281 / 271,
  14505. bottom: 0.006
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(5 + 9 / 12, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14519. {
  14520. anthro: {
  14521. height: math.unit(9 + 2 / 12, "feet"),
  14522. weight: math.unit(270, "lb"),
  14523. name: "Anthro",
  14524. image: {
  14525. source: "./media/characters/embra/anthro.svg",
  14526. extra: 200 / 187,
  14527. bottom: 0.02
  14528. }
  14529. },
  14530. feral: {
  14531. height: math.unit(18 + 8 / 12, "feet"),
  14532. weight: math.unit(576, "lb"),
  14533. name: "Feral",
  14534. image: {
  14535. source: "./media/characters/embra/feral.svg",
  14536. extra: 152 / 137,
  14537. bottom: 0.037
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(9 + 2 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14551. {
  14552. anthro: {
  14553. height: math.unit(10 + 9 / 12, "feet"),
  14554. weight: math.unit(224, "lb"),
  14555. name: "Anthro",
  14556. image: {
  14557. source: "./media/characters/grottos/anthro.svg",
  14558. extra: 350 / 332,
  14559. bottom: 0.045
  14560. }
  14561. },
  14562. feral: {
  14563. height: math.unit(20 + 7 / 12, "feet"),
  14564. weight: math.unit(629, "lb"),
  14565. name: "Feral",
  14566. image: {
  14567. source: "./media/characters/grottos/feral.svg",
  14568. extra: 207 / 190,
  14569. bottom: 0.05
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(10 + 9 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14583. {
  14584. anthro: {
  14585. height: math.unit(9 + 6 / 12, "feet"),
  14586. weight: math.unit(298, "lb"),
  14587. name: "Anthro",
  14588. image: {
  14589. source: "./media/characters/frifna/anthro.svg",
  14590. extra: 282 / 269,
  14591. bottom: 0.015
  14592. }
  14593. },
  14594. feral: {
  14595. height: math.unit(16 + 2 / 12, "feet"),
  14596. weight: math.unit(624, "lb"),
  14597. name: "Feral",
  14598. image: {
  14599. source: "./media/characters/frifna/feral.svg"
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(9 + 6 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(6 + 2 / 12, "feet"),
  14616. weight: math.unit(168, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/elise/front.svg",
  14620. extra: 276 / 271
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(6 + 2 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(5 + 10 / 12, "feet"),
  14637. weight: math.unit(210, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/glade/front.svg",
  14641. extra: 258 / 247,
  14642. bottom: 0.008
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(5 + 10 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(5 + 10 / 12, "feet"),
  14659. weight: math.unit(129, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/rina/front.svg",
  14663. extra: 266 / 255,
  14664. bottom: 0.005
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(5 + 10 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6 + 1 / 12, "feet"),
  14681. weight: math.unit(192, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/veronica/front.svg",
  14685. extra: 319 / 309,
  14686. bottom: 0.005
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(6 + 1 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(9 + 3 / 12, "feet"),
  14703. weight: math.unit(1100, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/braxton/front.svg",
  14707. extra: 1057 / 984,
  14708. bottom: 0.05
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(9 + 3 / 12, "feet")
  14716. },
  14717. {
  14718. name: "Giant",
  14719. height: math.unit(300, "feet"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Macro",
  14724. height: math.unit(700, "feet")
  14725. },
  14726. {
  14727. name: "Megamacro",
  14728. height: math.unit(6000, "feet")
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6 + 7 / 12, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/blue-feyonics/front.svg",
  14741. extra: 1403 / 1306,
  14742. bottom: 0.047
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(6 + 7 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(1.8, "meters"),
  14759. weight: math.unit(60, "kg"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/maxwell/front.svg",
  14763. extra: 2060 / 1873
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Micro",
  14770. height: math.unit(1, "mm")
  14771. },
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(1.8, "meter"),
  14775. default: true
  14776. },
  14777. {
  14778. name: "Macro",
  14779. height: math.unit(30, "meters")
  14780. },
  14781. {
  14782. name: "Megamacro",
  14783. height: math.unit(10, "km")
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6, "feet"),
  14792. weight: math.unit(150, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/jack/front.svg",
  14796. extra: 1754 / 1640,
  14797. bottom: 0.01
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(80000, "feet"),
  14805. default: true
  14806. },
  14807. {
  14808. name: "Max size",
  14809. height: math.unit(10, "lightyears")
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14815. {
  14816. upright: {
  14817. height: math.unit(7, "feet"),
  14818. weight: math.unit(170, "lb"),
  14819. name: "Upright",
  14820. image: {
  14821. source: "./media/characters/cafat/upright.svg",
  14822. bottom: 0.01
  14823. }
  14824. },
  14825. uprightFull: {
  14826. height: math.unit(7, "feet"),
  14827. weight: math.unit(170, "lb"),
  14828. name: "Upright (Full)",
  14829. image: {
  14830. source: "./media/characters/cafat/upright-full.svg",
  14831. bottom: 0.01
  14832. }
  14833. },
  14834. side: {
  14835. height: math.unit(5, "feet"),
  14836. weight: math.unit(150, "lb"),
  14837. name: "Side",
  14838. image: {
  14839. source: "./media/characters/cafat/side.svg"
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Small",
  14846. height: math.unit(7, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Large",
  14851. height: math.unit(15.5, "feet")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/verin-raharra/front.svg",
  14864. extra: 5019 / 4835,
  14865. bottom: 0.023
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(7 + 5 / 12, "feet"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Upsized",
  14877. height: math.unit(20, "feet")
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(7, "feet"),
  14886. weight: math.unit(230, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/nakata/front.svg",
  14890. extra: 1.005,
  14891. bottom: 0.01
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(7, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Big",
  14903. height: math.unit(14, "feet")
  14904. },
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(400, "feet")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(4.91, "feet"),
  14916. weight: math.unit(100, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/lily/front.svg",
  14920. extra: 1585 / 1415,
  14921. bottom: 0.02
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(4.91, "feet"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14935. {
  14936. laying: {
  14937. height: math.unit(4 + 4 / 12, "feet"),
  14938. weight: math.unit(600, "lb"),
  14939. name: "Laying",
  14940. image: {
  14941. source: "./media/characters/sheila/laying.svg",
  14942. extra: 1333 / 1265,
  14943. bottom: 0.16
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(4 + 4 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(190, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/sax/front.svg",
  14964. extra: 1187 / 973,
  14965. bottom: 0.042
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Micro",
  14972. height: math.unit(4, "inches"),
  14973. default: true
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/pandora/front.svg",
  14986. extra: 2720 / 2556,
  14987. bottom: 0.015
  14988. }
  14989. },
  14990. back: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Back",
  14994. image: {
  14995. source: "./media/characters/pandora/back.svg",
  14996. extra: 2720 / 2556,
  14997. bottom: 0.01
  14998. }
  14999. },
  15000. beans: {
  15001. height: math.unit(6 / 8, "feet"),
  15002. name: "Beans",
  15003. image: {
  15004. source: "./media/characters/pandora/beans.svg"
  15005. }
  15006. },
  15007. skirt: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(150, "lb"),
  15010. name: "Skirt",
  15011. image: {
  15012. source: "./media/characters/pandora/skirt.svg",
  15013. extra: 1622 / 1525,
  15014. bottom: 0.015
  15015. }
  15016. },
  15017. hoodie: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Hoodie",
  15021. image: {
  15022. source: "./media/characters/pandora/hoodie.svg",
  15023. extra: 1622 / 1525,
  15024. bottom: 0.015
  15025. }
  15026. },
  15027. casual: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(150, "lb"),
  15030. name: "Casual",
  15031. image: {
  15032. source: "./media/characters/pandora/casual.svg",
  15033. extra: 1622 / 1525,
  15034. bottom: 0.015
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(6, "feet")
  15042. },
  15043. {
  15044. name: "Big Steppy",
  15045. height: math.unit(1, "km"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15052. {
  15053. side: {
  15054. height: math.unit(10, "feet"),
  15055. weight: math.unit(800, "kg"),
  15056. name: "Side",
  15057. image: {
  15058. source: "./media/characters/venio-darcony/side.svg",
  15059. extra: 1373 / 1003,
  15060. bottom: 0.037
  15061. }
  15062. },
  15063. front: {
  15064. height: math.unit(19, "feet"),
  15065. weight: math.unit(800, "kg"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/venio-darcony/front.svg"
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(19, "feet"),
  15073. weight: math.unit(800, "kg"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/venio-darcony/back.svg"
  15077. }
  15078. },
  15079. sideNsfw: {
  15080. height: math.unit(10, "feet"),
  15081. weight: math.unit(800, "kg"),
  15082. name: "Side (NSFW)",
  15083. image: {
  15084. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15085. extra: 1373 / 1003,
  15086. bottom: 0.037
  15087. }
  15088. },
  15089. frontNsfw: {
  15090. height: math.unit(19, "feet"),
  15091. weight: math.unit(800, "kg"),
  15092. name: "Front (NSFW)",
  15093. image: {
  15094. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15095. }
  15096. },
  15097. backNsfw: {
  15098. height: math.unit(19, "feet"),
  15099. weight: math.unit(800, "kg"),
  15100. name: "Back (NSFW)",
  15101. image: {
  15102. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15103. }
  15104. },
  15105. sideArmored: {
  15106. height: math.unit(10, "feet"),
  15107. weight: math.unit(800, "kg"),
  15108. name: "Side (Armored)",
  15109. image: {
  15110. source: "./media/characters/venio-darcony/side-armored.svg",
  15111. extra: 1373 / 1003,
  15112. bottom: 0.037
  15113. }
  15114. },
  15115. frontArmored: {
  15116. height: math.unit(19, "feet"),
  15117. weight: math.unit(900, "kg"),
  15118. name: "Front (Armored)",
  15119. image: {
  15120. source: "./media/characters/venio-darcony/front-armored.svg"
  15121. }
  15122. },
  15123. backArmored: {
  15124. height: math.unit(19, "feet"),
  15125. weight: math.unit(900, "kg"),
  15126. name: "Back (Armored)",
  15127. image: {
  15128. source: "./media/characters/venio-darcony/back-armored.svg"
  15129. }
  15130. },
  15131. sword: {
  15132. height: math.unit(10, "feet"),
  15133. weight: math.unit(50, "lb"),
  15134. name: "Sword",
  15135. image: {
  15136. source: "./media/characters/venio-darcony/sword.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(10, "feet")
  15144. },
  15145. {
  15146. name: "Macro",
  15147. height: math.unit(130, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro+",
  15152. height: math.unit(240, "feet")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/veski/front.svg",
  15165. extra: 1299 / 1225,
  15166. bottom: 0.04
  15167. }
  15168. },
  15169. back: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Back",
  15173. image: {
  15174. source: "./media/characters/veski/back.svg",
  15175. extra: 1299 / 1225,
  15176. bottom: 0.008
  15177. }
  15178. },
  15179. maw: {
  15180. height: math.unit(1.5 * 1.21, "feet"),
  15181. name: "Maw",
  15182. image: {
  15183. source: "./media/characters/veski/maw.svg"
  15184. }
  15185. },
  15186. },
  15187. [
  15188. {
  15189. name: "Macro",
  15190. height: math.unit(2, "km"),
  15191. default: true
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(5 + 7 / 12, "feet"),
  15200. name: "Front",
  15201. image: {
  15202. source: "./media/characters/isabelle/front.svg",
  15203. extra: 2130 / 1976,
  15204. bottom: 0.05
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Supermicro",
  15211. height: math.unit(10, "micrometers")
  15212. },
  15213. {
  15214. name: "Micro",
  15215. height: math.unit(1, "inch")
  15216. },
  15217. {
  15218. name: "Tiny",
  15219. height: math.unit(5, "inches")
  15220. },
  15221. {
  15222. name: "Standard",
  15223. height: math.unit(5 + 7 / 12, "inches")
  15224. },
  15225. {
  15226. name: "Macro",
  15227. height: math.unit(80, "meters"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(250, "meters")
  15233. },
  15234. {
  15235. name: "Gigamacro",
  15236. height: math.unit(5, "km")
  15237. },
  15238. {
  15239. name: "Cosmic",
  15240. height: math.unit(2.5e6, "miles")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/hanzo/front.svg",
  15253. extra: 374 / 344,
  15254. bottom: 0.02
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(8, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(7, "feet"),
  15271. weight: math.unit(130, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/anna/front.svg",
  15275. extra: 169 / 145,
  15276. bottom: 0.06
  15277. }
  15278. },
  15279. full: {
  15280. height: math.unit(4.96, "feet"),
  15281. weight: math.unit(220, "lb"),
  15282. name: "Full",
  15283. image: {
  15284. source: "./media/characters/anna/full.svg",
  15285. extra: 138 / 114,
  15286. bottom: 0.15
  15287. }
  15288. },
  15289. tongue: {
  15290. height: math.unit(2.53, "feet"),
  15291. name: "Tongue",
  15292. image: {
  15293. source: "./media/characters/anna/tongue.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(7, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(7, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/ian-corvid/front.svg",
  15314. extra: 150 / 142,
  15315. bottom: 0.02
  15316. }
  15317. },
  15318. back: {
  15319. height: math.unit(7, "feet"),
  15320. weight: math.unit(150, "lb"),
  15321. name: "Back",
  15322. image: {
  15323. source: "./media/characters/ian-corvid/back.svg",
  15324. extra: 150 / 143,
  15325. bottom: 0.01
  15326. }
  15327. },
  15328. stomping: {
  15329. height: math.unit(7, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Stomping",
  15332. image: {
  15333. source: "./media/characters/ian-corvid/stomping.svg",
  15334. extra: 76 / 72
  15335. }
  15336. },
  15337. sitting: {
  15338. height: math.unit(7 / 1.8, "feet"),
  15339. weight: math.unit(150, "lb"),
  15340. name: "Sitting",
  15341. image: {
  15342. source: "./media/characters/ian-corvid/sitting.svg",
  15343. extra: 1400 / 1269,
  15344. bottom: 0.15
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Tiny Microw",
  15351. height: math.unit(1, "inch")
  15352. },
  15353. {
  15354. name: "Microw",
  15355. height: math.unit(6, "inches")
  15356. },
  15357. {
  15358. name: "Crow",
  15359. height: math.unit(7 + 1 / 12, "feet"),
  15360. default: true
  15361. },
  15362. {
  15363. name: "Macrow",
  15364. height: math.unit(176, "feet")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(5 + 7 / 12, "feet"),
  15373. weight: math.unit(147, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/natalie-kellon/front.svg",
  15377. extra: 1214 / 1141,
  15378. bottom: 0.02
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Micro",
  15385. height: math.unit(1 / 16, "inch")
  15386. },
  15387. {
  15388. name: "Tiny",
  15389. height: math.unit(4, "inches")
  15390. },
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5 + 7 / 12, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Amazon",
  15398. height: math.unit(12, "feet")
  15399. },
  15400. {
  15401. name: "Giantess",
  15402. height: math.unit(160, "meters")
  15403. },
  15404. {
  15405. name: "Titaness",
  15406. height: math.unit(800, "meters")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/alluria/front.svg",
  15419. extra: 806 / 738,
  15420. bottom: 0.01
  15421. }
  15422. },
  15423. side: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Side",
  15427. image: {
  15428. source: "./media/characters/alluria/side.svg",
  15429. extra: 800 / 750,
  15430. }
  15431. },
  15432. back: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(150, "lb"),
  15435. name: "Back",
  15436. image: {
  15437. source: "./media/characters/alluria/back.svg",
  15438. extra: 806 / 738,
  15439. }
  15440. },
  15441. frontMaid: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(150, "lb"),
  15444. name: "Front (Maid)",
  15445. image: {
  15446. source: "./media/characters/alluria/front-maid.svg",
  15447. extra: 806 / 738,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. sideMaid: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Side (Maid)",
  15455. image: {
  15456. source: "./media/characters/alluria/side-maid.svg",
  15457. extra: 800 / 750,
  15458. bottom: 0.005
  15459. }
  15460. },
  15461. backMaid: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Back (Maid)",
  15465. image: {
  15466. source: "./media/characters/alluria/back-maid.svg",
  15467. extra: 806 / 738,
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Micro",
  15474. height: math.unit(6, "inches"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/kyle/front.svg",
  15488. extra: 1069 / 962,
  15489. bottom: 77.228 / 1727.45
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(150, "feet"),
  15497. default: true
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(6, "feet"),
  15506. weight: math.unit(300, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/duncan/front.svg",
  15510. extra: 1650 / 1482,
  15511. bottom: 0.05
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Macro",
  15518. height: math.unit(100, "feet"),
  15519. default: true
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(5 + 4 / 12, "feet"),
  15528. weight: math.unit(220, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/memory/front.svg",
  15532. extra: 3641 / 3545,
  15533. bottom: 0.03
  15534. }
  15535. },
  15536. back: {
  15537. height: math.unit(5 + 4 / 12, "feet"),
  15538. weight: math.unit(220, "lb"),
  15539. name: "Back",
  15540. image: {
  15541. source: "./media/characters/memory/back.svg",
  15542. extra: 3641 / 3545,
  15543. bottom: 0.025
  15544. }
  15545. },
  15546. frontSkirt: {
  15547. height: math.unit(5 + 4 / 12, "feet"),
  15548. weight: math.unit(220, "lb"),
  15549. name: "Front (Skirt)",
  15550. image: {
  15551. source: "./media/characters/memory/front-skirt.svg",
  15552. extra: 3641 / 3545,
  15553. bottom: 0.03
  15554. }
  15555. },
  15556. frontDress: {
  15557. height: math.unit(5 + 4 / 12, "feet"),
  15558. weight: math.unit(220, "lb"),
  15559. name: "Front (Dress)",
  15560. image: {
  15561. source: "./media/characters/memory/front-dress.svg",
  15562. extra: 3641 / 3545,
  15563. bottom: 0.03
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Micro",
  15570. height: math.unit(6, "inches"),
  15571. default: true
  15572. },
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(5 + 4 / 12, "feet")
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15581. {
  15582. front: {
  15583. height: math.unit(4 + 11 / 12, "feet"),
  15584. weight: math.unit(100, "lb"),
  15585. name: "Front",
  15586. image: {
  15587. source: "./media/characters/luno/front.svg",
  15588. extra: 1535 / 1487,
  15589. bottom: 0.03
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Micro",
  15596. height: math.unit(3, "inches")
  15597. },
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(4 + 11 / 12, "feet"),
  15601. default: true
  15602. },
  15603. {
  15604. name: "Macro",
  15605. height: math.unit(300, "feet")
  15606. },
  15607. {
  15608. name: "Megamacro",
  15609. height: math.unit(700, "miles")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. weight: math.unit(170, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/jamesy/front.svg",
  15622. extra: 440 / 382,
  15623. bottom: 0.005
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Micro",
  15630. height: math.unit(3, "inches")
  15631. },
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(6 + 2 / 12, "feet"),
  15635. default: true
  15636. },
  15637. {
  15638. name: "Macro",
  15639. height: math.unit(300, "feet")
  15640. },
  15641. {
  15642. name: "Megamacro",
  15643. height: math.unit(700, "miles")
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15649. {
  15650. front: {
  15651. height: math.unit(6, "feet"),
  15652. weight: math.unit(160, "lb"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/mark/front.svg",
  15656. extra: 3300 / 3100,
  15657. bottom: 136.42 / 3440.47
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(120, "meters")
  15665. },
  15666. {
  15667. name: "Bigger Macro",
  15668. height: math.unit(350, "meters")
  15669. },
  15670. {
  15671. name: "Megamacro",
  15672. height: math.unit(8, "km"),
  15673. default: true
  15674. },
  15675. {
  15676. name: "Continental",
  15677. height: math.unit(4550, "km")
  15678. },
  15679. {
  15680. name: "Planetary",
  15681. height: math.unit(65000, "km")
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(400, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/mac/front.svg",
  15694. extra: 1048 / 987.7,
  15695. bottom: 60 / 1107.6,
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(500, "feet"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(5 + 2 / 12, "feet"),
  15712. weight: math.unit(190, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/bari/front.svg",
  15716. extra: 3156 / 2880,
  15717. bottom: 0.03
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(5 + 2 / 12, "feet"),
  15722. weight: math.unit(190, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/bari/back.svg",
  15726. extra: 3260 / 2834,
  15727. bottom: 0.025
  15728. }
  15729. },
  15730. frontPlush: {
  15731. height: math.unit(5 + 2 / 12, "feet"),
  15732. weight: math.unit(190, "lb"),
  15733. name: "Front (Plush)",
  15734. image: {
  15735. source: "./media/characters/bari/front-plush.svg",
  15736. extra: 1112 / 1061,
  15737. bottom: 0.002
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Micro",
  15744. height: math.unit(3, "inches")
  15745. },
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(5 + 2 / 12, "feet"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Macro",
  15753. height: math.unit(20, "feet")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6 + 1 / 12, "feet"),
  15762. weight: math.unit(275, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/hunter-misha-raven/front.svg"
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Mortal",
  15772. height: math.unit(6 + 1 / 12, "feet")
  15773. },
  15774. {
  15775. name: "Divine",
  15776. height: math.unit(1.12134e34, "parsecs"),
  15777. default: true
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(6 + 3 / 12, "feet"),
  15786. weight: math.unit(220, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/max-calore/front.svg",
  15790. extra: 1700 / 1648,
  15791. bottom: 0.01
  15792. }
  15793. },
  15794. back: {
  15795. height: math.unit(6 + 3 / 12, "feet"),
  15796. weight: math.unit(220, "lb"),
  15797. name: "Back",
  15798. image: {
  15799. source: "./media/characters/max-calore/back.svg",
  15800. extra: 1700 / 1648,
  15801. bottom: 0.01
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(6 + 3 / 12, "feet"),
  15809. default: true
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15815. {
  15816. side: {
  15817. height: math.unit(2 + 8 / 12, "feet"),
  15818. weight: math.unit(99, "lb"),
  15819. name: "Side",
  15820. image: {
  15821. source: "./media/characters/aspen/side.svg",
  15822. extra: 152 / 138,
  15823. bottom: 0.032
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(2 + 8 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15837. {
  15838. side: {
  15839. height: math.unit(3 + 2 / 12, "feet"),
  15840. weight: math.unit(224, "lb"),
  15841. name: "Side",
  15842. image: {
  15843. source: "./media/characters/sheila-feral-wolf/side.svg",
  15844. extra: 179 / 166,
  15845. bottom: 0.03
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(3 + 2 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15859. {
  15860. side: {
  15861. height: math.unit(1 + 9 / 12, "feet"),
  15862. weight: math.unit(38, "lb"),
  15863. name: "Side",
  15864. image: {
  15865. source: "./media/characters/michelle/side.svg",
  15866. extra: 147 / 136.7,
  15867. bottom: 0.03
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(1 + 9 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(1 + 1 / 12, "feet"),
  15884. weight: math.unit(18, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/nino/front.svg"
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(1 + 1 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(1, "feet"),
  15904. weight: math.unit(16, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/viola/front.svg"
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(1, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6 + 5 / 12, "feet"),
  15924. weight: math.unit(580, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/atlas/front.svg",
  15928. extra: 298.5 / 290,
  15929. bottom: 0.015
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6 + 5 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15943. {
  15944. side: {
  15945. height: math.unit(1 + 10 / 12, "feet"),
  15946. weight: math.unit(25, "lb"),
  15947. name: "Side",
  15948. image: {
  15949. source: "./media/characters/davy/side.svg",
  15950. extra: 200 / 170,
  15951. bottom: 0.01
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(1 + 10 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15965. {
  15966. side: {
  15967. height: math.unit(4 + 8 / 12, "feet"),
  15968. weight: math.unit(166, "lb"),
  15969. name: "Side",
  15970. image: {
  15971. source: "./media/characters/fiona/side.svg",
  15972. extra: 232 / 220,
  15973. bottom: 0.03
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(4 + 8 / 12, "feet"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15987. {
  15988. front: {
  15989. height: math.unit(2, "feet"),
  15990. weight: math.unit(62, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/lyla/front.svg",
  15994. bottom: 0.1
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(2, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16008. {
  16009. side: {
  16010. height: math.unit(1.8, "feet"),
  16011. weight: math.unit(44, "lb"),
  16012. name: "Side",
  16013. image: {
  16014. source: "./media/characters/perseus/side.svg",
  16015. bottom: 0.21
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(1.8, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16029. {
  16030. side: {
  16031. height: math.unit(4 + 2 / 12, "feet"),
  16032. weight: math.unit(20, "lb"),
  16033. name: "Side",
  16034. image: {
  16035. source: "./media/characters/remus/side.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(4 + 2 / 12, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(4 + 11 / 12, "feet"),
  16052. weight: math.unit(114, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/raf/front.svg",
  16056. bottom: 0.01
  16057. }
  16058. },
  16059. side: {
  16060. height: math.unit(4 + 11 / 12, "feet"),
  16061. weight: math.unit(114, "lb"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/raf/side.svg",
  16065. bottom: 0.005
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Micro",
  16072. height: math.unit(2, "inches")
  16073. },
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(4 + 11 / 12, "feet"),
  16077. default: true
  16078. },
  16079. {
  16080. name: "Macro",
  16081. height: math.unit(70, "feet")
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(1.5, "meters"),
  16090. weight: math.unit(68, "kg"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/liam-einarr/front.svg",
  16094. extra: 2822 / 2666
  16095. }
  16096. },
  16097. back: {
  16098. height: math.unit(1.5, "meters"),
  16099. weight: math.unit(68, "kg"),
  16100. name: "Back",
  16101. image: {
  16102. source: "./media/characters/liam-einarr/back.svg",
  16103. extra: 2822 / 2666,
  16104. bottom: 0.015
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(1.5, "meters"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macro",
  16116. height: math.unit(150, "meters")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(35, "km")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(75, "kg"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/linda/front.svg",
  16133. extra: 930 / 874,
  16134. bottom: 0.004
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6 + 8 / 12, "feet"),
  16151. weight: math.unit(220, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/caylex/front.svg",
  16155. extra: 821 / 772,
  16156. bottom: 0.07
  16157. }
  16158. },
  16159. back: {
  16160. height: math.unit(6 + 8 / 12, "feet"),
  16161. weight: math.unit(220, "lb"),
  16162. name: "Back",
  16163. image: {
  16164. source: "./media/characters/caylex/back.svg",
  16165. extra: 821 / 772,
  16166. bottom: 0.022
  16167. }
  16168. },
  16169. hand: {
  16170. height: math.unit(1.25, "feet"),
  16171. name: "Hand",
  16172. image: {
  16173. source: "./media/characters/caylex/hand.svg"
  16174. }
  16175. },
  16176. foot: {
  16177. height: math.unit(1.6, "feet"),
  16178. name: "Foot",
  16179. image: {
  16180. source: "./media/characters/caylex/foot.svg"
  16181. }
  16182. },
  16183. armored: {
  16184. height: math.unit(6 + 8 / 12, "feet"),
  16185. weight: math.unit(250, "lb"),
  16186. name: "Armored",
  16187. image: {
  16188. source: "./media/characters/caylex/armored.svg",
  16189. extra: 1420 / 1310,
  16190. bottom: 0.045
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(6 + 8 / 12, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Normal+",
  16202. height: math.unit(12, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(7 + 6 / 12, "feet"),
  16211. weight: math.unit(288, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/alana/front.svg",
  16215. extra: 679 / 653,
  16216. bottom: 22.5 / 701
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(7 + 6 / 12, "feet")
  16224. },
  16225. {
  16226. name: "Large",
  16227. height: math.unit(50, "feet")
  16228. },
  16229. {
  16230. name: "Macro",
  16231. height: math.unit(100, "feet"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Macro+",
  16236. height: math.unit(200, "feet")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(6 + 1 / 12, "feet"),
  16245. weight: math.unit(210, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/hasani/front.svg",
  16249. extra: 244 / 232,
  16250. bottom: 0.01
  16251. }
  16252. },
  16253. back: {
  16254. height: math.unit(6 + 1 / 12, "feet"),
  16255. weight: math.unit(210, "lb"),
  16256. name: "Back",
  16257. image: {
  16258. source: "./media/characters/hasani/back.svg",
  16259. extra: 244 / 232,
  16260. bottom: 0.01
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(6 + 1 / 12, "feet")
  16268. },
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(175, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(1.82, "meters"),
  16281. weight: math.unit(140, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/nita/front.svg",
  16285. extra: 2473 / 2363,
  16286. bottom: 0.01
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(1.82, "m")
  16294. },
  16295. {
  16296. name: "Macro",
  16297. height: math.unit(300, "m")
  16298. },
  16299. {
  16300. name: "Mistake Canon",
  16301. height: math.unit(0.5, "miles"),
  16302. default: true
  16303. },
  16304. {
  16305. name: "Big Mistake",
  16306. height: math.unit(13, "miles")
  16307. },
  16308. {
  16309. name: "Playing God",
  16310. height: math.unit(2450, "miles")
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16316. {
  16317. front: {
  16318. height: math.unit(4, "feet"),
  16319. weight: math.unit(120, "lb"),
  16320. name: "Front",
  16321. image: {
  16322. source: "./media/characters/shiriko/front.svg",
  16323. extra: 195 / 188
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(4, "feet"),
  16331. default: true
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(6, "feet"),
  16340. name: "front",
  16341. image: {
  16342. source: "./media/characters/deja/front.svg",
  16343. extra: 926 / 840,
  16344. bottom: 0.07
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Planck Length",
  16351. height: math.unit(1.6e-35, "meters")
  16352. },
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(30.48, "meters"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Universal",
  16360. height: math.unit(8.8e26, "meters")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16366. {
  16367. side: {
  16368. height: math.unit(8, "feet"),
  16369. weight: math.unit(6300, "lb"),
  16370. name: "Side",
  16371. image: {
  16372. source: "./media/characters/anima/side.svg",
  16373. bottom: 0.035
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(8, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(8, "feet"),
  16390. weight: math.unit(350, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/bianca/front.svg",
  16394. extra: 234 / 225,
  16395. bottom: 0.03
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(8, "feet"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(150, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/adinia/front.svg",
  16416. extra: 1845 / 1672,
  16417. bottom: 0.02
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(6, "feet"),
  16422. weight: math.unit(150, "lb"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/adinia/back.svg",
  16426. extra: 1845 / 1672,
  16427. bottom: 0.002
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(11 + 5 / 12, "feet"),
  16435. default: true
  16436. },
  16437. ]
  16438. ))
  16439. characterMakers.push(() => makeCharacter(
  16440. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16441. {
  16442. front: {
  16443. height: math.unit(3, "meters"),
  16444. weight: math.unit(200, "kg"),
  16445. name: "Front",
  16446. image: {
  16447. source: "./media/characters/lykasa/front.svg",
  16448. extra: 1076 / 976,
  16449. bottom: 0.06
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(3, "meters")
  16457. },
  16458. {
  16459. name: "Kaiju",
  16460. height: math.unit(120, "meters"),
  16461. default: true
  16462. },
  16463. {
  16464. name: "Mega Kaiju",
  16465. height: math.unit(240, "km")
  16466. },
  16467. {
  16468. name: "Giga Kaiju",
  16469. height: math.unit(400, "megameters")
  16470. },
  16471. {
  16472. name: "Tera Kaiju",
  16473. height: math.unit(800, "gigameters")
  16474. },
  16475. {
  16476. name: "Kaiju Dragon Goddess",
  16477. height: math.unit(26, "zettaparsecs")
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16483. {
  16484. side: {
  16485. height: math.unit(283 / 124 * 6, "feet"),
  16486. weight: math.unit(35000, "lb"),
  16487. name: "Side",
  16488. image: {
  16489. source: "./media/characters/malfaren/side.svg",
  16490. extra: 2500 / 1010,
  16491. bottom: 0.01
  16492. }
  16493. },
  16494. front: {
  16495. height: math.unit(22.36, "feet"),
  16496. weight: math.unit(35000, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/malfaren/front.svg",
  16500. extra: 1631 / 1476,
  16501. bottom: 0.01
  16502. }
  16503. },
  16504. maw: {
  16505. height: math.unit(6.9, "feet"),
  16506. name: "Maw",
  16507. image: {
  16508. source: "./media/characters/malfaren/maw.svg"
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Big",
  16515. height: math.unit(283 / 162 * 6, "feet"),
  16516. },
  16517. {
  16518. name: "Bigger",
  16519. height: math.unit(283 / 124 * 6, "feet")
  16520. },
  16521. {
  16522. name: "Massive",
  16523. height: math.unit(283 / 92 * 6, "feet"),
  16524. default: true
  16525. },
  16526. {
  16527. name: "👀💦",
  16528. height: math.unit(283 / 73 * 6, "feet"),
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(1.7, "m"),
  16537. weight: math.unit(70, "kg"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/kernel/front.svg",
  16541. extra: 222 / 210,
  16542. bottom: 0.007
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Nano",
  16549. height: math.unit(17, "micrometers")
  16550. },
  16551. {
  16552. name: "Micro",
  16553. height: math.unit(1.7, "mm")
  16554. },
  16555. {
  16556. name: "Small",
  16557. height: math.unit(1.7, "cm")
  16558. },
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(1.7, "m"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(1.75, "meters"),
  16571. weight: math.unit(65, "kg"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/jayne-folest/front.svg",
  16575. extra: 2115 / 2007,
  16576. bottom: 0.02
  16577. }
  16578. },
  16579. back: {
  16580. height: math.unit(1.75, "meters"),
  16581. weight: math.unit(65, "kg"),
  16582. name: "Back",
  16583. image: {
  16584. source: "./media/characters/jayne-folest/back.svg",
  16585. extra: 2115 / 2007,
  16586. bottom: 0.005
  16587. }
  16588. },
  16589. frontClothed: {
  16590. height: math.unit(1.75, "meters"),
  16591. weight: math.unit(65, "kg"),
  16592. name: "Front (Clothed)",
  16593. image: {
  16594. source: "./media/characters/jayne-folest/front-clothed.svg",
  16595. extra: 2115 / 2007,
  16596. bottom: 0.035
  16597. }
  16598. },
  16599. hand: {
  16600. height: math.unit(1 / 1.260, "feet"),
  16601. name: "Hand",
  16602. image: {
  16603. source: "./media/characters/jayne-folest/hand.svg"
  16604. }
  16605. },
  16606. foot: {
  16607. height: math.unit(1 / 0.918, "feet"),
  16608. name: "Foot",
  16609. image: {
  16610. source: "./media/characters/jayne-folest/foot.svg"
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Micro",
  16617. height: math.unit(4, "cm")
  16618. },
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(1.75, "meters")
  16622. },
  16623. {
  16624. name: "Macro",
  16625. height: math.unit(47.5, "meters"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(180, "cm"),
  16635. weight: math.unit(70, "kg"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/algier/front.svg",
  16639. extra: 596 / 572,
  16640. bottom: 0.04
  16641. }
  16642. },
  16643. back: {
  16644. height: math.unit(180, "cm"),
  16645. weight: math.unit(70, "kg"),
  16646. name: "Back",
  16647. image: {
  16648. source: "./media/characters/algier/back.svg",
  16649. extra: 596 / 572,
  16650. bottom: 0.025
  16651. }
  16652. },
  16653. frontdressed: {
  16654. height: math.unit(180, "cm"),
  16655. weight: math.unit(150, "kg"),
  16656. name: "Front-dressed",
  16657. image: {
  16658. source: "./media/characters/algier/front-dressed.svg",
  16659. extra: 596 / 572,
  16660. bottom: 0.038
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Micro",
  16667. height: math.unit(5, "cm")
  16668. },
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(180, "cm"),
  16672. default: true
  16673. },
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(64, "m")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16682. {
  16683. upright: {
  16684. height: math.unit(7, "feet"),
  16685. weight: math.unit(300, "lb"),
  16686. name: "Upright",
  16687. image: {
  16688. source: "./media/characters/pretzel/upright.svg",
  16689. extra: 534 / 522,
  16690. bottom: 0.065
  16691. }
  16692. },
  16693. sprawling: {
  16694. height: math.unit(3.75, "feet"),
  16695. weight: math.unit(300, "lb"),
  16696. name: "Sprawling",
  16697. image: {
  16698. source: "./media/characters/pretzel/sprawling.svg",
  16699. extra: 314 / 281,
  16700. bottom: 0.1
  16701. }
  16702. },
  16703. tongue: {
  16704. height: math.unit(2, "feet"),
  16705. name: "Tongue",
  16706. image: {
  16707. source: "./media/characters/pretzel/tongue.svg"
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(7, "feet"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Oversized",
  16719. height: math.unit(15, "feet")
  16720. },
  16721. {
  16722. name: "Huge",
  16723. height: math.unit(30, "feet")
  16724. },
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(250, "feet")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16733. {
  16734. sideFront: {
  16735. height: math.unit(5 + 2 / 12, "feet"),
  16736. weight: math.unit(120, "lb"),
  16737. name: "Front Side",
  16738. image: {
  16739. source: "./media/characters/roxi/side-front.svg",
  16740. extra: 2924 / 2717,
  16741. bottom: 0.08
  16742. }
  16743. },
  16744. sideBack: {
  16745. height: math.unit(5 + 2 / 12, "feet"),
  16746. weight: math.unit(120, "lb"),
  16747. name: "Back Side",
  16748. image: {
  16749. source: "./media/characters/roxi/side-back.svg",
  16750. extra: 2904 / 2693,
  16751. bottom: 0.06
  16752. }
  16753. },
  16754. front: {
  16755. height: math.unit(5 + 2 / 12, "feet"),
  16756. weight: math.unit(120, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/roxi/front.svg",
  16760. extra: 2028 / 1907,
  16761. bottom: 0.01
  16762. }
  16763. },
  16764. frontAlt: {
  16765. height: math.unit(5 + 2 / 12, "feet"),
  16766. weight: math.unit(120, "lb"),
  16767. name: "Front (Alt)",
  16768. image: {
  16769. source: "./media/characters/roxi/front-alt.svg",
  16770. extra: 1828 / 1798,
  16771. bottom: 0.01
  16772. }
  16773. },
  16774. sitting: {
  16775. height: math.unit(2.8, "feet"),
  16776. weight: math.unit(120, "lb"),
  16777. name: "Sitting",
  16778. image: {
  16779. source: "./media/characters/roxi/sitting.svg",
  16780. extra: 2660 / 2462,
  16781. bottom: 0.1
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(5 + 2 / 12, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16795. {
  16796. side: {
  16797. height: math.unit(55, "feet"),
  16798. weight: math.unit(153, "tons"),
  16799. name: "Side",
  16800. image: {
  16801. source: "./media/characters/shadow/side.svg",
  16802. extra: 701 / 628,
  16803. bottom: 0.02
  16804. }
  16805. },
  16806. flying: {
  16807. height: math.unit(145, "feet"),
  16808. weight: math.unit(153, "tons"),
  16809. name: "Flying",
  16810. image: {
  16811. source: "./media/characters/shadow/flying.svg"
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(55, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(6, "feet"),
  16828. weight: math.unit(200, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/marcie/front.svg",
  16832. extra: 960 / 876,
  16833. bottom: 58 / 1017.87
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(1, "mile"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(7, "feet"),
  16850. weight: math.unit(200, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/kachina/front.svg",
  16854. extra: 1290.68 / 1119,
  16855. bottom: 36.5 / 1327.18
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(7, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16869. {
  16870. looking: {
  16871. height: math.unit(2, "meters"),
  16872. weight: math.unit(300, "kg"),
  16873. name: "Looking",
  16874. image: {
  16875. source: "./media/characters/kash/looking.svg",
  16876. extra: 474 / 344,
  16877. bottom: 0.03
  16878. }
  16879. },
  16880. side: {
  16881. height: math.unit(2, "meters"),
  16882. weight: math.unit(300, "kg"),
  16883. name: "Side",
  16884. image: {
  16885. source: "./media/characters/kash/side.svg",
  16886. extra: 302 / 251,
  16887. bottom: 0.03
  16888. }
  16889. },
  16890. front: {
  16891. height: math.unit(2, "meters"),
  16892. weight: math.unit(300, "kg"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/kash/front.svg",
  16896. extra: 495 / 360,
  16897. bottom: 0.015
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(2, "meters"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Big",
  16909. height: math.unit(3, "meters")
  16910. },
  16911. {
  16912. name: "Large",
  16913. height: math.unit(5, "meters")
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16919. {
  16920. feeding: {
  16921. height: math.unit(6.7, "feet"),
  16922. weight: math.unit(350, "lb"),
  16923. name: "Feeding",
  16924. image: {
  16925. source: "./media/characters/lalim/feeding.svg",
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(6.7, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16939. {
  16940. front: {
  16941. height: math.unit(9.5, "feet"),
  16942. weight: math.unit(600, "lb"),
  16943. name: "Front",
  16944. image: {
  16945. source: "./media/characters/de'vout/front.svg",
  16946. extra: 1443 / 1328,
  16947. bottom: 0.025
  16948. }
  16949. },
  16950. back: {
  16951. height: math.unit(9.5, "feet"),
  16952. weight: math.unit(600, "lb"),
  16953. name: "Back",
  16954. image: {
  16955. source: "./media/characters/de'vout/back.svg",
  16956. extra: 1443 / 1328
  16957. }
  16958. },
  16959. frontDressed: {
  16960. height: math.unit(9.5, "feet"),
  16961. weight: math.unit(600, "lb"),
  16962. name: "Front (Dressed",
  16963. image: {
  16964. source: "./media/characters/de'vout/front-dressed.svg",
  16965. extra: 1443 / 1328,
  16966. bottom: 0.025
  16967. }
  16968. },
  16969. backDressed: {
  16970. height: math.unit(9.5, "feet"),
  16971. weight: math.unit(600, "lb"),
  16972. name: "Back (Dressed",
  16973. image: {
  16974. source: "./media/characters/de'vout/back-dressed.svg",
  16975. extra: 1443 / 1328
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(9.5, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(8, "feet"),
  16992. weight: math.unit(225, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/talana/front.svg",
  16996. extra: 1410 / 1300,
  16997. bottom: 0.015
  16998. }
  16999. },
  17000. frontDressed: {
  17001. height: math.unit(8, "feet"),
  17002. weight: math.unit(225, "lb"),
  17003. name: "Front (Dressed",
  17004. image: {
  17005. source: "./media/characters/talana/front-dressed.svg",
  17006. extra: 1410 / 1300,
  17007. bottom: 0.015
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(8, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17021. {
  17022. side: {
  17023. height: math.unit(7.2, "feet"),
  17024. weight: math.unit(150, "lb"),
  17025. name: "Side",
  17026. image: {
  17027. source: "./media/characters/xeauvok/side.svg",
  17028. extra: 1975 / 1523,
  17029. bottom: 0.07
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(7.2, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17043. {
  17044. side: {
  17045. height: math.unit(10, "feet"),
  17046. weight: math.unit(900, "kg"),
  17047. name: "Side",
  17048. image: {
  17049. source: "./media/characters/zara/side.svg",
  17050. extra: 504 / 498
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(10, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17064. {
  17065. side: {
  17066. height: math.unit(6, "feet"),
  17067. weight: math.unit(150, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/richard-dragon/side.svg",
  17071. extra: 845 / 340,
  17072. bottom: 0.017
  17073. }
  17074. },
  17075. maw: {
  17076. height: math.unit(2.97, "feet"),
  17077. name: "Maw",
  17078. image: {
  17079. source: "./media/characters/richard-dragon/maw.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(4, "feet"),
  17091. weight: math.unit(100, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/richard-smeargle/front.svg",
  17095. extra: 2952 / 2820,
  17096. bottom: 0.028
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(4, "feet"),
  17104. default: true
  17105. },
  17106. {
  17107. name: "Dynamax",
  17108. height: math.unit(20, "meters")
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6, "feet"),
  17117. weight: math.unit(110, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/klay/front.svg",
  17121. extra: 962 / 883,
  17122. bottom: 0.04
  17123. }
  17124. },
  17125. back: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(110, "lb"),
  17128. name: "Back",
  17129. image: {
  17130. source: "./media/characters/klay/back.svg",
  17131. extra: 962 / 883
  17132. }
  17133. },
  17134. beans: {
  17135. height: math.unit(1.15, "feet"),
  17136. name: "Beans",
  17137. image: {
  17138. source: "./media/characters/klay/beans.svg"
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Micro",
  17145. height: math.unit(6, "inches")
  17146. },
  17147. {
  17148. name: "Mini",
  17149. height: math.unit(3, "feet")
  17150. },
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(6, "feet"),
  17154. default: true
  17155. },
  17156. {
  17157. name: "Big",
  17158. height: math.unit(25, "feet")
  17159. },
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(100, "feet")
  17163. },
  17164. {
  17165. name: "Megamacro",
  17166. height: math.unit(400, "feet")
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6, "feet"),
  17175. weight: math.unit(160, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/marcus/front.svg",
  17179. extra: 734 / 676,
  17180. bottom: 0.03
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Little",
  17187. height: math.unit(6, "feet")
  17188. },
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(110, "feet"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(250, "feet")
  17197. },
  17198. {
  17199. name: "Megamacro",
  17200. height: math.unit(1000, "feet")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(7, "feet"),
  17209. weight: math.unit(275, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/claude-delroute/front.svg",
  17213. extra: 230 / 214,
  17214. bottom: 0.007
  17215. }
  17216. },
  17217. side: {
  17218. height: math.unit(7, "feet"),
  17219. weight: math.unit(275, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/claude-delroute/side.svg",
  17223. extra: 222 / 214,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. back: {
  17228. height: math.unit(7, "feet"),
  17229. weight: math.unit(275, "lb"),
  17230. name: "Back",
  17231. image: {
  17232. source: "./media/characters/claude-delroute/back.svg",
  17233. extra: 230 / 214,
  17234. bottom: 0.015
  17235. }
  17236. },
  17237. maw: {
  17238. height: math.unit(0.6407, "meters"),
  17239. name: "Maw",
  17240. image: {
  17241. source: "./media/characters/claude-delroute/maw.svg"
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(7, "feet"),
  17249. default: true
  17250. },
  17251. {
  17252. name: "Lorge",
  17253. height: math.unit(20, "feet")
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(8 + 4 / 12, "feet"),
  17262. weight: math.unit(600, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/dragonien/front.svg",
  17266. extra: 100 / 94,
  17267. bottom: 3.3 / 103.3445
  17268. }
  17269. },
  17270. back: {
  17271. height: math.unit(8 + 4 / 12, "feet"),
  17272. weight: math.unit(600, "lb"),
  17273. name: "Back",
  17274. image: {
  17275. source: "./media/characters/dragonien/back.svg",
  17276. extra: 776 / 746,
  17277. bottom: 6.4 / 782.0616
  17278. }
  17279. },
  17280. foot: {
  17281. height: math.unit(1.54, "feet"),
  17282. name: "Foot",
  17283. image: {
  17284. source: "./media/characters/dragonien/foot.svg",
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(8 + 4 / 12, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(200, "feet")
  17297. },
  17298. {
  17299. name: "Megamacro",
  17300. height: math.unit(1, "mile")
  17301. },
  17302. {
  17303. name: "Gigamacro",
  17304. height: math.unit(1000, "miles")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(5 + 2 / 12, "feet"),
  17313. weight: math.unit(110, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/desta/front.svg",
  17317. extra: 767/726,
  17318. bottom: 11.7/779
  17319. }
  17320. },
  17321. back: {
  17322. height: math.unit(5 + 2 / 12, "feet"),
  17323. weight: math.unit(110, "lb"),
  17324. name: "Back",
  17325. image: {
  17326. source: "./media/characters/desta/back.svg",
  17327. extra: 777/728,
  17328. bottom: 6/784
  17329. }
  17330. },
  17331. frontAlt: {
  17332. height: math.unit(5 + 2 / 12, "feet"),
  17333. weight: math.unit(110, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/desta/front-alt.svg",
  17337. extra: 1482 / 1417
  17338. }
  17339. },
  17340. side: {
  17341. height: math.unit(5 + 2 / 12, "feet"),
  17342. weight: math.unit(110, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/desta/side.svg",
  17346. extra: 2579 / 2491,
  17347. bottom: 0.053
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Micro",
  17354. height: math.unit(6, "inches")
  17355. },
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(62, "feet")
  17364. },
  17365. {
  17366. name: "Megamacro",
  17367. height: math.unit(1800, "feet")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(10, "feet"),
  17376. weight: math.unit(700, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/storm-alystar/front.svg",
  17380. extra: 2112 / 1898,
  17381. bottom: 0.034
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Micro",
  17388. height: math.unit(3.5, "inches")
  17389. },
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(10, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(400, "feet")
  17398. },
  17399. {
  17400. name: "Deific",
  17401. height: math.unit(60, "miles")
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(2.35, "meters"),
  17410. weight: math.unit(119, "kg"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/ilia/front.svg",
  17414. extra: 1285 / 1255,
  17415. bottom: 0.06
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(2.35, "meters")
  17423. },
  17424. {
  17425. name: "Macro",
  17426. height: math.unit(140, "meters"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Megamacro",
  17431. height: math.unit(100, "miles")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6 + 5 / 12, "feet"),
  17440. weight: math.unit(190, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/kingdead/front.svg",
  17444. extra: 1228 / 1177
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Micro",
  17451. height: math.unit(7, "inches")
  17452. },
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(6 + 5 / 12, "feet")
  17456. },
  17457. {
  17458. name: "Macro",
  17459. height: math.unit(150, "feet"),
  17460. default: true
  17461. },
  17462. {
  17463. name: "Megamacro",
  17464. height: math.unit(200, "miles")
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17470. {
  17471. front: {
  17472. height: math.unit(8, "feet"),
  17473. weight: math.unit(600, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/kyrehx/front.svg",
  17477. extra: 1195 / 1095,
  17478. bottom: 0.034
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Micro",
  17485. height: math.unit(2, "inches")
  17486. },
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(8, "feet"),
  17490. default: true
  17491. },
  17492. {
  17493. name: "Macro",
  17494. height: math.unit(255, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17503. weight: math.unit(184, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/xang/front.svg",
  17507. extra: 845 / 755
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17515. default: true
  17516. },
  17517. {
  17518. name: "Macro",
  17519. height: math.unit(0.935 * 146, "feet")
  17520. },
  17521. {
  17522. name: "Megamacro",
  17523. height: math.unit(0.935 * 3, "miles")
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17529. {
  17530. frontDressed: {
  17531. height: math.unit(5 + 7 / 12, "feet"),
  17532. weight: math.unit(140, "lb"),
  17533. name: "Front (Dressed)",
  17534. image: {
  17535. source: "./media/characters/doc-weardno/front-dressed.svg",
  17536. extra: 263 / 234
  17537. }
  17538. },
  17539. backDressed: {
  17540. height: math.unit(5 + 7 / 12, "feet"),
  17541. weight: math.unit(140, "lb"),
  17542. name: "Back (Dressed)",
  17543. image: {
  17544. source: "./media/characters/doc-weardno/back-dressed.svg",
  17545. extra: 266 / 238
  17546. }
  17547. },
  17548. front: {
  17549. height: math.unit(5 + 7 / 12, "feet"),
  17550. weight: math.unit(140, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/doc-weardno/front.svg",
  17554. extra: 254 / 233
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Micro",
  17561. height: math.unit(3, "inches")
  17562. },
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(5 + 7 / 12, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(25, "feet")
  17571. },
  17572. {
  17573. name: "Megamacro",
  17574. height: math.unit(2, "miles")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(6 + 2 / 12, "feet"),
  17583. weight: math.unit(153, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/seth-whilst/front.svg",
  17587. bottom: 0.07
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Micro",
  17594. height: math.unit(5, "inches")
  17595. },
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6 + 2 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(3, "inches"),
  17608. weight: math.unit(8, "grams"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/pocket-jabari/front.svg",
  17612. extra: 1024 / 974,
  17613. bottom: 0.039
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Minimicro",
  17620. height: math.unit(8, "mm")
  17621. },
  17622. {
  17623. name: "Micro",
  17624. height: math.unit(3, "inches"),
  17625. default: true
  17626. },
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(3, "feet")
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17635. {
  17636. front: {
  17637. height: math.unit(15, "feet"),
  17638. weight: math.unit(3280, "lb"),
  17639. name: "Front",
  17640. image: {
  17641. source: "./media/characters/sapphy/front.svg",
  17642. extra: 671 / 577,
  17643. bottom: 0.085
  17644. }
  17645. },
  17646. back: {
  17647. height: math.unit(15, "feet"),
  17648. weight: math.unit(3280, "lb"),
  17649. name: "Back",
  17650. image: {
  17651. source: "./media/characters/sapphy/back.svg",
  17652. extra: 631 / 607,
  17653. bottom: 0.045
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(15, "feet")
  17661. },
  17662. {
  17663. name: "Casual Macro",
  17664. height: math.unit(120, "feet")
  17665. },
  17666. {
  17667. name: "Macro",
  17668. height: math.unit(2150, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Megamacro",
  17673. height: math.unit(8, "miles")
  17674. },
  17675. {
  17676. name: "Galaxy Mom",
  17677. height: math.unit(6, "megalightyears")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(6, "feet"),
  17686. weight: math.unit(170, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/kiro/front.svg",
  17690. extra: 1064 / 1012,
  17691. bottom: 0.052
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Micro",
  17698. height: math.unit(6, "inches")
  17699. },
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(6, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(72, "feet")
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(5 + 9 / 12, "feet"),
  17716. weight: math.unit(175, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/irishfox/front.svg",
  17720. extra: 1912 / 1680,
  17721. bottom: 0.02
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Nano",
  17728. height: math.unit(1, "mm")
  17729. },
  17730. {
  17731. name: "Micro",
  17732. height: math.unit(2, "inches")
  17733. },
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(5 + 9 / 12, "feet"),
  17737. default: true
  17738. },
  17739. {
  17740. name: "Macro",
  17741. height: math.unit(45, "feet")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(6 + 1 / 12, "feet"),
  17750. weight: math.unit(150, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/aronai-sieyes/front.svg",
  17754. extra: 1556 / 1480,
  17755. bottom: 0.015
  17756. }
  17757. },
  17758. side: {
  17759. height: math.unit(6 + 1 / 12, "feet"),
  17760. weight: math.unit(150, "lb"),
  17761. name: "Side",
  17762. image: {
  17763. source: "./media/characters/aronai-sieyes/side.svg",
  17764. extra: 1433 / 1390,
  17765. bottom: 0.0393
  17766. }
  17767. },
  17768. back: {
  17769. height: math.unit(6 + 1 / 12, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Back",
  17772. image: {
  17773. source: "./media/characters/aronai-sieyes/back.svg",
  17774. extra: 1544 / 1494,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. frontClothed: {
  17779. height: math.unit(6 + 1 / 12, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Front (Clothed)",
  17782. image: {
  17783. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17784. extra: 1582 / 1527
  17785. }
  17786. },
  17787. feral: {
  17788. height: math.unit(18, "feet"),
  17789. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17790. name: "Feral",
  17791. image: {
  17792. source: "./media/characters/aronai-sieyes/feral.svg",
  17793. extra: 1530 / 1240,
  17794. bottom: 0.035
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Micro",
  17801. height: math.unit(2, "inches")
  17802. },
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(6 + 1 / 12, "feet"),
  17806. default: true
  17807. }
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(12, "feet"),
  17815. weight: math.unit(410, "kg"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/xuna/front.svg",
  17819. extra: 2184 / 1980
  17820. }
  17821. },
  17822. side: {
  17823. height: math.unit(12, "feet"),
  17824. weight: math.unit(410, "kg"),
  17825. name: "Side",
  17826. image: {
  17827. source: "./media/characters/xuna/side.svg",
  17828. extra: 2184 / 1980
  17829. }
  17830. },
  17831. back: {
  17832. height: math.unit(12, "feet"),
  17833. weight: math.unit(410, "kg"),
  17834. name: "Back",
  17835. image: {
  17836. source: "./media/characters/xuna/back.svg",
  17837. extra: 2184 / 1980
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Nano glow",
  17844. height: math.unit(10, "nm")
  17845. },
  17846. {
  17847. name: "Micro floof",
  17848. height: math.unit(0.3, "m")
  17849. },
  17850. {
  17851. name: "Huggable softy boi",
  17852. height: math.unit(3.6576, "m"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Admirable floof",
  17857. height: math.unit(80, "meters")
  17858. },
  17859. {
  17860. name: "Gentle macro",
  17861. height: math.unit(300, "meters")
  17862. },
  17863. {
  17864. name: "Very careful floof",
  17865. height: math.unit(3200, "meters")
  17866. },
  17867. {
  17868. name: "The mega floof",
  17869. height: math.unit(36000, "meters")
  17870. },
  17871. {
  17872. name: "Giga-fur-Wicker",
  17873. height: math.unit(4800000, "meters")
  17874. },
  17875. {
  17876. name: "Licky world",
  17877. height: math.unit(20000000, "meters")
  17878. },
  17879. {
  17880. name: "Floofy cyan sun",
  17881. height: math.unit(1500000000, "meters")
  17882. },
  17883. {
  17884. name: "Milky Wicker",
  17885. height: math.unit(1000000000000000000000, "meters")
  17886. },
  17887. {
  17888. name: "The observing Wicker",
  17889. height: math.unit(999999999999999999999999999, "meters")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(5 + 9 / 12, "feet"),
  17898. weight: math.unit(150, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/arokha-sieyes/front.svg",
  17902. extra: 1425 / 1284,
  17903. bottom: 0.05
  17904. }
  17905. },
  17906. },
  17907. [
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(5 + 9 / 12, "feet")
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(30, "meters"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(6, "feet"),
  17924. weight: math.unit(180, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/arokh-sieyes/front.svg",
  17928. extra: 1830 / 1769,
  17929. bottom: 0.01
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(6, "feet")
  17937. },
  17938. {
  17939. name: "Macro",
  17940. height: math.unit(30, "meters"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17947. {
  17948. side: {
  17949. height: math.unit(13 + 1 / 12, "feet"),
  17950. weight: math.unit(8.5, "tonnes"),
  17951. name: "Side",
  17952. image: {
  17953. source: "./media/characters/goldeneye/side.svg",
  17954. extra: 1182 / 778,
  17955. bottom: 0.067
  17956. }
  17957. },
  17958. paw: {
  17959. height: math.unit(3.4, "feet"),
  17960. name: "Paw",
  17961. image: {
  17962. source: "./media/characters/goldeneye/paw.svg"
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(13 + 1 / 12, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17976. {
  17977. front: {
  17978. height: math.unit(6 + 1 / 12, "feet"),
  17979. weight: math.unit(210, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/leonardo-lycheborne/front.svg",
  17983. extra: 390 / 365,
  17984. bottom: 0.032
  17985. }
  17986. },
  17987. side: {
  17988. height: math.unit(6 + 1 / 12, "feet"),
  17989. weight: math.unit(210, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/leonardo-lycheborne/side.svg",
  17993. extra: 390 / 365,
  17994. bottom: 0.005
  17995. }
  17996. },
  17997. back: {
  17998. height: math.unit(6 + 1 / 12, "feet"),
  17999. weight: math.unit(210, "lb"),
  18000. name: "Back",
  18001. image: {
  18002. source: "./media/characters/leonardo-lycheborne/back.svg",
  18003. extra: 392 / 366,
  18004. bottom: 0.01
  18005. }
  18006. },
  18007. hand: {
  18008. height: math.unit(1.08, "feet"),
  18009. name: "Hand",
  18010. image: {
  18011. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18012. }
  18013. },
  18014. foot: {
  18015. height: math.unit(1.32, "feet"),
  18016. name: "Foot",
  18017. image: {
  18018. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18019. }
  18020. },
  18021. were: {
  18022. height: math.unit(20, "feet"),
  18023. weight: math.unit(7800, "lb"),
  18024. name: "Were",
  18025. image: {
  18026. source: "./media/characters/leonardo-lycheborne/were.svg",
  18027. extra: 308 / 294,
  18028. bottom: 0.048
  18029. }
  18030. },
  18031. feral: {
  18032. height: math.unit(7.5, "feet"),
  18033. weight: math.unit(600, "lb"),
  18034. name: "Feral",
  18035. image: {
  18036. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18037. extra: 210 / 186,
  18038. bottom: 0.108
  18039. }
  18040. },
  18041. taur: {
  18042. height: math.unit(11, "feet"),
  18043. weight: math.unit(3300, "lb"),
  18044. name: "Taur",
  18045. image: {
  18046. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18047. extra: 320 / 303,
  18048. bottom: 0.025
  18049. }
  18050. },
  18051. barghest: {
  18052. height: math.unit(11, "feet"),
  18053. weight: math.unit(1300, "lb"),
  18054. name: "Barghest",
  18055. image: {
  18056. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18057. extra: 323 / 302,
  18058. bottom: 0.027
  18059. }
  18060. },
  18061. dick: {
  18062. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18063. name: "Dick",
  18064. image: {
  18065. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18066. }
  18067. },
  18068. dickWere: {
  18069. height: math.unit((20) / 3.8, "feet"),
  18070. name: "Dick (Were)",
  18071. image: {
  18072. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(6 + 1 / 12, "feet"),
  18080. default: true
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18086. {
  18087. front: {
  18088. height: math.unit(10, "feet"),
  18089. weight: math.unit(350, "lb"),
  18090. name: "Front",
  18091. image: {
  18092. source: "./media/characters/jet/front.svg",
  18093. extra: 2050 / 1980,
  18094. bottom: 0.013
  18095. }
  18096. },
  18097. back: {
  18098. height: math.unit(10, "feet"),
  18099. weight: math.unit(350, "lb"),
  18100. name: "Back",
  18101. image: {
  18102. source: "./media/characters/jet/back.svg",
  18103. extra: 2050 / 1980,
  18104. bottom: 0.013
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Micro",
  18111. height: math.unit(6, "inches")
  18112. },
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(10, "feet"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(100, "feet")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(15, "feet"),
  18129. weight: math.unit(2800, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/tanarath/front.svg",
  18133. extra: 2392 / 2220,
  18134. bottom: 0.03
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(15, "feet"),
  18139. weight: math.unit(2800, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/tanarath/back.svg",
  18143. extra: 2392 / 2220,
  18144. bottom: 0.03
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(15, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18158. {
  18159. front: {
  18160. height: math.unit(7 + 1 / 12, "feet"),
  18161. weight: math.unit(175, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/patty-cattybatty/front.svg",
  18165. extra: 908 / 874,
  18166. bottom: 0.025
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(1, "inch")
  18174. },
  18175. {
  18176. name: "Normal",
  18177. height: math.unit(7 + 1 / 12, "feet")
  18178. },
  18179. {
  18180. name: "Mini Macro",
  18181. height: math.unit(155, "feet")
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(1077, "feet")
  18186. },
  18187. {
  18188. name: "Mega Macro",
  18189. height: math.unit(47650, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Giga Macro",
  18194. height: math.unit(440, "miles")
  18195. },
  18196. {
  18197. name: "Tera Macro",
  18198. height: math.unit(8700, "miles")
  18199. },
  18200. {
  18201. name: "Planetary Macro",
  18202. height: math.unit(32700, "miles")
  18203. },
  18204. {
  18205. name: "Solar Macro",
  18206. height: math.unit(550000, "miles")
  18207. },
  18208. {
  18209. name: "Celestial Macro",
  18210. height: math.unit(2.5, "AU")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(4 + 5 / 12, "feet"),
  18219. weight: math.unit(90, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/cappu/front.svg",
  18223. extra: 1247 / 1152,
  18224. bottom: 0.012
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(4 + 5 / 12, "feet"),
  18232. default: true
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18238. {
  18239. frontDressed: {
  18240. height: math.unit(70, "cm"),
  18241. weight: math.unit(6, "kg"),
  18242. name: "Front (Dressed)",
  18243. image: {
  18244. source: "./media/characters/sebi/front-dressed.svg",
  18245. extra: 713.5 / 686.5,
  18246. bottom: 0.003
  18247. }
  18248. },
  18249. front: {
  18250. height: math.unit(70, "cm"),
  18251. weight: math.unit(5, "kg"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/sebi/front.svg",
  18255. extra: 713.5 / 686.5,
  18256. bottom: 0.003
  18257. }
  18258. }
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(70, "cm"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(8, "meters")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(150, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/typhek/front.svg",
  18281. extra: 1948 / 1929,
  18282. bottom: 0.025
  18283. }
  18284. },
  18285. side: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(150, "lb"),
  18288. name: "Side",
  18289. image: {
  18290. source: "./media/characters/typhek/side.svg",
  18291. extra: 2034 / 2010,
  18292. bottom: 0.003
  18293. }
  18294. },
  18295. back: {
  18296. height: math.unit(6, "feet"),
  18297. weight: math.unit(150, "lb"),
  18298. name: "Back",
  18299. image: {
  18300. source: "./media/characters/typhek/back.svg",
  18301. extra: 2005 / 1978,
  18302. bottom: 0.004
  18303. }
  18304. },
  18305. palm: {
  18306. height: math.unit(1.2, "feet"),
  18307. name: "Palm",
  18308. image: {
  18309. source: "./media/characters/typhek/palm.svg"
  18310. }
  18311. },
  18312. fist: {
  18313. height: math.unit(1.1, "feet"),
  18314. name: "Fist",
  18315. image: {
  18316. source: "./media/characters/typhek/fist.svg"
  18317. }
  18318. },
  18319. foot: {
  18320. height: math.unit(1.57, "feet"),
  18321. name: "Foot",
  18322. image: {
  18323. source: "./media/characters/typhek/foot.svg"
  18324. }
  18325. },
  18326. sole: {
  18327. height: math.unit(2.05, "feet"),
  18328. name: "Sole",
  18329. image: {
  18330. source: "./media/characters/typhek/sole.svg"
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Macro",
  18337. height: math.unit(40, "stories"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(1, "mile")
  18343. },
  18344. {
  18345. name: "Gigamacro",
  18346. height: math.unit(4000, "solarradii")
  18347. },
  18348. {
  18349. name: "Universal",
  18350. height: math.unit(1.1, "universes")
  18351. }
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18356. {
  18357. side: {
  18358. height: math.unit(5 + 7 / 12, "feet"),
  18359. weight: math.unit(150, "lb"),
  18360. name: "Side",
  18361. image: {
  18362. source: "./media/characters/kassy/side.svg",
  18363. extra: 1280 / 1225,
  18364. bottom: 0.002
  18365. }
  18366. },
  18367. front: {
  18368. height: math.unit(5 + 7 / 12, "feet"),
  18369. weight: math.unit(150, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/kassy/front.svg",
  18373. extra: 1280 / 1225,
  18374. bottom: 0.025
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. weight: math.unit(150, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/kassy/back.svg",
  18383. extra: 1280 / 1225,
  18384. bottom: 0.002
  18385. }
  18386. },
  18387. foot: {
  18388. height: math.unit(1.266, "feet"),
  18389. name: "Foot",
  18390. image: {
  18391. source: "./media/characters/kassy/foot.svg"
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(5 + 7 / 12, "feet")
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(137, "feet"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Megamacro",
  18407. height: math.unit(1, "mile")
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(6 + 1 / 12, "feet"),
  18416. weight: math.unit(200, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/neil/front.svg",
  18420. extra: 1326 / 1250,
  18421. bottom: 0.023
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(6 + 1 / 12, "feet"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Macro",
  18433. height: math.unit(200, "feet")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(5 + 9 / 12, "feet"),
  18442. weight: math.unit(190, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/atticus/front.svg",
  18446. extra: 2934 / 2785,
  18447. bottom: 0.025
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(5 + 9 / 12, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(180, "feet")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18465. {
  18466. side: {
  18467. height: math.unit(9, "feet"),
  18468. weight: math.unit(650, "lb"),
  18469. name: "Side",
  18470. image: {
  18471. source: "./media/characters/milo/side.svg",
  18472. extra: 2644 / 2310,
  18473. bottom: 0.032
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(9, "feet"),
  18481. default: true
  18482. },
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(300, "feet")
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18491. {
  18492. side: {
  18493. height: math.unit(8, "meters"),
  18494. weight: math.unit(90000, "kg"),
  18495. name: "Side",
  18496. image: {
  18497. source: "./media/characters/ijzer/side.svg",
  18498. extra: 2756 / 1600,
  18499. bottom: 0.01
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Small",
  18506. height: math.unit(3, "meters")
  18507. },
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(8, "meters"),
  18511. default: true
  18512. },
  18513. {
  18514. name: "Normal+",
  18515. height: math.unit(10, "meters")
  18516. },
  18517. {
  18518. name: "Bigger",
  18519. height: math.unit(24, "meters")
  18520. },
  18521. {
  18522. name: "Huge",
  18523. height: math.unit(80, "meters")
  18524. },
  18525. ]
  18526. ))
  18527. characterMakers.push(() => makeCharacter(
  18528. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18529. {
  18530. front: {
  18531. height: math.unit(6 + 2 / 12, "feet"),
  18532. weight: math.unit(153, "lb"),
  18533. name: "Front",
  18534. image: {
  18535. source: "./media/characters/luca-cervicum/front.svg",
  18536. extra: 370 / 327,
  18537. bottom: 0.015
  18538. }
  18539. },
  18540. back: {
  18541. height: math.unit(6 + 2 / 12, "feet"),
  18542. weight: math.unit(153, "lb"),
  18543. name: "Back",
  18544. image: {
  18545. source: "./media/characters/luca-cervicum/back.svg",
  18546. extra: 367 / 333,
  18547. bottom: 0.005
  18548. }
  18549. },
  18550. frontGear: {
  18551. height: math.unit(6 + 2 / 12, "feet"),
  18552. weight: math.unit(173, "lb"),
  18553. name: "Front (Gear)",
  18554. image: {
  18555. source: "./media/characters/luca-cervicum/front-gear.svg",
  18556. extra: 377 / 333,
  18557. bottom: 0.006
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(6 + 2 / 12, "feet"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(6 + 1 / 12, "feet"),
  18574. weight: math.unit(304, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/oliver/front.svg",
  18578. extra: 157 / 143,
  18579. bottom: 0.08
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(6 + 1 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(5 + 7 / 12, "feet"),
  18596. weight: math.unit(140, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/shane/front.svg",
  18600. extra: 304 / 289,
  18601. bottom: 0.005
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(5 + 7 / 12, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(5 + 9 / 12, "feet"),
  18618. weight: math.unit(178, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/shin/front.svg",
  18622. extra: 159 / 151,
  18623. bottom: 0.015
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(5 + 9 / 12, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(5 + 10 / 12, "feet"),
  18640. weight: math.unit(168, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/xerxes/front.svg",
  18644. extra: 282 / 260,
  18645. bottom: 0.045
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(5 + 10 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(6 + 7 / 12, "feet"),
  18662. weight: math.unit(208, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/chaska/front.svg",
  18666. extra: 332 / 319,
  18667. bottom: 0.015
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(6 + 7 / 12, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(5 + 8 / 12, "feet"),
  18684. weight: math.unit(208, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/enuk/front.svg",
  18688. extra: 437 / 406,
  18689. bottom: 0.02
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(5 + 8 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(5 + 10 / 12, "feet"),
  18706. weight: math.unit(252, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/bruun/front.svg",
  18710. extra: 197 / 187,
  18711. bottom: 0.012
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(5 + 10 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(6 + 10 / 12, "feet"),
  18728. weight: math.unit(255, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/alexeev/front.svg",
  18732. extra: 213 / 200,
  18733. bottom: 0.05
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6 + 10 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(2 + 8 / 12, "feet"),
  18750. weight: math.unit(22, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/evelyn/front.svg",
  18754. extra: 208 / 180
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(2 + 8 / 12, "feet"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(5 + 9 / 12, "feet"),
  18771. weight: math.unit(139, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/inca/front.svg",
  18775. extra: 294 / 291,
  18776. bottom: 0.03
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(5 + 9 / 12, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(5 + 1 / 12, "feet"),
  18793. weight: math.unit(84, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/magdalene/front.svg",
  18797. extra: 293 / 273
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(5 + 1 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6 + 3 / 12, "feet"),
  18814. weight: math.unit(185, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/mera/front.svg",
  18818. extra: 291 / 277,
  18819. bottom: 0.03
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(6 + 3 / 12, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18833. {
  18834. front: {
  18835. height: math.unit(6 + 7 / 12, "feet"),
  18836. weight: math.unit(160, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/ceres/front.svg",
  18840. extra: 1023 / 950,
  18841. bottom: 0.027
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(6 + 7 / 12, "feet"),
  18846. weight: math.unit(160, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/ceres/back.svg",
  18850. extra: 1023 / 950
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(6 + 7 / 12, "feet"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(5 + 10 / 12, "feet"),
  18867. weight: math.unit(150, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/kris/front.svg",
  18871. extra: 885 / 803,
  18872. bottom: 0.03
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Normal",
  18879. height: math.unit(5 + 10 / 12, "feet"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(7, "feet"),
  18889. weight: math.unit(120, "kg"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/taluthus/front.svg",
  18893. extra: 903 / 833,
  18894. bottom: 0.015
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(7, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(300, "feet")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(5 + 9 / 12, "feet"),
  18915. weight: math.unit(145, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/dawn/front.svg",
  18919. extra: 2094 / 2016,
  18920. bottom: 0.025
  18921. }
  18922. },
  18923. back: {
  18924. height: math.unit(5 + 9 / 12, "feet"),
  18925. weight: math.unit(160, "lb"),
  18926. name: "Back",
  18927. image: {
  18928. source: "./media/characters/dawn/back.svg",
  18929. extra: 2112 / 2080,
  18930. bottom: 0.005
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(6 + 7 / 12, "feet"),
  18938. default: true
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18944. {
  18945. anthro: {
  18946. height: math.unit(8 + 3 / 12, "feet"),
  18947. weight: math.unit(450, "lb"),
  18948. name: "Anthro",
  18949. image: {
  18950. source: "./media/characters/arador/anthro.svg",
  18951. extra: 1835 / 1718,
  18952. bottom: 0.025
  18953. }
  18954. },
  18955. feral: {
  18956. height: math.unit(4, "feet"),
  18957. weight: math.unit(200, "lb"),
  18958. name: "Feral",
  18959. image: {
  18960. source: "./media/characters/arador/feral.svg",
  18961. extra: 1683 / 1514,
  18962. bottom: 0.07
  18963. }
  18964. },
  18965. },
  18966. [
  18967. {
  18968. name: "Normal",
  18969. height: math.unit(8 + 3 / 12, "feet")
  18970. },
  18971. {
  18972. name: "Macro",
  18973. height: math.unit(82.5, "feet"),
  18974. default: true
  18975. },
  18976. ]
  18977. ))
  18978. characterMakers.push(() => makeCharacter(
  18979. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18980. {
  18981. front: {
  18982. height: math.unit(5 + 10 / 12, "feet"),
  18983. weight: math.unit(125, "lb"),
  18984. name: "Front",
  18985. image: {
  18986. source: "./media/characters/dharsi/front.svg",
  18987. extra: 716 / 630,
  18988. bottom: 0.035
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Nano",
  18995. height: math.unit(100, "nm")
  18996. },
  18997. {
  18998. name: "Micro",
  18999. height: math.unit(2, "inches")
  19000. },
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 10 / 12, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(1000, "feet")
  19009. },
  19010. {
  19011. name: "Megamacro",
  19012. height: math.unit(10, "miles")
  19013. },
  19014. {
  19015. name: "Gigamacro",
  19016. height: math.unit(3000, "miles")
  19017. },
  19018. {
  19019. name: "Teramacro",
  19020. height: math.unit(500000, "miles")
  19021. },
  19022. {
  19023. name: "Teramacro+",
  19024. height: math.unit(30, "galaxies")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(6, "feet"),
  19033. weight: math.unit(150, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/deathy/front.svg",
  19037. extra: 1552 / 1463,
  19038. bottom: 0.025
  19039. }
  19040. },
  19041. side: {
  19042. height: math.unit(6, "feet"),
  19043. weight: math.unit(150, "lb"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/deathy/side.svg",
  19047. extra: 1604 / 1455,
  19048. bottom: 0.025
  19049. }
  19050. },
  19051. back: {
  19052. height: math.unit(6, "feet"),
  19053. weight: math.unit(150, "lb"),
  19054. name: "Back",
  19055. image: {
  19056. source: "./media/characters/deathy/back.svg",
  19057. extra: 1580 / 1463,
  19058. bottom: 0.005
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Micro",
  19065. height: math.unit(5, "millimeters")
  19066. },
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(6 + 5 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19076. {
  19077. front: {
  19078. height: math.unit(16, "feet"),
  19079. weight: math.unit(4000, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/juniper/front.svg",
  19083. bottom: 0.04
  19084. }
  19085. },
  19086. },
  19087. [
  19088. {
  19089. name: "Normal",
  19090. height: math.unit(16, "feet"),
  19091. default: true
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(6, "feet"),
  19100. weight: math.unit(150, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/hipster/front.svg",
  19104. extra: 1312 / 1209,
  19105. bottom: 0.025
  19106. }
  19107. },
  19108. back: {
  19109. height: math.unit(6, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Back",
  19112. image: {
  19113. source: "./media/characters/hipster/back.svg",
  19114. extra: 1281 / 1196,
  19115. bottom: 0.01
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Micro",
  19122. height: math.unit(1, "mm")
  19123. },
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(4, "inches"),
  19127. default: true
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(500, "feet")
  19132. },
  19133. {
  19134. name: "Megamacro",
  19135. height: math.unit(1000, "miles")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(6, "feet"),
  19144. weight: math.unit(150, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/tendirmuldr/front.svg",
  19148. extra: 1878 / 1772,
  19149. bottom: 0.015
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Megamacro",
  19156. height: math.unit(1500, "miles"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19163. {
  19164. front: {
  19165. height: math.unit(14, "feet"),
  19166. weight: math.unit(12000, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/mort/front.svg",
  19170. extra: 365 / 318,
  19171. bottom: 0.01
  19172. }
  19173. },
  19174. side: {
  19175. height: math.unit(14, "feet"),
  19176. weight: math.unit(12000, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/mort/side.svg",
  19180. extra: 365 / 318,
  19181. bottom: 0.052
  19182. },
  19183. default: true
  19184. },
  19185. back: {
  19186. height: math.unit(14, "feet"),
  19187. weight: math.unit(12000, "lb"),
  19188. name: "Back",
  19189. image: {
  19190. source: "./media/characters/mort/back.svg",
  19191. extra: 371 / 332,
  19192. bottom: 0.18
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(14, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19206. {
  19207. front: {
  19208. height: math.unit(8, "feet"),
  19209. weight: math.unit(1, "ton"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/lycoa/front.svg",
  19213. extra: 1875 / 1789,
  19214. bottom: 0.022
  19215. }
  19216. },
  19217. back: {
  19218. height: math.unit(8, "feet"),
  19219. weight: math.unit(1, "ton"),
  19220. name: "Back",
  19221. image: {
  19222. source: "./media/characters/lycoa/back.svg",
  19223. extra: 1835 / 1781,
  19224. bottom: 0.03
  19225. }
  19226. },
  19227. head: {
  19228. height: math.unit(2.1, "feet"),
  19229. name: "Head",
  19230. image: {
  19231. source: "./media/characters/lycoa/head.svg"
  19232. }
  19233. },
  19234. tailmaw: {
  19235. height: math.unit(1.9, "feet"),
  19236. name: "Tailmaw",
  19237. image: {
  19238. source: "./media/characters/lycoa/tailmaw.svg"
  19239. }
  19240. },
  19241. tentacles: {
  19242. height: math.unit(2.1, "feet"),
  19243. name: "Tentacles",
  19244. image: {
  19245. source: "./media/characters/lycoa/tentacles.svg"
  19246. }
  19247. },
  19248. dick: {
  19249. height: math.unit(1.73, "feet"),
  19250. name: "Dick",
  19251. image: {
  19252. source: "./media/characters/lycoa/dick.svg"
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(8, "feet"),
  19260. default: true
  19261. },
  19262. {
  19263. name: "Macro",
  19264. height: math.unit(30, "feet")
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19270. {
  19271. front: {
  19272. height: math.unit(4 + 2 / 12, "feet"),
  19273. weight: math.unit(70, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/naldara/front.svg",
  19277. extra: 841 / 720,
  19278. bottom: 0.04
  19279. }
  19280. },
  19281. naga: {
  19282. height: math.unit(23, "feet"),
  19283. weight: math.unit(15000, "kg"),
  19284. name: "Naga",
  19285. image: {
  19286. source: "./media/characters/naldara/naga.svg",
  19287. extra: 3290/2959,
  19288. bottom: 124/3432
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(4 + 2 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(13 + 7 / 12, "feet"),
  19305. weight: math.unit(1500, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/briar/front.svg",
  19309. extra: 626 / 596,
  19310. bottom: 0.08
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(13 + 7 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19324. {
  19325. side: {
  19326. height: math.unit(10, "feet"),
  19327. weight: math.unit(500, "lb"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/vanguard/side.svg",
  19331. extra: 502 / 425,
  19332. bottom: 0.087
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(10, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(7.5, "feet"),
  19349. weight: math.unit(2, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/artemis/front.svg",
  19353. extra: 1192 / 1075,
  19354. bottom: 0.07
  19355. }
  19356. },
  19357. frontNsfw: {
  19358. height: math.unit(7.5, "feet"),
  19359. weight: math.unit(2, "lb"),
  19360. name: "Front (NSFW)",
  19361. image: {
  19362. source: "./media/characters/artemis/front-nsfw.svg",
  19363. extra: 1192 / 1075,
  19364. bottom: 0.07
  19365. }
  19366. },
  19367. frontNsfwer: {
  19368. height: math.unit(7.5, "feet"),
  19369. weight: math.unit(2, "lb"),
  19370. name: "Front (NSFW-er)",
  19371. image: {
  19372. source: "./media/characters/artemis/front-nsfwer.svg",
  19373. extra: 1192 / 1075,
  19374. bottom: 0.07
  19375. }
  19376. },
  19377. side: {
  19378. height: math.unit(7.5, "feet"),
  19379. weight: math.unit(2, "lb"),
  19380. name: "Side",
  19381. image: {
  19382. source: "./media/characters/artemis/side.svg",
  19383. extra: 1192 / 1075,
  19384. bottom: 0.07
  19385. }
  19386. },
  19387. sideNsfw: {
  19388. height: math.unit(7.5, "feet"),
  19389. weight: math.unit(2, "lb"),
  19390. name: "Side (NSFW)",
  19391. image: {
  19392. source: "./media/characters/artemis/side-nsfw.svg",
  19393. extra: 1192 / 1075,
  19394. bottom: 0.07
  19395. }
  19396. },
  19397. sideNsfwer: {
  19398. height: math.unit(7.5, "feet"),
  19399. weight: math.unit(2, "lb"),
  19400. name: "Side (NSFW-er)",
  19401. image: {
  19402. source: "./media/characters/artemis/side-nsfwer.svg",
  19403. extra: 1192 / 1075,
  19404. bottom: 0.07
  19405. }
  19406. },
  19407. maw: {
  19408. height: math.unit(1.1, "feet"),
  19409. name: "Maw",
  19410. image: {
  19411. source: "./media/characters/artemis/maw.svg"
  19412. }
  19413. },
  19414. stomach: {
  19415. height: math.unit(0.95, "feet"),
  19416. name: "Stomach",
  19417. image: {
  19418. source: "./media/characters/artemis/stomach.svg"
  19419. }
  19420. },
  19421. dickCanine: {
  19422. height: math.unit(1, "feet"),
  19423. name: "Dick (Canine)",
  19424. image: {
  19425. source: "./media/characters/artemis/dick-canine.svg"
  19426. }
  19427. },
  19428. dickEquine: {
  19429. height: math.unit(0.85, "feet"),
  19430. name: "Dick (Equine)",
  19431. image: {
  19432. source: "./media/characters/artemis/dick-equine.svg"
  19433. }
  19434. },
  19435. dickExotic: {
  19436. height: math.unit(0.85, "feet"),
  19437. name: "Dick (Exotic)",
  19438. image: {
  19439. source: "./media/characters/artemis/dick-exotic.svg"
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(7.5, "feet"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Enlarged",
  19451. height: math.unit(12, "feet")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(5 + 3 / 12, "feet"),
  19460. weight: math.unit(160, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/kira/front.svg",
  19464. extra: 906 / 786,
  19465. bottom: 0.01
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(5 + 3 / 12, "feet"),
  19470. weight: math.unit(160, "lb"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/kira/back.svg",
  19474. extra: 882 / 757,
  19475. bottom: 0.005
  19476. }
  19477. },
  19478. frontDressed: {
  19479. height: math.unit(5 + 3 / 12, "feet"),
  19480. weight: math.unit(160, "lb"),
  19481. name: "Front (Dressed)",
  19482. image: {
  19483. source: "./media/characters/kira/front-dressed.svg",
  19484. extra: 906 / 786,
  19485. bottom: 0.01
  19486. }
  19487. },
  19488. beans: {
  19489. height: math.unit(0.92, "feet"),
  19490. name: "Beans",
  19491. image: {
  19492. source: "./media/characters/kira/beans.svg"
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(5 + 3 / 12, "feet"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(5 + 4 / 12, "feet"),
  19509. weight: math.unit(145, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/scramble/front.svg",
  19513. extra: 763 / 727,
  19514. bottom: 0.05
  19515. }
  19516. },
  19517. back: {
  19518. height: math.unit(5 + 4 / 12, "feet"),
  19519. weight: math.unit(145, "lb"),
  19520. name: "Back",
  19521. image: {
  19522. source: "./media/characters/scramble/back.svg",
  19523. extra: 826 / 737,
  19524. bottom: 0.002
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(5 + 4 / 12, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19538. {
  19539. side: {
  19540. height: math.unit(6 + 2 / 12, "feet"),
  19541. weight: math.unit(190, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/biscuit/side.svg",
  19545. extra: 858 / 791,
  19546. bottom: 0.044
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(6 + 2 / 12, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(5 + 2 / 12, "feet"),
  19563. weight: math.unit(120, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/poffin/front.svg",
  19567. extra: 786 / 680,
  19568. bottom: 0.005
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(5 + 2 / 12, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(6 + 3 / 12, "feet"),
  19585. weight: math.unit(519, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/dhari/front.svg",
  19589. extra: 1048 / 946,
  19590. bottom: 0.015
  19591. }
  19592. },
  19593. back: {
  19594. height: math.unit(6 + 3 / 12, "feet"),
  19595. weight: math.unit(519, "lb"),
  19596. name: "Back",
  19597. image: {
  19598. source: "./media/characters/dhari/back.svg",
  19599. extra: 1048 / 931,
  19600. bottom: 0.005
  19601. }
  19602. },
  19603. frontDressed: {
  19604. height: math.unit(6 + 3 / 12, "feet"),
  19605. weight: math.unit(519, "lb"),
  19606. name: "Front (Dressed)",
  19607. image: {
  19608. source: "./media/characters/dhari/front-dressed.svg",
  19609. extra: 1713 / 1546,
  19610. bottom: 0.02
  19611. }
  19612. },
  19613. backDressed: {
  19614. height: math.unit(6 + 3 / 12, "feet"),
  19615. weight: math.unit(519, "lb"),
  19616. name: "Back (Dressed)",
  19617. image: {
  19618. source: "./media/characters/dhari/back-dressed.svg",
  19619. extra: 1699 / 1537,
  19620. bottom: 0.01
  19621. }
  19622. },
  19623. maw: {
  19624. height: math.unit(0.95, "feet"),
  19625. name: "Maw",
  19626. image: {
  19627. source: "./media/characters/dhari/maw.svg"
  19628. }
  19629. },
  19630. wereFront: {
  19631. height: math.unit(12 + 8 / 12, "feet"),
  19632. weight: math.unit(4000, "lb"),
  19633. name: "Front (Were)",
  19634. image: {
  19635. source: "./media/characters/dhari/were-front.svg",
  19636. extra: 1065 / 969,
  19637. bottom: 0.015
  19638. }
  19639. },
  19640. wereBack: {
  19641. height: math.unit(12 + 8 / 12, "feet"),
  19642. weight: math.unit(4000, "lb"),
  19643. name: "Back (Were)",
  19644. image: {
  19645. source: "./media/characters/dhari/were-back.svg",
  19646. extra: 1065 / 969,
  19647. bottom: 0.012
  19648. }
  19649. },
  19650. wereMaw: {
  19651. height: math.unit(0.625, "meters"),
  19652. name: "Maw (Were)",
  19653. image: {
  19654. source: "./media/characters/dhari/were-maw.svg"
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(6 + 3 / 12, "feet"),
  19662. default: true
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19668. {
  19669. anthro: {
  19670. height: math.unit(5 + 7 / 12, "feet"),
  19671. weight: math.unit(175, "lb"),
  19672. name: "Anthro",
  19673. image: {
  19674. source: "./media/characters/rena-dyne/anthro.svg",
  19675. extra: 1849 / 1785,
  19676. bottom: 0.005
  19677. }
  19678. },
  19679. taur: {
  19680. height: math.unit(15 + 6 / 12, "feet"),
  19681. weight: math.unit(8000, "lb"),
  19682. name: "Taur",
  19683. image: {
  19684. source: "./media/characters/rena-dyne/taur.svg",
  19685. extra: 2315 / 2234,
  19686. bottom: 0.033
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(5 + 7 / 12, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(8, "feet"),
  19703. weight: math.unit(600, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/weremeep/front.svg",
  19707. extra: 967 / 862,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(8, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Lorg",
  19720. height: math.unit(12, "feet")
  19721. },
  19722. {
  19723. name: "Oh Lawd She Comin'",
  19724. height: math.unit(20, "feet")
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19730. {
  19731. front: {
  19732. height: math.unit(4, "feet"),
  19733. weight: math.unit(90, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/reza/front.svg",
  19737. extra: 1183 / 1111,
  19738. bottom: 0.017
  19739. }
  19740. },
  19741. back: {
  19742. height: math.unit(4, "feet"),
  19743. weight: math.unit(90, "lb"),
  19744. name: "Back",
  19745. image: {
  19746. source: "./media/characters/reza/back.svg",
  19747. extra: 1183 / 1111,
  19748. bottom: 0.01
  19749. }
  19750. },
  19751. drake: {
  19752. height: math.unit(30, "feet"),
  19753. weight: math.unit(246960, "lb"),
  19754. name: "Drake",
  19755. image: {
  19756. source: "./media/characters/reza/drake.svg",
  19757. extra: 2350 / 2024,
  19758. bottom: 60.7 / 2403
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(4, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19772. {
  19773. side: {
  19774. height: math.unit(15, "feet"),
  19775. weight: math.unit(14, "tons"),
  19776. name: "Side",
  19777. image: {
  19778. source: "./media/characters/athea/side.svg",
  19779. extra: 960 / 540,
  19780. bottom: 0.003
  19781. }
  19782. },
  19783. sitting: {
  19784. height: math.unit(6 * 2.85, "feet"),
  19785. weight: math.unit(14, "tons"),
  19786. name: "Sitting",
  19787. image: {
  19788. source: "./media/characters/athea/sitting.svg",
  19789. extra: 621 / 581,
  19790. bottom: 0.075
  19791. }
  19792. },
  19793. maw: {
  19794. height: math.unit(7.59498031496063, "feet"),
  19795. name: "Maw",
  19796. image: {
  19797. source: "./media/characters/athea/maw.svg"
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Lap Cat",
  19804. height: math.unit(2.5, "feet")
  19805. },
  19806. {
  19807. name: "Minimacro",
  19808. height: math.unit(15, "feet"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Macro",
  19813. height: math.unit(120, "feet")
  19814. },
  19815. {
  19816. name: "Macro+",
  19817. height: math.unit(640, "feet")
  19818. },
  19819. {
  19820. name: "Colossus",
  19821. height: math.unit(2.2, "miles")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(8 + 8 / 12, "feet"),
  19830. weight: math.unit(130, "kg"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/seroko/front.svg",
  19834. extra: 1385 / 1280,
  19835. bottom: 0.025
  19836. }
  19837. },
  19838. back: {
  19839. height: math.unit(8 + 8 / 12, "feet"),
  19840. weight: math.unit(130, "kg"),
  19841. name: "Back",
  19842. image: {
  19843. source: "./media/characters/seroko/back.svg",
  19844. extra: 1369 / 1238,
  19845. bottom: 0.018
  19846. }
  19847. },
  19848. frontDressed: {
  19849. height: math.unit(8 + 8 / 12, "feet"),
  19850. weight: math.unit(130, "kg"),
  19851. name: "Front (Dressed)",
  19852. image: {
  19853. source: "./media/characters/seroko/front-dressed.svg",
  19854. extra: 1366 / 1275,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(8 + 8 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(5.5, "feet"),
  19872. weight: math.unit(160, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/quatzi/front.svg",
  19876. extra: 2346 / 2242,
  19877. bottom: 0.015
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(5.5, "feet"),
  19885. default: true
  19886. },
  19887. {
  19888. name: "Big",
  19889. height: math.unit(7.7, "feet")
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 11 / 12, "feet"),
  19898. weight: math.unit(180, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/sen/front.svg",
  19902. extra: 1321 / 1254,
  19903. bottom: 0.015
  19904. }
  19905. },
  19906. side: {
  19907. height: math.unit(5 + 11 / 12, "feet"),
  19908. weight: math.unit(180, "lb"),
  19909. name: "Side",
  19910. image: {
  19911. source: "./media/characters/sen/side.svg",
  19912. extra: 1321 / 1254,
  19913. bottom: 0.007
  19914. }
  19915. },
  19916. back: {
  19917. height: math.unit(5 + 11 / 12, "feet"),
  19918. weight: math.unit(180, "lb"),
  19919. name: "Back",
  19920. image: {
  19921. source: "./media/characters/sen/back.svg",
  19922. extra: 1321 / 1254
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(5 + 11 / 12, "feet"),
  19930. default: true
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19936. {
  19937. front: {
  19938. height: math.unit(166.6, "cm"),
  19939. weight: math.unit(66.6, "kg"),
  19940. name: "Front",
  19941. image: {
  19942. source: "./media/characters/fruity/front.svg",
  19943. extra: 1510 / 1386,
  19944. bottom: 0.04
  19945. }
  19946. },
  19947. back: {
  19948. height: math.unit(166.6, "cm"),
  19949. weight: math.unit(66.6, "lb"),
  19950. name: "Back",
  19951. image: {
  19952. source: "./media/characters/fruity/back.svg",
  19953. extra: 1563 / 1435,
  19954. bottom: 0.005
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(166.6, "cm"),
  19962. default: true
  19963. },
  19964. {
  19965. name: "Demonic",
  19966. height: math.unit(166.6, "feet")
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19972. {
  19973. side: {
  19974. height: math.unit(10, "feet"),
  19975. weight: math.unit(500, "lb"),
  19976. name: "Side",
  19977. image: {
  19978. source: "./media/characters/zost/side.svg",
  19979. extra: 966 / 880,
  19980. bottom: 0.075
  19981. }
  19982. },
  19983. mawFront: {
  19984. height: math.unit(1.08, "meters"),
  19985. name: "Maw (Front)",
  19986. image: {
  19987. source: "./media/characters/zost/maw-front.svg"
  19988. }
  19989. },
  19990. mawSide: {
  19991. height: math.unit(2.66, "feet"),
  19992. name: "Maw (Side)",
  19993. image: {
  19994. source: "./media/characters/zost/maw-side.svg"
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(10, "feet"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 4 / 12, "feet"),
  20011. weight: math.unit(120, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/luci/front.svg",
  20015. extra: 1985 / 1884,
  20016. bottom: 0.04
  20017. }
  20018. },
  20019. back: {
  20020. height: math.unit(5 + 4 / 12, "feet"),
  20021. weight: math.unit(120, "lb"),
  20022. name: "Back",
  20023. image: {
  20024. source: "./media/characters/luci/back.svg",
  20025. extra: 1892 / 1791,
  20026. bottom: 0.002
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(5 + 4 / 12, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(1500, "feet"),
  20043. weight: math.unit(3.8e6, "tons"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/2th/front.svg",
  20047. extra: 3489 / 3350,
  20048. bottom: 0.1
  20049. }
  20050. },
  20051. foot: {
  20052. height: math.unit(461, "feet"),
  20053. name: "Foot",
  20054. image: {
  20055. source: "./media/characters/2th/foot.svg"
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "\"Micro\"",
  20062. height: math.unit(15 + 7 / 12, "feet")
  20063. },
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(1500, "feet"),
  20067. default: true
  20068. },
  20069. {
  20070. name: "Macro",
  20071. height: math.unit(5000, "feet")
  20072. },
  20073. {
  20074. name: "Megamacro",
  20075. height: math.unit(15, "miles")
  20076. },
  20077. {
  20078. name: "Gigamacro",
  20079. height: math.unit(4000, "miles")
  20080. },
  20081. {
  20082. name: "Galactic",
  20083. height: math.unit(50, "AU")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(5 + 6 / 12, "feet"),
  20092. weight: math.unit(220, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/amethyst/front.svg",
  20096. extra: 2078 / 2040,
  20097. bottom: 0.045
  20098. }
  20099. },
  20100. back: {
  20101. height: math.unit(5 + 6 / 12, "feet"),
  20102. weight: math.unit(220, "lb"),
  20103. name: "Back",
  20104. image: {
  20105. source: "./media/characters/amethyst/back.svg",
  20106. extra: 2021 / 1989,
  20107. bottom: 0.02
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(5 + 6 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(4 + 11 / 12, "feet"),
  20124. weight: math.unit(120, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/yumi-akiyama/front.svg",
  20128. extra: 1327 / 1235,
  20129. bottom: 0.02
  20130. }
  20131. },
  20132. back: {
  20133. height: math.unit(4 + 11 / 12, "feet"),
  20134. weight: math.unit(120, "lb"),
  20135. name: "Back",
  20136. image: {
  20137. source: "./media/characters/yumi-akiyama/back.svg",
  20138. extra: 1287 / 1245,
  20139. bottom: 0.002
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Galactic",
  20146. height: math.unit(50, "galaxies"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Universal",
  20151. height: math.unit(100, "universes")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8, "feet"),
  20160. weight: math.unit(500, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/rifter-yrmori/front.svg",
  20164. extra: 1180 / 1125,
  20165. bottom: 0.02
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(8, "feet"),
  20170. weight: math.unit(500, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/rifter-yrmori/back.svg",
  20174. extra: 1190 / 1145,
  20175. bottom: 0.001
  20176. }
  20177. },
  20178. wings: {
  20179. height: math.unit(7.75, "feet"),
  20180. weight: math.unit(500, "lb"),
  20181. name: "Wings",
  20182. image: {
  20183. source: "./media/characters/rifter-yrmori/wings.svg",
  20184. extra: 1357 / 1285
  20185. }
  20186. },
  20187. maw: {
  20188. height: math.unit(0.8, "feet"),
  20189. name: "Maw",
  20190. image: {
  20191. source: "./media/characters/rifter-yrmori/maw.svg"
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(8, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(42, "meters")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20209. {
  20210. were: {
  20211. height: math.unit(25 + 6 / 12, "feet"),
  20212. weight: math.unit(10000, "lb"),
  20213. name: "Were",
  20214. image: {
  20215. source: "./media/characters/tahajin/were.svg",
  20216. extra: 801 / 770,
  20217. bottom: 0.042
  20218. }
  20219. },
  20220. aquatic: {
  20221. height: math.unit(6 + 4 / 12, "feet"),
  20222. weight: math.unit(160, "lb"),
  20223. name: "Aquatic",
  20224. image: {
  20225. source: "./media/characters/tahajin/aquatic.svg",
  20226. extra: 572 / 542,
  20227. bottom: 0.04
  20228. }
  20229. },
  20230. chow: {
  20231. height: math.unit(8 + 11 / 12, "feet"),
  20232. weight: math.unit(450, "lb"),
  20233. name: "Chow",
  20234. image: {
  20235. source: "./media/characters/tahajin/chow.svg",
  20236. extra: 660 / 640,
  20237. bottom: 0.015
  20238. }
  20239. },
  20240. demiNaga: {
  20241. height: math.unit(6 + 8 / 12, "feet"),
  20242. weight: math.unit(300, "lb"),
  20243. name: "Demi Naga",
  20244. image: {
  20245. source: "./media/characters/tahajin/demi-naga.svg",
  20246. extra: 643 / 615,
  20247. bottom: 0.1
  20248. }
  20249. },
  20250. data: {
  20251. height: math.unit(5, "inches"),
  20252. weight: math.unit(0.1, "lb"),
  20253. name: "Data",
  20254. image: {
  20255. source: "./media/characters/tahajin/data.svg"
  20256. }
  20257. },
  20258. fluu: {
  20259. height: math.unit(5 + 7 / 12, "feet"),
  20260. weight: math.unit(140, "lb"),
  20261. name: "Fluu",
  20262. image: {
  20263. source: "./media/characters/tahajin/fluu.svg",
  20264. extra: 628 / 592,
  20265. bottom: 0.02
  20266. }
  20267. },
  20268. starWarrior: {
  20269. height: math.unit(4 + 5 / 12, "feet"),
  20270. weight: math.unit(50, "lb"),
  20271. name: "Star Warrior",
  20272. image: {
  20273. source: "./media/characters/tahajin/star-warrior.svg"
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(25 + 6 / 12, "feet"),
  20281. default: true
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(8, "feet"),
  20290. weight: math.unit(350, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/gabira/front.svg",
  20294. extra: 608 / 580,
  20295. bottom: 0.03
  20296. }
  20297. },
  20298. back: {
  20299. height: math.unit(8, "feet"),
  20300. weight: math.unit(350, "lb"),
  20301. name: "Back",
  20302. image: {
  20303. source: "./media/characters/gabira/back.svg",
  20304. extra: 608 / 580,
  20305. bottom: 0.03
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(8, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20319. {
  20320. front: {
  20321. height: math.unit(5 + 3 / 12, "feet"),
  20322. weight: math.unit(137, "lb"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/sasha-katraine/front.svg",
  20326. bottom: 0.045
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(5, "inches")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(5 + 3 / 12, "feet"),
  20338. default: true
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20344. {
  20345. side: {
  20346. height: math.unit(4, "inches"),
  20347. weight: math.unit(200, "grams"),
  20348. name: "Side",
  20349. image: {
  20350. source: "./media/characters/der/side.svg",
  20351. extra: 719 / 400,
  20352. bottom: 30.6 / 749.9187
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Micro",
  20359. height: math.unit(4, "inches"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20366. {
  20367. side: {
  20368. height: math.unit(30, "meters"),
  20369. weight: math.unit(700, "tonnes"),
  20370. name: "Side",
  20371. image: {
  20372. source: "./media/characters/fixerdragon/side.svg",
  20373. extra: (1293.0514 - 116.03) / 1106.86,
  20374. bottom: 116.03 / 1293.0514
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Planck",
  20381. height: math.unit(1.6e-35, "meters")
  20382. },
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(0.4, "meters")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(30, "meters"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Megamacro",
  20394. height: math.unit(1.2, "megameters")
  20395. },
  20396. {
  20397. name: "Teramacro",
  20398. height: math.unit(130, "terameters")
  20399. },
  20400. {
  20401. name: "Yottamacro",
  20402. height: math.unit(6200, "yottameters")
  20403. },
  20404. ]
  20405. ));
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(8, "feet"),
  20411. weight: math.unit(250, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/kite/front.svg",
  20415. extra: 2796 / 2659,
  20416. bottom: 0.002
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(8, "feet"),
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(360, "feet")
  20429. },
  20430. {
  20431. name: "Megamacro",
  20432. height: math.unit(1500, "feet")
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(5 + 10 / 12, "feet"),
  20441. weight: math.unit(150, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/poojawa-vynar/front.svg",
  20445. extra: (1506.1547 - 55) / 1356.6,
  20446. bottom: 55 / 1506.1547
  20447. }
  20448. },
  20449. frontTailless: {
  20450. height: math.unit(5 + 10 / 12, "feet"),
  20451. weight: math.unit(150, "lb"),
  20452. name: "Front (Tailless)",
  20453. image: {
  20454. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20455. extra: (1506.1547 - 55) / 1356.6,
  20456. bottom: 55 / 1506.1547
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(5 + 10 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(293, "meters"),
  20473. weight: math.unit(70400, "tons"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/violette/front.svg",
  20477. extra: 1227 / 1180,
  20478. bottom: 0.005
  20479. }
  20480. },
  20481. back: {
  20482. height: math.unit(293, "meters"),
  20483. weight: math.unit(70400, "tons"),
  20484. name: "Back",
  20485. image: {
  20486. source: "./media/characters/violette/back.svg",
  20487. extra: 1227 / 1180,
  20488. bottom: 0.005
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(293, "meters"),
  20496. default: true
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20502. {
  20503. front: {
  20504. height: math.unit(1050, "feet"),
  20505. weight: math.unit(200000, "tons"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/alessandra/front.svg",
  20509. extra: 960 / 912,
  20510. bottom: 0.06
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Macro",
  20517. height: math.unit(1050, "feet")
  20518. },
  20519. {
  20520. name: "Macro+",
  20521. height: math.unit(900, "meters"),
  20522. default: true
  20523. },
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20528. {
  20529. front: {
  20530. height: math.unit(5, "feet"),
  20531. weight: math.unit(187, "lb"),
  20532. name: "Front",
  20533. image: {
  20534. source: "./media/characters/person/front.svg",
  20535. extra: 3087 / 2945,
  20536. bottom: 91 / 3181
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Micro",
  20543. height: math.unit(3, "inches")
  20544. },
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(5, "feet"),
  20548. default: true
  20549. },
  20550. {
  20551. name: "Macro",
  20552. height: math.unit(90, "feet")
  20553. },
  20554. {
  20555. name: "Max Size",
  20556. height: math.unit(280, "feet")
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(4.5, "meters"),
  20565. weight: math.unit(3200, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/ty/front.svg",
  20569. extra: 1038 / 960,
  20570. bottom: 31.156 / 1068
  20571. }
  20572. },
  20573. back: {
  20574. height: math.unit(4.5, "meters"),
  20575. weight: math.unit(3200, "lb"),
  20576. name: "Back",
  20577. image: {
  20578. source: "./media/characters/ty/back.svg",
  20579. extra: 1044 / 966,
  20580. bottom: 7.48 / 1049
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(4.5, "meters"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(5 + 4 / 12, "feet"),
  20597. weight: math.unit(115, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/rocky/front.svg",
  20601. extra: 1012 / 975,
  20602. bottom: 54 / 1066
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(5 + 4 / 12, "feet"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20616. {
  20617. upright: {
  20618. height: math.unit(6, "meters"),
  20619. weight: math.unit(4000, "kg"),
  20620. name: "Upright",
  20621. image: {
  20622. source: "./media/characters/ruin/upright.svg",
  20623. extra: 668 / 661,
  20624. bottom: 42 / 799.8396
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Normal",
  20631. height: math.unit(6, "meters"),
  20632. default: true
  20633. },
  20634. ]
  20635. ))
  20636. characterMakers.push(() => makeCharacter(
  20637. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20638. {
  20639. front: {
  20640. height: math.unit(5, "feet"),
  20641. weight: math.unit(106, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/robin/front.svg",
  20645. extra: 862 / 799,
  20646. bottom: 42.4 / 914.8856
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(5, "feet"),
  20654. default: true
  20655. },
  20656. ]
  20657. ))
  20658. characterMakers.push(() => makeCharacter(
  20659. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20660. {
  20661. side: {
  20662. height: math.unit(3, "feet"),
  20663. weight: math.unit(225, "lb"),
  20664. name: "Side",
  20665. image: {
  20666. source: "./media/characters/saian/side.svg",
  20667. extra: 566 / 356,
  20668. bottom: 79.7 / 643
  20669. }
  20670. },
  20671. maw: {
  20672. height: math.unit(2.85, "feet"),
  20673. name: "Maw",
  20674. image: {
  20675. source: "./media/characters/saian/maw.svg"
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(3, "feet"),
  20683. default: true
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20689. {
  20690. side: {
  20691. height: math.unit(8, "feet"),
  20692. weight: math.unit(300, "lb"),
  20693. name: "Side",
  20694. image: {
  20695. source: "./media/characters/equus-silvermane/side.svg",
  20696. extra: 2176 / 2050,
  20697. bottom: 65.7 / 2245
  20698. }
  20699. },
  20700. front: {
  20701. height: math.unit(8, "feet"),
  20702. weight: math.unit(300, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/equus-silvermane/front.svg",
  20706. extra: 4633 / 4400,
  20707. bottom: 71.3 / 4706.915
  20708. }
  20709. },
  20710. sideStepping: {
  20711. height: math.unit(8, "feet"),
  20712. weight: math.unit(300, "lb"),
  20713. name: "Side (Stepping)",
  20714. image: {
  20715. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20716. extra: 1968 / 1860,
  20717. bottom: 16.4 / 1989
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(8, "feet")
  20725. },
  20726. {
  20727. name: "Minimacro",
  20728. height: math.unit(75, "feet"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(150, "feet")
  20734. },
  20735. {
  20736. name: "Macro+",
  20737. height: math.unit(1000, "feet")
  20738. },
  20739. {
  20740. name: "Megamacro",
  20741. height: math.unit(1, "mile")
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20747. {
  20748. side: {
  20749. height: math.unit(20, "feet"),
  20750. weight: math.unit(30000, "kg"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/windar/side.svg",
  20754. extra: 1491 / 1248,
  20755. bottom: 82.56 / 1568
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(20, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20769. {
  20770. side: {
  20771. height: math.unit(15.66, "feet"),
  20772. weight: math.unit(150, "lb"),
  20773. name: "Side",
  20774. image: {
  20775. source: "./media/characters/melody/side.svg",
  20776. extra: 1097 / 944,
  20777. bottom: 11.8 / 1109
  20778. }
  20779. },
  20780. sideOutfit: {
  20781. height: math.unit(15.66, "feet"),
  20782. weight: math.unit(150, "lb"),
  20783. name: "Side (Outfit)",
  20784. image: {
  20785. source: "./media/characters/melody/side-outfit.svg",
  20786. extra: 1097 / 944,
  20787. bottom: 11.8 / 1109
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(15.66, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(8, "feet"),
  20804. weight: math.unit(325, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/windera/front.svg",
  20808. extra: 3180 / 2845,
  20809. bottom: 178 / 3365
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(8, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20823. {
  20824. front: {
  20825. height: math.unit(28.75, "feet"),
  20826. weight: math.unit(2000, "kg"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/sonear/front.svg",
  20830. extra: 1041.1 / 964.9,
  20831. bottom: 53.7 / 1096.6
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(28.75, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20845. {
  20846. side: {
  20847. height: math.unit(25.5, "feet"),
  20848. weight: math.unit(23000, "kg"),
  20849. name: "Side",
  20850. image: {
  20851. source: "./media/characters/kanara/side.svg"
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(25.5, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20865. {
  20866. side: {
  20867. height: math.unit(10, "feet"),
  20868. weight: math.unit(1000, "kg"),
  20869. name: "Side",
  20870. image: {
  20871. source: "./media/characters/ereus/side.svg",
  20872. extra: 1157 / 959,
  20873. bottom: 153 / 1312.5
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(10, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20887. {
  20888. side: {
  20889. height: math.unit(4.5, "feet"),
  20890. weight: math.unit(500, "lb"),
  20891. name: "Side",
  20892. image: {
  20893. source: "./media/characters/e-ter/side.svg",
  20894. extra: 1550 / 1248,
  20895. bottom: 146 / 1694
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Normal",
  20902. height: math.unit(4.5, "feet"),
  20903. default: true
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20909. {
  20910. side: {
  20911. height: math.unit(9.7, "feet"),
  20912. weight: math.unit(4000, "kg"),
  20913. name: "Side",
  20914. image: {
  20915. source: "./media/characters/yamie/side.svg"
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(9.7, "feet"),
  20923. default: true
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(50, "feet"),
  20932. weight: math.unit(50000, "kg"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/anders/front.svg",
  20936. extra: 570 / 539,
  20937. bottom: 14.7 / 586.7
  20938. }
  20939. },
  20940. },
  20941. [
  20942. {
  20943. name: "Large",
  20944. height: math.unit(50, "feet")
  20945. },
  20946. {
  20947. name: "Macro",
  20948. height: math.unit(2000, "feet"),
  20949. default: true
  20950. },
  20951. {
  20952. name: "Megamacro",
  20953. height: math.unit(12, "miles")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(7 + 2 / 12, "feet"),
  20962. weight: math.unit(300, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/reban/front.svg",
  20966. extra: 516 / 487,
  20967. bottom: 42.82 / 558.356
  20968. }
  20969. },
  20970. dick: {
  20971. height: math.unit(7 / 5, "feet"),
  20972. name: "Dick",
  20973. image: {
  20974. source: "./media/characters/reban/dick.svg"
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Natural Height",
  20981. height: math.unit(7 + 2 / 12, "feet")
  20982. },
  20983. {
  20984. name: "Macro",
  20985. height: math.unit(500, "feet"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Canon Height",
  20990. height: math.unit(50, "AU")
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(6, "feet"),
  20999. weight: math.unit(150, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/terrance-keayes/front.svg",
  21003. extra: 1.005,
  21004. bottom: 151 / 1615
  21005. }
  21006. },
  21007. side: {
  21008. height: math.unit(6, "feet"),
  21009. weight: math.unit(150, "lb"),
  21010. name: "Side",
  21011. image: {
  21012. source: "./media/characters/terrance-keayes/side.svg",
  21013. extra: 1.005,
  21014. bottom: 129.4 / 1544
  21015. }
  21016. },
  21017. back: {
  21018. height: math.unit(6, "feet"),
  21019. weight: math.unit(150, "lb"),
  21020. name: "Back",
  21021. image: {
  21022. source: "./media/characters/terrance-keayes/back.svg",
  21023. extra: 1.005,
  21024. bottom: 58.4 / 1557.3
  21025. }
  21026. },
  21027. dick: {
  21028. height: math.unit(6 * 0.208, "feet"),
  21029. name: "Dick",
  21030. image: {
  21031. source: "./media/characters/terrance-keayes/dick.svg"
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Canon Height",
  21038. height: math.unit(35, "miles"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21045. {
  21046. front: {
  21047. height: math.unit(6, "feet"),
  21048. weight: math.unit(150, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/ofelia/front.svg",
  21052. extra: 546 / 541,
  21053. bottom: 39 / 583
  21054. }
  21055. },
  21056. back: {
  21057. height: math.unit(6, "feet"),
  21058. weight: math.unit(150, "lb"),
  21059. name: "Back",
  21060. image: {
  21061. source: "./media/characters/ofelia/back.svg",
  21062. extra: 564 / 559.5,
  21063. bottom: 8.69 / 573.02
  21064. }
  21065. },
  21066. maw: {
  21067. height: math.unit(1, "feet"),
  21068. name: "Maw",
  21069. image: {
  21070. source: "./media/characters/ofelia/maw.svg"
  21071. }
  21072. },
  21073. foot: {
  21074. height: math.unit(1.949, "feet"),
  21075. name: "Foot",
  21076. image: {
  21077. source: "./media/characters/ofelia/foot.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Canon Height",
  21084. height: math.unit(2000, "miles"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(6, "feet"),
  21094. weight: math.unit(150, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/samuel/front.svg",
  21098. extra: 265 / 258,
  21099. bottom: 2 / 266.1566
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Macro",
  21106. height: math.unit(100, "feet"),
  21107. default: true
  21108. },
  21109. {
  21110. name: "Full Size",
  21111. height: math.unit(1000, "miles")
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(6, "feet"),
  21120. weight: math.unit(300, "lb"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/beishir-kiel/front.svg",
  21124. extra: 569 / 547,
  21125. bottom: 41.9 / 609
  21126. }
  21127. },
  21128. maw: {
  21129. height: math.unit(6 * 0.202, "feet"),
  21130. name: "Maw",
  21131. image: {
  21132. source: "./media/characters/beishir-kiel/maw.svg"
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(300, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(5 + 8 / 12, "feet"),
  21149. weight: math.unit(120, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/logan-grey/front.svg",
  21153. extra: 2539 / 2393,
  21154. bottom: 97.6 / 2636.37
  21155. }
  21156. },
  21157. frontAlt: {
  21158. height: math.unit(5 + 8 / 12, "feet"),
  21159. weight: math.unit(120, "lb"),
  21160. name: "Front (Alt)",
  21161. image: {
  21162. source: "./media/characters/logan-grey/front-alt.svg",
  21163. extra: 958 / 893,
  21164. bottom: 15 / 970.768
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(5 + 8 / 12, "feet"),
  21169. weight: math.unit(120, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/logan-grey/back.svg",
  21173. extra: 958 / 893,
  21174. bottom: 2.1881 / 970.9788
  21175. }
  21176. },
  21177. dick: {
  21178. height: math.unit(1.437, "feet"),
  21179. name: "Dick",
  21180. image: {
  21181. source: "./media/characters/logan-grey/dick.svg"
  21182. }
  21183. },
  21184. },
  21185. [
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(5 + 8 / 12, "feet")
  21189. },
  21190. {
  21191. name: "The 500 Foot Femboy",
  21192. height: math.unit(500, "feet"),
  21193. default: true
  21194. },
  21195. {
  21196. name: "Megmacro",
  21197. height: math.unit(20, "miles")
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(8 + 2 / 12, "feet"),
  21206. weight: math.unit(275, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/draganta/front.svg",
  21210. extra: 1177 / 1135,
  21211. bottom: 33.46 / 1212.1
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(8 + 6 / 12, "feet"),
  21219. default: true
  21220. },
  21221. {
  21222. name: "Macro",
  21223. height: math.unit(150, "feet")
  21224. },
  21225. {
  21226. name: "Megamacro",
  21227. height: math.unit(1000, "miles")
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(1.72, "m"),
  21236. weight: math.unit(80, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/voski/front.svg",
  21240. extra: 2076.22 / 2022.4,
  21241. bottom: 102.7 / 2177.3866
  21242. }
  21243. },
  21244. frontNsfw: {
  21245. height: math.unit(1.72, "m"),
  21246. weight: math.unit(80, "lb"),
  21247. name: "Front (NSFW)",
  21248. image: {
  21249. source: "./media/characters/voski/front-nsfw.svg",
  21250. extra: 2076.22 / 2022.4,
  21251. bottom: 102.7 / 2177.3866
  21252. }
  21253. },
  21254. back: {
  21255. height: math.unit(1.72, "m"),
  21256. weight: math.unit(80, "lb"),
  21257. name: "Back",
  21258. image: {
  21259. source: "./media/characters/voski/back.svg",
  21260. extra: 2104 / 2051,
  21261. bottom: 10.45 / 2113.63
  21262. }
  21263. },
  21264. },
  21265. [
  21266. {
  21267. name: "Normal",
  21268. height: math.unit(1.72, "m")
  21269. },
  21270. {
  21271. name: "Macro",
  21272. height: math.unit(55, "m"),
  21273. default: true
  21274. },
  21275. {
  21276. name: "Macro+",
  21277. height: math.unit(300, "m")
  21278. },
  21279. {
  21280. name: "Macro++",
  21281. height: math.unit(700, "m")
  21282. },
  21283. {
  21284. name: "Macro+++",
  21285. height: math.unit(4500, "m")
  21286. },
  21287. {
  21288. name: "Macro++++",
  21289. height: math.unit(45, "km")
  21290. },
  21291. {
  21292. name: "Macro+++++",
  21293. height: math.unit(1220, "km")
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(2.3, "m"),
  21302. weight: math.unit(304, "kg"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/icowom-lee/front.svg",
  21306. extra: 985 / 955,
  21307. bottom: 25.4 / 1012
  21308. }
  21309. },
  21310. fronttentacles: {
  21311. height: math.unit(2.3, "m"),
  21312. weight: math.unit(304, "kg"),
  21313. name: "Front-tentacles",
  21314. image: {
  21315. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21316. extra: 985 / 955,
  21317. bottom: 25.4 / 1012
  21318. }
  21319. },
  21320. back: {
  21321. height: math.unit(2.3, "m"),
  21322. weight: math.unit(304, "kg"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/icowom-lee/back.svg",
  21326. extra: 975 / 954,
  21327. bottom: 9.5 / 985
  21328. }
  21329. },
  21330. backtentacles: {
  21331. height: math.unit(2.3, "m"),
  21332. weight: math.unit(304, "kg"),
  21333. name: "Back-tentacles",
  21334. image: {
  21335. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21336. extra: 975 / 954,
  21337. bottom: 9.5 / 985
  21338. }
  21339. },
  21340. frontDressed: {
  21341. height: math.unit(2.3, "m"),
  21342. weight: math.unit(304, "kg"),
  21343. name: "Front (Dressed)",
  21344. image: {
  21345. source: "./media/characters/icowom-lee/front-dressed.svg",
  21346. extra: 3076 / 2933,
  21347. bottom: 51.4 / 3125.1889
  21348. }
  21349. },
  21350. rump: {
  21351. height: math.unit(0.776, "meters"),
  21352. name: "Rump",
  21353. image: {
  21354. source: "./media/characters/icowom-lee/rump.svg"
  21355. }
  21356. },
  21357. genitals: {
  21358. height: math.unit(0.78, "meters"),
  21359. name: "Genitals",
  21360. image: {
  21361. source: "./media/characters/icowom-lee/genitals.svg"
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(2.3, "meters"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(94, "meters"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(22, "meters"),
  21383. weight: math.unit(21000, "kg"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/shock-diamond/front.svg",
  21387. extra: 2204 / 2053,
  21388. bottom: 65 / 2239.47
  21389. }
  21390. },
  21391. frontNude: {
  21392. height: math.unit(22, "meters"),
  21393. weight: math.unit(21000, "kg"),
  21394. name: "Front (Nude)",
  21395. image: {
  21396. source: "./media/characters/shock-diamond/front-nude.svg",
  21397. extra: 2514 / 2285,
  21398. bottom: 13 / 2527.56
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(3, "meters")
  21406. },
  21407. {
  21408. name: "Macro",
  21409. height: math.unit(22, "meters"),
  21410. default: true
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21416. {
  21417. front: {
  21418. height: math.unit(5 + 4 / 12, "feet"),
  21419. weight: math.unit(120, "lb"),
  21420. name: "Front",
  21421. image: {
  21422. source: "./media/characters/rory/front.svg",
  21423. extra: 589 / 556,
  21424. bottom: 45.7 / 635.76
  21425. }
  21426. },
  21427. frontNude: {
  21428. height: math.unit(5 + 4 / 12, "feet"),
  21429. weight: math.unit(120, "lb"),
  21430. name: "Front (Nude)",
  21431. image: {
  21432. source: "./media/characters/rory/front-nude.svg",
  21433. extra: 589 / 556,
  21434. bottom: 45.7 / 635.76
  21435. }
  21436. },
  21437. side: {
  21438. height: math.unit(5 + 4 / 12, "feet"),
  21439. weight: math.unit(120, "lb"),
  21440. name: "Side",
  21441. image: {
  21442. source: "./media/characters/rory/side.svg",
  21443. extra: 597 / 564,
  21444. bottom: 55 / 653
  21445. }
  21446. },
  21447. back: {
  21448. height: math.unit(5 + 4 / 12, "feet"),
  21449. weight: math.unit(120, "lb"),
  21450. name: "Back",
  21451. image: {
  21452. source: "./media/characters/rory/back.svg",
  21453. extra: 620 / 585,
  21454. bottom: 8.86 / 630.43
  21455. }
  21456. },
  21457. dick: {
  21458. height: math.unit(0.86, "feet"),
  21459. name: "Dick",
  21460. image: {
  21461. source: "./media/characters/rory/dick.svg"
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 4 / 12, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Macro",
  21473. height: math.unit(100, "feet")
  21474. },
  21475. {
  21476. name: "Macro+",
  21477. height: math.unit(140, "feet")
  21478. },
  21479. {
  21480. name: "Macro++",
  21481. height: math.unit(300, "feet")
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(5 + 9 / 12, "feet"),
  21490. weight: math.unit(190, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/sprisk/front.svg",
  21494. extra: 1225 / 1180,
  21495. bottom: 42.7 / 1266.4
  21496. }
  21497. },
  21498. frontNsfw: {
  21499. height: math.unit(5 + 9 / 12, "feet"),
  21500. weight: math.unit(190, "lb"),
  21501. name: "Front (NSFW)",
  21502. image: {
  21503. source: "./media/characters/sprisk/front-nsfw.svg",
  21504. extra: 1225 / 1180,
  21505. bottom: 42.7 / 1266.4
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(5 + 9 / 12, "feet"),
  21510. weight: math.unit(190, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/sprisk/back.svg",
  21514. extra: 1247 / 1200,
  21515. bottom: 5.6 / 1253.04
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Tiny",
  21522. height: math.unit(2, "inches")
  21523. },
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(5 + 9 / 12, "feet"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Mini Macro",
  21531. height: math.unit(18, "feet")
  21532. },
  21533. {
  21534. name: "Macro",
  21535. height: math.unit(100, "feet")
  21536. },
  21537. {
  21538. name: "MACRO",
  21539. height: math.unit(50, "miles")
  21540. },
  21541. {
  21542. name: "M A C R O",
  21543. height: math.unit(300, "miles")
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21549. {
  21550. side: {
  21551. height: math.unit(15.6, "meters"),
  21552. weight: math.unit(700000, "kg"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/bunsen/side.svg",
  21556. extra: 1644 / 358
  21557. }
  21558. },
  21559. foot: {
  21560. height: math.unit(1.611 * 1644 / 358, "meter"),
  21561. name: "Foot",
  21562. image: {
  21563. source: "./media/characters/bunsen/foot.svg"
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Small",
  21570. height: math.unit(10, "feet")
  21571. },
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(15.6, "meters"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21581. {
  21582. front: {
  21583. height: math.unit(4 + 11 / 12, "feet"),
  21584. weight: math.unit(140, "lb"),
  21585. name: "Front",
  21586. image: {
  21587. source: "./media/characters/sesh/front.svg",
  21588. extra: 3420 / 3231,
  21589. bottom: 72 / 3949.5
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(4 + 11 / 12, "feet")
  21597. },
  21598. {
  21599. name: "Grown",
  21600. height: math.unit(15, "feet"),
  21601. default: true
  21602. },
  21603. {
  21604. name: "Macro",
  21605. height: math.unit(1500, "feet")
  21606. },
  21607. {
  21608. name: "Megamacro",
  21609. height: math.unit(30, "miles")
  21610. },
  21611. {
  21612. name: "Continental",
  21613. height: math.unit(3000, "miles")
  21614. },
  21615. {
  21616. name: "Gravity Mass",
  21617. height: math.unit(300000, "miles")
  21618. },
  21619. {
  21620. name: "Planet Buster",
  21621. height: math.unit(30000000, "miles")
  21622. },
  21623. {
  21624. name: "Big",
  21625. height: math.unit(3000000000, "miles")
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(9, "feet"),
  21634. weight: math.unit(350, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/pepper/front.svg",
  21638. extra: 1448 / 1312,
  21639. bottom: 9.4 / 1457.88
  21640. }
  21641. },
  21642. back: {
  21643. height: math.unit(9, "feet"),
  21644. weight: math.unit(350, "lb"),
  21645. name: "Back",
  21646. image: {
  21647. source: "./media/characters/pepper/back.svg",
  21648. extra: 1423 / 1300,
  21649. bottom: 4.6 / 1429
  21650. }
  21651. },
  21652. maw: {
  21653. height: math.unit(0.932, "feet"),
  21654. name: "Maw",
  21655. image: {
  21656. source: "./media/characters/pepper/maw.svg"
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(9, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21670. {
  21671. front: {
  21672. height: math.unit(6, "feet"),
  21673. weight: math.unit(150, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/maelstrom/front.svg",
  21677. extra: 2100 / 1883,
  21678. bottom: 94 / 2196.7
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Less Kaiju",
  21685. height: math.unit(200, "feet")
  21686. },
  21687. {
  21688. name: "Kaiju",
  21689. height: math.unit(400, "feet"),
  21690. default: true
  21691. },
  21692. {
  21693. name: "Kaiju-er",
  21694. height: math.unit(600, "feet")
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(6 + 5 / 12, "feet"),
  21703. weight: math.unit(180, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/lexir/front.svg",
  21707. extra: 180 / 172,
  21708. bottom: 12 / 192
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(6 + 5 / 12, "feet"),
  21713. weight: math.unit(180, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/lexir/back.svg",
  21717. extra: 183.84 / 175.5,
  21718. bottom: 3.1 / 187
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Very Smal",
  21725. height: math.unit(1, "nm")
  21726. },
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(6 + 5 / 12, "feet"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Macro",
  21734. height: math.unit(1, "mile")
  21735. },
  21736. {
  21737. name: "Megamacro",
  21738. height: math.unit(50, "miles")
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21744. {
  21745. front: {
  21746. height: math.unit(1.5, "meters"),
  21747. weight: math.unit(100, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/maksio/front.svg",
  21751. extra: 1549 / 1531,
  21752. bottom: 123.7 / 1674.5429
  21753. }
  21754. },
  21755. back: {
  21756. height: math.unit(1.5, "meters"),
  21757. weight: math.unit(100, "lb"),
  21758. name: "Back",
  21759. image: {
  21760. source: "./media/characters/maksio/back.svg",
  21761. extra: 1541 / 1509,
  21762. bottom: 97 / 1639
  21763. }
  21764. },
  21765. hand: {
  21766. height: math.unit(0.621, "feet"),
  21767. name: "Hand",
  21768. image: {
  21769. source: "./media/characters/maksio/hand.svg"
  21770. }
  21771. },
  21772. foot: {
  21773. height: math.unit(1.611, "feet"),
  21774. name: "Foot",
  21775. image: {
  21776. source: "./media/characters/maksio/foot.svg"
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Shrunken",
  21783. height: math.unit(10, "cm")
  21784. },
  21785. {
  21786. name: "Normal",
  21787. height: math.unit(150, "cm"),
  21788. default: true
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21794. {
  21795. front: {
  21796. height: math.unit(100, "feet"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/erza-bear/front.svg",
  21800. extra: 2449 / 2390,
  21801. bottom: 46 / 2494
  21802. }
  21803. },
  21804. back: {
  21805. height: math.unit(100, "feet"),
  21806. name: "Back",
  21807. image: {
  21808. source: "./media/characters/erza-bear/back.svg",
  21809. extra: 2489 / 2430,
  21810. bottom: 85.4 / 2480
  21811. }
  21812. },
  21813. tail: {
  21814. height: math.unit(42, "feet"),
  21815. name: "Tail",
  21816. image: {
  21817. source: "./media/characters/erza-bear/tail.svg"
  21818. }
  21819. },
  21820. tongue: {
  21821. height: math.unit(8, "feet"),
  21822. name: "Tongue",
  21823. image: {
  21824. source: "./media/characters/erza-bear/tongue.svg"
  21825. }
  21826. },
  21827. dick: {
  21828. height: math.unit(10.5, "feet"),
  21829. name: "Dick",
  21830. image: {
  21831. source: "./media/characters/erza-bear/dick.svg"
  21832. }
  21833. },
  21834. dickVertical: {
  21835. height: math.unit(16.9, "feet"),
  21836. name: "Dick (Vertical)",
  21837. image: {
  21838. source: "./media/characters/erza-bear/dick-vertical.svg"
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Macro",
  21845. height: math.unit(100, "feet"),
  21846. default: true
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(172, "cm"),
  21855. weight: math.unit(73, "kg"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/violet-flor/front.svg",
  21859. extra: 1530 / 1442,
  21860. bottom: 61.9 / 1588.8
  21861. }
  21862. },
  21863. back: {
  21864. height: math.unit(180, "cm"),
  21865. weight: math.unit(73, "kg"),
  21866. name: "Back",
  21867. image: {
  21868. source: "./media/characters/violet-flor/back.svg",
  21869. extra: 1692 / 1630,
  21870. bottom: 20 / 1712
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(172, "cm"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(220, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/lynn-rhea/front.svg",
  21891. extra: 310 / 273
  21892. }
  21893. },
  21894. back: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(220, "lb"),
  21897. name: "Back",
  21898. image: {
  21899. source: "./media/characters/lynn-rhea/back.svg",
  21900. extra: 310 / 273
  21901. }
  21902. },
  21903. dicks: {
  21904. height: math.unit(0.9, "feet"),
  21905. name: "Dicks",
  21906. image: {
  21907. source: "./media/characters/lynn-rhea/dicks.svg"
  21908. }
  21909. },
  21910. slit: {
  21911. height: math.unit(0.4, "feet"),
  21912. name: "Slit",
  21913. image: {
  21914. source: "./media/characters/lynn-rhea/slit.svg"
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Micro",
  21921. height: math.unit(1, "inch")
  21922. },
  21923. {
  21924. name: "Macro",
  21925. height: math.unit(60, "feet"),
  21926. default: true
  21927. },
  21928. {
  21929. name: "Megamacro",
  21930. height: math.unit(2, "miles")
  21931. },
  21932. {
  21933. name: "Gigamacro",
  21934. height: math.unit(3, "earths")
  21935. },
  21936. {
  21937. name: "Galactic",
  21938. height: math.unit(0.8, "galaxies")
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21944. {
  21945. front: {
  21946. height: math.unit(1600, "feet"),
  21947. weight: math.unit(85758785169, "kg"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/valathos/front.svg",
  21951. extra: 1451 / 1339
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Macro",
  21958. height: math.unit(1600, "feet"),
  21959. default: true
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(7 + 5 / 12, "feet"),
  21968. weight: math.unit(300, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/azula/front.svg",
  21972. extra: 3208 / 2880,
  21973. bottom: 80.2 / 3277
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(7 + 5 / 12, "feet"),
  21978. weight: math.unit(300, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/azula/back.svg",
  21982. extra: 3169 / 2822,
  21983. bottom: 150.6 / 3321
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(7 + 5 / 12, "feet"),
  21991. default: true
  21992. },
  21993. {
  21994. name: "Big",
  21995. height: math.unit(20, "feet")
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22001. {
  22002. front: {
  22003. height: math.unit(5 + 1 / 12, "feet"),
  22004. weight: math.unit(110, "lb"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/rupert/front.svg",
  22008. extra: 1549 / 1495,
  22009. bottom: 54.2 / 1604.4
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(5 + 1 / 12, "feet"),
  22017. default: true
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22023. {
  22024. front: {
  22025. height: math.unit(8 + 4 / 12, "feet"),
  22026. weight: math.unit(350, "lb"),
  22027. name: "Front",
  22028. image: {
  22029. source: "./media/characters/sheera-castellar/front.svg",
  22030. extra: 1957 / 1894,
  22031. bottom: 26.97 / 1975.017
  22032. }
  22033. },
  22034. side: {
  22035. height: math.unit(8 + 4 / 12, "feet"),
  22036. weight: math.unit(350, "lb"),
  22037. name: "Side",
  22038. image: {
  22039. source: "./media/characters/sheera-castellar/side.svg",
  22040. extra: 1957 / 1894
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(8 + 4 / 12, "feet"),
  22045. weight: math.unit(350, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/sheera-castellar/back.svg",
  22049. extra: 1957 / 1894
  22050. }
  22051. },
  22052. angled: {
  22053. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22054. weight: math.unit(350, "lb"),
  22055. name: "Angled",
  22056. image: {
  22057. source: "./media/characters/sheera-castellar/angled.svg",
  22058. extra: 1807 / 1707,
  22059. bottom: 68 / 1875
  22060. }
  22061. },
  22062. genitals: {
  22063. height: math.unit(2.2, "feet"),
  22064. name: "Genitals",
  22065. image: {
  22066. source: "./media/characters/sheera-castellar/genitals.svg"
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(8 + 4 / 12, "feet")
  22074. },
  22075. {
  22076. name: "Macro",
  22077. height: math.unit(150, "feet"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Macro+",
  22082. height: math.unit(800, "feet")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(6, "feet"),
  22091. weight: math.unit(150, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/jaipur/front.svg",
  22095. extra: 3860 / 3731,
  22096. bottom: 287 / 4140
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(6, "feet"),
  22101. weight: math.unit(150, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/jaipur/back.svg",
  22105. extra: 4060 / 3930,
  22106. bottom: 151 / 4200
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(1.85, "meters"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Macro",
  22118. height: math.unit(150, "meters")
  22119. },
  22120. {
  22121. name: "Macro+",
  22122. height: math.unit(0.5, "miles")
  22123. },
  22124. {
  22125. name: "Macro++",
  22126. height: math.unit(2.5, "miles")
  22127. },
  22128. {
  22129. name: "Macro+++",
  22130. height: math.unit(12, "miles")
  22131. },
  22132. {
  22133. name: "Macro++++",
  22134. height: math.unit(120, "miles")
  22135. },
  22136. {
  22137. name: "Macro+++++",
  22138. height: math.unit(1200, "miles")
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(6, "feet"),
  22147. weight: math.unit(150, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/sheila-wolf/front.svg",
  22151. extra: 1931 / 1808,
  22152. bottom: 29.5 / 1960
  22153. }
  22154. },
  22155. dick: {
  22156. height: math.unit(1.464, "feet"),
  22157. name: "Dick",
  22158. image: {
  22159. source: "./media/characters/sheila-wolf/dick.svg"
  22160. }
  22161. },
  22162. muzzle: {
  22163. height: math.unit(0.513, "feet"),
  22164. name: "Muzzle",
  22165. image: {
  22166. source: "./media/characters/sheila-wolf/muzzle.svg"
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Macro",
  22173. height: math.unit(70, "feet"),
  22174. default: true
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22180. {
  22181. front: {
  22182. height: math.unit(32, "meters"),
  22183. weight: math.unit(300000, "kg"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/almor/front.svg",
  22187. extra: 1408 / 1322,
  22188. bottom: 94.6 / 1506.5
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Macro",
  22195. height: math.unit(32, "meters"),
  22196. default: true
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22202. {
  22203. front: {
  22204. height: math.unit(7, "feet"),
  22205. weight: math.unit(200, "lb"),
  22206. name: "Front",
  22207. image: {
  22208. source: "./media/characters/silver/front.svg",
  22209. extra: 472.1 / 450.5,
  22210. bottom: 26.5 / 499.424
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(7, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Macro",
  22222. height: math.unit(800, "feet")
  22223. },
  22224. {
  22225. name: "Megamacro",
  22226. height: math.unit(250, "miles")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(6, "feet"),
  22235. weight: math.unit(150, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/pliskin/front.svg",
  22239. extra: 1469 / 1359,
  22240. bottom: 70 / 1540
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Micro",
  22247. height: math.unit(3, "inches")
  22248. },
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(5 + 11 / 12, "feet"),
  22252. default: true
  22253. },
  22254. {
  22255. name: "Macro",
  22256. height: math.unit(120, "feet")
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(6, "feet"),
  22265. weight: math.unit(150, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/sammy/front.svg",
  22269. extra: 1193 / 1089,
  22270. bottom: 30.5 / 1226
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Macro",
  22277. height: math.unit(1700, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Examacro",
  22282. height: math.unit(2.5e9, "lightyears")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(21, "meters"),
  22291. weight: math.unit(12, "tonnes"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/kuru/front.svg",
  22295. extra: 4301 / 3785,
  22296. bottom: 371.3 / 4691
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(21, "meters"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(23, "meters"),
  22313. weight: math.unit(12.2, "tonnes"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/rakka/front.svg",
  22317. extra: 4670 / 4169,
  22318. bottom: 301 / 4968.7
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Macro",
  22325. height: math.unit(23, "meters"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(6, "feet"),
  22335. weight: math.unit(150, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/rhys-feline/front.svg",
  22339. extra: 2488 / 2308,
  22340. bottom: 35.67 / 2519.19
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Really Small",
  22347. height: math.unit(1, "nm")
  22348. },
  22349. {
  22350. name: "Micro",
  22351. height: math.unit(4, "inches")
  22352. },
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(4 + 10 / 12, "feet"),
  22356. default: true
  22357. },
  22358. {
  22359. name: "Macro",
  22360. height: math.unit(100, "feet")
  22361. },
  22362. {
  22363. name: "Megamacto",
  22364. height: math.unit(50, "miles")
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22370. {
  22371. side: {
  22372. height: math.unit(30, "feet"),
  22373. weight: math.unit(35000, "kg"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/alydar/side.svg",
  22377. extra: 234 / 222,
  22378. bottom: 6.5 / 241
  22379. }
  22380. },
  22381. front: {
  22382. height: math.unit(30, "feet"),
  22383. weight: math.unit(35000, "kg"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/alydar/front.svg",
  22387. extra: 223.37 / 210.2,
  22388. bottom: 22.3 / 246.76
  22389. }
  22390. },
  22391. top: {
  22392. height: math.unit(64.54, "feet"),
  22393. weight: math.unit(35000, "kg"),
  22394. name: "Top",
  22395. image: {
  22396. source: "./media/characters/alydar/top.svg"
  22397. }
  22398. },
  22399. anthro: {
  22400. height: math.unit(30, "feet"),
  22401. weight: math.unit(9000, "kg"),
  22402. name: "Anthro",
  22403. image: {
  22404. source: "./media/characters/alydar/anthro.svg",
  22405. extra: 432 / 421,
  22406. bottom: 7.18 / 440
  22407. }
  22408. },
  22409. maw: {
  22410. height: math.unit(11.693, "feet"),
  22411. name: "Maw",
  22412. image: {
  22413. source: "./media/characters/alydar/maw.svg"
  22414. }
  22415. },
  22416. head: {
  22417. height: math.unit(11.693, "feet"),
  22418. name: "Head",
  22419. image: {
  22420. source: "./media/characters/alydar/head.svg"
  22421. }
  22422. },
  22423. headAlt: {
  22424. height: math.unit(12.861, "feet"),
  22425. name: "Head (Alt)",
  22426. image: {
  22427. source: "./media/characters/alydar/head-alt.svg"
  22428. }
  22429. },
  22430. wing: {
  22431. height: math.unit(20.712, "feet"),
  22432. name: "Wing",
  22433. image: {
  22434. source: "./media/characters/alydar/wing.svg"
  22435. }
  22436. },
  22437. wingFeather: {
  22438. height: math.unit(9.662, "feet"),
  22439. name: "Wing Feather",
  22440. image: {
  22441. source: "./media/characters/alydar/wing-feather.svg"
  22442. }
  22443. },
  22444. countourFeather: {
  22445. height: math.unit(4.154, "feet"),
  22446. name: "Contour Feather",
  22447. image: {
  22448. source: "./media/characters/alydar/contour-feather.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Diplomatic",
  22455. height: math.unit(13, "feet"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Small",
  22460. height: math.unit(30, "feet")
  22461. },
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(95, "feet"),
  22465. default: true
  22466. },
  22467. {
  22468. name: "Large",
  22469. height: math.unit(285, "feet")
  22470. },
  22471. {
  22472. name: "Incomprehensible",
  22473. height: math.unit(450, "megameters")
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22479. {
  22480. side: {
  22481. height: math.unit(11, "feet"),
  22482. weight: math.unit(1750, "kg"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/selicia/side.svg",
  22486. extra: 440 / 396,
  22487. bottom: 24.8 / 465.979
  22488. }
  22489. },
  22490. maw: {
  22491. height: math.unit(4.665, "feet"),
  22492. name: "Maw",
  22493. image: {
  22494. source: "./media/characters/selicia/maw.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(11, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22508. {
  22509. side: {
  22510. height: math.unit(2 + 6 / 12, "feet"),
  22511. weight: math.unit(30, "lb"),
  22512. name: "Side",
  22513. image: {
  22514. source: "./media/characters/layla/side.svg",
  22515. extra: 244 / 188,
  22516. bottom: 18.2 / 262.1
  22517. }
  22518. },
  22519. back: {
  22520. height: math.unit(2 + 6 / 12, "feet"),
  22521. weight: math.unit(30, "lb"),
  22522. name: "Back",
  22523. image: {
  22524. source: "./media/characters/layla/back.svg",
  22525. extra: 308 / 241.5,
  22526. bottom: 8.9 / 316.8
  22527. }
  22528. },
  22529. cumming: {
  22530. height: math.unit(2 + 6 / 12, "feet"),
  22531. weight: math.unit(30, "lb"),
  22532. name: "Cumming",
  22533. image: {
  22534. source: "./media/characters/layla/cumming.svg",
  22535. extra: 342 / 279,
  22536. bottom: 595 / 938
  22537. }
  22538. },
  22539. dickFlaccid: {
  22540. height: math.unit(2.595, "feet"),
  22541. name: "Flaccid Genitals",
  22542. image: {
  22543. source: "./media/characters/layla/dick-flaccid.svg"
  22544. }
  22545. },
  22546. dickErect: {
  22547. height: math.unit(2.359, "feet"),
  22548. name: "Erect Genitals",
  22549. image: {
  22550. source: "./media/characters/layla/dick-erect.svg"
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Micro",
  22557. height: math.unit(1, "inch")
  22558. },
  22559. {
  22560. name: "Small",
  22561. height: math.unit(1, "foot")
  22562. },
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(2 + 6 / 12, "feet"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Macro",
  22570. height: math.unit(200, "feet")
  22571. },
  22572. {
  22573. name: "Megamacro",
  22574. height: math.unit(1000, "miles")
  22575. },
  22576. {
  22577. name: "Planetary",
  22578. height: math.unit(8000, "miles")
  22579. },
  22580. {
  22581. name: "True Layla",
  22582. height: math.unit(200000 * 7, "multiverses")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22588. {
  22589. back: {
  22590. height: math.unit(10.5, "feet"),
  22591. weight: math.unit(800, "lb"),
  22592. name: "Back",
  22593. image: {
  22594. source: "./media/characters/knox/back.svg",
  22595. extra: 1486 / 1089,
  22596. bottom: 107 / 1601.4
  22597. }
  22598. },
  22599. side: {
  22600. height: math.unit(10.5, "feet"),
  22601. weight: math.unit(800, "lb"),
  22602. name: "Side",
  22603. image: {
  22604. source: "./media/characters/knox/side.svg",
  22605. extra: 244 / 218,
  22606. bottom: 14 / 260
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Compact",
  22613. height: math.unit(10.5, "feet"),
  22614. default: true
  22615. },
  22616. {
  22617. name: "Dynamax",
  22618. height: math.unit(210, "feet")
  22619. },
  22620. {
  22621. name: "Full Macro",
  22622. height: math.unit(850, "feet")
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(6, "feet"),
  22631. weight: math.unit(152, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/shin-pikachu/front.svg",
  22635. extra: 1574 / 1480,
  22636. bottom: 53.3 / 1626
  22637. }
  22638. },
  22639. hand: {
  22640. height: math.unit(1.055, "feet"),
  22641. name: "Hand",
  22642. image: {
  22643. source: "./media/characters/shin-pikachu/hand.svg"
  22644. }
  22645. },
  22646. foot: {
  22647. height: math.unit(1.1, "feet"),
  22648. name: "Foot",
  22649. image: {
  22650. source: "./media/characters/shin-pikachu/foot.svg"
  22651. }
  22652. },
  22653. collar: {
  22654. height: math.unit(0.386, "feet"),
  22655. name: "Collar",
  22656. image: {
  22657. source: "./media/characters/shin-pikachu/collar.svg"
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Smallest",
  22664. height: math.unit(0.5, "inches")
  22665. },
  22666. {
  22667. name: "Micro",
  22668. height: math.unit(6, "inches")
  22669. },
  22670. {
  22671. name: "Normal",
  22672. height: math.unit(6, "feet"),
  22673. default: true
  22674. },
  22675. {
  22676. name: "Macro",
  22677. height: math.unit(150, "feet")
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(28, "feet"),
  22686. weight: math.unit(10500, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/kayda/front.svg",
  22690. extra: 1536 / 1428,
  22691. bottom: 68.7 / 1603
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(28, "feet"),
  22696. weight: math.unit(10500, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/kayda/back.svg",
  22700. extra: 1557 / 1464,
  22701. bottom: 39.5 / 1597.49
  22702. }
  22703. },
  22704. dick: {
  22705. height: math.unit(3.858, "feet"),
  22706. name: "Dick",
  22707. image: {
  22708. source: "./media/characters/kayda/dick.svg"
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Macro",
  22715. height: math.unit(28, "feet"),
  22716. default: true
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(10 + 11 / 12, "feet"),
  22725. weight: math.unit(1400, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/brian/front.svg",
  22729. extra: 737 / 692,
  22730. bottom: 55.4 / 785
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(10 + 11 / 12, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(5 + 8 / 12, "feet"),
  22747. weight: math.unit(140, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/khemri/front.svg",
  22751. extra: 4780 / 4059,
  22752. bottom: 80.1 / 4859.25
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Micro",
  22759. height: math.unit(6, "inches")
  22760. },
  22761. {
  22762. name: "Normal",
  22763. height: math.unit(5 + 8 / 12, "feet"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22770. {
  22771. front: {
  22772. height: math.unit(13, "feet"),
  22773. weight: math.unit(1700, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/felix-braveheart/front.svg",
  22777. extra: 1222 / 1157,
  22778. bottom: 53.2 / 1280
  22779. }
  22780. },
  22781. back: {
  22782. height: math.unit(13, "feet"),
  22783. weight: math.unit(1700, "lb"),
  22784. name: "Back",
  22785. image: {
  22786. source: "./media/characters/felix-braveheart/back.svg",
  22787. extra: 1277 / 1203,
  22788. bottom: 50.2 / 1327
  22789. }
  22790. },
  22791. feral: {
  22792. height: math.unit(6, "feet"),
  22793. weight: math.unit(400, "lb"),
  22794. name: "Feral",
  22795. image: {
  22796. source: "./media/characters/felix-braveheart/feral.svg",
  22797. extra: 682 / 625,
  22798. bottom: 6.9 / 688
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(13, "feet"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22812. {
  22813. side: {
  22814. height: math.unit(5 + 11 / 12, "feet"),
  22815. weight: math.unit(1400, "lb"),
  22816. name: "Side",
  22817. image: {
  22818. source: "./media/characters/shadow-blade/side.svg",
  22819. extra: 1726 / 1267,
  22820. bottom: 58.4 / 1785
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(5 + 11 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(1 + 6 / 12, "feet"),
  22837. weight: math.unit(25, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/karla-halldor/front.svg",
  22841. extra: 1459 / 1383,
  22842. bottom: 12 / 1472
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(1 + 6 / 12, "feet"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(6 + 2 / 12, "feet"),
  22859. weight: math.unit(160, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/ariam/front.svg",
  22863. extra: 714 / 617,
  22864. bottom: 23.4 / 737,
  22865. }
  22866. },
  22867. squatting: {
  22868. height: math.unit(4.1, "feet"),
  22869. weight: math.unit(160, "lb"),
  22870. name: "Squatting",
  22871. image: {
  22872. source: "./media/characters/ariam/squatting.svg",
  22873. extra: 2617 / 2112,
  22874. bottom: 61.2 / 2681,
  22875. }
  22876. },
  22877. },
  22878. [
  22879. {
  22880. name: "Normal",
  22881. height: math.unit(6 + 2 / 12, "feet"),
  22882. default: true
  22883. },
  22884. {
  22885. name: "Normal+",
  22886. height: math.unit(4, "meters")
  22887. },
  22888. {
  22889. name: "Macro",
  22890. height: math.unit(50, "meters")
  22891. },
  22892. {
  22893. name: "Macro+",
  22894. height: math.unit(100, "meters")
  22895. },
  22896. {
  22897. name: "Megamacro",
  22898. height: math.unit(20, "km")
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22904. {
  22905. front: {
  22906. height: math.unit(1.67, "meters"),
  22907. weight: math.unit(140, "lb"),
  22908. name: "Front",
  22909. image: {
  22910. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22911. extra: 438 / 410,
  22912. bottom: 0.75 / 439
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Shrunken",
  22919. height: math.unit(7.6, "cm")
  22920. },
  22921. {
  22922. name: "Human Scale",
  22923. height: math.unit(1.67, "meters")
  22924. },
  22925. {
  22926. name: "Wolxi Scale",
  22927. height: math.unit(36.7, "meters"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(1.73, "meters"),
  22937. weight: math.unit(240, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/izue-two-mothers/front.svg",
  22941. extra: 469 / 437,
  22942. bottom: 1.24 / 470.6
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Shrunken",
  22949. height: math.unit(7.86, "cm")
  22950. },
  22951. {
  22952. name: "Human Scale",
  22953. height: math.unit(1.73, "meters")
  22954. },
  22955. {
  22956. name: "Wolxi Scale",
  22957. height: math.unit(38, "meters"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22964. {
  22965. front: {
  22966. height: math.unit(1.55, "meters"),
  22967. weight: math.unit(120, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/teeku-love-shack/front.svg",
  22971. extra: 387 / 362,
  22972. bottom: 1.51 / 388
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Shrunken",
  22979. height: math.unit(7, "cm")
  22980. },
  22981. {
  22982. name: "Human Scale",
  22983. height: math.unit(1.55, "meters")
  22984. },
  22985. {
  22986. name: "Wolxi Scale",
  22987. height: math.unit(34.1, "meters"),
  22988. default: true
  22989. },
  22990. ]
  22991. ))
  22992. characterMakers.push(() => makeCharacter(
  22993. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22994. {
  22995. front: {
  22996. height: math.unit(1.83, "meters"),
  22997. weight: math.unit(135, "lb"),
  22998. name: "Front",
  22999. image: {
  23000. source: "./media/characters/dejma-the-red/front.svg",
  23001. extra: 480 / 458,
  23002. bottom: 1.8 / 482
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Shrunken",
  23009. height: math.unit(8.3, "cm")
  23010. },
  23011. {
  23012. name: "Human Scale",
  23013. height: math.unit(1.83, "meters")
  23014. },
  23015. {
  23016. name: "Wolxi Scale",
  23017. height: math.unit(40, "meters"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(1.78, "meters"),
  23027. weight: math.unit(65, "kg"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/aki/front.svg",
  23031. extra: 452 / 415
  23032. }
  23033. },
  23034. frontNsfw: {
  23035. height: math.unit(1.78, "meters"),
  23036. weight: math.unit(65, "kg"),
  23037. name: "Front (NSFW)",
  23038. image: {
  23039. source: "./media/characters/aki/front-nsfw.svg",
  23040. extra: 452 / 415
  23041. }
  23042. },
  23043. back: {
  23044. height: math.unit(1.78, "meters"),
  23045. weight: math.unit(65, "kg"),
  23046. name: "Back",
  23047. image: {
  23048. source: "./media/characters/aki/back.svg",
  23049. extra: 452 / 415
  23050. }
  23051. },
  23052. rump: {
  23053. height: math.unit(2.05, "feet"),
  23054. name: "Rump",
  23055. image: {
  23056. source: "./media/characters/aki/rump.svg"
  23057. }
  23058. },
  23059. dick: {
  23060. height: math.unit(0.95, "feet"),
  23061. name: "Dick",
  23062. image: {
  23063. source: "./media/characters/aki/dick.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Micro",
  23070. height: math.unit(15, "cm")
  23071. },
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(178, "cm"),
  23075. default: true
  23076. },
  23077. {
  23078. name: "Macro",
  23079. height: math.unit(214, "m")
  23080. },
  23081. {
  23082. name: "Macro+",
  23083. height: math.unit(534, "m")
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(5 + 5 / 12, "feet"),
  23092. weight: math.unit(120, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/ari/front.svg",
  23096. extra: 714.5 / 682,
  23097. bottom: 8 / 722.5
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Normal",
  23104. height: math.unit(5 + 5 / 12, "feet")
  23105. },
  23106. {
  23107. name: "Macro",
  23108. height: math.unit(100, "feet"),
  23109. default: true
  23110. },
  23111. {
  23112. name: "Megamacro",
  23113. height: math.unit(100, "miles")
  23114. },
  23115. {
  23116. name: "Gigamacro",
  23117. height: math.unit(80000, "miles")
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23123. {
  23124. side: {
  23125. height: math.unit(9, "feet"),
  23126. weight: math.unit(400, "kg"),
  23127. name: "Side",
  23128. image: {
  23129. source: "./media/characters/bolt/side.svg",
  23130. extra: 1126 / 896,
  23131. bottom: 60 / 1187.3,
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Micro",
  23138. height: math.unit(5, "inches")
  23139. },
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(9, "feet"),
  23143. default: true
  23144. },
  23145. {
  23146. name: "Macro",
  23147. height: math.unit(700, "feet")
  23148. },
  23149. {
  23150. name: "Max Size",
  23151. height: math.unit(1.52e22, "yottameters")
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(4.53, "meters"),
  23160. weight: math.unit(3, "tons"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/draekon-sylviar/front.svg",
  23164. extra: 1228 / 1068,
  23165. bottom: 41 / 1270
  23166. }
  23167. },
  23168. tail: {
  23169. height: math.unit(1.772, "meter"),
  23170. name: "Tail",
  23171. image: {
  23172. source: "./media/characters/draekon-sylviar/tail.svg"
  23173. }
  23174. },
  23175. head: {
  23176. height: math.unit(1.331, "meter"),
  23177. name: "Head",
  23178. image: {
  23179. source: "./media/characters/draekon-sylviar/head.svg"
  23180. }
  23181. },
  23182. hand: {
  23183. height: math.unit(0.564, "meter"),
  23184. name: "Hand",
  23185. image: {
  23186. source: "./media/characters/draekon-sylviar/hand.svg"
  23187. }
  23188. },
  23189. foot: {
  23190. height: math.unit(0.621, "meter"),
  23191. name: "Foot",
  23192. image: {
  23193. source: "./media/characters/draekon-sylviar/foot.svg",
  23194. bottom: 32 / 324
  23195. }
  23196. },
  23197. dick: {
  23198. height: math.unit(61, "cm"),
  23199. name: "Dick",
  23200. image: {
  23201. source: "./media/characters/draekon-sylviar/dick.svg"
  23202. }
  23203. },
  23204. dickseparated: {
  23205. height: math.unit(61, "cm"),
  23206. name: "Dick-separated",
  23207. image: {
  23208. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Small",
  23215. height: math.unit(4.53 / 2, "meters"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(4.53, "meters"),
  23221. default: true
  23222. },
  23223. {
  23224. name: "Large",
  23225. height: math.unit(4.53 * 2, "meters"),
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(6 + 2 / 12, "feet"),
  23234. weight: math.unit(180, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/brawler/front.svg",
  23238. extra: 3301 / 3027,
  23239. bottom: 138 / 3439
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(6 + 2 / 12, "feet"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(11, "feet"),
  23256. weight: math.unit(1000, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/alex/front.svg",
  23260. bottom: 44.5 / 620
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Micro",
  23267. height: math.unit(5, "inches")
  23268. },
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(11, "feet"),
  23272. default: true
  23273. },
  23274. {
  23275. name: "Macro",
  23276. height: math.unit(9.5e9, "feet")
  23277. },
  23278. {
  23279. name: "Max Size",
  23280. height: math.unit(1.4e283, "yottameters")
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23286. {
  23287. female: {
  23288. height: math.unit(29.9, "m"),
  23289. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23290. name: "Female",
  23291. image: {
  23292. source: "./media/characters/zenari/female.svg",
  23293. extra: 3281.6 / 3217,
  23294. bottom: 72.2 / 3353
  23295. }
  23296. },
  23297. male: {
  23298. height: math.unit(27.7, "m"),
  23299. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23300. name: "Male",
  23301. image: {
  23302. source: "./media/characters/zenari/male.svg",
  23303. extra: 3008 / 2991,
  23304. bottom: 54.6 / 3069
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Macro",
  23311. height: math.unit(29.7, "meters"),
  23312. default: true
  23313. },
  23314. ]
  23315. ))
  23316. characterMakers.push(() => makeCharacter(
  23317. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23318. {
  23319. female: {
  23320. height: math.unit(23.8, "m"),
  23321. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23322. name: "Female",
  23323. image: {
  23324. source: "./media/characters/mactarian/female.svg",
  23325. extra: 2662 / 2569,
  23326. bottom: 73 / 2736
  23327. }
  23328. },
  23329. male: {
  23330. height: math.unit(23.8, "m"),
  23331. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23332. name: "Male",
  23333. image: {
  23334. source: "./media/characters/mactarian/male.svg",
  23335. extra: 2673 / 2600,
  23336. bottom: 76 / 2750
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(23.8, "meters"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23350. {
  23351. female: {
  23352. height: math.unit(19.3, "m"),
  23353. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23354. name: "Female",
  23355. image: {
  23356. source: "./media/characters/umok/female.svg",
  23357. extra: 2186 / 2078,
  23358. bottom: 87 / 2277
  23359. }
  23360. },
  23361. male: {
  23362. height: math.unit(19.5, "m"),
  23363. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23364. name: "Male",
  23365. image: {
  23366. source: "./media/characters/umok/male.svg",
  23367. extra: 2233 / 2140,
  23368. bottom: 24.4 / 2258
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Macro",
  23375. height: math.unit(19.3, "meters"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23382. {
  23383. female: {
  23384. height: math.unit(26.15, "m"),
  23385. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23386. name: "Female",
  23387. image: {
  23388. source: "./media/characters/joraxian/female.svg",
  23389. extra: 2912 / 2824,
  23390. bottom: 36 / 2956
  23391. }
  23392. },
  23393. male: {
  23394. height: math.unit(25.4, "m"),
  23395. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23396. name: "Male",
  23397. image: {
  23398. source: "./media/characters/joraxian/male.svg",
  23399. extra: 2877 / 2721,
  23400. bottom: 82 / 2967
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(26.15, "meters"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23414. {
  23415. female: {
  23416. height: math.unit(21.6, "m"),
  23417. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23418. name: "Female",
  23419. image: {
  23420. source: "./media/characters/sthara/female.svg",
  23421. extra: 2516 / 2347,
  23422. bottom: 21.5 / 2537
  23423. }
  23424. },
  23425. male: {
  23426. height: math.unit(24, "m"),
  23427. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23428. name: "Male",
  23429. image: {
  23430. source: "./media/characters/sthara/male.svg",
  23431. extra: 2732 / 2607,
  23432. bottom: 23 / 2732
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Macro",
  23439. height: math.unit(21.6, "meters"),
  23440. default: true
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(6 + 4 / 12, "feet"),
  23449. weight: math.unit(175, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/luka-bryzant/front.svg",
  23453. extra: 311 / 289,
  23454. bottom: 4 / 315
  23455. }
  23456. },
  23457. back: {
  23458. height: math.unit(6 + 4 / 12, "feet"),
  23459. weight: math.unit(175, "lb"),
  23460. name: "Back",
  23461. image: {
  23462. source: "./media/characters/luka-bryzant/back.svg",
  23463. extra: 311 / 289,
  23464. bottom: 3.8 / 313.7
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Micro",
  23471. height: math.unit(10, "inches")
  23472. },
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(6 + 4 / 12, "feet"),
  23476. default: true
  23477. },
  23478. {
  23479. name: "Large",
  23480. height: math.unit(12, "feet")
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23486. {
  23487. front: {
  23488. height: math.unit(5 + 7 / 12, "feet"),
  23489. weight: math.unit(185, "lb"),
  23490. name: "Front",
  23491. image: {
  23492. source: "./media/characters/aman-aquila/front.svg",
  23493. extra: 1013 / 976,
  23494. bottom: 45.6 / 1057
  23495. }
  23496. },
  23497. side: {
  23498. height: math.unit(5 + 7 / 12, "feet"),
  23499. weight: math.unit(185, "lb"),
  23500. name: "Side",
  23501. image: {
  23502. source: "./media/characters/aman-aquila/side.svg",
  23503. extra: 1054 / 1011,
  23504. bottom: 15 / 1070
  23505. }
  23506. },
  23507. back: {
  23508. height: math.unit(5 + 7 / 12, "feet"),
  23509. weight: math.unit(185, "lb"),
  23510. name: "Back",
  23511. image: {
  23512. source: "./media/characters/aman-aquila/back.svg",
  23513. extra: 1026 / 970,
  23514. bottom: 12 / 1039
  23515. }
  23516. },
  23517. head: {
  23518. height: math.unit(1.211, "feet"),
  23519. name: "Head",
  23520. image: {
  23521. source: "./media/characters/aman-aquila/head.svg",
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Minimicro",
  23528. height: math.unit(0.057, "inches")
  23529. },
  23530. {
  23531. name: "Micro",
  23532. height: math.unit(7, "inches")
  23533. },
  23534. {
  23535. name: "Mini",
  23536. height: math.unit(3 + 7 / 12, "feet")
  23537. },
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(5 + 7 / 12, "feet"),
  23541. default: true
  23542. },
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(157 + 7 / 12, "feet")
  23546. },
  23547. {
  23548. name: "Megamacro",
  23549. height: math.unit(1557 + 7 / 12, "feet")
  23550. },
  23551. {
  23552. name: "Gigamacro",
  23553. height: math.unit(15557 + 7 / 12, "feet")
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(3 + 2 / 12, "inches"),
  23562. weight: math.unit(0.3, "ounces"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/hiphae/front.svg",
  23566. extra: 1931 / 1683,
  23567. bottom: 24 / 1955
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(3 + 1 / 2, "inches"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(5 + 10 / 12, "feet"),
  23584. weight: math.unit(165, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/nicky/front.svg",
  23588. extra: 3144 / 2886,
  23589. bottom: 45.6 / 3192
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(5 + 10 / 12, "feet"),
  23594. weight: math.unit(165, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/nicky/back.svg",
  23598. extra: 3055 / 2804,
  23599. bottom: 28.4 / 3087
  23600. }
  23601. },
  23602. frontclothed: {
  23603. height: math.unit(5 + 10 / 12, "feet"),
  23604. weight: math.unit(165, "lb"),
  23605. name: "Front-clothed",
  23606. image: {
  23607. source: "./media/characters/nicky/front-clothed.svg",
  23608. extra: 3184.9 / 2926.9,
  23609. bottom: 86.5 / 3239.9
  23610. }
  23611. },
  23612. foot: {
  23613. height: math.unit(1.16, "feet"),
  23614. name: "Foot",
  23615. image: {
  23616. source: "./media/characters/nicky/foot.svg"
  23617. }
  23618. },
  23619. feet: {
  23620. height: math.unit(1.34, "feet"),
  23621. name: "Feet",
  23622. image: {
  23623. source: "./media/characters/nicky/feet.svg"
  23624. }
  23625. },
  23626. maw: {
  23627. height: math.unit(0.9, "feet"),
  23628. name: "Maw",
  23629. image: {
  23630. source: "./media/characters/nicky/maw.svg"
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Normal",
  23637. height: math.unit(5 + 10 / 12, "feet"),
  23638. default: true
  23639. },
  23640. {
  23641. name: "Macro",
  23642. height: math.unit(60, "feet")
  23643. },
  23644. {
  23645. name: "Megamacro",
  23646. height: math.unit(1, "mile")
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23652. {
  23653. side: {
  23654. height: math.unit(10, "feet"),
  23655. weight: math.unit(600, "lb"),
  23656. name: "Side",
  23657. image: {
  23658. source: "./media/characters/blair/side.svg",
  23659. bottom: 16.6 / 475,
  23660. extra: 458 / 431
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Micro",
  23667. height: math.unit(8, "inches")
  23668. },
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(10, "feet"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(180, "feet")
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(5 + 4 / 12, "feet"),
  23685. weight: math.unit(125, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/fisher/front.svg",
  23689. extra: 444 / 390,
  23690. bottom: 2 / 444.8
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Micro",
  23697. height: math.unit(4, "inches")
  23698. },
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5 + 4 / 12, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(100, "feet")
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(6.71, "feet"),
  23715. weight: math.unit(200, "lb"),
  23716. capacity: math.unit(1000000, "people"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/gliss/front.svg",
  23720. extra: 2347 / 2231,
  23721. bottom: 113 / 2462
  23722. }
  23723. },
  23724. hammerspaceSize: {
  23725. height: math.unit(6.71 * 717, "feet"),
  23726. weight: math.unit(200, "lb"),
  23727. capacity: math.unit(1000000, "people"),
  23728. name: "Hammerspace Size",
  23729. image: {
  23730. source: "./media/characters/gliss/front.svg",
  23731. extra: 2347 / 2231,
  23732. bottom: 113 / 2462
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(6.71, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23746. {
  23747. side: {
  23748. height: math.unit(1.44, "m"),
  23749. weight: math.unit(80, "kg"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/dune-anderson/side.svg",
  23753. bottom: 49 / 1426
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Wolf-sized",
  23760. height: math.unit(1.44, "meters")
  23761. },
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(5.05, "meters"),
  23765. default: true
  23766. },
  23767. {
  23768. name: "Big",
  23769. height: math.unit(14.4, "meters")
  23770. },
  23771. {
  23772. name: "Huge",
  23773. height: math.unit(144, "meters")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(7, "feet"),
  23782. weight: math.unit(425, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/hind/front.svg",
  23786. extra: 2091 / 1860,
  23787. bottom: 129 / 2220
  23788. }
  23789. },
  23790. back: {
  23791. height: math.unit(7, "feet"),
  23792. weight: math.unit(425, "lb"),
  23793. name: "Back",
  23794. image: {
  23795. source: "./media/characters/hind/back.svg",
  23796. extra: 2091 / 1860,
  23797. bottom: 24.6 / 2309
  23798. }
  23799. },
  23800. tail: {
  23801. height: math.unit(2.8, "feet"),
  23802. name: "Tail",
  23803. image: {
  23804. source: "./media/characters/hind/tail.svg"
  23805. }
  23806. },
  23807. head: {
  23808. height: math.unit(2.55, "feet"),
  23809. name: "Head",
  23810. image: {
  23811. source: "./media/characters/hind/head.svg"
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "XS",
  23818. height: math.unit(0.7, "feet")
  23819. },
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(7, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "XL",
  23827. height: math.unit(70, "feet")
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(6, "feet"),
  23836. weight: math.unit(150, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/dylan-skaven/front.svg",
  23840. extra: 2318 / 2063,
  23841. bottom: 93.4 / 2410
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Nano",
  23848. height: math.unit(1, "mm")
  23849. },
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(1, "cm")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(2.1, "meters"),
  23857. default: true
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23863. {
  23864. front: {
  23865. height: math.unit(7 + 5 / 12, "feet"),
  23866. weight: math.unit(357, "lb"),
  23867. name: "Front",
  23868. image: {
  23869. source: "./media/characters/solex-draconov/front.svg",
  23870. extra: 1993 / 1865,
  23871. bottom: 117 / 2111
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Natural Height",
  23878. height: math.unit(7 + 5 / 12, "feet"),
  23879. default: true
  23880. },
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(350, "feet")
  23884. },
  23885. {
  23886. name: "Macro+",
  23887. height: math.unit(1000, "feet")
  23888. },
  23889. {
  23890. name: "Megamacro",
  23891. height: math.unit(20, "km")
  23892. },
  23893. {
  23894. name: "Megamacro+",
  23895. height: math.unit(1000, "km")
  23896. },
  23897. {
  23898. name: "Gigamacro",
  23899. height: math.unit(2.5, "Gm")
  23900. },
  23901. {
  23902. name: "Teramacro",
  23903. height: math.unit(15, "Tm")
  23904. },
  23905. {
  23906. name: "Galactic",
  23907. height: math.unit(30, "Zm")
  23908. },
  23909. {
  23910. name: "Universal",
  23911. height: math.unit(21000, "Ym")
  23912. },
  23913. {
  23914. name: "Omniversal",
  23915. height: math.unit(9.861e50, "Ym")
  23916. },
  23917. {
  23918. name: "Existential",
  23919. height: math.unit(1e300, "meters")
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23925. {
  23926. side: {
  23927. height: math.unit(25, "feet"),
  23928. weight: math.unit(90000, "lb"),
  23929. name: "Side",
  23930. image: {
  23931. source: "./media/characters/mandarax/side.svg",
  23932. extra: 614 / 332,
  23933. bottom: 55 / 630
  23934. }
  23935. },
  23936. head: {
  23937. height: math.unit(11.4, "feet"),
  23938. name: "Head",
  23939. image: {
  23940. source: "./media/characters/mandarax/head.svg"
  23941. }
  23942. },
  23943. belly: {
  23944. height: math.unit(33, "feet"),
  23945. name: "Belly",
  23946. capacity: math.unit(500, "people"),
  23947. image: {
  23948. source: "./media/characters/mandarax/belly.svg"
  23949. }
  23950. },
  23951. dick: {
  23952. height: math.unit(8.46, "feet"),
  23953. name: "Dick",
  23954. image: {
  23955. source: "./media/characters/mandarax/dick.svg"
  23956. }
  23957. },
  23958. top: {
  23959. height: math.unit(28, "meters"),
  23960. name: "Top",
  23961. image: {
  23962. source: "./media/characters/mandarax/top.svg"
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(25, "feet"),
  23970. default: true
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23976. {
  23977. front: {
  23978. height: math.unit(5, "feet"),
  23979. weight: math.unit(90, "lb"),
  23980. name: "Front",
  23981. image: {
  23982. source: "./media/characters/pixil/front.svg",
  23983. extra: 2000 / 1618,
  23984. bottom: 12.3 / 2011
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(5, "feet"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Megamacro",
  23996. height: math.unit(10, "miles"),
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(7 + 2 / 12, "feet"),
  24005. weight: math.unit(200, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/angel/front.svg",
  24009. extra: 1830 / 1737,
  24010. bottom: 22.6 / 1854,
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(7 + 2 / 12, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Macro",
  24022. height: math.unit(1000, "feet")
  24023. },
  24024. {
  24025. name: "Megamacro",
  24026. height: math.unit(2, "miles")
  24027. },
  24028. {
  24029. name: "Gigamacro",
  24030. height: math.unit(20, "earths")
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24036. {
  24037. front: {
  24038. height: math.unit(5, "feet"),
  24039. weight: math.unit(180, "lb"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/mekana/front.svg",
  24043. extra: 1671 / 1605,
  24044. bottom: 3.5 / 1691
  24045. }
  24046. },
  24047. side: {
  24048. height: math.unit(5, "feet"),
  24049. weight: math.unit(180, "lb"),
  24050. name: "Side",
  24051. image: {
  24052. source: "./media/characters/mekana/side.svg",
  24053. extra: 1671 / 1605,
  24054. bottom: 3.5 / 1691
  24055. }
  24056. },
  24057. back: {
  24058. height: math.unit(5, "feet"),
  24059. weight: math.unit(180, "lb"),
  24060. name: "Back",
  24061. image: {
  24062. source: "./media/characters/mekana/back.svg",
  24063. extra: 1671 / 1605,
  24064. bottom: 3.5 / 1691
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(5, "feet"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24078. {
  24079. front: {
  24080. height: math.unit(4 + 6 / 12, "feet"),
  24081. weight: math.unit(80, "lb"),
  24082. name: "Front",
  24083. image: {
  24084. source: "./media/characters/pixie/front.svg",
  24085. extra: 1924 / 1825,
  24086. bottom: 22.4 / 1946
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Normal",
  24093. height: math.unit(4 + 6 / 12, "feet"),
  24094. default: true
  24095. },
  24096. {
  24097. name: "Macro",
  24098. height: math.unit(40, "feet")
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(2.1, "meters"),
  24107. weight: math.unit(200, "lb"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/the-lascivious/front.svg",
  24111. extra: 1 / 0.893,
  24112. bottom: 3.5 / 573.7
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Human Scale",
  24119. height: math.unit(2.1, "meters")
  24120. },
  24121. {
  24122. name: "Wolxi Scale",
  24123. height: math.unit(46.2, "m"),
  24124. default: true
  24125. },
  24126. {
  24127. name: "Boinker of Buildings",
  24128. height: math.unit(10, "km")
  24129. },
  24130. {
  24131. name: "Shagger of Skyscrapers",
  24132. height: math.unit(40, "km")
  24133. },
  24134. {
  24135. name: "Banger of Boroughs",
  24136. height: math.unit(4000, "km")
  24137. },
  24138. {
  24139. name: "Screwer of States",
  24140. height: math.unit(100000, "km")
  24141. },
  24142. {
  24143. name: "Pounder of Planets",
  24144. height: math.unit(2000000, "km")
  24145. },
  24146. ]
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24150. {
  24151. front: {
  24152. height: math.unit(6, "feet"),
  24153. weight: math.unit(150, "lb"),
  24154. name: "Front",
  24155. image: {
  24156. source: "./media/characters/aj/front.svg",
  24157. extra: 2039 / 1562,
  24158. bottom: 40 / 2079
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(11 + 6 / 12, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Megamacro",
  24170. height: math.unit(60, "megameters")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24176. {
  24177. side: {
  24178. height: math.unit(31 + 8/12, "feet"),
  24179. weight: math.unit(75000, "kg"),
  24180. name: "Side",
  24181. image: {
  24182. source: "./media/characters/koros/side.svg",
  24183. extra: 1442/1297,
  24184. bottom: 122.7/1562
  24185. }
  24186. },
  24187. dicksKingsCrown: {
  24188. height: math.unit(6, "feet"),
  24189. name: "Dicks (King's Crown)",
  24190. image: {
  24191. source: "./media/characters/koros/dicks-kings-crown.svg"
  24192. }
  24193. },
  24194. dicksTailSet: {
  24195. height: math.unit(3, "feet"),
  24196. name: "Dicks (Tail Set)",
  24197. image: {
  24198. source: "./media/characters/koros/dicks-tail-set.svg"
  24199. }
  24200. },
  24201. dickCumming: {
  24202. height: math.unit(7.98, "feet"),
  24203. name: "Dick (Cumming)",
  24204. image: {
  24205. source: "./media/characters/koros/dick-cumming.svg"
  24206. }
  24207. },
  24208. dicksBack: {
  24209. height: math.unit(5.9, "feet"),
  24210. name: "Dicks (Back)",
  24211. image: {
  24212. source: "./media/characters/koros/dicks-back.svg"
  24213. }
  24214. },
  24215. dicksFront: {
  24216. height: math.unit(3.72, "feet"),
  24217. name: "Dicks (Front)",
  24218. image: {
  24219. source: "./media/characters/koros/dicks-front.svg"
  24220. }
  24221. },
  24222. dicksPeeking: {
  24223. height: math.unit(3.0, "feet"),
  24224. name: "Dicks (Peeking)",
  24225. image: {
  24226. source: "./media/characters/koros/dicks-peeking.svg"
  24227. }
  24228. },
  24229. eye: {
  24230. height: math.unit(1.7, "feet"),
  24231. name: "Eye",
  24232. image: {
  24233. source: "./media/characters/koros/eye.svg"
  24234. }
  24235. },
  24236. headFront: {
  24237. height: math.unit(11.69, "feet"),
  24238. name: "Head (Front)",
  24239. image: {
  24240. source: "./media/characters/koros/head-front.svg"
  24241. }
  24242. },
  24243. headSide: {
  24244. height: math.unit(14, "feet"),
  24245. name: "Head (Side)",
  24246. image: {
  24247. source: "./media/characters/koros/head-side.svg"
  24248. }
  24249. },
  24250. leg: {
  24251. height: math.unit(17, "feet"),
  24252. name: "Leg",
  24253. image: {
  24254. source: "./media/characters/koros/leg.svg"
  24255. }
  24256. },
  24257. mawSide: {
  24258. height: math.unit(12.8, "feet"),
  24259. name: "Maw (Side)",
  24260. image: {
  24261. source: "./media/characters/koros/maw-side.svg"
  24262. }
  24263. },
  24264. mawSpitting: {
  24265. height: math.unit(17, "feet"),
  24266. name: "Maw (Spitting)",
  24267. image: {
  24268. source: "./media/characters/koros/maw-spitting.svg"
  24269. }
  24270. },
  24271. slit: {
  24272. height: math.unit(2.8, "feet"),
  24273. name: "Slit",
  24274. image: {
  24275. source: "./media/characters/koros/slit.svg"
  24276. }
  24277. },
  24278. stomach: {
  24279. height: math.unit(6.8, "feet"),
  24280. capacity: math.unit(20, "people"),
  24281. name: "Stomach",
  24282. image: {
  24283. source: "./media/characters/koros/stomach.svg"
  24284. }
  24285. },
  24286. wingspanBottom: {
  24287. height: math.unit(114, "feet"),
  24288. name: "Wingspan (Bottom)",
  24289. image: {
  24290. source: "./media/characters/koros/wingspan-bottom.svg"
  24291. }
  24292. },
  24293. wingspanTop: {
  24294. height: math.unit(104, "feet"),
  24295. name: "Wingspan (Top)",
  24296. image: {
  24297. source: "./media/characters/koros/wingspan-top.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(31 + 8/12, "feet"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(18 + 5/12, "feet"),
  24314. weight: math.unit(3750, "kg"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/vexx/front.svg",
  24318. extra: 426/396,
  24319. bottom: 31.5/458
  24320. }
  24321. },
  24322. maw: {
  24323. height: math.unit(6, "feet"),
  24324. name: "Maw",
  24325. image: {
  24326. source: "./media/characters/vexx/maw.svg"
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(18 + 5/12, "feet"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24340. {
  24341. front: {
  24342. height: math.unit(17 + 6/12, "feet"),
  24343. weight: math.unit(150, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/baadra/front.svg",
  24347. extra: 3137/2890,
  24348. bottom: 168.4/3305
  24349. }
  24350. },
  24351. back: {
  24352. height: math.unit(17 + 6/12, "feet"),
  24353. weight: math.unit(150, "lb"),
  24354. name: "Back",
  24355. image: {
  24356. source: "./media/characters/baadra/back.svg",
  24357. extra: 3142/2890,
  24358. bottom: 220/3371
  24359. }
  24360. },
  24361. head: {
  24362. height: math.unit(5.45, "feet"),
  24363. name: "Head",
  24364. image: {
  24365. source: "./media/characters/baadra/head.svg"
  24366. }
  24367. },
  24368. headAngry: {
  24369. height: math.unit(4.95, "feet"),
  24370. name: "Head (Angry)",
  24371. image: {
  24372. source: "./media/characters/baadra/head-angry.svg"
  24373. }
  24374. },
  24375. headOpen: {
  24376. height: math.unit(6, "feet"),
  24377. name: "Head (Open)",
  24378. image: {
  24379. source: "./media/characters/baadra/head-open.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(17 + 6/12, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(7 + 3/12, "feet"),
  24396. weight: math.unit(180, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/juri/front.svg",
  24400. extra: 1401/1237,
  24401. bottom: 18.5/1418
  24402. }
  24403. },
  24404. side: {
  24405. height: math.unit(7 + 3/12, "feet"),
  24406. weight: math.unit(180, "lb"),
  24407. name: "Side",
  24408. image: {
  24409. source: "./media/characters/juri/side.svg",
  24410. extra: 1424/1242,
  24411. bottom: 18.5/1447
  24412. }
  24413. },
  24414. sitting: {
  24415. height: math.unit(6, "feet"),
  24416. weight: math.unit(180, "lb"),
  24417. name: "Sitting",
  24418. image: {
  24419. source: "./media/characters/juri/sitting.svg",
  24420. extra: 1270/1143,
  24421. bottom: 100/1343
  24422. }
  24423. },
  24424. back: {
  24425. height: math.unit(7 + 3/12, "feet"),
  24426. weight: math.unit(180, "lb"),
  24427. name: "Back",
  24428. image: {
  24429. source: "./media/characters/juri/back.svg",
  24430. extra: 1377/1240,
  24431. bottom: 23.7/1405
  24432. }
  24433. },
  24434. maw: {
  24435. height: math.unit(2.8, "feet"),
  24436. name: "Maw",
  24437. image: {
  24438. source: "./media/characters/juri/maw.svg"
  24439. }
  24440. },
  24441. stomach: {
  24442. height: math.unit(0.89, "feet"),
  24443. capacity: math.unit(4, "liters"),
  24444. name: "Stomach",
  24445. image: {
  24446. source: "./media/characters/juri/stomach.svg"
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(7 + 3/12, "feet"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24460. {
  24461. fox: {
  24462. height: math.unit(5 + 6/12, "feet"),
  24463. weight: math.unit(140, "lb"),
  24464. name: "Fox",
  24465. image: {
  24466. source: "./media/characters/maxene-sita/fox.svg",
  24467. extra: 146/138,
  24468. bottom: 2.1/148.19
  24469. }
  24470. },
  24471. kitsune: {
  24472. height: math.unit(10, "feet"),
  24473. weight: math.unit(800, "lb"),
  24474. name: "Kitsune",
  24475. image: {
  24476. source: "./media/characters/maxene-sita/kitsune.svg",
  24477. extra: 185/176,
  24478. bottom: 4.7/189.9
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5 + 6/12, "feet"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24492. {
  24493. front: {
  24494. height: math.unit(3 + 4/12, "feet"),
  24495. weight: math.unit(70, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/maia/front.svg",
  24499. extra: 227/219.5,
  24500. bottom: 40 / 267
  24501. }
  24502. },
  24503. back: {
  24504. height: math.unit(3 + 4/12, "feet"),
  24505. weight: math.unit(70, "lb"),
  24506. name: "Back",
  24507. image: {
  24508. source: "./media/characters/maia/back.svg",
  24509. extra: 237/225
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Normal",
  24516. height: math.unit(3 + 4/12, "feet"),
  24517. default: true
  24518. },
  24519. ]
  24520. ))
  24521. characterMakers.push(() => makeCharacter(
  24522. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24523. {
  24524. front: {
  24525. height: math.unit(5 + 10/12, "feet"),
  24526. weight: math.unit(197, "lb"),
  24527. name: "Front",
  24528. image: {
  24529. source: "./media/characters/jabaro/front.svg",
  24530. extra: 225/216,
  24531. bottom: 5.06/230
  24532. }
  24533. },
  24534. back: {
  24535. height: math.unit(5 + 10/12, "feet"),
  24536. weight: math.unit(197, "lb"),
  24537. name: "Back",
  24538. image: {
  24539. source: "./media/characters/jabaro/back.svg",
  24540. extra: 225/219,
  24541. bottom: 1.9/227
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(5 + 10/12, "feet"),
  24549. default: true
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(5 + 8/12, "feet"),
  24558. weight: math.unit(139, "lb"),
  24559. name: "Front",
  24560. image: {
  24561. source: "./media/characters/risa/front.svg",
  24562. extra: 270/260,
  24563. bottom: 11.2/282
  24564. }
  24565. },
  24566. back: {
  24567. height: math.unit(5 + 8/12, "feet"),
  24568. weight: math.unit(139, "lb"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/risa/back.svg",
  24572. extra: 264/255,
  24573. bottom: 4/268
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(5 + 8/12, "feet"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24587. {
  24588. front: {
  24589. height: math.unit(2 + 11/12, "feet"),
  24590. weight: math.unit(30, "lb"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/weatley/front.svg",
  24594. bottom: 10.7/414,
  24595. extra: 403.5/362
  24596. }
  24597. },
  24598. back: {
  24599. height: math.unit(2 + 11/12, "feet"),
  24600. weight: math.unit(30, "lb"),
  24601. name: "Back",
  24602. image: {
  24603. source: "./media/characters/weatley/back.svg",
  24604. bottom: 10.7/414,
  24605. extra: 403.5/362
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(2 + 11/12, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(5 + 2/12, "feet"),
  24622. weight: math.unit(50, "kg"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/mercury-crescent/front.svg",
  24626. extra: 1088/1033,
  24627. bottom: 18.9/1109
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(5 + 2/12, "feet"),
  24635. default: true
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(2, "feet"),
  24644. weight: math.unit(15, "kg"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/diamond-jones/front.svg",
  24648. bottom: 16/568
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(2, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(3, "feet"),
  24665. weight: math.unit(30, "kg"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/sweet-bit/front.svg",
  24669. extra: 675/567,
  24670. bottom: 27.7/703
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(3, "feet"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24684. {
  24685. side: {
  24686. height: math.unit(9.178, "feet"),
  24687. weight: math.unit(500, "lb"),
  24688. name: "Side",
  24689. image: {
  24690. source: "./media/characters/umbrazen/side.svg",
  24691. extra: 1730/1473,
  24692. bottom: 34.6/1765
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(9.178, "feet"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(10, "feet"),
  24709. weight: math.unit(750, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/arlist/front.svg",
  24713. extra: 961/778,
  24714. bottom: 6.2/986
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(10, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 1/12, "feet"),
  24731. weight: math.unit(110, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/aradel/front.svg",
  24735. extra: 324/303,
  24736. bottom: 3.6/329.4
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(5 + 1/12, "feet"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(3 + 8/12, "feet"),
  24753. weight: math.unit(50, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/serryn/front.svg",
  24757. extra: 1792/1656,
  24758. bottom: 43.5/1840
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(3 + 8/12, "feet"),
  24766. default: true
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Xavier Thyme" },
  24772. {
  24773. front: {
  24774. height: math.unit(7 + 10/12, "feet"),
  24775. weight: math.unit(255, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/xavier-thyme/front.svg",
  24779. extra: 3733/3642,
  24780. bottom: 131/3869
  24781. }
  24782. },
  24783. frontRaven: {
  24784. height: math.unit(7 + 10/12, "feet"),
  24785. weight: math.unit(255, "lb"),
  24786. name: "Front (Raven)",
  24787. image: {
  24788. source: "./media/characters/xavier-thyme/front-raven.svg",
  24789. extra: 4385/3642,
  24790. bottom: 131/4517
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(7 + 10/12, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(1.6, "m"),
  24807. weight: math.unit(50, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/kiki/front.svg",
  24811. extra: 4682/3610,
  24812. bottom: 115/4777
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(1.6, "meters"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(50, "m"),
  24829. weight: math.unit(500, "tonnes"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/ryoko/front.svg",
  24833. extra: 4632/3926,
  24834. bottom: 193/4823
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(50, "meters"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(30, "m"),
  24851. weight: math.unit(22, "tonnes"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/elio/front.svg",
  24855. extra: 4582/3720,
  24856. bottom: 236/4828
  24857. }
  24858. },
  24859. },
  24860. [
  24861. {
  24862. name: "Normal",
  24863. height: math.unit(30, "meters"),
  24864. default: true
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24870. {
  24871. front: {
  24872. height: math.unit(6 + 3/12, "feet"),
  24873. weight: math.unit(120, "lb"),
  24874. name: "Front",
  24875. image: {
  24876. source: "./media/characters/azura/front.svg",
  24877. extra: 1149/1135,
  24878. bottom: 45/1194
  24879. }
  24880. },
  24881. frontClothed: {
  24882. height: math.unit(6 + 3/12, "feet"),
  24883. weight: math.unit(120, "lb"),
  24884. name: "Front (Clothed)",
  24885. image: {
  24886. source: "./media/characters/azura/front-clothed.svg",
  24887. extra: 1149/1135,
  24888. bottom: 45/1194
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(6 + 3/12, "feet"),
  24896. default: true
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(20 + 6/12, "feet")
  24901. },
  24902. {
  24903. name: "Megamacro",
  24904. height: math.unit(12, "miles")
  24905. },
  24906. {
  24907. name: "Gigamacro",
  24908. height: math.unit(10000, "miles")
  24909. },
  24910. {
  24911. name: "Teramacro",
  24912. height: math.unit(900000, "miles")
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(12, "feet"),
  24921. weight: math.unit(1, "ton"),
  24922. capacity: math.unit(660000, "gallons"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/zeus/front.svg",
  24926. extra: 5005/4717,
  24927. bottom: 363/5388
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(12, "feet")
  24935. },
  24936. {
  24937. name: "Preferred Size",
  24938. height: math.unit(0.5, "miles"),
  24939. default: true
  24940. },
  24941. {
  24942. name: "Giga Horse",
  24943. height: math.unit(300, "miles")
  24944. },
  24945. {
  24946. name: "Riding Planets",
  24947. height: math.unit(30, "megameters")
  24948. },
  24949. {
  24950. name: "Cosmic Giant",
  24951. height: math.unit(3, "zettameters")
  24952. },
  24953. {
  24954. name: "Breeding God",
  24955. height: math.unit(9.92e22, "yottameters")
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24961. {
  24962. side: {
  24963. height: math.unit(9, "feet"),
  24964. weight: math.unit(1500, "kg"),
  24965. name: "Side",
  24966. image: {
  24967. source: "./media/characters/fang/side.svg",
  24968. extra: 924/866,
  24969. bottom: 47.5/972.3
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(9, "feet"),
  24977. default: true
  24978. },
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(75 + 6/12, "feet")
  24982. },
  24983. {
  24984. name: "Teramacro",
  24985. height: math.unit(50000, "miles")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(10, "feet"),
  24994. weight: math.unit(2, "tons"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/rekhit/front.svg",
  24998. extra: 2796/2590,
  24999. bottom: 225/3022
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(10, "feet"),
  25007. default: true
  25008. },
  25009. {
  25010. name: "Macro",
  25011. height: math.unit(500, "feet")
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Dahlia Verrick" },
  25017. {
  25018. front: {
  25019. height: math.unit(7 + 6.451/12, "feet"),
  25020. weight: math.unit(310, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/dahlia-verrick/front.svg",
  25024. extra: 1488/1365,
  25025. bottom: 6.2/1495
  25026. }
  25027. },
  25028. back: {
  25029. height: math.unit(7 + 6.451/12, "feet"),
  25030. weight: math.unit(310, "lb"),
  25031. name: "Back",
  25032. image: {
  25033. source: "./media/characters/dahlia-verrick/back.svg",
  25034. extra: 1472/1351,
  25035. bottom: 5.28/1477
  25036. }
  25037. },
  25038. frontBusiness: {
  25039. height: math.unit(7 + 6.451/12, "feet"),
  25040. weight: math.unit(200, "lb"),
  25041. name: "Front (Business)",
  25042. image: {
  25043. source: "./media/characters/dahlia-verrick/front-business.svg",
  25044. extra: 1478/1381,
  25045. bottom: 5.5/1484
  25046. }
  25047. },
  25048. frontCasual: {
  25049. height: math.unit(7 + 6.451/12, "feet"),
  25050. weight: math.unit(200, "lb"),
  25051. name: "Front (Casual)",
  25052. image: {
  25053. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25054. extra: 1478/1381,
  25055. bottom: 5.5/1484
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Travel-Sized",
  25062. height: math.unit(7.45, "inches")
  25063. },
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(7 + 6.451/12, "feet"),
  25067. default: true
  25068. },
  25069. {
  25070. name: "Hitting the Town",
  25071. height: math.unit(37 + 8/12, "feet")
  25072. },
  25073. {
  25074. name: "Stomp in the Suburbs",
  25075. height: math.unit(964 + 9.728/12, "feet")
  25076. },
  25077. {
  25078. name: "Sit on the City",
  25079. height: math.unit(61747 + 10.592/12, "feet")
  25080. },
  25081. {
  25082. name: "Glomp the Globe",
  25083. height: math.unit(252919327 + 4.832/12, "feet")
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25089. {
  25090. front: {
  25091. height: math.unit(6 + 4/12, "feet"),
  25092. weight: math.unit(320, "lb"),
  25093. name: "Front",
  25094. image: {
  25095. source: "./media/characters/balina-mahigan/front.svg",
  25096. extra: 447/428,
  25097. bottom: 18/466
  25098. }
  25099. },
  25100. back: {
  25101. height: math.unit(6 + 4/12, "feet"),
  25102. weight: math.unit(320, "lb"),
  25103. name: "Back",
  25104. image: {
  25105. source: "./media/characters/balina-mahigan/back.svg",
  25106. extra: 445/428,
  25107. bottom: 4.07/448
  25108. }
  25109. },
  25110. arm: {
  25111. height: math.unit(1.88, "feet"),
  25112. name: "Arm",
  25113. image: {
  25114. source: "./media/characters/balina-mahigan/arm.svg"
  25115. }
  25116. },
  25117. backPort: {
  25118. height: math.unit(0.685, "feet"),
  25119. name: "Back Port",
  25120. image: {
  25121. source: "./media/characters/balina-mahigan/back-port.svg"
  25122. }
  25123. },
  25124. hoofpaw: {
  25125. height: math.unit(1.41, "feet"),
  25126. name: "Hoofpaw",
  25127. image: {
  25128. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25129. }
  25130. },
  25131. leftHandBack: {
  25132. height: math.unit(0.938, "feet"),
  25133. name: "Left Hand (Back)",
  25134. image: {
  25135. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25136. }
  25137. },
  25138. leftHandFront: {
  25139. height: math.unit(0.938, "feet"),
  25140. name: "Left Hand (Front)",
  25141. image: {
  25142. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25143. }
  25144. },
  25145. rightHandBack: {
  25146. height: math.unit(0.95, "feet"),
  25147. name: "Right Hand (Back)",
  25148. image: {
  25149. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25150. }
  25151. },
  25152. rightHandFront: {
  25153. height: math.unit(0.95, "feet"),
  25154. name: "Right Hand (Front)",
  25155. image: {
  25156. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(6 + 4/12, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(6, "feet"),
  25173. weight: math.unit(320, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/balina-mejeri/front.svg",
  25177. extra: 517/488,
  25178. bottom: 44.2/561
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(6 + 4/12, "feet")
  25186. },
  25187. {
  25188. name: "Business",
  25189. height: math.unit(155, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25196. {
  25197. kneeling: {
  25198. height: math.unit(6 + 4/12, "feet"),
  25199. weight: math.unit(300*20, "lb"),
  25200. name: "Kneeling",
  25201. image: {
  25202. source: "./media/characters/balbarian/kneeling.svg",
  25203. extra: 922/862,
  25204. bottom: 42.4/965
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(6 + 4/12, "feet")
  25212. },
  25213. {
  25214. name: "Treasured",
  25215. height: math.unit(18 + 9/12, "feet"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(900, "feet")
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(6 + 4/12, "feet"),
  25229. weight: math.unit(325, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/balina-amarini/front.svg",
  25233. extra: 415/403,
  25234. bottom: 19/433.4
  25235. }
  25236. },
  25237. back: {
  25238. height: math.unit(6 + 4/12, "feet"),
  25239. weight: math.unit(325, "lb"),
  25240. name: "Back",
  25241. image: {
  25242. source: "./media/characters/balina-amarini/back.svg",
  25243. extra: 415/403,
  25244. bottom: 13.5/432
  25245. }
  25246. },
  25247. overdrive: {
  25248. height: math.unit(6 + 4/12, "feet"),
  25249. weight: math.unit(400, "lb"),
  25250. name: "Overdrive",
  25251. image: {
  25252. source: "./media/characters/balina-amarini/overdrive.svg",
  25253. extra: 269/259,
  25254. bottom: 12/282
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Boom",
  25261. height: math.unit(9 + 10/12, "feet"),
  25262. default: true
  25263. },
  25264. {
  25265. name: "Macro",
  25266. height: math.unit(280, "feet")
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25272. {
  25273. goddess: {
  25274. height: math.unit(600, "feet"),
  25275. weight: math.unit(2000000, "tons"),
  25276. name: "Goddess",
  25277. image: {
  25278. source: "./media/characters/lady-kubwa/goddess.svg",
  25279. extra: 1240.5/1223,
  25280. bottom: 22/1263
  25281. }
  25282. },
  25283. goddesser: {
  25284. height: math.unit(900, "feet"),
  25285. weight: math.unit(20000000, "lb"),
  25286. name: "Goddess-er",
  25287. image: {
  25288. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25289. extra: 899/888,
  25290. bottom: 12.6/912
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(600, "feet"),
  25298. default: true
  25299. },
  25300. {
  25301. name: "Megamacro",
  25302. height: math.unit(250, "miles")
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(7 + 7/12, "feet"),
  25311. weight: math.unit(250, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/tala-grovehorn/front.svg",
  25315. extra: 2636/2525,
  25316. bottom: 147/2781
  25317. }
  25318. },
  25319. back: {
  25320. height: math.unit(7 + 7/12, "feet"),
  25321. weight: math.unit(250, "lb"),
  25322. name: "Back",
  25323. image: {
  25324. source: "./media/characters/tala-grovehorn/back.svg",
  25325. extra: 2635/2539,
  25326. bottom: 100/2732.8
  25327. }
  25328. },
  25329. mouth: {
  25330. height: math.unit(1.15, "feet"),
  25331. name: "Mouth",
  25332. image: {
  25333. source: "./media/characters/tala-grovehorn/mouth.svg"
  25334. }
  25335. },
  25336. dick: {
  25337. height: math.unit(2.36, "feet"),
  25338. name: "Dick",
  25339. image: {
  25340. source: "./media/characters/tala-grovehorn/dick.svg"
  25341. }
  25342. },
  25343. slit: {
  25344. height: math.unit(0.61, "feet"),
  25345. name: "Slit",
  25346. image: {
  25347. source: "./media/characters/tala-grovehorn/slit.svg"
  25348. }
  25349. },
  25350. },
  25351. [
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(7 + 7/12, "feet"),
  25359. weight: math.unit(225, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/epona/front.svg",
  25363. extra: 2445/2290,
  25364. bottom: 251/2696
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(7 + 7/12, "feet"),
  25369. weight: math.unit(225, "lb"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/epona/back.svg",
  25373. extra: 2546/2408,
  25374. bottom: 44/2589
  25375. }
  25376. },
  25377. genitals: {
  25378. height: math.unit(1.5, "feet"),
  25379. name: "Genitals",
  25380. image: {
  25381. source: "./media/characters/epona/genitals.svg"
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(7 + 7/12, "feet")
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(7, "feet"),
  25397. weight: math.unit(518, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/avia-bloodbourn/front.svg",
  25401. extra: 1466/1350,
  25402. bottom: 65/1527
  25403. }
  25404. },
  25405. },
  25406. [
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(9.35, "feet"),
  25414. weight: math.unit(600, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/amera/front.svg",
  25418. extra: 891/818,
  25419. bottom: 30/922.7
  25420. }
  25421. },
  25422. back: {
  25423. height: math.unit(9.35, "feet"),
  25424. weight: math.unit(600, "lb"),
  25425. name: "Back",
  25426. image: {
  25427. source: "./media/characters/amera/back.svg",
  25428. extra: 876/824,
  25429. bottom: 6.8/884
  25430. }
  25431. },
  25432. dick: {
  25433. height: math.unit(2.14, "feet"),
  25434. name: "Dick",
  25435. image: {
  25436. source: "./media/characters/amera/dick.svg"
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(9.35, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25450. {
  25451. kneeling: {
  25452. height: math.unit(3 + 4/12, "feet"),
  25453. weight: math.unit(90, "lb"),
  25454. name: "Kneeling",
  25455. image: {
  25456. source: "./media/characters/rosewen/kneeling.svg",
  25457. extra: 1835/1571,
  25458. bottom: 27.7/1862
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(3 + 4/12, "feet"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25472. {
  25473. front: {
  25474. height: math.unit(5 + 10/12, "feet"),
  25475. weight: math.unit(200, "lb"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/sabah/front.svg",
  25479. extra: 849/763,
  25480. bottom: 33.9/881
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(5 + 10/12, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25494. {
  25495. front: {
  25496. height: math.unit(3 + 5/12, "feet"),
  25497. weight: math.unit(40, "kg"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/purple-flame/front.svg",
  25501. extra: 1577/1412,
  25502. bottom: 97/1694
  25503. }
  25504. },
  25505. frontDressed: {
  25506. height: math.unit(3 + 5/12, "feet"),
  25507. weight: math.unit(40, "kg"),
  25508. name: "Front (Dressed)",
  25509. image: {
  25510. source: "./media/characters/purple-flame/front-dressed.svg",
  25511. extra: 1577/1412,
  25512. bottom: 97/1694
  25513. }
  25514. },
  25515. headphones: {
  25516. height: math.unit(0.85, "feet"),
  25517. name: "Headphones",
  25518. image: {
  25519. source: "./media/characters/purple-flame/headphones.svg"
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Really Small",
  25526. height: math.unit(5, "cm")
  25527. },
  25528. {
  25529. name: "Micro",
  25530. height: math.unit(1 + 5/12, "feet")
  25531. },
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(3 + 5/12, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Minimacro",
  25539. height: math.unit(125, "feet")
  25540. },
  25541. {
  25542. name: "Macro",
  25543. height: math.unit(0.5, "miles")
  25544. },
  25545. {
  25546. name: "Megamacro",
  25547. height: math.unit(50, "miles")
  25548. },
  25549. {
  25550. name: "Gigantic",
  25551. height: math.unit(750, "miles")
  25552. },
  25553. {
  25554. name: "Planetary",
  25555. height: math.unit(15000, "miles")
  25556. },
  25557. ]
  25558. ))
  25559. //characters
  25560. function makeCharacters() {
  25561. const results = [];
  25562. characterMakers.forEach(character => {
  25563. results.push(character());
  25564. });
  25565. return results;
  25566. }