less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

49673 wiersze
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(5 + 5 / 12, "feet"),
  4837. weight: math.unit(120, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg",
  4841. extra: 1003/933,
  4842. bottom: 21/1024
  4843. }
  4844. },
  4845. paw: {
  4846. height: math.unit(0.35, "feet"),
  4847. name: "Paw",
  4848. image: {
  4849. source: "./media/characters/geta/paw.svg"
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Micro",
  4856. height: math.unit(3, "inches"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5 + 5 / 12, "feet")
  4862. }
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(300, "lbs"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/tyrnn/front.svg"
  4874. }
  4875. }
  4876. },
  4877. [
  4878. {
  4879. name: "Main Height",
  4880. height: math.unit(355, "feet"),
  4881. default: true
  4882. },
  4883. {
  4884. name: "Fave. Height",
  4885. height: math.unit(2400, "feet")
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4891. {
  4892. front: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(300, "lbs"),
  4895. name: "Front",
  4896. image: {
  4897. source: "./media/characters/appledectomy/front.svg"
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "feet")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(50, "miles"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Gigamacro",
  4913. height: math.unit(5000, "miles")
  4914. },
  4915. {
  4916. name: "Teramacro",
  4917. height: math.unit(250000, "miles")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(200, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/vulpes/front.svg",
  4930. extra: 573 / 543,
  4931. bottom: 0.033
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(200, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/vulpes/side.svg",
  4940. extra: 577 / 549,
  4941. bottom: 11 / 588
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(200, "lbs"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/vulpes/back.svg",
  4950. extra: 573 / 549,
  4951. bottom: 20 / 593
  4952. }
  4953. },
  4954. feet: {
  4955. height: math.unit(1.276, "feet"),
  4956. name: "Feet",
  4957. image: {
  4958. source: "./media/characters/vulpes/feet.svg"
  4959. }
  4960. },
  4961. maw: {
  4962. height: math.unit(1.18, "feet"),
  4963. name: "Maw",
  4964. image: {
  4965. source: "./media/characters/vulpes/maw.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Micro",
  4972. height: math.unit(2, "inches")
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6.3, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(850, "feet")
  4981. },
  4982. {
  4983. name: "Megamacro",
  4984. height: math.unit(7500, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Gigamacro",
  4989. height: math.unit(570000, "miles")
  4990. }
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4995. {
  4996. front: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(210, "lbs"),
  4999. name: "Front",
  5000. image: {
  5001. source: "./media/characters/rain-fallen/front.svg"
  5002. }
  5003. },
  5004. side: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/side.svg"
  5010. }
  5011. },
  5012. back: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Back",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/back.svg"
  5018. }
  5019. },
  5020. feral: {
  5021. height: math.unit(9, "feet"),
  5022. weight: math.unit(700, "lbs"),
  5023. name: "Feral",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/feral.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Meddling with Mortals",
  5032. height: math.unit(8 + 8/12, "feet")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5, "meter")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(150, "meter"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(278e6, "meter")
  5046. },
  5047. {
  5048. name: "Gigamacro",
  5049. height: math.unit(2e9, "meter")
  5050. },
  5051. {
  5052. name: "Teramacro",
  5053. height: math.unit(8e12, "meter")
  5054. },
  5055. {
  5056. name: "Devourer",
  5057. height: math.unit(14, "zettameters")
  5058. },
  5059. {
  5060. name: "Scarlet King",
  5061. height: math.unit(18, "yottameters")
  5062. },
  5063. {
  5064. name: "Void",
  5065. height: math.unit(1e88, "yottameters")
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5071. {
  5072. standing: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Standing",
  5076. image: {
  5077. source: "./media/characters/zaakira/standing.svg",
  5078. extra: 1599/1504,
  5079. bottom: 39/1638
  5080. }
  5081. },
  5082. laying: {
  5083. height: math.unit(3, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Laying",
  5086. image: {
  5087. source: "./media/characters/zaakira/laying.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(279, "feet"),
  5099. default: true
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5105. {
  5106. femSfw: {
  5107. height: math.unit(8, "feet"),
  5108. weight: math.unit(350, "lb"),
  5109. name: "Fem",
  5110. image: {
  5111. source: "./media/characters/sigvald/fem-sfw.svg",
  5112. extra: 182 / 164,
  5113. bottom: 8.7 / 190.5
  5114. }
  5115. },
  5116. femNsfw: {
  5117. height: math.unit(8, "feet"),
  5118. weight: math.unit(350, "lb"),
  5119. name: "Fem (NSFW)",
  5120. image: {
  5121. source: "./media/characters/sigvald/fem-nsfw.svg",
  5122. extra: 182 / 164,
  5123. bottom: 8.7 / 190.5
  5124. }
  5125. },
  5126. maleNsfw: {
  5127. height: math.unit(8, "feet"),
  5128. weight: math.unit(350, "lb"),
  5129. name: "Male (NSFW)",
  5130. image: {
  5131. source: "./media/characters/sigvald/male-nsfw.svg",
  5132. extra: 182 / 164,
  5133. bottom: 8.7 / 190.5
  5134. }
  5135. },
  5136. hermNsfw: {
  5137. height: math.unit(8, "feet"),
  5138. weight: math.unit(350, "lb"),
  5139. name: "Herm (NSFW)",
  5140. image: {
  5141. source: "./media/characters/sigvald/herm-nsfw.svg",
  5142. extra: 182 / 164,
  5143. bottom: 8.7 / 190.5
  5144. }
  5145. },
  5146. dick: {
  5147. height: math.unit(2.36, "feet"),
  5148. name: "Dick",
  5149. image: {
  5150. source: "./media/characters/sigvald/dick.svg"
  5151. }
  5152. },
  5153. eye: {
  5154. height: math.unit(0.31, "feet"),
  5155. name: "Eye",
  5156. image: {
  5157. source: "./media/characters/sigvald/eye.svg"
  5158. }
  5159. },
  5160. mouth: {
  5161. height: math.unit(0.92, "feet"),
  5162. name: "Mouth",
  5163. image: {
  5164. source: "./media/characters/sigvald/mouth.svg"
  5165. }
  5166. },
  5167. paws: {
  5168. height: math.unit(2.2, "feet"),
  5169. name: "Paws",
  5170. image: {
  5171. source: "./media/characters/sigvald/paws.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet")
  5179. },
  5180. {
  5181. name: "Large",
  5182. height: math.unit(12, "feet")
  5183. },
  5184. {
  5185. name: "Larger",
  5186. height: math.unit(20, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(150, "feet")
  5191. },
  5192. {
  5193. name: "Macro+",
  5194. height: math.unit(200, "feet"),
  5195. default: true
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(12, "feet"),
  5204. weight: math.unit(2000, "kg"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/scott/side.svg",
  5208. extra: 754 / 724,
  5209. bottom: 0.069
  5210. }
  5211. },
  5212. upright: {
  5213. height: math.unit(12, "feet"),
  5214. weight: math.unit(2000, "kg"),
  5215. name: "Upright",
  5216. image: {
  5217. source: "./media/characters/scott/upright.svg",
  5218. extra: 3881 / 3722,
  5219. bottom: 0.05
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(12, "feet"),
  5227. default: true
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5233. {
  5234. side: {
  5235. height: math.unit(8, "meters"),
  5236. weight: math.unit(84755, "lbs"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/tobias/side.svg",
  5240. extra: 1474 / 1096,
  5241. bottom: 38.9 / 1513.1235
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8, "meters"),
  5249. default: true
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5.5, "feet"),
  5258. weight: math.unit(400, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/kieran/front.svg",
  5262. extra: 2694 / 2364,
  5263. bottom: 217 / 2908
  5264. }
  5265. },
  5266. side: {
  5267. height: math.unit(5.5, "feet"),
  5268. weight: math.unit(400, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/kieran/side.svg",
  5272. extra: 875 / 777,
  5273. bottom: 84.6 / 959
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(5.5, "feet"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5287. {
  5288. side: {
  5289. height: math.unit(2, "meters"),
  5290. weight: math.unit(70, "kg"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/sanya/side.svg",
  5294. bottom: 0.02,
  5295. extra: 1.02
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Small",
  5302. height: math.unit(2, "meters")
  5303. },
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(3, "meters")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(16, "meters"),
  5311. default: true
  5312. },
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5317. {
  5318. front: {
  5319. height: math.unit(2, "meters"),
  5320. weight: math.unit(120, "kg"),
  5321. name: "Front",
  5322. image: {
  5323. source: "./media/characters/miranda/front.svg",
  5324. extra: 195 / 185,
  5325. bottom: 10.9 / 206.5
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(2, "meters"),
  5330. weight: math.unit(120, "kg"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/miranda/back.svg",
  5334. extra: 201 / 193,
  5335. bottom: 2.3 / 203.7
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(10, "feet"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "James", species: ["deer"], tags: ["anthro"] },
  5349. {
  5350. side: {
  5351. height: math.unit(2, "meters"),
  5352. weight: math.unit(100, "kg"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/james/front.svg",
  5356. extra: 10 / 8.5
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(8.5, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5370. {
  5371. side: {
  5372. height: math.unit(9.5, "feet"),
  5373. weight: math.unit(2500, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/heather/side.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(9.5, "feet"),
  5384. default: true
  5385. }
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5390. {
  5391. side: {
  5392. height: math.unit(6.5, "feet"),
  5393. weight: math.unit(400, "lbs"),
  5394. name: "Side",
  5395. image: {
  5396. source: "./media/characters/lukas/side.svg",
  5397. extra: 7.25 / 6.5
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6.5, "feet"),
  5405. default: true
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5411. {
  5412. side: {
  5413. height: math.unit(5, "feet"),
  5414. weight: math.unit(3000, "lbs"),
  5415. name: "Side",
  5416. image: {
  5417. source: "./media/characters/louise/side.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5431. {
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(150, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/ramona/side.svg",
  5438. extra: 871/854,
  5439. bottom: 41/912
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(5.3, "meters"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(20, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(50, "stories")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5461. {
  5462. standing: {
  5463. height: math.unit(5.75, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Standing",
  5466. image: {
  5467. source: "./media/characters/deerpuff/standing.svg",
  5468. extra: 682 / 624
  5469. }
  5470. },
  5471. sitting: {
  5472. height: math.unit(5.75 / 1.79, "feet"),
  5473. weight: math.unit(160, "lbs"),
  5474. name: "Sitting",
  5475. image: {
  5476. source: "./media/characters/deerpuff/sitting.svg",
  5477. bottom: 44 / 400,
  5478. extra: 1
  5479. }
  5480. },
  5481. taurLaying: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(400, "lbs"),
  5484. name: "Taur (Laying)",
  5485. image: {
  5486. source: "./media/characters/deerpuff/taur-laying.svg"
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Puffball",
  5493. height: math.unit(6, "inches")
  5494. },
  5495. {
  5496. name: "Normalpuff",
  5497. height: math.unit(5.75, "feet")
  5498. },
  5499. {
  5500. name: "Macropuff",
  5501. height: math.unit(1500, "feet"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Megapuff",
  5506. height: math.unit(500, "miles")
  5507. },
  5508. {
  5509. name: "Gigapuff",
  5510. height: math.unit(250000, "miles")
  5511. },
  5512. {
  5513. name: "Omegapuff",
  5514. height: math.unit(1000, "lightyears")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5520. {
  5521. stomping: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(170, "lbs"),
  5524. name: "Stomping",
  5525. image: {
  5526. source: "./media/characters/vivian/stomping.svg"
  5527. }
  5528. },
  5529. sitting: {
  5530. height: math.unit(6 / 1.75, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Sitting",
  5533. image: {
  5534. source: "./media/characters/vivian/sitting.svg",
  5535. bottom: 1 / 6.4,
  5536. extra: 1,
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(7, "feet"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(10, "stories")
  5549. },
  5550. {
  5551. name: "Macro+",
  5552. height: math.unit(30, "stories")
  5553. },
  5554. {
  5555. name: "Megamacro",
  5556. height: math.unit(10, "miles")
  5557. },
  5558. {
  5559. name: "Megamacro+",
  5560. height: math.unit(2750000, "meters")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/prince/front.svg",
  5573. extra: 3400 / 3000
  5574. }
  5575. },
  5576. jumping: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Jumping",
  5580. image: {
  5581. source: "./media/characters/prince/jump.svg",
  5582. extra: 2555 / 2134
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(7.75, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Not cute",
  5594. height: math.unit(17, "feet")
  5595. },
  5596. {
  5597. name: "I said NOT",
  5598. height: math.unit(91, "feet")
  5599. },
  5600. {
  5601. name: "Please stop",
  5602. height: math.unit(560, "feet")
  5603. },
  5604. {
  5605. name: "What have you done",
  5606. height: math.unit(2200, "feet")
  5607. },
  5608. {
  5609. name: "Deer God",
  5610. height: math.unit(3.6, "miles")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5616. {
  5617. standing: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(300, "lbs"),
  5620. name: "Standing",
  5621. image: {
  5622. source: "./media/characters/psymon/standing.svg",
  5623. extra: 1888 / 1810,
  5624. bottom: 0.05
  5625. }
  5626. },
  5627. slithering: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. slitheringAlt: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Slithering (Alt)",
  5640. image: {
  5641. source: "./media/characters/psymon/slithering-alt.svg",
  5642. extra: 1330 / 1224
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(11.25, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Large",
  5654. height: math.unit(27, "feet")
  5655. },
  5656. {
  5657. name: "Giant",
  5658. height: math.unit(87, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(365, "feet")
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(3, "miles")
  5667. },
  5668. {
  5669. name: "World Serpent",
  5670. height: math.unit(8000, "miles")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/daimos/front.svg",
  5683. extra: 4160 / 3897,
  5684. bottom: 0.021
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(8, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Big Dog",
  5696. height: math.unit(22, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(127, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3600, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5710. {
  5711. side: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Side",
  5715. image: {
  5716. source: "./media/characters/blake/side.svg",
  5717. extra: 1212 / 1120,
  5718. bottom: 0.05
  5719. }
  5720. },
  5721. crouched: {
  5722. height: math.unit(6 * 0.57, "feet"),
  5723. weight: math.unit(180, "lbs"),
  5724. name: "Crouched",
  5725. image: {
  5726. source: "./media/characters/blake/crouched.svg",
  5727. extra: 840 / 587,
  5728. bottom: 0.04
  5729. }
  5730. },
  5731. bent: {
  5732. height: math.unit(6 * 0.75, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Bent",
  5735. image: {
  5736. source: "./media/characters/blake/bent.svg",
  5737. extra: 592 / 544,
  5738. bottom: 0.035
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(8 + 1 / 6, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Big Backside",
  5750. height: math.unit(37, "feet")
  5751. },
  5752. {
  5753. name: "Subway Shredder",
  5754. height: math.unit(72, "feet")
  5755. },
  5756. {
  5757. name: "City Carver",
  5758. height: math.unit(1675, "feet")
  5759. },
  5760. {
  5761. name: "Tectonic Tweaker",
  5762. height: math.unit(2300, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/guisetto/front.svg",
  5775. extra: 856 / 817,
  5776. bottom: 0.06
  5777. }
  5778. },
  5779. airborne: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(180, "lbs"),
  5782. name: "Airborne",
  5783. image: {
  5784. source: "./media/characters/guisetto/airborne.svg",
  5785. extra: 584 / 525
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(10 + 11 / 12, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Large",
  5797. height: math.unit(35, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(475, "feet")
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/luxor/front.svg",
  5814. extra: 2940 / 2152
  5815. }
  5816. },
  5817. back: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Back",
  5821. image: {
  5822. source: "./media/characters/luxor/back.svg",
  5823. extra: 1083 / 960
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5 + 5 / 6, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Lamp",
  5835. height: math.unit(50, "feet")
  5836. },
  5837. {
  5838. name: "Lämp",
  5839. height: math.unit(300, "feet")
  5840. },
  5841. {
  5842. name: "The sun is a lamp",
  5843. height: math.unit(250000, "miles")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5849. {
  5850. front: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(50, "lbs"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/huoyan/front.svg"
  5856. }
  5857. },
  5858. side: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(180, "lbs"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/huoyan/side.svg"
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Chef",
  5870. height: math.unit(9, "feet")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(65, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(780, "feet")
  5880. },
  5881. {
  5882. name: "Flaming Mountain",
  5883. height: math.unit(4.8, "miles")
  5884. },
  5885. {
  5886. name: "Celestial",
  5887. height: math.unit(765000, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(5 + 3 / 4, "feet"),
  5896. weight: math.unit(120, "lbs"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/tails/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5 + 3 / 4, "feet"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(4, "feet"),
  5916. weight: math.unit(50, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/rainy/front.svg"
  5920. }
  5921. }
  5922. },
  5923. [
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(800, "feet"),
  5927. default: true
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(150, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/rainier/front.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(2, "mm"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/andy-renard/front.svg",
  5959. extra: 1839/1726,
  5960. bottom: 134/1973
  5961. }
  5962. },
  5963. back: {
  5964. height: math.unit(8 + 4/12, "feet"),
  5965. name: "Back",
  5966. image: {
  5967. source: "./media/characters/andy-renard/back.svg",
  5968. extra: 1838/1710,
  5969. bottom: 105/1943
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Tall",
  5976. height: math.unit(8 + 4/12, "feet")
  5977. },
  5978. {
  5979. name: "Mini Macro",
  5980. height: math.unit(15, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(100, "feet")
  5986. },
  5987. {
  5988. name: "Mega Macro",
  5989. height: math.unit(1000, "feet")
  5990. },
  5991. {
  5992. name: "Giga Macro",
  5993. height: math.unit(10, "miles")
  5994. },
  5995. {
  5996. name: "God Macro",
  5997. height: math.unit(1, "multiverse")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(210, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cimmaron/front-sfw.svg",
  6010. extra: 701 / 676,
  6011. bottom: 0.046
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(210, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/cimmaron/back-sfw.svg",
  6020. extra: 701 / 676,
  6021. bottom: 0.046
  6022. }
  6023. },
  6024. frontNsfw: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(210, "lbs"),
  6027. name: "Front (NSFW)",
  6028. image: {
  6029. source: "./media/characters/cimmaron/front-nsfw.svg",
  6030. extra: 701 / 676,
  6031. bottom: 0.046
  6032. }
  6033. },
  6034. backNsfw: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(210, "lbs"),
  6037. name: "Back (NSFW)",
  6038. image: {
  6039. source: "./media/characters/cimmaron/back-nsfw.svg",
  6040. extra: 701 / 676,
  6041. bottom: 0.046
  6042. }
  6043. },
  6044. dick: {
  6045. height: math.unit(1.714, "feet"),
  6046. name: "Dick",
  6047. image: {
  6048. source: "./media/characters/cimmaron/dick.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6, "feet"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro Mayor",
  6060. height: math.unit(350, "meters")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(200, "lbs"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/akari/front.svg",
  6073. extra: 962 / 901,
  6074. bottom: 0.04
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(5, "inches"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(7, "feet")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/cynosura/front.svg",
  6099. extra: 896 / 847
  6100. }
  6101. },
  6102. back: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(140, "lbs"),
  6105. name: "Back",
  6106. image: {
  6107. source: "./media/characters/cynosura/back.svg",
  6108. extra: 1365 / 1250
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(4, "inches")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5.75, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Tall",
  6124. height: math.unit(10, "feet")
  6125. },
  6126. {
  6127. name: "Big",
  6128. height: math.unit(20, "feet")
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(50, "feet")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(13 + 2/12, "feet"),
  6141. weight: math.unit(800, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gin/front.svg",
  6145. extra: 1312/1191,
  6146. bottom: 45/1357
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(2.39 * 1.8, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/gin/mouth.svg"
  6154. }
  6155. },
  6156. hand: {
  6157. height: math.unit(1.57 * 2.19, "feet"),
  6158. name: "Hand",
  6159. image: {
  6160. source: "./media/characters/gin/hand.svg"
  6161. }
  6162. },
  6163. foot: {
  6164. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6165. name: "Foot",
  6166. image: {
  6167. source: "./media/characters/gin/foot.svg"
  6168. }
  6169. },
  6170. sole: {
  6171. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6172. name: "Sole",
  6173. image: {
  6174. source: "./media/characters/gin/sole.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Very Small",
  6181. height: math.unit(13 + 2 / 12, "feet")
  6182. },
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(600, "miles")
  6186. },
  6187. {
  6188. name: "Regular",
  6189. height: math.unit(20, "earths"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(2.2, "solarradii")
  6195. },
  6196. {
  6197. name: "Teramacro",
  6198. height: math.unit(1.2, "galaxies")
  6199. },
  6200. {
  6201. name: "Omegamacro",
  6202. height: math.unit(200, "universes")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6 + 1 / 6, "feet"),
  6211. weight: math.unit(178, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/guy/front.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(6 + 1 / 6, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Large",
  6226. height: math.unit(25 + 7 / 12, "feet")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(60 + 9 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro+",
  6234. height: math.unit(246, "feet")
  6235. },
  6236. {
  6237. name: "Macro++",
  6238. height: math.unit(878, "feet")
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/tiberius/front.svg",
  6251. extra: 2295 / 2071
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(9, "feet"),
  6256. weight: math.unit(800, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/tiberius/back.svg",
  6260. extra: 2373 / 2160
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(9, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/surgo/front.svg",
  6281. extra: 3591 / 2227
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/surgo/back.svg",
  6290. extra: 3557 / 2228
  6291. }
  6292. },
  6293. laying: {
  6294. height: math.unit(6 * 0.85, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Laying",
  6297. image: {
  6298. source: "./media/characters/surgo/laying.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(6, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(150, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/cibus/side.svg",
  6319. extra: 800 / 400
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(240, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/nibbles/front.svg"
  6340. }
  6341. },
  6342. side: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/nibbles/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(9, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(5 + 1 / 6, "feet"),
  6364. weight: math.unit(130, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/rikky/side.svg",
  6368. extra: 851 / 801
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(5 + 1 / 6, "feet")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(152, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(7, "miles")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6390. {
  6391. side: {
  6392. height: math.unit(370, "cm"),
  6393. weight: math.unit(350, "lbs"),
  6394. name: "Side",
  6395. image: {
  6396. source: "./media/characters/malfressa/side.svg"
  6397. }
  6398. },
  6399. walking: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Walking",
  6403. image: {
  6404. source: "./media/characters/malfressa/walking.svg"
  6405. }
  6406. },
  6407. feral: {
  6408. height: math.unit(2500, "cm"),
  6409. weight: math.unit(100000, "lbs"),
  6410. name: "Feral",
  6411. image: {
  6412. source: "./media/characters/malfressa/feral.svg",
  6413. extra: 2108 / 837,
  6414. bottom: 0.02
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(370, "cm")
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(300, "meters"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(60, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/jaro/front.svg",
  6439. extra: 845/817,
  6440. bottom: 45/890
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(60, "kg"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/jaro/back.svg",
  6449. extra: 847/817,
  6450. bottom: 34/881
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(7, "inches")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(5.5, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Minimacro",
  6466. height: math.unit(20, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(200, "meters")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(195, "lb"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/rogue/front.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(90, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(5 + 8 / 12, "feet"),
  6499. weight: math.unit(140, "lb"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/piper/front.svg",
  6503. extra: 3948/3655,
  6504. bottom: 0/3948
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(2, "inches")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(5 + 8 / 12, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(250, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(7, "miles")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(220, "lb"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/gemini/front.svg"
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(220, "lb"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/gemini/back.svg"
  6545. }
  6546. },
  6547. kneeling: {
  6548. height: math.unit(6 / 1.5, "feet"),
  6549. weight: math.unit(220, "lb"),
  6550. name: "Kneeling",
  6551. image: {
  6552. source: "./media/characters/gemini/kneeling.svg",
  6553. bottom: 0.02
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(300, "meters"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(6900, "meters")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6571. {
  6572. anthro: {
  6573. height: math.unit(2.35, "meters"),
  6574. weight: math.unit(73, "kg"),
  6575. name: "Anthro",
  6576. image: {
  6577. source: "./media/characters/alicia/anthro.svg",
  6578. extra: 2571 / 2385,
  6579. bottom: 75 / 2648
  6580. }
  6581. },
  6582. paw: {
  6583. height: math.unit(1.32, "feet"),
  6584. name: "Paw",
  6585. image: {
  6586. source: "./media/characters/alicia/paw.svg"
  6587. }
  6588. },
  6589. feral: {
  6590. height: math.unit(1.69, "meters"),
  6591. weight: math.unit(73, "kg"),
  6592. name: "Feral",
  6593. image: {
  6594. source: "./media/characters/alicia/feral.svg",
  6595. extra: 2123 / 1715,
  6596. bottom: 222 / 2349
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(2.35, "meters")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(60, "meters"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(10000, "kilometers")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(7, "feet"),
  6621. weight: math.unit(250, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/archy/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(1, "inch")
  6632. },
  6633. {
  6634. name: "Shorty",
  6635. height: math.unit(5, "feet")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(7, "feet")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(600, "meters"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(1, "mile")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.65, "meters"),
  6657. weight: math.unit(74, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/berri/front.svg",
  6661. extra: 857 / 837,
  6662. bottom: 18 / 877
  6663. }
  6664. },
  6665. bum: {
  6666. height: math.unit(1.46, "feet"),
  6667. name: "Bum",
  6668. image: {
  6669. source: "./media/characters/berri/bum.svg"
  6670. }
  6671. },
  6672. mouth: {
  6673. height: math.unit(0.44, "feet"),
  6674. name: "Mouth",
  6675. image: {
  6676. source: "./media/characters/berri/mouth.svg"
  6677. }
  6678. },
  6679. paw: {
  6680. height: math.unit(0.826, "feet"),
  6681. name: "Paw",
  6682. image: {
  6683. source: "./media/characters/berri/paw.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.65, "meters")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(60, "m"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(9.213, "km")
  6700. },
  6701. {
  6702. name: "Planet Eater",
  6703. height: math.unit(489, "megameters")
  6704. },
  6705. {
  6706. name: "Teramacro",
  6707. height: math.unit(2471635000000, "meters")
  6708. },
  6709. {
  6710. name: "Examacro",
  6711. height: math.unit(8.0624e+26, "meters")
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.72, "meters"),
  6720. weight: math.unit(68, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/lexi/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Very Smol",
  6730. height: math.unit(10, "mm")
  6731. },
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(6.8, "cm"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(1.72, "m")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(1.69, "meters"),
  6748. weight: math.unit(68, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/martin/front.svg",
  6752. extra: 596 / 581
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(6.85, "cm"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.69, "m")
  6765. }
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(1.69, "meters"),
  6773. weight: math.unit(68, "kg"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/juno/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(7, "cm")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(1.89, "m")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(353, "meters"),
  6792. default: true
  6793. }
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(1.93, "meters"),
  6801. weight: math.unit(83, "kg"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/samantha/front.svg"
  6805. }
  6806. },
  6807. frontClothed: {
  6808. height: math.unit(1.93, "meters"),
  6809. weight: math.unit(83, "kg"),
  6810. name: "Front (Clothed)",
  6811. image: {
  6812. source: "./media/characters/samantha/front-clothed.svg"
  6813. }
  6814. },
  6815. back: {
  6816. height: math.unit(1.93, "meters"),
  6817. weight: math.unit(83, "kg"),
  6818. name: "Back",
  6819. image: {
  6820. source: "./media/characters/samantha/back.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.93, "m")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(74, "meters"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro+",
  6836. height: math.unit(223, "meters"),
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(8381, "meters"),
  6841. },
  6842. {
  6843. name: "Megamacro+",
  6844. height: math.unit(12000, "kilometers")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.92, "meters"),
  6853. weight: math.unit(80, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/dr-clay/front.svg"
  6857. }
  6858. },
  6859. frontClothed: {
  6860. height: math.unit(1.92, "meters"),
  6861. weight: math.unit(80, "kg"),
  6862. name: "Front (Clothed)",
  6863. image: {
  6864. source: "./media/characters/dr-clay/front-clothed.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(1.92, "m")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(214, "meters"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro+",
  6880. height: math.unit(12.237, "meters"),
  6881. },
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(557, "megameters"),
  6885. },
  6886. {
  6887. name: "Unimaginable",
  6888. height: math.unit(120e9, "lightyears")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(80, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Teramacro",
  6907. height: math.unit(500000, "lightyears"),
  6908. default: true
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6914. {
  6915. crux: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(150, "kg"),
  6918. name: "Crux",
  6919. image: {
  6920. source: "./media/characters/vemus/crux.svg",
  6921. extra: 1074/936,
  6922. bottom: 23/1097
  6923. }
  6924. },
  6925. skunkTanuki: {
  6926. height: math.unit(2, "meters"),
  6927. weight: math.unit(150, "kg"),
  6928. name: "Skunk-Tanuki",
  6929. image: {
  6930. source: "./media/characters/vemus/skunk-tanuki.svg",
  6931. extra: 926/893,
  6932. bottom: 20/946
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(3.75, "meters"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Big",
  6944. height: math.unit(8, "meters")
  6945. },
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(100, "meters")
  6949. },
  6950. {
  6951. name: "Macro+",
  6952. height: math.unit(1500, "meters")
  6953. },
  6954. {
  6955. name: "Stellar",
  6956. height: math.unit(14e8, "meters")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(2, "meters"),
  6965. weight: math.unit(70, "kg"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/beherit/front.svg",
  6969. extra: 1234/1109,
  6970. bottom: 55/1289
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6, "feet")
  6978. },
  6979. {
  6980. name: "Lorg",
  6981. height: math.unit(25, "feet"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Lorger",
  6986. height: math.unit(75, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(200, "meters")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(150, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/everett/front.svg",
  7003. extra: 1017/866,
  7004. bottom: 86/1103
  7005. }
  7006. },
  7007. paw: {
  7008. height: math.unit(2 / 3.6, "meters"),
  7009. name: "Paw",
  7010. image: {
  7011. source: "./media/characters/everett/paw.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(15, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Lorg",
  7023. height: math.unit(70, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Lorger",
  7028. height: math.unit(250, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(500, "meters")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(2, "meters"),
  7041. weight: math.unit(86, "kg"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/rose/front.svg",
  7045. extra: 1785/1636,
  7046. bottom: 30/1815
  7047. }
  7048. },
  7049. frontSporty: {
  7050. height: math.unit(2, "meters"),
  7051. weight: math.unit(86, "kg"),
  7052. name: "Front (Sporty)",
  7053. image: {
  7054. source: "./media/characters/rose/front-sporty.svg",
  7055. extra: 350/335,
  7056. bottom: 10/360
  7057. }
  7058. },
  7059. frontAlt: {
  7060. height: math.unit(1.6, "meters"),
  7061. weight: math.unit(86, "kg"),
  7062. name: "Front (Alt)",
  7063. image: {
  7064. source: "./media/characters/rose/front-alt.svg",
  7065. extra: 299/283,
  7066. bottom: 3/302
  7067. }
  7068. },
  7069. plush: {
  7070. height: math.unit(2, "meters"),
  7071. weight: math.unit(86/3, "kg"),
  7072. name: "Plush",
  7073. image: {
  7074. source: "./media/characters/rose/plush.svg",
  7075. extra: 361/337,
  7076. bottom: 11/372
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "True Micro",
  7083. height: math.unit(9, "cm")
  7084. },
  7085. {
  7086. name: "Micro",
  7087. height: math.unit(16, "cm")
  7088. },
  7089. {
  7090. name: "Normal",
  7091. height: math.unit(1.85, "meters"),
  7092. default: true
  7093. },
  7094. {
  7095. name: "Mini-Macro",
  7096. height: math.unit(5, "meters")
  7097. },
  7098. {
  7099. name: "Macro",
  7100. height: math.unit(15, "meters")
  7101. },
  7102. {
  7103. name: "True Macro",
  7104. height: math.unit(40, "meters")
  7105. },
  7106. {
  7107. name: "City Scale",
  7108. height: math.unit(1, "km")
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(2, "meters"),
  7117. weight: math.unit(350, "lbs"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/regal/front.svg"
  7121. }
  7122. },
  7123. back: {
  7124. height: math.unit(2, "meters"),
  7125. weight: math.unit(350, "lbs"),
  7126. name: "Back",
  7127. image: {
  7128. source: "./media/characters/regal/back.svg"
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(350, "feet"),
  7136. default: true
  7137. }
  7138. ]
  7139. ))
  7140. characterMakers.push(() => makeCharacter(
  7141. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7142. {
  7143. front: {
  7144. height: math.unit(4 + 11 / 12, "feet"),
  7145. weight: math.unit(100, "lbs"),
  7146. name: "Front",
  7147. image: {
  7148. source: "./media/characters/opal/front.svg"
  7149. }
  7150. },
  7151. frontAlt: {
  7152. height: math.unit(4 + 11 / 12, "feet"),
  7153. weight: math.unit(100, "lbs"),
  7154. name: "Front (Alt)",
  7155. image: {
  7156. source: "./media/characters/opal/front-alt.svg"
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Small",
  7163. height: math.unit(4 + 11 / 12, "feet")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(20, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(120, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(80, "miles")
  7177. },
  7178. {
  7179. name: "True Size",
  7180. height: math.unit(100000, "lightyears")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(200, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/vector-wuff/front.svg"
  7193. }
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(2.8, "meters")
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(450, "meters"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Megamacro",
  7208. height: math.unit(15, "kilometers")
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(256, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/dannik/front.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(69.57, "meters"),
  7228. default: true
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/azura-saharah/front.svg"
  7241. }
  7242. },
  7243. back: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(120, "lbs"),
  7246. name: "Back",
  7247. image: {
  7248. source: "./media/characters/azura-saharah/back.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Macro",
  7255. height: math.unit(100, "feet"),
  7256. default: true
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7262. {
  7263. side: {
  7264. height: math.unit(5 + 4 / 12, "feet"),
  7265. weight: math.unit(163, "lbs"),
  7266. name: "Side",
  7267. image: {
  7268. source: "./media/characters/kennedy/side.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Standard Doggo",
  7275. height: math.unit(5 + 4 / 12, "feet")
  7276. },
  7277. {
  7278. name: "Big Doggo",
  7279. height: math.unit(25 + 3 / 12, "feet"),
  7280. default: true
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(5 + 5/12, "feet"),
  7289. weight: math.unit(100, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/odios-de-lunar/front.svg",
  7293. extra: 1468/1323,
  7294. bottom: 22/1490
  7295. }
  7296. }
  7297. },
  7298. [
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(3, "inches")
  7302. },
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(5.5, "feet"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(100, "feet")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7316. {
  7317. back: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(220, "lbs"),
  7320. name: "Back",
  7321. image: {
  7322. source: "./media/characters/mandake/back.svg"
  7323. }
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(78, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(300, "meters")
  7339. },
  7340. {
  7341. name: "Macro++",
  7342. height: math.unit(2400, "feet")
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(5167, "meters")
  7347. },
  7348. {
  7349. name: "Gigamacro",
  7350. height: math.unit(41769, "miles")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(120, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/yozey/front.svg"
  7363. }
  7364. },
  7365. frontAlt: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(120, "lbs"),
  7368. name: "Front (Alt)",
  7369. image: {
  7370. source: "./media/characters/yozey/front-alt.svg"
  7371. }
  7372. },
  7373. side: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(120, "lbs"),
  7376. name: "Side",
  7377. image: {
  7378. source: "./media/characters/yozey/side.svg"
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(3, "inches"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(6, "feet")
  7391. }
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(103, "lbs"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/valeska-voss/front.svg"
  7403. }
  7404. }
  7405. },
  7406. [
  7407. {
  7408. name: "Mini-Sized Sub",
  7409. height: math.unit(3.1, "inches")
  7410. },
  7411. {
  7412. name: "Mid-Sized Sub",
  7413. height: math.unit(6.2, "inches")
  7414. },
  7415. {
  7416. name: "Full-Sized Sub",
  7417. height: math.unit(9.3, "inches")
  7418. },
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(5 + 2 / 12, "foot"),
  7422. default: true
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(160, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/gene-zeta/front.svg",
  7435. extra: 3006 / 2826,
  7436. bottom: 182 / 3188
  7437. }
  7438. }
  7439. },
  7440. [
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(6, "inches")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(5 + 11 / 12, "foot"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(140, "feet")
  7453. },
  7454. {
  7455. name: "Supercharged",
  7456. height: math.unit(2500, "feet")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(350, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/razinox/front.svg",
  7469. extra: 1686 / 1548,
  7470. bottom: 28.2 / 1868
  7471. }
  7472. },
  7473. back: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(350, "lbs"),
  7476. name: "Back",
  7477. image: {
  7478. source: "./media/characters/razinox/back.svg",
  7479. extra: 1660 / 1590,
  7480. bottom: 15 / 1665
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(10 + 8 / 12, "foot")
  7488. },
  7489. {
  7490. name: "Minimacro",
  7491. height: math.unit(15, "foot")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(60, "foot"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(5, "miles")
  7501. },
  7502. {
  7503. name: "Gigamacro",
  7504. height: math.unit(6000, "miles")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(6, "feet"),
  7513. weight: math.unit(150, "lbs"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/cobalt/front.svg"
  7517. }
  7518. }
  7519. },
  7520. [
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(8 + 1 / 12, "foot")
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(111, "foot"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Supracosmic",
  7532. height: math.unit(1e42, "feet")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(5, "inches"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/amanda/front.svg",
  7544. extra: 926/791,
  7545. bottom: 38/964
  7546. }
  7547. },
  7548. back: {
  7549. height: math.unit(5, "inches"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/amanda/back.svg",
  7553. extra: 909/805,
  7554. bottom: 43/952
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(5, "inches"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(2.75, "meters"),
  7571. weight: math.unit(1200, "lb"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/teal/front.svg",
  7575. extra: 2463 / 2320,
  7576. bottom: 166 / 2629
  7577. }
  7578. },
  7579. back: {
  7580. height: math.unit(2.75, "meters"),
  7581. weight: math.unit(1200, "lb"),
  7582. name: "Back",
  7583. image: {
  7584. source: "./media/characters/teal/back.svg",
  7585. extra: 2580 / 2489,
  7586. bottom: 151 / 2731
  7587. }
  7588. },
  7589. sitting: {
  7590. height: math.unit(1.9, "meters"),
  7591. weight: math.unit(1200, "lb"),
  7592. name: "Sitting",
  7593. image: {
  7594. source: "./media/characters/teal/sitting.svg",
  7595. extra: 623 / 590,
  7596. bottom: 121 / 744
  7597. }
  7598. },
  7599. standing: {
  7600. height: math.unit(2.75, "meters"),
  7601. weight: math.unit(1200, "lb"),
  7602. name: "Standing",
  7603. image: {
  7604. source: "./media/characters/teal/standing.svg",
  7605. extra: 923 / 893,
  7606. bottom: 60 / 983
  7607. }
  7608. },
  7609. stretching: {
  7610. height: math.unit(3.65, "meters"),
  7611. weight: math.unit(1200, "lb"),
  7612. name: "Stretching",
  7613. image: {
  7614. source: "./media/characters/teal/stretching.svg",
  7615. extra: 1276 / 1244,
  7616. bottom: 0 / 1276
  7617. }
  7618. },
  7619. legged: {
  7620. height: math.unit(1.3, "meters"),
  7621. weight: math.unit(100, "lb"),
  7622. name: "Legged",
  7623. image: {
  7624. source: "./media/characters/teal/legged.svg",
  7625. extra: 462 / 437,
  7626. bottom: 24 / 486
  7627. }
  7628. },
  7629. naga: {
  7630. height: math.unit(5.4, "meters"),
  7631. weight: math.unit(4000, "lb"),
  7632. name: "Naga",
  7633. image: {
  7634. source: "./media/characters/teal/naga.svg",
  7635. extra: 1902 / 1858,
  7636. bottom: 0 / 1902
  7637. }
  7638. },
  7639. hand: {
  7640. height: math.unit(0.52, "meters"),
  7641. name: "Hand",
  7642. image: {
  7643. source: "./media/characters/teal/hand.svg"
  7644. }
  7645. },
  7646. maw: {
  7647. height: math.unit(0.43, "meters"),
  7648. name: "Maw",
  7649. image: {
  7650. source: "./media/characters/teal/maw.svg"
  7651. }
  7652. },
  7653. slit: {
  7654. height: math.unit(0.25, "meters"),
  7655. name: "Slit",
  7656. image: {
  7657. source: "./media/characters/teal/slit.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(2.75, "meters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(300, "feet")
  7670. },
  7671. {
  7672. name: "Macro+",
  7673. height: math.unit(2000, "feet")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7679. {
  7680. frontCat: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(180, "lbs"),
  7683. name: "Front (Cat)",
  7684. image: {
  7685. source: "./media/characters/ravin-amulet/front-cat.svg"
  7686. }
  7687. },
  7688. frontCatAlt: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(180, "lbs"),
  7691. name: "Front (Alt, Cat)",
  7692. image: {
  7693. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7694. }
  7695. },
  7696. frontWerewolf: {
  7697. height: math.unit(6 * 1.2, "feet"),
  7698. weight: math.unit(225, "lbs"),
  7699. name: "Front (Werewolf)",
  7700. image: {
  7701. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7702. }
  7703. },
  7704. backWerewolf: {
  7705. height: math.unit(6 * 1.2, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Back (Werewolf)",
  7708. image: {
  7709. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Nano",
  7716. height: math.unit(1, "micrometer")
  7717. },
  7718. {
  7719. name: "Micro",
  7720. height: math.unit(1, "inch")
  7721. },
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(6, "feet"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(60, "feet")
  7730. }
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(165, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/fluoresce/front.svg"
  7742. }
  7743. }
  7744. },
  7745. [
  7746. {
  7747. name: "Micro",
  7748. height: math.unit(6, "cm")
  7749. },
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(5 + 7 / 12, "feet"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(56, "feet")
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(1.9, "miles")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(9 + 6 / 12, "feet"),
  7770. weight: math.unit(523, "lbs"),
  7771. name: "Side",
  7772. image: {
  7773. source: "./media/characters/aurora/side.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(9 + 6 / 12, "feet")
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(96, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Macro+",
  7789. height: math.unit(243, "feet")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(194, "cm"),
  7798. weight: math.unit(90, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/ranek/front.svg",
  7802. extra: 1862/1791,
  7803. bottom: 80/1942
  7804. }
  7805. },
  7806. back: {
  7807. height: math.unit(194, "cm"),
  7808. weight: math.unit(90, "kg"),
  7809. name: "Back",
  7810. image: {
  7811. source: "./media/characters/ranek/back.svg",
  7812. extra: 1853/1787,
  7813. bottom: 74/1927
  7814. }
  7815. },
  7816. feral: {
  7817. height: math.unit(30, "cm"),
  7818. weight: math.unit(1.6, "lbs"),
  7819. name: "Feral",
  7820. image: {
  7821. source: "./media/characters/ranek/feral.svg",
  7822. extra: 990/631,
  7823. bottom: 29/1019
  7824. }
  7825. },
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(194, "cm"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(100, "meters")
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(5 + 6 / 12, "feet"),
  7844. weight: math.unit(153, "lbs"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/andrew-cooper/front.svg"
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Nano",
  7854. height: math.unit(1, "mm")
  7855. },
  7856. {
  7857. name: "Micro",
  7858. height: math.unit(2, "inches")
  7859. },
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(5 + 6 / 12, "feet"),
  7863. default: true
  7864. }
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(6, "feet"),
  7872. weight: math.unit(180, "lbs"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/akane-sato/front.svg",
  7876. extra: 1219 / 1140
  7877. }
  7878. },
  7879. back: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(180, "lbs"),
  7882. name: "Back",
  7883. image: {
  7884. source: "./media/characters/akane-sato/back.svg",
  7885. extra: 1219 / 1170
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(2.5, "meters")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(250, "meters"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(25, "km")
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(6, "feet"),
  7910. weight: math.unit(65, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/rook/front.svg",
  7914. extra: 960 / 950
  7915. }
  7916. }
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(8.8, "feet")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(88, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(8, "miles")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(12 + 2 / 12, "feet"),
  7939. weight: math.unit(808, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/prodigy/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(12 + 2 / 12, "feet"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(143, "feet")
  7955. },
  7956. {
  7957. name: "Macro+",
  7958. height: math.unit(400, "feet")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(225, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/daniel/front.svg"
  7971. }
  7972. },
  7973. leaning: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(225, "lbs"),
  7976. name: "Leaning",
  7977. image: {
  7978. source: "./media/characters/daniel/leaning.svg"
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(1000, "feet"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(88, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/chiros/front.svg",
  7999. extra: 306 / 226
  8000. }
  8001. },
  8002. side: {
  8003. height: math.unit(6, "feet"),
  8004. weight: math.unit(88, "lbs"),
  8005. name: "Side",
  8006. image: {
  8007. source: "./media/characters/chiros/side.svg",
  8008. extra: 306 / 226
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(6, "cm"),
  8016. default: true
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8022. {
  8023. front: {
  8024. height: math.unit(6, "feet"),
  8025. weight: math.unit(100, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/selka/front.svg",
  8029. extra: 947 / 887
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(5, "cm"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(8 + 3 / 12, "feet"),
  8046. weight: math.unit(424, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/verin/front.svg",
  8050. extra: 1845 / 1550
  8051. }
  8052. },
  8053. frontArmored: {
  8054. height: math.unit(8 + 3 / 12, "feet"),
  8055. weight: math.unit(424, "lbs"),
  8056. name: "Front (Armored)",
  8057. image: {
  8058. source: "./media/characters/verin/front-armor.svg",
  8059. extra: 1845 / 1550,
  8060. bottom: 0.01
  8061. }
  8062. },
  8063. back: {
  8064. height: math.unit(8 + 3 / 12, "feet"),
  8065. weight: math.unit(424, "lbs"),
  8066. name: "Back",
  8067. image: {
  8068. source: "./media/characters/verin/back.svg",
  8069. bottom: 0.1,
  8070. extra: 1
  8071. }
  8072. },
  8073. foot: {
  8074. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8075. name: "Foot",
  8076. image: {
  8077. source: "./media/characters/verin/foot.svg"
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(8 + 3 / 12, "feet")
  8085. },
  8086. {
  8087. name: "Minimacro",
  8088. height: math.unit(21, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(626, "feet")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2.718, "meters"),
  8102. weight: math.unit(150, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/front.svg",
  8106. extra: 1752/1689,
  8107. bottom: 36/1788
  8108. }
  8109. },
  8110. back: {
  8111. height: math.unit(2.718, "meters"),
  8112. weight: math.unit(150, "lbs"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/sovrim-terraquian/back.svg",
  8116. extra: 1698/1657,
  8117. bottom: 58/1756
  8118. }
  8119. },
  8120. tongue: {
  8121. height: math.unit(2.865, "feet"),
  8122. name: "Tongue",
  8123. image: {
  8124. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8125. }
  8126. },
  8127. hand: {
  8128. height: math.unit(1.61, "feet"),
  8129. name: "Hand",
  8130. image: {
  8131. source: "./media/characters/sovrim-terraquian/hand.svg"
  8132. }
  8133. },
  8134. foot: {
  8135. height: math.unit(1.05, "feet"),
  8136. name: "Foot",
  8137. image: {
  8138. source: "./media/characters/sovrim-terraquian/foot.svg"
  8139. }
  8140. },
  8141. footAlt: {
  8142. height: math.unit(0.88, "feet"),
  8143. name: "Foot (Alt)",
  8144. image: {
  8145. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Micro",
  8152. height: math.unit(2, "inches")
  8153. },
  8154. {
  8155. name: "Small",
  8156. height: math.unit(1, "meter")
  8157. },
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(Math.E, "meters"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(20, "meters")
  8166. },
  8167. {
  8168. name: "Macro+",
  8169. height: math.unit(400, "meters")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(7, "feet"),
  8178. weight: math.unit(489, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/reece-silvermane/front.svg",
  8182. bottom: 0.02,
  8183. extra: 1
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(1.5, "miles"),
  8191. default: true
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(78, "kg"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/kane/front.svg",
  8204. extra: 978 / 899
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(2.1, "m"),
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(1, "km"),
  8216. default: true
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(6, "feet"),
  8225. weight: math.unit(200, "kg"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/tegon/front.svg",
  8229. bottom: 0.01,
  8230. extra: 1
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Micro",
  8237. height: math.unit(1, "inch")
  8238. },
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(6 + 3 / 12, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(300, "feet")
  8247. },
  8248. {
  8249. name: "Megamacro",
  8250. height: math.unit(69, "miles")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8256. {
  8257. side: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(2304, "lbs"),
  8260. name: "Side",
  8261. image: {
  8262. source: "./media/characters/arcturax/side.svg",
  8263. extra: 790 / 376,
  8264. bottom: 0.01
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(2, "inch")
  8272. },
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(6, "feet")
  8276. },
  8277. {
  8278. name: "Macro",
  8279. height: math.unit(39, "feet"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Megamacro",
  8284. height: math.unit(7, "miles")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(50, "lbs"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/sentri/front.svg",
  8297. extra: 1750 / 1570,
  8298. bottom: 0.025
  8299. }
  8300. },
  8301. frontAlt: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(50, "lbs"),
  8304. name: "Front (Alt)",
  8305. image: {
  8306. source: "./media/characters/sentri/front-alt.svg",
  8307. extra: 1750 / 1570,
  8308. bottom: 0.025
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(15, "feet"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(2500, "feet")
  8321. }
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(5 + 8 / 12, "feet"),
  8329. weight: math.unit(130, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/corvin/front.svg",
  8333. extra: 1803 / 1629
  8334. }
  8335. },
  8336. frontShirt: {
  8337. height: math.unit(5 + 8 / 12, "feet"),
  8338. weight: math.unit(130, "lbs"),
  8339. name: "Front (Shirt)",
  8340. image: {
  8341. source: "./media/characters/corvin/front-shirt.svg",
  8342. extra: 1803 / 1629
  8343. }
  8344. },
  8345. frontPoncho: {
  8346. height: math.unit(5 + 8 / 12, "feet"),
  8347. weight: math.unit(130, "lbs"),
  8348. name: "Front (Poncho)",
  8349. image: {
  8350. source: "./media/characters/corvin/front-poncho.svg",
  8351. extra: 1803 / 1629
  8352. }
  8353. },
  8354. side: {
  8355. height: math.unit(5 + 8 / 12, "feet"),
  8356. weight: math.unit(130, "lbs"),
  8357. name: "Side",
  8358. image: {
  8359. source: "./media/characters/corvin/side.svg",
  8360. extra: 1012 / 945
  8361. }
  8362. },
  8363. back: {
  8364. height: math.unit(5 + 8 / 12, "feet"),
  8365. weight: math.unit(130, "lbs"),
  8366. name: "Back",
  8367. image: {
  8368. source: "./media/characters/corvin/back.svg",
  8369. extra: 1803 / 1629
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Micro",
  8376. height: math.unit(3, "inches")
  8377. },
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(5 + 8 / 12, "feet")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(300, "feet"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Megamacro",
  8389. height: math.unit(500, "miles")
  8390. }
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8395. {
  8396. front: {
  8397. height: math.unit(6, "feet"),
  8398. weight: math.unit(135, "lbs"),
  8399. name: "Front",
  8400. image: {
  8401. source: "./media/characters/q/front.svg",
  8402. extra: 854 / 752,
  8403. bottom: 0.005
  8404. }
  8405. },
  8406. back: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(130, "lbs"),
  8409. name: "Back",
  8410. image: {
  8411. source: "./media/characters/q/back.svg",
  8412. extra: 854 / 752
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(90, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Extra Macro",
  8424. height: math.unit(300, "feet"),
  8425. },
  8426. {
  8427. name: "BIG WALF",
  8428. height: math.unit(750, "feet"),
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(150, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/carley/front.svg",
  8441. extra: 3927 / 3540,
  8442. bottom: 29.2 / 735
  8443. }
  8444. }
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(6 + 3 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(185, "feet"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Megamacro",
  8458. height: math.unit(8, "miles"),
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(3, "feet"),
  8467. weight: math.unit(28, "lbs"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/citrine/front.svg"
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(3, "feet"),
  8478. default: true
  8479. }
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8484. {
  8485. front: {
  8486. height: math.unit(14, "feet"),
  8487. weight: math.unit(1450, "kg"),
  8488. capacity: math.unit(15, "people"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/aura-starwind/front.svg",
  8492. extra: 1440/1327,
  8493. bottom: 11/1451
  8494. }
  8495. },
  8496. side: {
  8497. height: math.unit(14, "feet"),
  8498. weight: math.unit(1450, "kg"),
  8499. capacity: math.unit(15, "people"),
  8500. name: "Side",
  8501. image: {
  8502. source: "./media/characters/aura-starwind/side.svg",
  8503. extra: 1654 / 1497
  8504. }
  8505. },
  8506. taur: {
  8507. height: math.unit(18, "feet"),
  8508. weight: math.unit(5500, "kg"),
  8509. capacity: math.unit(50, "people"),
  8510. name: "Taur",
  8511. image: {
  8512. source: "./media/characters/aura-starwind/taur.svg",
  8513. extra: 1760 / 1650
  8514. }
  8515. },
  8516. feral: {
  8517. height: math.unit(46, "feet"),
  8518. weight: math.unit(25000, "kg"),
  8519. capacity: math.unit(120, "people"),
  8520. name: "Feral",
  8521. image: {
  8522. source: "./media/characters/aura-starwind/feral.svg"
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(14, "feet"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Macro",
  8534. height: math.unit(50, "meters")
  8535. },
  8536. {
  8537. name: "Megamacro",
  8538. height: math.unit(5000, "meters")
  8539. },
  8540. {
  8541. name: "Gigamacro",
  8542. height: math.unit(100000, "kilometers")
  8543. },
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(2 + 7 / 12, "feet"),
  8551. weight: math.unit(32, "lbs"),
  8552. name: "Front",
  8553. image: {
  8554. source: "./media/characters/rivet/front.svg",
  8555. extra: 1716 / 1658,
  8556. bottom: 0.03
  8557. }
  8558. },
  8559. foot: {
  8560. height: math.unit(0.551, "feet"),
  8561. name: "Rivet's Foot",
  8562. image: {
  8563. source: "./media/characters/rivet/foot.svg"
  8564. },
  8565. rename: true
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Micro",
  8571. height: math.unit(1.5, "inches"),
  8572. },
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(2 + 7 / 12, "feet"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(85, "feet")
  8581. },
  8582. {
  8583. name: "Megamacro",
  8584. height: math.unit(2.2, "km")
  8585. }
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(5 + 9 / 12, "feet"),
  8593. weight: math.unit(150, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/coffee/front.svg",
  8597. extra: 3666 / 3032,
  8598. bottom: 0.04
  8599. }
  8600. },
  8601. foot: {
  8602. height: math.unit(1.29, "feet"),
  8603. name: "Foot",
  8604. image: {
  8605. source: "./media/characters/coffee/foot.svg"
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Micro",
  8612. height: math.unit(2, "inches"),
  8613. },
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(5 + 9 / 12, "feet"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Macro",
  8621. height: math.unit(800, "feet")
  8622. },
  8623. {
  8624. name: "Megamacro",
  8625. height: math.unit(25, "miles")
  8626. }
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(200, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/chari-gal/front.svg",
  8638. extra: 1568 / 1385,
  8639. bottom: 0.047
  8640. }
  8641. },
  8642. gigantamax: {
  8643. height: math.unit(6 * 16, "feet"),
  8644. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8645. name: "Gigantamax",
  8646. image: {
  8647. source: "./media/characters/chari-gal/gigantamax.svg",
  8648. extra: 1124 / 888,
  8649. bottom: 0.03
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(5 + 7 / 12, "feet")
  8657. },
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(200, "feet"),
  8661. default: true
  8662. }
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(150, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/nova/front.svg",
  8674. extra: 5000 / 4722,
  8675. bottom: 0.02
  8676. }
  8677. }
  8678. },
  8679. [
  8680. {
  8681. name: "Micro-",
  8682. height: math.unit(0.8, "inches")
  8683. },
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(2, "inches"),
  8687. default: true
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(3 + 1 / 12, "feet"),
  8696. weight: math.unit(21.7, "lbs"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/argent/front.svg",
  8700. extra: 1471 / 1331,
  8701. bottom: 100.8 / 1575.5
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(2, "inches")
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(3 + 1 / 12, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(120, "feet")
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8723. {
  8724. lamp: {
  8725. height: math.unit(7 * 1559 / 989, "feet"),
  8726. name: "Magic Lamp",
  8727. image: {
  8728. source: "./media/characters/mira-al-cul/lamp.svg",
  8729. extra: 1617 / 1559
  8730. }
  8731. },
  8732. front: {
  8733. height: math.unit(7, "feet"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/mira-al-cul/front.svg",
  8737. extra: 1044 / 990
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Heavily Restricted",
  8744. height: math.unit(7 * 1559 / 989, "feet")
  8745. },
  8746. {
  8747. name: "Freshly Freed",
  8748. height: math.unit(50 * 1559 / 989, "feet")
  8749. },
  8750. {
  8751. name: "World Encompassing",
  8752. height: math.unit(10000 * 1559 / 989, "miles")
  8753. },
  8754. {
  8755. name: "Galactic",
  8756. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8757. },
  8758. {
  8759. name: "Palmed Universe",
  8760. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Multiversal Matriarch",
  8765. height: math.unit(8.87e10, "yottameters")
  8766. },
  8767. {
  8768. name: "Void Mother",
  8769. height: math.unit(3.14e110, "yottaparsecs")
  8770. },
  8771. {
  8772. name: "Toying with Transcendence",
  8773. height: math.unit(1e307, "meters")
  8774. },
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8779. {
  8780. front: {
  8781. height: math.unit(17 + 1 / 12, "feet"),
  8782. weight: math.unit(476.2 * 5, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/kuro-shi-uchū/front.svg",
  8786. extra: 2329 / 1835,
  8787. bottom: 0.02
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(2, "inches")
  8795. },
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(12, "meters")
  8799. },
  8800. {
  8801. name: "Planetary",
  8802. height: math.unit(0.00929, "AU"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Universal",
  8807. height: math.unit(20, "gigaparsecs")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(5 + 2 / 12, "feet"),
  8816. weight: math.unit(120, "lbs"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/katherine/front.svg",
  8820. extra: 2075 / 1969
  8821. }
  8822. },
  8823. dress: {
  8824. height: math.unit(5 + 2 / 12, "feet"),
  8825. weight: math.unit(120, "lbs"),
  8826. name: "Dress",
  8827. image: {
  8828. source: "./media/characters/katherine/dress.svg",
  8829. extra: 2258 / 2064
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(1, "inches"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Normal",
  8841. height: math.unit(5 + 2 / 12, "feet")
  8842. },
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(100, "meters")
  8846. },
  8847. {
  8848. name: "Megamacro",
  8849. height: math.unit(80, "miles")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(7 + 8 / 12, "feet"),
  8858. weight: math.unit(250, "lbs"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/yevis/front.svg",
  8862. extra: 1938 / 1755
  8863. }
  8864. }
  8865. },
  8866. [
  8867. {
  8868. name: "Mortal",
  8869. height: math.unit(7 + 8 / 12, "feet")
  8870. },
  8871. {
  8872. name: "Battle",
  8873. height: math.unit(25 + 11 / 12, "feet")
  8874. },
  8875. {
  8876. name: "Wrath",
  8877. height: math.unit(1654 + 11 / 12, "feet")
  8878. },
  8879. {
  8880. name: "Planet Destroyer",
  8881. height: math.unit(12000, "miles")
  8882. },
  8883. {
  8884. name: "Galaxy Conqueror",
  8885. height: math.unit(1.45, "zettameters"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Universal War",
  8890. height: math.unit(184, "gigaparsecs")
  8891. },
  8892. {
  8893. name: "Eternity War",
  8894. height: math.unit(1.98e55, "yottaparsecs")
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(5 + 8 / 12, "feet"),
  8903. weight: math.unit(63, "kg"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/xavier/front.svg",
  8907. extra: 944 / 883
  8908. }
  8909. },
  8910. frontStretch: {
  8911. height: math.unit(5 + 8 / 12, "feet"),
  8912. weight: math.unit(63, "kg"),
  8913. name: "Stretching",
  8914. image: {
  8915. source: "./media/characters/xavier/front-stretch.svg",
  8916. extra: 962 / 820
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(5 + 8 / 12, "feet")
  8924. },
  8925. {
  8926. name: "Macro",
  8927. height: math.unit(100, "meters"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "McLargeHuge",
  8932. height: math.unit(10, "miles")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(5 + 5 / 12, "feet"),
  8941. weight: math.unit(150, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/joshii/front.svg",
  8945. extra: 765 / 653,
  8946. bottom: 51 / 816
  8947. }
  8948. },
  8949. foot: {
  8950. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8951. name: "Foot",
  8952. image: {
  8953. source: "./media/characters/joshii/foot.svg"
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(2, "inches"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(5 + 5 / 12, "feet")
  8966. },
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(785, "feet")
  8970. },
  8971. {
  8972. name: "Megamacro",
  8973. height: math.unit(24.5, "miles")
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(6, "feet"),
  8982. weight: math.unit(150, "lb"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/goddess-elizabeth/front.svg",
  8986. extra: 1800 / 1525,
  8987. bottom: 0.005
  8988. }
  8989. },
  8990. foot: {
  8991. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8992. name: "Foot",
  8993. image: {
  8994. source: "./media/characters/goddess-elizabeth/foot.svg"
  8995. }
  8996. },
  8997. mouth: {
  8998. height: math.unit(6, "feet"),
  8999. name: "Mouth",
  9000. image: {
  9001. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Micro",
  9008. height: math.unit(12, "feet")
  9009. },
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(80, "miles"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(15000, "parsecs")
  9018. },
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(5 + 9 / 12, "feet"),
  9026. weight: math.unit(144, "lb"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/kara/front.svg"
  9030. }
  9031. },
  9032. feet: {
  9033. height: math.unit(6 / 6.765, "feet"),
  9034. name: "Kara's Feet",
  9035. rename: true,
  9036. image: {
  9037. source: "./media/characters/kara/feet.svg"
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(5 + 9 / 12, "feet")
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(174, "feet"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(18, "feet"),
  9058. weight: math.unit(4050, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/tyrone/front.svg",
  9062. extra: 2405 / 2270,
  9063. bottom: 182 / 2587
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(18, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(300, "feet")
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(15, "km")
  9080. },
  9081. {
  9082. name: "Gigamacro",
  9083. height: math.unit(500, "km")
  9084. },
  9085. {
  9086. name: "Teramacro",
  9087. height: math.unit(0.5, "gigameters")
  9088. },
  9089. {
  9090. name: "Omnimacro",
  9091. height: math.unit(1e252, "yottauniverse")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(7 + 8 / 12, "feet"),
  9100. weight: math.unit(120, "lb"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/danny/front.svg",
  9104. extra: 1490 / 1350
  9105. }
  9106. },
  9107. back: {
  9108. height: math.unit(7 + 8 / 12, "feet"),
  9109. weight: math.unit(120, "lb"),
  9110. name: "Back",
  9111. image: {
  9112. source: "./media/characters/danny/back.svg",
  9113. extra: 1490 / 1350
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(7 + 8 / 12, "feet"),
  9121. default: true
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(3.5, "inches"),
  9130. weight: math.unit(19, "grams"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/mallow/front.svg",
  9134. extra: 471 / 431
  9135. }
  9136. },
  9137. back: {
  9138. height: math.unit(3.5, "inches"),
  9139. weight: math.unit(19, "grams"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/mallow/back.svg",
  9143. extra: 471 / 431
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(3.5, "inches"),
  9151. default: true
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(9, "feet"),
  9160. weight: math.unit(230, "kg"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/starry-aqua/front.svg"
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(9, "feet"),
  9168. weight: math.unit(230, "kg"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/starry-aqua/back.svg"
  9172. }
  9173. },
  9174. hand: {
  9175. height: math.unit(9 * 0.1168, "feet"),
  9176. name: "Hand",
  9177. image: {
  9178. source: "./media/characters/starry-aqua/hand.svg"
  9179. }
  9180. },
  9181. foot: {
  9182. height: math.unit(9 * 0.18, "feet"),
  9183. name: "Foot",
  9184. image: {
  9185. source: "./media/characters/starry-aqua/foot.svg"
  9186. }
  9187. }
  9188. },
  9189. [
  9190. {
  9191. name: "Micro",
  9192. height: math.unit(3, "inches")
  9193. },
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(9, "feet")
  9197. },
  9198. {
  9199. name: "Macro",
  9200. height: math.unit(300, "feet"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Megamacro",
  9205. height: math.unit(3200, "feet")
  9206. }
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(15, "feet"),
  9214. weight: math.unit(5026, "lb"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/luka-towers/front.svg",
  9218. extra: 1269/1133,
  9219. bottom: 51/1320
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(15, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Minimacro",
  9231. height: math.unit(25, "feet")
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(320, "feet")
  9236. },
  9237. {
  9238. name: "Megamacro",
  9239. height: math.unit(35000, "feet")
  9240. },
  9241. {
  9242. name: "Gigamacro",
  9243. height: math.unit(4000, "miles")
  9244. },
  9245. {
  9246. name: "Teramacro",
  9247. height: math.unit(15000, "miles")
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(150, "lb"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/natalie-nightring/front.svg",
  9260. extra: 1,
  9261. bottom: 0.06
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Uh Oh",
  9268. height: math.unit(0.1, "mm")
  9269. },
  9270. {
  9271. name: "Small",
  9272. height: math.unit(3, "inches")
  9273. },
  9274. {
  9275. name: "Human Scale",
  9276. height: math.unit(6, "feet")
  9277. },
  9278. {
  9279. name: "Librarian",
  9280. height: math.unit(50, "feet"),
  9281. default: true
  9282. },
  9283. {
  9284. name: "Immense",
  9285. height: math.unit(200, "miles")
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(180, "lbs"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/danni-rosie/front.svg",
  9298. extra: 1260 / 1128,
  9299. bottom: 0.022
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(2, "inches"),
  9307. default: true
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(5 + 9 / 12, "feet"),
  9316. weight: math.unit(220, "lb"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/samantha-kruse/front.svg",
  9320. extra: (985 / 935),
  9321. bottom: 0.03
  9322. }
  9323. },
  9324. frontUndressed: {
  9325. height: math.unit(5 + 9 / 12, "feet"),
  9326. weight: math.unit(220, "lb"),
  9327. name: "Front (Undressed)",
  9328. image: {
  9329. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9330. extra: (973 / 923),
  9331. bottom: 0.025
  9332. }
  9333. },
  9334. fat: {
  9335. height: math.unit(5 + 9 / 12, "feet"),
  9336. weight: math.unit(900, "lb"),
  9337. name: "Front (Fat)",
  9338. image: {
  9339. source: "./media/characters/samantha-kruse/fat.svg",
  9340. extra: 2688 / 2561
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(5 + 9 / 12, "feet"),
  9348. default: true
  9349. }
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9354. {
  9355. back: {
  9356. height: math.unit(5 + 4 / 12, "feet"),
  9357. weight: math.unit(4963, "lb"),
  9358. name: "Back",
  9359. image: {
  9360. source: "./media/characters/amelia-rosie/back.svg",
  9361. extra: 1113 / 963,
  9362. bottom: 0.01
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Level 0",
  9369. height: math.unit(5 + 4 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Level 1",
  9373. height: math.unit(164597, "feet"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Level 2",
  9378. height: math.unit(956243, "miles")
  9379. },
  9380. {
  9381. name: "Level 3",
  9382. height: math.unit(29421709423, "miles")
  9383. },
  9384. {
  9385. name: "Level 4",
  9386. height: math.unit(154, "lightyears")
  9387. },
  9388. {
  9389. name: "Level 5",
  9390. height: math.unit(4738272, "lightyears")
  9391. },
  9392. {
  9393. name: "Level 6",
  9394. height: math.unit(145787152896, "lightyears")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(5 + 11 / 12, "feet"),
  9403. weight: math.unit(65, "kg"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/rook-kitara/front.svg",
  9407. extra: 1347 / 1274,
  9408. bottom: 0.005
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Totally Unfair",
  9415. height: math.unit(1.8, "mm")
  9416. },
  9417. {
  9418. name: "Lap Rookie",
  9419. height: math.unit(1.4, "feet")
  9420. },
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(5 + 11 / 12, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "How Did This Happen",
  9428. height: math.unit(80, "miles")
  9429. }
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(7, "feet"),
  9437. weight: math.unit(300, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/pisces/front.svg",
  9441. extra: 2255 / 2115,
  9442. bottom: 0.03
  9443. }
  9444. },
  9445. back: {
  9446. height: math.unit(7, "feet"),
  9447. weight: math.unit(300, "lb"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/pisces/back.svg",
  9451. extra: 2146 / 2055,
  9452. bottom: 0.04
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(7, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Swimming Pool",
  9464. height: math.unit(12.2, "meters")
  9465. },
  9466. {
  9467. name: "Olympic Swimming Pool",
  9468. height: math.unit(56.3, "meters")
  9469. },
  9470. {
  9471. name: "Lake Superior",
  9472. height: math.unit(93900, "meters")
  9473. },
  9474. {
  9475. name: "Mediterranean Sea",
  9476. height: math.unit(644457, "meters")
  9477. },
  9478. {
  9479. name: "World's Oceans",
  9480. height: math.unit(4567491, "meters")
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9486. {
  9487. front: {
  9488. height: math.unit(2.3, "meters"),
  9489. weight: math.unit(120, "kg"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/zelas/front.svg"
  9493. }
  9494. },
  9495. side: {
  9496. height: math.unit(2.3, "meters"),
  9497. weight: math.unit(120, "kg"),
  9498. name: "Side",
  9499. image: {
  9500. source: "./media/characters/zelas/side.svg"
  9501. }
  9502. },
  9503. back: {
  9504. height: math.unit(2.3, "meters"),
  9505. weight: math.unit(120, "kg"),
  9506. name: "Back",
  9507. image: {
  9508. source: "./media/characters/zelas/back.svg"
  9509. }
  9510. },
  9511. foot: {
  9512. height: math.unit(1.116, "feet"),
  9513. name: "Foot",
  9514. image: {
  9515. source: "./media/characters/zelas/foot.svg"
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(2.3, "meters")
  9523. },
  9524. {
  9525. name: "Macro",
  9526. height: math.unit(30, "meters"),
  9527. default: true
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(1, "inch"),
  9536. weight: math.unit(0.21, "grams"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/talbot/front.svg",
  9540. extra: 594 / 544
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(1, "inch"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9554. {
  9555. front: {
  9556. height: math.unit(3 + 3 / 12, "feet"),
  9557. weight: math.unit(51.8, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/fliss/front.svg",
  9561. extra: 840 / 640
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Teeny Tiny",
  9568. height: math.unit(1, "mm")
  9569. },
  9570. {
  9571. name: "Small",
  9572. height: math.unit(1, "inch"),
  9573. default: true
  9574. },
  9575. {
  9576. name: "Standard Sylveon",
  9577. height: math.unit(3 + 3 / 12, "feet")
  9578. },
  9579. {
  9580. name: "Large Nuisance",
  9581. height: math.unit(33, "feet")
  9582. },
  9583. {
  9584. name: "City Filler",
  9585. height: math.unit(3000, "feet")
  9586. },
  9587. {
  9588. name: "New Horizon",
  9589. height: math.unit(6000, "miles")
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(5, "cm"),
  9598. weight: math.unit(1.94, "g"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/fleta/front.svg",
  9602. extra: 835 / 803
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(5, "cm"),
  9607. weight: math.unit(1.94, "g"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/fleta/back.svg",
  9611. extra: 835 / 803
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(5, "cm"),
  9619. default: true
  9620. },
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9625. {
  9626. front: {
  9627. height: math.unit(6, "feet"),
  9628. weight: math.unit(225, "lb"),
  9629. name: "Front",
  9630. image: {
  9631. source: "./media/characters/dominic/front.svg",
  9632. extra: 1770 / 1620,
  9633. bottom: 0.025
  9634. }
  9635. },
  9636. back: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(225, "lb"),
  9639. name: "Back",
  9640. image: {
  9641. source: "./media/characters/dominic/back.svg",
  9642. extra: 1745 / 1620,
  9643. bottom: 0.065
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Nano",
  9650. height: math.unit(0.1, "mm")
  9651. },
  9652. {
  9653. name: "Micro-",
  9654. height: math.unit(1, "mm")
  9655. },
  9656. {
  9657. name: "Micro",
  9658. height: math.unit(4, "inches")
  9659. },
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(6 + 4 / 12, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Macro",
  9667. height: math.unit(115, "feet")
  9668. },
  9669. {
  9670. name: "Macro+",
  9671. height: math.unit(955, "feet")
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(8990, "feet")
  9676. },
  9677. {
  9678. name: "Gigmacro",
  9679. height: math.unit(9310, "miles")
  9680. },
  9681. {
  9682. name: "Teramacro",
  9683. height: math.unit(1567005010, "miles")
  9684. },
  9685. {
  9686. name: "Examacro",
  9687. height: math.unit(1425, "parsecs")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(400, "feet"),
  9696. weight: math.unit(44444444, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/major-colonel/front.svg"
  9700. }
  9701. },
  9702. back: {
  9703. height: math.unit(400, "feet"),
  9704. weight: math.unit(44444444, "lb"),
  9705. name: "Back",
  9706. image: {
  9707. source: "./media/characters/major-colonel/back.svg"
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(400, "feet"),
  9715. default: true
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9721. {
  9722. catFront: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(120, "lb"),
  9725. name: "Front (Cat Side)",
  9726. image: {
  9727. source: "./media/characters/axel-lycan/cat-front.svg",
  9728. extra: 430 / 402,
  9729. bottom: 43 / 472.35
  9730. }
  9731. },
  9732. catBack: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(120, "lb"),
  9735. name: "Back (Cat Side)",
  9736. image: {
  9737. source: "./media/characters/axel-lycan/cat-back.svg",
  9738. extra: 447 / 419,
  9739. bottom: 23.3 / 469
  9740. }
  9741. },
  9742. wolfFront: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(120, "lb"),
  9745. name: "Front (Wolf Side)",
  9746. image: {
  9747. source: "./media/characters/axel-lycan/wolf-front.svg",
  9748. extra: 485 / 456,
  9749. bottom: 19 / 504
  9750. }
  9751. },
  9752. wolfBack: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(120, "lb"),
  9755. name: "Back (Wolf Side)",
  9756. image: {
  9757. source: "./media/characters/axel-lycan/wolf-back.svg",
  9758. extra: 475 / 438,
  9759. bottom: 39.2 / 514
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Macro",
  9766. height: math.unit(1, "km"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(5 + 9 / 12, "feet"),
  9776. weight: math.unit(175, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/vanrel-hyena/front.svg",
  9780. extra: 1086 / 1010,
  9781. bottom: 0.04
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(5 + 9 / 12, "feet"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(103, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/abbott-absol/front.svg",
  9802. extra: 2010 / 1842
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Megamicro",
  9809. height: math.unit(0.1, "mm")
  9810. },
  9811. {
  9812. name: "Micro",
  9813. height: math.unit(1, "inch")
  9814. },
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(6, "feet"),
  9818. default: true
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(264, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/hector/front.svg",
  9831. extra: 2280 / 2130,
  9832. bottom: 0.07
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(12.25, "foot"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(160, "feet")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/sal/front.svg",
  9857. extra: 1846 / 1699,
  9858. bottom: 0.04
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Megamacro",
  9865. height: math.unit(10, "miles"),
  9866. default: true
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9872. {
  9873. front: {
  9874. height: math.unit(3, "meters"),
  9875. weight: math.unit(450, "kg"),
  9876. name: "front",
  9877. image: {
  9878. source: "./media/characters/ranger/front.svg",
  9879. extra: 2401 / 2243,
  9880. bottom: 0.05
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(3, "meters"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(14, "feet"),
  9897. weight: math.unit(800, "kg"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/theresa/front.svg",
  9901. extra: 3575 / 3346,
  9902. bottom: 0.03
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(14, "feet"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(3, "kg"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/ine/front.svg",
  9923. extra: 678 / 539,
  9924. bottom: 0.023
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(2.265, "feet"),
  9932. default: true
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(5, "feet"),
  9941. weight: math.unit(30, "kg"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/vial/front.svg",
  9945. extra: 1365 / 1277,
  9946. bottom: 0.04
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(5, "feet"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9960. {
  9961. side: {
  9962. height: math.unit(3.4, "meters"),
  9963. weight: math.unit(1000, "lb"),
  9964. name: "Side",
  9965. image: {
  9966. source: "./media/characters/rovoska/side.svg",
  9967. extra: 4403 / 1515
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(3.4, "meters"),
  9975. default: true
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(8, "feet"),
  9984. weight: math.unit(315, "lb"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/gunner-rotthbauer/front.svg"
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(8, "feet"),
  9992. weight: math.unit(315, "lb"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/gunner-rotthbauer/back.svg"
  9996. }
  9997. },
  9998. },
  9999. [
  10000. {
  10001. name: "Micro",
  10002. height: math.unit(3.5, "inches")
  10003. },
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(8, "feet"),
  10007. default: true
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(250, "feet")
  10012. },
  10013. {
  10014. name: "Megamacro",
  10015. height: math.unit(1, "AU")
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(5 + 5 / 12, "feet"),
  10024. weight: math.unit(140, "lb"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/allatia/front.svg",
  10028. extra: 1227 / 1180,
  10029. bottom: 0.027
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(5 + 5 / 12, "feet")
  10037. },
  10038. {
  10039. name: "Macro",
  10040. height: math.unit(250, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "Megamacro",
  10045. height: math.unit(8, "miles")
  10046. }
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(120, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/tene/front.svg",
  10058. extra: 814/750,
  10059. bottom: 36/850
  10060. }
  10061. },
  10062. stomping: {
  10063. height: math.unit(2.025, "meters"),
  10064. weight: math.unit(120, "lb"),
  10065. name: "Stomping",
  10066. image: {
  10067. source: "./media/characters/tene/stomping.svg",
  10068. extra: 885/821,
  10069. bottom: 15/900
  10070. }
  10071. },
  10072. sitting: {
  10073. height: math.unit(1, "meter"),
  10074. weight: math.unit(120, "lb"),
  10075. name: "Sitting",
  10076. image: {
  10077. source: "./media/characters/tene/sitting.svg",
  10078. extra: 396/366,
  10079. bottom: 79/475
  10080. }
  10081. },
  10082. smiling: {
  10083. height: math.unit(1.2, "feet"),
  10084. name: "Smiling",
  10085. image: {
  10086. source: "./media/characters/tene/smiling.svg",
  10087. extra: 1364/1071,
  10088. bottom: 0/1364
  10089. }
  10090. },
  10091. smug: {
  10092. height: math.unit(1.3, "feet"),
  10093. name: "Smug",
  10094. image: {
  10095. source: "./media/characters/tene/smug.svg",
  10096. extra: 1323/1082,
  10097. bottom: 0/1323
  10098. }
  10099. },
  10100. feral: {
  10101. height: math.unit(3.9, "feet"),
  10102. weight: math.unit(250, "lb"),
  10103. name: "Feral",
  10104. image: {
  10105. source: "./media/characters/tene/feral.svg",
  10106. extra: 717 / 458,
  10107. bottom: 0.179
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(6, "feet")
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(300, "feet"),
  10119. default: true
  10120. },
  10121. {
  10122. name: "Megamacro",
  10123. height: math.unit(5, "miles")
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10129. {
  10130. side: {
  10131. height: math.unit(6, "feet"),
  10132. name: "Side",
  10133. image: {
  10134. source: "./media/characters/evander/side.svg",
  10135. extra: 877 / 477
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(0.83, "meters"),
  10143. default: true
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(12, "feet"),
  10152. weight: math.unit(1000, "lb"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10156. extra: 1762 / 1611
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(12, "feet"),
  10161. weight: math.unit(1000, "lb"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10165. extra: 1762 / 1611
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(12, "feet"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Kaiju",
  10177. height: math.unit(150, "feet")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(6, "feet"),
  10186. weight: math.unit(150, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/zero-alurus/front.svg"
  10190. }
  10191. },
  10192. back: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Back",
  10196. image: {
  10197. source: "./media/characters/zero-alurus/back.svg"
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(5 + 10 / 12, "feet")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(60, "feet"),
  10209. default: true
  10210. },
  10211. {
  10212. name: "Macro+",
  10213. height: math.unit(450, "feet")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10219. {
  10220. front: {
  10221. height: math.unit(6, "feet"),
  10222. weight: math.unit(200, "lb"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/mega-shi/front.svg",
  10226. extra: 1279 / 1250,
  10227. bottom: 0.02
  10228. }
  10229. },
  10230. back: {
  10231. height: math.unit(6, "feet"),
  10232. weight: math.unit(200, "lb"),
  10233. name: "Back",
  10234. image: {
  10235. source: "./media/characters/mega-shi/back.svg",
  10236. extra: 1279 / 1250,
  10237. bottom: 0.02
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Micro",
  10244. height: math.unit(16 + 6 / 12, "feet")
  10245. },
  10246. {
  10247. name: "Third Dimension",
  10248. height: math.unit(40, "meters")
  10249. },
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(660, "feet"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(10, "miles")
  10258. },
  10259. {
  10260. name: "Planetary Launch",
  10261. height: math.unit(500, "miles")
  10262. },
  10263. {
  10264. name: "Interstellar",
  10265. height: math.unit(1e9, "miles")
  10266. },
  10267. {
  10268. name: "Leaving the Universe",
  10269. height: math.unit(1, "gigaparsec")
  10270. },
  10271. {
  10272. name: "Travelling Universes",
  10273. height: math.unit(30e15, "parsecs")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(5 + 4/12, "feet"),
  10282. weight: math.unit(120, "lb"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/odyssey/front.svg",
  10286. extra: 1747/1571,
  10287. bottom: 47/1794
  10288. }
  10289. },
  10290. side: {
  10291. height: math.unit(5.1, "feet"),
  10292. weight: math.unit(120, "lb"),
  10293. name: "Side",
  10294. image: {
  10295. source: "./media/characters/odyssey/side.svg",
  10296. extra: 1847/1619,
  10297. bottom: 47/1894
  10298. }
  10299. },
  10300. lounging: {
  10301. height: math.unit(1.464, "feet"),
  10302. weight: math.unit(120, "lb"),
  10303. name: "Lounging",
  10304. image: {
  10305. source: "./media/characters/odyssey/lounging.svg",
  10306. extra: 1235/837,
  10307. bottom: 551/1786
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(5 + 4 / 12, "feet")
  10315. },
  10316. {
  10317. name: "Macro",
  10318. height: math.unit(1, "km")
  10319. },
  10320. {
  10321. name: "Megamacro",
  10322. height: math.unit(3000, "km")
  10323. },
  10324. {
  10325. name: "Gigamacro",
  10326. height: math.unit(1, "AU"),
  10327. default: true
  10328. },
  10329. {
  10330. name: "Omniversal",
  10331. height: math.unit(100e14, "lightyears")
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10337. {
  10338. front: {
  10339. height: math.unit(6, "feet"),
  10340. weight: math.unit(300, "lb"),
  10341. name: "Front",
  10342. image: {
  10343. source: "./media/characters/mekuto/front.svg",
  10344. extra: 921 / 832,
  10345. bottom: 0.03
  10346. }
  10347. },
  10348. hand: {
  10349. height: math.unit(6 / 10.24, "feet"),
  10350. name: "Hand",
  10351. image: {
  10352. source: "./media/characters/mekuto/hand.svg"
  10353. }
  10354. },
  10355. foot: {
  10356. height: math.unit(6 / 5.05, "feet"),
  10357. name: "Foot",
  10358. image: {
  10359. source: "./media/characters/mekuto/foot.svg"
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Minimicro",
  10366. height: math.unit(0.2, "inches")
  10367. },
  10368. {
  10369. name: "Micro",
  10370. height: math.unit(1.5, "inches")
  10371. },
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(5 + 11 / 12, "feet"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Minimacro",
  10379. height: math.unit(17 + 9 / 12, "feet")
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(177.5, "feet")
  10384. },
  10385. {
  10386. name: "Megamacro",
  10387. height: math.unit(152, "miles")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(6.5, "inches"),
  10396. weight: math.unit(13, "oz"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/dafydd-tomos/front.svg",
  10400. extra: 2990 / 2603,
  10401. bottom: 0.03
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Micro",
  10408. height: math.unit(6.5, "inches"),
  10409. default: true
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10415. {
  10416. front: {
  10417. height: math.unit(6, "feet"),
  10418. weight: math.unit(150, "lb"),
  10419. name: "Front",
  10420. image: {
  10421. source: "./media/characters/splinter/front.svg",
  10422. extra: 2990 / 2882,
  10423. bottom: 0.04
  10424. }
  10425. },
  10426. back: {
  10427. height: math.unit(6, "feet"),
  10428. weight: math.unit(150, "lb"),
  10429. name: "Back",
  10430. image: {
  10431. source: "./media/characters/splinter/back.svg",
  10432. extra: 2990 / 2882,
  10433. bottom: 0.04
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(6, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(230, "meters"),
  10445. default: true
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(4 + 10 / 12, "feet"),
  10454. weight: math.unit(480, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/snow-gabumon/front.svg",
  10458. extra: 1140 / 963,
  10459. bottom: 0.058
  10460. }
  10461. },
  10462. back: {
  10463. height: math.unit(4 + 10 / 12, "feet"),
  10464. weight: math.unit(480, "lb"),
  10465. name: "Back",
  10466. image: {
  10467. source: "./media/characters/snow-gabumon/back.svg",
  10468. extra: 1115 / 962,
  10469. bottom: 0.041
  10470. }
  10471. },
  10472. frontUndresed: {
  10473. height: math.unit(4 + 10 / 12, "feet"),
  10474. weight: math.unit(480, "lb"),
  10475. name: "Front (Undressed)",
  10476. image: {
  10477. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10478. extra: 1061 / 960,
  10479. bottom: 0.045
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Micro",
  10486. height: math.unit(1, "inch")
  10487. },
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(4 + 10 / 12, "feet"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Macro",
  10495. height: math.unit(200, "feet")
  10496. },
  10497. {
  10498. name: "Megamacro",
  10499. height: math.unit(120, "miles")
  10500. },
  10501. {
  10502. name: "Gigamacro",
  10503. height: math.unit(9800, "miles")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(1.7, "meters"),
  10512. weight: math.unit(140, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/moody/front.svg",
  10516. extra: 3226 / 3007,
  10517. bottom: 0.087
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(1, "mm")
  10525. },
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(1.7, "meters"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(80, "meters")
  10534. },
  10535. {
  10536. name: "Macro+",
  10537. height: math.unit(500, "meters")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(150, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/zyas/front.svg",
  10550. extra: 1180 / 1120,
  10551. bottom: 0.045
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(10, "feet"),
  10559. default: true
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(500, "feet")
  10564. },
  10565. {
  10566. name: "Megamacro",
  10567. height: math.unit(5, "miles")
  10568. },
  10569. {
  10570. name: "Teramacro",
  10571. height: math.unit(150000, "miles")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(6, "feet"),
  10580. weight: math.unit(150, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/cuon/front.svg",
  10584. extra: 1390 / 1320,
  10585. bottom: 0.008
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Micro",
  10592. height: math.unit(3, "inches")
  10593. },
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(18 + 9 / 12, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(360, "feet")
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(360, "miles")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(2.4, "meters"),
  10614. weight: math.unit(70, "kg"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/nyanuxk/front.svg",
  10618. extra: 1172 / 1084,
  10619. bottom: 0.065
  10620. }
  10621. },
  10622. side: {
  10623. height: math.unit(2.4, "meters"),
  10624. weight: math.unit(70, "kg"),
  10625. name: "Side",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/side.svg",
  10628. extra: 1190 / 1132,
  10629. bottom: 0.007
  10630. }
  10631. },
  10632. back: {
  10633. height: math.unit(2.4, "meters"),
  10634. weight: math.unit(70, "kg"),
  10635. name: "Back",
  10636. image: {
  10637. source: "./media/characters/nyanuxk/back.svg",
  10638. extra: 1200 / 1141,
  10639. bottom: 0.015
  10640. }
  10641. },
  10642. foot: {
  10643. height: math.unit(0.52, "meters"),
  10644. name: "Foot",
  10645. image: {
  10646. source: "./media/characters/nyanuxk/foot.svg"
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Micro",
  10653. height: math.unit(2, "cm")
  10654. },
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(2.4, "meters"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Smaller Macro",
  10662. height: math.unit(120, "meters")
  10663. },
  10664. {
  10665. name: "Bigger Macro",
  10666. height: math.unit(1.2, "km")
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(15, "kilometers")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(2000, "km")
  10675. },
  10676. {
  10677. name: "Teramacro",
  10678. height: math.unit(500000, "km")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10684. {
  10685. side: {
  10686. height: math.unit(6, "feet"),
  10687. name: "Side",
  10688. image: {
  10689. source: "./media/characters/ailbhe/side.svg",
  10690. extra: 757 / 464,
  10691. bottom: 0.041
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(1.07, "meters"),
  10699. default: true
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(120, "kg"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/zevulfius/front.svg",
  10712. extra: 965 / 903
  10713. }
  10714. },
  10715. side: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(120, "kg"),
  10718. name: "Side",
  10719. image: {
  10720. source: "./media/characters/zevulfius/side.svg",
  10721. extra: 939 / 900
  10722. }
  10723. },
  10724. back: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(120, "kg"),
  10727. name: "Back",
  10728. image: {
  10729. source: "./media/characters/zevulfius/back.svg",
  10730. extra: 918 / 854,
  10731. bottom: 0.005
  10732. }
  10733. },
  10734. foot: {
  10735. height: math.unit(6 / 3.72, "feet"),
  10736. name: "Foot",
  10737. image: {
  10738. source: "./media/characters/zevulfius/foot.svg"
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Macro",
  10745. height: math.unit(750, "meters")
  10746. },
  10747. {
  10748. name: "Megamacro",
  10749. height: math.unit(20, "km"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Gigamacro",
  10754. height: math.unit(2000, "km")
  10755. },
  10756. {
  10757. name: "Teramacro",
  10758. height: math.unit(250000, "km")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(100, "feet"),
  10767. weight: math.unit(350, "kg"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/rikes/front.svg",
  10771. extra: 1565 / 1483,
  10772. bottom: 0.017
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(100, "feet"),
  10780. default: true
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(8, "feet"),
  10789. weight: math.unit(356, "lb"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/adam-silver-mane/front.svg",
  10793. extra: 1036/937,
  10794. bottom: 63/1099
  10795. }
  10796. },
  10797. side: {
  10798. height: math.unit(8, "feet"),
  10799. weight: math.unit(356, "lb"),
  10800. name: "Side",
  10801. image: {
  10802. source: "./media/characters/adam-silver-mane/side.svg",
  10803. extra: 997/901,
  10804. bottom: 59/1056
  10805. }
  10806. },
  10807. frontNsfw: {
  10808. height: math.unit(8, "feet"),
  10809. weight: math.unit(356, "lb"),
  10810. name: "Front (NSFW)",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10813. extra: 1036/937,
  10814. bottom: 63/1099
  10815. }
  10816. },
  10817. sideNsfw: {
  10818. height: math.unit(8, "feet"),
  10819. weight: math.unit(356, "lb"),
  10820. name: "Side (NSFW)",
  10821. image: {
  10822. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10823. extra: 997/901,
  10824. bottom: 59/1056
  10825. }
  10826. },
  10827. dick: {
  10828. height: math.unit(2.1, "feet"),
  10829. name: "Dick",
  10830. image: {
  10831. source: "./media/characters/adam-silver-mane/dick.svg"
  10832. }
  10833. },
  10834. taur: {
  10835. height: math.unit(16, "feet"),
  10836. weight: math.unit(1500, "kg"),
  10837. name: "Taur",
  10838. image: {
  10839. source: "./media/characters/adam-silver-mane/taur.svg",
  10840. extra: 1713 / 1571,
  10841. bottom: 0.01
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(8, "feet")
  10849. },
  10850. {
  10851. name: "Minimacro",
  10852. height: math.unit(80, "feet")
  10853. },
  10854. {
  10855. name: "MDA",
  10856. height: math.unit(80, "meters")
  10857. },
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(800, "feet"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Megamacro",
  10865. height: math.unit(8000, "feet")
  10866. },
  10867. {
  10868. name: "Gigamacro",
  10869. height: math.unit(800, "miles")
  10870. },
  10871. {
  10872. name: "Teramacro",
  10873. height: math.unit(80000, "miles")
  10874. },
  10875. {
  10876. name: "Celestial",
  10877. height: math.unit(8e6, "miles")
  10878. },
  10879. {
  10880. name: "Star Dragon",
  10881. height: math.unit(800000, "parsecs")
  10882. },
  10883. {
  10884. name: "Godly",
  10885. height: math.unit(800, "teraparsecs")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/ky'owin/front.svg",
  10898. extra: 3888 / 3068,
  10899. bottom: 0.015
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(6 + 8 / 12, "feet")
  10907. },
  10908. {
  10909. name: "Large",
  10910. height: math.unit(68, "feet")
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(132, "feet")
  10915. },
  10916. {
  10917. name: "Macro+",
  10918. height: math.unit(340, "feet")
  10919. },
  10920. {
  10921. name: "Macro++",
  10922. height: math.unit(680, "feet"),
  10923. default: true
  10924. },
  10925. {
  10926. name: "Megamacro",
  10927. height: math.unit(1, "mile")
  10928. },
  10929. {
  10930. name: "Megamacro+",
  10931. height: math.unit(10, "miles")
  10932. },
  10933. ]
  10934. ))
  10935. characterMakers.push(() => makeCharacter(
  10936. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10937. {
  10938. front: {
  10939. height: math.unit(4, "feet"),
  10940. weight: math.unit(50, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/mal/front.svg",
  10944. extra: 785 / 724,
  10945. bottom: 0.07
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Micro",
  10952. height: math.unit(4, "inches")
  10953. },
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(4, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(200, "feet")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/jordan-deware/front.svg",
  10974. extra: 1191 / 1012
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Nano",
  10981. height: math.unit(0.01, "mm")
  10982. },
  10983. {
  10984. name: "Minimicro",
  10985. height: math.unit(1, "mm")
  10986. },
  10987. {
  10988. name: "Micro",
  10989. height: math.unit(0.5, "inches")
  10990. },
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(4, "feet"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Minimacro",
  10998. height: math.unit(40, "meters")
  10999. },
  11000. {
  11001. name: "Small Macro",
  11002. height: math.unit(400, "meters")
  11003. },
  11004. {
  11005. name: "Macro",
  11006. height: math.unit(4, "miles")
  11007. },
  11008. {
  11009. name: "Megamacro",
  11010. height: math.unit(40, "miles")
  11011. },
  11012. {
  11013. name: "Megamacro+",
  11014. height: math.unit(400, "miles")
  11015. },
  11016. {
  11017. name: "Gigamacro",
  11018. height: math.unit(400000, "miles")
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11024. {
  11025. side: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Side",
  11029. image: {
  11030. source: "./media/characters/kimiko/side.svg",
  11031. extra: 600 / 358
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Normal",
  11038. height: math.unit(15, "feet"),
  11039. default: true
  11040. },
  11041. {
  11042. name: "Macro",
  11043. height: math.unit(220, "feet")
  11044. },
  11045. {
  11046. name: "Macro+",
  11047. height: math.unit(1450, "feet")
  11048. },
  11049. {
  11050. name: "Megamacro",
  11051. height: math.unit(11500, "feet")
  11052. },
  11053. {
  11054. name: "Gigamacro",
  11055. height: math.unit(9500, "miles")
  11056. },
  11057. {
  11058. name: "Teramacro",
  11059. height: math.unit(2208005005, "miles")
  11060. },
  11061. {
  11062. name: "Examacro",
  11063. height: math.unit(2750, "parsecs")
  11064. },
  11065. {
  11066. name: "Zettamacro",
  11067. height: math.unit(101500, "parsecs")
  11068. },
  11069. ]
  11070. ))
  11071. characterMakers.push(() => makeCharacter(
  11072. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11073. {
  11074. front: {
  11075. height: math.unit(6, "feet"),
  11076. weight: math.unit(70, "kg"),
  11077. name: "Front",
  11078. image: {
  11079. source: "./media/characters/andrew-sleepy/front.svg"
  11080. }
  11081. },
  11082. side: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(70, "kg"),
  11085. name: "Side",
  11086. image: {
  11087. source: "./media/characters/andrew-sleepy/side.svg"
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Micro",
  11094. height: math.unit(1, "mm"),
  11095. default: true
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/judio/front.svg",
  11108. extra: 1258 / 1110
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(5 + 6 / 12, "feet")
  11116. },
  11117. {
  11118. name: "Macro",
  11119. height: math.unit(1000, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(10, "miles")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11130. {
  11131. frontDressed: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(68, "kg"),
  11134. name: "Front (Dressed)",
  11135. image: {
  11136. source: "./media/characters/nomaxice/front-dressed.svg",
  11137. extra: 1137/824,
  11138. bottom: 74/1211
  11139. }
  11140. },
  11141. frontShorts: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(68, "kg"),
  11144. name: "Front (Shorts)",
  11145. image: {
  11146. source: "./media/characters/nomaxice/front-shorts.svg",
  11147. extra: 1137/824,
  11148. bottom: 74/1211
  11149. }
  11150. },
  11151. back: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(68, "kg"),
  11154. name: "Back",
  11155. image: {
  11156. source: "./media/characters/nomaxice/back.svg",
  11157. extra: 822/786,
  11158. bottom: 39/861
  11159. }
  11160. },
  11161. hand: {
  11162. height: math.unit(0.565, "feet"),
  11163. name: "Hand",
  11164. image: {
  11165. source: "./media/characters/nomaxice/hand.svg"
  11166. }
  11167. },
  11168. foot: {
  11169. height: math.unit(1, "feet"),
  11170. name: "Foot",
  11171. image: {
  11172. source: "./media/characters/nomaxice/foot.svg"
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Micro",
  11179. height: math.unit(8, "cm")
  11180. },
  11181. {
  11182. name: "Norm",
  11183. height: math.unit(1.82, "m")
  11184. },
  11185. {
  11186. name: "Norm+",
  11187. height: math.unit(8.8, "feet"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Big",
  11192. height: math.unit(8, "meters")
  11193. },
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(18, "meters")
  11197. },
  11198. {
  11199. name: "Macro+",
  11200. height: math.unit(88, "meters")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(12, "feet"),
  11209. weight: math.unit(1.5, "tons"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/dydros/front.svg",
  11213. extra: 863 / 800,
  11214. bottom: 0.015
  11215. }
  11216. },
  11217. back: {
  11218. height: math.unit(12, "feet"),
  11219. weight: math.unit(1.5, "tons"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/dydros/back.svg",
  11223. extra: 900 / 843,
  11224. bottom: 0.005
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(12, "feet"),
  11232. default: true
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(100, "kg"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/riggi/front.svg",
  11245. extra: 5787 / 5303
  11246. }
  11247. },
  11248. hyper: {
  11249. height: math.unit(6 * 5 / 3, "feet"),
  11250. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11251. name: "Hyper",
  11252. image: {
  11253. source: "./media/characters/riggi/hyper.svg",
  11254. extra: 3595 / 3485
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Small Macro",
  11261. height: math.unit(50, "feet")
  11262. },
  11263. {
  11264. name: "Default",
  11265. height: math.unit(200, "feet"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Loom",
  11270. height: math.unit(10000, "feet")
  11271. },
  11272. {
  11273. name: "Cruising Altitude",
  11274. height: math.unit(30000, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(100, "miles")
  11279. },
  11280. {
  11281. name: "Continent Sized",
  11282. height: math.unit(2800, "miles")
  11283. },
  11284. {
  11285. name: "Earth Sized",
  11286. height: math.unit(8000, "miles")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(250, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/alexi/front.svg",
  11299. extra: 3483 / 3291,
  11300. bottom: 0.04
  11301. }
  11302. },
  11303. back: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(250, "lb"),
  11306. name: "Back",
  11307. image: {
  11308. source: "./media/characters/alexi/back.svg",
  11309. extra: 3533 / 3356,
  11310. bottom: 0.021
  11311. }
  11312. },
  11313. frontTransforming: {
  11314. height: math.unit(8.58, "feet"),
  11315. weight: math.unit(1300, "lb"),
  11316. name: "Transforming",
  11317. image: {
  11318. source: "./media/characters/alexi/front-transforming.svg",
  11319. extra: 437 / 409,
  11320. bottom: 19 / 458.66
  11321. }
  11322. },
  11323. frontTransformed: {
  11324. height: math.unit(12.5, "feet"),
  11325. weight: math.unit(4000, "lb"),
  11326. name: "Transformed",
  11327. image: {
  11328. source: "./media/characters/alexi/front-transformed.svg",
  11329. extra: 639 / 614,
  11330. bottom: 30.55 / 671
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(14, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Minimacro",
  11342. height: math.unit(30, "meters")
  11343. },
  11344. {
  11345. name: "Macro",
  11346. height: math.unit(500, "meters")
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(9000, "km")
  11351. },
  11352. {
  11353. name: "Teramacro",
  11354. height: math.unit(384000, "km")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/kayroo/front.svg",
  11367. extra: 1153 / 1038,
  11368. bottom: 0.06
  11369. }
  11370. },
  11371. foot: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(150, "lb"),
  11374. name: "Foot",
  11375. image: {
  11376. source: "./media/characters/kayroo/foot.svg"
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(8, "feet"),
  11384. default: true
  11385. },
  11386. {
  11387. name: "Minimacro",
  11388. height: math.unit(250, "feet")
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(2800, "feet")
  11393. },
  11394. {
  11395. name: "Megamacro",
  11396. height: math.unit(5200, "feet")
  11397. },
  11398. {
  11399. name: "Gigamacro",
  11400. height: math.unit(27000, "feet")
  11401. },
  11402. {
  11403. name: "Omega",
  11404. height: math.unit(45000, "feet")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(18, "feet"),
  11413. weight: math.unit(5800, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/rhys/front.svg",
  11417. extra: 3386 / 3090,
  11418. bottom: 0.07
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(18, "feet"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Working Size",
  11430. height: math.unit(200, "feet")
  11431. },
  11432. {
  11433. name: "Demolition Size",
  11434. height: math.unit(2000, "feet")
  11435. },
  11436. {
  11437. name: "Maximum Licensed Size",
  11438. height: math.unit(5, "miles")
  11439. },
  11440. {
  11441. name: "Maximum Observed Size",
  11442. height: math.unit(10, "yottameters")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(250, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/toto/front.svg",
  11455. extra: 527 / 479,
  11456. bottom: 0.05
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Micro",
  11463. height: math.unit(3, "feet")
  11464. },
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(10, "feet")
  11468. },
  11469. {
  11470. name: "Macro",
  11471. height: math.unit(150, "feet"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(1200, "feet")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "King", species: ["lion"], tags: ["anthro"] },
  11482. {
  11483. back: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Back",
  11487. image: {
  11488. source: "./media/characters/king/back.svg"
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(2, "inches")
  11496. },
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(8, "feet")
  11500. },
  11501. {
  11502. name: "Macro",
  11503. height: math.unit(200, "feet"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(50, "miles")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(11, "feet"),
  11517. weight: math.unit(1400, "lb"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/cordite/front.svg",
  11521. extra: 1919/1827,
  11522. bottom: 40/1959
  11523. }
  11524. },
  11525. side: {
  11526. height: math.unit(11, "feet"),
  11527. weight: math.unit(1400, "lb"),
  11528. name: "Side",
  11529. image: {
  11530. source: "./media/characters/cordite/side.svg",
  11531. extra: 1908/1793,
  11532. bottom: 38/1946
  11533. }
  11534. },
  11535. back: {
  11536. height: math.unit(11, "feet"),
  11537. weight: math.unit(1400, "lb"),
  11538. name: "Back",
  11539. image: {
  11540. source: "./media/characters/cordite/back.svg",
  11541. extra: 1938/1837,
  11542. bottom: 10/1948
  11543. }
  11544. },
  11545. feral: {
  11546. height: math.unit(2, "feet"),
  11547. weight: math.unit(90, "lb"),
  11548. name: "Feral",
  11549. image: {
  11550. source: "./media/characters/cordite/feral.svg",
  11551. extra: 1260 / 755,
  11552. bottom: 0.05
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(11, "feet"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/pianostrong/front.svg",
  11573. extra: 6577 / 6254,
  11574. bottom: 0.02
  11575. }
  11576. },
  11577. side: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Side",
  11581. image: {
  11582. source: "./media/characters/pianostrong/side.svg",
  11583. extra: 6106 / 5730
  11584. }
  11585. },
  11586. back: {
  11587. height: math.unit(6, "feet"),
  11588. weight: math.unit(150, "lb"),
  11589. name: "Back",
  11590. image: {
  11591. source: "./media/characters/pianostrong/back.svg",
  11592. extra: 6085 / 5733,
  11593. bottom: 0.01
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(100, "feet")
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(300, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Macro++",
  11609. height: math.unit(1000, "feet")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11615. {
  11616. front: {
  11617. height: math.unit(6, "feet"),
  11618. weight: math.unit(150, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/kona/front.svg",
  11622. extra: 2960 / 2629,
  11623. bottom: 0.005
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(11 + 8 / 12, "feet")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(850, "feet"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Macro+",
  11639. height: math.unit(1.5, "km"),
  11640. default: true
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(80, "miles")
  11645. },
  11646. {
  11647. name: "Gigamacro",
  11648. height: math.unit(3500, "miles")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11654. {
  11655. side: {
  11656. height: math.unit(1.9, "meters"),
  11657. weight: math.unit(326, "kg"),
  11658. name: "Side",
  11659. image: {
  11660. source: "./media/characters/levi/side.svg",
  11661. extra: 1704 / 1334,
  11662. bottom: 0.02
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Normal",
  11669. height: math.unit(1.9, "meters"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Macro",
  11674. height: math.unit(20, "meters")
  11675. },
  11676. {
  11677. name: "Macro+",
  11678. height: math.unit(200, "meters")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(2, "km")
  11683. },
  11684. {
  11685. name: "Megamacro+",
  11686. height: math.unit(20, "km")
  11687. },
  11688. {
  11689. name: "Gigamacro",
  11690. height: math.unit(2500, "km")
  11691. },
  11692. {
  11693. name: "Gigamacro+",
  11694. height: math.unit(120000, "km")
  11695. },
  11696. {
  11697. name: "Teramacro",
  11698. height: math.unit(7.77e6, "km")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(6 + 4/12, "feet"),
  11707. weight: math.unit(190, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/bmc/front.svg",
  11711. extra: 1626/1472,
  11712. bottom: 79/1705
  11713. }
  11714. },
  11715. back: {
  11716. height: math.unit(6 + 4/12, "feet"),
  11717. weight: math.unit(190, "lb"),
  11718. name: "Back",
  11719. image: {
  11720. source: "./media/characters/bmc/back.svg",
  11721. extra: 1640/1479,
  11722. bottom: 45/1685
  11723. }
  11724. },
  11725. frontArmor: {
  11726. height: math.unit(6 + 4/12, "feet"),
  11727. weight: math.unit(190, "lb"),
  11728. name: "Front-armor",
  11729. image: {
  11730. source: "./media/characters/bmc/front-armor.svg",
  11731. extra: 1538/1468,
  11732. bottom: 79/1617
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Human-sized",
  11739. height: math.unit(6 + 4 / 12, "feet")
  11740. },
  11741. {
  11742. name: "Interactive Size",
  11743. height: math.unit(25, "feet")
  11744. },
  11745. {
  11746. name: "Small",
  11747. height: math.unit(250, "feet")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(1250, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Good Day",
  11756. height: math.unit(88, "miles")
  11757. },
  11758. {
  11759. name: "Largest Measured Size",
  11760. height: math.unit(105.960, "galaxies")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(20, "feet"),
  11769. weight: math.unit(2016, "kg"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/sven-the-kaiju/front.svg",
  11773. extra: 1277/1250,
  11774. bottom: 35/1312
  11775. }
  11776. },
  11777. mouth: {
  11778. height: math.unit(1.85, "feet"),
  11779. name: "Mouth",
  11780. image: {
  11781. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Fairy",
  11788. height: math.unit(6, "inches")
  11789. },
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(20, "feet"),
  11793. default: true
  11794. },
  11795. {
  11796. name: "Rampage",
  11797. height: math.unit(200, "feet")
  11798. },
  11799. {
  11800. name: "Archfey Forest Guardian",
  11801. height: math.unit(1, "mile")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(4, "meters"),
  11810. weight: math.unit(2, "tons"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/marik/front.svg",
  11814. extra: 1057 / 1003,
  11815. bottom: 0.08
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(4, "meters"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Macro",
  11827. height: math.unit(20, "meters")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(50, "km")
  11832. },
  11833. {
  11834. name: "Gigamacro",
  11835. height: math.unit(100, "km")
  11836. },
  11837. {
  11838. name: "Alpha Macro",
  11839. height: math.unit(7.88e7, "yottameters")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(110, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/mel/front.svg",
  11852. extra: 736 / 617,
  11853. bottom: 0.017
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Pico",
  11860. height: math.unit(3, "pm")
  11861. },
  11862. {
  11863. name: "Nano",
  11864. height: math.unit(3, "nm")
  11865. },
  11866. {
  11867. name: "Micro",
  11868. height: math.unit(0.3, "mm"),
  11869. default: true
  11870. },
  11871. {
  11872. name: "Micro+",
  11873. height: math.unit(3, "mm")
  11874. },
  11875. {
  11876. name: "Normal",
  11877. height: math.unit(5 + 10.5 / 12, "feet")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11883. {
  11884. kaiju: {
  11885. height: math.unit(1.75, "meters"),
  11886. weight: math.unit(55, "kg"),
  11887. name: "Kaiju",
  11888. image: {
  11889. source: "./media/characters/lykonous/kaiju.svg",
  11890. extra: 1055 / 946,
  11891. bottom: 0.135
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Normal",
  11898. height: math.unit(2.5, "meters"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Kaiju Dragon",
  11903. height: math.unit(60, "meters")
  11904. },
  11905. {
  11906. name: "Mega Kaiju",
  11907. height: math.unit(120, "km")
  11908. },
  11909. {
  11910. name: "Giga Kaiju",
  11911. height: math.unit(200, "megameters")
  11912. },
  11913. {
  11914. name: "Terra Kaiju",
  11915. height: math.unit(400, "gigameters")
  11916. },
  11917. {
  11918. name: "Kaiju Dragon God",
  11919. height: math.unit(13000, "exaparsecs")
  11920. },
  11921. ]
  11922. ))
  11923. characterMakers.push(() => makeCharacter(
  11924. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11925. {
  11926. front: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(150, "lb"),
  11929. name: "Front",
  11930. image: {
  11931. source: "./media/characters/blü/front.svg",
  11932. extra: 1883 / 1564,
  11933. bottom: 0.031
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(13, "feet"),
  11941. default: true
  11942. },
  11943. {
  11944. name: "Big Boi",
  11945. height: math.unit(150, "meters")
  11946. },
  11947. {
  11948. name: "Mini Stomper",
  11949. height: math.unit(300, "meters")
  11950. },
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(1000, "meters")
  11954. },
  11955. {
  11956. name: "Megamacro",
  11957. height: math.unit(11000, "meters")
  11958. },
  11959. {
  11960. name: "Gigamacro",
  11961. height: math.unit(11000, "km")
  11962. },
  11963. {
  11964. name: "Teramacro",
  11965. height: math.unit(420000, "km")
  11966. },
  11967. {
  11968. name: "Examacro",
  11969. height: math.unit(120, "parsecs")
  11970. },
  11971. {
  11972. name: "God Tho",
  11973. height: math.unit(98000000000, "parsecs")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11979. {
  11980. taurFront: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(200, "lb"),
  11983. name: "Taur (Front)",
  11984. image: {
  11985. source: "./media/characters/scales/taur-front.svg",
  11986. extra: 1,
  11987. bottom: 0.05
  11988. }
  11989. },
  11990. taurBack: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(200, "lb"),
  11993. name: "Taur (Back)",
  11994. image: {
  11995. source: "./media/characters/scales/taur-back.svg",
  11996. extra: 1,
  11997. bottom: 0.08
  11998. }
  11999. },
  12000. anthro: {
  12001. height: math.unit(6 * 7 / 12, "feet"),
  12002. weight: math.unit(100, "lb"),
  12003. name: "Anthro",
  12004. image: {
  12005. source: "./media/characters/scales/anthro.svg",
  12006. extra: 1,
  12007. bottom: 0.06
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Normal",
  12014. height: math.unit(12, "feet"),
  12015. default: true
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/koragos/front.svg",
  12028. extra: 841 / 794,
  12029. bottom: 0.035
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(150, "lb"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/koragos/back.svg",
  12038. extra: 841 / 810,
  12039. bottom: 0.022
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(6 + 11 / 12, "feet"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(490, "feet")
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(10, "miles")
  12056. },
  12057. {
  12058. name: "Gigamacro",
  12059. height: math.unit(50, "miles")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(6, "feet"),
  12068. weight: math.unit(250, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/xylrem/front.svg",
  12072. extra: 3323 / 3050,
  12073. bottom: 0.065
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Micro",
  12080. height: math.unit(4, "feet")
  12081. },
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(16, "feet"),
  12085. default: true
  12086. },
  12087. {
  12088. name: "Macro",
  12089. height: math.unit(2720, "feet")
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(25000, "miles")
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(8, "feet"),
  12102. weight: math.unit(250, "kg"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/ikideru/front.svg",
  12106. extra: 930 / 870,
  12107. bottom: 0.087
  12108. }
  12109. },
  12110. back: {
  12111. height: math.unit(8, "feet"),
  12112. weight: math.unit(250, "kg"),
  12113. name: "Back",
  12114. image: {
  12115. source: "./media/characters/ikideru/back.svg",
  12116. extra: 919 / 852,
  12117. bottom: 0.055
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Rare",
  12124. height: math.unit(8, "feet"),
  12125. default: true
  12126. },
  12127. {
  12128. name: "Playful Loom",
  12129. height: math.unit(80, "feet")
  12130. },
  12131. {
  12132. name: "City Leaner",
  12133. height: math.unit(230, "feet")
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(2500, "feet")
  12138. },
  12139. {
  12140. name: "Gigamacro",
  12141. height: math.unit(26400, "feet")
  12142. },
  12143. {
  12144. name: "Tectonic Shifter",
  12145. height: math.unit(1.7, "megameters")
  12146. },
  12147. {
  12148. name: "Planet Carer",
  12149. height: math.unit(21, "megameters")
  12150. },
  12151. {
  12152. name: "God",
  12153. height: math.unit(11157.22, "parsecs")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(120, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/neo/front.svg"
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Micro",
  12172. height: math.unit(2, "inches"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Human Size",
  12177. height: math.unit(5 + 8 / 12, "feet")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(13 + 10 / 12, "feet"),
  12186. weight: math.unit(5320, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/chauncey-chantz/front.svg",
  12190. extra: 1587 / 1435,
  12191. bottom: 0.02
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(13 + 10 / 12, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Macro",
  12203. height: math.unit(45, "feet")
  12204. },
  12205. {
  12206. name: "Megamacro",
  12207. height: math.unit(250, "miles")
  12208. },
  12209. {
  12210. name: "Planetary",
  12211. height: math.unit(10000, "miles")
  12212. },
  12213. {
  12214. name: "Galactic",
  12215. height: math.unit(40000, "parsecs")
  12216. },
  12217. {
  12218. name: "Universal",
  12219. height: math.unit(1, "yottameter")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12225. {
  12226. front: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(150, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/epifox/front.svg",
  12232. extra: 1,
  12233. bottom: 0.075
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Micro",
  12240. height: math.unit(6, "inches")
  12241. },
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(12, "feet"),
  12245. default: true
  12246. },
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(3810, "feet")
  12250. },
  12251. {
  12252. name: "Megamacro",
  12253. height: math.unit(500, "miles")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(1.8796, "m"),
  12262. weight: math.unit(230, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/colin-t/front.svg",
  12266. extra: 1272 / 1193,
  12267. bottom: 0.07
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(0.571, "meters")
  12275. },
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(1.8796, "meters"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Tall",
  12283. height: math.unit(4, "meters")
  12284. },
  12285. {
  12286. name: "Macro",
  12287. height: math.unit(67.241, "meters")
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(371.856, "meters")
  12292. },
  12293. {
  12294. name: "Planetary",
  12295. height: math.unit(12631.5689, "km")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(1.85, "meters"),
  12304. weight: math.unit(80, "kg"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/matvei/front.svg",
  12308. extra: 614 / 594,
  12309. bottom: 0.01
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Normal",
  12316. height: math.unit(1.85, "meters"),
  12317. default: true
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(5 + 9 / 12, "feet"),
  12326. weight: math.unit(70, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/quincy/front.svg",
  12330. extra: 3041 / 2751
  12331. }
  12332. },
  12333. back: {
  12334. height: math.unit(5 + 9 / 12, "feet"),
  12335. weight: math.unit(70, "lb"),
  12336. name: "Back",
  12337. image: {
  12338. source: "./media/characters/quincy/back.svg",
  12339. extra: 3041 / 2751
  12340. }
  12341. },
  12342. flying: {
  12343. height: math.unit(5 + 4 / 12, "feet"),
  12344. weight: math.unit(70, "lb"),
  12345. name: "Flying",
  12346. image: {
  12347. source: "./media/characters/quincy/flying.svg",
  12348. extra: 1044 / 930
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Micro",
  12355. height: math.unit(3, "cm")
  12356. },
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(5 + 9 / 12, "feet")
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(200, "meters"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(1000, "meters")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(3 + 11/12, "feet"),
  12377. weight: math.unit(50, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/vanrel/front.svg",
  12381. extra: 1104/949,
  12382. bottom: 52/1156
  12383. }
  12384. },
  12385. back: {
  12386. height: math.unit(3 + 11/12, "feet"),
  12387. weight: math.unit(50, "lb"),
  12388. name: "Back",
  12389. image: {
  12390. source: "./media/characters/vanrel/back.svg",
  12391. extra: 1119/976,
  12392. bottom: 37/1156
  12393. }
  12394. },
  12395. tome: {
  12396. height: math.unit(1.35, "feet"),
  12397. weight: math.unit(10, "lb"),
  12398. name: "Vanrel's Tome",
  12399. rename: true,
  12400. image: {
  12401. source: "./media/characters/vanrel/tome.svg"
  12402. }
  12403. },
  12404. beans: {
  12405. height: math.unit(0.89, "feet"),
  12406. name: "Beans",
  12407. image: {
  12408. source: "./media/characters/vanrel/beans.svg"
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(3 + 11/12, "feet"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(7 + 5 / 12, "feet"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/kuiper-vanrel/front.svg",
  12428. extra: 1219/1169,
  12429. bottom: 69/1288
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(7 + 5 / 12, "feet"),
  12434. name: "Back",
  12435. image: {
  12436. source: "./media/characters/kuiper-vanrel/back.svg",
  12437. extra: 1236/1193,
  12438. bottom: 27/1263
  12439. }
  12440. },
  12441. foot: {
  12442. height: math.unit(0.55, "meters"),
  12443. name: "Foot",
  12444. image: {
  12445. source: "./media/characters/kuiper-vanrel/foot.svg",
  12446. }
  12447. },
  12448. battle: {
  12449. height: math.unit(6.824, "feet"),
  12450. name: "Battle",
  12451. image: {
  12452. source: "./media/characters/kuiper-vanrel/battle.svg",
  12453. extra: 1466 / 1327,
  12454. bottom: 29 / 1492.5
  12455. }
  12456. },
  12457. meerkui: {
  12458. height: math.unit(18, "inches"),
  12459. name: "Meerkui",
  12460. image: {
  12461. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12462. extra: 1354/1289,
  12463. bottom: 69/1423
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(7 + 5 / 12, "feet"),
  12471. default: true
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(8 + 5 / 12, "feet"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/keset-vanrel/front.svg",
  12483. extra: 1231/1148,
  12484. bottom: 82/1313
  12485. }
  12486. },
  12487. back: {
  12488. height: math.unit(8 + 5 / 12, "feet"),
  12489. name: "Back",
  12490. image: {
  12491. source: "./media/characters/keset-vanrel/back.svg",
  12492. extra: 1240/1174,
  12493. bottom: 33/1273
  12494. }
  12495. },
  12496. hand: {
  12497. height: math.unit(0.6, "meters"),
  12498. name: "Hand",
  12499. image: {
  12500. source: "./media/characters/keset-vanrel/hand.svg"
  12501. }
  12502. },
  12503. foot: {
  12504. height: math.unit(0.94978, "meters"),
  12505. name: "Foot",
  12506. image: {
  12507. source: "./media/characters/keset-vanrel/foot.svg"
  12508. }
  12509. },
  12510. battle: {
  12511. height: math.unit(7.408, "feet"),
  12512. name: "Battle",
  12513. image: {
  12514. source: "./media/characters/keset-vanrel/battle.svg",
  12515. extra: 1890 / 1386,
  12516. bottom: 73.28 / 1970
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(8 + 5 / 12, "feet"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(150, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/neos/front.svg",
  12537. extra: 1696 / 992,
  12538. bottom: 0.14
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(54, "cm"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(100, "m")
  12551. },
  12552. {
  12553. name: "Megamacro",
  12554. height: math.unit(10, "km")
  12555. },
  12556. {
  12557. name: "Megamacro+",
  12558. height: math.unit(100, "km")
  12559. },
  12560. {
  12561. name: "Gigamacro",
  12562. height: math.unit(100, "Mm")
  12563. },
  12564. {
  12565. name: "Teramacro",
  12566. height: math.unit(100, "Gm")
  12567. },
  12568. {
  12569. name: "Examacro",
  12570. height: math.unit(100, "Em")
  12571. },
  12572. {
  12573. name: "Godly",
  12574. height: math.unit(10000, "Ym")
  12575. },
  12576. {
  12577. name: "Beyond Godly",
  12578. height: math.unit(25, "multiverses")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12584. {
  12585. feminine: {
  12586. height: math.unit(5, "feet"),
  12587. weight: math.unit(100, "lb"),
  12588. name: "Feminine",
  12589. image: {
  12590. source: "./media/characters/sammy-mouse/feminine.svg",
  12591. extra: 2526 / 2425,
  12592. bottom: 0.123
  12593. }
  12594. },
  12595. masculine: {
  12596. height: math.unit(5, "feet"),
  12597. weight: math.unit(100, "lb"),
  12598. name: "Masculine",
  12599. image: {
  12600. source: "./media/characters/sammy-mouse/masculine.svg",
  12601. extra: 2526 / 2425,
  12602. bottom: 0.123
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(5, "inches")
  12610. },
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(5, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(60, "feet")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(4, "feet"),
  12627. weight: math.unit(50, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/kole/front.svg",
  12631. extra: 1423 / 1303,
  12632. bottom: 0.025
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(4, "feet"),
  12637. weight: math.unit(50, "lb"),
  12638. name: "Back",
  12639. image: {
  12640. source: "./media/characters/kole/back.svg",
  12641. extra: 1426 / 1280,
  12642. bottom: 0.02
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(4, "feet"),
  12650. default: true
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(2.5, "feet"),
  12659. weight: math.unit(32, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/rufran/front.svg",
  12663. extra: 1313/885,
  12664. bottom: 94/1407
  12665. }
  12666. },
  12667. side: {
  12668. height: math.unit(2.5, "feet"),
  12669. weight: math.unit(32, "lb"),
  12670. name: "Side",
  12671. image: {
  12672. source: "./media/characters/rufran/side.svg",
  12673. extra: 1109/852,
  12674. bottom: 118/1227
  12675. }
  12676. },
  12677. back: {
  12678. height: math.unit(2.5, "feet"),
  12679. weight: math.unit(32, "lb"),
  12680. name: "Back",
  12681. image: {
  12682. source: "./media/characters/rufran/back.svg",
  12683. extra: 1280/878,
  12684. bottom: 131/1411
  12685. }
  12686. },
  12687. mouth: {
  12688. height: math.unit(1.13, "feet"),
  12689. name: "Mouth",
  12690. image: {
  12691. source: "./media/characters/rufran/mouth.svg"
  12692. }
  12693. },
  12694. foot: {
  12695. height: math.unit(1.33, "feet"),
  12696. name: "Foot",
  12697. image: {
  12698. source: "./media/characters/rufran/foot.svg"
  12699. }
  12700. },
  12701. koboldFront: {
  12702. height: math.unit(2 + 6 / 12, "feet"),
  12703. weight: math.unit(20, "lb"),
  12704. name: "Front (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-front.svg",
  12707. extra: 2041 / 1839,
  12708. bottom: 0.055
  12709. }
  12710. },
  12711. koboldBack: {
  12712. height: math.unit(2 + 6 / 12, "feet"),
  12713. weight: math.unit(20, "lb"),
  12714. name: "Back (Kobold)",
  12715. image: {
  12716. source: "./media/characters/rufran/kobold-back.svg",
  12717. extra: 2054 / 1839,
  12718. bottom: 0.01
  12719. }
  12720. },
  12721. koboldHand: {
  12722. height: math.unit(0.2166, "meters"),
  12723. name: "Hand (Kobold)",
  12724. image: {
  12725. source: "./media/characters/rufran/kobold-hand.svg"
  12726. }
  12727. },
  12728. koboldFoot: {
  12729. height: math.unit(0.185, "meters"),
  12730. name: "Foot (Kobold)",
  12731. image: {
  12732. source: "./media/characters/rufran/kobold-foot.svg"
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Micro",
  12739. height: math.unit(1, "inch")
  12740. },
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(2 + 6 / 12, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Big",
  12748. height: math.unit(60, "feet")
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(325, "feet")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(0.3, "meters"),
  12761. weight: math.unit(3.5, "kg"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/chip/front.svg",
  12765. extra: 748 / 674
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Micro",
  12772. height: math.unit(1, "inch"),
  12773. default: true
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12779. {
  12780. side: {
  12781. height: math.unit(2.3, "meters"),
  12782. weight: math.unit(3500, "lb"),
  12783. name: "Side",
  12784. image: {
  12785. source: "./media/characters/torvid/side.svg",
  12786. extra: 1972 / 722,
  12787. bottom: 0.035
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(2.3, "meters"),
  12795. default: true
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(2, "meters"),
  12804. weight: math.unit(150.5, "kg"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/susan/front.svg",
  12808. extra: 693 / 635,
  12809. bottom: 0.05
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(505, "miles"),
  12817. default: true
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/raindrops/front.svg",
  12830. extra: 2655 / 2461,
  12831. bottom: 49 / 2705
  12832. }
  12833. },
  12834. back: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(150, "lb"),
  12837. name: "Back",
  12838. image: {
  12839. source: "./media/characters/raindrops/back.svg",
  12840. extra: 2574 / 2400,
  12841. bottom: 65 / 2634
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(6, "inches")
  12849. },
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(6 + 2 / 12, "feet")
  12853. },
  12854. {
  12855. name: "Macro",
  12856. height: math.unit(131, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(15, "miles")
  12862. },
  12863. {
  12864. name: "Gigamacro",
  12865. height: math.unit(4000, "miles")
  12866. },
  12867. {
  12868. name: "Teramacro",
  12869. height: math.unit(315000, "miles")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(2.794, "meters"),
  12878. weight: math.unit(325, "kg"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/tezwa/front.svg",
  12882. extra: 2083 / 1906,
  12883. bottom: 0.031
  12884. }
  12885. },
  12886. foot: {
  12887. height: math.unit(0.687, "meters"),
  12888. name: "Foot",
  12889. image: {
  12890. source: "./media/characters/tezwa/foot.svg"
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Normal",
  12897. height: math.unit(9 + 2 / 12, "feet"),
  12898. default: true
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(58, "feet"),
  12907. weight: math.unit(89000, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/typhus/front.svg",
  12911. extra: 816 / 800,
  12912. bottom: 0.065
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(58, "feet"),
  12920. default: true
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(12, "feet"),
  12929. weight: math.unit(6, "tonnes"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/front.svg",
  12933. extra: 1,
  12934. bottom: 0.10
  12935. }
  12936. },
  12937. frontMecha: {
  12938. height: math.unit(12, "feet"),
  12939. weight: math.unit(12, "tonnes"),
  12940. name: "Front (Mecha)",
  12941. image: {
  12942. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12943. extra: 1,
  12944. bottom: 0.042
  12945. }
  12946. },
  12947. maw: {
  12948. height: math.unit(2.2, "feet"),
  12949. name: "Maw",
  12950. image: {
  12951. source: "./media/characters/lyra-von-wulf/maw.svg"
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(12, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Classic",
  12963. height: math.unit(50, "feet")
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(500, "feet")
  12968. },
  12969. {
  12970. name: "Megamacro",
  12971. height: math.unit(1, "mile")
  12972. },
  12973. {
  12974. name: "Gigamacro",
  12975. height: math.unit(400, "miles")
  12976. },
  12977. {
  12978. name: "Teramacro",
  12979. height: math.unit(22000, "miles")
  12980. },
  12981. {
  12982. name: "Solarmacro",
  12983. height: math.unit(8600000, "miles")
  12984. },
  12985. {
  12986. name: "Galactic",
  12987. height: math.unit(1057000, "lightyears")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6 + 10 / 12, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/dixon/front.svg",
  13000. extra: 3361 / 3209,
  13001. bottom: 0.01
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Normal",
  13008. height: math.unit(6 + 10 / 12, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Big",
  13013. height: math.unit(12, "meters")
  13014. },
  13015. {
  13016. name: "Macro",
  13017. height: math.unit(500, "meters")
  13018. },
  13019. {
  13020. name: "Megamacro",
  13021. height: math.unit(2, "km")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(185, "cm"),
  13030. weight: math.unit(68, "kg"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/kauko/front.svg",
  13034. extra: 1455 / 1421,
  13035. bottom: 0.03
  13036. }
  13037. },
  13038. back: {
  13039. height: math.unit(185, "cm"),
  13040. weight: math.unit(68, "kg"),
  13041. name: "Back",
  13042. image: {
  13043. source: "./media/characters/kauko/back.svg",
  13044. extra: 1455 / 1421,
  13045. bottom: 0.004
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(185, "cm"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "kg"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/varg/front.svg",
  13066. extra: 1108 / 1018,
  13067. bottom: 0.0375
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(5, "meters")
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(200, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(20, "kilometers")
  13083. },
  13084. {
  13085. name: "True Size",
  13086. height: math.unit(211, "km"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Gigamacro",
  13091. height: math.unit(1000, "km")
  13092. },
  13093. {
  13094. name: "Gigamacro+",
  13095. height: math.unit(8000, "km")
  13096. },
  13097. {
  13098. name: "Teramacro",
  13099. height: math.unit(1000000, "km")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(7 + 7 / 12, "feet"),
  13108. weight: math.unit(267, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/dayza/front.svg",
  13112. extra: 1262 / 1200,
  13113. bottom: 0.035
  13114. }
  13115. },
  13116. side: {
  13117. height: math.unit(7 + 7 / 12, "feet"),
  13118. weight: math.unit(267, "lb"),
  13119. name: "Side",
  13120. image: {
  13121. source: "./media/characters/dayza/side.svg",
  13122. extra: 1295 / 1245,
  13123. bottom: 0.05
  13124. }
  13125. },
  13126. back: {
  13127. height: math.unit(7 + 7 / 12, "feet"),
  13128. weight: math.unit(267, "lb"),
  13129. name: "Back",
  13130. image: {
  13131. source: "./media/characters/dayza/back.svg",
  13132. extra: 1241 / 1170
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(7 + 7 / 12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(155, "feet")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(6 + 5 / 12, "feet"),
  13153. weight: math.unit(160, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/xanthos/front.svg",
  13157. extra: 1,
  13158. bottom: 0.04
  13159. }
  13160. },
  13161. back: {
  13162. height: math.unit(6 + 5 / 12, "feet"),
  13163. weight: math.unit(160, "lb"),
  13164. name: "Back",
  13165. image: {
  13166. source: "./media/characters/xanthos/back.svg",
  13167. extra: 1,
  13168. bottom: 0.03
  13169. }
  13170. },
  13171. hand: {
  13172. height: math.unit(0.928, "feet"),
  13173. name: "Hand",
  13174. image: {
  13175. source: "./media/characters/xanthos/hand.svg"
  13176. }
  13177. },
  13178. foot: {
  13179. height: math.unit(1.286, "feet"),
  13180. name: "Foot",
  13181. image: {
  13182. source: "./media/characters/xanthos/foot.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(6 + 5 / 12, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Normal+",
  13194. height: math.unit(6, "meters")
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(40, "feet")
  13199. },
  13200. {
  13201. name: "Macro+",
  13202. height: math.unit(200, "meters")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(20, "km")
  13207. },
  13208. {
  13209. name: "Megamacro+",
  13210. height: math.unit(100, "km")
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(200, "megameters")
  13215. },
  13216. {
  13217. name: "Gigamacro+",
  13218. height: math.unit(1.5, "gigameters")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(6 + 3 / 12, "feet"),
  13227. weight: math.unit(215, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/grynn/front.svg",
  13231. extra: 4627 / 4209,
  13232. bottom: 0.047
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Micro",
  13239. height: math.unit(6, "inches")
  13240. },
  13241. {
  13242. name: "Normal",
  13243. height: math.unit(6 + 3 / 12, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Big",
  13248. height: math.unit(104, "feet")
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(944, "feet")
  13253. },
  13254. {
  13255. name: "Macro+",
  13256. height: math.unit(9480, "feet")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(78752, "feet")
  13261. },
  13262. {
  13263. name: "Megamacro+",
  13264. height: math.unit(630128, "feet")
  13265. },
  13266. {
  13267. name: "Megamacro++",
  13268. height: math.unit(3150695, "feet")
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(7 + 5 / 12, "feet"),
  13277. weight: math.unit(450, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/mocha-aura/front.svg",
  13281. extra: 1907 / 1817,
  13282. bottom: 0.04
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(7 + 5 / 12, "feet"),
  13287. weight: math.unit(450, "lb"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/mocha-aura/back.svg",
  13291. extra: 1900 / 1825,
  13292. bottom: 0.045
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Nano",
  13299. height: math.unit(1, "nm")
  13300. },
  13301. {
  13302. name: "Megamicro",
  13303. height: math.unit(1, "mm")
  13304. },
  13305. {
  13306. name: "Micro",
  13307. height: math.unit(3, "inches")
  13308. },
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(7 + 5 / 12, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(30, "feet")
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(3500, "feet")
  13321. },
  13322. {
  13323. name: "Teramacro",
  13324. height: math.unit(500000, "miles")
  13325. },
  13326. {
  13327. name: "Petamacro",
  13328. height: math.unit(50000000000000000, "parsecs")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/ilisha-devya/front.svg",
  13341. extra: 1053/1049,
  13342. bottom: 270/1323
  13343. }
  13344. },
  13345. back: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Back",
  13349. image: {
  13350. source: "./media/characters/ilisha-devya/back.svg",
  13351. extra: 1131/1128,
  13352. bottom: 39/1170
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(500, "feet"),
  13360. default: true
  13361. },
  13362. {
  13363. name: "Megamacro",
  13364. height: math.unit(10, "miles")
  13365. },
  13366. {
  13367. name: "Gigamacro",
  13368. height: math.unit(100000, "miles")
  13369. },
  13370. {
  13371. name: "Examacro",
  13372. height: math.unit(1e9, "lightyears")
  13373. },
  13374. {
  13375. name: "Omniversal",
  13376. height: math.unit(1e33, "lightyears")
  13377. },
  13378. {
  13379. name: "Beyond Infinite",
  13380. height: math.unit(1e100, "lightyears")
  13381. },
  13382. ]
  13383. ))
  13384. characterMakers.push(() => makeCharacter(
  13385. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13386. {
  13387. Side: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Side",
  13391. image: {
  13392. source: "./media/characters/mira/side.svg",
  13393. extra: 900 / 799,
  13394. bottom: 0.02
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Human Size",
  13401. height: math.unit(6, "feet")
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(100, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Megamacro",
  13410. height: math.unit(10, "miles")
  13411. },
  13412. {
  13413. name: "Gigamacro",
  13414. height: math.unit(25000, "miles")
  13415. },
  13416. {
  13417. name: "Teramacro",
  13418. height: math.unit(300, "AU")
  13419. },
  13420. {
  13421. name: "Full Size",
  13422. height: math.unit(4.5e10, "lightyears")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(150, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/holly/front.svg",
  13435. extra: 639 / 606
  13436. }
  13437. },
  13438. back: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Back",
  13442. image: {
  13443. source: "./media/characters/holly/back.svg",
  13444. extra: 623 / 598
  13445. }
  13446. },
  13447. frontWorking: {
  13448. height: math.unit(6, "feet"),
  13449. weight: math.unit(150, "lb"),
  13450. name: "Front (Working)",
  13451. image: {
  13452. source: "./media/characters/holly/front-working.svg",
  13453. extra: 607 / 577,
  13454. bottom: 0.048
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Normal",
  13461. height: math.unit(12 + 3 / 12, "feet"),
  13462. default: true
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/porter/front.svg",
  13475. extra: 1,
  13476. bottom: 0.01
  13477. }
  13478. },
  13479. frontRobes: {
  13480. height: math.unit(6, "feet"),
  13481. weight: math.unit(150, "lb"),
  13482. name: "Front (Robes)",
  13483. image: {
  13484. source: "./media/characters/porter/front-robes.svg",
  13485. extra: 1.01,
  13486. bottom: 0.01
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(11 + 9 / 12, "feet"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13500. {
  13501. legendary: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Legendary",
  13505. image: {
  13506. source: "./media/characters/lucy/legendary.svg",
  13507. extra: 1355 / 1100,
  13508. bottom: 0.045
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Legendary",
  13515. height: math.unit(86882 * 2, "miles"),
  13516. default: true
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13522. {
  13523. front: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front",
  13527. image: {
  13528. source: "./media/characters/drusilla/front.svg",
  13529. extra: 678 / 635,
  13530. bottom: 0.03
  13531. }
  13532. },
  13533. back: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Back",
  13537. image: {
  13538. source: "./media/characters/drusilla/back.svg",
  13539. extra: 678 / 635,
  13540. bottom: 0.005
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(100, "feet")
  13548. },
  13549. {
  13550. name: "Canon Height",
  13551. height: math.unit(2000, "feet"),
  13552. default: true
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(180, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/renard-thatch/front.svg",
  13565. extra: 2411 / 2275,
  13566. bottom: 0.01
  13567. }
  13568. },
  13569. frontPosing: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(180, "lb"),
  13572. name: "Front (Posing)",
  13573. image: {
  13574. source: "./media/characters/renard-thatch/front-posing.svg",
  13575. extra: 2381 / 2261,
  13576. bottom: 0.01
  13577. }
  13578. },
  13579. back: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(180, "lb"),
  13582. name: "Back",
  13583. image: {
  13584. source: "./media/characters/renard-thatch/back.svg",
  13585. extra: 2428 / 2288
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Micro",
  13592. height: math.unit(3, "inches")
  13593. },
  13594. {
  13595. name: "Default",
  13596. height: math.unit(6, "feet"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Macro",
  13601. height: math.unit(75, "feet")
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(1450, "feet"),
  13610. weight: math.unit(1.21e6, "tons"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/sekvra/front.svg",
  13614. extra: 1193/1190,
  13615. bottom: 78/1271
  13616. }
  13617. },
  13618. side: {
  13619. height: math.unit(1450, "feet"),
  13620. weight: math.unit(1.21e6, "tons"),
  13621. name: "Side",
  13622. image: {
  13623. source: "./media/characters/sekvra/side.svg",
  13624. extra: 1193/1190,
  13625. bottom: 52/1245
  13626. }
  13627. },
  13628. back: {
  13629. height: math.unit(1450, "feet"),
  13630. weight: math.unit(1.21e6, "tons"),
  13631. name: "Back",
  13632. image: {
  13633. source: "./media/characters/sekvra/back.svg",
  13634. extra: 1219/1216,
  13635. bottom: 21/1240
  13636. }
  13637. },
  13638. frontClothed: {
  13639. height: math.unit(1450, "feet"),
  13640. weight: math.unit(1.21e6, "tons"),
  13641. name: "Front (Clothed)",
  13642. image: {
  13643. source: "./media/characters/sekvra/front-clothed.svg",
  13644. extra: 1192/1189,
  13645. bottom: 79/1271
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(1450, "feet"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(15000, "feet")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/carmine/front.svg",
  13670. extra: 1,
  13671. bottom: 0.035
  13672. }
  13673. },
  13674. frontArmor: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(150, "lb"),
  13677. name: "Front (Armor)",
  13678. image: {
  13679. source: "./media/characters/carmine/front-armor.svg",
  13680. extra: 1,
  13681. bottom: 0.035
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Large",
  13688. height: math.unit(1, "mile")
  13689. },
  13690. {
  13691. name: "Huge",
  13692. height: math.unit(40, "miles"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Colossal",
  13697. height: math.unit(2500, "miles")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/elyssia/front.svg",
  13710. extra: 2201 / 2035,
  13711. bottom: 0.05
  13712. }
  13713. },
  13714. frontClothed: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(150, "lb"),
  13717. name: "Front (Clothed)",
  13718. image: {
  13719. source: "./media/characters/elyssia/front-clothed.svg",
  13720. extra: 2201 / 2035,
  13721. bottom: 0.05
  13722. }
  13723. },
  13724. back: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(150, "lb"),
  13727. name: "Back",
  13728. image: {
  13729. source: "./media/characters/elyssia/back.svg",
  13730. extra: 2201 / 2035,
  13731. bottom: 0.013
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Smaller",
  13738. height: math.unit(150, "feet")
  13739. },
  13740. {
  13741. name: "Standard",
  13742. height: math.unit(1400, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Distracted",
  13747. height: math.unit(15000, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(7 + 4/12, "feet"),
  13756. weight: math.unit(690, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/geno-maxwell/front.svg",
  13760. extra: 984/856,
  13761. bottom: 87/1071
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(7 + 4/12, "feet"),
  13766. weight: math.unit(690, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/geno-maxwell/back.svg",
  13770. extra: 981/854,
  13771. bottom: 57/1038
  13772. }
  13773. },
  13774. frontCostume: {
  13775. height: math.unit(7 + 4/12, "feet"),
  13776. weight: math.unit(690, "lb"),
  13777. name: "Front (Costume)",
  13778. image: {
  13779. source: "./media/characters/geno-maxwell/front-costume.svg",
  13780. extra: 984/856,
  13781. bottom: 87/1071
  13782. }
  13783. },
  13784. backcostume: {
  13785. height: math.unit(7 + 4/12, "feet"),
  13786. weight: math.unit(690, "lb"),
  13787. name: "Back (Costume)",
  13788. image: {
  13789. source: "./media/characters/geno-maxwell/back-costume.svg",
  13790. extra: 981/854,
  13791. bottom: 57/1038
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Micro",
  13798. height: math.unit(3, "inches")
  13799. },
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(7 + 4 / 12, "feet"),
  13803. default: true
  13804. },
  13805. {
  13806. name: "Macro",
  13807. height: math.unit(220, "feet")
  13808. },
  13809. {
  13810. name: "Megamacro",
  13811. height: math.unit(11, "miles")
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(7 + 4/12, "feet"),
  13820. weight: math.unit(750, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/regena-maxwell/front.svg",
  13824. extra: 984/856,
  13825. bottom: 87/1071
  13826. }
  13827. },
  13828. back: {
  13829. height: math.unit(7 + 4/12, "feet"),
  13830. weight: math.unit(750, "lb"),
  13831. name: "Back",
  13832. image: {
  13833. source: "./media/characters/regena-maxwell/back.svg",
  13834. extra: 981/854,
  13835. bottom: 57/1038
  13836. }
  13837. },
  13838. frontCostume: {
  13839. height: math.unit(7 + 4/12, "feet"),
  13840. weight: math.unit(750, "lb"),
  13841. name: "Front (Costume)",
  13842. image: {
  13843. source: "./media/characters/regena-maxwell/front-costume.svg",
  13844. extra: 984/856,
  13845. bottom: 87/1071
  13846. }
  13847. },
  13848. backcostume: {
  13849. height: math.unit(7 + 4/12, "feet"),
  13850. weight: math.unit(750, "lb"),
  13851. name: "Back (Costume)",
  13852. image: {
  13853. source: "./media/characters/regena-maxwell/back-costume.svg",
  13854. extra: 981/854,
  13855. bottom: 57/1038
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(7 + 4 / 12, "feet"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Macro",
  13867. height: math.unit(220, "feet")
  13868. },
  13869. {
  13870. name: "Megamacro",
  13871. height: math.unit(11, "miles")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(6, "feet"),
  13880. weight: math.unit(150, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13884. extra: 860 / 690,
  13885. bottom: 0.03
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(1.7, "meters"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(150, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/quilly/front.svg",
  13906. extra: 890 / 776
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Gigamacro",
  13913. height: math.unit(404090, "miles"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(7 + 8 / 12, "feet"),
  13923. weight: math.unit(350, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/tempest/front.svg",
  13927. extra: 1175 / 1086,
  13928. bottom: 0.02
  13929. }
  13930. },
  13931. },
  13932. [
  13933. {
  13934. name: "Normal",
  13935. height: math.unit(7 + 8 / 12, "feet"),
  13936. default: true
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13942. {
  13943. side: {
  13944. height: math.unit(4 + 5 / 12, "feet"),
  13945. weight: math.unit(80, "lb"),
  13946. name: "Side",
  13947. image: {
  13948. source: "./media/characters/rodger/side.svg",
  13949. extra: 1235 / 1118
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(1, "inch")
  13957. },
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(4 + 5 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(120, "feet")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/danyel/front.svg",
  13978. extra: 1185 / 1123,
  13979. bottom: 0.05
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Shrunken",
  13986. height: math.unit(0.5, "mm")
  13987. },
  13988. {
  13989. name: "Micro",
  13990. height: math.unit(1, "mm"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Upsized",
  13995. height: math.unit(5 + 5 / 12, "feet")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(5 + 6 / 12, "feet"),
  14004. weight: math.unit(200, "lb"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/vivian-bijoux/front.svg",
  14008. extra: 1217/1209,
  14009. bottom: 76/1293
  14010. }
  14011. },
  14012. back: {
  14013. height: math.unit(5 + 6 / 12, "feet"),
  14014. weight: math.unit(200, "lb"),
  14015. name: "Back",
  14016. image: {
  14017. source: "./media/characters/vivian-bijoux/back.svg",
  14018. extra: 1214/1208,
  14019. bottom: 51/1265
  14020. }
  14021. },
  14022. dressed: {
  14023. height: math.unit(5 + 6 / 12, "feet"),
  14024. weight: math.unit(200, "lb"),
  14025. name: "Dressed",
  14026. image: {
  14027. source: "./media/characters/vivian-bijoux/dressed.svg",
  14028. extra: 1217/1209,
  14029. bottom: 76/1293
  14030. }
  14031. },
  14032. },
  14033. [
  14034. {
  14035. name: "Normal",
  14036. height: math.unit(5 + 6 / 12, "feet"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Bad Dream",
  14041. height: math.unit(500, "feet")
  14042. },
  14043. {
  14044. name: "Nightmare",
  14045. height: math.unit(500, "miles")
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(6 + 1 / 12, "feet"),
  14054. weight: math.unit(260, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/zeta/front.svg",
  14058. extra: 1968 / 1889,
  14059. bottom: 0.06
  14060. }
  14061. },
  14062. back: {
  14063. height: math.unit(6 + 1 / 12, "feet"),
  14064. weight: math.unit(260, "lb"),
  14065. name: "Back",
  14066. image: {
  14067. source: "./media/characters/zeta/back.svg",
  14068. extra: 1944 / 1858,
  14069. bottom: 0.03
  14070. }
  14071. },
  14072. hand: {
  14073. height: math.unit(1.112, "feet"),
  14074. name: "Hand",
  14075. image: {
  14076. source: "./media/characters/zeta/hand.svg"
  14077. }
  14078. },
  14079. foot: {
  14080. height: math.unit(1.48, "feet"),
  14081. name: "Foot",
  14082. image: {
  14083. source: "./media/characters/zeta/foot.svg"
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Micro",
  14090. height: math.unit(6, "inches")
  14091. },
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(6 + 1 / 12, "feet"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Macro",
  14099. height: math.unit(20, "feet")
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/jamie-larsen/front.svg",
  14112. extra: 962 / 933,
  14113. bottom: 0.02
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/jamie-larsen/back.svg",
  14122. extra: 997 / 946
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(28 + 7 / 12, "feet"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Macro+",
  14134. height: math.unit(180, "feet")
  14135. },
  14136. {
  14137. name: "Megamacro",
  14138. height: math.unit(10, "miles")
  14139. },
  14140. {
  14141. name: "Gigamacro",
  14142. height: math.unit(200000, "miles")
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(120, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/vance/front.svg",
  14155. extra: 1980 / 1890,
  14156. bottom: 0.09
  14157. }
  14158. },
  14159. back: {
  14160. height: math.unit(6, "feet"),
  14161. weight: math.unit(120, "lb"),
  14162. name: "Back",
  14163. image: {
  14164. source: "./media/characters/vance/back.svg",
  14165. extra: 2081 / 1994,
  14166. bottom: 0.014
  14167. }
  14168. },
  14169. hand: {
  14170. height: math.unit(0.88, "feet"),
  14171. name: "Hand",
  14172. image: {
  14173. source: "./media/characters/vance/hand.svg"
  14174. }
  14175. },
  14176. foot: {
  14177. height: math.unit(0.64, "feet"),
  14178. name: "Foot",
  14179. image: {
  14180. source: "./media/characters/vance/foot.svg"
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Small",
  14187. height: math.unit(90, "feet"),
  14188. default: true
  14189. },
  14190. {
  14191. name: "Macro",
  14192. height: math.unit(100, "meters")
  14193. },
  14194. {
  14195. name: "Megamacro",
  14196. height: math.unit(15, "miles")
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(180, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/xochitl/front.svg",
  14209. extra: 2297 / 2261,
  14210. bottom: 0.065
  14211. }
  14212. },
  14213. back: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(180, "lb"),
  14216. name: "Back",
  14217. image: {
  14218. source: "./media/characters/xochitl/back.svg",
  14219. extra: 2386 / 2354,
  14220. bottom: 0.01
  14221. }
  14222. },
  14223. foot: {
  14224. height: math.unit(6 / 5 * 1.15, "feet"),
  14225. weight: math.unit(150, "lb"),
  14226. name: "Foot",
  14227. image: {
  14228. source: "./media/characters/xochitl/foot.svg"
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Macro",
  14235. height: math.unit(80, "feet")
  14236. },
  14237. {
  14238. name: "Macro+",
  14239. height: math.unit(400, "feet"),
  14240. default: true
  14241. },
  14242. {
  14243. name: "Gigamacro",
  14244. height: math.unit(80000, "miles")
  14245. },
  14246. {
  14247. name: "Gigamacro+",
  14248. height: math.unit(400000, "miles")
  14249. },
  14250. {
  14251. name: "Teramacro",
  14252. height: math.unit(300, "AU")
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/vincent/front.svg",
  14265. extra: 1130 / 1080,
  14266. bottom: 0.055
  14267. }
  14268. },
  14269. beak: {
  14270. height: math.unit(6 * 0.1, "feet"),
  14271. name: "Beak",
  14272. image: {
  14273. source: "./media/characters/vincent/beak.svg"
  14274. }
  14275. },
  14276. hand: {
  14277. height: math.unit(6 * 0.85, "feet"),
  14278. weight: math.unit(150, "lb"),
  14279. name: "Hand",
  14280. image: {
  14281. source: "./media/characters/vincent/hand.svg"
  14282. }
  14283. },
  14284. foot: {
  14285. height: math.unit(6 * 0.19, "feet"),
  14286. weight: math.unit(150, "lb"),
  14287. name: "Foot",
  14288. image: {
  14289. source: "./media/characters/vincent/foot.svg"
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Base",
  14296. height: math.unit(6 + 5 / 12, "feet"),
  14297. default: true
  14298. },
  14299. {
  14300. name: "Macro",
  14301. height: math.unit(300, "feet")
  14302. },
  14303. {
  14304. name: "Megamacro",
  14305. height: math.unit(2, "miles")
  14306. },
  14307. {
  14308. name: "Gigamacro",
  14309. height: math.unit(1000, "miles")
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14315. {
  14316. front: {
  14317. height: math.unit(2, "meters"),
  14318. weight: math.unit(500, "kg"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/coatl/front.svg",
  14322. extra: 3948 / 3500,
  14323. bottom: 0.082
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(4, "meters")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(100, "meters"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Macro+",
  14339. height: math.unit(300, "meters")
  14340. },
  14341. {
  14342. name: "Megamacro",
  14343. height: math.unit(3, "gigameters")
  14344. },
  14345. {
  14346. name: "Megamacro+",
  14347. height: math.unit(300, "terameters")
  14348. },
  14349. {
  14350. name: "Megamacro++",
  14351. height: math.unit(3, "lightyears")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(50, "kg"),
  14361. name: "front",
  14362. image: {
  14363. source: "./media/characters/shiroryu/front.svg",
  14364. extra: 1990 / 1935
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Mortal Mingling",
  14371. height: math.unit(3, "meters")
  14372. },
  14373. {
  14374. name: "Kaiju-ish",
  14375. height: math.unit(250, "meters")
  14376. },
  14377. {
  14378. name: "Somewhat Godly",
  14379. height: math.unit(400, "km"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Planetary",
  14384. height: math.unit(300, "megameters")
  14385. },
  14386. {
  14387. name: "Galaxy-dwarfing",
  14388. height: math.unit(450, "kiloparsecs")
  14389. },
  14390. {
  14391. name: "Universe Eater",
  14392. height: math.unit(150, "gigaparsecs")
  14393. },
  14394. {
  14395. name: "Almost Immeasurable",
  14396. height: math.unit(1.3e266, "yottaparsecs")
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14402. {
  14403. front: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/umeko/front.svg",
  14409. extra: 1,
  14410. bottom: 0.019
  14411. }
  14412. },
  14413. frontArmored: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(150, "lb"),
  14416. name: "Front (Armored)",
  14417. image: {
  14418. source: "./media/characters/umeko/front-armored.svg",
  14419. extra: 1,
  14420. bottom: 0.021
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Macro",
  14427. height: math.unit(220, "feet"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Guardian Dragon",
  14432. height: math.unit(50, "miles")
  14433. },
  14434. {
  14435. name: "Cosmic",
  14436. height: math.unit(800000, "miles")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/cassidy/front.svg",
  14449. extra: 810/808,
  14450. bottom: 41/851
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Canon Height",
  14457. height: math.unit(120, "feet"),
  14458. default: true
  14459. },
  14460. {
  14461. name: "Macro+",
  14462. height: math.unit(400, "feet")
  14463. },
  14464. {
  14465. name: "Macro++",
  14466. height: math.unit(4000, "feet")
  14467. },
  14468. {
  14469. name: "Megamacro",
  14470. height: math.unit(3, "miles")
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/isaac/front.svg",
  14483. extra: 896 / 815,
  14484. bottom: 0.11
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Human Size",
  14491. height: math.unit(8, "feet"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Macro",
  14496. height: math.unit(400, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(50, "miles")
  14501. },
  14502. {
  14503. name: "Canon Height",
  14504. height: math.unit(200, "AU")
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(72, "kg"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/sleekit/front.svg",
  14517. extra: 4693 / 4487,
  14518. bottom: 0.012
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Minimum Height",
  14525. height: math.unit(10, "meters")
  14526. },
  14527. {
  14528. name: "Smaller",
  14529. height: math.unit(25, "meters")
  14530. },
  14531. {
  14532. name: "Larger",
  14533. height: math.unit(38, "meters"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Maximum height",
  14538. height: math.unit(100, "meters")
  14539. },
  14540. ]
  14541. ))
  14542. characterMakers.push(() => makeCharacter(
  14543. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14544. {
  14545. front: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(150, "lb"),
  14548. name: "Front",
  14549. image: {
  14550. source: "./media/characters/nillia/front.svg",
  14551. extra: 2195 / 2037,
  14552. bottom: 0.005
  14553. }
  14554. },
  14555. back: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Back",
  14559. image: {
  14560. source: "./media/characters/nillia/back.svg",
  14561. extra: 2195 / 2037,
  14562. bottom: 0.005
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Canon Height",
  14569. height: math.unit(489, "feet"),
  14570. default: true
  14571. }
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(150, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/mesmyriza/front.svg",
  14583. extra: 2067 / 1784,
  14584. bottom: 0.035
  14585. }
  14586. },
  14587. foot: {
  14588. height: math.unit(6 / (250 / 35), "feet"),
  14589. name: "Foot",
  14590. image: {
  14591. source: "./media/characters/mesmyriza/foot.svg"
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Macro",
  14598. height: math.unit(457, "meters"),
  14599. default: true
  14600. },
  14601. {
  14602. name: "Megamacro",
  14603. height: math.unit(8, "megameters")
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(6, "feet"),
  14612. weight: math.unit(250, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/saudade/front.svg",
  14616. extra: 1172 / 1139,
  14617. bottom: 0.035
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Micro",
  14624. height: math.unit(3, "inches")
  14625. },
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(6, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(50, "feet")
  14634. },
  14635. {
  14636. name: "Megamacro",
  14637. height: math.unit(2800, "feet")
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(5 + 4 / 12, "feet"),
  14646. weight: math.unit(100, "lb"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/keireer/front.svg",
  14650. extra: 716 / 666,
  14651. bottom: 0.05
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Normal",
  14658. height: math.unit(5 + 4 / 12, "feet"),
  14659. default: true
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14665. {
  14666. front: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(90, "kg"),
  14669. name: "Front",
  14670. image: {
  14671. source: "./media/characters/mirja/front.svg",
  14672. extra: 1789 / 1683,
  14673. bottom: 0.05
  14674. }
  14675. },
  14676. frontDressed: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(90, "lb"),
  14679. name: "Front (Dressed)",
  14680. image: {
  14681. source: "./media/characters/mirja/front-dressed.svg",
  14682. extra: 1789 / 1683,
  14683. bottom: 0.05
  14684. }
  14685. },
  14686. back: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(90, "lb"),
  14689. name: "Back",
  14690. image: {
  14691. source: "./media/characters/mirja/back.svg",
  14692. extra: 953 / 917,
  14693. bottom: 0.017
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "\"Incognito\"",
  14700. height: math.unit(3, "meters")
  14701. },
  14702. {
  14703. name: "Strolling Size",
  14704. height: math.unit(15, "km")
  14705. },
  14706. {
  14707. name: "Larger Strolling Size",
  14708. height: math.unit(400, "km")
  14709. },
  14710. {
  14711. name: "Preferred Size",
  14712. height: math.unit(5000, "km")
  14713. },
  14714. {
  14715. name: "True Size",
  14716. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(15, "feet"),
  14726. weight: math.unit(880, "kg"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/nightraver/front.svg",
  14730. extra: 2444 / 2160,
  14731. bottom: 0.027
  14732. }
  14733. },
  14734. back: {
  14735. height: math.unit(15, "feet"),
  14736. weight: math.unit(880, "kg"),
  14737. name: "Back",
  14738. image: {
  14739. source: "./media/characters/nightraver/back.svg",
  14740. extra: 2309 / 2180,
  14741. bottom: 0.005
  14742. }
  14743. },
  14744. sole: {
  14745. height: math.unit(2.878, "feet"),
  14746. name: "Sole",
  14747. image: {
  14748. source: "./media/characters/nightraver/sole.svg"
  14749. }
  14750. },
  14751. foot: {
  14752. height: math.unit(2.285, "feet"),
  14753. name: "Foot",
  14754. image: {
  14755. source: "./media/characters/nightraver/foot.svg"
  14756. }
  14757. },
  14758. maw: {
  14759. height: math.unit(2.67, "feet"),
  14760. name: "Maw",
  14761. image: {
  14762. source: "./media/characters/nightraver/maw.svg"
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Micro",
  14769. height: math.unit(1, "cm")
  14770. },
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(15, "feet"),
  14774. default: true
  14775. },
  14776. {
  14777. name: "Macro",
  14778. height: math.unit(300, "feet")
  14779. },
  14780. {
  14781. name: "Megamacro",
  14782. height: math.unit(300, "miles")
  14783. },
  14784. {
  14785. name: "Gigamacro",
  14786. height: math.unit(10000, "miles")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14792. {
  14793. side: {
  14794. height: math.unit(2, "inches"),
  14795. weight: math.unit(5, "grams"),
  14796. name: "Side",
  14797. image: {
  14798. source: "./media/characters/arc/side.svg"
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Micro",
  14805. height: math.unit(2, "inches"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(1.1938, "meters"),
  14815. weight: math.unit(54, "kg"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/nebula-shahar/front.svg",
  14819. extra: 1642 / 1436,
  14820. bottom: 0.06
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Megamicro",
  14827. height: math.unit(0.3, "mm")
  14828. },
  14829. {
  14830. name: "Micro",
  14831. height: math.unit(3, "cm")
  14832. },
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(138, "cm"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(30, "m")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(5.24, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/shayla/front.svg",
  14853. extra: 1512 / 1414,
  14854. bottom: 0.01
  14855. }
  14856. },
  14857. back: {
  14858. height: math.unit(5.24, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Back",
  14861. image: {
  14862. source: "./media/characters/shayla/back.svg",
  14863. extra: 1512 / 1414
  14864. }
  14865. },
  14866. hand: {
  14867. height: math.unit(0.7781496062992126, "feet"),
  14868. name: "Hand",
  14869. image: {
  14870. source: "./media/characters/shayla/hand.svg"
  14871. }
  14872. },
  14873. foot: {
  14874. height: math.unit(1.4206036745406823, "feet"),
  14875. name: "Foot",
  14876. image: {
  14877. source: "./media/characters/shayla/foot.svg"
  14878. }
  14879. },
  14880. },
  14881. [
  14882. {
  14883. name: "Micro",
  14884. height: math.unit(0.32, "feet")
  14885. },
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(5.24, "feet"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Macro",
  14893. height: math.unit(492.12, "feet")
  14894. },
  14895. {
  14896. name: "Megamacro",
  14897. height: math.unit(186.41, "miles")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(2.2, "m"),
  14906. weight: math.unit(120, "kg"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/pia-jr/front.svg",
  14910. extra: 1000 / 970,
  14911. bottom: 0.035
  14912. }
  14913. },
  14914. hand: {
  14915. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14916. name: "Hand",
  14917. image: {
  14918. source: "./media/characters/pia-jr/hand.svg"
  14919. }
  14920. },
  14921. paw: {
  14922. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14923. name: "Paw",
  14924. image: {
  14925. source: "./media/characters/pia-jr/paw.svg"
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Micro",
  14932. height: math.unit(1.2, "cm")
  14933. },
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(2.2, "m"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Macro",
  14941. height: math.unit(180, "m")
  14942. },
  14943. {
  14944. name: "Megamacro",
  14945. height: math.unit(420, "km")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(2, "m"),
  14954. weight: math.unit(115, "kg"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/pia-sr/front.svg",
  14958. extra: 760 / 730,
  14959. bottom: 0.015
  14960. }
  14961. },
  14962. back: {
  14963. height: math.unit(2, "m"),
  14964. weight: math.unit(115, "kg"),
  14965. name: "Back",
  14966. image: {
  14967. source: "./media/characters/pia-sr/back.svg",
  14968. extra: 760 / 730,
  14969. bottom: 0.01
  14970. }
  14971. },
  14972. hand: {
  14973. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14974. name: "Hand",
  14975. image: {
  14976. source: "./media/characters/pia-sr/hand.svg"
  14977. }
  14978. },
  14979. foot: {
  14980. height: math.unit(1.83, "feet"),
  14981. name: "Foot",
  14982. image: {
  14983. source: "./media/characters/pia-sr/foot.svg"
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Micro",
  14990. height: math.unit(88, "mm")
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(2, "m"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Macro",
  14999. height: math.unit(200, "m")
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(420, "km")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(8 + 2 / 12, "feet"),
  15012. weight: math.unit(300, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/kibibyte/front.svg",
  15016. extra: 2221 / 2098,
  15017. bottom: 0.04
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(8 + 2 / 12, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Socialable Macro",
  15029. height: math.unit(50, "feet")
  15030. },
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(300, "feet")
  15034. },
  15035. {
  15036. name: "Megamacro",
  15037. height: math.unit(500, "miles")
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/felix/front.svg",
  15050. extra: 762 / 722,
  15051. bottom: 0.02
  15052. }
  15053. },
  15054. frontClothed: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front (Clothed)",
  15058. image: {
  15059. source: "./media/characters/felix/front-clothed.svg",
  15060. extra: 762 / 722,
  15061. bottom: 0.02
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(6 + 8 / 12, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Macro",
  15073. height: math.unit(2600, "feet")
  15074. },
  15075. {
  15076. name: "Megamacro",
  15077. height: math.unit(450, "miles")
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(6 + 1 / 12, "feet"),
  15086. weight: math.unit(250, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/tobo/front.svg",
  15090. extra: 608 / 586,
  15091. bottom: 0.023
  15092. }
  15093. },
  15094. back: {
  15095. height: math.unit(6 + 1 / 12, "feet"),
  15096. weight: math.unit(250, "lb"),
  15097. name: "Back",
  15098. image: {
  15099. source: "./media/characters/tobo/back.svg",
  15100. extra: 608 / 586
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Nano",
  15107. height: math.unit(2, "nm")
  15108. },
  15109. {
  15110. name: "Megamicro",
  15111. height: math.unit(0.1, "mm")
  15112. },
  15113. {
  15114. name: "Micro",
  15115. height: math.unit(1, "inch"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Human-sized",
  15120. height: math.unit(6 + 1 / 12, "feet")
  15121. },
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(250, "feet")
  15125. },
  15126. {
  15127. name: "Megamacro",
  15128. height: math.unit(75, "miles")
  15129. },
  15130. {
  15131. name: "Texas-sized",
  15132. height: math.unit(750, "miles")
  15133. },
  15134. {
  15135. name: "Teramacro",
  15136. height: math.unit(50000, "miles")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(269, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/danny-kapowsky/front.svg",
  15149. extra: 766 / 736,
  15150. bottom: 0.044
  15151. }
  15152. },
  15153. back: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(269, "lb"),
  15156. name: "Back",
  15157. image: {
  15158. source: "./media/characters/danny-kapowsky/back.svg",
  15159. extra: 797 / 760,
  15160. bottom: 0.025
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Macro",
  15167. height: math.unit(150, "feet"),
  15168. default: true
  15169. },
  15170. {
  15171. name: "Macro+",
  15172. height: math.unit(200, "feet")
  15173. },
  15174. {
  15175. name: "Macro++",
  15176. height: math.unit(300, "feet")
  15177. },
  15178. {
  15179. name: "Macro+++",
  15180. height: math.unit(400, "feet")
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15186. {
  15187. side: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(170, "lb"),
  15190. name: "Side",
  15191. image: {
  15192. source: "./media/characters/finn/side.svg",
  15193. extra: 1953 / 1807,
  15194. bottom: 0.057
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Megamacro",
  15201. height: math.unit(14445, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(5 + 6 / 12, "feet"),
  15211. weight: math.unit(125, "lb"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/roy/front.svg",
  15215. extra: 1,
  15216. bottom: 0.11
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(3, "inches"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(5 + 6 / 12, "feet")
  15229. },
  15230. {
  15231. name: "Lesser Macro",
  15232. height: math.unit(60, "feet")
  15233. },
  15234. {
  15235. name: "Greater Macro",
  15236. height: math.unit(120, "feet")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(100, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/aevsivs/front.svg",
  15249. extra: 1,
  15250. bottom: 0.03
  15251. }
  15252. },
  15253. back: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(100, "lb"),
  15256. name: "Back",
  15257. image: {
  15258. source: "./media/characters/aevsivs/back.svg"
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Micro",
  15265. height: math.unit(2, "inches"),
  15266. default: true
  15267. },
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(5, "feet")
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(5 + 7 / 12, "feet"),
  15279. weight: math.unit(159, "lb"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/hildegard/front.svg",
  15283. extra: 289 / 269,
  15284. bottom: 7.63 / 297.8
  15285. }
  15286. },
  15287. back: {
  15288. height: math.unit(5 + 7 / 12, "feet"),
  15289. weight: math.unit(159, "lb"),
  15290. name: "Back",
  15291. image: {
  15292. source: "./media/characters/hildegard/back.svg",
  15293. extra: 280 / 260,
  15294. bottom: 2.3 / 282
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(5 + 7 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15308. {
  15309. bernard: {
  15310. height: math.unit(2 + 7 / 12, "feet"),
  15311. weight: math.unit(66, "lb"),
  15312. name: "Bernard",
  15313. rename: true,
  15314. image: {
  15315. source: "./media/characters/bernard-wilder/bernard.svg",
  15316. extra: 192 / 128,
  15317. bottom: 0.05
  15318. }
  15319. },
  15320. wilder: {
  15321. height: math.unit(5 + 8 / 12, "feet"),
  15322. weight: math.unit(143, "lb"),
  15323. name: "Wilder",
  15324. rename: true,
  15325. image: {
  15326. source: "./media/characters/bernard-wilder/wilder.svg",
  15327. extra: 361 / 312,
  15328. bottom: 0.02
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(2 + 7 / 12, "feet"),
  15336. default: true
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15342. {
  15343. anthro: {
  15344. height: math.unit(6 + 1 / 12, "feet"),
  15345. weight: math.unit(155, "lb"),
  15346. name: "Anthro",
  15347. image: {
  15348. source: "./media/characters/hearth/anthro.svg",
  15349. extra: 1178/1136,
  15350. bottom: 28/1206
  15351. }
  15352. },
  15353. feral: {
  15354. height: math.unit(3.78, "feet"),
  15355. weight: math.unit(35, "kg"),
  15356. name: "Feral",
  15357. image: {
  15358. source: "./media/characters/hearth/feral.svg",
  15359. extra: 153 / 135,
  15360. bottom: 0.03
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(6 + 1 / 12, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(182, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/ingrid/front.svg",
  15381. extra: 294 / 268,
  15382. bottom: 0.027
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(6, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15396. {
  15397. eevee: {
  15398. height: math.unit(2 + 10 / 12, "feet"),
  15399. weight: math.unit(86, "lb"),
  15400. name: "Malgam",
  15401. image: {
  15402. source: "./media/characters/malgam/eevee.svg",
  15403. extra: 952/784,
  15404. bottom: 38/990
  15405. }
  15406. },
  15407. sylveon: {
  15408. height: math.unit(4, "feet"),
  15409. weight: math.unit(101, "lb"),
  15410. name: "Future Malgam",
  15411. rename: true,
  15412. image: {
  15413. source: "./media/characters/malgam/sylveon.svg",
  15414. extra: 371 / 325,
  15415. bottom: 0.015
  15416. }
  15417. },
  15418. gigantamax: {
  15419. height: math.unit(50, "feet"),
  15420. name: "Gigantamax Malgam",
  15421. rename: true,
  15422. image: {
  15423. source: "./media/characters/malgam/gigantamax.svg"
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(2 + 10 / 12, "feet"),
  15431. default: true
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(5 + 11 / 12, "feet"),
  15440. weight: math.unit(188, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/fleur/front.svg",
  15444. extra: 309 / 283,
  15445. bottom: 0.007
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Normal",
  15452. height: math.unit(5 + 11 / 12, "feet"),
  15453. default: true
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(5 + 4 / 12, "feet"),
  15462. weight: math.unit(122, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/jude/front.svg",
  15466. extra: 288 / 273,
  15467. bottom: 0.03
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(5 + 4 / 12, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(5 + 11 / 12, "feet"),
  15484. weight: math.unit(190, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/seara/front.svg",
  15488. extra: 1,
  15489. bottom: 0.05
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Normal",
  15496. height: math.unit(5 + 11 / 12, "feet"),
  15497. default: true
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(16 + 5 / 12, "feet"),
  15506. weight: math.unit(524, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/caspian/front.svg",
  15510. extra: 1,
  15511. bottom: 0.04
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(16 + 5 / 12, "feet"),
  15519. default: true
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(5 + 7 / 12, "feet"),
  15528. weight: math.unit(170, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/mika/front.svg",
  15532. extra: 1,
  15533. bottom: 0.016
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(5 + 7 / 12, "feet"),
  15541. default: true
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(6 + 2 / 12, "feet"),
  15550. weight: math.unit(268, "lb"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/sol/front.svg",
  15554. extra: 247 / 231,
  15555. bottom: 0.05
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(6 + 2 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15569. {
  15570. buizel: {
  15571. height: math.unit(2 + 5 / 12, "feet"),
  15572. weight: math.unit(87, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/umiko/buizel.svg",
  15576. extra: 172 / 157,
  15577. bottom: 0.01
  15578. },
  15579. form: "buizel",
  15580. default: true
  15581. },
  15582. floatzel: {
  15583. height: math.unit(5 + 9 / 12, "feet"),
  15584. weight: math.unit(250, "lb"),
  15585. name: "Front",
  15586. image: {
  15587. source: "./media/characters/umiko/floatzel.svg",
  15588. extra: 1076/1006,
  15589. bottom: 15/1091
  15590. },
  15591. form: "floatzel",
  15592. default: true
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(2 + 5 / 12, "feet"),
  15599. form: "buizel",
  15600. default: true
  15601. },
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(5 + 9 / 12, "feet"),
  15605. form: "floatzel",
  15606. default: true
  15607. },
  15608. ],
  15609. {
  15610. "buizel": {
  15611. name: "Buizel"
  15612. },
  15613. "floatzel": {
  15614. name: "Floatzel",
  15615. default: true
  15616. }
  15617. }
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(6 + 2 / 12, "feet"),
  15624. weight: math.unit(146, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/iliac/front.svg",
  15628. extra: 389 / 365,
  15629. bottom: 0.035
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(6 + 2 / 12, "feet"),
  15637. default: true
  15638. },
  15639. ]
  15640. ))
  15641. characterMakers.push(() => makeCharacter(
  15642. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15643. {
  15644. front: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(170, "lb"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/topaz/front.svg",
  15650. extra: 317 / 303,
  15651. bottom: 0.055
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(6, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(5 + 11 / 12, "feet"),
  15668. weight: math.unit(144, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/gabriel/front.svg",
  15672. extra: 285 / 262,
  15673. bottom: 0.004
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(5 + 11 / 12, "feet"),
  15681. default: true
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15687. {
  15688. side: {
  15689. height: math.unit(6 + 5 / 12, "feet"),
  15690. weight: math.unit(300, "lb"),
  15691. name: "Side",
  15692. image: {
  15693. source: "./media/characters/tempest-suicune/side.svg",
  15694. extra: 195 / 154,
  15695. bottom: 0.04
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(6 + 5 / 12, "feet"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(7 + 2 / 12, "feet"),
  15712. weight: math.unit(322, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/vulcan/front.svg",
  15716. extra: 154 / 147,
  15717. bottom: 0.04
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Normal",
  15724. height: math.unit(7 + 2 / 12, "feet"),
  15725. default: true
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(5 + 10 / 12, "feet"),
  15734. weight: math.unit(264, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/gault/front.svg",
  15738. extra: 161 / 140,
  15739. bottom: 0.028
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(5 + 10 / 12, "feet"),
  15747. default: true
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15753. {
  15754. front: {
  15755. height: math.unit(6, "feet"),
  15756. weight: math.unit(150, "lb"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/shard/front.svg",
  15760. extra: 273 / 238,
  15761. bottom: 0.02
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(3 + 6 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 11 / 12, "feet"),
  15778. weight: math.unit(146, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/ashe/front.svg",
  15782. extra: 400 / 373,
  15783. bottom: 0.01
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 11 / 12, "feet"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(5 + 5 / 12, "feet"),
  15800. weight: math.unit(135, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/beatrix/front.svg",
  15804. extra: 392 / 379,
  15805. bottom: 0.01
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(6, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6 + 2/12, "feet"),
  15822. weight: math.unit(135, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/ignatius/front.svg",
  15826. extra: 1380/1259,
  15827. bottom: 27/1407
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(6 + 2/12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(6 + 2 / 12, "feet"),
  15844. weight: math.unit(138, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/mei-li/front.svg",
  15848. extra: 237 / 229,
  15849. bottom: 0.03
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(6 + 2 / 12, "feet"),
  15857. default: true
  15858. },
  15859. ]
  15860. ))
  15861. characterMakers.push(() => makeCharacter(
  15862. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15863. {
  15864. front: {
  15865. height: math.unit(2 + 4 / 12, "feet"),
  15866. weight: math.unit(62, "lb"),
  15867. name: "Front",
  15868. image: {
  15869. source: "./media/characters/puru/front.svg",
  15870. extra: 206 / 149,
  15871. bottom: 0.06
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(2 + 4 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15885. {
  15886. anthro: {
  15887. height: math.unit(5 + 8/12, "feet"),
  15888. weight: math.unit(200, "lb"),
  15889. energyNeed: math.unit(2000, "kcal"),
  15890. name: "Anthro",
  15891. image: {
  15892. source: "./media/characters/kee/anthro.svg",
  15893. extra: 3251/3184,
  15894. bottom: 250/3501
  15895. }
  15896. },
  15897. taur: {
  15898. height: math.unit(11, "feet"),
  15899. weight: math.unit(500, "lb"),
  15900. energyNeed: math.unit(5000, "kcal"),
  15901. name: "Taur",
  15902. image: {
  15903. source: "./media/characters/kee/taur.svg",
  15904. extra: 1362/1320,
  15905. bottom: 83/1445
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(5 + 8/12, "feet"),
  15913. default: true
  15914. },
  15915. {
  15916. name: "Macro",
  15917. height: math.unit(35, "feet")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15923. {
  15924. anthro: {
  15925. height: math.unit(7, "feet"),
  15926. weight: math.unit(190, "lb"),
  15927. name: "Anthro",
  15928. image: {
  15929. source: "./media/characters/cobalt-dracha/anthro.svg",
  15930. extra: 231 / 225,
  15931. bottom: 0.04
  15932. }
  15933. },
  15934. feral: {
  15935. height: math.unit(9 + 7 / 12, "feet"),
  15936. weight: math.unit(294, "lb"),
  15937. name: "Feral",
  15938. image: {
  15939. source: "./media/characters/cobalt-dracha/feral.svg",
  15940. extra: 692 / 633,
  15941. bottom: 0.05
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Normal",
  15948. height: math.unit(7, "feet"),
  15949. default: true
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15955. {
  15956. fallen: {
  15957. height: math.unit(11 + 8 / 12, "feet"),
  15958. weight: math.unit(485, "lb"),
  15959. name: "Java (Fallen)",
  15960. rename: true,
  15961. image: {
  15962. source: "./media/characters/java/fallen.svg",
  15963. extra: 226 / 208,
  15964. bottom: 0.005
  15965. }
  15966. },
  15967. godkin: {
  15968. height: math.unit(10 + 6 / 12, "feet"),
  15969. weight: math.unit(328, "lb"),
  15970. name: "Java (Godkin)",
  15971. rename: true,
  15972. image: {
  15973. source: "./media/characters/java/godkin.svg",
  15974. extra: 1104/1068,
  15975. bottom: 36/1140
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(11 + 8 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(5 + 9 / 12, "feet"),
  15992. weight: math.unit(170, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/purna/front.svg",
  15996. extra: 239 / 229,
  15997. bottom: 0.01
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(5 + 9 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(5 + 9 / 12, "feet"),
  16014. weight: math.unit(142, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/kuva/front.svg",
  16018. extra: 281 / 271,
  16019. bottom: 0.006
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5 + 9 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16033. {
  16034. anthro: {
  16035. height: math.unit(9 + 2 / 12, "feet"),
  16036. weight: math.unit(270, "lb"),
  16037. name: "Anthro",
  16038. image: {
  16039. source: "./media/characters/embra/anthro.svg",
  16040. extra: 200 / 187,
  16041. bottom: 0.02
  16042. }
  16043. },
  16044. feral: {
  16045. height: math.unit(18 + 8 / 12, "feet"),
  16046. weight: math.unit(576, "lb"),
  16047. name: "Feral",
  16048. image: {
  16049. source: "./media/characters/embra/feral.svg",
  16050. extra: 152 / 137,
  16051. bottom: 0.037
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(9 + 2 / 12, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16065. {
  16066. anthro: {
  16067. height: math.unit(10 + 9 / 12, "feet"),
  16068. weight: math.unit(224, "lb"),
  16069. name: "Anthro",
  16070. image: {
  16071. source: "./media/characters/grottos/anthro.svg",
  16072. extra: 350 / 332,
  16073. bottom: 0.045
  16074. }
  16075. },
  16076. feral: {
  16077. height: math.unit(20 + 7 / 12, "feet"),
  16078. weight: math.unit(629, "lb"),
  16079. name: "Feral",
  16080. image: {
  16081. source: "./media/characters/grottos/feral.svg",
  16082. extra: 207 / 190,
  16083. bottom: 0.05
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(10 + 9 / 12, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16097. {
  16098. anthro: {
  16099. height: math.unit(9 + 6 / 12, "feet"),
  16100. weight: math.unit(298, "lb"),
  16101. name: "Anthro",
  16102. image: {
  16103. source: "./media/characters/frifna/anthro.svg",
  16104. extra: 282 / 269,
  16105. bottom: 0.015
  16106. }
  16107. },
  16108. feral: {
  16109. height: math.unit(16 + 2 / 12, "feet"),
  16110. weight: math.unit(624, "lb"),
  16111. name: "Feral",
  16112. image: {
  16113. source: "./media/characters/frifna/feral.svg"
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(9 + 6 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(6 + 2 / 12, "feet"),
  16130. weight: math.unit(168, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/elise/front.svg",
  16134. extra: 276 / 271
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6 + 2 / 12, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(5 + 10 / 12, "feet"),
  16151. weight: math.unit(210, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/glade/front.svg",
  16155. extra: 258 / 247,
  16156. bottom: 0.008
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(5 + 10 / 12, "feet"),
  16164. default: true
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(5 + 10 / 12, "feet"),
  16173. weight: math.unit(129, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/rina/front.svg",
  16177. extra: 266 / 255,
  16178. bottom: 0.005
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(5 + 10 / 12, "feet"),
  16186. default: true
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6 + 1 / 12, "feet"),
  16195. weight: math.unit(192, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/veronica/front.svg",
  16199. extra: 319 / 309,
  16200. bottom: 0.005
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(6 + 1 / 12, "feet"),
  16208. default: true
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(9 + 3 / 12, "feet"),
  16217. weight: math.unit(1100, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/braxton/front.svg",
  16221. extra: 1057 / 984,
  16222. bottom: 0.05
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(9 + 3 / 12, "feet")
  16230. },
  16231. {
  16232. name: "Giant",
  16233. height: math.unit(300, "feet"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Macro",
  16238. height: math.unit(700, "feet")
  16239. },
  16240. {
  16241. name: "Megamacro",
  16242. height: math.unit(6000, "feet")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6 + 7 / 12, "feet"),
  16251. weight: math.unit(150, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/blue-feyonics/front.svg",
  16255. extra: 1403 / 1306,
  16256. bottom: 0.047
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(6 + 7 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(1.8, "meters"),
  16273. weight: math.unit(60, "kg"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/maxwell/front.svg",
  16277. extra: 2060 / 1873
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Micro",
  16284. height: math.unit(1, "mm")
  16285. },
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(1.8, "meter"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Macro",
  16293. height: math.unit(30, "meters")
  16294. },
  16295. {
  16296. name: "Megamacro",
  16297. height: math.unit(10, "km")
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(6, "feet"),
  16306. weight: math.unit(150, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/jack/front.svg",
  16310. extra: 1754 / 1640,
  16311. bottom: 0.01
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(80000, "feet"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Max size",
  16323. height: math.unit(10, "lightyears")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16329. {
  16330. urban: {
  16331. height: math.unit(5, "feet"),
  16332. weight: math.unit(240, "lb"),
  16333. name: "Urban",
  16334. image: {
  16335. source: "./media/characters/cafat/urban.svg",
  16336. extra: 1223/1126,
  16337. bottom: 205/1428
  16338. }
  16339. },
  16340. summer: {
  16341. height: math.unit(5, "feet"),
  16342. weight: math.unit(240, "lb"),
  16343. name: "Summer",
  16344. image: {
  16345. source: "./media/characters/cafat/summer.svg",
  16346. extra: 1223/1126,
  16347. bottom: 205/1428
  16348. }
  16349. },
  16350. winter: {
  16351. height: math.unit(5, "feet"),
  16352. weight: math.unit(240, "lb"),
  16353. name: "Winter",
  16354. image: {
  16355. source: "./media/characters/cafat/winter.svg",
  16356. extra: 1223/1126,
  16357. bottom: 205/1428
  16358. }
  16359. },
  16360. lingerie: {
  16361. height: math.unit(5, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Lingerie",
  16364. image: {
  16365. source: "./media/characters/cafat/lingerie.svg",
  16366. extra: 1223/1126,
  16367. bottom: 205/1428
  16368. }
  16369. },
  16370. upright: {
  16371. height: math.unit(6.3, "feet"),
  16372. weight: math.unit(240, "lb"),
  16373. name: "Upright",
  16374. image: {
  16375. source: "./media/characters/cafat/upright.svg",
  16376. bottom: 0.01
  16377. }
  16378. },
  16379. uprightFull: {
  16380. height: math.unit(6.3, "feet"),
  16381. weight: math.unit(240, "lb"),
  16382. name: "Upright (Full)",
  16383. image: {
  16384. source: "./media/characters/cafat/upright-full.svg",
  16385. bottom: 0.01
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Small",
  16392. height: math.unit(5, "feet"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Large",
  16397. height: math.unit(13, "feet")
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(6, "feet"),
  16406. weight: math.unit(150, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/verin-raharra/front.svg",
  16410. extra: 5019 / 4835,
  16411. bottom: 0.023
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(7 + 5 / 12, "feet"),
  16419. default: true
  16420. },
  16421. {
  16422. name: "Upsized",
  16423. height: math.unit(20, "feet")
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(7, "feet"),
  16432. weight: math.unit(230, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/nakata/front.svg",
  16436. extra: 1.005,
  16437. bottom: 0.01
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(7, "feet"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "Big",
  16449. height: math.unit(14, "feet")
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(400, "feet")
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(4.91, "feet"),
  16462. weight: math.unit(100, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/lily/front.svg",
  16466. extra: 1585 / 1415,
  16467. bottom: 0.02
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(4.91, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16481. {
  16482. laying: {
  16483. height: math.unit(4 + 4 / 12, "feet"),
  16484. weight: math.unit(600, "lb"),
  16485. name: "Laying",
  16486. image: {
  16487. source: "./media/characters/sheila/laying.svg",
  16488. extra: 1333 / 1265,
  16489. bottom: 0.16
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(4 + 4 / 12, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(6, "feet"),
  16506. weight: math.unit(190, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/sax/front.svg",
  16510. extra: 1187 / 973,
  16511. bottom: 0.042
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Micro",
  16518. height: math.unit(4, "inches"),
  16519. default: true
  16520. },
  16521. ]
  16522. ))
  16523. characterMakers.push(() => makeCharacter(
  16524. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16525. {
  16526. front: {
  16527. height: math.unit(6, "feet"),
  16528. weight: math.unit(150, "lb"),
  16529. name: "Front",
  16530. image: {
  16531. source: "./media/characters/pandora/front.svg",
  16532. extra: 2720 / 2556,
  16533. bottom: 0.015
  16534. }
  16535. },
  16536. back: {
  16537. height: math.unit(6, "feet"),
  16538. weight: math.unit(150, "lb"),
  16539. name: "Back",
  16540. image: {
  16541. source: "./media/characters/pandora/back.svg",
  16542. extra: 2720 / 2556,
  16543. bottom: 0.01
  16544. }
  16545. },
  16546. beans: {
  16547. height: math.unit(6 / 8, "feet"),
  16548. name: "Beans",
  16549. image: {
  16550. source: "./media/characters/pandora/beans.svg"
  16551. }
  16552. },
  16553. collar: {
  16554. height: math.unit(0.31, "feet"),
  16555. name: "Collar",
  16556. image: {
  16557. source: "./media/characters/pandora/collar.svg"
  16558. }
  16559. },
  16560. skirt: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(150, "lb"),
  16563. name: "Skirt",
  16564. image: {
  16565. source: "./media/characters/pandora/skirt.svg",
  16566. extra: 1622 / 1525,
  16567. bottom: 0.015
  16568. }
  16569. },
  16570. hoodie: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Hoodie",
  16574. image: {
  16575. source: "./media/characters/pandora/hoodie.svg",
  16576. extra: 1622 / 1525,
  16577. bottom: 0.015
  16578. }
  16579. },
  16580. casual: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(150, "lb"),
  16583. name: "Casual",
  16584. image: {
  16585. source: "./media/characters/pandora/casual.svg",
  16586. extra: 1622 / 1525,
  16587. bottom: 0.015
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(6, "feet")
  16595. },
  16596. {
  16597. name: "Big Steppy",
  16598. height: math.unit(1, "km"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Galactic Steppy",
  16603. height: math.unit(2, "gigameters")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16609. {
  16610. side: {
  16611. height: math.unit(10, "feet"),
  16612. weight: math.unit(800, "kg"),
  16613. name: "Side",
  16614. image: {
  16615. source: "./media/characters/venio-darcony/side.svg",
  16616. extra: 1373 / 1003,
  16617. bottom: 0.037
  16618. }
  16619. },
  16620. front: {
  16621. height: math.unit(19, "feet"),
  16622. weight: math.unit(800, "kg"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/venio-darcony/front.svg"
  16626. }
  16627. },
  16628. back: {
  16629. height: math.unit(19, "feet"),
  16630. weight: math.unit(800, "kg"),
  16631. name: "Back",
  16632. image: {
  16633. source: "./media/characters/venio-darcony/back.svg"
  16634. }
  16635. },
  16636. sideNsfw: {
  16637. height: math.unit(10, "feet"),
  16638. weight: math.unit(800, "kg"),
  16639. name: "Side (NSFW)",
  16640. image: {
  16641. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16642. extra: 1373 / 1003,
  16643. bottom: 0.037
  16644. }
  16645. },
  16646. frontNsfw: {
  16647. height: math.unit(19, "feet"),
  16648. weight: math.unit(800, "kg"),
  16649. name: "Front (NSFW)",
  16650. image: {
  16651. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16652. }
  16653. },
  16654. backNsfw: {
  16655. height: math.unit(19, "feet"),
  16656. weight: math.unit(800, "kg"),
  16657. name: "Back (NSFW)",
  16658. image: {
  16659. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16660. }
  16661. },
  16662. sideArmored: {
  16663. height: math.unit(10, "feet"),
  16664. weight: math.unit(800, "kg"),
  16665. name: "Side (Armored)",
  16666. image: {
  16667. source: "./media/characters/venio-darcony/side-armored.svg",
  16668. extra: 1373 / 1003,
  16669. bottom: 0.037
  16670. }
  16671. },
  16672. frontArmored: {
  16673. height: math.unit(19, "feet"),
  16674. weight: math.unit(900, "kg"),
  16675. name: "Front (Armored)",
  16676. image: {
  16677. source: "./media/characters/venio-darcony/front-armored.svg"
  16678. }
  16679. },
  16680. backArmored: {
  16681. height: math.unit(19, "feet"),
  16682. weight: math.unit(900, "kg"),
  16683. name: "Back (Armored)",
  16684. image: {
  16685. source: "./media/characters/venio-darcony/back-armored.svg"
  16686. }
  16687. },
  16688. sword: {
  16689. height: math.unit(10, "feet"),
  16690. weight: math.unit(50, "lb"),
  16691. name: "Sword",
  16692. image: {
  16693. source: "./media/characters/venio-darcony/sword.svg"
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(10, "feet")
  16701. },
  16702. {
  16703. name: "Macro",
  16704. height: math.unit(130, "feet"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Macro+",
  16709. height: math.unit(240, "feet")
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(150, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/veski/front.svg",
  16722. extra: 1299 / 1225,
  16723. bottom: 0.04
  16724. }
  16725. },
  16726. back: {
  16727. height: math.unit(6, "feet"),
  16728. weight: math.unit(150, "lb"),
  16729. name: "Back",
  16730. image: {
  16731. source: "./media/characters/veski/back.svg",
  16732. extra: 1299 / 1225,
  16733. bottom: 0.008
  16734. }
  16735. },
  16736. maw: {
  16737. height: math.unit(1.5 * 1.21, "feet"),
  16738. name: "Maw",
  16739. image: {
  16740. source: "./media/characters/veski/maw.svg"
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Macro",
  16747. height: math.unit(2, "km"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(5 + 7 / 12, "feet"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/isabelle/front.svg",
  16760. extra: 2130 / 1976,
  16761. bottom: 0.05
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Supermicro",
  16768. height: math.unit(10, "micrometers")
  16769. },
  16770. {
  16771. name: "Micro",
  16772. height: math.unit(1, "inch")
  16773. },
  16774. {
  16775. name: "Tiny",
  16776. height: math.unit(5, "inches")
  16777. },
  16778. {
  16779. name: "Standard",
  16780. height: math.unit(5 + 7 / 12, "inches")
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(80, "meters"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Megamacro",
  16789. height: math.unit(250, "meters")
  16790. },
  16791. {
  16792. name: "Gigamacro",
  16793. height: math.unit(5, "km")
  16794. },
  16795. {
  16796. name: "Cosmic",
  16797. height: math.unit(2.5e6, "miles")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/hanzo/front.svg",
  16810. extra: 374 / 344,
  16811. bottom: 0.02
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(8, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(7, "feet"),
  16828. weight: math.unit(130, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/anna/front.svg",
  16832. extra: 169 / 145,
  16833. bottom: 0.06
  16834. }
  16835. },
  16836. full: {
  16837. height: math.unit(4.96, "feet"),
  16838. weight: math.unit(220, "lb"),
  16839. name: "Full",
  16840. image: {
  16841. source: "./media/characters/anna/full.svg",
  16842. extra: 138 / 114,
  16843. bottom: 0.15
  16844. }
  16845. },
  16846. tongue: {
  16847. height: math.unit(2.53, "feet"),
  16848. name: "Tongue",
  16849. image: {
  16850. source: "./media/characters/anna/tongue.svg"
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(7, "feet"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(7, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/ian-corvid/front.svg",
  16871. extra: 150 / 142,
  16872. bottom: 0.02
  16873. }
  16874. },
  16875. back: {
  16876. height: math.unit(7, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Back",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/back.svg",
  16881. extra: 150 / 143,
  16882. bottom: 0.01
  16883. }
  16884. },
  16885. stomping: {
  16886. height: math.unit(7, "feet"),
  16887. weight: math.unit(150, "lb"),
  16888. name: "Stomping",
  16889. image: {
  16890. source: "./media/characters/ian-corvid/stomping.svg",
  16891. extra: 76 / 72
  16892. }
  16893. },
  16894. sitting: {
  16895. height: math.unit(7 / 1.8, "feet"),
  16896. weight: math.unit(150, "lb"),
  16897. name: "Sitting",
  16898. image: {
  16899. source: "./media/characters/ian-corvid/sitting.svg",
  16900. extra: 1400 / 1269,
  16901. bottom: 0.15
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Tiny Microw",
  16908. height: math.unit(1, "inch")
  16909. },
  16910. {
  16911. name: "Microw",
  16912. height: math.unit(6, "inches")
  16913. },
  16914. {
  16915. name: "Crow",
  16916. height: math.unit(7 + 1 / 12, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Macrow",
  16921. height: math.unit(176, "feet")
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(5 + 7 / 12, "feet"),
  16930. weight: math.unit(147, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/natalie-kellon/front.svg",
  16934. extra: 1214 / 1141,
  16935. bottom: 0.02
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Micro",
  16942. height: math.unit(1 / 16, "inch")
  16943. },
  16944. {
  16945. name: "Tiny",
  16946. height: math.unit(4, "inches")
  16947. },
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(5 + 7 / 12, "feet"),
  16951. default: true
  16952. },
  16953. {
  16954. name: "Amazon",
  16955. height: math.unit(12, "feet")
  16956. },
  16957. {
  16958. name: "Giantess",
  16959. height: math.unit(160, "meters")
  16960. },
  16961. {
  16962. name: "Titaness",
  16963. height: math.unit(800, "meters")
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/alluria/front.svg",
  16976. extra: 806 / 738,
  16977. bottom: 0.01
  16978. }
  16979. },
  16980. side: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(150, "lb"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/alluria/side.svg",
  16986. extra: 800 / 750,
  16987. }
  16988. },
  16989. back: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Back",
  16993. image: {
  16994. source: "./media/characters/alluria/back.svg",
  16995. extra: 806 / 738,
  16996. }
  16997. },
  16998. frontMaid: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Front (Maid)",
  17002. image: {
  17003. source: "./media/characters/alluria/front-maid.svg",
  17004. extra: 806 / 738,
  17005. bottom: 0.01
  17006. }
  17007. },
  17008. sideMaid: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Side (Maid)",
  17012. image: {
  17013. source: "./media/characters/alluria/side-maid.svg",
  17014. extra: 800 / 750,
  17015. bottom: 0.005
  17016. }
  17017. },
  17018. backMaid: {
  17019. height: math.unit(6, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Back (Maid)",
  17022. image: {
  17023. source: "./media/characters/alluria/back-maid.svg",
  17024. extra: 806 / 738,
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Micro",
  17031. height: math.unit(6, "inches"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(6, "feet"),
  17041. weight: math.unit(150, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/kyle/front.svg",
  17045. extra: 1069 / 962,
  17046. bottom: 77.228 / 1727.45
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Macro",
  17053. height: math.unit(150, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(6, "feet"),
  17063. weight: math.unit(300, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/duncan/front.svg",
  17067. extra: 1650 / 1482,
  17068. bottom: 0.05
  17069. }
  17070. },
  17071. },
  17072. [
  17073. {
  17074. name: "Macro",
  17075. height: math.unit(100, "feet"),
  17076. default: true
  17077. },
  17078. ]
  17079. ))
  17080. characterMakers.push(() => makeCharacter(
  17081. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17082. {
  17083. front: {
  17084. height: math.unit(5 + 4 / 12, "feet"),
  17085. weight: math.unit(220, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/memory/front.svg",
  17089. extra: 3641 / 3545,
  17090. bottom: 0.03
  17091. }
  17092. },
  17093. back: {
  17094. height: math.unit(5 + 4 / 12, "feet"),
  17095. weight: math.unit(220, "lb"),
  17096. name: "Back",
  17097. image: {
  17098. source: "./media/characters/memory/back.svg",
  17099. extra: 3641 / 3545,
  17100. bottom: 0.025
  17101. }
  17102. },
  17103. frontSkirt: {
  17104. height: math.unit(5 + 4 / 12, "feet"),
  17105. weight: math.unit(220, "lb"),
  17106. name: "Front (Skirt)",
  17107. image: {
  17108. source: "./media/characters/memory/front-skirt.svg",
  17109. extra: 3641 / 3545,
  17110. bottom: 0.03
  17111. }
  17112. },
  17113. frontDress: {
  17114. height: math.unit(5 + 4 / 12, "feet"),
  17115. weight: math.unit(220, "lb"),
  17116. name: "Front (Dress)",
  17117. image: {
  17118. source: "./media/characters/memory/front-dress.svg",
  17119. extra: 3641 / 3545,
  17120. bottom: 0.03
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Micro",
  17127. height: math.unit(6, "inches"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(5 + 4 / 12, "feet")
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(4 + 11 / 12, "feet"),
  17141. weight: math.unit(100, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/luno/front.svg",
  17145. extra: 1535 / 1487,
  17146. bottom: 0.03
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Micro",
  17153. height: math.unit(3, "inches")
  17154. },
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(4 + 11 / 12, "feet"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(300, "feet")
  17163. },
  17164. {
  17165. name: "Megamacro",
  17166. height: math.unit(700, "miles")
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6 + 2 / 12, "feet"),
  17175. weight: math.unit(170, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/jamesy/front.svg",
  17179. extra: 440 / 382,
  17180. bottom: 0.005
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Micro",
  17187. height: math.unit(3, "inches")
  17188. },
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 2 / 12, "feet"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(300, "feet")
  17197. },
  17198. {
  17199. name: "Megamacro",
  17200. height: math.unit(700, "miles")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(6, "feet"),
  17209. weight: math.unit(160, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/mark/front.svg",
  17213. extra: 3300 / 3100,
  17214. bottom: 136.42 / 3440.47
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(120, "meters")
  17222. },
  17223. {
  17224. name: "Bigger Macro",
  17225. height: math.unit(350, "meters")
  17226. },
  17227. {
  17228. name: "Megamacro",
  17229. height: math.unit(8, "km"),
  17230. default: true
  17231. },
  17232. {
  17233. name: "Continental",
  17234. height: math.unit(4550, "km")
  17235. },
  17236. {
  17237. name: "Planetary",
  17238. height: math.unit(65000, "km")
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(6, "feet"),
  17247. weight: math.unit(400, "lb"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/mac/front.svg",
  17251. extra: 1048 / 987.7,
  17252. bottom: 60 / 1107.6,
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Macro",
  17259. height: math.unit(500, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(5 + 2 / 12, "feet"),
  17269. weight: math.unit(190, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/bari/front.svg",
  17273. extra: 3156 / 2880,
  17274. bottom: 0.03
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(5 + 2 / 12, "feet"),
  17279. weight: math.unit(190, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/bari/back.svg",
  17283. extra: 3260 / 2834,
  17284. bottom: 0.025
  17285. }
  17286. },
  17287. frontPlush: {
  17288. height: math.unit(5 + 2 / 12, "feet"),
  17289. weight: math.unit(190, "lb"),
  17290. name: "Front (Plush)",
  17291. image: {
  17292. source: "./media/characters/bari/front-plush.svg",
  17293. extra: 1112 / 1061,
  17294. bottom: 0.002
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Micro",
  17301. height: math.unit(3, "inches")
  17302. },
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(5 + 2 / 12, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(20, "feet")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(6 + 1 / 12, "feet"),
  17319. weight: math.unit(275, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/hunter-misha-raven/front.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Mortal",
  17329. height: math.unit(6 + 1 / 12, "feet")
  17330. },
  17331. {
  17332. name: "Divine",
  17333. height: math.unit(1.12134e34, "parsecs"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6 + 3 / 12, "feet"),
  17343. weight: math.unit(220, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/max-calore/front.svg",
  17347. extra: 1700 / 1648,
  17348. bottom: 0.01
  17349. }
  17350. },
  17351. back: {
  17352. height: math.unit(6 + 3 / 12, "feet"),
  17353. weight: math.unit(220, "lb"),
  17354. name: "Back",
  17355. image: {
  17356. source: "./media/characters/max-calore/back.svg",
  17357. extra: 1700 / 1648,
  17358. bottom: 0.01
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(6 + 3 / 12, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17372. {
  17373. side: {
  17374. height: math.unit(2 + 8 / 12, "feet"),
  17375. weight: math.unit(99, "lb"),
  17376. name: "Side",
  17377. image: {
  17378. source: "./media/characters/aspen/side.svg",
  17379. extra: 152 / 138,
  17380. bottom: 0.032
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(2 + 8 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17394. {
  17395. side: {
  17396. height: math.unit(3 + 2 / 12, "feet"),
  17397. weight: math.unit(224, "lb"),
  17398. name: "Side",
  17399. image: {
  17400. source: "./media/characters/sheila-feral-wolf/side.svg",
  17401. extra: 179 / 166,
  17402. bottom: 0.03
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(3 + 2 / 12, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17416. {
  17417. side: {
  17418. height: math.unit(1 + 9 / 12, "feet"),
  17419. weight: math.unit(38, "lb"),
  17420. name: "Side",
  17421. image: {
  17422. source: "./media/characters/michelle/side.svg",
  17423. extra: 147 / 136.7,
  17424. bottom: 0.03
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(1 + 9 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(1.54, "feet"),
  17441. weight: math.unit(50, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/nino/front.svg"
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(1.54, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(1.49, "feet"),
  17461. weight: math.unit(45, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/viola/front.svg"
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(1.49, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(6 + 5 / 12, "feet"),
  17481. weight: math.unit(580, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/atlas/front.svg",
  17485. extra: 298.5 / 290,
  17486. bottom: 0.015
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6 + 5 / 12, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17500. {
  17501. side: {
  17502. height: math.unit(15.6, "inches"),
  17503. weight: math.unit(10, "lb"),
  17504. name: "Side",
  17505. image: {
  17506. source: "./media/characters/davy/side.svg",
  17507. extra: 200 / 170,
  17508. bottom: 0.01
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(15.6, "inches"),
  17516. default: true
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17522. {
  17523. side: {
  17524. height: math.unit(4 + 8 / 12, "feet"),
  17525. weight: math.unit(166, "lb"),
  17526. name: "Side",
  17527. image: {
  17528. source: "./media/characters/fiona/side.svg",
  17529. extra: 232 / 220,
  17530. bottom: 0.03
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(4 + 8 / 12, "feet"),
  17538. default: true
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17544. {
  17545. front: {
  17546. height: math.unit(26, "inches"),
  17547. weight: math.unit(35, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/lyla/front.svg",
  17551. bottom: 0.1
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(3, "feet"),
  17559. default: true
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17565. {
  17566. side: {
  17567. height: math.unit(1.8, "feet"),
  17568. weight: math.unit(44, "lb"),
  17569. name: "Side",
  17570. image: {
  17571. source: "./media/characters/perseus/side.svg",
  17572. bottom: 0.21
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(1.8, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17586. {
  17587. side: {
  17588. height: math.unit(4 + 2 / 12, "feet"),
  17589. weight: math.unit(20, "lb"),
  17590. name: "Side",
  17591. image: {
  17592. source: "./media/characters/remus/side.svg"
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(4 + 2 / 12, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(4 + 11 / 12, "feet"),
  17609. weight: math.unit(114, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/raf/front.svg",
  17613. extra: 1504/1339,
  17614. bottom: 26/1530
  17615. }
  17616. },
  17617. side: {
  17618. height: math.unit(4 + 11 / 12, "feet"),
  17619. weight: math.unit(114, "lb"),
  17620. name: "Side",
  17621. image: {
  17622. source: "./media/characters/raf/side.svg",
  17623. extra: 1466/1316,
  17624. bottom: 29/1495
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Micro",
  17631. height: math.unit(2, "inches")
  17632. },
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(4 + 11 / 12, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(70, "feet")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(1.5, "meters"),
  17649. weight: math.unit(68, "kg"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/liam-einarr/front.svg",
  17653. extra: 2822 / 2666
  17654. }
  17655. },
  17656. back: {
  17657. height: math.unit(1.5, "meters"),
  17658. weight: math.unit(68, "kg"),
  17659. name: "Back",
  17660. image: {
  17661. source: "./media/characters/liam-einarr/back.svg",
  17662. extra: 2822 / 2666,
  17663. bottom: 0.015
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(1.5, "meters"),
  17671. default: true
  17672. },
  17673. {
  17674. name: "Macro",
  17675. height: math.unit(150, "meters")
  17676. },
  17677. {
  17678. name: "Megamacro",
  17679. height: math.unit(35, "km")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6, "feet"),
  17688. weight: math.unit(75, "kg"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/linda/front.svg",
  17692. extra: 930 / 874,
  17693. bottom: 0.004
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(6, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(6 + 8 / 12, "feet"),
  17710. weight: math.unit(220, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/caylex/front.svg",
  17714. extra: 821 / 772,
  17715. bottom: 0.07
  17716. }
  17717. },
  17718. back: {
  17719. height: math.unit(6 + 8 / 12, "feet"),
  17720. weight: math.unit(220, "lb"),
  17721. name: "Back",
  17722. image: {
  17723. source: "./media/characters/caylex/back.svg",
  17724. extra: 821 / 772,
  17725. bottom: 0.022
  17726. }
  17727. },
  17728. hand: {
  17729. height: math.unit(1.25, "feet"),
  17730. name: "Hand",
  17731. image: {
  17732. source: "./media/characters/caylex/hand.svg"
  17733. }
  17734. },
  17735. foot: {
  17736. height: math.unit(1.6, "feet"),
  17737. name: "Foot",
  17738. image: {
  17739. source: "./media/characters/caylex/foot.svg"
  17740. }
  17741. },
  17742. armored: {
  17743. height: math.unit(6 + 8 / 12, "feet"),
  17744. weight: math.unit(250, "lb"),
  17745. name: "Armored",
  17746. image: {
  17747. source: "./media/characters/caylex/armored.svg",
  17748. extra: 1420 / 1310,
  17749. bottom: 0.045
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(6 + 8 / 12, "feet"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Normal+",
  17761. height: math.unit(12, "feet")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(7 + 6 / 12, "feet"),
  17770. weight: math.unit(288, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/alana/front.svg",
  17774. extra: 679 / 653,
  17775. bottom: 22.5 / 701
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(7 + 6 / 12, "feet")
  17783. },
  17784. {
  17785. name: "Large",
  17786. height: math.unit(50, "feet")
  17787. },
  17788. {
  17789. name: "Macro",
  17790. height: math.unit(100, "feet"),
  17791. default: true
  17792. },
  17793. {
  17794. name: "Macro+",
  17795. height: math.unit(200, "feet")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(6 + 1 / 12, "feet"),
  17804. weight: math.unit(210, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/hasani/front.svg",
  17808. extra: 244 / 232,
  17809. bottom: 0.01
  17810. }
  17811. },
  17812. back: {
  17813. height: math.unit(6 + 1 / 12, "feet"),
  17814. weight: math.unit(210, "lb"),
  17815. name: "Back",
  17816. image: {
  17817. source: "./media/characters/hasani/back.svg",
  17818. extra: 244 / 232,
  17819. bottom: 0.01
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(6 + 1 / 12, "feet")
  17827. },
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(175, "feet"),
  17831. default: true
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(1.82, "meters"),
  17840. weight: math.unit(140, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/nita/front.svg",
  17844. extra: 2473 / 2363,
  17845. bottom: 0.01
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(1.82, "m")
  17853. },
  17854. {
  17855. name: "Macro",
  17856. height: math.unit(300, "m")
  17857. },
  17858. {
  17859. name: "Mistake Canon",
  17860. height: math.unit(0.5, "miles"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Big Mistake",
  17865. height: math.unit(13, "miles")
  17866. },
  17867. {
  17868. name: "Playing God",
  17869. height: math.unit(2450, "miles")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(4, "feet"),
  17878. weight: math.unit(120, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/shiriko/front.svg",
  17882. extra: 970/934,
  17883. bottom: 5/975
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(4, "feet"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17897. {
  17898. front: {
  17899. height: math.unit(6, "feet"),
  17900. name: "front",
  17901. image: {
  17902. source: "./media/characters/deja/front.svg",
  17903. extra: 926 / 840,
  17904. bottom: 0.07
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Planck Length",
  17911. height: math.unit(1.6e-35, "meters")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(30.48, "meters"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Universal",
  17920. height: math.unit(8.8e26, "meters")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17926. {
  17927. side: {
  17928. height: math.unit(8, "feet"),
  17929. weight: math.unit(6300, "lb"),
  17930. name: "Side",
  17931. image: {
  17932. source: "./media/characters/anima/side.svg",
  17933. bottom: 0.035
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(8, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(8, "feet"),
  17950. weight: math.unit(350, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/bianca/front.svg",
  17954. extra: 234 / 225,
  17955. bottom: 0.03
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(8, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/adinia/front.svg",
  17976. extra: 1845 / 1672,
  17977. bottom: 0.02
  17978. }
  17979. },
  17980. back: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Back",
  17984. image: {
  17985. source: "./media/characters/adinia/back.svg",
  17986. extra: 1845 / 1672,
  17987. bottom: 0.002
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(11 + 5 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(3, "meters"),
  18004. weight: math.unit(200, "kg"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/lykasa/front.svg",
  18008. extra: 1076 / 976,
  18009. bottom: 0.06
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(3, "meters")
  18017. },
  18018. {
  18019. name: "Kaiju",
  18020. height: math.unit(120, "meters"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Mega Kaiju",
  18025. height: math.unit(240, "km")
  18026. },
  18027. {
  18028. name: "Giga Kaiju",
  18029. height: math.unit(400, "megameters")
  18030. },
  18031. {
  18032. name: "Tera Kaiju",
  18033. height: math.unit(800, "gigameters")
  18034. },
  18035. {
  18036. name: "Kaiju Dragon Goddess",
  18037. height: math.unit(26, "zettaparsecs")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18043. {
  18044. side: {
  18045. height: math.unit(283 / 124 * 6, "feet"),
  18046. weight: math.unit(35000, "lb"),
  18047. name: "Side",
  18048. image: {
  18049. source: "./media/characters/malfaren/side.svg",
  18050. extra: 1310/529,
  18051. bottom: 24/1334
  18052. }
  18053. },
  18054. front: {
  18055. height: math.unit(22.36, "feet"),
  18056. weight: math.unit(35000, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/malfaren/front.svg",
  18060. extra: 1237/1115,
  18061. bottom: 32/1269
  18062. }
  18063. },
  18064. maw: {
  18065. height: math.unit(6.9, "feet"),
  18066. name: "Maw",
  18067. image: {
  18068. source: "./media/characters/malfaren/maw.svg"
  18069. }
  18070. },
  18071. dick: {
  18072. height: math.unit(6.19, "feet"),
  18073. name: "Dick",
  18074. image: {
  18075. source: "./media/characters/malfaren/dick.svg"
  18076. }
  18077. },
  18078. eye: {
  18079. height: math.unit(0.69, "feet"),
  18080. name: "Eye",
  18081. image: {
  18082. source: "./media/characters/malfaren/eye.svg"
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Big",
  18089. height: math.unit(283 / 162 * 6, "feet"),
  18090. },
  18091. {
  18092. name: "Bigger",
  18093. height: math.unit(283 / 124 * 6, "feet")
  18094. },
  18095. {
  18096. name: "Massive",
  18097. height: math.unit(283 / 92 * 6, "feet"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "👀💦",
  18102. height: math.unit(283 / 73 * 6, "feet"),
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(1.7, "m"),
  18111. weight: math.unit(70, "kg"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/kernel/front.svg",
  18115. extra: 222 / 210,
  18116. bottom: 0.007
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Nano",
  18123. height: math.unit(17, "micrometers")
  18124. },
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(1.7, "mm")
  18128. },
  18129. {
  18130. name: "Small",
  18131. height: math.unit(1.7, "cm")
  18132. },
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(1.7, "m"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(1.75, "meters"),
  18145. weight: math.unit(65, "kg"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/jayne-folest/front.svg",
  18149. extra: 2115 / 2007,
  18150. bottom: 0.02
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(1.75, "meters"),
  18155. weight: math.unit(65, "kg"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/back.svg",
  18159. extra: 2115 / 2007,
  18160. bottom: 0.005
  18161. }
  18162. },
  18163. frontClothed: {
  18164. height: math.unit(1.75, "meters"),
  18165. weight: math.unit(65, "kg"),
  18166. name: "Front (Clothed)",
  18167. image: {
  18168. source: "./media/characters/jayne-folest/front-clothed.svg",
  18169. extra: 2115 / 2007,
  18170. bottom: 0.035
  18171. }
  18172. },
  18173. hand: {
  18174. height: math.unit(1 / 1.260, "feet"),
  18175. name: "Hand",
  18176. image: {
  18177. source: "./media/characters/jayne-folest/hand.svg"
  18178. }
  18179. },
  18180. foot: {
  18181. height: math.unit(1 / 0.918, "feet"),
  18182. name: "Foot",
  18183. image: {
  18184. source: "./media/characters/jayne-folest/foot.svg"
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Micro",
  18191. height: math.unit(4, "cm")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(1.75, "meters")
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(47.5, "meters"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(180, "cm"),
  18209. weight: math.unit(70, "kg"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/algier/front.svg",
  18213. extra: 596 / 572,
  18214. bottom: 0.04
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(180, "cm"),
  18219. weight: math.unit(70, "kg"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/algier/back.svg",
  18223. extra: 596 / 572,
  18224. bottom: 0.025
  18225. }
  18226. },
  18227. frontdressed: {
  18228. height: math.unit(180, "cm"),
  18229. weight: math.unit(150, "kg"),
  18230. name: "Front-dressed",
  18231. image: {
  18232. source: "./media/characters/algier/front-dressed.svg",
  18233. extra: 596 / 572,
  18234. bottom: 0.038
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(5, "cm")
  18242. },
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(180, "cm"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Macro",
  18250. height: math.unit(64, "m")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18256. {
  18257. upright: {
  18258. height: math.unit(7, "feet"),
  18259. weight: math.unit(300, "lb"),
  18260. name: "Upright",
  18261. image: {
  18262. source: "./media/characters/pretzel/upright.svg",
  18263. extra: 534 / 522,
  18264. bottom: 0.065
  18265. }
  18266. },
  18267. sprawling: {
  18268. height: math.unit(3.75, "feet"),
  18269. weight: math.unit(300, "lb"),
  18270. name: "Sprawling",
  18271. image: {
  18272. source: "./media/characters/pretzel/sprawling.svg",
  18273. extra: 314 / 281,
  18274. bottom: 0.1
  18275. }
  18276. },
  18277. tongue: {
  18278. height: math.unit(2, "feet"),
  18279. name: "Tongue",
  18280. image: {
  18281. source: "./media/characters/pretzel/tongue.svg"
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(7, "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Oversized",
  18293. height: math.unit(15, "feet")
  18294. },
  18295. {
  18296. name: "Huge",
  18297. height: math.unit(30, "feet")
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(250, "feet")
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18307. {
  18308. sideFront: {
  18309. height: math.unit(5 + 2 / 12, "feet"),
  18310. weight: math.unit(120, "lb"),
  18311. name: "Front Side",
  18312. image: {
  18313. source: "./media/characters/roxi/side-front.svg",
  18314. extra: 2924 / 2717,
  18315. bottom: 0.08
  18316. }
  18317. },
  18318. sideBack: {
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. weight: math.unit(120, "lb"),
  18321. name: "Back Side",
  18322. image: {
  18323. source: "./media/characters/roxi/side-back.svg",
  18324. extra: 2904 / 2693,
  18325. bottom: 0.06
  18326. }
  18327. },
  18328. front: {
  18329. height: math.unit(5 + 2 / 12, "feet"),
  18330. weight: math.unit(120, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/roxi/front.svg",
  18334. extra: 2028 / 1907,
  18335. bottom: 0.01
  18336. }
  18337. },
  18338. frontAlt: {
  18339. height: math.unit(5 + 2 / 12, "feet"),
  18340. weight: math.unit(120, "lb"),
  18341. name: "Front (Alt)",
  18342. image: {
  18343. source: "./media/characters/roxi/front-alt.svg",
  18344. extra: 1828 / 1798,
  18345. bottom: 0.01
  18346. }
  18347. },
  18348. sitting: {
  18349. height: math.unit(2.8, "feet"),
  18350. weight: math.unit(120, "lb"),
  18351. name: "Sitting",
  18352. image: {
  18353. source: "./media/characters/roxi/sitting.svg",
  18354. extra: 2660 / 2462,
  18355. bottom: 0.1
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(5 + 2 / 12, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18369. {
  18370. side: {
  18371. height: math.unit(55, "feet"),
  18372. weight: math.unit(153, "tons"),
  18373. name: "Side",
  18374. image: {
  18375. source: "./media/characters/shadow/side.svg",
  18376. extra: 701 / 628,
  18377. bottom: 0.02
  18378. }
  18379. },
  18380. flying: {
  18381. height: math.unit(145, "feet"),
  18382. weight: math.unit(153, "tons"),
  18383. name: "Flying",
  18384. image: {
  18385. source: "./media/characters/shadow/flying.svg"
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Normal",
  18392. height: math.unit(55, "feet"),
  18393. default: true
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(6, "feet"),
  18402. weight: math.unit(200, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/marcie/front.svg",
  18406. extra: 960 / 876,
  18407. bottom: 58 / 1017.87
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Macro",
  18414. height: math.unit(1, "mile"),
  18415. default: true
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(7, "feet"),
  18424. weight: math.unit(200, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/kachina/front.svg",
  18428. extra: 1290.68 / 1119,
  18429. bottom: 36.5 / 1327.18
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(7, "feet"),
  18437. default: true
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18443. {
  18444. looking: {
  18445. height: math.unit(2, "meters"),
  18446. weight: math.unit(300, "kg"),
  18447. name: "Looking",
  18448. image: {
  18449. source: "./media/characters/kash/looking.svg",
  18450. extra: 474 / 344,
  18451. bottom: 0.03
  18452. }
  18453. },
  18454. side: {
  18455. height: math.unit(2, "meters"),
  18456. weight: math.unit(300, "kg"),
  18457. name: "Side",
  18458. image: {
  18459. source: "./media/characters/kash/side.svg",
  18460. extra: 302 / 251,
  18461. bottom: 0.03
  18462. }
  18463. },
  18464. front: {
  18465. height: math.unit(2, "meters"),
  18466. weight: math.unit(300, "kg"),
  18467. name: "Front",
  18468. image: {
  18469. source: "./media/characters/kash/front.svg",
  18470. extra: 495 / 360,
  18471. bottom: 0.015
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(2, "meters"),
  18479. default: true
  18480. },
  18481. {
  18482. name: "Big",
  18483. height: math.unit(3, "meters")
  18484. },
  18485. {
  18486. name: "Large",
  18487. height: math.unit(5, "meters")
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18493. {
  18494. feeding: {
  18495. height: math.unit(6.7, "feet"),
  18496. weight: math.unit(350, "lb"),
  18497. name: "Feeding",
  18498. image: {
  18499. source: "./media/characters/lalim/feeding.svg",
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(6.7, "feet"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/de'vout/front.svg",
  18520. extra: 1443 / 1328,
  18521. bottom: 0.025
  18522. }
  18523. },
  18524. back: {
  18525. height: math.unit(9.5, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Back",
  18528. image: {
  18529. source: "./media/characters/de'vout/back.svg",
  18530. extra: 1443 / 1328
  18531. }
  18532. },
  18533. frontDressed: {
  18534. height: math.unit(9.5, "feet"),
  18535. weight: math.unit(600, "lb"),
  18536. name: "Front (Dressed",
  18537. image: {
  18538. source: "./media/characters/de'vout/front-dressed.svg",
  18539. extra: 1443 / 1328,
  18540. bottom: 0.025
  18541. }
  18542. },
  18543. backDressed: {
  18544. height: math.unit(9.5, "feet"),
  18545. weight: math.unit(600, "lb"),
  18546. name: "Back (Dressed",
  18547. image: {
  18548. source: "./media/characters/de'vout/back-dressed.svg",
  18549. extra: 1443 / 1328
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(9.5, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(8, "feet"),
  18566. weight: math.unit(225, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/talana/front.svg",
  18570. extra: 1410 / 1300,
  18571. bottom: 0.015
  18572. }
  18573. },
  18574. frontDressed: {
  18575. height: math.unit(8, "feet"),
  18576. weight: math.unit(225, "lb"),
  18577. name: "Front (Dressed",
  18578. image: {
  18579. source: "./media/characters/talana/front-dressed.svg",
  18580. extra: 1410 / 1300,
  18581. bottom: 0.015
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(8, "feet"),
  18589. default: true
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18595. {
  18596. side: {
  18597. height: math.unit(7.2, "feet"),
  18598. weight: math.unit(150, "lb"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/xeauvok/side.svg",
  18602. extra: 1975 / 1523,
  18603. bottom: 0.07
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(7.2, "feet"),
  18611. default: true
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18617. {
  18618. side: {
  18619. height: math.unit(10, "feet"),
  18620. weight: math.unit(900, "kg"),
  18621. name: "Side",
  18622. image: {
  18623. source: "./media/characters/zara/side.svg",
  18624. extra: 504 / 498
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(10, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18638. {
  18639. side: {
  18640. height: math.unit(6, "feet"),
  18641. weight: math.unit(150, "lb"),
  18642. name: "Side",
  18643. image: {
  18644. source: "./media/characters/richard-dragon/side.svg",
  18645. extra: 845 / 340,
  18646. bottom: 0.017
  18647. }
  18648. },
  18649. maw: {
  18650. height: math.unit(2.97, "feet"),
  18651. name: "Maw",
  18652. image: {
  18653. source: "./media/characters/richard-dragon/maw.svg"
  18654. }
  18655. },
  18656. },
  18657. [
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(4, "feet"),
  18665. weight: math.unit(100, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/richard-smeargle/front.svg",
  18669. extra: 2952 / 2820,
  18670. bottom: 0.028
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Normal",
  18677. height: math.unit(4, "feet"),
  18678. default: true
  18679. },
  18680. {
  18681. name: "Dynamax",
  18682. height: math.unit(20, "meters")
  18683. },
  18684. ]
  18685. ))
  18686. characterMakers.push(() => makeCharacter(
  18687. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18688. {
  18689. front: {
  18690. height: math.unit(6, "feet"),
  18691. weight: math.unit(110, "lb"),
  18692. name: "Front",
  18693. image: {
  18694. source: "./media/characters/klay/front.svg",
  18695. extra: 962 / 883,
  18696. bottom: 0.04
  18697. }
  18698. },
  18699. back: {
  18700. height: math.unit(6, "feet"),
  18701. weight: math.unit(110, "lb"),
  18702. name: "Back",
  18703. image: {
  18704. source: "./media/characters/klay/back.svg",
  18705. extra: 962 / 883
  18706. }
  18707. },
  18708. beans: {
  18709. height: math.unit(1.15, "feet"),
  18710. name: "Beans",
  18711. image: {
  18712. source: "./media/characters/klay/beans.svg"
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Micro",
  18719. height: math.unit(6, "inches")
  18720. },
  18721. {
  18722. name: "Mini",
  18723. height: math.unit(3, "feet")
  18724. },
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(6, "feet"),
  18728. default: true
  18729. },
  18730. {
  18731. name: "Big",
  18732. height: math.unit(25, "feet")
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(100, "feet")
  18737. },
  18738. {
  18739. name: "Megamacro",
  18740. height: math.unit(400, "feet")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(6, "feet"),
  18749. weight: math.unit(160, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/marcus/front.svg",
  18753. extra: 734 / 676,
  18754. bottom: 0.03
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Little",
  18761. height: math.unit(6, "feet")
  18762. },
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(110, "feet"),
  18766. default: true
  18767. },
  18768. {
  18769. name: "Macro",
  18770. height: math.unit(250, "feet")
  18771. },
  18772. {
  18773. name: "Megamacro",
  18774. height: math.unit(1000, "feet")
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18780. {
  18781. front: {
  18782. height: math.unit(7, "feet"),
  18783. weight: math.unit(275, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/claude-delroute/front.svg",
  18787. extra: 902/827,
  18788. bottom: 26/928
  18789. }
  18790. },
  18791. side: {
  18792. height: math.unit(7, "feet"),
  18793. weight: math.unit(275, "lb"),
  18794. name: "Side",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/side.svg",
  18797. extra: 908/853,
  18798. bottom: 16/924
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(7, "feet"),
  18803. weight: math.unit(275, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/claude-delroute/back.svg",
  18807. extra: 911/829,
  18808. bottom: 18/929
  18809. }
  18810. },
  18811. maw: {
  18812. height: math.unit(0.6407, "meters"),
  18813. name: "Maw",
  18814. image: {
  18815. source: "./media/characters/claude-delroute/maw.svg"
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(7, "feet"),
  18823. default: true
  18824. },
  18825. {
  18826. name: "Lorge",
  18827. height: math.unit(20, "feet")
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18833. {
  18834. front: {
  18835. height: math.unit(8 + 4 / 12, "feet"),
  18836. weight: math.unit(600, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/dragonien/front.svg",
  18840. extra: 100 / 94,
  18841. bottom: 3.3 / 103.3445
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(8 + 4 / 12, "feet"),
  18846. weight: math.unit(600, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/dragonien/back.svg",
  18850. extra: 776 / 746,
  18851. bottom: 6.4 / 782.0616
  18852. }
  18853. },
  18854. foot: {
  18855. height: math.unit(1.54, "feet"),
  18856. name: "Foot",
  18857. image: {
  18858. source: "./media/characters/dragonien/foot.svg",
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Normal",
  18865. height: math.unit(8 + 4 / 12, "feet"),
  18866. default: true
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(200, "feet")
  18871. },
  18872. {
  18873. name: "Megamacro",
  18874. height: math.unit(1, "mile")
  18875. },
  18876. {
  18877. name: "Gigamacro",
  18878. height: math.unit(1000, "miles")
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 2 / 12, "feet"),
  18887. weight: math.unit(110, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/desta/front.svg",
  18891. extra: 767 / 726,
  18892. bottom: 11.7 / 779
  18893. }
  18894. },
  18895. back: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Back",
  18899. image: {
  18900. source: "./media/characters/desta/back.svg",
  18901. extra: 777 / 728,
  18902. bottom: 6 / 784
  18903. }
  18904. },
  18905. frontAlt: {
  18906. height: math.unit(5 + 2 / 12, "feet"),
  18907. weight: math.unit(110, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/desta/front-alt.svg",
  18911. extra: 1482 / 1417
  18912. }
  18913. },
  18914. side: {
  18915. height: math.unit(5 + 2 / 12, "feet"),
  18916. weight: math.unit(110, "lb"),
  18917. name: "Side",
  18918. image: {
  18919. source: "./media/characters/desta/side.svg",
  18920. extra: 2579 / 2491,
  18921. bottom: 0.053
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Micro",
  18928. height: math.unit(6, "inches")
  18929. },
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(5 + 2 / 12, "feet"),
  18933. default: true
  18934. },
  18935. {
  18936. name: "Macro",
  18937. height: math.unit(62, "feet")
  18938. },
  18939. {
  18940. name: "Megamacro",
  18941. height: math.unit(1800, "feet")
  18942. },
  18943. ]
  18944. ))
  18945. characterMakers.push(() => makeCharacter(
  18946. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18947. {
  18948. front: {
  18949. height: math.unit(10, "feet"),
  18950. weight: math.unit(700, "lb"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/storm-alystar/front.svg",
  18954. extra: 2112 / 1898,
  18955. bottom: 0.034
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Micro",
  18962. height: math.unit(3.5, "inches")
  18963. },
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(10, "feet"),
  18967. default: true
  18968. },
  18969. {
  18970. name: "Macro",
  18971. height: math.unit(400, "feet")
  18972. },
  18973. {
  18974. name: "Deific",
  18975. height: math.unit(60, "miles")
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(2.35, "meters"),
  18984. weight: math.unit(119, "kg"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/ilia/front.svg",
  18988. extra: 1285 / 1255,
  18989. bottom: 0.06
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(2.35, "meters")
  18997. },
  18998. {
  18999. name: "Macro",
  19000. height: math.unit(140, "meters"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Megamacro",
  19005. height: math.unit(100, "miles")
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(6 + 5 / 12, "feet"),
  19014. weight: math.unit(190, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/kingdead/front.svg",
  19018. extra: 1228 / 1177
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Micro",
  19025. height: math.unit(7, "inches")
  19026. },
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(6 + 5 / 12, "feet")
  19030. },
  19031. {
  19032. name: "Macro",
  19033. height: math.unit(150, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Megamacro",
  19038. height: math.unit(200, "miles")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(8, "feet"),
  19047. weight: math.unit(600, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/kyrehx/front.svg",
  19051. extra: 1195 / 1095,
  19052. bottom: 0.034
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Micro",
  19059. height: math.unit(2, "inches")
  19060. },
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(8, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Macro",
  19068. height: math.unit(255, "feet")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19077. weight: math.unit(184, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/xang/front.svg",
  19081. extra: 845 / 755
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19089. default: true
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(0.935 * 146, "feet")
  19094. },
  19095. {
  19096. name: "Megamacro",
  19097. height: math.unit(0.935 * 3, "miles")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19103. {
  19104. frontDressed: {
  19105. height: math.unit(5 + 7 / 12, "feet"),
  19106. weight: math.unit(140, "lb"),
  19107. name: "Front (Dressed)",
  19108. image: {
  19109. source: "./media/characters/doc-weardno/front-dressed.svg",
  19110. extra: 263 / 234
  19111. }
  19112. },
  19113. backDressed: {
  19114. height: math.unit(5 + 7 / 12, "feet"),
  19115. weight: math.unit(140, "lb"),
  19116. name: "Back (Dressed)",
  19117. image: {
  19118. source: "./media/characters/doc-weardno/back-dressed.svg",
  19119. extra: 266 / 238
  19120. }
  19121. },
  19122. front: {
  19123. height: math.unit(5 + 7 / 12, "feet"),
  19124. weight: math.unit(140, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/doc-weardno/front.svg",
  19128. extra: 254 / 233
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Micro",
  19135. height: math.unit(3, "inches")
  19136. },
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(5 + 7 / 12, "feet"),
  19140. default: true
  19141. },
  19142. {
  19143. name: "Macro",
  19144. height: math.unit(25, "feet")
  19145. },
  19146. {
  19147. name: "Megamacro",
  19148. height: math.unit(2, "miles")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6 + 2 / 12, "feet"),
  19157. weight: math.unit(153, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/seth-whilst/front.svg",
  19161. bottom: 0.07
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(5, "inches")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(6 + 2 / 12, "feet"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(3, "inches"),
  19182. weight: math.unit(8, "grams"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/pocket-jabari/front.svg",
  19186. extra: 1024 / 974,
  19187. bottom: 0.039
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Minimicro",
  19194. height: math.unit(8, "mm")
  19195. },
  19196. {
  19197. name: "Micro",
  19198. height: math.unit(3, "inches"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(3, "feet")
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19209. {
  19210. frontDressed: {
  19211. height: math.unit(15, "feet"),
  19212. weight: math.unit(3280, "lb"),
  19213. name: "Front (Dressed)",
  19214. image: {
  19215. source: "./media/characters/sapphy/front-dressed.svg",
  19216. extra: 1951/1654,
  19217. bottom: 194/2145
  19218. },
  19219. form: "anthro",
  19220. default: true
  19221. },
  19222. backDressed: {
  19223. height: math.unit(15, "feet"),
  19224. weight: math.unit(3280, "lb"),
  19225. name: "Back (Dressed)",
  19226. image: {
  19227. source: "./media/characters/sapphy/back-dressed.svg",
  19228. extra: 2058/1918,
  19229. bottom: 125/2183
  19230. },
  19231. form: "anthro"
  19232. },
  19233. frontNude: {
  19234. height: math.unit(15, "feet"),
  19235. weight: math.unit(3280, "lb"),
  19236. name: "Front (Nude)",
  19237. image: {
  19238. source: "./media/characters/sapphy/front-nude.svg",
  19239. extra: 1951/1654,
  19240. bottom: 194/2145
  19241. },
  19242. form: "anthro"
  19243. },
  19244. backNude: {
  19245. height: math.unit(15, "feet"),
  19246. weight: math.unit(3280, "lb"),
  19247. name: "Back (Nude)",
  19248. image: {
  19249. source: "./media/characters/sapphy/back-nude.svg",
  19250. extra: 2058/1918,
  19251. bottom: 125/2183
  19252. },
  19253. form: "anthro"
  19254. },
  19255. full: {
  19256. height: math.unit(15, "feet"),
  19257. weight: math.unit(3280, "lb"),
  19258. name: "Full",
  19259. image: {
  19260. source: "./media/characters/sapphy/full.svg",
  19261. extra: 1396/1317,
  19262. bottom: 44/1440
  19263. },
  19264. form: "anthro"
  19265. },
  19266. dick: {
  19267. height: math.unit(3.8, "feet"),
  19268. name: "Dick",
  19269. image: {
  19270. source: "./media/characters/sapphy/dick.svg"
  19271. },
  19272. form: "anthro"
  19273. },
  19274. feral: {
  19275. height: math.unit(35, "feet"),
  19276. weight: math.unit(160, "tons"),
  19277. name: "Feral",
  19278. image: {
  19279. source: "./media/characters/sapphy/feral.svg",
  19280. extra: 1050/573,
  19281. bottom: 60/1110
  19282. },
  19283. form: "feral",
  19284. default: true
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(15, "feet"),
  19291. form: "anthro"
  19292. },
  19293. {
  19294. name: "Casual Macro",
  19295. height: math.unit(120, "feet"),
  19296. form: "anthro"
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(2150, "feet"),
  19301. default: true,
  19302. form: "anthro"
  19303. },
  19304. {
  19305. name: "Megamacro",
  19306. height: math.unit(8, "miles"),
  19307. form: "anthro"
  19308. },
  19309. {
  19310. name: "Galaxy Mom",
  19311. height: math.unit(6, "megalightyears"),
  19312. form: "anthro"
  19313. },
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(35, "feet"),
  19317. form: "feral",
  19318. default: true
  19319. },
  19320. {
  19321. name: "Macro",
  19322. height: math.unit(300, "feet"),
  19323. form: "feral"
  19324. },
  19325. {
  19326. name: "Galaxy Mom",
  19327. height: math.unit(10, "megalightyears"),
  19328. form: "feral"
  19329. },
  19330. ],
  19331. {
  19332. "anthro": {
  19333. name: "Anthro",
  19334. default: true
  19335. },
  19336. "feral": {
  19337. name: "Feral"
  19338. }
  19339. }
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(6, "feet"),
  19346. weight: math.unit(170, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/kiro/front.svg",
  19350. extra: 1064 / 1012,
  19351. bottom: 0.052
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Micro",
  19358. height: math.unit(6, "inches")
  19359. },
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(6, "feet"),
  19363. default: true
  19364. },
  19365. {
  19366. name: "Macro",
  19367. height: math.unit(72, "feet")
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(5 + 9 / 12, "feet"),
  19376. weight: math.unit(175, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/irishfox/front.svg",
  19380. extra: 1912 / 1680,
  19381. bottom: 0.02
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Nano",
  19388. height: math.unit(1, "mm")
  19389. },
  19390. {
  19391. name: "Micro",
  19392. height: math.unit(2, "inches")
  19393. },
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(5 + 9 / 12, "feet"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(45, "feet")
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(6 + 1 / 12, "feet"),
  19410. weight: math.unit(75, "lb"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/aronai-sieyes/front.svg",
  19414. extra: 1532/1450,
  19415. bottom: 42/1574
  19416. }
  19417. },
  19418. side: {
  19419. height: math.unit(6 + 1 / 12, "feet"),
  19420. weight: math.unit(75, "lb"),
  19421. name: "Side",
  19422. image: {
  19423. source: "./media/characters/aronai-sieyes/side.svg",
  19424. extra: 1422/1365,
  19425. bottom: 148/1570
  19426. }
  19427. },
  19428. back: {
  19429. height: math.unit(6 + 1 / 12, "feet"),
  19430. weight: math.unit(75, "lb"),
  19431. name: "Back",
  19432. image: {
  19433. source: "./media/characters/aronai-sieyes/back.svg",
  19434. extra: 1526/1464,
  19435. bottom: 51/1577
  19436. }
  19437. },
  19438. dressed: {
  19439. height: math.unit(6 + 1 / 12, "feet"),
  19440. weight: math.unit(75, "lb"),
  19441. name: "Dressed",
  19442. image: {
  19443. source: "./media/characters/aronai-sieyes/dressed.svg",
  19444. extra: 1559/1483,
  19445. bottom: 39/1598
  19446. }
  19447. },
  19448. slit: {
  19449. height: math.unit(1.3, "feet"),
  19450. name: "Slit",
  19451. image: {
  19452. source: "./media/characters/aronai-sieyes/slit.svg"
  19453. }
  19454. },
  19455. slitSpread: {
  19456. height: math.unit(0.9, "feet"),
  19457. name: "Slit (Spread)",
  19458. image: {
  19459. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19460. }
  19461. },
  19462. rump: {
  19463. height: math.unit(1.3, "feet"),
  19464. name: "Rump",
  19465. image: {
  19466. source: "./media/characters/aronai-sieyes/rump.svg"
  19467. }
  19468. },
  19469. maw: {
  19470. height: math.unit(1.25, "feet"),
  19471. name: "Maw",
  19472. image: {
  19473. source: "./media/characters/aronai-sieyes/maw.svg"
  19474. }
  19475. },
  19476. feral: {
  19477. height: math.unit(18, "feet"),
  19478. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19479. name: "Feral",
  19480. image: {
  19481. source: "./media/characters/aronai-sieyes/feral.svg",
  19482. extra: 1530 / 1240,
  19483. bottom: 0.035
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Micro",
  19490. height: math.unit(2, "inches")
  19491. },
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(6 + 1 / 12, "feet"),
  19495. default: true
  19496. }
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(12, "feet"),
  19504. weight: math.unit(410, "kg"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/xuna/front.svg",
  19508. extra: 2184 / 1980
  19509. }
  19510. },
  19511. side: {
  19512. height: math.unit(12, "feet"),
  19513. weight: math.unit(410, "kg"),
  19514. name: "Side",
  19515. image: {
  19516. source: "./media/characters/xuna/side.svg",
  19517. extra: 2184 / 1980
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(12, "feet"),
  19522. weight: math.unit(410, "kg"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/xuna/back.svg",
  19526. extra: 2184 / 1980
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Nano glow",
  19533. height: math.unit(10, "nm")
  19534. },
  19535. {
  19536. name: "Micro floof",
  19537. height: math.unit(0.3, "m")
  19538. },
  19539. {
  19540. name: "Huggable softy boi",
  19541. height: math.unit(3.6576, "m"),
  19542. default: true
  19543. },
  19544. {
  19545. name: "Admirable floof",
  19546. height: math.unit(80, "meters")
  19547. },
  19548. {
  19549. name: "Gentle macro",
  19550. height: math.unit(300, "meters")
  19551. },
  19552. {
  19553. name: "Very careful floof",
  19554. height: math.unit(3200, "meters")
  19555. },
  19556. {
  19557. name: "The mega floof",
  19558. height: math.unit(36000, "meters")
  19559. },
  19560. {
  19561. name: "Giga-fur-Wicker",
  19562. height: math.unit(4800000, "meters")
  19563. },
  19564. {
  19565. name: "Licky world",
  19566. height: math.unit(20000000, "meters")
  19567. },
  19568. {
  19569. name: "Floofy cyan sun",
  19570. height: math.unit(1500000000, "meters")
  19571. },
  19572. {
  19573. name: "Milky Wicker",
  19574. height: math.unit(1000000000000000000000, "meters")
  19575. },
  19576. {
  19577. name: "The observing Wicker",
  19578. height: math.unit(999999999999999999999999999, "meters")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(5 + 9 / 12, "feet"),
  19587. weight: math.unit(150, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/arokha-sieyes/front.svg",
  19591. extra: 1425 / 1284,
  19592. bottom: 0.05
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(5 + 9 / 12, "feet")
  19600. },
  19601. {
  19602. name: "Macro",
  19603. height: math.unit(30, "meters"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6, "feet"),
  19613. weight: math.unit(180, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/arokh-sieyes/front.svg",
  19617. extra: 1830 / 1769,
  19618. bottom: 0.01
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6, "feet")
  19626. },
  19627. {
  19628. name: "Macro",
  19629. height: math.unit(30, "meters"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19636. {
  19637. side: {
  19638. height: math.unit(13 + 1 / 12, "feet"),
  19639. weight: math.unit(8.5, "tonnes"),
  19640. name: "Side",
  19641. image: {
  19642. source: "./media/characters/goldeneye/side.svg",
  19643. extra: 1182 / 778,
  19644. bottom: 0.067
  19645. }
  19646. },
  19647. paw: {
  19648. height: math.unit(3.4, "feet"),
  19649. name: "Paw",
  19650. image: {
  19651. source: "./media/characters/goldeneye/paw.svg"
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(13 + 1 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19665. {
  19666. front: {
  19667. height: math.unit(6 + 1 / 12, "feet"),
  19668. weight: math.unit(210, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/leonardo-lycheborne/front.svg",
  19672. extra: 776/723,
  19673. bottom: 34/810
  19674. }
  19675. },
  19676. side: {
  19677. height: math.unit(6 + 1 / 12, "feet"),
  19678. weight: math.unit(210, "lb"),
  19679. name: "Side",
  19680. image: {
  19681. source: "./media/characters/leonardo-lycheborne/side.svg",
  19682. extra: 780/728,
  19683. bottom: 12/792
  19684. }
  19685. },
  19686. back: {
  19687. height: math.unit(6 + 1 / 12, "feet"),
  19688. weight: math.unit(210, "lb"),
  19689. name: "Back",
  19690. image: {
  19691. source: "./media/characters/leonardo-lycheborne/back.svg",
  19692. extra: 775/721,
  19693. bottom: 17/792
  19694. }
  19695. },
  19696. hand: {
  19697. height: math.unit(1.08, "feet"),
  19698. name: "Hand",
  19699. image: {
  19700. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19701. }
  19702. },
  19703. foot: {
  19704. height: math.unit(1.32, "feet"),
  19705. name: "Foot",
  19706. image: {
  19707. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19708. }
  19709. },
  19710. maw: {
  19711. height: math.unit(1, "feet"),
  19712. name: "Maw",
  19713. image: {
  19714. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19715. }
  19716. },
  19717. were: {
  19718. height: math.unit(20, "feet"),
  19719. weight: math.unit(7800, "lb"),
  19720. name: "Were",
  19721. image: {
  19722. source: "./media/characters/leonardo-lycheborne/were.svg",
  19723. extra: 1224/1165,
  19724. bottom: 72/1296
  19725. }
  19726. },
  19727. feral: {
  19728. height: math.unit(7.5, "feet"),
  19729. weight: math.unit(600, "lb"),
  19730. name: "Feral",
  19731. image: {
  19732. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19733. extra: 797/702,
  19734. bottom: 139/936
  19735. }
  19736. },
  19737. taur: {
  19738. height: math.unit(11, "feet"),
  19739. weight: math.unit(3300, "lb"),
  19740. name: "Taur",
  19741. image: {
  19742. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19743. extra: 1271/1197,
  19744. bottom: 47/1318
  19745. }
  19746. },
  19747. barghest: {
  19748. height: math.unit(11, "feet"),
  19749. weight: math.unit(1300, "lb"),
  19750. name: "Barghest",
  19751. image: {
  19752. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19753. extra: 1291/1204,
  19754. bottom: 37/1328
  19755. }
  19756. },
  19757. dick: {
  19758. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19759. name: "Dick",
  19760. image: {
  19761. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19762. }
  19763. },
  19764. dickWere: {
  19765. height: math.unit((20) / 3.8, "feet"),
  19766. name: "Dick (Were)",
  19767. image: {
  19768. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(6 + 1 / 12, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(10, "feet"),
  19785. weight: math.unit(350, "lb"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/jet/front.svg",
  19789. extra: 2050 / 1980,
  19790. bottom: 0.013
  19791. }
  19792. },
  19793. back: {
  19794. height: math.unit(10, "feet"),
  19795. weight: math.unit(350, "lb"),
  19796. name: "Back",
  19797. image: {
  19798. source: "./media/characters/jet/back.svg",
  19799. extra: 2050 / 1980,
  19800. bottom: 0.013
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Micro",
  19807. height: math.unit(6, "inches")
  19808. },
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(10, "feet"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(100, "feet")
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19822. {
  19823. front: {
  19824. height: math.unit(15, "feet"),
  19825. weight: math.unit(2800, "lb"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/tanarath/front.svg",
  19829. extra: 2392 / 2220,
  19830. bottom: 0.03
  19831. }
  19832. },
  19833. back: {
  19834. height: math.unit(15, "feet"),
  19835. weight: math.unit(2800, "lb"),
  19836. name: "Back",
  19837. image: {
  19838. source: "./media/characters/tanarath/back.svg",
  19839. extra: 2392 / 2220,
  19840. bottom: 0.03
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Normal",
  19847. height: math.unit(15, "feet"),
  19848. default: true
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(7 + 1 / 12, "feet"),
  19857. weight: math.unit(175, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/patty-cattybatty/front.svg",
  19861. extra: 908 / 874,
  19862. bottom: 0.025
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Micro",
  19869. height: math.unit(1, "inch")
  19870. },
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(7 + 1 / 12, "feet")
  19874. },
  19875. {
  19876. name: "Mini Macro",
  19877. height: math.unit(155, "feet")
  19878. },
  19879. {
  19880. name: "Macro",
  19881. height: math.unit(1077, "feet")
  19882. },
  19883. {
  19884. name: "Mega Macro",
  19885. height: math.unit(47650, "feet"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Giga Macro",
  19890. height: math.unit(440, "miles")
  19891. },
  19892. {
  19893. name: "Tera Macro",
  19894. height: math.unit(8700, "miles")
  19895. },
  19896. {
  19897. name: "Planetary Macro",
  19898. height: math.unit(32700, "miles")
  19899. },
  19900. {
  19901. name: "Solar Macro",
  19902. height: math.unit(550000, "miles")
  19903. },
  19904. {
  19905. name: "Celestial Macro",
  19906. height: math.unit(2.5, "AU")
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(4 + 5 / 12, "feet"),
  19915. weight: math.unit(90, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/cappu/front.svg",
  19919. extra: 1247 / 1152,
  19920. bottom: 0.012
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(4 + 5 / 12, "feet"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19934. {
  19935. frontDressed: {
  19936. height: math.unit(70, "cm"),
  19937. weight: math.unit(6, "kg"),
  19938. name: "Front (Dressed)",
  19939. image: {
  19940. source: "./media/characters/sebi/front-dressed.svg",
  19941. extra: 713.5 / 686.5,
  19942. bottom: 0.003
  19943. }
  19944. },
  19945. front: {
  19946. height: math.unit(70, "cm"),
  19947. weight: math.unit(5, "kg"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/sebi/front.svg",
  19951. extra: 713.5 / 686.5,
  19952. bottom: 0.003
  19953. }
  19954. }
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(70, "cm"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Macro",
  19964. height: math.unit(8, "meters")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6, "feet"),
  19973. weight: math.unit(150, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/typhek/front.svg",
  19977. extra: 1948 / 1929,
  19978. bottom: 0.025
  19979. }
  19980. },
  19981. side: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(150, "lb"),
  19984. name: "Side",
  19985. image: {
  19986. source: "./media/characters/typhek/side.svg",
  19987. extra: 2034 / 2010,
  19988. bottom: 0.003
  19989. }
  19990. },
  19991. back: {
  19992. height: math.unit(6, "feet"),
  19993. weight: math.unit(150, "lb"),
  19994. name: "Back",
  19995. image: {
  19996. source: "./media/characters/typhek/back.svg",
  19997. extra: 2005 / 1978,
  19998. bottom: 0.004
  19999. }
  20000. },
  20001. palm: {
  20002. height: math.unit(1.2, "feet"),
  20003. name: "Palm",
  20004. image: {
  20005. source: "./media/characters/typhek/palm.svg"
  20006. }
  20007. },
  20008. fist: {
  20009. height: math.unit(1.1, "feet"),
  20010. name: "Fist",
  20011. image: {
  20012. source: "./media/characters/typhek/fist.svg"
  20013. }
  20014. },
  20015. foot: {
  20016. height: math.unit(1.57, "feet"),
  20017. name: "Foot",
  20018. image: {
  20019. source: "./media/characters/typhek/foot.svg"
  20020. }
  20021. },
  20022. sole: {
  20023. height: math.unit(2.05, "feet"),
  20024. name: "Sole",
  20025. image: {
  20026. source: "./media/characters/typhek/sole.svg"
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Macro",
  20033. height: math.unit(40, "stories"),
  20034. default: true
  20035. },
  20036. {
  20037. name: "Megamacro",
  20038. height: math.unit(1, "mile")
  20039. },
  20040. {
  20041. name: "Gigamacro",
  20042. height: math.unit(4000, "solarradii")
  20043. },
  20044. {
  20045. name: "Universal",
  20046. height: math.unit(1.1, "universes")
  20047. }
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20052. {
  20053. side: {
  20054. height: math.unit(5 + 7 / 12, "feet"),
  20055. weight: math.unit(150, "lb"),
  20056. name: "Side",
  20057. image: {
  20058. source: "./media/characters/kassy/side.svg",
  20059. extra: 1280 / 1225,
  20060. bottom: 0.002
  20061. }
  20062. },
  20063. front: {
  20064. height: math.unit(5 + 7 / 12, "feet"),
  20065. weight: math.unit(150, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/kassy/front.svg",
  20069. extra: 1280 / 1225,
  20070. bottom: 0.025
  20071. }
  20072. },
  20073. back: {
  20074. height: math.unit(5 + 7 / 12, "feet"),
  20075. weight: math.unit(150, "lb"),
  20076. name: "Back",
  20077. image: {
  20078. source: "./media/characters/kassy/back.svg",
  20079. extra: 1280 / 1225,
  20080. bottom: 0.002
  20081. }
  20082. },
  20083. foot: {
  20084. height: math.unit(1.266, "feet"),
  20085. name: "Foot",
  20086. image: {
  20087. source: "./media/characters/kassy/foot.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(5 + 7 / 12, "feet")
  20095. },
  20096. {
  20097. name: "Macro",
  20098. height: math.unit(137, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Megamacro",
  20103. height: math.unit(1, "mile")
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(6 + 1 / 12, "feet"),
  20112. weight: math.unit(200, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/neil/front.svg",
  20116. extra: 1326 / 1250,
  20117. bottom: 0.023
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(6 + 1 / 12, "feet"),
  20125. default: true
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(200, "feet")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(5 + 9 / 12, "feet"),
  20138. weight: math.unit(190, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/atticus/front.svg",
  20142. extra: 2934 / 2785,
  20143. bottom: 0.025
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(5 + 9 / 12, "feet"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Macro",
  20155. height: math.unit(180, "feet")
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20161. {
  20162. side: {
  20163. height: math.unit(9, "feet"),
  20164. weight: math.unit(650, "lb"),
  20165. name: "Side",
  20166. image: {
  20167. source: "./media/characters/milo/side.svg",
  20168. extra: 2644 / 2310,
  20169. bottom: 0.032
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(9, "feet"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(300, "feet")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20187. {
  20188. side: {
  20189. height: math.unit(8, "meters"),
  20190. weight: math.unit(90000, "kg"),
  20191. name: "Side",
  20192. image: {
  20193. source: "./media/characters/ijzer/side.svg",
  20194. extra: 2756 / 1600,
  20195. bottom: 0.01
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Small",
  20202. height: math.unit(3, "meters")
  20203. },
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(8, "meters"),
  20207. default: true
  20208. },
  20209. {
  20210. name: "Normal+",
  20211. height: math.unit(10, "meters")
  20212. },
  20213. {
  20214. name: "Bigger",
  20215. height: math.unit(24, "meters")
  20216. },
  20217. {
  20218. name: "Huge",
  20219. height: math.unit(80, "meters")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(6 + 2 / 12, "feet"),
  20228. weight: math.unit(153, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/luca-cervicum/front.svg",
  20232. extra: 370 / 327,
  20233. bottom: 0.015
  20234. }
  20235. },
  20236. back: {
  20237. height: math.unit(6 + 2 / 12, "feet"),
  20238. weight: math.unit(153, "lb"),
  20239. name: "Back",
  20240. image: {
  20241. source: "./media/characters/luca-cervicum/back.svg",
  20242. extra: 367 / 333,
  20243. bottom: 0.005
  20244. }
  20245. },
  20246. frontGear: {
  20247. height: math.unit(6 + 2 / 12, "feet"),
  20248. weight: math.unit(173, "lb"),
  20249. name: "Front (Gear)",
  20250. image: {
  20251. source: "./media/characters/luca-cervicum/front-gear.svg",
  20252. extra: 377 / 333,
  20253. bottom: 0.006
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(6 + 2 / 12, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(6 + 1 / 12, "feet"),
  20270. weight: math.unit(304, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/oliver/front.svg",
  20274. extra: 157 / 143,
  20275. bottom: 0.08
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(6 + 1 / 12, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 7 / 12, "feet"),
  20292. weight: math.unit(140, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/shane/front.svg",
  20296. extra: 304 / 289,
  20297. bottom: 0.005
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(5 + 7 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(5 + 9 / 12, "feet"),
  20314. weight: math.unit(178, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/shin/front.svg",
  20318. extra: 159 / 151,
  20319. bottom: 0.015
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(5 + 9 / 12, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(5 + 10 / 12, "feet"),
  20336. weight: math.unit(168, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/xerxes/front.svg",
  20340. extra: 282 / 260,
  20341. bottom: 0.045
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(5 + 10 / 12, "feet"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20355. {
  20356. front: {
  20357. height: math.unit(6 + 7 / 12, "feet"),
  20358. weight: math.unit(208, "lb"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/chaska/front.svg",
  20362. extra: 332 / 319,
  20363. bottom: 0.015
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(6 + 7 / 12, "feet"),
  20371. default: true
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(5 + 8 / 12, "feet"),
  20380. weight: math.unit(208, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/enuk/front.svg",
  20384. extra: 437 / 406,
  20385. bottom: 0.02
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(5 + 8 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(5 + 10 / 12, "feet"),
  20402. weight: math.unit(252, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/bruun/front.svg",
  20406. extra: 197 / 187,
  20407. bottom: 0.012
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(5 + 10 / 12, "feet"),
  20415. default: true
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(6 + 10 / 12, "feet"),
  20424. weight: math.unit(255, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/alexeev/front.svg",
  20428. extra: 213 / 200,
  20429. bottom: 0.05
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(6 + 10 / 12, "feet"),
  20437. default: true
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20443. {
  20444. front: {
  20445. height: math.unit(2 + 8 / 12, "feet"),
  20446. weight: math.unit(22, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/evelyn/front.svg",
  20450. extra: 208 / 180
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(2 + 8 / 12, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 9 / 12, "feet"),
  20467. weight: math.unit(139, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/inca/front.svg",
  20471. extra: 294 / 291,
  20472. bottom: 0.03
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(5 + 9 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(6 + 3 / 12, "feet"),
  20489. weight: math.unit(185, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/mera/front.svg",
  20493. extra: 291 / 277,
  20494. bottom: 0.03
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6 + 3 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(6 + 7 / 12, "feet"),
  20511. weight: math.unit(160, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/ceres/front.svg",
  20515. extra: 1023 / 950,
  20516. bottom: 0.027
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(6 + 7 / 12, "feet"),
  20521. weight: math.unit(160, "lb"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/ceres/back.svg",
  20525. extra: 1023 / 950
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(6 + 7 / 12, "feet"),
  20533. default: true
  20534. },
  20535. ]
  20536. ))
  20537. characterMakers.push(() => makeCharacter(
  20538. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20539. {
  20540. front: {
  20541. height: math.unit(5 + 10 / 12, "feet"),
  20542. weight: math.unit(150, "lb"),
  20543. name: "Front",
  20544. image: {
  20545. source: "./media/characters/kris/front.svg",
  20546. extra: 885 / 803,
  20547. bottom: 0.03
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(5 + 10 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(7, "feet"),
  20564. weight: math.unit(120, "kg"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/taluthus/front.svg",
  20568. extra: 903 / 833,
  20569. bottom: 0.015
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(7, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(300, "feet")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(5 + 9 / 12, "feet"),
  20590. weight: math.unit(145, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/dawn/front.svg",
  20594. extra: 2094 / 2016,
  20595. bottom: 0.025
  20596. }
  20597. },
  20598. back: {
  20599. height: math.unit(5 + 9 / 12, "feet"),
  20600. weight: math.unit(160, "lb"),
  20601. name: "Back",
  20602. image: {
  20603. source: "./media/characters/dawn/back.svg",
  20604. extra: 2112 / 2080,
  20605. bottom: 0.005
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(6 + 7 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20619. {
  20620. anthro: {
  20621. height: math.unit(8 + 3 / 12, "feet"),
  20622. weight: math.unit(450, "lb"),
  20623. name: "Anthro",
  20624. image: {
  20625. source: "./media/characters/arador/anthro.svg",
  20626. extra: 1835 / 1718,
  20627. bottom: 0.025
  20628. }
  20629. },
  20630. feral: {
  20631. height: math.unit(4, "feet"),
  20632. weight: math.unit(200, "lb"),
  20633. name: "Feral",
  20634. image: {
  20635. source: "./media/characters/arador/feral.svg",
  20636. extra: 1683 / 1514,
  20637. bottom: 0.07
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(8 + 3 / 12, "feet")
  20645. },
  20646. {
  20647. name: "Macro",
  20648. height: math.unit(82.5, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(5 + 10 / 12, "feet"),
  20658. weight: math.unit(125, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/dharsi/front.svg",
  20662. extra: 716 / 630,
  20663. bottom: 0.035
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Nano",
  20670. height: math.unit(100, "nm")
  20671. },
  20672. {
  20673. name: "Micro",
  20674. height: math.unit(2, "inches")
  20675. },
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(5 + 10 / 12, "feet"),
  20679. default: true
  20680. },
  20681. {
  20682. name: "Macro",
  20683. height: math.unit(1000, "feet")
  20684. },
  20685. {
  20686. name: "Megamacro",
  20687. height: math.unit(10, "miles")
  20688. },
  20689. {
  20690. name: "Gigamacro",
  20691. height: math.unit(3000, "miles")
  20692. },
  20693. {
  20694. name: "Teramacro",
  20695. height: math.unit(500000, "miles")
  20696. },
  20697. {
  20698. name: "Teramacro+",
  20699. height: math.unit(30, "galaxies")
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(6, "feet"),
  20708. weight: math.unit(150, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/deathy/front.svg",
  20712. extra: 1552 / 1463,
  20713. bottom: 0.025
  20714. }
  20715. },
  20716. side: {
  20717. height: math.unit(6, "feet"),
  20718. weight: math.unit(150, "lb"),
  20719. name: "Side",
  20720. image: {
  20721. source: "./media/characters/deathy/side.svg",
  20722. extra: 1604 / 1455,
  20723. bottom: 0.025
  20724. }
  20725. },
  20726. back: {
  20727. height: math.unit(6, "feet"),
  20728. weight: math.unit(150, "lb"),
  20729. name: "Back",
  20730. image: {
  20731. source: "./media/characters/deathy/back.svg",
  20732. extra: 1580 / 1463,
  20733. bottom: 0.005
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Micro",
  20740. height: math.unit(5, "millimeters")
  20741. },
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(6 + 5 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20751. {
  20752. front: {
  20753. height: math.unit(16, "feet"),
  20754. weight: math.unit(4000, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/juniper/front.svg",
  20758. bottom: 0.04
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(16, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(6, "feet"),
  20775. weight: math.unit(150, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/hipster/front.svg",
  20779. extra: 1312 / 1209,
  20780. bottom: 0.025
  20781. }
  20782. },
  20783. back: {
  20784. height: math.unit(6, "feet"),
  20785. weight: math.unit(150, "lb"),
  20786. name: "Back",
  20787. image: {
  20788. source: "./media/characters/hipster/back.svg",
  20789. extra: 1281 / 1196,
  20790. bottom: 0.01
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Micro",
  20797. height: math.unit(1, "mm")
  20798. },
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(4, "inches"),
  20802. default: true
  20803. },
  20804. {
  20805. name: "Macro",
  20806. height: math.unit(500, "feet")
  20807. },
  20808. {
  20809. name: "Megamacro",
  20810. height: math.unit(1000, "miles")
  20811. },
  20812. ]
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20816. {
  20817. front: {
  20818. height: math.unit(6, "feet"),
  20819. weight: math.unit(150, "lb"),
  20820. name: "Front",
  20821. image: {
  20822. source: "./media/characters/tendirmuldr/front.svg",
  20823. extra: 1878 / 1772,
  20824. bottom: 0.015
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Megamacro",
  20831. height: math.unit(1500, "miles"),
  20832. default: true
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20838. {
  20839. front: {
  20840. height: math.unit(14, "feet"),
  20841. weight: math.unit(12000, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/mort/front.svg",
  20845. extra: 365 / 318,
  20846. bottom: 0.01
  20847. }
  20848. },
  20849. side: {
  20850. height: math.unit(14, "feet"),
  20851. weight: math.unit(12000, "lb"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/mort/side.svg",
  20855. extra: 365 / 318,
  20856. bottom: 0.052
  20857. },
  20858. default: true
  20859. },
  20860. back: {
  20861. height: math.unit(14, "feet"),
  20862. weight: math.unit(12000, "lb"),
  20863. name: "Back",
  20864. image: {
  20865. source: "./media/characters/mort/back.svg",
  20866. extra: 371 / 332,
  20867. bottom: 0.18
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(14, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20881. {
  20882. front: {
  20883. height: math.unit(8, "feet"),
  20884. weight: math.unit(1, "ton"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/lycoa/front.svg",
  20888. extra: 1836/1728,
  20889. bottom: 81/1917
  20890. }
  20891. },
  20892. back: {
  20893. height: math.unit(8, "feet"),
  20894. weight: math.unit(1, "ton"),
  20895. name: "Back",
  20896. image: {
  20897. source: "./media/characters/lycoa/back.svg",
  20898. extra: 1785/1720,
  20899. bottom: 91/1876
  20900. }
  20901. },
  20902. head: {
  20903. height: math.unit(1.6243, "feet"),
  20904. name: "Head",
  20905. image: {
  20906. source: "./media/characters/lycoa/head.svg",
  20907. extra: 1011/782,
  20908. bottom: 0/1011
  20909. }
  20910. },
  20911. tailmaw: {
  20912. height: math.unit(1.9, "feet"),
  20913. name: "Tailmaw",
  20914. image: {
  20915. source: "./media/characters/lycoa/tailmaw.svg"
  20916. }
  20917. },
  20918. tentacles: {
  20919. height: math.unit(2.1, "feet"),
  20920. name: "Tentacles",
  20921. image: {
  20922. source: "./media/characters/lycoa/tentacles.svg"
  20923. }
  20924. },
  20925. dick: {
  20926. height: math.unit(1.73, "feet"),
  20927. name: "Dick",
  20928. image: {
  20929. source: "./media/characters/lycoa/dick.svg"
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(8, "feet"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(30, "feet")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20947. {
  20948. front: {
  20949. height: math.unit(4 + 2 / 12, "feet"),
  20950. weight: math.unit(70, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/naldara/front.svg",
  20954. extra: 1664/1387,
  20955. bottom: 81/1745
  20956. },
  20957. form: "anthro",
  20958. default: true
  20959. },
  20960. naga: {
  20961. height: math.unit(20, "feet"),
  20962. weight: math.unit(15000, "kg"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/naldara/naga.svg",
  20966. extra: 1590/1396,
  20967. bottom: 285/1875
  20968. },
  20969. form: "naga",
  20970. default: true
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(4 + 2 / 12, "feet"),
  20977. form: "anthro",
  20978. default: true
  20979. },
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(20, "feet"),
  20983. form: "naga",
  20984. default: true
  20985. },
  20986. ],
  20987. {
  20988. "anthro": {
  20989. name: "Anthro",
  20990. default: true
  20991. },
  20992. "naga": {
  20993. name: "Naga"
  20994. }
  20995. }
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20999. {
  21000. front: {
  21001. height: math.unit(13 + 7 / 12, "feet"),
  21002. weight: math.unit(1500, "lb"),
  21003. name: "Front",
  21004. image: {
  21005. source: "./media/characters/briar/front.svg",
  21006. extra: 1223/1157,
  21007. bottom: 123/1346
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(13 + 7 / 12, "feet"),
  21015. default: true
  21016. },
  21017. ]
  21018. ))
  21019. characterMakers.push(() => makeCharacter(
  21020. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21021. {
  21022. side: {
  21023. height: math.unit(16, "feet"),
  21024. weight: math.unit(500, "lb"),
  21025. name: "Side",
  21026. image: {
  21027. source: "./media/characters/vanguard/side.svg",
  21028. extra: 1022/914,
  21029. bottom: 30/1052
  21030. }
  21031. },
  21032. sideAlt: {
  21033. height: math.unit(10, "feet"),
  21034. weight: math.unit(500, "lb"),
  21035. name: "Side (Alt)",
  21036. image: {
  21037. source: "./media/characters/vanguard/side-alt.svg",
  21038. extra: 502 / 425,
  21039. bottom: 0.087
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(17.71, "feet"),
  21047. default: true
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(7.5, "feet"),
  21056. weight: math.unit(2, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/artemis/work-safe-front.svg",
  21060. extra: 1192 / 1075,
  21061. bottom: 0.07
  21062. },
  21063. form: "work-safe",
  21064. default: true
  21065. },
  21066. frontNsfw: {
  21067. height: math.unit(7.5, "feet"),
  21068. weight: math.unit(2, "lb"),
  21069. name: "Front",
  21070. image: {
  21071. source: "./media/characters/artemis/calibrating-front.svg",
  21072. extra: 1192 / 1075,
  21073. bottom: 0.07
  21074. },
  21075. form: "calibrating",
  21076. default: true
  21077. },
  21078. frontNsfwer: {
  21079. height: math.unit(7.5, "feet"),
  21080. weight: math.unit(2, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/artemis/oversize-load-front.svg",
  21084. extra: 1192 / 1075,
  21085. bottom: 0.07
  21086. },
  21087. form: "oversize-load",
  21088. default: true
  21089. },
  21090. side: {
  21091. height: math.unit(7.5, "feet"),
  21092. weight: math.unit(2, "lb"),
  21093. name: "Side",
  21094. image: {
  21095. source: "./media/characters/artemis/work-safe-side.svg",
  21096. extra: 1192 / 1075,
  21097. bottom: 0.07
  21098. },
  21099. form: "work-safe"
  21100. },
  21101. sideNsfw: {
  21102. height: math.unit(7.5, "feet"),
  21103. weight: math.unit(2, "lb"),
  21104. name: "Side",
  21105. image: {
  21106. source: "./media/characters/artemis/calibrating-side.svg",
  21107. extra: 1192 / 1075,
  21108. bottom: 0.07
  21109. },
  21110. form: "calibrating"
  21111. },
  21112. sideNsfwer: {
  21113. height: math.unit(7.5, "feet"),
  21114. weight: math.unit(2, "lb"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/artemis/oversize-load-side.svg",
  21118. extra: 1192 / 1075,
  21119. bottom: 0.07
  21120. },
  21121. form: "oversize-load"
  21122. },
  21123. maw: {
  21124. height: math.unit(1.1, "feet"),
  21125. name: "Maw",
  21126. image: {
  21127. source: "./media/characters/artemis/maw.svg"
  21128. },
  21129. form: "work-safe"
  21130. },
  21131. stomach: {
  21132. height: math.unit(0.95, "feet"),
  21133. name: "Stomach",
  21134. image: {
  21135. source: "./media/characters/artemis/stomach.svg"
  21136. },
  21137. form: "work-safe"
  21138. },
  21139. dickCanine: {
  21140. height: math.unit(1, "feet"),
  21141. name: "Dick (Canine)",
  21142. image: {
  21143. source: "./media/characters/artemis/dick-canine.svg"
  21144. },
  21145. form: "calibrating"
  21146. },
  21147. dickEquine: {
  21148. height: math.unit(0.85, "feet"),
  21149. name: "Dick (Equine)",
  21150. image: {
  21151. source: "./media/characters/artemis/dick-equine.svg"
  21152. },
  21153. form: "calibrating"
  21154. },
  21155. dickExotic: {
  21156. height: math.unit(0.85, "feet"),
  21157. name: "Dick (Exotic)",
  21158. image: {
  21159. source: "./media/characters/artemis/dick-exotic.svg"
  21160. },
  21161. form: "calibrating"
  21162. },
  21163. dickCanineBigger: {
  21164. height: math.unit(1 * 1.33, "feet"),
  21165. name: "Dick (Canine)",
  21166. image: {
  21167. source: "./media/characters/artemis/dick-canine.svg"
  21168. },
  21169. form: "oversize-load"
  21170. },
  21171. dickEquineBigger: {
  21172. height: math.unit(0.85 * 1.33, "feet"),
  21173. name: "Dick (Equine)",
  21174. image: {
  21175. source: "./media/characters/artemis/dick-equine.svg"
  21176. },
  21177. form: "oversize-load"
  21178. },
  21179. dickExoticBigger: {
  21180. height: math.unit(0.85 * 1.33, "feet"),
  21181. name: "Dick (Exotic)",
  21182. image: {
  21183. source: "./media/characters/artemis/dick-exotic.svg"
  21184. },
  21185. form: "oversize-load"
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(7.5, "feet"),
  21192. form: "work-safe",
  21193. default: true
  21194. },
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(7.5, "feet"),
  21198. form: "calibrating",
  21199. default: true
  21200. },
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(7.5, "feet"),
  21204. form: "oversize-load",
  21205. default: true
  21206. },
  21207. {
  21208. name: "Enlarged",
  21209. height: math.unit(12, "feet"),
  21210. form: "work-safe",
  21211. },
  21212. {
  21213. name: "Enlarged",
  21214. height: math.unit(12, "feet"),
  21215. form: "calibrating",
  21216. },
  21217. {
  21218. name: "Enlarged",
  21219. height: math.unit(12, "feet"),
  21220. form: "oversize-load",
  21221. },
  21222. ],
  21223. {
  21224. "work-safe": {
  21225. name: "Work-Safe",
  21226. default: true
  21227. },
  21228. "calibrating": {
  21229. name: "Calibrating"
  21230. },
  21231. "oversize-load": {
  21232. name: "Oversize Load"
  21233. }
  21234. }
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(5 + 3 / 12, "feet"),
  21241. weight: math.unit(160, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/kira/front.svg",
  21245. extra: 906 / 786,
  21246. bottom: 0.01
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(5 + 3 / 12, "feet"),
  21251. weight: math.unit(160, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/kira/back.svg",
  21255. extra: 882 / 757,
  21256. bottom: 0.005
  21257. }
  21258. },
  21259. frontDressed: {
  21260. height: math.unit(5 + 3 / 12, "feet"),
  21261. weight: math.unit(160, "lb"),
  21262. name: "Front (Dressed)",
  21263. image: {
  21264. source: "./media/characters/kira/front-dressed.svg",
  21265. extra: 906 / 786,
  21266. bottom: 0.01
  21267. }
  21268. },
  21269. beans: {
  21270. height: math.unit(0.92, "feet"),
  21271. name: "Beans",
  21272. image: {
  21273. source: "./media/characters/kira/beans.svg"
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(5 + 3 / 12, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 4 / 12, "feet"),
  21290. weight: math.unit(145, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/scramble/front.svg",
  21294. extra: 763 / 727,
  21295. bottom: 0.05
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(5 + 4 / 12, "feet"),
  21300. weight: math.unit(145, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/scramble/back.svg",
  21304. extra: 826 / 737,
  21305. bottom: 0.002
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(5 + 4 / 12, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21319. {
  21320. side: {
  21321. height: math.unit(6 + 2 / 12, "feet"),
  21322. weight: math.unit(190, "lb"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/biscuit/side.svg",
  21326. extra: 858 / 791,
  21327. bottom: 0.044
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(6 + 2 / 12, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(5 + 2 / 12, "feet"),
  21344. weight: math.unit(120, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/poffin/front.svg",
  21348. extra: 786 / 680,
  21349. bottom: 0.005
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(5 + 2 / 12, "feet"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(6 + 3 / 12, "feet"),
  21366. weight: math.unit(519, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/dhari/front.svg",
  21370. extra: 1048 / 946,
  21371. bottom: 0.015
  21372. }
  21373. },
  21374. back: {
  21375. height: math.unit(6 + 3 / 12, "feet"),
  21376. weight: math.unit(519, "lb"),
  21377. name: "Back",
  21378. image: {
  21379. source: "./media/characters/dhari/back.svg",
  21380. extra: 1048 / 931,
  21381. bottom: 0.005
  21382. }
  21383. },
  21384. frontDressed: {
  21385. height: math.unit(6 + 3 / 12, "feet"),
  21386. weight: math.unit(519, "lb"),
  21387. name: "Front (Dressed)",
  21388. image: {
  21389. source: "./media/characters/dhari/front-dressed.svg",
  21390. extra: 1713 / 1546,
  21391. bottom: 0.02
  21392. }
  21393. },
  21394. backDressed: {
  21395. height: math.unit(6 + 3 / 12, "feet"),
  21396. weight: math.unit(519, "lb"),
  21397. name: "Back (Dressed)",
  21398. image: {
  21399. source: "./media/characters/dhari/back-dressed.svg",
  21400. extra: 1699 / 1537,
  21401. bottom: 0.01
  21402. }
  21403. },
  21404. maw: {
  21405. height: math.unit(0.95, "feet"),
  21406. name: "Maw",
  21407. image: {
  21408. source: "./media/characters/dhari/maw.svg"
  21409. }
  21410. },
  21411. wereFront: {
  21412. height: math.unit(12 + 8 / 12, "feet"),
  21413. weight: math.unit(4000, "lb"),
  21414. name: "Front (Were)",
  21415. image: {
  21416. source: "./media/characters/dhari/were-front.svg",
  21417. extra: 1065 / 969,
  21418. bottom: 0.015
  21419. }
  21420. },
  21421. wereBack: {
  21422. height: math.unit(12 + 8 / 12, "feet"),
  21423. weight: math.unit(4000, "lb"),
  21424. name: "Back (Were)",
  21425. image: {
  21426. source: "./media/characters/dhari/were-back.svg",
  21427. extra: 1065 / 969,
  21428. bottom: 0.012
  21429. }
  21430. },
  21431. wereMaw: {
  21432. height: math.unit(0.625, "meters"),
  21433. name: "Maw (Were)",
  21434. image: {
  21435. source: "./media/characters/dhari/were-maw.svg"
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(6 + 3 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21449. {
  21450. anthro: {
  21451. height: math.unit(5 + 7 / 12, "feet"),
  21452. weight: math.unit(175, "lb"),
  21453. name: "Anthro",
  21454. image: {
  21455. source: "./media/characters/rena-dyne/anthro.svg",
  21456. extra: 1849 / 1785,
  21457. bottom: 0.005
  21458. }
  21459. },
  21460. taur: {
  21461. height: math.unit(15 + 6 / 12, "feet"),
  21462. weight: math.unit(8000, "lb"),
  21463. name: "Taur",
  21464. image: {
  21465. source: "./media/characters/rena-dyne/taur.svg",
  21466. extra: 2315 / 2234,
  21467. bottom: 0.033
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(5 + 7 / 12, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(8, "feet"),
  21484. weight: math.unit(600, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/weremeep/front.svg",
  21488. extra: 967 / 862,
  21489. bottom: 0.01
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(8, "feet"),
  21497. default: true
  21498. },
  21499. {
  21500. name: "Lorg",
  21501. height: math.unit(12, "feet")
  21502. },
  21503. {
  21504. name: "Oh Lawd She Comin'",
  21505. height: math.unit(20, "feet")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21511. {
  21512. front: {
  21513. height: math.unit(4, "feet"),
  21514. weight: math.unit(90, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/reza/front.svg",
  21518. extra: 1183 / 1111,
  21519. bottom: 0.017
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(4, "feet"),
  21524. weight: math.unit(90, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/reza/back.svg",
  21528. extra: 1183 / 1111,
  21529. bottom: 0.01
  21530. }
  21531. },
  21532. drake: {
  21533. height: math.unit(30, "feet"),
  21534. weight: math.unit(246960, "lb"),
  21535. name: "Drake",
  21536. image: {
  21537. source: "./media/characters/reza/drake.svg",
  21538. extra: 2350 / 2024,
  21539. bottom: 60.7 / 2403
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Normal",
  21546. height: math.unit(4, "feet"),
  21547. default: true
  21548. },
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21553. {
  21554. side: {
  21555. height: math.unit(15, "feet"),
  21556. weight: math.unit(14, "tons"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/athea/side.svg",
  21560. extra: 960 / 540,
  21561. bottom: 0.003
  21562. }
  21563. },
  21564. sitting: {
  21565. height: math.unit(6 * 2.85, "feet"),
  21566. weight: math.unit(14, "tons"),
  21567. name: "Sitting",
  21568. image: {
  21569. source: "./media/characters/athea/sitting.svg",
  21570. extra: 621 / 581,
  21571. bottom: 0.075
  21572. }
  21573. },
  21574. maw: {
  21575. height: math.unit(7.59498031496063, "feet"),
  21576. name: "Maw",
  21577. image: {
  21578. source: "./media/characters/athea/maw.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Lap Cat",
  21585. height: math.unit(2.5, "feet")
  21586. },
  21587. {
  21588. name: "Minimacro",
  21589. height: math.unit(15, "feet"),
  21590. default: true
  21591. },
  21592. {
  21593. name: "Macro",
  21594. height: math.unit(120, "feet")
  21595. },
  21596. {
  21597. name: "Macro+",
  21598. height: math.unit(640, "feet")
  21599. },
  21600. {
  21601. name: "Colossus",
  21602. height: math.unit(2.2, "miles")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(8 + 8 / 12, "feet"),
  21611. weight: math.unit(130, "kg"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/seroko/front.svg",
  21615. extra: 1385 / 1280,
  21616. bottom: 0.025
  21617. }
  21618. },
  21619. back: {
  21620. height: math.unit(8 + 8 / 12, "feet"),
  21621. weight: math.unit(130, "kg"),
  21622. name: "Back",
  21623. image: {
  21624. source: "./media/characters/seroko/back.svg",
  21625. extra: 1369 / 1238,
  21626. bottom: 0.018
  21627. }
  21628. },
  21629. frontDressed: {
  21630. height: math.unit(8 + 8 / 12, "feet"),
  21631. weight: math.unit(130, "kg"),
  21632. name: "Front (Dressed)",
  21633. image: {
  21634. source: "./media/characters/seroko/front-dressed.svg",
  21635. extra: 1366 / 1275,
  21636. bottom: 0.03
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(8 + 8 / 12, "feet"),
  21644. default: true
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(5.5, "feet"),
  21653. weight: math.unit(160, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/quatzi/front.svg",
  21657. extra: 2346 / 2242,
  21658. bottom: 0.015
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(5.5, "feet"),
  21666. default: true
  21667. },
  21668. {
  21669. name: "Big",
  21670. height: math.unit(7.7, "feet")
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21676. {
  21677. front: {
  21678. height: math.unit(5 + 11 / 12, "feet"),
  21679. weight: math.unit(180, "lb"),
  21680. name: "Front",
  21681. image: {
  21682. source: "./media/characters/sen/front.svg",
  21683. extra: 1321 / 1254,
  21684. bottom: 0.015
  21685. }
  21686. },
  21687. side: {
  21688. height: math.unit(5 + 11 / 12, "feet"),
  21689. weight: math.unit(180, "lb"),
  21690. name: "Side",
  21691. image: {
  21692. source: "./media/characters/sen/side.svg",
  21693. extra: 1321 / 1254,
  21694. bottom: 0.007
  21695. }
  21696. },
  21697. back: {
  21698. height: math.unit(5 + 11 / 12, "feet"),
  21699. weight: math.unit(180, "lb"),
  21700. name: "Back",
  21701. image: {
  21702. source: "./media/characters/sen/back.svg",
  21703. extra: 1321 / 1254
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(5 + 11 / 12, "feet"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(166.6, "cm"),
  21720. weight: math.unit(66.6, "kg"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/fruity/front.svg",
  21724. extra: 1510 / 1386,
  21725. bottom: 0.04
  21726. }
  21727. },
  21728. back: {
  21729. height: math.unit(166.6, "cm"),
  21730. weight: math.unit(66.6, "lb"),
  21731. name: "Back",
  21732. image: {
  21733. source: "./media/characters/fruity/back.svg",
  21734. extra: 1563 / 1435,
  21735. bottom: 0.005
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(166.6, "cm"),
  21743. default: true
  21744. },
  21745. {
  21746. name: "Demonic",
  21747. height: math.unit(166.6, "feet")
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21753. {
  21754. side: {
  21755. height: math.unit(10, "feet"),
  21756. weight: math.unit(500, "lb"),
  21757. name: "Side",
  21758. image: {
  21759. source: "./media/characters/zost/side.svg",
  21760. extra: 2870/2533,
  21761. bottom: 252/3122
  21762. }
  21763. },
  21764. mawFront: {
  21765. height: math.unit(1.08, "meters"),
  21766. name: "Maw (Front)",
  21767. image: {
  21768. source: "./media/characters/zost/maw-front.svg"
  21769. }
  21770. },
  21771. mawSide: {
  21772. height: math.unit(2.66, "feet"),
  21773. name: "Maw (Side)",
  21774. image: {
  21775. source: "./media/characters/zost/maw-side.svg"
  21776. }
  21777. },
  21778. wingspan: {
  21779. height: math.unit(7.4, "feet"),
  21780. name: "Wingspan",
  21781. image: {
  21782. source: "./media/characters/zost/wingspan.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(10, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 4 / 12, "feet"),
  21799. weight: math.unit(120, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/luci/front.svg",
  21803. extra: 1985 / 1884,
  21804. bottom: 0.04
  21805. }
  21806. },
  21807. back: {
  21808. height: math.unit(5 + 4 / 12, "feet"),
  21809. weight: math.unit(120, "lb"),
  21810. name: "Back",
  21811. image: {
  21812. source: "./media/characters/luci/back.svg",
  21813. extra: 1892 / 1791,
  21814. bottom: 0.002
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(5 + 4 / 12, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(1500, "feet"),
  21831. weight: math.unit(3.8e6, "tons"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/2th/front.svg",
  21835. extra: 3489 / 3350,
  21836. bottom: 0.1
  21837. }
  21838. },
  21839. foot: {
  21840. height: math.unit(461, "feet"),
  21841. name: "Foot",
  21842. image: {
  21843. source: "./media/characters/2th/foot.svg"
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "\"Micro\"",
  21850. height: math.unit(15 + 7 / 12, "feet")
  21851. },
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(1500, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(5000, "feet")
  21860. },
  21861. {
  21862. name: "Megamacro",
  21863. height: math.unit(15, "miles")
  21864. },
  21865. {
  21866. name: "Gigamacro",
  21867. height: math.unit(4000, "miles")
  21868. },
  21869. {
  21870. name: "Galactic",
  21871. height: math.unit(50, "AU")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(5 + 6 / 12, "feet"),
  21880. weight: math.unit(220, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/amethyst/front.svg",
  21884. extra: 2078 / 2040,
  21885. bottom: 0.045
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(5 + 6 / 12, "feet"),
  21890. weight: math.unit(220, "lb"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/amethyst/back.svg",
  21894. extra: 2021 / 1989,
  21895. bottom: 0.02
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(5 + 6 / 12, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(4 + 11 / 12, "feet"),
  21912. weight: math.unit(120, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/yumi-akiyama/front.svg",
  21916. extra: 1327 / 1235,
  21917. bottom: 0.02
  21918. }
  21919. },
  21920. back: {
  21921. height: math.unit(4 + 11 / 12, "feet"),
  21922. weight: math.unit(120, "lb"),
  21923. name: "Back",
  21924. image: {
  21925. source: "./media/characters/yumi-akiyama/back.svg",
  21926. extra: 1287 / 1245,
  21927. bottom: 0.002
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Galactic",
  21934. height: math.unit(50, "galaxies"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Universal",
  21939. height: math.unit(100, "universes")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(8, "feet"),
  21948. weight: math.unit(500, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/rifter-yrmori/front.svg",
  21952. extra: 1180 / 1125,
  21953. bottom: 0.02
  21954. }
  21955. },
  21956. back: {
  21957. height: math.unit(8, "feet"),
  21958. weight: math.unit(500, "lb"),
  21959. name: "Back",
  21960. image: {
  21961. source: "./media/characters/rifter-yrmori/back.svg",
  21962. extra: 1190 / 1145,
  21963. bottom: 0.001
  21964. }
  21965. },
  21966. wings: {
  21967. height: math.unit(7.75, "feet"),
  21968. weight: math.unit(500, "lb"),
  21969. name: "Wings",
  21970. image: {
  21971. source: "./media/characters/rifter-yrmori/wings.svg",
  21972. extra: 1357 / 1285
  21973. }
  21974. },
  21975. maw: {
  21976. height: math.unit(0.8, "feet"),
  21977. name: "Maw",
  21978. image: {
  21979. source: "./media/characters/rifter-yrmori/maw.svg"
  21980. }
  21981. },
  21982. mawfront: {
  21983. height: math.unit(1.45, "feet"),
  21984. name: "Maw (Front)",
  21985. image: {
  21986. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(8, "feet"),
  21994. default: true
  21995. },
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(42, "meters")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22004. {
  22005. were: {
  22006. height: math.unit(25 + 6 / 12, "feet"),
  22007. weight: math.unit(10000, "lb"),
  22008. name: "Were",
  22009. image: {
  22010. source: "./media/characters/tahajin/were.svg",
  22011. extra: 801 / 770,
  22012. bottom: 0.042
  22013. }
  22014. },
  22015. aquatic: {
  22016. height: math.unit(6 + 4 / 12, "feet"),
  22017. weight: math.unit(160, "lb"),
  22018. name: "Aquatic",
  22019. image: {
  22020. source: "./media/characters/tahajin/aquatic.svg",
  22021. extra: 572 / 542,
  22022. bottom: 0.04
  22023. }
  22024. },
  22025. chow: {
  22026. height: math.unit(8 + 11 / 12, "feet"),
  22027. weight: math.unit(450, "lb"),
  22028. name: "Chow",
  22029. image: {
  22030. source: "./media/characters/tahajin/chow.svg",
  22031. extra: 660 / 640,
  22032. bottom: 0.015
  22033. }
  22034. },
  22035. demiNaga: {
  22036. height: math.unit(6 + 8 / 12, "feet"),
  22037. weight: math.unit(300, "lb"),
  22038. name: "Demi Naga",
  22039. image: {
  22040. source: "./media/characters/tahajin/demi-naga.svg",
  22041. extra: 643 / 615,
  22042. bottom: 0.1
  22043. }
  22044. },
  22045. data: {
  22046. height: math.unit(5, "inches"),
  22047. weight: math.unit(0.1, "lb"),
  22048. name: "Data",
  22049. image: {
  22050. source: "./media/characters/tahajin/data.svg"
  22051. }
  22052. },
  22053. fluu: {
  22054. height: math.unit(5 + 7 / 12, "feet"),
  22055. weight: math.unit(140, "lb"),
  22056. name: "Fluu",
  22057. image: {
  22058. source: "./media/characters/tahajin/fluu.svg",
  22059. extra: 628 / 592,
  22060. bottom: 0.02
  22061. }
  22062. },
  22063. starWarrior: {
  22064. height: math.unit(4 + 5 / 12, "feet"),
  22065. weight: math.unit(50, "lb"),
  22066. name: "Star Warrior",
  22067. image: {
  22068. source: "./media/characters/tahajin/star-warrior.svg"
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(25 + 6 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(8, "feet"),
  22085. weight: math.unit(350, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/gabira/front.svg",
  22089. extra: 608 / 580,
  22090. bottom: 0.03
  22091. }
  22092. },
  22093. back: {
  22094. height: math.unit(8, "feet"),
  22095. weight: math.unit(350, "lb"),
  22096. name: "Back",
  22097. image: {
  22098. source: "./media/characters/gabira/back.svg",
  22099. extra: 608 / 580,
  22100. bottom: 0.03
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(8, "feet"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(5 + 3 / 12, "feet"),
  22117. weight: math.unit(137, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/sasha-katraine/front.svg",
  22121. extra: 1745/1694,
  22122. bottom: 37/1782
  22123. }
  22124. },
  22125. back: {
  22126. height: math.unit(5 + 3 / 12, "feet"),
  22127. weight: math.unit(137, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/sasha-katraine/back.svg",
  22131. extra: 1776/1699,
  22132. bottom: 26/1802
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Micro",
  22139. height: math.unit(5, "inches")
  22140. },
  22141. {
  22142. name: "Normal",
  22143. height: math.unit(5 + 3 / 12, "feet"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22150. {
  22151. side: {
  22152. height: math.unit(4, "inches"),
  22153. weight: math.unit(200, "grams"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/der/side.svg",
  22157. extra: 719 / 400,
  22158. bottom: 30.6 / 749.9187
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Micro",
  22165. height: math.unit(4, "inches"),
  22166. default: true
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22172. {
  22173. side: {
  22174. height: math.unit(30, "meters"),
  22175. weight: math.unit(700, "tonnes"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/fixerdragon/side.svg",
  22179. extra: (1293.0514 - 116.03) / 1106.86,
  22180. bottom: 116.03 / 1293.0514
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Planck",
  22187. height: math.unit(1.6e-35, "meters")
  22188. },
  22189. {
  22190. name: "Micro",
  22191. height: math.unit(0.4, "meters")
  22192. },
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(30, "meters"),
  22196. default: true
  22197. },
  22198. {
  22199. name: "Megamacro",
  22200. height: math.unit(1.2, "megameters")
  22201. },
  22202. {
  22203. name: "Teramacro",
  22204. height: math.unit(130, "terameters")
  22205. },
  22206. {
  22207. name: "Yottamacro",
  22208. height: math.unit(6200, "yottameters")
  22209. },
  22210. ]
  22211. ));
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(8, "feet"),
  22217. weight: math.unit(250, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/kite/front.svg",
  22221. extra: 2796 / 2659,
  22222. bottom: 0.002
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(8, "feet"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Macro",
  22234. height: math.unit(360, "feet")
  22235. },
  22236. {
  22237. name: "Megamacro",
  22238. height: math.unit(1500, "feet")
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(5 + 11/12, "feet"),
  22247. weight: math.unit(170, "lb"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/poojawa-vynar/front.svg",
  22251. extra: 1735/1585,
  22252. bottom: 96/1831
  22253. }
  22254. },
  22255. back: {
  22256. height: math.unit(5 + 11/12, "feet"),
  22257. weight: math.unit(170, "lb"),
  22258. name: "Back",
  22259. image: {
  22260. source: "./media/characters/poojawa-vynar/back.svg",
  22261. extra: 1749/1607,
  22262. bottom: 28/1777
  22263. }
  22264. },
  22265. male: {
  22266. height: math.unit(5 + 11/12, "feet"),
  22267. weight: math.unit(170, "lb"),
  22268. name: "Male",
  22269. image: {
  22270. source: "./media/characters/poojawa-vynar/male.svg",
  22271. extra: 1855/1713,
  22272. bottom: 63/1918
  22273. }
  22274. },
  22275. taur: {
  22276. height: math.unit(5 + 11/12, "feet"),
  22277. weight: math.unit(170, "lb"),
  22278. name: "Taur",
  22279. image: {
  22280. source: "./media/characters/poojawa-vynar/taur.svg",
  22281. extra: 1151/1059,
  22282. bottom: 356/1507
  22283. }
  22284. },
  22285. frontDressed: {
  22286. height: math.unit(5 + 11/12, "feet"),
  22287. weight: math.unit(170, "lb"),
  22288. name: "Front (Dressed)",
  22289. image: {
  22290. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22291. extra: 1735/1585,
  22292. bottom: 96/1831
  22293. }
  22294. },
  22295. backDressed: {
  22296. height: math.unit(5 + 11/12, "feet"),
  22297. weight: math.unit(170, "lb"),
  22298. name: "Back (Dressed)",
  22299. image: {
  22300. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22301. extra: 1749/1607,
  22302. bottom: 28/1777
  22303. }
  22304. },
  22305. maleDressed: {
  22306. height: math.unit(5 + 11/12, "feet"),
  22307. weight: math.unit(170, "lb"),
  22308. name: "Male (Dressed)",
  22309. image: {
  22310. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22311. extra: 1855/1713,
  22312. bottom: 63/1918
  22313. }
  22314. },
  22315. taurDressed: {
  22316. height: math.unit(5 + 11/12, "feet"),
  22317. weight: math.unit(170, "lb"),
  22318. name: "Taur (Dressed)",
  22319. image: {
  22320. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22321. extra: 1151/1059,
  22322. bottom: 356/1507
  22323. }
  22324. },
  22325. maw: {
  22326. height: math.unit(1.46, "feet"),
  22327. name: "Maw",
  22328. image: {
  22329. source: "./media/characters/poojawa-vynar/maw.svg"
  22330. }
  22331. },
  22332. head: {
  22333. height: math.unit(2.34, "feet"),
  22334. name: "Head",
  22335. image: {
  22336. source: "./media/characters/poojawa-vynar/head.svg"
  22337. }
  22338. },
  22339. paw: {
  22340. height: math.unit(1.61, "feet"),
  22341. name: "Paw",
  22342. image: {
  22343. source: "./media/characters/poojawa-vynar/paw.svg"
  22344. }
  22345. },
  22346. pawToering: {
  22347. height: math.unit(1.72, "feet"),
  22348. name: "Paw (Toering)",
  22349. image: {
  22350. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22351. }
  22352. },
  22353. toering: {
  22354. height: math.unit(2.9, "inches"),
  22355. name: "Toering",
  22356. image: {
  22357. source: "./media/characters/poojawa-vynar/toering.svg"
  22358. }
  22359. },
  22360. shaft: {
  22361. height: math.unit(0.625, "feet"),
  22362. name: "Shaft",
  22363. image: {
  22364. source: "./media/characters/poojawa-vynar/shaft.svg"
  22365. }
  22366. },
  22367. spade: {
  22368. height: math.unit(0.42, "feet"),
  22369. name: "Spade",
  22370. image: {
  22371. source: "./media/characters/poojawa-vynar/spade.svg"
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Shortstack",
  22378. height: math.unit(4, "feet")
  22379. },
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(5 + 11 / 12, "feet"),
  22383. default: true
  22384. },
  22385. {
  22386. name: "Tauric",
  22387. height: math.unit(4, "meters")
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(293, "meters"),
  22396. weight: math.unit(70400, "tons"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/violette/front.svg",
  22400. extra: 1227 / 1180,
  22401. bottom: 0.005
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(293, "meters"),
  22406. weight: math.unit(70400, "tons"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/violette/back.svg",
  22410. extra: 1227 / 1180,
  22411. bottom: 0.005
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(293, "meters"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(1050, "feet"),
  22428. weight: math.unit(200000, "tons"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/alessandra/front.svg",
  22432. extra: 960 / 912,
  22433. bottom: 0.06
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(1050, "feet")
  22441. },
  22442. {
  22443. name: "Macro+",
  22444. height: math.unit(900, "meters"),
  22445. default: true
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(5, "feet"),
  22454. weight: math.unit(187, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/person/front.svg",
  22458. extra: 3087 / 2945,
  22459. bottom: 91 / 3181
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Micro",
  22466. height: math.unit(3, "inches")
  22467. },
  22468. {
  22469. name: "Normal",
  22470. height: math.unit(5, "feet"),
  22471. default: true
  22472. },
  22473. {
  22474. name: "Macro",
  22475. height: math.unit(90, "feet")
  22476. },
  22477. {
  22478. name: "Max Size",
  22479. height: math.unit(280, "feet")
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22485. {
  22486. front: {
  22487. height: math.unit(4.5, "meters"),
  22488. weight: math.unit(3200, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/ty/front.svg",
  22492. extra: 1038 / 960,
  22493. bottom: 31.156 / 1068
  22494. }
  22495. },
  22496. back: {
  22497. height: math.unit(4.5, "meters"),
  22498. weight: math.unit(3200, "lb"),
  22499. name: "Back",
  22500. image: {
  22501. source: "./media/characters/ty/back.svg",
  22502. extra: 1044 / 966,
  22503. bottom: 7.48 / 1049
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(4.5, "meters"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 4 / 12, "feet"),
  22520. weight: math.unit(115, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/rocky/front.svg",
  22524. extra: 1012 / 975,
  22525. bottom: 54 / 1066
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(5 + 4 / 12, "feet"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22539. {
  22540. upright: {
  22541. height: math.unit(6, "meters"),
  22542. weight: math.unit(4000, "kg"),
  22543. name: "Upright",
  22544. image: {
  22545. source: "./media/characters/ruin/upright.svg",
  22546. extra: 668 / 661,
  22547. bottom: 42 / 799.8396
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(6, "meters"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(5, "feet"),
  22564. weight: math.unit(106, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/robin/front.svg",
  22568. extra: 862 / 799,
  22569. bottom: 42.4 / 914.8856
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(5, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22583. {
  22584. side: {
  22585. height: math.unit(3, "feet"),
  22586. weight: math.unit(225, "lb"),
  22587. name: "Side",
  22588. image: {
  22589. source: "./media/characters/saian/side.svg",
  22590. extra: 566 / 356,
  22591. bottom: 79.7 / 643
  22592. }
  22593. },
  22594. maw: {
  22595. height: math.unit(2.85, "feet"),
  22596. name: "Maw",
  22597. image: {
  22598. source: "./media/characters/saian/maw.svg"
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(3, "feet"),
  22606. default: true
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22612. {
  22613. side: {
  22614. height: math.unit(8, "feet"),
  22615. weight: math.unit(300, "lb"),
  22616. name: "Side",
  22617. image: {
  22618. source: "./media/characters/equus-silvermane/side.svg",
  22619. extra: 2176 / 2050,
  22620. bottom: 65.7 / 2245
  22621. }
  22622. },
  22623. front: {
  22624. height: math.unit(8, "feet"),
  22625. weight: math.unit(300, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/equus-silvermane/front.svg",
  22629. extra: 4633 / 4400,
  22630. bottom: 71.3 / 4706.915
  22631. }
  22632. },
  22633. sideStepping: {
  22634. height: math.unit(8, "feet"),
  22635. weight: math.unit(300, "lb"),
  22636. name: "Side (Stepping)",
  22637. image: {
  22638. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22639. extra: 1968 / 1860,
  22640. bottom: 16.4 / 1989
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(8, "feet")
  22648. },
  22649. {
  22650. name: "Minimacro",
  22651. height: math.unit(75, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(150, "feet")
  22657. },
  22658. {
  22659. name: "Macro+",
  22660. height: math.unit(1000, "feet")
  22661. },
  22662. {
  22663. name: "Megamacro",
  22664. height: math.unit(1, "mile")
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22670. {
  22671. side: {
  22672. height: math.unit(20, "feet"),
  22673. weight: math.unit(30000, "kg"),
  22674. name: "Side",
  22675. image: {
  22676. source: "./media/characters/windar/side.svg",
  22677. extra: 1491 / 1248,
  22678. bottom: 82.56 / 1568
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(20, "feet"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22692. {
  22693. side: {
  22694. height: math.unit(15.66, "feet"),
  22695. weight: math.unit(150, "lb"),
  22696. name: "Side",
  22697. image: {
  22698. source: "./media/characters/melody/side.svg",
  22699. extra: 1097 / 944,
  22700. bottom: 11.8 / 1109
  22701. }
  22702. },
  22703. sideOutfit: {
  22704. height: math.unit(15.66, "feet"),
  22705. weight: math.unit(150, "lb"),
  22706. name: "Side (Outfit)",
  22707. image: {
  22708. source: "./media/characters/melody/side-outfit.svg",
  22709. extra: 1097 / 944,
  22710. bottom: 11.8 / 1109
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(15.66, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(8, "feet"),
  22727. weight: math.unit(325, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/windera/front.svg",
  22731. extra: 3180 / 2845,
  22732. bottom: 178 / 3365
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Normal",
  22739. height: math.unit(8, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22746. {
  22747. front: {
  22748. height: math.unit(28.75, "feet"),
  22749. weight: math.unit(2000, "kg"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/sonear/front.svg",
  22753. extra: 1041.1 / 964.9,
  22754. bottom: 53.7 / 1096.6
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(28.75, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22768. {
  22769. side: {
  22770. height: math.unit(25.5, "feet"),
  22771. weight: math.unit(23000, "kg"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/kanara/side.svg"
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(25.5, "feet"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22788. {
  22789. side: {
  22790. height: math.unit(10, "feet"),
  22791. weight: math.unit(1000, "kg"),
  22792. name: "Side",
  22793. image: {
  22794. source: "./media/characters/ereus/side.svg",
  22795. extra: 1157 / 959,
  22796. bottom: 153 / 1312.5
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(10, "feet"),
  22804. default: true
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22810. {
  22811. side: {
  22812. height: math.unit(4.5, "feet"),
  22813. weight: math.unit(500, "lb"),
  22814. name: "Side",
  22815. image: {
  22816. source: "./media/characters/e-ter/side.svg",
  22817. extra: 1550 / 1248,
  22818. bottom: 146 / 1694
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(4.5, "feet"),
  22826. default: true
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22832. {
  22833. side: {
  22834. height: math.unit(9.7, "feet"),
  22835. weight: math.unit(4000, "kg"),
  22836. name: "Side",
  22837. image: {
  22838. source: "./media/characters/yamie/side.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(9.7, "feet"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(50, "feet"),
  22855. weight: math.unit(50000, "kg"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/anders/front.svg",
  22859. extra: 570 / 539,
  22860. bottom: 14.7 / 586.7
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Large",
  22867. height: math.unit(50, "feet")
  22868. },
  22869. {
  22870. name: "Macro",
  22871. height: math.unit(2000, "feet"),
  22872. default: true
  22873. },
  22874. {
  22875. name: "Megamacro",
  22876. height: math.unit(12, "miles")
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(7 + 2 / 12, "feet"),
  22885. weight: math.unit(300, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/reban/front.svg",
  22889. extra: 1287/1212,
  22890. bottom: 148/1435
  22891. }
  22892. },
  22893. head: {
  22894. height: math.unit(1.95, "feet"),
  22895. name: "Head",
  22896. image: {
  22897. source: "./media/characters/reban/head.svg"
  22898. }
  22899. },
  22900. maw: {
  22901. height: math.unit(0.95, "feet"),
  22902. name: "Maw",
  22903. image: {
  22904. source: "./media/characters/reban/maw.svg"
  22905. }
  22906. },
  22907. foot: {
  22908. height: math.unit(1.65, "feet"),
  22909. name: "Foot",
  22910. image: {
  22911. source: "./media/characters/reban/foot.svg"
  22912. }
  22913. },
  22914. dick: {
  22915. height: math.unit(7 / 5, "feet"),
  22916. name: "Dick",
  22917. image: {
  22918. source: "./media/characters/reban/dick.svg"
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Natural Height",
  22925. height: math.unit(7 + 2 / 12, "feet")
  22926. },
  22927. {
  22928. name: "Macro",
  22929. height: math.unit(500, "feet"),
  22930. default: true
  22931. },
  22932. {
  22933. name: "Canon Height",
  22934. height: math.unit(50, "AU")
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22940. {
  22941. front: {
  22942. height: math.unit(6, "feet"),
  22943. weight: math.unit(150, "lb"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/terrance-keayes/front.svg",
  22947. extra: 1.005,
  22948. bottom: 151 / 1615
  22949. }
  22950. },
  22951. side: {
  22952. height: math.unit(6, "feet"),
  22953. weight: math.unit(150, "lb"),
  22954. name: "Side",
  22955. image: {
  22956. source: "./media/characters/terrance-keayes/side.svg",
  22957. extra: 1.005,
  22958. bottom: 129.4 / 1544
  22959. }
  22960. },
  22961. back: {
  22962. height: math.unit(6, "feet"),
  22963. weight: math.unit(150, "lb"),
  22964. name: "Back",
  22965. image: {
  22966. source: "./media/characters/terrance-keayes/back.svg",
  22967. extra: 1.005,
  22968. bottom: 58.4 / 1557.3
  22969. }
  22970. },
  22971. dick: {
  22972. height: math.unit(6 * 0.208, "feet"),
  22973. name: "Dick",
  22974. image: {
  22975. source: "./media/characters/terrance-keayes/dick.svg"
  22976. }
  22977. },
  22978. },
  22979. [
  22980. {
  22981. name: "Canon Height",
  22982. height: math.unit(35, "miles"),
  22983. default: true
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22989. {
  22990. front: {
  22991. height: math.unit(6, "feet"),
  22992. weight: math.unit(150, "lb"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/ofelia/front.svg",
  22996. extra: 1130/1117,
  22997. bottom: 91/1221
  22998. }
  22999. },
  23000. back: {
  23001. height: math.unit(6, "feet"),
  23002. weight: math.unit(150, "lb"),
  23003. name: "Back",
  23004. image: {
  23005. source: "./media/characters/ofelia/back.svg",
  23006. extra: 1172/1159,
  23007. bottom: 28/1200
  23008. }
  23009. },
  23010. maw: {
  23011. height: math.unit(1, "feet"),
  23012. name: "Maw",
  23013. image: {
  23014. source: "./media/characters/ofelia/maw.svg"
  23015. }
  23016. },
  23017. foot: {
  23018. height: math.unit(1.949, "feet"),
  23019. name: "Foot",
  23020. image: {
  23021. source: "./media/characters/ofelia/foot.svg"
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Canon Height",
  23028. height: math.unit(2000, "miles"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23035. {
  23036. front: {
  23037. height: math.unit(6, "feet"),
  23038. weight: math.unit(150, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/samuel/front.svg",
  23042. extra: 265 / 258,
  23043. bottom: 2 / 266.1566
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Macro",
  23050. height: math.unit(100, "feet"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Full Size",
  23055. height: math.unit(1000, "miles")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(300, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/beishir-kiel/front.svg",
  23068. extra: 569 / 547,
  23069. bottom: 41.9 / 609
  23070. }
  23071. },
  23072. maw: {
  23073. height: math.unit(6 * 0.202, "feet"),
  23074. name: "Maw",
  23075. image: {
  23076. source: "./media/characters/beishir-kiel/maw.svg"
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(300, "feet"),
  23084. default: true
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(5 + 7/12, "feet"),
  23093. weight: math.unit(120, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/logan-grey/front.svg",
  23097. extra: 1836/1738,
  23098. bottom: 108/1944
  23099. }
  23100. },
  23101. back: {
  23102. height: math.unit(5 + 7/12, "feet"),
  23103. weight: math.unit(120, "lb"),
  23104. name: "Back",
  23105. image: {
  23106. source: "./media/characters/logan-grey/back.svg",
  23107. extra: 1880/1794,
  23108. bottom: 24/1904
  23109. }
  23110. },
  23111. frontSfw: {
  23112. height: math.unit(5 + 7/12, "feet"),
  23113. weight: math.unit(120, "lb"),
  23114. name: "Front (SFW)",
  23115. image: {
  23116. source: "./media/characters/logan-grey/front-sfw.svg",
  23117. extra: 1836/1738,
  23118. bottom: 108/1944
  23119. }
  23120. },
  23121. backSfw: {
  23122. height: math.unit(5 + 7/12, "feet"),
  23123. weight: math.unit(120, "lb"),
  23124. name: "Back (SFW)",
  23125. image: {
  23126. source: "./media/characters/logan-grey/back-sfw.svg",
  23127. extra: 1880/1794,
  23128. bottom: 24/1904
  23129. }
  23130. },
  23131. hands: {
  23132. height: math.unit(0.84, "feet"),
  23133. name: "Hands",
  23134. image: {
  23135. source: "./media/characters/logan-grey/hands.svg"
  23136. }
  23137. },
  23138. paws: {
  23139. height: math.unit(0.72, "feet"),
  23140. name: "Paws",
  23141. image: {
  23142. source: "./media/characters/logan-grey/paws.svg"
  23143. }
  23144. },
  23145. cock: {
  23146. height: math.unit(1.45, "feet"),
  23147. name: "Cock",
  23148. image: {
  23149. source: "./media/characters/logan-grey/cock.svg"
  23150. }
  23151. },
  23152. cockAlt: {
  23153. height: math.unit(1.437, "feet"),
  23154. name: "Cock (alt)",
  23155. image: {
  23156. source: "./media/characters/logan-grey/cock-alt.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(5 + 8 / 12, "feet")
  23164. },
  23165. {
  23166. name: "The 500 Foot Femboy",
  23167. height: math.unit(500, "feet"),
  23168. default: true
  23169. },
  23170. {
  23171. name: "Megmacro",
  23172. height: math.unit(20, "miles")
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(8 + 2 / 12, "feet"),
  23181. weight: math.unit(275, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/draganta/front.svg",
  23185. extra: 1177 / 1135,
  23186. bottom: 33.46 / 1212.1
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(8 + 6 / 12, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Macro",
  23198. height: math.unit(150, "feet")
  23199. },
  23200. {
  23201. name: "Megamacro",
  23202. height: math.unit(1000, "miles")
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23208. {
  23209. front: {
  23210. height: math.unit(1.72, "m"),
  23211. weight: math.unit(80, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/voski/front.svg",
  23215. extra: 2076.22 / 2022.4,
  23216. bottom: 102.7 / 2177.3866
  23217. }
  23218. },
  23219. frontFlaccid: {
  23220. height: math.unit(1.72, "m"),
  23221. weight: math.unit(80, "lb"),
  23222. name: "Front (Flaccid)",
  23223. image: {
  23224. source: "./media/characters/voski/front-flaccid.svg",
  23225. extra: 2076.22 / 2022.4,
  23226. bottom: 102.7 / 2177.3866
  23227. }
  23228. },
  23229. frontErect: {
  23230. height: math.unit(1.72, "m"),
  23231. weight: math.unit(80, "lb"),
  23232. name: "Front (Erect)",
  23233. image: {
  23234. source: "./media/characters/voski/front-erect.svg",
  23235. extra: 2076.22 / 2022.4,
  23236. bottom: 102.7 / 2177.3866
  23237. }
  23238. },
  23239. back: {
  23240. height: math.unit(1.72, "m"),
  23241. weight: math.unit(80, "lb"),
  23242. name: "Back",
  23243. image: {
  23244. source: "./media/characters/voski/back.svg",
  23245. extra: 2104 / 2051,
  23246. bottom: 10.45 / 2113.63
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(1.72, "m")
  23254. },
  23255. {
  23256. name: "Macro",
  23257. height: math.unit(55, "m"),
  23258. default: true
  23259. },
  23260. {
  23261. name: "Macro+",
  23262. height: math.unit(300, "m")
  23263. },
  23264. {
  23265. name: "Macro++",
  23266. height: math.unit(700, "m")
  23267. },
  23268. {
  23269. name: "Macro+++",
  23270. height: math.unit(4500, "m")
  23271. },
  23272. {
  23273. name: "Macro++++",
  23274. height: math.unit(45, "km")
  23275. },
  23276. {
  23277. name: "Macro+++++",
  23278. height: math.unit(1220, "km")
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(2.3, "m"),
  23287. weight: math.unit(304, "kg"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/icowom-lee/front.svg",
  23291. extra: 985 / 955,
  23292. bottom: 25.4 / 1012
  23293. }
  23294. },
  23295. fronttentacles: {
  23296. height: math.unit(2.3, "m"),
  23297. weight: math.unit(304, "kg"),
  23298. name: "Front-tentacles",
  23299. image: {
  23300. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23301. extra: 985 / 955,
  23302. bottom: 25.4 / 1012
  23303. }
  23304. },
  23305. back: {
  23306. height: math.unit(2.3, "m"),
  23307. weight: math.unit(304, "kg"),
  23308. name: "Back",
  23309. image: {
  23310. source: "./media/characters/icowom-lee/back.svg",
  23311. extra: 975 / 954,
  23312. bottom: 9.5 / 985
  23313. }
  23314. },
  23315. backtentacles: {
  23316. height: math.unit(2.3, "m"),
  23317. weight: math.unit(304, "kg"),
  23318. name: "Back-tentacles",
  23319. image: {
  23320. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23321. extra: 975 / 954,
  23322. bottom: 9.5 / 985
  23323. }
  23324. },
  23325. frontDressed: {
  23326. height: math.unit(2.3, "m"),
  23327. weight: math.unit(304, "kg"),
  23328. name: "Front (Dressed)",
  23329. image: {
  23330. source: "./media/characters/icowom-lee/front-dressed.svg",
  23331. extra: 3076 / 2933,
  23332. bottom: 51.4 / 3125.1889
  23333. }
  23334. },
  23335. rump: {
  23336. height: math.unit(0.776, "meters"),
  23337. name: "Rump",
  23338. image: {
  23339. source: "./media/characters/icowom-lee/rump.svg"
  23340. }
  23341. },
  23342. genitals: {
  23343. height: math.unit(0.78, "meters"),
  23344. name: "Genitals",
  23345. image: {
  23346. source: "./media/characters/icowom-lee/genitals.svg"
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(2.3, "meters"),
  23354. default: true
  23355. },
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(94, "meters"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(22, "meters"),
  23368. weight: math.unit(21000, "kg"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/shock-diamond/front.svg",
  23372. extra: 2204 / 2053,
  23373. bottom: 65 / 2239.47
  23374. }
  23375. },
  23376. frontNude: {
  23377. height: math.unit(22, "meters"),
  23378. weight: math.unit(21000, "kg"),
  23379. name: "Front (Nude)",
  23380. image: {
  23381. source: "./media/characters/shock-diamond/front-nude.svg",
  23382. extra: 2514 / 2285,
  23383. bottom: 13 / 2527.56
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(3, "meters")
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(22, "meters"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(5 + 4 / 12, "feet"),
  23404. weight: math.unit(120, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/rory/front.svg",
  23408. extra: 1318/1241,
  23409. bottom: 42/1360
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(5 + 4 / 12, "feet"),
  23414. weight: math.unit(120, "lb"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/rory/back.svg",
  23418. extra: 1318/1241,
  23419. bottom: 42/1360
  23420. }
  23421. },
  23422. butt: {
  23423. height: math.unit(1.74, "feet"),
  23424. name: "Butt",
  23425. image: {
  23426. source: "./media/characters/rory/butt.svg"
  23427. }
  23428. },
  23429. dick: {
  23430. height: math.unit(1.02, "feet"),
  23431. name: "Dick",
  23432. image: {
  23433. source: "./media/characters/rory/dick.svg"
  23434. }
  23435. },
  23436. paws: {
  23437. height: math.unit(1, "feet"),
  23438. name: "Paws",
  23439. image: {
  23440. source: "./media/characters/rory/paws.svg"
  23441. }
  23442. },
  23443. frontAlt: {
  23444. height: math.unit(5 + 4 / 12, "feet"),
  23445. weight: math.unit(120, "lb"),
  23446. name: "Front (Alt)",
  23447. image: {
  23448. source: "./media/characters/rory/front-alt.svg",
  23449. extra: 589 / 556,
  23450. bottom: 45.7 / 635.76
  23451. }
  23452. },
  23453. frontAltNude: {
  23454. height: math.unit(5 + 4 / 12, "feet"),
  23455. weight: math.unit(120, "lb"),
  23456. name: "Front (Alt, Nude)",
  23457. image: {
  23458. source: "./media/characters/rory/front-alt-nude.svg",
  23459. extra: 589 / 556,
  23460. bottom: 45.7 / 635.76
  23461. }
  23462. },
  23463. side: {
  23464. height: math.unit(5 + 4 / 12, "feet"),
  23465. weight: math.unit(120, "lb"),
  23466. name: "Side",
  23467. image: {
  23468. source: "./media/characters/rory/side.svg",
  23469. extra: 597 / 564,
  23470. bottom: 55 / 653
  23471. }
  23472. },
  23473. backAlt: {
  23474. height: math.unit(5 + 4 / 12, "feet"),
  23475. weight: math.unit(120, "lb"),
  23476. name: "Back (Alt)",
  23477. image: {
  23478. source: "./media/characters/rory/back-alt.svg",
  23479. extra: 620 / 585,
  23480. bottom: 8.86 / 630.43
  23481. }
  23482. },
  23483. dickAlt: {
  23484. height: math.unit(0.86, "feet"),
  23485. name: "Dick (Alt)",
  23486. image: {
  23487. source: "./media/characters/rory/dick-alt.svg"
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(5 + 4 / 12, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(100, "feet")
  23500. },
  23501. {
  23502. name: "Macro+",
  23503. height: math.unit(140, "feet")
  23504. },
  23505. {
  23506. name: "Macro++",
  23507. height: math.unit(300, "feet")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(5 + 9 / 12, "feet"),
  23516. weight: math.unit(190, "lb"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/sprisk/front.svg",
  23520. extra: 1225 / 1180,
  23521. bottom: 42.7 / 1266.4
  23522. }
  23523. },
  23524. frontNsfw: {
  23525. height: math.unit(5 + 9 / 12, "feet"),
  23526. weight: math.unit(190, "lb"),
  23527. name: "Front (NSFW)",
  23528. image: {
  23529. source: "./media/characters/sprisk/front-nsfw.svg",
  23530. extra: 1225 / 1180,
  23531. bottom: 42.7 / 1266.4
  23532. }
  23533. },
  23534. back: {
  23535. height: math.unit(5 + 9 / 12, "feet"),
  23536. weight: math.unit(190, "lb"),
  23537. name: "Back",
  23538. image: {
  23539. source: "./media/characters/sprisk/back.svg",
  23540. extra: 1247 / 1200,
  23541. bottom: 5.6 / 1253.04
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Tiny",
  23548. height: math.unit(2, "inches")
  23549. },
  23550. {
  23551. name: "Normal",
  23552. height: math.unit(5 + 9 / 12, "feet"),
  23553. default: true
  23554. },
  23555. {
  23556. name: "Mini Macro",
  23557. height: math.unit(18, "feet")
  23558. },
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(100, "feet")
  23562. },
  23563. {
  23564. name: "MACRO",
  23565. height: math.unit(50, "miles")
  23566. },
  23567. {
  23568. name: "M A C R O",
  23569. height: math.unit(300, "miles")
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23575. {
  23576. side: {
  23577. height: math.unit(15.6, "meters"),
  23578. weight: math.unit(700000, "kg"),
  23579. name: "Side",
  23580. image: {
  23581. source: "./media/characters/bunsen/side.svg",
  23582. extra: 1644 / 358
  23583. }
  23584. },
  23585. foot: {
  23586. height: math.unit(1.611 * 1644 / 358, "meter"),
  23587. name: "Foot",
  23588. image: {
  23589. source: "./media/characters/bunsen/foot.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Small",
  23596. height: math.unit(10, "feet")
  23597. },
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(15.6, "meters"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23607. {
  23608. front: {
  23609. height: math.unit(4 + 11 / 12, "feet"),
  23610. weight: math.unit(140, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/sesh/front.svg",
  23614. extra: 3420 / 3231,
  23615. bottom: 72 / 3949.5
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(4 + 11 / 12, "feet")
  23623. },
  23624. {
  23625. name: "Grown",
  23626. height: math.unit(15, "feet"),
  23627. default: true
  23628. },
  23629. {
  23630. name: "Macro",
  23631. height: math.unit(1500, "feet")
  23632. },
  23633. {
  23634. name: "Megamacro",
  23635. height: math.unit(30, "miles")
  23636. },
  23637. {
  23638. name: "Continental",
  23639. height: math.unit(3000, "miles")
  23640. },
  23641. {
  23642. name: "Gravity Mass",
  23643. height: math.unit(300000, "miles")
  23644. },
  23645. {
  23646. name: "Planet Buster",
  23647. height: math.unit(30000000, "miles")
  23648. },
  23649. {
  23650. name: "Big",
  23651. height: math.unit(3000000000, "miles")
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(9, "feet"),
  23660. weight: math.unit(350, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/pepper/front.svg",
  23664. extra: 1448 / 1312,
  23665. bottom: 9.4 / 1457.88
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(9, "feet"),
  23670. weight: math.unit(350, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/pepper/back.svg",
  23674. extra: 1423 / 1300,
  23675. bottom: 4.6 / 1429
  23676. }
  23677. },
  23678. maw: {
  23679. height: math.unit(0.932, "feet"),
  23680. name: "Maw",
  23681. image: {
  23682. source: "./media/characters/pepper/maw.svg"
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(9, "feet"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6, "feet"),
  23699. weight: math.unit(150, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/maelstrom/front.svg",
  23703. extra: 2100 / 1883,
  23704. bottom: 94 / 2196.7
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Less Kaiju",
  23711. height: math.unit(200, "feet")
  23712. },
  23713. {
  23714. name: "Kaiju",
  23715. height: math.unit(400, "feet"),
  23716. default: true
  23717. },
  23718. {
  23719. name: "Kaiju-er",
  23720. height: math.unit(600, "feet")
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(6 + 5 / 12, "feet"),
  23729. weight: math.unit(180, "lb"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/lexir/front.svg",
  23733. extra: 180 / 172,
  23734. bottom: 12 / 192
  23735. }
  23736. },
  23737. back: {
  23738. height: math.unit(6 + 5 / 12, "feet"),
  23739. weight: math.unit(180, "lb"),
  23740. name: "Back",
  23741. image: {
  23742. source: "./media/characters/lexir/back.svg",
  23743. extra: 1273/1201,
  23744. bottom: 39/1312
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Very Smal",
  23751. height: math.unit(1, "nm")
  23752. },
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(6 + 5 / 12, "feet"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Macro",
  23760. height: math.unit(1, "mile")
  23761. },
  23762. {
  23763. name: "Megamacro",
  23764. height: math.unit(50, "miles")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(1.5, "meters"),
  23773. weight: math.unit(100, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/maksio/front.svg",
  23777. extra: 1549 / 1531,
  23778. bottom: 123.7 / 1674.5429
  23779. }
  23780. },
  23781. back: {
  23782. height: math.unit(1.5, "meters"),
  23783. weight: math.unit(100, "lb"),
  23784. name: "Back",
  23785. image: {
  23786. source: "./media/characters/maksio/back.svg",
  23787. extra: 1541 / 1509,
  23788. bottom: 97 / 1639
  23789. }
  23790. },
  23791. hand: {
  23792. height: math.unit(0.621, "feet"),
  23793. name: "Hand",
  23794. image: {
  23795. source: "./media/characters/maksio/hand.svg"
  23796. }
  23797. },
  23798. foot: {
  23799. height: math.unit(1.611, "feet"),
  23800. name: "Foot",
  23801. image: {
  23802. source: "./media/characters/maksio/foot.svg"
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Shrunken",
  23809. height: math.unit(10, "cm")
  23810. },
  23811. {
  23812. name: "Normal",
  23813. height: math.unit(150, "cm"),
  23814. default: true
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(100, "feet"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/erza-bear/front.svg",
  23826. extra: 2449 / 2390,
  23827. bottom: 46 / 2494
  23828. }
  23829. },
  23830. back: {
  23831. height: math.unit(100, "feet"),
  23832. name: "Back",
  23833. image: {
  23834. source: "./media/characters/erza-bear/back.svg",
  23835. extra: 2489 / 2430,
  23836. bottom: 85.4 / 2480
  23837. }
  23838. },
  23839. tail: {
  23840. height: math.unit(42, "feet"),
  23841. name: "Tail",
  23842. image: {
  23843. source: "./media/characters/erza-bear/tail.svg"
  23844. }
  23845. },
  23846. tongue: {
  23847. height: math.unit(8, "feet"),
  23848. name: "Tongue",
  23849. image: {
  23850. source: "./media/characters/erza-bear/tongue.svg"
  23851. }
  23852. },
  23853. dick: {
  23854. height: math.unit(10.5, "feet"),
  23855. name: "Dick",
  23856. image: {
  23857. source: "./media/characters/erza-bear/dick.svg"
  23858. }
  23859. },
  23860. dickVertical: {
  23861. height: math.unit(16.9, "feet"),
  23862. name: "Dick (Vertical)",
  23863. image: {
  23864. source: "./media/characters/erza-bear/dick-vertical.svg"
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(100, "feet"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(172, "cm"),
  23881. weight: math.unit(73, "kg"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/violet-flor/front.svg",
  23885. extra: 1530 / 1442,
  23886. bottom: 61.9 / 1588.8
  23887. }
  23888. },
  23889. back: {
  23890. height: math.unit(180, "cm"),
  23891. weight: math.unit(73, "kg"),
  23892. name: "Back",
  23893. image: {
  23894. source: "./media/characters/violet-flor/back.svg",
  23895. extra: 1692 / 1630,
  23896. bottom: 20 / 1712
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(172, "cm"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(6, "feet"),
  23913. weight: math.unit(220, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/lynn-rhea/front.svg",
  23917. extra: 310 / 273
  23918. }
  23919. },
  23920. back: {
  23921. height: math.unit(6, "feet"),
  23922. weight: math.unit(220, "lb"),
  23923. name: "Back",
  23924. image: {
  23925. source: "./media/characters/lynn-rhea/back.svg",
  23926. extra: 310 / 273
  23927. }
  23928. },
  23929. dicks: {
  23930. height: math.unit(0.9, "feet"),
  23931. name: "Dicks",
  23932. image: {
  23933. source: "./media/characters/lynn-rhea/dicks.svg"
  23934. }
  23935. },
  23936. slit: {
  23937. height: math.unit(0.4, "feet"),
  23938. name: "Slit",
  23939. image: {
  23940. source: "./media/characters/lynn-rhea/slit.svg"
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Micro",
  23947. height: math.unit(1, "inch")
  23948. },
  23949. {
  23950. name: "Macro",
  23951. height: math.unit(60, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Megamacro",
  23956. height: math.unit(2, "miles")
  23957. },
  23958. {
  23959. name: "Gigamacro",
  23960. height: math.unit(3, "earths")
  23961. },
  23962. {
  23963. name: "Galactic",
  23964. height: math.unit(0.8, "galaxies")
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23970. {
  23971. front: {
  23972. height: math.unit(1600, "feet"),
  23973. weight: math.unit(85758785169, "kg"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/valathos/front.svg",
  23977. extra: 1451 / 1339
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Macro",
  23984. height: math.unit(1600, "feet"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(7 + 5 / 12, "feet"),
  23994. weight: math.unit(300, "lb"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/azula/front.svg",
  23998. extra: 3208 / 2880,
  23999. bottom: 80.2 / 3277
  24000. }
  24001. },
  24002. back: {
  24003. height: math.unit(7 + 5 / 12, "feet"),
  24004. weight: math.unit(300, "lb"),
  24005. name: "Back",
  24006. image: {
  24007. source: "./media/characters/azula/back.svg",
  24008. extra: 3169 / 2822,
  24009. bottom: 150.6 / 3321
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(7 + 5 / 12, "feet"),
  24017. default: true
  24018. },
  24019. {
  24020. name: "Big",
  24021. height: math.unit(20, "feet")
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(5 + 1 / 12, "feet"),
  24030. weight: math.unit(110, "lb"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/rupert/front.svg",
  24034. extra: 1549 / 1495,
  24035. bottom: 54.2 / 1604.4
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(5 + 1 / 12, "feet"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24049. {
  24050. front: {
  24051. height: math.unit(8 + 4 / 12, "feet"),
  24052. weight: math.unit(350, "lb"),
  24053. name: "Front",
  24054. image: {
  24055. source: "./media/characters/sheera-castellar/front.svg",
  24056. extra: 1957 / 1894,
  24057. bottom: 26.97 / 1975.017
  24058. }
  24059. },
  24060. side: {
  24061. height: math.unit(8 + 4 / 12, "feet"),
  24062. weight: math.unit(350, "lb"),
  24063. name: "Side",
  24064. image: {
  24065. source: "./media/characters/sheera-castellar/side.svg",
  24066. extra: 1957 / 1894
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(8 + 4 / 12, "feet"),
  24071. weight: math.unit(350, "lb"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/sheera-castellar/back.svg",
  24075. extra: 1957 / 1894
  24076. }
  24077. },
  24078. angled: {
  24079. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24080. weight: math.unit(350, "lb"),
  24081. name: "Angled",
  24082. image: {
  24083. source: "./media/characters/sheera-castellar/angled.svg",
  24084. extra: 1807 / 1707,
  24085. bottom: 68 / 1875
  24086. }
  24087. },
  24088. genitals: {
  24089. height: math.unit(2.2, "feet"),
  24090. name: "Genitals",
  24091. image: {
  24092. source: "./media/characters/sheera-castellar/genitals.svg"
  24093. }
  24094. },
  24095. taur: {
  24096. height: math.unit(10 + 6/12, "feet"),
  24097. name: "Taur",
  24098. image: {
  24099. source: "./media/characters/sheera-castellar/taur.svg",
  24100. extra: 2017/1909,
  24101. bottom: 185/2202
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(8 + 4 / 12, "feet")
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(150, "feet"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Macro+",
  24117. height: math.unit(800, "feet")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(6, "feet"),
  24126. weight: math.unit(150, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/jaipur/front.svg",
  24130. extra: 3860 / 3731,
  24131. bottom: 287 / 4140
  24132. }
  24133. },
  24134. back: {
  24135. height: math.unit(6, "feet"),
  24136. weight: math.unit(150, "lb"),
  24137. name: "Back",
  24138. image: {
  24139. source: "./media/characters/jaipur/back.svg",
  24140. extra: 1637/1561,
  24141. bottom: 154/1791
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Normal",
  24148. height: math.unit(1.85, "meters"),
  24149. default: true
  24150. },
  24151. {
  24152. name: "Macro",
  24153. height: math.unit(150, "meters")
  24154. },
  24155. {
  24156. name: "Macro+",
  24157. height: math.unit(0.5, "miles")
  24158. },
  24159. {
  24160. name: "Macro++",
  24161. height: math.unit(2.5, "miles")
  24162. },
  24163. {
  24164. name: "Macro+++",
  24165. height: math.unit(12, "miles")
  24166. },
  24167. {
  24168. name: "Macro++++",
  24169. height: math.unit(120, "miles")
  24170. },
  24171. {
  24172. name: "Macro+++++",
  24173. height: math.unit(1200, "miles")
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(6, "feet"),
  24182. weight: math.unit(150, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/sheila-wolf/front.svg",
  24186. extra: 1931 / 1808,
  24187. bottom: 29.5 / 1960
  24188. }
  24189. },
  24190. dick: {
  24191. height: math.unit(1.464, "feet"),
  24192. name: "Dick",
  24193. image: {
  24194. source: "./media/characters/sheila-wolf/dick.svg"
  24195. }
  24196. },
  24197. muzzle: {
  24198. height: math.unit(0.513, "feet"),
  24199. name: "Muzzle",
  24200. image: {
  24201. source: "./media/characters/sheila-wolf/muzzle.svg"
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(70, "feet"),
  24209. default: true
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(32, "meters"),
  24218. weight: math.unit(300000, "kg"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/almor/front.svg",
  24222. extra: 1408 / 1322,
  24223. bottom: 94.6 / 1506.5
  24224. }
  24225. },
  24226. },
  24227. [
  24228. {
  24229. name: "Macro",
  24230. height: math.unit(32, "meters"),
  24231. default: true
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24237. {
  24238. front: {
  24239. height: math.unit(7, "feet"),
  24240. weight: math.unit(200, "lb"),
  24241. name: "Front",
  24242. image: {
  24243. source: "./media/characters/silver/front.svg",
  24244. extra: 472.1 / 450.5,
  24245. bottom: 26.5 / 499.424
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Normal",
  24252. height: math.unit(7, "feet"),
  24253. default: true
  24254. },
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(800, "feet")
  24258. },
  24259. {
  24260. name: "Megamacro",
  24261. height: math.unit(250, "miles")
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(6, "feet"),
  24270. weight: math.unit(150, "lb"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/pliskin/front.svg",
  24274. extra: 1469 / 1359,
  24275. bottom: 70 / 1540
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Micro",
  24282. height: math.unit(3, "inches")
  24283. },
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(5 + 11 / 12, "feet"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Macro",
  24291. height: math.unit(120, "feet")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(6, "feet"),
  24300. weight: math.unit(150, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/sammy/front.svg",
  24304. extra: 1193 / 1089,
  24305. bottom: 30.5 / 1226
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Macro",
  24312. height: math.unit(1700, "feet"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Examacro",
  24317. height: math.unit(2.5e9, "lightyears")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(21, "meters"),
  24326. weight: math.unit(12, "tonnes"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/kuru/front.svg",
  24330. extra: 4301 / 3785,
  24331. bottom: 371.3 / 4691
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Macro",
  24338. height: math.unit(21, "meters"),
  24339. default: true
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24345. {
  24346. front: {
  24347. height: math.unit(23, "meters"),
  24348. weight: math.unit(12.2, "tonnes"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/rakka/front.svg",
  24352. extra: 4670 / 4169,
  24353. bottom: 301 / 4968.7
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Macro",
  24360. height: math.unit(23, "meters"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(6, "feet"),
  24370. weight: math.unit(150, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/rhys-feline/front.svg",
  24374. extra: 2488 / 2308,
  24375. bottom: 35.67 / 2519.19
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Really Small",
  24382. height: math.unit(1, "nm")
  24383. },
  24384. {
  24385. name: "Micro",
  24386. height: math.unit(4, "inches")
  24387. },
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(4 + 10 / 12, "feet"),
  24391. default: true
  24392. },
  24393. {
  24394. name: "Macro",
  24395. height: math.unit(100, "feet")
  24396. },
  24397. {
  24398. name: "Megamacto",
  24399. height: math.unit(50, "miles")
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24405. {
  24406. side: {
  24407. height: math.unit(30, "feet"),
  24408. weight: math.unit(35000, "kg"),
  24409. name: "Side",
  24410. image: {
  24411. source: "./media/characters/alydar/side.svg",
  24412. extra: 234 / 222,
  24413. bottom: 6.5 / 241
  24414. }
  24415. },
  24416. front: {
  24417. height: math.unit(30, "feet"),
  24418. weight: math.unit(35000, "kg"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/alydar/front.svg",
  24422. extra: 223.37 / 210.2,
  24423. bottom: 22.3 / 246.76
  24424. }
  24425. },
  24426. top: {
  24427. height: math.unit(64.54, "feet"),
  24428. weight: math.unit(35000, "kg"),
  24429. name: "Top",
  24430. image: {
  24431. source: "./media/characters/alydar/top.svg"
  24432. }
  24433. },
  24434. anthro: {
  24435. height: math.unit(30, "feet"),
  24436. weight: math.unit(9000, "kg"),
  24437. name: "Anthro",
  24438. image: {
  24439. source: "./media/characters/alydar/anthro.svg",
  24440. extra: 432 / 421,
  24441. bottom: 7.18 / 440
  24442. }
  24443. },
  24444. maw: {
  24445. height: math.unit(11.693, "feet"),
  24446. name: "Maw",
  24447. image: {
  24448. source: "./media/characters/alydar/maw.svg"
  24449. }
  24450. },
  24451. head: {
  24452. height: math.unit(11.693, "feet"),
  24453. name: "Head",
  24454. image: {
  24455. source: "./media/characters/alydar/head.svg"
  24456. }
  24457. },
  24458. headAlt: {
  24459. height: math.unit(12.861, "feet"),
  24460. name: "Head (Alt)",
  24461. image: {
  24462. source: "./media/characters/alydar/head-alt.svg"
  24463. }
  24464. },
  24465. wing: {
  24466. height: math.unit(20.712, "feet"),
  24467. name: "Wing",
  24468. image: {
  24469. source: "./media/characters/alydar/wing.svg"
  24470. }
  24471. },
  24472. wingFeather: {
  24473. height: math.unit(9.662, "feet"),
  24474. name: "Wing Feather",
  24475. image: {
  24476. source: "./media/characters/alydar/wing-feather.svg"
  24477. }
  24478. },
  24479. countourFeather: {
  24480. height: math.unit(4.154, "feet"),
  24481. name: "Contour Feather",
  24482. image: {
  24483. source: "./media/characters/alydar/contour-feather.svg"
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Diplomatic",
  24490. height: math.unit(13, "feet"),
  24491. default: true
  24492. },
  24493. {
  24494. name: "Small",
  24495. height: math.unit(30, "feet")
  24496. },
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(95, "feet"),
  24500. default: true
  24501. },
  24502. {
  24503. name: "Large",
  24504. height: math.unit(285, "feet")
  24505. },
  24506. {
  24507. name: "Incomprehensible",
  24508. height: math.unit(450, "megameters")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24514. {
  24515. side: {
  24516. height: math.unit(11, "feet"),
  24517. weight: math.unit(1750, "kg"),
  24518. name: "Side",
  24519. image: {
  24520. source: "./media/characters/selicia/side.svg",
  24521. extra: 440 / 396,
  24522. bottom: 24.8 / 465.979
  24523. }
  24524. },
  24525. maw: {
  24526. height: math.unit(4.665, "feet"),
  24527. name: "Maw",
  24528. image: {
  24529. source: "./media/characters/selicia/maw.svg"
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(11, "feet"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24543. {
  24544. side: {
  24545. height: math.unit(2 + 6 / 12, "feet"),
  24546. weight: math.unit(30, "lb"),
  24547. name: "Side",
  24548. image: {
  24549. source: "./media/characters/layla/side.svg",
  24550. extra: 244 / 188,
  24551. bottom: 18.2 / 262.1
  24552. }
  24553. },
  24554. back: {
  24555. height: math.unit(2 + 6 / 12, "feet"),
  24556. weight: math.unit(30, "lb"),
  24557. name: "Back",
  24558. image: {
  24559. source: "./media/characters/layla/back.svg",
  24560. extra: 308 / 241.5,
  24561. bottom: 8.9 / 316.8
  24562. }
  24563. },
  24564. cumming: {
  24565. height: math.unit(2 + 6 / 12, "feet"),
  24566. weight: math.unit(30, "lb"),
  24567. name: "Cumming",
  24568. image: {
  24569. source: "./media/characters/layla/cumming.svg",
  24570. extra: 342 / 279,
  24571. bottom: 595 / 938
  24572. }
  24573. },
  24574. dickFlaccid: {
  24575. height: math.unit(2.595, "feet"),
  24576. name: "Flaccid Genitals",
  24577. image: {
  24578. source: "./media/characters/layla/dick-flaccid.svg"
  24579. }
  24580. },
  24581. dickErect: {
  24582. height: math.unit(2.359, "feet"),
  24583. name: "Erect Genitals",
  24584. image: {
  24585. source: "./media/characters/layla/dick-erect.svg"
  24586. }
  24587. },
  24588. dragon: {
  24589. height: math.unit(40, "feet"),
  24590. name: "Dragon",
  24591. image: {
  24592. source: "./media/characters/layla/dragon.svg",
  24593. extra: 610/535,
  24594. bottom: 367/977
  24595. }
  24596. },
  24597. taur: {
  24598. height: math.unit(30, "feet"),
  24599. name: "Taur",
  24600. image: {
  24601. source: "./media/characters/layla/taur.svg",
  24602. extra: 1268/1199,
  24603. bottom: 112/1380
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Micro",
  24610. height: math.unit(1, "inch")
  24611. },
  24612. {
  24613. name: "Small",
  24614. height: math.unit(1, "foot")
  24615. },
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(2 + 6 / 12, "feet"),
  24619. default: true
  24620. },
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(200, "feet")
  24624. },
  24625. {
  24626. name: "Megamacro",
  24627. height: math.unit(1000, "miles")
  24628. },
  24629. {
  24630. name: "Planetary",
  24631. height: math.unit(8000, "miles")
  24632. },
  24633. {
  24634. name: "True Layla",
  24635. height: math.unit(200000 * 7, "multiverses")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24641. {
  24642. back: {
  24643. height: math.unit(10.5, "feet"),
  24644. weight: math.unit(800, "lb"),
  24645. name: "Back",
  24646. image: {
  24647. source: "./media/characters/knox/back.svg",
  24648. extra: 1486 / 1089,
  24649. bottom: 107 / 1601.4
  24650. }
  24651. },
  24652. side: {
  24653. height: math.unit(10.5, "feet"),
  24654. weight: math.unit(800, "lb"),
  24655. name: "Side",
  24656. image: {
  24657. source: "./media/characters/knox/side.svg",
  24658. extra: 244 / 218,
  24659. bottom: 14 / 260
  24660. }
  24661. },
  24662. },
  24663. [
  24664. {
  24665. name: "Compact",
  24666. height: math.unit(10.5, "feet"),
  24667. default: true
  24668. },
  24669. {
  24670. name: "Dynamax",
  24671. height: math.unit(210, "feet")
  24672. },
  24673. {
  24674. name: "Full Macro",
  24675. height: math.unit(850, "feet")
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(28, "feet"),
  24684. weight: math.unit(10500, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/kayda/front.svg",
  24688. extra: 1536 / 1428,
  24689. bottom: 68.7 / 1603
  24690. }
  24691. },
  24692. back: {
  24693. height: math.unit(28, "feet"),
  24694. weight: math.unit(10500, "lb"),
  24695. name: "Back",
  24696. image: {
  24697. source: "./media/characters/kayda/back.svg",
  24698. extra: 1557 / 1464,
  24699. bottom: 39.5 / 1597.49
  24700. }
  24701. },
  24702. dick: {
  24703. height: math.unit(3.858, "feet"),
  24704. name: "Dick",
  24705. image: {
  24706. source: "./media/characters/kayda/dick.svg"
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Macro",
  24713. height: math.unit(28, "feet"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24720. {
  24721. front: {
  24722. height: math.unit(10 + 11 / 12, "feet"),
  24723. weight: math.unit(1400, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/brian/front.svg",
  24727. extra: 737 / 692,
  24728. bottom: 55.4 / 785
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(10 + 11 / 12, "feet"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(5 + 8 / 12, "feet"),
  24745. weight: math.unit(140, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/khemri/front.svg",
  24749. extra: 4780 / 4059,
  24750. bottom: 80.1 / 4859.25
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Micro",
  24757. height: math.unit(6, "inches")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(5 + 8 / 12, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24768. {
  24769. front: {
  24770. height: math.unit(13, "feet"),
  24771. weight: math.unit(1700, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/felix-braveheart/front.svg",
  24775. extra: 1222 / 1157,
  24776. bottom: 53.2 / 1280
  24777. }
  24778. },
  24779. back: {
  24780. height: math.unit(13, "feet"),
  24781. weight: math.unit(1700, "lb"),
  24782. name: "Back",
  24783. image: {
  24784. source: "./media/characters/felix-braveheart/back.svg",
  24785. extra: 1277 / 1203,
  24786. bottom: 50.2 / 1327
  24787. }
  24788. },
  24789. feral: {
  24790. height: math.unit(6, "feet"),
  24791. weight: math.unit(400, "lb"),
  24792. name: "Feral",
  24793. image: {
  24794. source: "./media/characters/felix-braveheart/feral.svg",
  24795. extra: 682 / 625,
  24796. bottom: 6.9 / 688
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(13, "feet"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24810. {
  24811. side: {
  24812. height: math.unit(5 + 11 / 12, "feet"),
  24813. weight: math.unit(1400, "lb"),
  24814. name: "Side",
  24815. image: {
  24816. source: "./media/characters/shadow-blade/side.svg",
  24817. extra: 1726 / 1267,
  24818. bottom: 58.4 / 1785
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(5 + 11 / 12, "feet"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(1 + 6 / 12, "feet"),
  24835. weight: math.unit(25, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/karla-halldor/front.svg",
  24839. extra: 1459 / 1383,
  24840. bottom: 12 / 1472
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(1 + 6 / 12, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(6 + 2 / 12, "feet"),
  24857. weight: math.unit(160, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/ariam/front.svg",
  24861. extra: 1073/976,
  24862. bottom: 52/1125
  24863. }
  24864. },
  24865. back: {
  24866. height: math.unit(6 + 2/12, "feet"),
  24867. weight: math.unit(160, "lb"),
  24868. name: "Back",
  24869. image: {
  24870. source: "./media/characters/ariam/back.svg",
  24871. extra: 1103/1023,
  24872. bottom: 9/1112
  24873. }
  24874. },
  24875. dressed: {
  24876. height: math.unit(6 + 2/12, "feet"),
  24877. weight: math.unit(160, "lb"),
  24878. name: "Dressed",
  24879. image: {
  24880. source: "./media/characters/ariam/dressed.svg",
  24881. extra: 1099/1009,
  24882. bottom: 25/1124
  24883. }
  24884. },
  24885. squatting: {
  24886. height: math.unit(4.1, "feet"),
  24887. weight: math.unit(160, "lb"),
  24888. name: "Squatting",
  24889. image: {
  24890. source: "./media/characters/ariam/squatting.svg",
  24891. extra: 2617 / 2112,
  24892. bottom: 61.2 / 2681,
  24893. }
  24894. },
  24895. },
  24896. [
  24897. {
  24898. name: "Normal",
  24899. height: math.unit(6 + 2 / 12, "feet"),
  24900. default: true
  24901. },
  24902. {
  24903. name: "Normal+",
  24904. height: math.unit(4, "meters")
  24905. },
  24906. {
  24907. name: "Macro",
  24908. height: math.unit(50, "meters")
  24909. },
  24910. {
  24911. name: "Macro+",
  24912. height: math.unit(100, "meters")
  24913. },
  24914. {
  24915. name: "Megamacro",
  24916. height: math.unit(20, "km")
  24917. },
  24918. {
  24919. name: "Caretaker",
  24920. height: math.unit(444, "megameters")
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(1.67, "meters"),
  24929. weight: math.unit(140, "lb"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24933. extra: 438 / 410,
  24934. bottom: 0.75 / 439
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Shrunken",
  24941. height: math.unit(7.6, "cm")
  24942. },
  24943. {
  24944. name: "Human Scale",
  24945. height: math.unit(1.67, "meters")
  24946. },
  24947. {
  24948. name: "Wolxi Scale",
  24949. height: math.unit(36.7, "meters"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(1.73, "meters"),
  24959. weight: math.unit(240, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/izue-two-mothers/front.svg",
  24963. extra: 469 / 437,
  24964. bottom: 1.24 / 470.6
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Shrunken",
  24971. height: math.unit(7.86, "cm")
  24972. },
  24973. {
  24974. name: "Human Scale",
  24975. height: math.unit(1.73, "meters")
  24976. },
  24977. {
  24978. name: "Wolxi Scale",
  24979. height: math.unit(38, "meters"),
  24980. default: true
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(1.55, "meters"),
  24989. weight: math.unit(120, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/teeku-love-shack/front.svg",
  24993. extra: 387 / 362,
  24994. bottom: 1.51 / 388
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Shrunken",
  25001. height: math.unit(7, "cm")
  25002. },
  25003. {
  25004. name: "Human Scale",
  25005. height: math.unit(1.55, "meters")
  25006. },
  25007. {
  25008. name: "Wolxi Scale",
  25009. height: math.unit(34.1, "meters"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(1.83, "meters"),
  25019. weight: math.unit(135, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/dejma-the-red/front.svg",
  25023. extra: 480 / 458,
  25024. bottom: 1.8 / 482
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Shrunken",
  25031. height: math.unit(8.3, "cm")
  25032. },
  25033. {
  25034. name: "Human Scale",
  25035. height: math.unit(1.83, "meters")
  25036. },
  25037. {
  25038. name: "Wolxi Scale",
  25039. height: math.unit(40, "meters"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(1.78, "meters"),
  25049. weight: math.unit(65, "kg"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/aki/front.svg",
  25053. extra: 452 / 415
  25054. }
  25055. },
  25056. frontNsfw: {
  25057. height: math.unit(1.78, "meters"),
  25058. weight: math.unit(65, "kg"),
  25059. name: "Front (NSFW)",
  25060. image: {
  25061. source: "./media/characters/aki/front-nsfw.svg",
  25062. extra: 452 / 415
  25063. }
  25064. },
  25065. back: {
  25066. height: math.unit(1.78, "meters"),
  25067. weight: math.unit(65, "kg"),
  25068. name: "Back",
  25069. image: {
  25070. source: "./media/characters/aki/back.svg",
  25071. extra: 452 / 415
  25072. }
  25073. },
  25074. rump: {
  25075. height: math.unit(2.05, "feet"),
  25076. name: "Rump",
  25077. image: {
  25078. source: "./media/characters/aki/rump.svg"
  25079. }
  25080. },
  25081. dick: {
  25082. height: math.unit(0.95, "feet"),
  25083. name: "Dick",
  25084. image: {
  25085. source: "./media/characters/aki/dick.svg"
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Micro",
  25092. height: math.unit(15, "cm")
  25093. },
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(178, "cm"),
  25097. default: true
  25098. },
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(214, "m")
  25102. },
  25103. {
  25104. name: "Macro+",
  25105. height: math.unit(534, "m")
  25106. },
  25107. ]
  25108. ))
  25109. characterMakers.push(() => makeCharacter(
  25110. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25111. {
  25112. front: {
  25113. height: math.unit(5 + 5 / 12, "feet"),
  25114. weight: math.unit(120, "lb"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/ari/front.svg",
  25118. extra: 1550/1471,
  25119. bottom: 39/1589
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(5 + 5 / 12, "feet")
  25127. },
  25128. {
  25129. name: "Macro",
  25130. height: math.unit(100, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Megamacro",
  25135. height: math.unit(100, "miles")
  25136. },
  25137. {
  25138. name: "Gigamacro",
  25139. height: math.unit(80000, "miles")
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25145. {
  25146. side: {
  25147. height: math.unit(9, "feet"),
  25148. weight: math.unit(400, "kg"),
  25149. name: "Side",
  25150. image: {
  25151. source: "./media/characters/bolt/side.svg",
  25152. extra: 1126 / 896,
  25153. bottom: 60 / 1187.3,
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Micro",
  25160. height: math.unit(5, "inches")
  25161. },
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(9, "feet"),
  25165. default: true
  25166. },
  25167. {
  25168. name: "Macro",
  25169. height: math.unit(700, "feet")
  25170. },
  25171. {
  25172. name: "Max Size",
  25173. height: math.unit(1.52e22, "yottameters")
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(4.3, "meters"),
  25182. weight: math.unit(3, "tons"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/draekon-sylviar/front.svg",
  25186. extra: 2072/1512,
  25187. bottom: 74/2146
  25188. }
  25189. },
  25190. back: {
  25191. height: math.unit(4.3, "meters"),
  25192. weight: math.unit(3, "tons"),
  25193. name: "Back",
  25194. image: {
  25195. source: "./media/characters/draekon-sylviar/back.svg",
  25196. extra: 1639/1483,
  25197. bottom: 41/1680
  25198. }
  25199. },
  25200. feral: {
  25201. height: math.unit(1.15, "meters"),
  25202. weight: math.unit(3, "tons"),
  25203. name: "Feral",
  25204. image: {
  25205. source: "./media/characters/draekon-sylviar/feral.svg",
  25206. extra: 1033/395,
  25207. bottom: 130/1163
  25208. }
  25209. },
  25210. maw: {
  25211. height: math.unit(1.3, "meters"),
  25212. name: "Maw",
  25213. image: {
  25214. source: "./media/characters/draekon-sylviar/maw.svg"
  25215. }
  25216. },
  25217. mawSeparated: {
  25218. height: math.unit(1.53, "meters"),
  25219. name: "Separated Maw",
  25220. image: {
  25221. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25222. }
  25223. },
  25224. tail: {
  25225. height: math.unit(1.15, "meters"),
  25226. name: "Tail",
  25227. image: {
  25228. source: "./media/characters/draekon-sylviar/tail.svg"
  25229. }
  25230. },
  25231. tailDick: {
  25232. height: math.unit(1.15, "meters"),
  25233. name: "Tail (Dick)",
  25234. image: {
  25235. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25236. }
  25237. },
  25238. tailDickSeparated: {
  25239. height: math.unit(1.19, "meters"),
  25240. name: "Tail (Separated Dick)",
  25241. image: {
  25242. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25243. }
  25244. },
  25245. slit: {
  25246. height: math.unit(1, "meters"),
  25247. name: "Slit",
  25248. image: {
  25249. source: "./media/characters/draekon-sylviar/slit.svg"
  25250. }
  25251. },
  25252. dick: {
  25253. height: math.unit(1.15, "meters"),
  25254. name: "Dick",
  25255. image: {
  25256. source: "./media/characters/draekon-sylviar/dick.svg"
  25257. }
  25258. },
  25259. dickSeparated: {
  25260. height: math.unit(1.1, "meters"),
  25261. name: "Separated Dick",
  25262. image: {
  25263. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25264. }
  25265. },
  25266. sheath: {
  25267. height: math.unit(1.15, "meters"),
  25268. name: "Sheath",
  25269. image: {
  25270. source: "./media/characters/draekon-sylviar/sheath.svg"
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Small",
  25277. height: math.unit(4.53 / 2, "meters"),
  25278. default: true
  25279. },
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(4.53, "meters"),
  25283. default: true
  25284. },
  25285. {
  25286. name: "Large",
  25287. height: math.unit(4.53 * 2, "meters"),
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25293. {
  25294. front: {
  25295. height: math.unit(6 + 2 / 12, "feet"),
  25296. weight: math.unit(180, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/brawler/front.svg",
  25300. extra: 3301 / 3027,
  25301. bottom: 138 / 3439
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(6 + 2 / 12, "feet"),
  25309. default: true
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25315. {
  25316. front: {
  25317. height: math.unit(11, "feet"),
  25318. weight: math.unit(1000, "lb"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/alex/front.svg",
  25322. bottom: 44.5 / 620
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Micro",
  25329. height: math.unit(5, "inches")
  25330. },
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(11, "feet"),
  25334. default: true
  25335. },
  25336. {
  25337. name: "Macro",
  25338. height: math.unit(9.5e9, "feet")
  25339. },
  25340. {
  25341. name: "Max Size",
  25342. height: math.unit(1.4e283, "yottameters")
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25348. {
  25349. female: {
  25350. height: math.unit(29.9, "m"),
  25351. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25352. name: "Female",
  25353. image: {
  25354. source: "./media/characters/zenari/female.svg",
  25355. extra: 3281.6 / 3217,
  25356. bottom: 72.2 / 3353
  25357. }
  25358. },
  25359. male: {
  25360. height: math.unit(27.7, "m"),
  25361. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25362. name: "Male",
  25363. image: {
  25364. source: "./media/characters/zenari/male.svg",
  25365. extra: 3008 / 2991,
  25366. bottom: 54.6 / 3069
  25367. }
  25368. },
  25369. },
  25370. [
  25371. {
  25372. name: "Macro",
  25373. height: math.unit(29.7, "meters"),
  25374. default: true
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25380. {
  25381. female: {
  25382. height: math.unit(23.8, "m"),
  25383. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25384. name: "Female",
  25385. image: {
  25386. source: "./media/characters/mactarian/female.svg",
  25387. extra: 2662 / 2569,
  25388. bottom: 73 / 2736
  25389. }
  25390. },
  25391. male: {
  25392. height: math.unit(23.8, "m"),
  25393. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25394. name: "Male",
  25395. image: {
  25396. source: "./media/characters/mactarian/male.svg",
  25397. extra: 2673 / 2600,
  25398. bottom: 76 / 2750
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(23.8, "meters"),
  25406. default: true
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25412. {
  25413. female: {
  25414. height: math.unit(19.3, "m"),
  25415. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25416. name: "Female",
  25417. image: {
  25418. source: "./media/characters/umok/female.svg",
  25419. extra: 2186 / 2078,
  25420. bottom: 87 / 2277
  25421. }
  25422. },
  25423. male: {
  25424. height: math.unit(19.5, "m"),
  25425. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25426. name: "Male",
  25427. image: {
  25428. source: "./media/characters/umok/male.svg",
  25429. extra: 2233 / 2140,
  25430. bottom: 24.4 / 2258
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(19.3, "meters"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25444. {
  25445. female: {
  25446. height: math.unit(26.15, "m"),
  25447. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25448. name: "Female",
  25449. image: {
  25450. source: "./media/characters/joraxian/female.svg",
  25451. extra: 2912 / 2824,
  25452. bottom: 36 / 2956
  25453. }
  25454. },
  25455. male: {
  25456. height: math.unit(25.4, "m"),
  25457. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25458. name: "Male",
  25459. image: {
  25460. source: "./media/characters/joraxian/male.svg",
  25461. extra: 2877 / 2721,
  25462. bottom: 82 / 2967
  25463. }
  25464. },
  25465. },
  25466. [
  25467. {
  25468. name: "Macro",
  25469. height: math.unit(26.15, "meters"),
  25470. default: true
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25476. {
  25477. female: {
  25478. height: math.unit(21.6, "m"),
  25479. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25480. name: "Female",
  25481. image: {
  25482. source: "./media/characters/sthara/female.svg",
  25483. extra: 2516 / 2347,
  25484. bottom: 21.5 / 2537
  25485. }
  25486. },
  25487. male: {
  25488. height: math.unit(24, "m"),
  25489. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25490. name: "Male",
  25491. image: {
  25492. source: "./media/characters/sthara/male.svg",
  25493. extra: 2732 / 2607,
  25494. bottom: 23 / 2732
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(21.6, "meters"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(6 + 4 / 12, "feet"),
  25511. weight: math.unit(175, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/luka-bryzant/front.svg",
  25515. extra: 311 / 289,
  25516. bottom: 4 / 315
  25517. }
  25518. },
  25519. back: {
  25520. height: math.unit(6 + 4 / 12, "feet"),
  25521. weight: math.unit(175, "lb"),
  25522. name: "Back",
  25523. image: {
  25524. source: "./media/characters/luka-bryzant/back.svg",
  25525. extra: 311 / 289,
  25526. bottom: 3.8 / 313.7
  25527. }
  25528. },
  25529. },
  25530. [
  25531. {
  25532. name: "Micro",
  25533. height: math.unit(10, "inches")
  25534. },
  25535. {
  25536. name: "Normal",
  25537. height: math.unit(6 + 4 / 12, "feet"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Large",
  25542. height: math.unit(12, "feet")
  25543. },
  25544. ]
  25545. ))
  25546. characterMakers.push(() => makeCharacter(
  25547. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25548. {
  25549. front: {
  25550. height: math.unit(5 + 7 / 12, "feet"),
  25551. weight: math.unit(185, "lb"),
  25552. name: "Front",
  25553. image: {
  25554. source: "./media/characters/aman-aquila/front.svg",
  25555. extra: 1013 / 976,
  25556. bottom: 45.6 / 1057
  25557. }
  25558. },
  25559. side: {
  25560. height: math.unit(5 + 7 / 12, "feet"),
  25561. weight: math.unit(185, "lb"),
  25562. name: "Side",
  25563. image: {
  25564. source: "./media/characters/aman-aquila/side.svg",
  25565. extra: 1054 / 1011,
  25566. bottom: 15 / 1070
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(5 + 7 / 12, "feet"),
  25571. weight: math.unit(185, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/aman-aquila/back.svg",
  25575. extra: 1026 / 970,
  25576. bottom: 12 / 1039
  25577. }
  25578. },
  25579. head: {
  25580. height: math.unit(1.211, "feet"),
  25581. name: "Head",
  25582. image: {
  25583. source: "./media/characters/aman-aquila/head.svg",
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Minimicro",
  25590. height: math.unit(0.057, "inches")
  25591. },
  25592. {
  25593. name: "Micro",
  25594. height: math.unit(7, "inches")
  25595. },
  25596. {
  25597. name: "Mini",
  25598. height: math.unit(3 + 7 / 12, "feet")
  25599. },
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(5 + 7 / 12, "feet"),
  25603. default: true
  25604. },
  25605. {
  25606. name: "Macro",
  25607. height: math.unit(157 + 7 / 12, "feet")
  25608. },
  25609. {
  25610. name: "Megamacro",
  25611. height: math.unit(1557 + 7 / 12, "feet")
  25612. },
  25613. {
  25614. name: "Gigamacro",
  25615. height: math.unit(15557 + 7 / 12, "feet")
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(3 + 2 / 12, "inches"),
  25624. weight: math.unit(0.3, "ounces"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/hiphae/front.svg",
  25628. extra: 1931 / 1683,
  25629. bottom: 24 / 1955
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(3 + 1 / 2, "inches"),
  25637. default: true
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(5 + 10 / 12, "feet"),
  25646. weight: math.unit(165, "lb"),
  25647. name: "Front",
  25648. image: {
  25649. source: "./media/characters/nicky/front.svg",
  25650. extra: 3144 / 2886,
  25651. bottom: 45.6 / 3192
  25652. }
  25653. },
  25654. back: {
  25655. height: math.unit(5 + 10 / 12, "feet"),
  25656. weight: math.unit(165, "lb"),
  25657. name: "Back",
  25658. image: {
  25659. source: "./media/characters/nicky/back.svg",
  25660. extra: 3055 / 2804,
  25661. bottom: 28.4 / 3087
  25662. }
  25663. },
  25664. frontclothed: {
  25665. height: math.unit(5 + 10 / 12, "feet"),
  25666. weight: math.unit(165, "lb"),
  25667. name: "Front-clothed",
  25668. image: {
  25669. source: "./media/characters/nicky/front-clothed.svg",
  25670. extra: 3184.9 / 2926.9,
  25671. bottom: 86.5 / 3239.9
  25672. }
  25673. },
  25674. foot: {
  25675. height: math.unit(1.16, "feet"),
  25676. name: "Foot",
  25677. image: {
  25678. source: "./media/characters/nicky/foot.svg"
  25679. }
  25680. },
  25681. feet: {
  25682. height: math.unit(1.34, "feet"),
  25683. name: "Feet",
  25684. image: {
  25685. source: "./media/characters/nicky/feet.svg"
  25686. }
  25687. },
  25688. maw: {
  25689. height: math.unit(0.9, "feet"),
  25690. name: "Maw",
  25691. image: {
  25692. source: "./media/characters/nicky/maw.svg"
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(5 + 10 / 12, "feet"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "Macro",
  25704. height: math.unit(60, "feet")
  25705. },
  25706. {
  25707. name: "Megamacro",
  25708. height: math.unit(1, "mile")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25714. {
  25715. side: {
  25716. height: math.unit(10, "feet"),
  25717. weight: math.unit(600, "lb"),
  25718. name: "Side",
  25719. image: {
  25720. source: "./media/characters/blair/side.svg",
  25721. bottom: 16.6 / 475,
  25722. extra: 458 / 431
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Micro",
  25729. height: math.unit(8, "inches")
  25730. },
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(10, "feet"),
  25734. default: true
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(180, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(5 + 4 / 12, "feet"),
  25747. weight: math.unit(125, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/fisher/front.svg",
  25751. extra: 444 / 390,
  25752. bottom: 2 / 444.8
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Micro",
  25759. height: math.unit(4, "inches")
  25760. },
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(5 + 4 / 12, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Macro",
  25768. height: math.unit(100, "feet")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(6.71, "feet"),
  25777. weight: math.unit(200, "lb"),
  25778. capacity: math.unit(1000000, "people"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/gliss/front.svg",
  25782. extra: 2347 / 2231,
  25783. bottom: 113 / 2462
  25784. }
  25785. },
  25786. hammerspaceSize: {
  25787. height: math.unit(6.71 * 717, "feet"),
  25788. weight: math.unit(200, "lb"),
  25789. capacity: math.unit(1000000, "people"),
  25790. name: "Hammerspace Size",
  25791. image: {
  25792. source: "./media/characters/gliss/front.svg",
  25793. extra: 2347 / 2231,
  25794. bottom: 113 / 2462
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Normal",
  25801. height: math.unit(6.71, "feet"),
  25802. default: true
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25808. {
  25809. side: {
  25810. height: math.unit(1.44, "m"),
  25811. weight: math.unit(80, "kg"),
  25812. name: "Side",
  25813. image: {
  25814. source: "./media/characters/dune-anderson/side.svg",
  25815. bottom: 49 / 1426
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Wolf-sized",
  25822. height: math.unit(1.44, "meters")
  25823. },
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(5.05, "meters"),
  25827. default: true
  25828. },
  25829. {
  25830. name: "Big",
  25831. height: math.unit(14.4, "meters")
  25832. },
  25833. {
  25834. name: "Huge",
  25835. height: math.unit(144, "meters")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(7, "feet"),
  25844. weight: math.unit(425, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/hind/front.svg",
  25848. extra: 2091 / 1860,
  25849. bottom: 129 / 2220
  25850. }
  25851. },
  25852. back: {
  25853. height: math.unit(7, "feet"),
  25854. weight: math.unit(425, "lb"),
  25855. name: "Back",
  25856. image: {
  25857. source: "./media/characters/hind/back.svg",
  25858. extra: 2091 / 1860,
  25859. bottom: 24.6 / 2309
  25860. }
  25861. },
  25862. tail: {
  25863. height: math.unit(2.8, "feet"),
  25864. name: "Tail",
  25865. image: {
  25866. source: "./media/characters/hind/tail.svg"
  25867. }
  25868. },
  25869. head: {
  25870. height: math.unit(2.55, "feet"),
  25871. name: "Head",
  25872. image: {
  25873. source: "./media/characters/hind/head.svg"
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "XS",
  25880. height: math.unit(0.7, "feet")
  25881. },
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(7, "feet"),
  25885. default: true
  25886. },
  25887. {
  25888. name: "XL",
  25889. height: math.unit(70, "feet")
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(2.1, "meters"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/tharquench-sizestealer/front.svg",
  25902. extra: 1605/1470,
  25903. bottom: 36/1641
  25904. }
  25905. },
  25906. frontAlt: {
  25907. height: math.unit(2.1, "meters"),
  25908. weight: math.unit(150, "lb"),
  25909. name: "Front (Alt)",
  25910. image: {
  25911. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25912. extra: 2318 / 2063,
  25913. bottom: 93.4 / 2410
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Nano",
  25920. height: math.unit(1, "mm")
  25921. },
  25922. {
  25923. name: "Micro",
  25924. height: math.unit(1, "cm")
  25925. },
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(2.1, "meters"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(7 + 5 / 12, "feet"),
  25938. weight: math.unit(357, "lb"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/solex-draconov/front.svg",
  25942. extra: 1993 / 1865,
  25943. bottom: 117 / 2111
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Natural Height",
  25950. height: math.unit(7 + 5 / 12, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Macro",
  25955. height: math.unit(350, "feet")
  25956. },
  25957. {
  25958. name: "Macro+",
  25959. height: math.unit(1000, "feet")
  25960. },
  25961. {
  25962. name: "Megamacro",
  25963. height: math.unit(20, "km")
  25964. },
  25965. {
  25966. name: "Megamacro+",
  25967. height: math.unit(1000, "km")
  25968. },
  25969. {
  25970. name: "Gigamacro",
  25971. height: math.unit(2.5, "Gm")
  25972. },
  25973. {
  25974. name: "Teramacro",
  25975. height: math.unit(15, "Tm")
  25976. },
  25977. {
  25978. name: "Galactic",
  25979. height: math.unit(30, "Zm")
  25980. },
  25981. {
  25982. name: "Universal",
  25983. height: math.unit(21000, "Ym")
  25984. },
  25985. {
  25986. name: "Omniversal",
  25987. height: math.unit(9.861e50, "Ym")
  25988. },
  25989. {
  25990. name: "Existential",
  25991. height: math.unit(1e300, "meters")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25997. {
  25998. side: {
  25999. height: math.unit(25, "feet"),
  26000. weight: math.unit(90000, "lb"),
  26001. name: "Side",
  26002. image: {
  26003. source: "./media/characters/mandarax/side.svg",
  26004. extra: 614 / 332,
  26005. bottom: 55 / 630
  26006. }
  26007. },
  26008. lounging: {
  26009. height: math.unit(15.4, "feet"),
  26010. weight: math.unit(90000, "lb"),
  26011. name: "Lounging",
  26012. image: {
  26013. source: "./media/characters/mandarax/lounging.svg",
  26014. extra: 817/609,
  26015. bottom: 685/1502
  26016. }
  26017. },
  26018. head: {
  26019. height: math.unit(11.4, "feet"),
  26020. name: "Head",
  26021. image: {
  26022. source: "./media/characters/mandarax/head.svg"
  26023. }
  26024. },
  26025. belly: {
  26026. height: math.unit(33, "feet"),
  26027. name: "Belly",
  26028. capacity: math.unit(500, "people"),
  26029. image: {
  26030. source: "./media/characters/mandarax/belly.svg"
  26031. }
  26032. },
  26033. dick: {
  26034. height: math.unit(8.46, "feet"),
  26035. name: "Dick",
  26036. image: {
  26037. source: "./media/characters/mandarax/dick.svg"
  26038. }
  26039. },
  26040. top: {
  26041. height: math.unit(28, "meters"),
  26042. name: "Top",
  26043. image: {
  26044. source: "./media/characters/mandarax/top.svg"
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(25, "feet"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(5, "feet"),
  26061. weight: math.unit(90, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/pixil/front.svg",
  26065. extra: 2000 / 1618,
  26066. bottom: 12.3 / 2011
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(5, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Megamacro",
  26078. height: math.unit(10, "miles"),
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26084. {
  26085. front: {
  26086. height: math.unit(7 + 2 / 12, "feet"),
  26087. weight: math.unit(200, "lb"),
  26088. name: "Front",
  26089. image: {
  26090. source: "./media/characters/angel/front.svg",
  26091. extra: 1830 / 1737,
  26092. bottom: 22.6 / 1854,
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(7 + 2 / 12, "feet"),
  26100. default: true
  26101. },
  26102. {
  26103. name: "Macro",
  26104. height: math.unit(1000, "feet")
  26105. },
  26106. {
  26107. name: "Megamacro",
  26108. height: math.unit(2, "miles")
  26109. },
  26110. {
  26111. name: "Gigamacro",
  26112. height: math.unit(20, "earths")
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(5, "feet"),
  26121. weight: math.unit(180, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/mekana/front.svg",
  26125. extra: 1671 / 1605,
  26126. bottom: 3.5 / 1691
  26127. }
  26128. },
  26129. side: {
  26130. height: math.unit(5, "feet"),
  26131. weight: math.unit(180, "lb"),
  26132. name: "Side",
  26133. image: {
  26134. source: "./media/characters/mekana/side.svg",
  26135. extra: 1671 / 1605,
  26136. bottom: 3.5 / 1691
  26137. }
  26138. },
  26139. back: {
  26140. height: math.unit(5, "feet"),
  26141. weight: math.unit(180, "lb"),
  26142. name: "Back",
  26143. image: {
  26144. source: "./media/characters/mekana/back.svg",
  26145. extra: 1671 / 1605,
  26146. bottom: 3.5 / 1691
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(5, "feet"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(4 + 6 / 12, "feet"),
  26163. weight: math.unit(80, "lb"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/pixie/front.svg",
  26167. extra: 1924 / 1825,
  26168. bottom: 22.4 / 1946
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Normal",
  26175. height: math.unit(4 + 6 / 12, "feet"),
  26176. default: true
  26177. },
  26178. {
  26179. name: "Macro",
  26180. height: math.unit(40, "feet")
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(2.1, "meters"),
  26189. weight: math.unit(200, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/the-lascivious/front.svg",
  26193. extra: 1 / 0.893,
  26194. bottom: 3.5 / 573.7
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Human Scale",
  26201. height: math.unit(2.1, "meters")
  26202. },
  26203. {
  26204. name: "Wolxi Scale",
  26205. height: math.unit(46.2, "m"),
  26206. default: true
  26207. },
  26208. {
  26209. name: "Boinker of Buildings",
  26210. height: math.unit(10, "km")
  26211. },
  26212. {
  26213. name: "Shagger of Skyscrapers",
  26214. height: math.unit(40, "km")
  26215. },
  26216. {
  26217. name: "Banger of Boroughs",
  26218. height: math.unit(4000, "km")
  26219. },
  26220. {
  26221. name: "Screwer of States",
  26222. height: math.unit(100000, "km")
  26223. },
  26224. {
  26225. name: "Pounder of Planets",
  26226. height: math.unit(2000000, "km")
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(6, "feet"),
  26235. weight: math.unit(150, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/aj/front.svg",
  26239. extra: 2039 / 1562,
  26240. bottom: 40 / 2079
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(11 + 6 / 12, "feet"),
  26248. default: true
  26249. },
  26250. {
  26251. name: "Megamacro",
  26252. height: math.unit(60, "megameters")
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26258. {
  26259. side: {
  26260. height: math.unit(31 + 8 / 12, "feet"),
  26261. weight: math.unit(75000, "kg"),
  26262. name: "Side",
  26263. image: {
  26264. source: "./media/characters/koros/side.svg",
  26265. extra: 1442 / 1297,
  26266. bottom: 122.7 / 1562
  26267. }
  26268. },
  26269. dicksKingsCrown: {
  26270. height: math.unit(6, "feet"),
  26271. name: "Dicks (King's Crown)",
  26272. image: {
  26273. source: "./media/characters/koros/dicks-kings-crown.svg"
  26274. }
  26275. },
  26276. dicksTailSet: {
  26277. height: math.unit(3, "feet"),
  26278. name: "Dicks (Tail Set)",
  26279. image: {
  26280. source: "./media/characters/koros/dicks-tail-set.svg"
  26281. }
  26282. },
  26283. dickCumming: {
  26284. height: math.unit(7.98, "feet"),
  26285. name: "Dick (Cumming)",
  26286. image: {
  26287. source: "./media/characters/koros/dick-cumming.svg"
  26288. }
  26289. },
  26290. dicksBack: {
  26291. height: math.unit(5.9, "feet"),
  26292. name: "Dicks (Back)",
  26293. image: {
  26294. source: "./media/characters/koros/dicks-back.svg"
  26295. }
  26296. },
  26297. dicksFront: {
  26298. height: math.unit(3.72, "feet"),
  26299. name: "Dicks (Front)",
  26300. image: {
  26301. source: "./media/characters/koros/dicks-front.svg"
  26302. }
  26303. },
  26304. dicksPeeking: {
  26305. height: math.unit(3.0, "feet"),
  26306. name: "Dicks (Peeking)",
  26307. image: {
  26308. source: "./media/characters/koros/dicks-peeking.svg"
  26309. }
  26310. },
  26311. eye: {
  26312. height: math.unit(1.7, "feet"),
  26313. name: "Eye",
  26314. image: {
  26315. source: "./media/characters/koros/eye.svg"
  26316. }
  26317. },
  26318. headFront: {
  26319. height: math.unit(11.69, "feet"),
  26320. name: "Head (Front)",
  26321. image: {
  26322. source: "./media/characters/koros/head-front.svg"
  26323. }
  26324. },
  26325. headSide: {
  26326. height: math.unit(14, "feet"),
  26327. name: "Head (Side)",
  26328. image: {
  26329. source: "./media/characters/koros/head-side.svg"
  26330. }
  26331. },
  26332. leg: {
  26333. height: math.unit(17, "feet"),
  26334. name: "Leg",
  26335. image: {
  26336. source: "./media/characters/koros/leg.svg"
  26337. }
  26338. },
  26339. mawSide: {
  26340. height: math.unit(12.8, "feet"),
  26341. name: "Maw (Side)",
  26342. image: {
  26343. source: "./media/characters/koros/maw-side.svg"
  26344. }
  26345. },
  26346. mawSpitting: {
  26347. height: math.unit(17, "feet"),
  26348. name: "Maw (Spitting)",
  26349. image: {
  26350. source: "./media/characters/koros/maw-spitting.svg"
  26351. }
  26352. },
  26353. slit: {
  26354. height: math.unit(2.8, "feet"),
  26355. name: "Slit",
  26356. image: {
  26357. source: "./media/characters/koros/slit.svg"
  26358. }
  26359. },
  26360. stomach: {
  26361. height: math.unit(6.8, "feet"),
  26362. capacity: math.unit(20, "people"),
  26363. name: "Stomach",
  26364. image: {
  26365. source: "./media/characters/koros/stomach.svg"
  26366. }
  26367. },
  26368. wingspanBottom: {
  26369. height: math.unit(114, "feet"),
  26370. name: "Wingspan (Bottom)",
  26371. image: {
  26372. source: "./media/characters/koros/wingspan-bottom.svg"
  26373. }
  26374. },
  26375. wingspanTop: {
  26376. height: math.unit(104, "feet"),
  26377. name: "Wingspan (Top)",
  26378. image: {
  26379. source: "./media/characters/koros/wingspan-top.svg"
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(31 + 8 / 12, "feet"),
  26387. default: true
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26393. {
  26394. front: {
  26395. height: math.unit(18 + 5 / 12, "feet"),
  26396. weight: math.unit(3750, "kg"),
  26397. name: "Front",
  26398. image: {
  26399. source: "./media/characters/vexx/front.svg",
  26400. extra: 426 / 396,
  26401. bottom: 31.5 / 458
  26402. }
  26403. },
  26404. maw: {
  26405. height: math.unit(6, "feet"),
  26406. name: "Maw",
  26407. image: {
  26408. source: "./media/characters/vexx/maw.svg"
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(18 + 5 / 12, "feet"),
  26416. default: true
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26422. {
  26423. front: {
  26424. height: math.unit(17 + 6 / 12, "feet"),
  26425. weight: math.unit(150, "lb"),
  26426. name: "Front",
  26427. image: {
  26428. source: "./media/characters/baadra/front.svg",
  26429. extra: 1694/1553,
  26430. bottom: 179/1873
  26431. }
  26432. },
  26433. frontAlt: {
  26434. height: math.unit(17 + 6 / 12, "feet"),
  26435. weight: math.unit(150, "lb"),
  26436. name: "Front (Alt)",
  26437. image: {
  26438. source: "./media/characters/baadra/front-alt.svg",
  26439. extra: 3137 / 2890,
  26440. bottom: 168.4 / 3305
  26441. }
  26442. },
  26443. back: {
  26444. height: math.unit(17 + 6 / 12, "feet"),
  26445. weight: math.unit(150, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/baadra/back.svg",
  26449. extra: 3142 / 2890,
  26450. bottom: 220 / 3371
  26451. }
  26452. },
  26453. head: {
  26454. height: math.unit(5.45, "feet"),
  26455. name: "Head",
  26456. image: {
  26457. source: "./media/characters/baadra/head.svg"
  26458. }
  26459. },
  26460. headAngry: {
  26461. height: math.unit(4.95, "feet"),
  26462. name: "Head (Angry)",
  26463. image: {
  26464. source: "./media/characters/baadra/head-angry.svg"
  26465. }
  26466. },
  26467. headOpen: {
  26468. height: math.unit(6, "feet"),
  26469. name: "Head (Open)",
  26470. image: {
  26471. source: "./media/characters/baadra/head-open.svg"
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(17 + 6 / 12, "feet"),
  26479. default: true
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(7 + 3 / 12, "feet"),
  26488. weight: math.unit(180, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/juri/front.svg",
  26492. extra: 1401 / 1237,
  26493. bottom: 18.5 / 1418
  26494. }
  26495. },
  26496. side: {
  26497. height: math.unit(7 + 3 / 12, "feet"),
  26498. weight: math.unit(180, "lb"),
  26499. name: "Side",
  26500. image: {
  26501. source: "./media/characters/juri/side.svg",
  26502. extra: 1424 / 1242,
  26503. bottom: 18.5 / 1447
  26504. }
  26505. },
  26506. sitting: {
  26507. height: math.unit(6, "feet"),
  26508. weight: math.unit(180, "lb"),
  26509. name: "Sitting",
  26510. image: {
  26511. source: "./media/characters/juri/sitting.svg",
  26512. extra: 1270 / 1143,
  26513. bottom: 100 / 1343
  26514. }
  26515. },
  26516. back: {
  26517. height: math.unit(7 + 3 / 12, "feet"),
  26518. weight: math.unit(180, "lb"),
  26519. name: "Back",
  26520. image: {
  26521. source: "./media/characters/juri/back.svg",
  26522. extra: 1377 / 1240,
  26523. bottom: 23.7 / 1405
  26524. }
  26525. },
  26526. maw: {
  26527. height: math.unit(2.8, "feet"),
  26528. name: "Maw",
  26529. image: {
  26530. source: "./media/characters/juri/maw.svg"
  26531. }
  26532. },
  26533. stomach: {
  26534. height: math.unit(0.89, "feet"),
  26535. capacity: math.unit(4, "liters"),
  26536. name: "Stomach",
  26537. image: {
  26538. source: "./media/characters/juri/stomach.svg"
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(7 + 3 / 12, "feet"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26552. {
  26553. fox: {
  26554. height: math.unit(5 + 6 / 12, "feet"),
  26555. weight: math.unit(140, "lb"),
  26556. name: "Fox",
  26557. image: {
  26558. source: "./media/characters/maxene-sita/fox.svg",
  26559. extra: 146 / 138,
  26560. bottom: 2.1 / 148.19
  26561. }
  26562. },
  26563. foxLaying: {
  26564. height: math.unit(1.70, "feet"),
  26565. weight: math.unit(140, "lb"),
  26566. name: "Fox (Laying)",
  26567. image: {
  26568. source: "./media/characters/maxene-sita/fox-laying.svg",
  26569. extra: 910 / 572,
  26570. bottom: 71 / 981
  26571. }
  26572. },
  26573. kitsune: {
  26574. height: math.unit(10, "feet"),
  26575. weight: math.unit(800, "lb"),
  26576. name: "Kitsune",
  26577. image: {
  26578. source: "./media/characters/maxene-sita/kitsune.svg",
  26579. extra: 185 / 176,
  26580. bottom: 4.7 / 189.9
  26581. }
  26582. },
  26583. hellhound: {
  26584. height: math.unit(10, "feet"),
  26585. weight: math.unit(700, "lb"),
  26586. name: "Hellhound",
  26587. image: {
  26588. source: "./media/characters/maxene-sita/hellhound.svg",
  26589. extra: 1600 / 1545,
  26590. bottom: 81 / 1681
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(5 + 6 / 12, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26604. {
  26605. front: {
  26606. height: math.unit(3 + 4 / 12, "feet"),
  26607. weight: math.unit(70, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/maia/front.svg",
  26611. extra: 227 / 219.5,
  26612. bottom: 40 / 267
  26613. }
  26614. },
  26615. back: {
  26616. height: math.unit(3 + 4 / 12, "feet"),
  26617. weight: math.unit(70, "lb"),
  26618. name: "Back",
  26619. image: {
  26620. source: "./media/characters/maia/back.svg",
  26621. extra: 237 / 225
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(3 + 4 / 12, "feet"),
  26629. default: true
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26635. {
  26636. front: {
  26637. height: math.unit(5 + 10 / 12, "feet"),
  26638. weight: math.unit(197, "lb"),
  26639. name: "Front",
  26640. image: {
  26641. source: "./media/characters/jabaro/front.svg",
  26642. extra: 225 / 216,
  26643. bottom: 5.06 / 230
  26644. }
  26645. },
  26646. back: {
  26647. height: math.unit(5 + 10 / 12, "feet"),
  26648. weight: math.unit(197, "lb"),
  26649. name: "Back",
  26650. image: {
  26651. source: "./media/characters/jabaro/back.svg",
  26652. extra: 225 / 219,
  26653. bottom: 1.9 / 227
  26654. }
  26655. },
  26656. },
  26657. [
  26658. {
  26659. name: "Normal",
  26660. height: math.unit(5 + 10 / 12, "feet"),
  26661. default: true
  26662. },
  26663. ]
  26664. ))
  26665. characterMakers.push(() => makeCharacter(
  26666. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26667. {
  26668. front: {
  26669. height: math.unit(5 + 8 / 12, "feet"),
  26670. weight: math.unit(139, "lb"),
  26671. name: "Front",
  26672. image: {
  26673. source: "./media/characters/risa/front.svg",
  26674. extra: 270 / 260,
  26675. bottom: 11.2 / 282
  26676. }
  26677. },
  26678. back: {
  26679. height: math.unit(5 + 8 / 12, "feet"),
  26680. weight: math.unit(139, "lb"),
  26681. name: "Back",
  26682. image: {
  26683. source: "./media/characters/risa/back.svg",
  26684. extra: 264 / 255,
  26685. bottom: 4 / 268
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(5 + 8 / 12, "feet"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(2 + 11 / 12, "feet"),
  26702. weight: math.unit(30, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/weatley/front.svg",
  26706. bottom: 10.7 / 414,
  26707. extra: 403.5 / 362
  26708. }
  26709. },
  26710. back: {
  26711. height: math.unit(2 + 11 / 12, "feet"),
  26712. weight: math.unit(30, "lb"),
  26713. name: "Back",
  26714. image: {
  26715. source: "./media/characters/weatley/back.svg",
  26716. bottom: 10.7 / 414,
  26717. extra: 403.5 / 362
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(2 + 11 / 12, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(5 + 2 / 12, "feet"),
  26734. weight: math.unit(50, "kg"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/mercury-crescent/front.svg",
  26738. extra: 1088 / 1033,
  26739. bottom: 18.9 / 1109
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(5 + 2 / 12, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(2, "feet"),
  26756. weight: math.unit(15, "kg"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/diamond-jones/front.svg",
  26760. extra: 727/723,
  26761. bottom: 46/773
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(2, "feet"),
  26769. default: true
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(3, "feet"),
  26778. weight: math.unit(30, "kg"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/sweet-bit/front.svg",
  26782. extra: 675 / 567,
  26783. bottom: 27.7 / 703
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Normal",
  26790. height: math.unit(3, "feet"),
  26791. default: true
  26792. },
  26793. ]
  26794. ))
  26795. characterMakers.push(() => makeCharacter(
  26796. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26797. {
  26798. side: {
  26799. height: math.unit(9.178, "feet"),
  26800. weight: math.unit(500, "lb"),
  26801. name: "Side",
  26802. image: {
  26803. source: "./media/characters/umbrazen/side.svg",
  26804. extra: 1730 / 1473,
  26805. bottom: 34.6 / 1765
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(9.178, "feet"),
  26813. default: true
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(10, "feet"),
  26822. weight: math.unit(750, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/arlist/front.svg",
  26826. extra: 961 / 778,
  26827. bottom: 6.2 / 986
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(10, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 1 / 12, "feet"),
  26844. weight: math.unit(110, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/aradel/front.svg",
  26848. extra: 324 / 303,
  26849. bottom: 3.6 / 329.4
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(5 + 1 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26863. {
  26864. dressed: {
  26865. height: math.unit(3 + 8 / 12, "feet"),
  26866. weight: math.unit(50, "lb"),
  26867. name: "Dressed",
  26868. image: {
  26869. source: "./media/characters/serryn/dressed.svg",
  26870. extra: 1792 / 1656,
  26871. bottom: 43.5 / 1840
  26872. }
  26873. },
  26874. nude: {
  26875. height: math.unit(3 + 8 / 12, "feet"),
  26876. weight: math.unit(50, "lb"),
  26877. name: "Nude",
  26878. image: {
  26879. source: "./media/characters/serryn/nude.svg",
  26880. extra: 1792 / 1656,
  26881. bottom: 43.5 / 1840
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(3 + 8 / 12, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(7 + 10 / 12, "feet"),
  26898. weight: math.unit(255, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/xavier-thyme/front.svg",
  26902. extra: 3733 / 3642,
  26903. bottom: 131 / 3869
  26904. }
  26905. },
  26906. frontRaven: {
  26907. height: math.unit(7 + 10 / 12, "feet"),
  26908. weight: math.unit(255, "lb"),
  26909. name: "Front (Raven)",
  26910. image: {
  26911. source: "./media/characters/xavier-thyme/front-raven.svg",
  26912. extra: 4385 / 3642,
  26913. bottom: 131 / 4517
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(7 + 10 / 12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(1.6, "m"),
  26930. weight: math.unit(50, "kg"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/kiki/front.svg",
  26934. extra: 4682 / 3610,
  26935. bottom: 115 / 4777
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(1.6, "meters"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26949. {
  26950. front: {
  26951. height: math.unit(50, "m"),
  26952. weight: math.unit(500, "tonnes"),
  26953. name: "Front",
  26954. image: {
  26955. source: "./media/characters/ryoko/front.svg",
  26956. extra: 4632 / 3926,
  26957. bottom: 193 / 4823
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(50, "meters"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(30, "m"),
  26974. weight: math.unit(22, "tonnes"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/elio/front.svg",
  26978. extra: 4582 / 3720,
  26979. bottom: 236 / 4828
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(30, "meters"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(6 + 3 / 12, "feet"),
  26996. weight: math.unit(120, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/azura/front.svg",
  27000. extra: 1149 / 1135,
  27001. bottom: 45 / 1194
  27002. }
  27003. },
  27004. frontClothed: {
  27005. height: math.unit(6 + 3 / 12, "feet"),
  27006. weight: math.unit(120, "lb"),
  27007. name: "Front (Clothed)",
  27008. image: {
  27009. source: "./media/characters/azura/front-clothed.svg",
  27010. extra: 1149 / 1135,
  27011. bottom: 45 / 1194
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(6 + 3 / 12, "feet"),
  27019. default: true
  27020. },
  27021. {
  27022. name: "Macro",
  27023. height: math.unit(20 + 6 / 12, "feet")
  27024. },
  27025. {
  27026. name: "Megamacro",
  27027. height: math.unit(12, "miles")
  27028. },
  27029. {
  27030. name: "Gigamacro",
  27031. height: math.unit(10000, "miles")
  27032. },
  27033. {
  27034. name: "Teramacro",
  27035. height: math.unit(900000, "miles")
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(12, "feet"),
  27044. weight: math.unit(1, "ton"),
  27045. capacity: math.unit(660000, "gallons"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/zeus/front.svg",
  27049. extra: 5005 / 4717,
  27050. bottom: 363 / 5388
  27051. }
  27052. },
  27053. },
  27054. [
  27055. {
  27056. name: "Normal",
  27057. height: math.unit(12, "feet")
  27058. },
  27059. {
  27060. name: "Preferred Size",
  27061. height: math.unit(0.5, "miles"),
  27062. default: true
  27063. },
  27064. {
  27065. name: "Giga Horse",
  27066. height: math.unit(300, "miles")
  27067. },
  27068. {
  27069. name: "Riding Planets",
  27070. height: math.unit(30, "megameters")
  27071. },
  27072. {
  27073. name: "Cosmic Giant",
  27074. height: math.unit(3, "zettameters")
  27075. },
  27076. {
  27077. name: "Breeding God",
  27078. height: math.unit(9.92e22, "yottameters")
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27084. {
  27085. side: {
  27086. height: math.unit(9, "feet"),
  27087. weight: math.unit(1500, "kg"),
  27088. name: "Side",
  27089. image: {
  27090. source: "./media/characters/fang/side.svg",
  27091. extra: 924 / 866,
  27092. bottom: 47.5 / 972.3
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(9, "feet"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Macro",
  27104. height: math.unit(75 + 6 / 12, "feet")
  27105. },
  27106. {
  27107. name: "Teramacro",
  27108. height: math.unit(50000, "miles")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(10, "feet"),
  27117. weight: math.unit(2, "tons"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/rekhit/front.svg",
  27121. extra: 2796 / 2590,
  27122. bottom: 225 / 3022
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(10, "feet"),
  27130. default: true
  27131. },
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(500, "feet")
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(7 + 6.451 / 12, "feet"),
  27143. weight: math.unit(310, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/dahlia-verrick/front.svg",
  27147. extra: 1488 / 1365,
  27148. bottom: 6.2 / 1495
  27149. }
  27150. },
  27151. back: {
  27152. height: math.unit(7 + 6.451 / 12, "feet"),
  27153. weight: math.unit(310, "lb"),
  27154. name: "Back",
  27155. image: {
  27156. source: "./media/characters/dahlia-verrick/back.svg",
  27157. extra: 1472 / 1351,
  27158. bottom: 5.28 / 1477
  27159. }
  27160. },
  27161. frontBusiness: {
  27162. height: math.unit(7 + 6.451 / 12, "feet"),
  27163. weight: math.unit(200, "lb"),
  27164. name: "Front (Business)",
  27165. image: {
  27166. source: "./media/characters/dahlia-verrick/front-business.svg",
  27167. extra: 1478 / 1381,
  27168. bottom: 5.5 / 1484
  27169. }
  27170. },
  27171. frontCasual: {
  27172. height: math.unit(7 + 6.451 / 12, "feet"),
  27173. weight: math.unit(200, "lb"),
  27174. name: "Front (Casual)",
  27175. image: {
  27176. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27177. extra: 1478 / 1381,
  27178. bottom: 5.5 / 1484
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Travel-Sized",
  27185. height: math.unit(7.45, "inches")
  27186. },
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(7 + 6.451 / 12, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Hitting the Town",
  27194. height: math.unit(37 + 8 / 12, "feet")
  27195. },
  27196. {
  27197. name: "Stomp in the Suburbs",
  27198. height: math.unit(964 + 9.728 / 12, "feet")
  27199. },
  27200. {
  27201. name: "Sit on the City",
  27202. height: math.unit(61747 + 10.592 / 12, "feet")
  27203. },
  27204. {
  27205. name: "Glomp the Globe",
  27206. height: math.unit(252919327 + 4.832 / 12, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6 + 4 / 12, "feet"),
  27215. weight: math.unit(320, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/balina-mahigan/front.svg",
  27219. extra: 447 / 428,
  27220. bottom: 18 / 466
  27221. }
  27222. },
  27223. back: {
  27224. height: math.unit(6 + 4 / 12, "feet"),
  27225. weight: math.unit(320, "lb"),
  27226. name: "Back",
  27227. image: {
  27228. source: "./media/characters/balina-mahigan/back.svg",
  27229. extra: 445 / 428,
  27230. bottom: 4.07 / 448
  27231. }
  27232. },
  27233. arm: {
  27234. height: math.unit(1.88, "feet"),
  27235. name: "Arm",
  27236. image: {
  27237. source: "./media/characters/balina-mahigan/arm.svg"
  27238. }
  27239. },
  27240. backPort: {
  27241. height: math.unit(0.685, "feet"),
  27242. name: "Back Port",
  27243. image: {
  27244. source: "./media/characters/balina-mahigan/back-port.svg"
  27245. }
  27246. },
  27247. hoofpaw: {
  27248. height: math.unit(1.41, "feet"),
  27249. name: "Hoofpaw",
  27250. image: {
  27251. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27252. }
  27253. },
  27254. leftHandBack: {
  27255. height: math.unit(0.938, "feet"),
  27256. name: "Left Hand (Back)",
  27257. image: {
  27258. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27259. }
  27260. },
  27261. leftHandFront: {
  27262. height: math.unit(0.938, "feet"),
  27263. name: "Left Hand (Front)",
  27264. image: {
  27265. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27266. }
  27267. },
  27268. rightHandBack: {
  27269. height: math.unit(0.95, "feet"),
  27270. name: "Right Hand (Back)",
  27271. image: {
  27272. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27273. }
  27274. },
  27275. rightHandFront: {
  27276. height: math.unit(0.95, "feet"),
  27277. name: "Right Hand (Front)",
  27278. image: {
  27279. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Normal",
  27286. height: math.unit(6 + 4 / 12, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(6, "feet"),
  27296. weight: math.unit(320, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/balina-mejeri/front.svg",
  27300. extra: 517 / 488,
  27301. bottom: 44.2 / 561
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(6 + 4 / 12, "feet")
  27309. },
  27310. {
  27311. name: "Business",
  27312. height: math.unit(155, "feet"),
  27313. default: true
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27319. {
  27320. kneeling: {
  27321. height: math.unit(6 + 4 / 12, "feet"),
  27322. weight: math.unit(300 * 20, "lb"),
  27323. name: "Kneeling",
  27324. image: {
  27325. source: "./media/characters/balbarian/kneeling.svg",
  27326. extra: 922 / 862,
  27327. bottom: 42.4 / 965
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(6 + 4 / 12, "feet")
  27335. },
  27336. {
  27337. name: "Treasured",
  27338. height: math.unit(18 + 9 / 12, "feet"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(900, "feet")
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(6 + 4 / 12, "feet"),
  27352. weight: math.unit(325, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/balina-amarini/front.svg",
  27356. extra: 415 / 403,
  27357. bottom: 19 / 433.4
  27358. }
  27359. },
  27360. back: {
  27361. height: math.unit(6 + 4 / 12, "feet"),
  27362. weight: math.unit(325, "lb"),
  27363. name: "Back",
  27364. image: {
  27365. source: "./media/characters/balina-amarini/back.svg",
  27366. extra: 415 / 403,
  27367. bottom: 13.5 / 432
  27368. }
  27369. },
  27370. overdrive: {
  27371. height: math.unit(6 + 4 / 12, "feet"),
  27372. weight: math.unit(400, "lb"),
  27373. name: "Overdrive",
  27374. image: {
  27375. source: "./media/characters/balina-amarini/overdrive.svg",
  27376. extra: 269 / 259,
  27377. bottom: 12 / 282
  27378. }
  27379. },
  27380. },
  27381. [
  27382. {
  27383. name: "Boom",
  27384. height: math.unit(9 + 10 / 12, "feet"),
  27385. default: true
  27386. },
  27387. {
  27388. name: "Macro",
  27389. height: math.unit(280, "feet")
  27390. },
  27391. ]
  27392. ))
  27393. characterMakers.push(() => makeCharacter(
  27394. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27395. {
  27396. goddess: {
  27397. height: math.unit(600, "feet"),
  27398. weight: math.unit(2000000, "tons"),
  27399. name: "Goddess",
  27400. image: {
  27401. source: "./media/characters/lady-kubwa/goddess.svg",
  27402. extra: 1240.5 / 1223,
  27403. bottom: 22 / 1263
  27404. }
  27405. },
  27406. goddesser: {
  27407. height: math.unit(900, "feet"),
  27408. weight: math.unit(20000000, "lb"),
  27409. name: "Goddess-er",
  27410. image: {
  27411. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27412. extra: 899 / 888,
  27413. bottom: 12.6 / 912
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(600, "feet"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(250, "miles")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(7 + 7 / 12, "feet"),
  27434. weight: math.unit(250, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/tala-grovehorn/front.svg",
  27438. extra: 2636 / 2525,
  27439. bottom: 147 / 2781
  27440. }
  27441. },
  27442. back: {
  27443. height: math.unit(7 + 7 / 12, "feet"),
  27444. weight: math.unit(250, "lb"),
  27445. name: "Back",
  27446. image: {
  27447. source: "./media/characters/tala-grovehorn/back.svg",
  27448. extra: 2635 / 2539,
  27449. bottom: 100 / 2732.8
  27450. }
  27451. },
  27452. mouth: {
  27453. height: math.unit(1.15, "feet"),
  27454. name: "Mouth",
  27455. image: {
  27456. source: "./media/characters/tala-grovehorn/mouth.svg"
  27457. }
  27458. },
  27459. dick: {
  27460. height: math.unit(2.36, "feet"),
  27461. name: "Dick",
  27462. image: {
  27463. source: "./media/characters/tala-grovehorn/dick.svg"
  27464. }
  27465. },
  27466. slit: {
  27467. height: math.unit(0.61, "feet"),
  27468. name: "Slit",
  27469. image: {
  27470. source: "./media/characters/tala-grovehorn/slit.svg"
  27471. }
  27472. },
  27473. },
  27474. [
  27475. ]
  27476. ))
  27477. characterMakers.push(() => makeCharacter(
  27478. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27479. {
  27480. front: {
  27481. height: math.unit(7 + 7 / 12, "feet"),
  27482. weight: math.unit(225, "lb"),
  27483. name: "Front",
  27484. image: {
  27485. source: "./media/characters/epona/front.svg",
  27486. extra: 2445 / 2290,
  27487. bottom: 251 / 2696
  27488. }
  27489. },
  27490. back: {
  27491. height: math.unit(7 + 7 / 12, "feet"),
  27492. weight: math.unit(225, "lb"),
  27493. name: "Back",
  27494. image: {
  27495. source: "./media/characters/epona/back.svg",
  27496. extra: 2546 / 2408,
  27497. bottom: 44 / 2589
  27498. }
  27499. },
  27500. genitals: {
  27501. height: math.unit(1.5, "feet"),
  27502. name: "Genitals",
  27503. image: {
  27504. source: "./media/characters/epona/genitals.svg"
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(7 + 7 / 12, "feet"),
  27512. default: true
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(7, "feet"),
  27521. weight: math.unit(518, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/avia-bloodbourn/front.svg",
  27525. extra: 1466 / 1350,
  27526. bottom: 65 / 1527
  27527. }
  27528. },
  27529. },
  27530. [
  27531. ]
  27532. ))
  27533. characterMakers.push(() => makeCharacter(
  27534. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27535. {
  27536. front: {
  27537. height: math.unit(9.35, "feet"),
  27538. weight: math.unit(600, "lb"),
  27539. name: "Front",
  27540. image: {
  27541. source: "./media/characters/amera/front.svg",
  27542. extra: 891 / 818,
  27543. bottom: 30 / 922.7
  27544. }
  27545. },
  27546. back: {
  27547. height: math.unit(9.35, "feet"),
  27548. weight: math.unit(600, "lb"),
  27549. name: "Back",
  27550. image: {
  27551. source: "./media/characters/amera/back.svg",
  27552. extra: 876 / 824,
  27553. bottom: 6.8 / 884
  27554. }
  27555. },
  27556. dick: {
  27557. height: math.unit(2.14, "feet"),
  27558. name: "Dick",
  27559. image: {
  27560. source: "./media/characters/amera/dick.svg"
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(9.35, "feet"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27574. {
  27575. kneeling: {
  27576. height: math.unit(3 + 4 / 12, "feet"),
  27577. weight: math.unit(90, "lb"),
  27578. name: "Kneeling",
  27579. image: {
  27580. source: "./media/characters/rosewen/kneeling.svg",
  27581. extra: 1835 / 1571,
  27582. bottom: 27.7 / 1862
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(3 + 4 / 12, "feet"),
  27590. default: true
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27596. {
  27597. front: {
  27598. height: math.unit(5 + 10 / 12, "feet"),
  27599. weight: math.unit(200, "lb"),
  27600. name: "Front",
  27601. image: {
  27602. source: "./media/characters/sabah/front.svg",
  27603. extra: 849 / 763,
  27604. bottom: 33.9 / 881
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(5 + 10 / 12, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27618. {
  27619. front: {
  27620. height: math.unit(3 + 5 / 12, "feet"),
  27621. weight: math.unit(40, "kg"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/purple-flame/front.svg",
  27625. extra: 1577 / 1412,
  27626. bottom: 97 / 1694
  27627. }
  27628. },
  27629. frontDressed: {
  27630. height: math.unit(3 + 5 / 12, "feet"),
  27631. weight: math.unit(40, "kg"),
  27632. name: "Front (Dressed)",
  27633. image: {
  27634. source: "./media/characters/purple-flame/front-dressed.svg",
  27635. extra: 1577 / 1412,
  27636. bottom: 97 / 1694
  27637. }
  27638. },
  27639. headphones: {
  27640. height: math.unit(0.85, "feet"),
  27641. name: "Headphones",
  27642. image: {
  27643. source: "./media/characters/purple-flame/headphones.svg"
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Really Small",
  27650. height: math.unit(5, "cm")
  27651. },
  27652. {
  27653. name: "Micro",
  27654. height: math.unit(1 + 5 / 12, "feet")
  27655. },
  27656. {
  27657. name: "Normal",
  27658. height: math.unit(3 + 5 / 12, "feet"),
  27659. default: true
  27660. },
  27661. {
  27662. name: "Minimacro",
  27663. height: math.unit(125, "feet")
  27664. },
  27665. {
  27666. name: "Macro",
  27667. height: math.unit(0.5, "miles")
  27668. },
  27669. {
  27670. name: "Megamacro",
  27671. height: math.unit(50, "miles")
  27672. },
  27673. {
  27674. name: "Gigantic",
  27675. height: math.unit(750, "miles")
  27676. },
  27677. {
  27678. name: "Planetary",
  27679. height: math.unit(15000, "miles")
  27680. },
  27681. ]
  27682. ))
  27683. characterMakers.push(() => makeCharacter(
  27684. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27685. {
  27686. front: {
  27687. height: math.unit(14, "feet"),
  27688. weight: math.unit(959, "lb"),
  27689. name: "Front",
  27690. image: {
  27691. source: "./media/characters/arsenal/front.svg",
  27692. extra: 2357 / 2157,
  27693. bottom: 93 / 2458
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(14, "feet"),
  27701. default: true
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27707. {
  27708. front: {
  27709. height: math.unit(6, "feet"),
  27710. weight: math.unit(150, "lb"),
  27711. name: "Front",
  27712. image: {
  27713. source: "./media/characters/adira/front.svg",
  27714. extra: 1078 / 1029,
  27715. bottom: 87 / 1166
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Micro",
  27722. height: math.unit(4, "inches"),
  27723. default: true
  27724. },
  27725. {
  27726. name: "Macro",
  27727. height: math.unit(50, "feet")
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(16, "feet"),
  27736. weight: math.unit(1000, "lb"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/grim/front.svg",
  27740. extra: 622 / 614,
  27741. bottom: 18.1 / 642
  27742. }
  27743. },
  27744. back: {
  27745. height: math.unit(16, "feet"),
  27746. weight: math.unit(1000, "lb"),
  27747. name: "Back",
  27748. image: {
  27749. source: "./media/characters/grim/back.svg",
  27750. extra: 610.6 / 602,
  27751. bottom: 40.8 / 652
  27752. }
  27753. },
  27754. hunched: {
  27755. height: math.unit(9.75, "feet"),
  27756. weight: math.unit(1000, "lb"),
  27757. name: "Hunched",
  27758. image: {
  27759. source: "./media/characters/grim/hunched.svg",
  27760. extra: 304 / 297,
  27761. bottom: 35.4 / 394
  27762. }
  27763. },
  27764. },
  27765. [
  27766. {
  27767. name: "Normal",
  27768. height: math.unit(16, "feet"),
  27769. default: true
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(2.3, "meters"),
  27778. weight: math.unit(300, "lb"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/sinja/front-sfw.svg",
  27782. extra: 1393 / 1294,
  27783. bottom: 70 / 1463
  27784. }
  27785. },
  27786. frontNsfw: {
  27787. height: math.unit(2.3, "meters"),
  27788. weight: math.unit(300, "lb"),
  27789. name: "Front (NSFW)",
  27790. image: {
  27791. source: "./media/characters/sinja/front-nsfw.svg",
  27792. extra: 1393 / 1294,
  27793. bottom: 70 / 1463
  27794. }
  27795. },
  27796. back: {
  27797. height: math.unit(2.3, "meters"),
  27798. weight: math.unit(300, "lb"),
  27799. name: "Back",
  27800. image: {
  27801. source: "./media/characters/sinja/back.svg",
  27802. extra: 1393 / 1294,
  27803. bottom: 70 / 1463
  27804. }
  27805. },
  27806. head: {
  27807. height: math.unit(1.771, "feet"),
  27808. name: "Head",
  27809. image: {
  27810. source: "./media/characters/sinja/head.svg"
  27811. }
  27812. },
  27813. slit: {
  27814. height: math.unit(0.8, "feet"),
  27815. name: "Slit",
  27816. image: {
  27817. source: "./media/characters/sinja/slit.svg"
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Normal",
  27824. height: math.unit(2.3, "meters")
  27825. },
  27826. {
  27827. name: "Macro",
  27828. height: math.unit(91, "meters"),
  27829. default: true
  27830. },
  27831. {
  27832. name: "Megamacro",
  27833. height: math.unit(91440, "meters")
  27834. },
  27835. {
  27836. name: "Gigamacro",
  27837. height: math.unit(60960000, "meters")
  27838. },
  27839. {
  27840. name: "Teramacro",
  27841. height: math.unit(9144000000, "meters")
  27842. },
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27847. {
  27848. front: {
  27849. height: math.unit(1.7, "meters"),
  27850. weight: math.unit(130, "lb"),
  27851. name: "Front",
  27852. image: {
  27853. source: "./media/characters/kyu/front.svg",
  27854. extra: 415 / 395,
  27855. bottom: 5 / 420
  27856. }
  27857. },
  27858. head: {
  27859. height: math.unit(1.75, "feet"),
  27860. name: "Head",
  27861. image: {
  27862. source: "./media/characters/kyu/head.svg"
  27863. }
  27864. },
  27865. foot: {
  27866. height: math.unit(0.81, "feet"),
  27867. name: "Foot",
  27868. image: {
  27869. source: "./media/characters/kyu/foot.svg"
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Normal",
  27876. height: math.unit(1.7, "meters")
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit(131, "feet"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Megamacro",
  27885. height: math.unit(91440, "meters")
  27886. },
  27887. {
  27888. name: "Gigamacro",
  27889. height: math.unit(60960000, "meters")
  27890. },
  27891. {
  27892. name: "Teramacro",
  27893. height: math.unit(9144000000, "meters")
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27899. {
  27900. front: {
  27901. height: math.unit(7 + 1 / 12, "feet"),
  27902. weight: math.unit(250, "lb"),
  27903. name: "Front",
  27904. image: {
  27905. source: "./media/characters/joey/front.svg",
  27906. extra: 1791 / 1537,
  27907. bottom: 28 / 1816
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Micro",
  27914. height: math.unit(3, "inches")
  27915. },
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(7 + 1 / 12, "feet"),
  27919. default: true
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27925. {
  27926. front: {
  27927. height: math.unit(165, "cm"),
  27928. weight: math.unit(140, "lb"),
  27929. name: "Front",
  27930. image: {
  27931. source: "./media/characters/sam-evans/front.svg",
  27932. extra: 3417 / 3230,
  27933. bottom: 41.3 / 3417
  27934. }
  27935. },
  27936. frontSixTails: {
  27937. height: math.unit(165, "cm"),
  27938. weight: math.unit(140, "lb"),
  27939. name: "Front-six-tails",
  27940. image: {
  27941. source: "./media/characters/sam-evans/front-six-tails.svg",
  27942. extra: 3417 / 3230,
  27943. bottom: 41.3 / 3417
  27944. }
  27945. },
  27946. back: {
  27947. height: math.unit(165, "cm"),
  27948. weight: math.unit(140, "lb"),
  27949. name: "Back",
  27950. image: {
  27951. source: "./media/characters/sam-evans/back.svg",
  27952. extra: 3227 / 3032,
  27953. bottom: 6.8 / 3234
  27954. }
  27955. },
  27956. face: {
  27957. height: math.unit(0.68, "feet"),
  27958. name: "Face",
  27959. image: {
  27960. source: "./media/characters/sam-evans/face.svg"
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(165, "cm"),
  27968. default: true
  27969. },
  27970. {
  27971. name: "Macro",
  27972. height: math.unit(100, "meters")
  27973. },
  27974. {
  27975. name: "Macro+",
  27976. height: math.unit(800, "meters")
  27977. },
  27978. {
  27979. name: "Macro++",
  27980. height: math.unit(3, "km")
  27981. },
  27982. {
  27983. name: "Macro+++",
  27984. height: math.unit(30, "km")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(10, "feet"),
  27993. weight: math.unit(750, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/juliet-a/front.svg",
  27997. extra: 1766 / 1720,
  27998. bottom: 43 / 1809
  27999. }
  28000. },
  28001. back: {
  28002. height: math.unit(10, "feet"),
  28003. weight: math.unit(750, "lb"),
  28004. name: "Back",
  28005. image: {
  28006. source: "./media/characters/juliet-a/back.svg",
  28007. extra: 1781 / 1734,
  28008. bottom: 35 / 1810,
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Normal",
  28015. height: math.unit(10, "feet"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Dragon Form",
  28020. height: math.unit(250, "feet")
  28021. },
  28022. {
  28023. name: "Macro",
  28024. height: math.unit(1000, "feet")
  28025. },
  28026. {
  28027. name: "Megamacro",
  28028. height: math.unit(10000, "feet")
  28029. }
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28034. {
  28035. regular: {
  28036. height: math.unit(7 + 3 / 12, "feet"),
  28037. weight: math.unit(260, "lb"),
  28038. name: "Regular",
  28039. image: {
  28040. source: "./media/characters/wild/regular.svg",
  28041. extra: 97.45 / 92,
  28042. bottom: 6.8 / 104.3
  28043. }
  28044. },
  28045. biggums: {
  28046. height: math.unit(8 + 6 / 12, "feet"),
  28047. weight: math.unit(425, "lb"),
  28048. name: "Biggums",
  28049. image: {
  28050. source: "./media/characters/wild/biggums.svg",
  28051. extra: 97.45 / 92,
  28052. bottom: 7.5 / 132.34
  28053. }
  28054. },
  28055. mawRegular: {
  28056. height: math.unit(1.24, "feet"),
  28057. name: "Maw (Regular)",
  28058. image: {
  28059. source: "./media/characters/wild/maw.svg"
  28060. }
  28061. },
  28062. mawBiggums: {
  28063. height: math.unit(1.47, "feet"),
  28064. name: "Maw (Biggums)",
  28065. image: {
  28066. source: "./media/characters/wild/maw.svg"
  28067. }
  28068. },
  28069. },
  28070. [
  28071. {
  28072. name: "Normal",
  28073. height: math.unit(7 + 3 / 12, "feet"),
  28074. default: true
  28075. },
  28076. ]
  28077. ))
  28078. characterMakers.push(() => makeCharacter(
  28079. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28080. {
  28081. front: {
  28082. height: math.unit(2.5, "meters"),
  28083. weight: math.unit(200, "kg"),
  28084. name: "Front",
  28085. image: {
  28086. source: "./media/characters/vidar/front.svg",
  28087. extra: 2994 / 2795,
  28088. bottom: 56 / 3061
  28089. }
  28090. },
  28091. back: {
  28092. height: math.unit(2.5, "meters"),
  28093. weight: math.unit(200, "kg"),
  28094. name: "Back",
  28095. image: {
  28096. source: "./media/characters/vidar/back.svg",
  28097. extra: 3131 / 2928,
  28098. bottom: 13.5 / 3141.5
  28099. }
  28100. },
  28101. feral: {
  28102. height: math.unit(2.5, "meters"),
  28103. weight: math.unit(2000, "kg"),
  28104. name: "Feral",
  28105. image: {
  28106. source: "./media/characters/vidar/feral.svg",
  28107. extra: 2790 / 1765,
  28108. bottom: 6 / 2796
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(2.5, "meters"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(100, "meters")
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(5 + 9 / 12, "feet"),
  28129. weight: math.unit(120, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/ash/front.svg",
  28133. extra: 2189 / 1961,
  28134. bottom: 5.2 / 2194
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(5 + 9 / 12, "feet"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(9, "feet"),
  28151. weight: math.unit(10000, "lb"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/gygabite/front.svg",
  28155. bottom: 31.7 / 537.8,
  28156. extra: 505 / 370
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(9, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(12, "feet"),
  28173. weight: math.unit(35000, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/p0tat0/front.svg",
  28177. extra: 1065 / 921,
  28178. bottom: 55.7 / 1121.25
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(12, "feet"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28192. {
  28193. side: {
  28194. height: math.unit(6.5, "feet"),
  28195. weight: math.unit(800, "lb"),
  28196. name: "Side",
  28197. image: {
  28198. source: "./media/characters/dusk/side.svg",
  28199. extra: 615 / 373,
  28200. bottom: 53 / 664
  28201. }
  28202. },
  28203. sitting: {
  28204. height: math.unit(7, "feet"),
  28205. weight: math.unit(800, "lb"),
  28206. name: "Sitting",
  28207. image: {
  28208. source: "./media/characters/dusk/sitting.svg",
  28209. extra: 753 / 425,
  28210. bottom: 33 / 774
  28211. }
  28212. },
  28213. head: {
  28214. height: math.unit(6.1, "feet"),
  28215. name: "Head",
  28216. image: {
  28217. source: "./media/characters/dusk/head.svg"
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(7, "feet"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(15, "feet"),
  28234. weight: math.unit(7000, "lb"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/jay-direwolf/front.svg",
  28238. extra: 1810 / 1732,
  28239. bottom: 66 / 1892
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(15, "feet"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(4 + 9 / 12, "feet"),
  28256. weight: math.unit(130, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/anchovie/front.svg",
  28260. extra: 382 / 350,
  28261. bottom: 25 / 409
  28262. }
  28263. },
  28264. back: {
  28265. height: math.unit(4 + 9 / 12, "feet"),
  28266. weight: math.unit(130, "lb"),
  28267. name: "Back",
  28268. image: {
  28269. source: "./media/characters/anchovie/back.svg",
  28270. extra: 385 / 352,
  28271. bottom: 16.6 / 402
  28272. }
  28273. },
  28274. frontDressed: {
  28275. height: math.unit(4 + 9 / 12, "feet"),
  28276. weight: math.unit(130, "lb"),
  28277. name: "Front (Dressed)",
  28278. image: {
  28279. source: "./media/characters/anchovie/front-dressed.svg",
  28280. extra: 382 / 350,
  28281. bottom: 25 / 409
  28282. }
  28283. },
  28284. backDressed: {
  28285. height: math.unit(4 + 9 / 12, "feet"),
  28286. weight: math.unit(130, "lb"),
  28287. name: "Back (Dressed)",
  28288. image: {
  28289. source: "./media/characters/anchovie/back-dressed.svg",
  28290. extra: 385 / 352,
  28291. bottom: 16.6 / 402
  28292. }
  28293. },
  28294. },
  28295. [
  28296. {
  28297. name: "Micro",
  28298. height: math.unit(6.4, "inches")
  28299. },
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(4 + 9 / 12, "feet"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(2, "meters"),
  28312. weight: math.unit(180, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/acidrenamon/front.svg",
  28316. extra: 987 / 890,
  28317. bottom: 22.8 / 1009
  28318. }
  28319. },
  28320. back: {
  28321. height: math.unit(2, "meters"),
  28322. weight: math.unit(180, "lb"),
  28323. name: "Back",
  28324. image: {
  28325. source: "./media/characters/acidrenamon/back.svg",
  28326. extra: 983 / 891,
  28327. bottom: 8.4 / 992
  28328. }
  28329. },
  28330. head: {
  28331. height: math.unit(1.92, "feet"),
  28332. name: "Head",
  28333. image: {
  28334. source: "./media/characters/acidrenamon/head.svg"
  28335. }
  28336. },
  28337. rump: {
  28338. height: math.unit(1.72, "feet"),
  28339. name: "Rump",
  28340. image: {
  28341. source: "./media/characters/acidrenamon/rump.svg"
  28342. }
  28343. },
  28344. tail: {
  28345. height: math.unit(4.2, "feet"),
  28346. name: "Tail",
  28347. image: {
  28348. source: "./media/characters/acidrenamon/tail.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(2, "meters"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Minimacro",
  28360. height: math.unit(7, "meters")
  28361. },
  28362. {
  28363. name: "Macro",
  28364. height: math.unit(200, "meters")
  28365. },
  28366. {
  28367. name: "Gigamacro",
  28368. height: math.unit(0.2, "earths")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(152, "feet"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/kenzie-lee/front.svg",
  28380. extra: 1869/1774,
  28381. bottom: 128/1997
  28382. }
  28383. },
  28384. side: {
  28385. height: math.unit(86, "feet"),
  28386. name: "Side",
  28387. image: {
  28388. source: "./media/characters/kenzie-lee/side.svg",
  28389. extra: 930/815,
  28390. bottom: 177/1107
  28391. }
  28392. },
  28393. paw: {
  28394. height: math.unit(15, "feet"),
  28395. name: "Paw",
  28396. image: {
  28397. source: "./media/characters/kenzie-lee/paw.svg"
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Micro",
  28404. height: math.unit(1.5, "inches")
  28405. },
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(152, "feet"),
  28409. default: true
  28410. },
  28411. {
  28412. name: "Megamacro",
  28413. height: math.unit(7, "miles")
  28414. },
  28415. {
  28416. name: "Gigamacro",
  28417. height: math.unit(8000, "miles")
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28423. {
  28424. side: {
  28425. height: math.unit(6, "feet"),
  28426. weight: math.unit(150, "lb"),
  28427. name: "Side",
  28428. image: {
  28429. source: "./media/characters/withers/side.svg",
  28430. extra: 1830 / 1728,
  28431. bottom: 96 / 1927
  28432. }
  28433. },
  28434. front: {
  28435. height: math.unit(6, "feet"),
  28436. weight: math.unit(150, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/withers/front.svg",
  28440. extra: 1514 / 1438,
  28441. bottom: 118 / 1632
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Macro",
  28448. height: math.unit(168, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Megamacro",
  28453. height: math.unit(15, "miles")
  28454. }
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 7 / 12, "feet"),
  28462. weight: math.unit(250, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/nemoskii/front.svg",
  28466. extra: 2270 / 1734,
  28467. bottom: 86 / 2354
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 7 / 12, "feet"),
  28472. weight: math.unit(250, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/nemoskii/back.svg",
  28476. extra: 1845 / 1788,
  28477. bottom: 10.5 / 1852
  28478. }
  28479. },
  28480. head: {
  28481. height: math.unit(1.31, "feet"),
  28482. name: "Head",
  28483. image: {
  28484. source: "./media/characters/nemoskii/head.svg"
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Micro",
  28491. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28492. },
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(6 + 7 / 12, "feet"),
  28496. default: true
  28497. },
  28498. {
  28499. name: "Macro",
  28500. height: math.unit((6 + 7 / 12) * 150, "feet")
  28501. },
  28502. {
  28503. name: "Macro+",
  28504. height: math.unit((6 + 7 / 12) * 500, "feet")
  28505. },
  28506. {
  28507. name: "Megamacro",
  28508. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28514. {
  28515. front: {
  28516. height: math.unit(1, "mile"),
  28517. weight: math.unit(265261.9, "lb"),
  28518. name: "Front",
  28519. image: {
  28520. source: "./media/characters/shui/front.svg",
  28521. extra: 1633 / 1564,
  28522. bottom: 91.5 / 1726
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Macro",
  28529. height: math.unit(1, "mile"),
  28530. default: true
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28536. {
  28537. front: {
  28538. height: math.unit(12 + 6 / 12, "feet"),
  28539. weight: math.unit(1342, "lb"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/arokh-takakura/front.svg",
  28543. extra: 1089 / 1043,
  28544. bottom: 77.4 / 1176.7
  28545. }
  28546. },
  28547. back: {
  28548. height: math.unit(12 + 6 / 12, "feet"),
  28549. weight: math.unit(1342, "lb"),
  28550. name: "Back",
  28551. image: {
  28552. source: "./media/characters/arokh-takakura/back.svg",
  28553. extra: 1046 / 1019,
  28554. bottom: 102 / 1150
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Big",
  28561. height: math.unit(12 + 6 / 12, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(5 + 6 / 12, "feet"),
  28571. weight: math.unit(150, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/theo/front.svg",
  28575. extra: 1184 / 1131,
  28576. bottom: 7.4 / 1191
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Micro",
  28583. height: math.unit(5, "inches")
  28584. },
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(5 + 6 / 12, "feet"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(5 + 9 / 12, "feet"),
  28597. weight: math.unit(130, "lb"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/cecelia-swift/front.svg",
  28601. extra: 502 / 484,
  28602. bottom: 23 / 523
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(5 + 9 / 12, "feet"),
  28607. weight: math.unit(130, "lb"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/cecelia-swift/back.svg",
  28611. extra: 499 / 485,
  28612. bottom: 12 / 511
  28613. }
  28614. },
  28615. head: {
  28616. height: math.unit(0.90, "feet"),
  28617. name: "Head",
  28618. image: {
  28619. source: "./media/characters/cecelia-swift/head.svg"
  28620. }
  28621. },
  28622. rump: {
  28623. height: math.unit(1.75, "feet"),
  28624. name: "Rump",
  28625. image: {
  28626. source: "./media/characters/cecelia-swift/rump.svg"
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Normal",
  28633. height: math.unit(5 + 9 / 12, "feet"),
  28634. default: true
  28635. },
  28636. {
  28637. name: "Big",
  28638. height: math.unit(50, "feet")
  28639. },
  28640. {
  28641. name: "Macro",
  28642. height: math.unit(100, "feet")
  28643. },
  28644. {
  28645. name: "Macro+",
  28646. height: math.unit(500, "feet")
  28647. },
  28648. {
  28649. name: "Macro++",
  28650. height: math.unit(1000, "feet")
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(6, "feet"),
  28659. weight: math.unit(150, "lb"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/kaunan/front.svg",
  28663. extra: 2890 / 2523,
  28664. bottom: 49 / 2939
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Macro",
  28671. height: math.unit(150, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(175, "cm"),
  28681. weight: math.unit(60, "kg"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/fei/front.svg",
  28685. extra: 1873/1723,
  28686. bottom: 53/1926
  28687. }
  28688. },
  28689. },
  28690. [
  28691. {
  28692. name: "Mortal",
  28693. height: math.unit(175, "cm")
  28694. },
  28695. {
  28696. name: "Normal",
  28697. height: math.unit(3500, "m"),
  28698. default: true
  28699. },
  28700. {
  28701. name: "Stroll",
  28702. height: math.unit(17.5, "km")
  28703. },
  28704. {
  28705. name: "Showoff",
  28706. height: math.unit(175, "km")
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28712. {
  28713. front: {
  28714. height: math.unit(7, "feet"),
  28715. weight: math.unit(1000, "kg"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/edrax/front.svg",
  28719. extra: 2838 / 2550,
  28720. bottom: 130 / 2968
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Small",
  28727. height: math.unit(7, "feet")
  28728. },
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(1500, "meters")
  28732. },
  28733. {
  28734. name: "Mega",
  28735. height: math.unit(12000000, "km"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Megamacro",
  28740. height: math.unit(10600000, "lightyears")
  28741. },
  28742. {
  28743. name: "Hypermacro",
  28744. height: math.unit(256, "yottameters")
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(10, "feet"),
  28753. weight: math.unit(750, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/clove/front.svg",
  28757. extra: 1918/1751,
  28758. bottom: 52/1970
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(10, "feet"),
  28763. weight: math.unit(750, "lb"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/clove/back.svg",
  28767. extra: 1912/1747,
  28768. bottom: 50/1962
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Normal",
  28775. height: math.unit(10, "feet"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(4, "feet"),
  28785. weight: math.unit(50, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/alex-rabbit/front.svg",
  28789. extra: 507 / 458,
  28790. bottom: 18.5 / 527
  28791. }
  28792. },
  28793. back: {
  28794. height: math.unit(4, "feet"),
  28795. weight: math.unit(50, "lb"),
  28796. name: "Back",
  28797. image: {
  28798. source: "./media/characters/alex-rabbit/back.svg",
  28799. extra: 502 / 460,
  28800. bottom: 18.9 / 521
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(4, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(1 + 3 / 12, "feet"),
  28817. weight: math.unit(80, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/zander-rose/front.svg",
  28821. extra: 916 / 797,
  28822. bottom: 17 / 933
  28823. }
  28824. },
  28825. back: {
  28826. height: math.unit(1 + 3 / 12, "feet"),
  28827. weight: math.unit(80, "lb"),
  28828. name: "Back",
  28829. image: {
  28830. source: "./media/characters/zander-rose/back.svg",
  28831. extra: 903 / 779,
  28832. bottom: 31 / 934
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(1 + 3 / 12, "feet"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28846. {
  28847. anthro: {
  28848. height: math.unit(6, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Anthro",
  28851. image: {
  28852. source: "./media/characters/razz/anthro.svg",
  28853. extra: 1437 / 1343,
  28854. bottom: 48 / 1485
  28855. }
  28856. },
  28857. feral: {
  28858. height: math.unit(6, "feet"),
  28859. weight: math.unit(150, "lb"),
  28860. name: "Feral",
  28861. image: {
  28862. source: "./media/characters/razz/feral.svg",
  28863. extra: 2569 / 1385,
  28864. bottom: 95 / 2664
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(6, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(9 + 4 / 12, "feet"),
  28881. weight: math.unit(500, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/morrigan/front.svg",
  28885. extra: 2707 / 2579,
  28886. bottom: 156 / 2863
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(9 + 4 / 12, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(5, "stories"),
  28903. weight: math.unit(4000, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/jenene/front.svg",
  28907. extra: 1780 / 1710,
  28908. bottom: 57 / 1837
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Normal",
  28915. height: math.unit(5, "stories"),
  28916. default: true
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28922. {
  28923. taurSfw: {
  28924. height: math.unit(10, "meters"),
  28925. weight: math.unit(17500, "kg"),
  28926. name: "Taur",
  28927. image: {
  28928. source: "./media/characters/faey/taur-sfw.svg",
  28929. extra: 1200 / 968,
  28930. bottom: 41 / 1241
  28931. }
  28932. },
  28933. chestmaw: {
  28934. height: math.unit(2.01, "meters"),
  28935. name: "Chestmaw",
  28936. image: {
  28937. source: "./media/characters/faey/chestmaw.svg"
  28938. }
  28939. },
  28940. foot: {
  28941. height: math.unit(2.43, "meters"),
  28942. name: "Foot",
  28943. image: {
  28944. source: "./media/characters/faey/foot.svg"
  28945. }
  28946. },
  28947. jaws: {
  28948. height: math.unit(1.66, "meters"),
  28949. name: "Jaws",
  28950. image: {
  28951. source: "./media/characters/faey/jaws.svg"
  28952. }
  28953. },
  28954. tongues: {
  28955. height: math.unit(2.01, "meters"),
  28956. name: "Tongues",
  28957. image: {
  28958. source: "./media/characters/faey/tongues.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Small",
  28965. height: math.unit(10, "meters"),
  28966. default: true
  28967. },
  28968. {
  28969. name: "Big",
  28970. height: math.unit(500000, "km")
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(7, "feet"),
  28979. weight: math.unit(275, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/roku/front.svg",
  28983. extra: 903 / 878,
  28984. bottom: 37 / 940
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Normal",
  28991. height: math.unit(7, "feet"),
  28992. default: true
  28993. },
  28994. {
  28995. name: "Macro",
  28996. height: math.unit(500, "feet")
  28997. },
  28998. {
  28999. name: "Megamacro",
  29000. height: math.unit(200, "miles")
  29001. },
  29002. ]
  29003. ))
  29004. characterMakers.push(() => makeCharacter(
  29005. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29006. {
  29007. front: {
  29008. height: math.unit(6 + 2 / 12, "feet"),
  29009. weight: math.unit(150, "lb"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/lira/front.svg",
  29013. extra: 1727 / 1605,
  29014. bottom: 26 / 1753
  29015. }
  29016. },
  29017. back: {
  29018. height: math.unit(6 + 2 / 12, "feet"),
  29019. weight: math.unit(150, "lb"),
  29020. name: "Back",
  29021. image: {
  29022. source: "./media/characters/lira/back.svg",
  29023. extra: 1713/1621,
  29024. bottom: 20/1733
  29025. }
  29026. },
  29027. hand: {
  29028. height: math.unit(0.75, "feet"),
  29029. name: "Hand",
  29030. image: {
  29031. source: "./media/characters/lira/hand.svg"
  29032. }
  29033. },
  29034. maw: {
  29035. height: math.unit(0.65, "feet"),
  29036. name: "Maw",
  29037. image: {
  29038. source: "./media/characters/lira/maw.svg"
  29039. }
  29040. },
  29041. pawDigi: {
  29042. height: math.unit(1.6, "feet"),
  29043. name: "Paw Digi",
  29044. image: {
  29045. source: "./media/characters/lira/paw-digi.svg"
  29046. }
  29047. },
  29048. pawPlanti: {
  29049. height: math.unit(1.4, "feet"),
  29050. name: "Paw Planti",
  29051. image: {
  29052. source: "./media/characters/lira/paw-planti.svg"
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(6 + 2 / 12, "feet"),
  29060. default: true
  29061. },
  29062. {
  29063. name: "Macro",
  29064. height: math.unit(100, "feet")
  29065. },
  29066. {
  29067. name: "Macro²",
  29068. height: math.unit(1600, "feet")
  29069. },
  29070. {
  29071. name: "Planetary",
  29072. height: math.unit(20, "earths")
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(6, "feet"),
  29081. weight: math.unit(150, "lb"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/hadjet/front.svg",
  29085. extra: 1480 / 1346,
  29086. bottom: 26 / 1506
  29087. }
  29088. },
  29089. frontNsfw: {
  29090. height: math.unit(6, "feet"),
  29091. weight: math.unit(150, "lb"),
  29092. name: "Front (NSFW)",
  29093. image: {
  29094. source: "./media/characters/hadjet/front-nsfw.svg",
  29095. extra: 1440 / 1358,
  29096. bottom: 52 / 1492
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Macro",
  29103. height: math.unit(10, "stories"),
  29104. default: true
  29105. },
  29106. {
  29107. name: "Megamacro",
  29108. height: math.unit(1.5, "miles")
  29109. },
  29110. {
  29111. name: "Megamacro+",
  29112. height: math.unit(5, "miles")
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29118. {
  29119. side: {
  29120. height: math.unit(106, "feet"),
  29121. weight: math.unit(500, "tonnes"),
  29122. name: "Side",
  29123. image: {
  29124. source: "./media/characters/kodran/side.svg",
  29125. extra: 553 / 480,
  29126. bottom: 33 / 586
  29127. }
  29128. },
  29129. front: {
  29130. height: math.unit(132, "feet"),
  29131. weight: math.unit(500, "tonnes"),
  29132. name: "Front",
  29133. image: {
  29134. source: "./media/characters/kodran/front.svg",
  29135. extra: 667 / 643,
  29136. bottom: 42 / 709
  29137. }
  29138. },
  29139. flying: {
  29140. height: math.unit(350, "feet"),
  29141. weight: math.unit(500, "tonnes"),
  29142. name: "Flying",
  29143. image: {
  29144. source: "./media/characters/kodran/flying.svg"
  29145. }
  29146. },
  29147. foot: {
  29148. height: math.unit(33, "feet"),
  29149. name: "Foot",
  29150. image: {
  29151. source: "./media/characters/kodran/foot.svg"
  29152. }
  29153. },
  29154. footFront: {
  29155. height: math.unit(19, "feet"),
  29156. name: "Foot (Front)",
  29157. image: {
  29158. source: "./media/characters/kodran/foot-front.svg",
  29159. extra: 261 / 261,
  29160. bottom: 91 / 352
  29161. }
  29162. },
  29163. headFront: {
  29164. height: math.unit(53, "feet"),
  29165. name: "Head (Front)",
  29166. image: {
  29167. source: "./media/characters/kodran/head-front.svg"
  29168. }
  29169. },
  29170. headSide: {
  29171. height: math.unit(65, "feet"),
  29172. name: "Head (Side)",
  29173. image: {
  29174. source: "./media/characters/kodran/head-side.svg"
  29175. }
  29176. },
  29177. throat: {
  29178. height: math.unit(79, "feet"),
  29179. name: "Throat",
  29180. image: {
  29181. source: "./media/characters/kodran/throat.svg"
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Large",
  29188. height: math.unit(106, "feet"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29195. {
  29196. side: {
  29197. height: math.unit(11, "feet"),
  29198. weight: math.unit(150, "lb"),
  29199. name: "Side",
  29200. image: {
  29201. source: "./media/characters/pyxaron/side.svg",
  29202. extra: 305 / 195,
  29203. bottom: 17 / 322
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Normal",
  29210. height: math.unit(11, "feet"),
  29211. default: true
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(6, "feet"),
  29220. weight: math.unit(150, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/meep/front.svg",
  29224. extra: 88 / 80,
  29225. bottom: 6 / 94
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Fun Sized",
  29232. height: math.unit(2, "inches"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "Friend Sized",
  29237. height: math.unit(8, "inches")
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(15, "feet"),
  29246. weight: math.unit(2500, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/holly-rabbit/front.svg",
  29250. extra: 1433 / 1233,
  29251. bottom: 125 / 1558
  29252. }
  29253. },
  29254. dick: {
  29255. height: math.unit(4.6, "feet"),
  29256. name: "Dick",
  29257. image: {
  29258. source: "./media/characters/holly-rabbit/dick.svg"
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Normal",
  29265. height: math.unit(15, "feet"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Macro",
  29270. height: math.unit(250, "feet")
  29271. },
  29272. {
  29273. name: "Macro+",
  29274. height: math.unit(2500, "feet")
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(3.02, "meters"),
  29283. weight: math.unit(500, "kg"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/drena/front.svg",
  29287. extra: 282 / 243,
  29288. bottom: 8 / 290
  29289. }
  29290. },
  29291. side: {
  29292. height: math.unit(3.02, "meters"),
  29293. weight: math.unit(500, "kg"),
  29294. name: "Side",
  29295. image: {
  29296. source: "./media/characters/drena/side.svg",
  29297. extra: 280 / 245,
  29298. bottom: 10 / 290
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(3.02, "meters"),
  29303. weight: math.unit(500, "kg"),
  29304. name: "Back",
  29305. image: {
  29306. source: "./media/characters/drena/back.svg",
  29307. extra: 278 / 243,
  29308. bottom: 2 / 280
  29309. }
  29310. },
  29311. foot: {
  29312. height: math.unit(0.75, "meters"),
  29313. name: "Foot",
  29314. image: {
  29315. source: "./media/characters/drena/foot.svg"
  29316. }
  29317. },
  29318. maw: {
  29319. height: math.unit(0.82, "meters"),
  29320. name: "Maw",
  29321. image: {
  29322. source: "./media/characters/drena/maw.svg"
  29323. }
  29324. },
  29325. eating: {
  29326. height: math.unit(0.75, "meters"),
  29327. name: "Eating",
  29328. image: {
  29329. source: "./media/characters/drena/eating.svg"
  29330. }
  29331. },
  29332. rump: {
  29333. height: math.unit(0.93, "meters"),
  29334. name: "Rump",
  29335. image: {
  29336. source: "./media/characters/drena/rump.svg"
  29337. }
  29338. },
  29339. },
  29340. [
  29341. {
  29342. name: "Normal",
  29343. height: math.unit(3.02, "meters"),
  29344. default: true
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(6 + 4 / 12, "feet"),
  29353. weight: math.unit(250, "lb"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/remmyzilla/front.svg",
  29357. extra: 4033 / 3588,
  29358. bottom: 123 / 4156
  29359. }
  29360. },
  29361. back: {
  29362. height: math.unit(6 + 4 / 12, "feet"),
  29363. weight: math.unit(250, "lb"),
  29364. name: "Back",
  29365. image: {
  29366. source: "./media/characters/remmyzilla/back.svg",
  29367. extra: 2687 / 2555,
  29368. bottom: 48 / 2735
  29369. }
  29370. },
  29371. paw: {
  29372. height: math.unit(1.73, "feet"),
  29373. name: "Paw",
  29374. image: {
  29375. source: "./media/characters/remmyzilla/paw.svg"
  29376. }
  29377. },
  29378. maw: {
  29379. height: math.unit(1.73, "feet"),
  29380. name: "Maw",
  29381. image: {
  29382. source: "./media/characters/remmyzilla/maw.svg"
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(6 + 4 / 12, "feet")
  29390. },
  29391. {
  29392. name: "Minimacro",
  29393. height: math.unit(12 + 8 / 12, "feet")
  29394. },
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(640, "feet"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Megamacro",
  29402. height: math.unit(6400, "feet")
  29403. },
  29404. {
  29405. name: "Gigamacro",
  29406. height: math.unit(64000, "miles")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(2.5, "meters"),
  29415. weight: math.unit(300, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/lawrence/front.svg",
  29419. extra: 357 / 335,
  29420. bottom: 30 / 387
  29421. }
  29422. },
  29423. back: {
  29424. height: math.unit(2.5, "meters"),
  29425. weight: math.unit(300, "lb"),
  29426. name: "Back",
  29427. image: {
  29428. source: "./media/characters/lawrence/back.svg",
  29429. extra: 357 / 338,
  29430. bottom: 16 / 373
  29431. }
  29432. },
  29433. head: {
  29434. height: math.unit(0.9, "meter"),
  29435. name: "Head",
  29436. image: {
  29437. source: "./media/characters/lawrence/head.svg"
  29438. }
  29439. },
  29440. maw: {
  29441. height: math.unit(0.7, "meter"),
  29442. name: "Maw",
  29443. image: {
  29444. source: "./media/characters/lawrence/maw.svg"
  29445. }
  29446. },
  29447. footBottom: {
  29448. height: math.unit(0.5, "meter"),
  29449. name: "Foot (Bottom)",
  29450. image: {
  29451. source: "./media/characters/lawrence/foot-bottom.svg"
  29452. }
  29453. },
  29454. footTop: {
  29455. height: math.unit(0.5, "meter"),
  29456. name: "Foot (Top)",
  29457. image: {
  29458. source: "./media/characters/lawrence/foot-top.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(2.5, "meters"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Macro",
  29470. height: math.unit(95, "meters")
  29471. },
  29472. {
  29473. name: "Megamacro",
  29474. height: math.unit(150, "km")
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29480. {
  29481. front: {
  29482. height: math.unit(4.2, "meters"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/sydney/front.svg",
  29486. extra: 1323 / 1277,
  29487. bottom: 111 / 1434
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Normal",
  29494. height: math.unit(4.2, "meters"),
  29495. default: true
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29501. {
  29502. back: {
  29503. height: math.unit(201, "feet"),
  29504. name: "Back",
  29505. image: {
  29506. source: "./media/characters/jessica/back.svg",
  29507. extra: 273 / 259,
  29508. bottom: 7 / 280
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(201, "feet"),
  29516. default: true
  29517. },
  29518. {
  29519. name: "Megamacro",
  29520. height: math.unit(8, "miles")
  29521. },
  29522. ]
  29523. ))
  29524. characterMakers.push(() => makeCharacter(
  29525. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29526. {
  29527. side: {
  29528. height: math.unit(5.6, "m"),
  29529. weight: math.unit(8000, "kg"),
  29530. name: "Side",
  29531. image: {
  29532. source: "./media/characters/victoria/side.svg",
  29533. extra: 1542/1229,
  29534. bottom: 124/1666
  29535. }
  29536. },
  29537. maw: {
  29538. height: math.unit(7.14, "feet"),
  29539. name: "Maw",
  29540. image: {
  29541. source: "./media/characters/victoria/maw.svg"
  29542. }
  29543. },
  29544. },
  29545. [
  29546. {
  29547. name: "Normal",
  29548. height: math.unit(5.6, "m"),
  29549. default: true
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29555. {
  29556. front: {
  29557. height: math.unit(5 + 6 / 12, "feet"),
  29558. name: "Front",
  29559. image: {
  29560. source: "./media/characters/cat/front.svg",
  29561. extra: 1449/1295,
  29562. bottom: 34/1483
  29563. },
  29564. form: "cat",
  29565. default: true
  29566. },
  29567. back: {
  29568. height: math.unit(5 + 6 / 12, "feet"),
  29569. name: "Back",
  29570. image: {
  29571. source: "./media/characters/cat/back.svg",
  29572. extra: 1466/1301,
  29573. bottom: 19/1485
  29574. },
  29575. form: "cat"
  29576. },
  29577. taur: {
  29578. height: math.unit(7, "feet"),
  29579. name: "Taur",
  29580. image: {
  29581. source: "./media/characters/cat/taur.svg",
  29582. extra: 1389/1233,
  29583. bottom: 83/1472
  29584. },
  29585. form: "taur",
  29586. default: true
  29587. },
  29588. lucarioFront: {
  29589. height: math.unit(4, "feet"),
  29590. name: "Lucario (Front)",
  29591. image: {
  29592. source: "./media/characters/cat/lucario-front.svg",
  29593. extra: 1149/1019,
  29594. bottom: 84/1233
  29595. },
  29596. form: "lucario",
  29597. default: true
  29598. },
  29599. lucarioBack: {
  29600. height: math.unit(4, "feet"),
  29601. name: "Lucario (Back)",
  29602. image: {
  29603. source: "./media/characters/cat/lucario-back.svg",
  29604. extra: 1190/1059,
  29605. bottom: 33/1223
  29606. },
  29607. form: "lucario"
  29608. },
  29609. megaLucario: {
  29610. height: math.unit(4, "feet"),
  29611. name: "Mega Lucario",
  29612. image: {
  29613. source: "./media/characters/cat/mega-lucario.svg",
  29614. extra: 1515 / 1319,
  29615. bottom: 63 / 1578
  29616. },
  29617. form: "lucario"
  29618. },
  29619. nickit: {
  29620. height: math.unit(2, "feet"),
  29621. name: "Nickit",
  29622. image: {
  29623. source: "./media/characters/cat/nickit.svg",
  29624. extra: 1980 / 1585,
  29625. bottom: 102 / 2082
  29626. },
  29627. form: "nickit",
  29628. default: true
  29629. },
  29630. lopunnyFront: {
  29631. height: math.unit(5, "feet"),
  29632. name: "Lopunny (Front)",
  29633. image: {
  29634. source: "./media/characters/cat/lopunny-front.svg",
  29635. extra: 1782 / 1469,
  29636. bottom: 38 / 1820
  29637. },
  29638. form: "lopunny",
  29639. default: true
  29640. },
  29641. lopunnyBack: {
  29642. height: math.unit(5, "feet"),
  29643. name: "Lopunny (Back)",
  29644. image: {
  29645. source: "./media/characters/cat/lopunny-back.svg",
  29646. extra: 1660 / 1490,
  29647. bottom: 25 / 1685
  29648. },
  29649. form: "lopunny"
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Really small",
  29655. height: math.unit(1, "nm")
  29656. },
  29657. {
  29658. name: "Micro",
  29659. height: math.unit(5, "inches")
  29660. },
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(5 + 6 / 12, "feet"),
  29664. default: true
  29665. },
  29666. {
  29667. name: "Macro",
  29668. height: math.unit(50, "feet")
  29669. },
  29670. {
  29671. name: "Macro+",
  29672. height: math.unit(150, "feet")
  29673. },
  29674. {
  29675. name: "Megamacro",
  29676. height: math.unit(100, "miles")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(63.4, "meters"),
  29685. weight: math.unit(3.28349e+6, "kilograms"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/kirina-violet/front.svg",
  29689. extra: 2812 / 2725,
  29690. bottom: 0 / 2812
  29691. }
  29692. },
  29693. back: {
  29694. height: math.unit(63.4, "meters"),
  29695. weight: math.unit(3.28349e+6, "kilograms"),
  29696. name: "Back",
  29697. image: {
  29698. source: "./media/characters/kirina-violet/back.svg",
  29699. extra: 2812 / 2725,
  29700. bottom: 0 / 2812
  29701. }
  29702. },
  29703. mouth: {
  29704. height: math.unit(4.35, "meters"),
  29705. name: "Mouth",
  29706. image: {
  29707. source: "./media/characters/kirina-violet/mouth.svg"
  29708. }
  29709. },
  29710. paw: {
  29711. height: math.unit(5.6, "meters"),
  29712. name: "Paw",
  29713. image: {
  29714. source: "./media/characters/kirina-violet/paw.svg"
  29715. }
  29716. },
  29717. tail: {
  29718. height: math.unit(18, "meters"),
  29719. name: "Tail",
  29720. image: {
  29721. source: "./media/characters/kirina-violet/tail.svg"
  29722. }
  29723. },
  29724. },
  29725. [
  29726. {
  29727. name: "Macro",
  29728. height: math.unit(63.4, "meters"),
  29729. default: true
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(75, "feet"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/cat-gigachu/front.svg",
  29741. extra: 1239/1027,
  29742. bottom: 32/1271
  29743. }
  29744. },
  29745. back: {
  29746. height: math.unit(75, "feet"),
  29747. name: "Back",
  29748. image: {
  29749. source: "./media/characters/cat-gigachu/back.svg",
  29750. extra: 1229/1030,
  29751. bottom: 9/1238
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Dynamax",
  29758. height: math.unit(75, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(6, "feet"),
  29768. weight: math.unit(150, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/sfaiyan/front.svg",
  29772. extra: 999 / 978,
  29773. bottom: 5 / 1004
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Normal",
  29780. height: math.unit(1.82, "meters")
  29781. },
  29782. {
  29783. name: "Giant",
  29784. height: math.unit(2.27, "km"),
  29785. default: true
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(179, "cm"),
  29794. weight: math.unit(100, "kg"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/raunehkeli/front.svg",
  29798. extra: 1934 / 1926,
  29799. bottom: 0 / 1934
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(179, "cm")
  29807. },
  29808. {
  29809. name: "Maximum",
  29810. height: math.unit(575, "meters"),
  29811. default: true
  29812. },
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29817. {
  29818. front: {
  29819. height: math.unit(6, "feet"),
  29820. weight: math.unit(150, "lb"),
  29821. name: "Front",
  29822. image: {
  29823. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29824. extra: 2625 / 2518,
  29825. bottom: 60 / 2685
  29826. }
  29827. },
  29828. },
  29829. [
  29830. {
  29831. name: "Normal",
  29832. height: math.unit(6 + 2 / 12, "feet")
  29833. },
  29834. {
  29835. name: "Macro",
  29836. height: math.unit(1180, "feet"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(5 + 6 / 12, "feet"),
  29846. weight: math.unit(108, "lb"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/lilith-zott/front.svg",
  29850. extra: 2510 / 2238,
  29851. bottom: 100 / 2610
  29852. }
  29853. },
  29854. frontDressed: {
  29855. height: math.unit(5 + 6 / 12, "feet"),
  29856. weight: math.unit(108, "lb"),
  29857. name: "Front (Dressed)",
  29858. image: {
  29859. source: "./media/characters/lilith-zott/front-dressed.svg",
  29860. extra: 2510 / 2238,
  29861. bottom: 100 / 2610
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(5 + 6 / 12, "feet")
  29869. },
  29870. {
  29871. name: "Macro",
  29872. height: math.unit(1030, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(6, "feet"),
  29882. weight: math.unit(150, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29886. extra: 2567 / 2435,
  29887. bottom: 39 / 2606
  29888. }
  29889. },
  29890. frontSuper: {
  29891. height: math.unit(6, "feet"),
  29892. name: "Front (Super)",
  29893. image: {
  29894. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29895. extra: 2567 / 2435,
  29896. bottom: 39 / 2606
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Normal",
  29903. height: math.unit(5 + 10 / 12, "feet")
  29904. },
  29905. {
  29906. name: "Macro",
  29907. height: math.unit(1100, "feet"),
  29908. default: true
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(100, "miles"),
  29917. name: "Front",
  29918. image: {
  29919. source: "./media/characters/sona/front.svg",
  29920. extra: 2433 / 2201,
  29921. bottom: 53 / 2486
  29922. }
  29923. },
  29924. foot: {
  29925. height: math.unit(16.1, "miles"),
  29926. name: "Foot",
  29927. image: {
  29928. source: "./media/characters/sona/foot.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Macro",
  29935. height: math.unit(100, "miles"),
  29936. default: true
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(6, "feet"),
  29945. weight: math.unit(150, "lb"),
  29946. name: "Front",
  29947. image: {
  29948. source: "./media/characters/bailey/front.svg",
  29949. extra: 1778 / 1724,
  29950. bottom: 30 / 1808
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Micro",
  29957. height: math.unit(4, "inches")
  29958. },
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(5 + 5 / 12, "feet"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Macro",
  29966. height: math.unit(250, "feet")
  29967. },
  29968. {
  29969. name: "Megamacro",
  29970. height: math.unit(100, "miles")
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(5 + 2 / 12, "feet"),
  29979. weight: math.unit(120, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/snaps/front.svg",
  29983. extra: 2370 / 2177,
  29984. bottom: 48 / 2418
  29985. }
  29986. },
  29987. back: {
  29988. height: math.unit(5 + 2 / 12, "feet"),
  29989. weight: math.unit(120, "lb"),
  29990. name: "Back",
  29991. image: {
  29992. source: "./media/characters/snaps/back.svg",
  29993. extra: 2408 / 2258,
  29994. bottom: 15 / 2423
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Micro",
  30001. height: math.unit(9, "inches")
  30002. },
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(5 + 2 / 12, "feet"),
  30006. default: true
  30007. },
  30008. {
  30009. name: "Mini Macro",
  30010. height: math.unit(10, "feet")
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30016. {
  30017. front: {
  30018. height: math.unit(1.8, "meters"),
  30019. weight: math.unit(85, "kg"),
  30020. name: "Front",
  30021. image: {
  30022. source: "./media/characters/azteck/front.svg",
  30023. extra: 2815 / 2625,
  30024. bottom: 89 / 2904
  30025. }
  30026. },
  30027. back: {
  30028. height: math.unit(1.8, "meters"),
  30029. weight: math.unit(85, "kg"),
  30030. name: "Back",
  30031. image: {
  30032. source: "./media/characters/azteck/back.svg",
  30033. extra: 2856 / 2648,
  30034. bottom: 85 / 2941
  30035. }
  30036. },
  30037. frontDressed: {
  30038. height: math.unit(1.8, "meters"),
  30039. weight: math.unit(85, "kg"),
  30040. name: "Front (Dressed)",
  30041. image: {
  30042. source: "./media/characters/azteck/front-dressed.svg",
  30043. extra: 2147 / 2003,
  30044. bottom: 68 / 2215
  30045. }
  30046. },
  30047. head: {
  30048. height: math.unit(0.47, "meters"),
  30049. weight: math.unit(85, "kg"),
  30050. name: "Head",
  30051. image: {
  30052. source: "./media/characters/azteck/head.svg"
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Bite sized",
  30059. height: math.unit(16, "cm")
  30060. },
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(1.8, "meters"),
  30064. default: true
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30070. {
  30071. front: {
  30072. height: math.unit(6, "feet"),
  30073. weight: math.unit(150, "lb"),
  30074. name: "Front",
  30075. image: {
  30076. source: "./media/characters/pidge/front.svg",
  30077. extra: 620 / 588,
  30078. bottom: 9 / 629
  30079. }
  30080. },
  30081. back: {
  30082. height: math.unit(6, "feet"),
  30083. weight: math.unit(150, "lb"),
  30084. name: "Back",
  30085. image: {
  30086. source: "./media/characters/pidge/back.svg",
  30087. extra: 620 / 588,
  30088. bottom: 9 / 629
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Macro",
  30095. height: math.unit(1, "mile"),
  30096. default: true
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/en/front.svg",
  30109. extra: 1697 / 1563,
  30110. bottom: 103 / 1800
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(6, "feet"),
  30115. weight: math.unit(150, "lb"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/en/back.svg",
  30119. extra: 1700 / 1570,
  30120. bottom: 51 / 1751
  30121. }
  30122. },
  30123. frontDressed: {
  30124. height: math.unit(6, "feet"),
  30125. weight: math.unit(150, "lb"),
  30126. name: "Front (Dressed)",
  30127. image: {
  30128. source: "./media/characters/en/front-dressed.svg",
  30129. extra: 1697 / 1563,
  30130. bottom: 103 / 1800
  30131. }
  30132. },
  30133. backDressed: {
  30134. height: math.unit(6, "feet"),
  30135. weight: math.unit(150, "lb"),
  30136. name: "Back (Dressed)",
  30137. image: {
  30138. source: "./media/characters/en/back-dressed.svg",
  30139. extra: 1700 / 1570,
  30140. bottom: 51 / 1751
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(210, "feet"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(6, "feet"),
  30157. weight: math.unit(150, "lb"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/haze-orris/front.svg",
  30161. extra: 3975 / 3525,
  30162. bottom: 137 / 4112
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Micro",
  30169. height: math.unit(150, "mm"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(6, "feet"),
  30179. weight: math.unit(150, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/casselene-yaro/front.svg",
  30183. extra: 4721 / 4541,
  30184. bottom: 82 / 4803
  30185. }
  30186. },
  30187. back: {
  30188. height: math.unit(6, "feet"),
  30189. weight: math.unit(150, "lb"),
  30190. name: "Back",
  30191. image: {
  30192. source: "./media/characters/casselene-yaro/back.svg",
  30193. extra: 4569 / 4377,
  30194. bottom: 69 / 4638
  30195. }
  30196. },
  30197. frontDressed: {
  30198. height: math.unit(6, "feet"),
  30199. weight: math.unit(150, "lb"),
  30200. name: "Front-dressed",
  30201. image: {
  30202. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30203. extra: 4721 / 4541,
  30204. bottom: 82 / 4803
  30205. }
  30206. },
  30207. },
  30208. [
  30209. {
  30210. name: "Macro",
  30211. height: math.unit(190, "feet"),
  30212. default: true
  30213. },
  30214. ]
  30215. ))
  30216. characterMakers.push(() => makeCharacter(
  30217. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30218. {
  30219. front: {
  30220. height: math.unit(6, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Front",
  30223. image: {
  30224. source: "./media/characters/myra-rue-delore/front.svg",
  30225. extra: 1340 / 1308,
  30226. bottom: 67 / 1407
  30227. }
  30228. },
  30229. back: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Back",
  30233. image: {
  30234. source: "./media/characters/myra-rue-delore/back.svg",
  30235. extra: 1341 / 1310,
  30236. bottom: 40 / 1381
  30237. }
  30238. },
  30239. frontDressed: {
  30240. height: math.unit(6, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Front (Dressed)",
  30243. image: {
  30244. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30245. extra: 1340 / 1308,
  30246. bottom: 67 / 1407
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(150, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(10, "feet"),
  30263. weight: math.unit(15015, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/fem!plat/front.svg",
  30267. extra: 2799 / 2604,
  30268. bottom: 149 / 2948
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(10, "feet"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Macro",
  30280. height: math.unit(100, "feet")
  30281. },
  30282. {
  30283. name: "Megamacro",
  30284. height: math.unit(1000, "feet")
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(15 + 5 / 12, "feet"),
  30293. weight: math.unit(4600, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/neapolitan-ananassa/front.svg",
  30297. extra: 2903 / 2736,
  30298. bottom: 0 / 2903
  30299. }
  30300. },
  30301. side: {
  30302. height: math.unit(15 + 5 / 12, "feet"),
  30303. weight: math.unit(4600, "lb"),
  30304. name: "Side",
  30305. image: {
  30306. source: "./media/characters/neapolitan-ananassa/side.svg",
  30307. extra: 2925 / 2719,
  30308. bottom: 0 / 2925
  30309. }
  30310. },
  30311. back: {
  30312. height: math.unit(15 + 5 / 12, "feet"),
  30313. weight: math.unit(4600, "lb"),
  30314. name: "Back",
  30315. image: {
  30316. source: "./media/characters/neapolitan-ananassa/back.svg",
  30317. extra: 2903 / 2736,
  30318. bottom: 0 / 2903
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(15 + 5 / 12, "feet"),
  30326. default: true
  30327. },
  30328. {
  30329. name: "Post-Millenium",
  30330. height: math.unit(35 + 5 / 12, "feet")
  30331. },
  30332. {
  30333. name: "Post-Era",
  30334. height: math.unit(450 + 5 / 12, "feet")
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(300, "meters"),
  30343. weight: math.unit(125000, "tonnes"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/pazuzu/front.svg",
  30347. extra: 877 / 794,
  30348. bottom: 47 / 924
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Macro",
  30355. height: math.unit(300, "meters"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30362. {
  30363. side: {
  30364. height: math.unit(10 + 7 / 12, "feet"),
  30365. weight: math.unit(2.5, "tons"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/aasha/side.svg",
  30369. extra: 1345 / 1245,
  30370. bottom: 111 / 1456
  30371. }
  30372. },
  30373. back: {
  30374. height: math.unit(10 + 7 / 12, "feet"),
  30375. weight: math.unit(2.5, "tons"),
  30376. name: "Back",
  30377. image: {
  30378. source: "./media/characters/aasha/back.svg",
  30379. extra: 1133 / 1057,
  30380. bottom: 257 / 1390
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(10 + 7 / 12, "feet"),
  30388. default: true
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(6 + 3 / 12, "feet"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/nevan/front.svg",
  30400. extra: 704 / 704,
  30401. bottom: 28 / 732
  30402. }
  30403. },
  30404. back: {
  30405. height: math.unit(6 + 3 / 12, "feet"),
  30406. name: "Back",
  30407. image: {
  30408. source: "./media/characters/nevan/back.svg",
  30409. extra: 714 / 714,
  30410. bottom: 21 / 735
  30411. }
  30412. },
  30413. frontFlaccid: {
  30414. height: math.unit(6 + 3 / 12, "feet"),
  30415. name: "Front (Flaccid)",
  30416. image: {
  30417. source: "./media/characters/nevan/front-flaccid.svg",
  30418. extra: 704 / 704,
  30419. bottom: 28 / 732
  30420. }
  30421. },
  30422. frontErect: {
  30423. height: math.unit(6 + 3 / 12, "feet"),
  30424. name: "Front (Erect)",
  30425. image: {
  30426. source: "./media/characters/nevan/front-erect.svg",
  30427. extra: 704 / 704,
  30428. bottom: 28 / 732
  30429. }
  30430. },
  30431. backFlaccid: {
  30432. height: math.unit(6 + 3 / 12, "feet"),
  30433. name: "Back (Flaccid)",
  30434. image: {
  30435. source: "./media/characters/nevan/back-flaccid.svg",
  30436. extra: 714 / 714,
  30437. bottom: 21 / 735
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Normal",
  30444. height: math.unit(6 + 3 / 12, "feet"),
  30445. default: true
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(4, "feet"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/arhan/front.svg",
  30457. extra: 3368 / 3133,
  30458. bottom: 0 / 3368
  30459. }
  30460. },
  30461. side: {
  30462. height: math.unit(4, "feet"),
  30463. name: "Side",
  30464. image: {
  30465. source: "./media/characters/arhan/side.svg",
  30466. extra: 3347 / 3105,
  30467. bottom: 0 / 3347
  30468. }
  30469. },
  30470. tongue: {
  30471. height: math.unit(1.42, "feet"),
  30472. name: "Tongue",
  30473. image: {
  30474. source: "./media/characters/arhan/tongue.svg"
  30475. }
  30476. },
  30477. head: {
  30478. height: math.unit(0.85, "feet"),
  30479. name: "Head",
  30480. image: {
  30481. source: "./media/characters/arhan/head.svg"
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(4, "feet"),
  30489. default: true
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(5 + 7.5 / 12, "feet"),
  30498. weight: math.unit(120, "lb"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/digi-duncan/front.svg",
  30502. extra: 330 / 326,
  30503. bottom: 16 / 346
  30504. }
  30505. },
  30506. side: {
  30507. height: math.unit(5 + 7.5 / 12, "feet"),
  30508. weight: math.unit(120, "lb"),
  30509. name: "Side",
  30510. image: {
  30511. source: "./media/characters/digi-duncan/side.svg",
  30512. extra: 341 / 337,
  30513. bottom: 1 / 342
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(5 + 7.5 / 12, "feet"),
  30518. weight: math.unit(120, "lb"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/digi-duncan/back.svg",
  30522. extra: 330 / 326,
  30523. bottom: 12 / 342
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Speck",
  30530. height: math.unit(0.25, "mm")
  30531. },
  30532. {
  30533. name: "Micro",
  30534. height: math.unit(5, "mm")
  30535. },
  30536. {
  30537. name: "Tiny",
  30538. height: math.unit(0.5, "inches"),
  30539. default: true
  30540. },
  30541. {
  30542. name: "Human",
  30543. height: math.unit(5 + 7.5 / 12, "feet")
  30544. },
  30545. {
  30546. name: "Minigiant",
  30547. height: math.unit(8 + 5.25, "feet")
  30548. },
  30549. {
  30550. name: "Giant",
  30551. height: math.unit(2000, "feet")
  30552. },
  30553. {
  30554. name: "Mega",
  30555. height: math.unit(371.1, "miles")
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(2, "meters"),
  30564. weight: math.unit(350, "kg"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30568. extra: 898 / 838,
  30569. bottom: 9 / 907
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Micro",
  30576. height: math.unit(8, "meters")
  30577. },
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(50, "meters"),
  30581. default: true
  30582. },
  30583. {
  30584. name: "Macro",
  30585. height: math.unit(500, "meters")
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(6 + 6 / 12, "feet"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/khardesh/front.svg",
  30597. extra: 1788/1596,
  30598. bottom: 66/1854
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(6 + 6 / 12, "feet"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/khardesh/back.svg",
  30606. extra: 1781/1584,
  30607. bottom: 68/1849
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Normal",
  30614. height: math.unit(6 + 6 / 12, "feet"),
  30615. default: true
  30616. },
  30617. {
  30618. name: "Normal+",
  30619. height: math.unit(4, "meters")
  30620. },
  30621. {
  30622. name: "Macro",
  30623. height: math.unit(50, "meters")
  30624. },
  30625. {
  30626. name: "Macro+",
  30627. height: math.unit(100, "meters")
  30628. },
  30629. {
  30630. name: "Megamacro",
  30631. height: math.unit(20, "km")
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/kosho/front.svg",
  30644. extra: 1847 / 1847,
  30645. bottom: 86 / 1933
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Second-stage micro",
  30652. height: math.unit(0.5, "inches")
  30653. },
  30654. {
  30655. name: "First-stage micro",
  30656. height: math.unit(6, "inches")
  30657. },
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(6, "feet"),
  30661. default: true
  30662. },
  30663. {
  30664. name: "First-stage macro",
  30665. height: math.unit(72, "feet")
  30666. },
  30667. {
  30668. name: "Second-stage macro",
  30669. height: math.unit(864, "feet")
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30675. {
  30676. normal: {
  30677. height: math.unit(4 + 6 / 12, "feet"),
  30678. name: "Normal",
  30679. image: {
  30680. source: "./media/characters/hydra/normal.svg",
  30681. extra: 2833 / 2634,
  30682. bottom: 68 / 2901
  30683. }
  30684. },
  30685. smol: {
  30686. height: math.unit(0.705, "inches"),
  30687. name: "Smol",
  30688. image: {
  30689. source: "./media/characters/hydra/smol.svg",
  30690. extra: 2715 / 2540,
  30691. bottom: 0 / 2715
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(4 + 6 / 12, "feet"),
  30699. default: true
  30700. }
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(0.6, "cm"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/daz/front.svg",
  30711. extra: 1682 / 1164,
  30712. bottom: 42 / 1724
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(0.6, "cm"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(235, "lb"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/theo-pangolin/front.svg",
  30733. extra: 1996 / 1969,
  30734. bottom: 115 / 2111
  30735. }
  30736. },
  30737. back: {
  30738. height: math.unit(6, "feet"),
  30739. weight: math.unit(235, "lb"),
  30740. name: "Back",
  30741. image: {
  30742. source: "./media/characters/theo-pangolin/back.svg",
  30743. extra: 1979 / 1979,
  30744. bottom: 40 / 2019
  30745. }
  30746. },
  30747. feral: {
  30748. height: math.unit(2, "feet"),
  30749. weight: math.unit(30, "lb"),
  30750. name: "Feral",
  30751. image: {
  30752. source: "./media/characters/theo-pangolin/feral.svg",
  30753. extra: 803 / 791,
  30754. bottom: 181 / 984
  30755. }
  30756. },
  30757. footFive: {
  30758. height: math.unit(1.43, "feet"),
  30759. name: "Foot (Five Toes)",
  30760. image: {
  30761. source: "./media/characters/theo-pangolin/foot-five.svg"
  30762. }
  30763. },
  30764. footFour: {
  30765. height: math.unit(1.43, "feet"),
  30766. name: "Foot (Four Toes)",
  30767. image: {
  30768. source: "./media/characters/theo-pangolin/foot-four.svg"
  30769. }
  30770. },
  30771. handFour: {
  30772. height: math.unit(0.81, "feet"),
  30773. name: "Hand (Four Fingers)",
  30774. image: {
  30775. source: "./media/characters/theo-pangolin/hand-four.svg"
  30776. }
  30777. },
  30778. handThree: {
  30779. height: math.unit(0.81, "feet"),
  30780. name: "Hand (Three Fingers)",
  30781. image: {
  30782. source: "./media/characters/theo-pangolin/hand-three.svg"
  30783. }
  30784. },
  30785. headFront: {
  30786. height: math.unit(1.37, "feet"),
  30787. name: "Head (Front)",
  30788. image: {
  30789. source: "./media/characters/theo-pangolin/head-front.svg"
  30790. }
  30791. },
  30792. headSide: {
  30793. height: math.unit(1.43, "feet"),
  30794. name: "Head (Side)",
  30795. image: {
  30796. source: "./media/characters/theo-pangolin/head-side.svg"
  30797. }
  30798. },
  30799. tongue: {
  30800. height: math.unit(2.29, "feet"),
  30801. name: "Tongue",
  30802. image: {
  30803. source: "./media/characters/theo-pangolin/tongue.svg"
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Normal",
  30810. height: math.unit(6, "feet")
  30811. },
  30812. {
  30813. name: "Macro",
  30814. height: math.unit(400, "feet"),
  30815. default: true
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(6, "inches"),
  30824. weight: math.unit(0.036, "kg"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/renée/front.svg",
  30828. extra: 900 / 886,
  30829. bottom: 8 / 908
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Nano",
  30836. height: math.unit(1, "nm")
  30837. },
  30838. {
  30839. name: "Micro",
  30840. height: math.unit(1, "mm")
  30841. },
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(6, "inches")
  30845. },
  30846. {
  30847. name: "Macro",
  30848. height: math.unit(2000, "feet"),
  30849. default: true
  30850. },
  30851. {
  30852. name: "Megamacro",
  30853. height: math.unit(2, "km")
  30854. },
  30855. {
  30856. name: "Gigamacro",
  30857. height: math.unit(2000, "km")
  30858. },
  30859. {
  30860. name: "Teramacro",
  30861. height: math.unit(250000, "km")
  30862. },
  30863. ]
  30864. ))
  30865. characterMakers.push(() => makeCharacter(
  30866. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30867. {
  30868. front: {
  30869. height: math.unit(4, "meters"),
  30870. weight: math.unit(150, "kg"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/caledvwlch/front.svg",
  30874. extra: 1760 / 1551,
  30875. bottom: 28 / 1788
  30876. }
  30877. },
  30878. side: {
  30879. height: math.unit(4, "meters"),
  30880. weight: math.unit(150, "kg"),
  30881. name: "Side",
  30882. image: {
  30883. source: "./media/characters/caledvwlch/side.svg",
  30884. extra: 1605 / 1536,
  30885. bottom: 31 / 1636
  30886. }
  30887. },
  30888. back: {
  30889. height: math.unit(4, "meters"),
  30890. weight: math.unit(150, "kg"),
  30891. name: "Back",
  30892. image: {
  30893. source: "./media/characters/caledvwlch/back.svg",
  30894. extra: 1635 / 1565,
  30895. bottom: 27 / 1662
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "\"Incognito\"",
  30902. height: math.unit(4, "meters")
  30903. },
  30904. {
  30905. name: "Small rampage",
  30906. height: math.unit(600, "meters")
  30907. },
  30908. {
  30909. name: "Mega",
  30910. height: math.unit(30, "km")
  30911. },
  30912. {
  30913. name: "Home-size",
  30914. height: math.unit(50, "km"),
  30915. default: true
  30916. },
  30917. {
  30918. name: "Giga",
  30919. height: math.unit(300, "km")
  30920. },
  30921. {
  30922. name: "Lounging",
  30923. height: math.unit(11000, "km")
  30924. },
  30925. {
  30926. name: "Planet snacking",
  30927. height: math.unit(2000000, "km")
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(6, "feet"),
  30936. weight: math.unit(215, "lb"),
  30937. name: "Front",
  30938. image: {
  30939. source: "./media/characters/sapphire-svell/front.svg",
  30940. extra: 495 / 455,
  30941. bottom: 20 / 515
  30942. }
  30943. },
  30944. back: {
  30945. height: math.unit(6, "feet"),
  30946. weight: math.unit(216, "lb"),
  30947. name: "Back",
  30948. image: {
  30949. source: "./media/characters/sapphire-svell/back.svg",
  30950. extra: 497 / 477,
  30951. bottom: 7 / 504
  30952. }
  30953. },
  30954. maw: {
  30955. height: math.unit(1.57, "feet"),
  30956. name: "Maw",
  30957. image: {
  30958. source: "./media/characters/sapphire-svell/maw.svg"
  30959. }
  30960. },
  30961. foot: {
  30962. height: math.unit(1.07, "feet"),
  30963. name: "Foot",
  30964. image: {
  30965. source: "./media/characters/sapphire-svell/foot.svg"
  30966. }
  30967. },
  30968. toering: {
  30969. height: math.unit(1.7, "inch"),
  30970. name: "Toering",
  30971. image: {
  30972. source: "./media/characters/sapphire-svell/toering.svg"
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(300, "feet"),
  30980. default: true
  30981. },
  30982. {
  30983. name: "Augmented",
  30984. height: math.unit(1250, "feet")
  30985. },
  30986. {
  30987. name: "Unleashed",
  30988. height: math.unit(3000, "feet")
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30994. {
  30995. side: {
  30996. height: math.unit(2 + 3 / 12, "feet"),
  30997. weight: math.unit(110, "lb"),
  30998. name: "Side",
  30999. image: {
  31000. source: "./media/characters/glitch-flux/side.svg",
  31001. extra: 997 / 805,
  31002. bottom: 20 / 1017
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Normal",
  31009. height: math.unit(2 + 3 / 12, "feet"),
  31010. default: true
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(4, "meters"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/mid/front.svg",
  31022. extra: 507 / 476,
  31023. bottom: 17 / 524
  31024. }
  31025. },
  31026. back: {
  31027. height: math.unit(4, "meters"),
  31028. name: "Back",
  31029. image: {
  31030. source: "./media/characters/mid/back.svg",
  31031. extra: 519 / 487,
  31032. bottom: 7 / 526
  31033. }
  31034. },
  31035. stuck: {
  31036. height: math.unit(2.2, "meters"),
  31037. name: "Stuck",
  31038. image: {
  31039. source: "./media/characters/mid/stuck.svg",
  31040. extra: 1951 / 1869,
  31041. bottom: 88 / 2039
  31042. }
  31043. }
  31044. },
  31045. [
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(4, "meters"),
  31049. default: true
  31050. },
  31051. {
  31052. name: "Big",
  31053. height: math.unit(10, "meters")
  31054. },
  31055. {
  31056. name: "Macro",
  31057. height: math.unit(800, "meters")
  31058. },
  31059. {
  31060. name: "Megamacro",
  31061. height: math.unit(100, "km")
  31062. },
  31063. {
  31064. name: "Overgrown",
  31065. height: math.unit(1, "parsec")
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(2.5, "meters"),
  31074. weight: math.unit(225, "kg"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/iris/front.svg",
  31078. extra: 3348 / 3251,
  31079. bottom: 205 / 3553
  31080. }
  31081. },
  31082. maw: {
  31083. height: math.unit(0.56, "meter"),
  31084. name: "Maw",
  31085. image: {
  31086. source: "./media/characters/iris/maw.svg"
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Mewter cat",
  31093. height: math.unit(1.2, "meters")
  31094. },
  31095. {
  31096. name: "Minimacro",
  31097. height: math.unit(2.5, "meters"),
  31098. default: true
  31099. },
  31100. {
  31101. name: "Macro",
  31102. height: math.unit(180, "meters")
  31103. },
  31104. {
  31105. name: "Megamacro",
  31106. height: math.unit(2746, "meters")
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(135, "lb"),
  31116. name: "Front",
  31117. image: {
  31118. source: "./media/characters/axel/front.svg",
  31119. extra: 908 / 908,
  31120. bottom: 58 / 966
  31121. }
  31122. },
  31123. side: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(135, "lb"),
  31126. name: "Side",
  31127. image: {
  31128. source: "./media/characters/axel/side.svg",
  31129. extra: 958 / 958,
  31130. bottom: 11 / 969
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(135, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/axel/back.svg",
  31139. extra: 887 / 887,
  31140. bottom: 34 / 921
  31141. }
  31142. },
  31143. head: {
  31144. height: math.unit(1.07, "feet"),
  31145. name: "Head",
  31146. image: {
  31147. source: "./media/characters/axel/head.svg"
  31148. }
  31149. },
  31150. beak: {
  31151. height: math.unit(1.4, "feet"),
  31152. name: "Beak",
  31153. image: {
  31154. source: "./media/characters/axel/beak.svg"
  31155. }
  31156. },
  31157. beakSide: {
  31158. height: math.unit(1.4, "feet"),
  31159. name: "Beak Side",
  31160. image: {
  31161. source: "./media/characters/axel/beak-side.svg"
  31162. }
  31163. },
  31164. sheath: {
  31165. height: math.unit(0.5, "feet"),
  31166. name: "Sheath",
  31167. image: {
  31168. source: "./media/characters/axel/sheath.svg"
  31169. }
  31170. },
  31171. dick: {
  31172. height: math.unit(0.98, "feet"),
  31173. name: "Dick",
  31174. image: {
  31175. source: "./media/characters/axel/dick.svg"
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Macro",
  31182. height: math.unit(68, "meters"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(3.5, "meters"),
  31192. weight: math.unit(1200, "kg"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/joanna/front.svg",
  31196. extra: 1596 / 1488,
  31197. bottom: 29 / 1625
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(3.5, "meters"),
  31202. weight: math.unit(1200, "kg"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/joanna/back.svg",
  31206. extra: 1594 / 1495,
  31207. bottom: 26 / 1620
  31208. }
  31209. },
  31210. frontShorts: {
  31211. height: math.unit(3.5, "meters"),
  31212. weight: math.unit(1200, "kg"),
  31213. name: "Front (Shorts)",
  31214. image: {
  31215. source: "./media/characters/joanna/front-shorts.svg",
  31216. extra: 1596 / 1488,
  31217. bottom: 29 / 1625
  31218. }
  31219. },
  31220. frontBiker: {
  31221. height: math.unit(3.5, "meters"),
  31222. weight: math.unit(1200, "kg"),
  31223. name: "Front (Biker)",
  31224. image: {
  31225. source: "./media/characters/joanna/front-biker.svg",
  31226. extra: 1596 / 1488,
  31227. bottom: 29 / 1625
  31228. }
  31229. },
  31230. backBiker: {
  31231. height: math.unit(3.5, "meters"),
  31232. weight: math.unit(1200, "kg"),
  31233. name: "Back (Biker)",
  31234. image: {
  31235. source: "./media/characters/joanna/back-biker.svg",
  31236. extra: 1594 / 1495,
  31237. bottom: 88 / 1682
  31238. }
  31239. },
  31240. bikeLeft: {
  31241. height: math.unit(2.4, "meters"),
  31242. weight: math.unit(1600, "kg"),
  31243. name: "Bike (Left)",
  31244. image: {
  31245. source: "./media/characters/joanna/bike-left.svg",
  31246. extra: 720 / 720,
  31247. bottom: 8 / 728
  31248. }
  31249. },
  31250. bikeRight: {
  31251. height: math.unit(2.4, "meters"),
  31252. weight: math.unit(1600, "kg"),
  31253. name: "Bike (Right)",
  31254. image: {
  31255. source: "./media/characters/joanna/bike-right.svg",
  31256. extra: 720 / 720,
  31257. bottom: 8 / 728
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Incognito",
  31264. height: math.unit(3.5, "meters")
  31265. },
  31266. {
  31267. name: "Casual Big",
  31268. height: math.unit(200, "meters")
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(600, "meters")
  31273. },
  31274. {
  31275. name: "Original",
  31276. height: math.unit(20, "km"),
  31277. default: true
  31278. },
  31279. {
  31280. name: "Giga",
  31281. height: math.unit(400, "km")
  31282. },
  31283. {
  31284. name: "Lounging",
  31285. height: math.unit(1500, "km")
  31286. },
  31287. {
  31288. name: "Planetary",
  31289. height: math.unit(200000, "km")
  31290. },
  31291. ]
  31292. ))
  31293. characterMakers.push(() => makeCharacter(
  31294. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31295. {
  31296. front: {
  31297. height: math.unit(6, "feet"),
  31298. weight: math.unit(150, "lb"),
  31299. name: "Front",
  31300. image: {
  31301. source: "./media/characters/hugo-sigil/front.svg",
  31302. extra: 522 / 500,
  31303. bottom: 2 / 524
  31304. }
  31305. },
  31306. back: {
  31307. height: math.unit(6, "feet"),
  31308. weight: math.unit(150, "lb"),
  31309. name: "Back",
  31310. image: {
  31311. source: "./media/characters/hugo-sigil/back.svg",
  31312. extra: 519 / 495,
  31313. bottom: 5 / 524
  31314. }
  31315. },
  31316. maw: {
  31317. height: math.unit(1.4, "feet"),
  31318. weight: math.unit(150, "lb"),
  31319. name: "Maw",
  31320. image: {
  31321. source: "./media/characters/hugo-sigil/maw.svg"
  31322. }
  31323. },
  31324. feet: {
  31325. height: math.unit(1.56, "feet"),
  31326. weight: math.unit(150, "lb"),
  31327. name: "Feet",
  31328. image: {
  31329. source: "./media/characters/hugo-sigil/feet.svg",
  31330. extra: 177 / 177,
  31331. bottom: 12 / 189
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Normal",
  31338. height: math.unit(6, "feet")
  31339. },
  31340. {
  31341. name: "Macro",
  31342. height: math.unit(200, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/peri/front.svg",
  31356. extra: 2354 / 2233,
  31357. bottom: 49 / 2403
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Really Small",
  31364. height: math.unit(1, "nm")
  31365. },
  31366. {
  31367. name: "Micro",
  31368. height: math.unit(4, "inches")
  31369. },
  31370. {
  31371. name: "Normal",
  31372. height: math.unit(7, "inches"),
  31373. default: true
  31374. },
  31375. {
  31376. name: "Macro",
  31377. height: math.unit(400, "feet")
  31378. },
  31379. {
  31380. name: "Megamacro",
  31381. height: math.unit(100, "miles")
  31382. },
  31383. ]
  31384. ))
  31385. characterMakers.push(() => makeCharacter(
  31386. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31387. {
  31388. frontSlim: {
  31389. height: math.unit(7, "feet"),
  31390. name: "Front (Slim)",
  31391. image: {
  31392. source: "./media/characters/issilora/front-slim.svg",
  31393. extra: 529 / 449,
  31394. bottom: 53 / 582
  31395. }
  31396. },
  31397. sideSlim: {
  31398. height: math.unit(7, "feet"),
  31399. name: "Side (Slim)",
  31400. image: {
  31401. source: "./media/characters/issilora/side-slim.svg",
  31402. extra: 570 / 480,
  31403. bottom: 30 / 600
  31404. }
  31405. },
  31406. backSlim: {
  31407. height: math.unit(7, "feet"),
  31408. name: "Back (Slim)",
  31409. image: {
  31410. source: "./media/characters/issilora/back-slim.svg",
  31411. extra: 537 / 455,
  31412. bottom: 46 / 583
  31413. }
  31414. },
  31415. frontBuff: {
  31416. height: math.unit(7, "feet"),
  31417. name: "Front (Buff)",
  31418. image: {
  31419. source: "./media/characters/issilora/front-buff.svg",
  31420. extra: 2310 / 2035,
  31421. bottom: 335 / 2645
  31422. }
  31423. },
  31424. head: {
  31425. height: math.unit(1.94, "feet"),
  31426. name: "Head",
  31427. image: {
  31428. source: "./media/characters/issilora/head.svg"
  31429. }
  31430. },
  31431. },
  31432. [
  31433. {
  31434. name: "Minimum",
  31435. height: math.unit(7, "feet")
  31436. },
  31437. {
  31438. name: "Comfortable",
  31439. height: math.unit(17, "feet")
  31440. },
  31441. {
  31442. name: "Fun Size",
  31443. height: math.unit(47, "feet")
  31444. },
  31445. {
  31446. name: "Natural Macro",
  31447. height: math.unit(137, "feet"),
  31448. default: true
  31449. },
  31450. {
  31451. name: "Maximum Kaiju",
  31452. height: math.unit(397, "feet")
  31453. },
  31454. ]
  31455. ))
  31456. characterMakers.push(() => makeCharacter(
  31457. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31458. {
  31459. front: {
  31460. height: math.unit(50 + 9/12, "feet"),
  31461. weight: math.unit(32.8, "tons"),
  31462. name: "Front",
  31463. image: {
  31464. source: "./media/characters/irb'iiritaahn/front.svg",
  31465. extra: 1878/1826,
  31466. bottom: 326/2204
  31467. }
  31468. },
  31469. back: {
  31470. height: math.unit(50 + 9/12, "feet"),
  31471. weight: math.unit(32.8, "tons"),
  31472. name: "Back",
  31473. image: {
  31474. source: "./media/characters/irb'iiritaahn/back.svg",
  31475. extra: 2052/2018,
  31476. bottom: 152/2204
  31477. }
  31478. },
  31479. head: {
  31480. height: math.unit(12.86, "feet"),
  31481. name: "Head",
  31482. image: {
  31483. source: "./media/characters/irb'iiritaahn/head.svg"
  31484. }
  31485. },
  31486. maw: {
  31487. height: math.unit(9.66, "feet"),
  31488. name: "Maw",
  31489. image: {
  31490. source: "./media/characters/irb'iiritaahn/maw.svg"
  31491. }
  31492. },
  31493. frontDick: {
  31494. height: math.unit(8.78461, "feet"),
  31495. name: "Front Dick",
  31496. image: {
  31497. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31498. }
  31499. },
  31500. rearDick: {
  31501. height: math.unit(8.78461, "feet"),
  31502. name: "Rear Dick",
  31503. image: {
  31504. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31505. }
  31506. },
  31507. rearDickUnfolded: {
  31508. height: math.unit(8.78, "feet"),
  31509. name: "Rear Dick (Unfolded)",
  31510. image: {
  31511. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31512. }
  31513. },
  31514. wings: {
  31515. height: math.unit(43, "feet"),
  31516. name: "Wings",
  31517. image: {
  31518. source: "./media/characters/irb'iiritaahn/wings.svg"
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Macro",
  31525. height: math.unit(50 + 9/12, "feet"),
  31526. default: true
  31527. },
  31528. ]
  31529. ))
  31530. characterMakers.push(() => makeCharacter(
  31531. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31532. {
  31533. front: {
  31534. height: math.unit(205, "cm"),
  31535. weight: math.unit(102, "kg"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/irbisgreif/front.svg",
  31539. extra: 785/706,
  31540. bottom: 13/798
  31541. }
  31542. },
  31543. back: {
  31544. height: math.unit(205, "cm"),
  31545. weight: math.unit(102, "kg"),
  31546. name: "Back",
  31547. image: {
  31548. source: "./media/characters/irbisgreif/back.svg",
  31549. extra: 713/701,
  31550. bottom: 26/739
  31551. }
  31552. },
  31553. frontDressed: {
  31554. height: math.unit(216, "cm"),
  31555. weight: math.unit(102, "kg"),
  31556. name: "Front-dressed",
  31557. image: {
  31558. source: "./media/characters/irbisgreif/front-dressed.svg",
  31559. extra: 902/776,
  31560. bottom: 14/916
  31561. }
  31562. },
  31563. sideDressed: {
  31564. height: math.unit(195, "cm"),
  31565. weight: math.unit(102, "kg"),
  31566. name: "Side-dressed",
  31567. image: {
  31568. source: "./media/characters/irbisgreif/side-dressed.svg",
  31569. extra: 788/688,
  31570. bottom: 21/809
  31571. }
  31572. },
  31573. backDressed: {
  31574. height: math.unit(216, "cm"),
  31575. weight: math.unit(102, "kg"),
  31576. name: "Back-dressed",
  31577. image: {
  31578. source: "./media/characters/irbisgreif/back-dressed.svg",
  31579. extra: 901/783,
  31580. bottom: 10/911
  31581. }
  31582. },
  31583. dick: {
  31584. height: math.unit(0.49, "feet"),
  31585. name: "Dick",
  31586. image: {
  31587. source: "./media/characters/irbisgreif/dick.svg"
  31588. }
  31589. },
  31590. wingTop: {
  31591. height: math.unit(1.93 , "feet"),
  31592. name: "Wing-top",
  31593. image: {
  31594. source: "./media/characters/irbisgreif/wing-top.svg"
  31595. }
  31596. },
  31597. wingBottom: {
  31598. height: math.unit(1.93 , "feet"),
  31599. name: "Wing-bottom",
  31600. image: {
  31601. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(216, "cm"),
  31609. default: true
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31615. {
  31616. front: {
  31617. height: math.unit(6, "feet"),
  31618. weight: math.unit(150, "lb"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/pride/front.svg",
  31622. extra: 1299/1230,
  31623. bottom: 18/1317
  31624. }
  31625. },
  31626. },
  31627. [
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(7, "feet")
  31631. },
  31632. {
  31633. name: "Mini-macro",
  31634. height: math.unit(11, "feet")
  31635. },
  31636. {
  31637. name: "Macro",
  31638. height: math.unit(15, "meters"),
  31639. default: true
  31640. },
  31641. {
  31642. name: "Macro+",
  31643. height: math.unit(40, "meters")
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31649. {
  31650. front: {
  31651. height: math.unit(4 + 2 / 12, "feet"),
  31652. weight: math.unit(95, "lb"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/vaelophis-nyx/front.svg",
  31656. extra: 2532/2330,
  31657. bottom: 0/2532
  31658. }
  31659. },
  31660. back: {
  31661. height: math.unit(4 + 2 / 12, "feet"),
  31662. weight: math.unit(95, "lb"),
  31663. name: "Back",
  31664. image: {
  31665. source: "./media/characters/vaelophis-nyx/back.svg",
  31666. extra: 2484/2361,
  31667. bottom: 0/2484
  31668. }
  31669. },
  31670. feralSide: {
  31671. height: math.unit(2 + 1/12, "feet"),
  31672. weight: math.unit(20, "lb"),
  31673. name: "Feral (Side)",
  31674. image: {
  31675. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31676. extra: 1721/1581,
  31677. bottom: 70/1791
  31678. }
  31679. },
  31680. feralLazing: {
  31681. height: math.unit(1.08, "feet"),
  31682. weight: math.unit(20, "lb"),
  31683. name: "Feral (Lazing)",
  31684. image: {
  31685. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31686. extra: 822/822,
  31687. bottom: 248/1070
  31688. }
  31689. },
  31690. ear: {
  31691. height: math.unit(0.416, "feet"),
  31692. name: "Ear",
  31693. image: {
  31694. source: "./media/characters/vaelophis-nyx/ear.svg"
  31695. }
  31696. },
  31697. eye: {
  31698. height: math.unit(0.0748, "feet"),
  31699. name: "Eye",
  31700. image: {
  31701. source: "./media/characters/vaelophis-nyx/eye.svg"
  31702. }
  31703. },
  31704. mouth: {
  31705. height: math.unit(0.378, "feet"),
  31706. name: "Mouth",
  31707. image: {
  31708. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31709. }
  31710. },
  31711. spade: {
  31712. height: math.unit(0.55, "feet"),
  31713. name: "Spade",
  31714. image: {
  31715. source: "./media/characters/vaelophis-nyx/spade.svg"
  31716. }
  31717. },
  31718. },
  31719. [
  31720. {
  31721. name: "Normal",
  31722. height: math.unit(4 + 2/12, "feet"),
  31723. default: true
  31724. },
  31725. ]
  31726. ))
  31727. characterMakers.push(() => makeCharacter(
  31728. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31729. {
  31730. front: {
  31731. height: math.unit(7, "feet"),
  31732. weight: math.unit(231, "lb"),
  31733. name: "Front",
  31734. image: {
  31735. source: "./media/characters/flux/front.svg",
  31736. extra: 919/871,
  31737. bottom: 0/919
  31738. }
  31739. },
  31740. back: {
  31741. height: math.unit(7, "feet"),
  31742. weight: math.unit(231, "lb"),
  31743. name: "Back",
  31744. image: {
  31745. source: "./media/characters/flux/back.svg",
  31746. extra: 1040/992,
  31747. bottom: 0/1040
  31748. }
  31749. },
  31750. frontDressed: {
  31751. height: math.unit(7, "feet"),
  31752. weight: math.unit(231, "lb"),
  31753. name: "Front (Dressed)",
  31754. image: {
  31755. source: "./media/characters/flux/front-dressed.svg",
  31756. extra: 919/871,
  31757. bottom: 0/919
  31758. }
  31759. },
  31760. feralSide: {
  31761. height: math.unit(5, "feet"),
  31762. weight: math.unit(150, "lb"),
  31763. name: "Feral (Side)",
  31764. image: {
  31765. source: "./media/characters/flux/feral-side.svg",
  31766. extra: 598/528,
  31767. bottom: 28/626
  31768. }
  31769. },
  31770. head: {
  31771. height: math.unit(1.585, "feet"),
  31772. name: "Head",
  31773. image: {
  31774. source: "./media/characters/flux/head.svg"
  31775. }
  31776. },
  31777. headSide: {
  31778. height: math.unit(1.74, "feet"),
  31779. name: "Head (Side)",
  31780. image: {
  31781. source: "./media/characters/flux/head-side.svg"
  31782. }
  31783. },
  31784. headSideFire: {
  31785. height: math.unit(1.76, "feet"),
  31786. name: "Head (Side, Fire)",
  31787. image: {
  31788. source: "./media/characters/flux/head-side-fire.svg"
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(7, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(9, "feet"),
  31805. weight: math.unit(1012, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/ulfra-lupae/front.svg",
  31809. extra: 1083/1011,
  31810. bottom: 67/1150
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Micro",
  31817. height: math.unit(6, "inches")
  31818. },
  31819. {
  31820. name: "Socializing",
  31821. height: math.unit(6 + 5/12, "feet")
  31822. },
  31823. {
  31824. name: "Normal",
  31825. height: math.unit(9, "feet"),
  31826. default: true
  31827. },
  31828. {
  31829. name: "Macro",
  31830. height: math.unit(150, "feet")
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(5 + 2/12, "feet"),
  31839. weight: math.unit(120, "lb"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/timber/front.svg",
  31843. extra: 2814/2705,
  31844. bottom: 181/2995
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(5 + 2/12, "feet"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(9, "feet"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/nicki/front.svg",
  31864. extra: 1240/990,
  31865. bottom: 45/1285
  31866. },
  31867. form: "anthro",
  31868. default: true
  31869. },
  31870. side: {
  31871. height: math.unit(9, "feet"),
  31872. name: "Side",
  31873. image: {
  31874. source: "./media/characters/nicki/side.svg",
  31875. extra: 1047/973,
  31876. bottom: 61/1108
  31877. },
  31878. form: "anthro"
  31879. },
  31880. back: {
  31881. height: math.unit(9, "feet"),
  31882. name: "Back",
  31883. image: {
  31884. source: "./media/characters/nicki/back.svg",
  31885. extra: 1006/965,
  31886. bottom: 39/1045
  31887. },
  31888. form: "anthro"
  31889. },
  31890. taur: {
  31891. height: math.unit(15, "feet"),
  31892. name: "Taur",
  31893. image: {
  31894. source: "./media/characters/nicki/taur.svg",
  31895. extra: 1592/1347,
  31896. bottom: 0/1592
  31897. },
  31898. form: "taur",
  31899. default: true
  31900. },
  31901. },
  31902. [
  31903. {
  31904. name: "Normal",
  31905. height: math.unit(9, "feet"),
  31906. form: "anthro",
  31907. default: true
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(15, "feet"),
  31912. form: "taur",
  31913. default: true
  31914. }
  31915. ],
  31916. {
  31917. "anthro": {
  31918. name: "Anthro",
  31919. default: true
  31920. },
  31921. "taur": {
  31922. name: "Taur"
  31923. }
  31924. }
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(7 + 10/12, "feet"),
  31931. weight: math.unit(3.5, "tons"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/lee/front.svg",
  31935. extra: 1773/1615,
  31936. bottom: 86/1859
  31937. }
  31938. },
  31939. hand: {
  31940. height: math.unit(1.78, "feet"),
  31941. name: "Hand",
  31942. image: {
  31943. source: "./media/characters/lee/hand.svg"
  31944. }
  31945. },
  31946. maw: {
  31947. height: math.unit(1.18, "feet"),
  31948. name: "Maw",
  31949. image: {
  31950. source: "./media/characters/lee/maw.svg"
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(7 + 10/12, "feet"),
  31958. default: true
  31959. },
  31960. ]
  31961. ))
  31962. characterMakers.push(() => makeCharacter(
  31963. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31964. {
  31965. front: {
  31966. height: math.unit(9, "feet"),
  31967. name: "Front",
  31968. image: {
  31969. source: "./media/characters/guti/front.svg",
  31970. extra: 4551/4355,
  31971. bottom: 123/4674
  31972. }
  31973. },
  31974. tongue: {
  31975. height: math.unit(1, "feet"),
  31976. name: "Tongue",
  31977. image: {
  31978. source: "./media/characters/guti/tongue.svg"
  31979. }
  31980. },
  31981. paw: {
  31982. height: math.unit(1.18, "feet"),
  31983. name: "Paw",
  31984. image: {
  31985. source: "./media/characters/guti/paw.svg"
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Normal",
  31992. height: math.unit(9, "feet"),
  31993. default: true
  31994. },
  31995. ]
  31996. ))
  31997. characterMakers.push(() => makeCharacter(
  31998. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31999. {
  32000. side: {
  32001. height: math.unit(5, "meters"),
  32002. name: "Side",
  32003. image: {
  32004. source: "./media/characters/vesper/side.svg",
  32005. extra: 1605/1518,
  32006. bottom: 0/1605
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Small",
  32013. height: math.unit(5, "meters")
  32014. },
  32015. {
  32016. name: "Sage",
  32017. height: math.unit(100, "meters"),
  32018. default: true
  32019. },
  32020. {
  32021. name: "Fun Size",
  32022. height: math.unit(600, "meters")
  32023. },
  32024. {
  32025. name: "Goddess",
  32026. height: math.unit(20000, "km")
  32027. },
  32028. {
  32029. name: "Maximum",
  32030. height: math.unit(5, "galaxies")
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(6 + 3/12, "feet"),
  32039. weight: math.unit(190, "lb"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/gawain/front.svg",
  32043. extra: 2222/2139,
  32044. bottom: 90/2312
  32045. }
  32046. },
  32047. back: {
  32048. height: math.unit(6 + 3/12, "feet"),
  32049. weight: math.unit(190, "lb"),
  32050. name: "Back",
  32051. image: {
  32052. source: "./media/characters/gawain/back.svg",
  32053. extra: 2199/2111,
  32054. bottom: 73/2272
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(6 + 3/12, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32068. {
  32069. side: {
  32070. height: math.unit(3.5, "meters"),
  32071. weight: math.unit(16000, "lb"),
  32072. name: "Side",
  32073. image: {
  32074. source: "./media/characters/dascalti/side.svg",
  32075. extra: 392/273,
  32076. bottom: 47/439
  32077. }
  32078. },
  32079. breath: {
  32080. height: math.unit(7.4, "feet"),
  32081. name: "Breath",
  32082. image: {
  32083. source: "./media/characters/dascalti/breath.svg"
  32084. }
  32085. },
  32086. fed: {
  32087. height: math.unit(3.6, "meters"),
  32088. weight: math.unit(16000, "lb"),
  32089. name: "Fed",
  32090. image: {
  32091. source: "./media/characters/dascalti/fed.svg",
  32092. extra: 1419/820,
  32093. bottom: 95/1514
  32094. }
  32095. },
  32096. },
  32097. [
  32098. {
  32099. name: "Normal",
  32100. height: math.unit(3.5, "meters"),
  32101. default: true
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(3 + 5/12, "feet"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/mauve/front.svg",
  32113. extra: 1126/1033,
  32114. bottom: 65/1191
  32115. }
  32116. },
  32117. side: {
  32118. height: math.unit(3 + 5/12, "feet"),
  32119. name: "Side",
  32120. image: {
  32121. source: "./media/characters/mauve/side.svg",
  32122. extra: 1089/1001,
  32123. bottom: 29/1118
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(3 + 5/12, "feet"),
  32128. name: "Back",
  32129. image: {
  32130. source: "./media/characters/mauve/back.svg",
  32131. extra: 1173/1053,
  32132. bottom: 109/1282
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Normal",
  32139. height: math.unit(3 + 5/12, "feet"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(6 + 3/12, "feet"),
  32149. weight: math.unit(430, "lb"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/carlos/front.svg",
  32153. extra: 1964/1913,
  32154. bottom: 70/2034
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(6 + 3/12, "feet"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32168. {
  32169. back: {
  32170. height: math.unit(5 + 10/12, "feet"),
  32171. weight: math.unit(200, "lb"),
  32172. name: "Back",
  32173. image: {
  32174. source: "./media/characters/jax/back.svg",
  32175. extra: 764/739,
  32176. bottom: 25/789
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(5 + 10/12, "feet"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32190. {
  32191. front: {
  32192. height: math.unit(8, "feet"),
  32193. weight: math.unit(250, "lb"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/eikthynir/front.svg",
  32197. extra: 1332/1166,
  32198. bottom: 82/1414
  32199. }
  32200. },
  32201. back: {
  32202. height: math.unit(8, "feet"),
  32203. weight: math.unit(250, "lb"),
  32204. name: "Back",
  32205. image: {
  32206. source: "./media/characters/eikthynir/back.svg",
  32207. extra: 1342/1190,
  32208. bottom: 19/1361
  32209. }
  32210. },
  32211. dick: {
  32212. height: math.unit(2.35, "feet"),
  32213. name: "Dick",
  32214. image: {
  32215. source: "./media/characters/eikthynir/dick.svg"
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(8, "feet"),
  32223. default: true
  32224. },
  32225. ]
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32229. {
  32230. front: {
  32231. height: math.unit(99, "meters"),
  32232. weight: math.unit(13000, "tons"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/zlmos/front.svg",
  32236. extra: 2202/1992,
  32237. bottom: 315/2517
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Macro",
  32244. height: math.unit(99, "meters"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32251. {
  32252. front: {
  32253. height: math.unit(6 + 5/12, "feet"),
  32254. name: "Front",
  32255. image: {
  32256. source: "./media/characters/purri/front.svg",
  32257. extra: 1698/1610,
  32258. bottom: 32/1730
  32259. }
  32260. },
  32261. frontAlt: {
  32262. height: math.unit(6 + 5/12, "feet"),
  32263. name: "Front (Alt)",
  32264. image: {
  32265. source: "./media/characters/purri/front-alt.svg",
  32266. extra: 450/420,
  32267. bottom: 26/476
  32268. }
  32269. },
  32270. boots: {
  32271. height: math.unit(5.5, "feet"),
  32272. name: "Boots",
  32273. image: {
  32274. source: "./media/characters/purri/boots.svg",
  32275. extra: 905/853,
  32276. bottom: 18/923
  32277. }
  32278. },
  32279. lying: {
  32280. height: math.unit(2, "feet"),
  32281. name: "Lying",
  32282. image: {
  32283. source: "./media/characters/purri/lying.svg",
  32284. extra: 940/843,
  32285. bottom: 146/1086
  32286. }
  32287. },
  32288. devious: {
  32289. height: math.unit(1.77, "feet"),
  32290. name: "Devious",
  32291. image: {
  32292. source: "./media/characters/purri/devious.svg",
  32293. extra: 1440/1155,
  32294. bottom: 147/1587
  32295. }
  32296. },
  32297. bean: {
  32298. height: math.unit(1.94, "feet"),
  32299. name: "Bean",
  32300. image: {
  32301. source: "./media/characters/purri/bean.svg"
  32302. }
  32303. },
  32304. },
  32305. [
  32306. {
  32307. name: "Micro",
  32308. height: math.unit(1, "mm")
  32309. },
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(6 + 5/12, "feet"),
  32313. default: true
  32314. },
  32315. {
  32316. name: "Macro :3c",
  32317. height: math.unit(2, "miles")
  32318. },
  32319. ]
  32320. ))
  32321. characterMakers.push(() => makeCharacter(
  32322. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32323. {
  32324. front: {
  32325. height: math.unit(6 + 2/12, "feet"),
  32326. weight: math.unit(250, "lb"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/moonlight/front.svg",
  32330. extra: 1044/908,
  32331. bottom: 56/1100
  32332. }
  32333. },
  32334. feral: {
  32335. height: math.unit(3 + 1/12, "feet"),
  32336. weight: math.unit(50, "kg"),
  32337. name: "Feral",
  32338. image: {
  32339. source: "./media/characters/moonlight/feral.svg",
  32340. extra: 3705/2791,
  32341. bottom: 145/3850
  32342. }
  32343. },
  32344. paw: {
  32345. height: math.unit(1, "feet"),
  32346. name: "Paw",
  32347. image: {
  32348. source: "./media/characters/moonlight/paw.svg"
  32349. }
  32350. },
  32351. paws: {
  32352. height: math.unit(0.98, "feet"),
  32353. name: "Paws",
  32354. image: {
  32355. source: "./media/characters/moonlight/paws.svg",
  32356. extra: 939/939,
  32357. bottom: 50/989
  32358. }
  32359. },
  32360. mouth: {
  32361. height: math.unit(0.48, "feet"),
  32362. name: "Mouth",
  32363. image: {
  32364. source: "./media/characters/moonlight/mouth.svg"
  32365. }
  32366. },
  32367. dick: {
  32368. height: math.unit(1.46, "feet"),
  32369. name: "Dick",
  32370. image: {
  32371. source: "./media/characters/moonlight/dick.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(6 + 2/12, "feet"),
  32379. default: true
  32380. },
  32381. {
  32382. name: "Macro",
  32383. height: math.unit(300, "feet")
  32384. },
  32385. {
  32386. name: "Macro+",
  32387. height: math.unit(1, "mile")
  32388. },
  32389. {
  32390. name: "Mt. Moon",
  32391. height: math.unit(5, "miles")
  32392. },
  32393. {
  32394. name: "Megamacro",
  32395. height: math.unit(15, "miles")
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32401. {
  32402. back: {
  32403. height: math.unit(6, "feet"),
  32404. weight: math.unit(150, "lb"),
  32405. name: "Back",
  32406. image: {
  32407. source: "./media/characters/sylen/back.svg",
  32408. extra: 1335/1273,
  32409. bottom: 107/1442
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(5 + 5/12, "feet")
  32417. },
  32418. {
  32419. name: "Megamacro",
  32420. height: math.unit(3, "miles"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(6, "feet"),
  32430. weight: math.unit(190, "lb"),
  32431. name: "Front",
  32432. image: {
  32433. source: "./media/characters/huttser/front.svg",
  32434. extra: 1152/1058,
  32435. bottom: 23/1175
  32436. }
  32437. },
  32438. side: {
  32439. height: math.unit(6, "feet"),
  32440. weight: math.unit(190, "lb"),
  32441. name: "Side",
  32442. image: {
  32443. source: "./media/characters/huttser/side.svg",
  32444. extra: 1174/1065,
  32445. bottom: 18/1192
  32446. }
  32447. },
  32448. back: {
  32449. height: math.unit(6, "feet"),
  32450. weight: math.unit(190, "lb"),
  32451. name: "Back",
  32452. image: {
  32453. source: "./media/characters/huttser/back.svg",
  32454. extra: 1158/1056,
  32455. bottom: 12/1170
  32456. }
  32457. },
  32458. },
  32459. [
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32464. {
  32465. side: {
  32466. height: math.unit(12 + 9/12, "feet"),
  32467. weight: math.unit(15000, "lb"),
  32468. name: "Side",
  32469. image: {
  32470. source: "./media/characters/faan/side.svg",
  32471. extra: 2747/2697,
  32472. bottom: 0/2747
  32473. }
  32474. },
  32475. front: {
  32476. height: math.unit(12 + 9/12, "feet"),
  32477. weight: math.unit(15000, "lb"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/faan/front.svg",
  32481. extra: 607/571,
  32482. bottom: 24/631
  32483. }
  32484. },
  32485. head: {
  32486. height: math.unit(2.85, "feet"),
  32487. name: "Head",
  32488. image: {
  32489. source: "./media/characters/faan/head.svg"
  32490. }
  32491. },
  32492. headAlt: {
  32493. height: math.unit(3.13, "feet"),
  32494. name: "Head-alt",
  32495. image: {
  32496. source: "./media/characters/faan/head-alt.svg"
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(12 + 9/12, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(6, "feet"),
  32513. weight: math.unit(300, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/tanio/front.svg",
  32517. extra: 711/673,
  32518. bottom: 25/736
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Normal",
  32525. height: math.unit(6, "feet"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(3, "inches"),
  32535. name: "Front",
  32536. image: {
  32537. source: "./media/characters/noboru/front.svg",
  32538. extra: 1039/932,
  32539. bottom: 18/1057
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Micro",
  32546. height: math.unit(3, "inches"),
  32547. default: true
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(1.85, "meters"),
  32556. weight: math.unit(80, "kg"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/daniel-barrett/front.svg",
  32560. extra: 355/337,
  32561. bottom: 9/364
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Pico",
  32568. height: math.unit(0.0433, "mm")
  32569. },
  32570. {
  32571. name: "Nano",
  32572. height: math.unit(1.5, "mm")
  32573. },
  32574. {
  32575. name: "Micro",
  32576. height: math.unit(5.3, "cm"),
  32577. default: true
  32578. },
  32579. {
  32580. name: "Normal",
  32581. height: math.unit(1.85, "meters")
  32582. },
  32583. {
  32584. name: "Macro",
  32585. height: math.unit(64.7, "meters")
  32586. },
  32587. {
  32588. name: "Megamacro",
  32589. height: math.unit(2.26, "km")
  32590. },
  32591. {
  32592. name: "Gigamacro",
  32593. height: math.unit(79, "km")
  32594. },
  32595. {
  32596. name: "Teramacro",
  32597. height: math.unit(2765, "km")
  32598. },
  32599. {
  32600. name: "Petamacro",
  32601. height: math.unit(96678, "km")
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32607. {
  32608. front: {
  32609. height: math.unit(30, "meters"),
  32610. weight: math.unit(400, "tons"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/zeel/front.svg",
  32614. extra: 2599/2599,
  32615. bottom: 226/2825
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Macro",
  32622. height: math.unit(30, "meters"),
  32623. default: true
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32629. {
  32630. front: {
  32631. height: math.unit(6 + 7/12, "feet"),
  32632. weight: math.unit(210, "lb"),
  32633. name: "Front",
  32634. image: {
  32635. source: "./media/characters/tarn/front.svg",
  32636. extra: 3517/3220,
  32637. bottom: 91/3608
  32638. }
  32639. },
  32640. back: {
  32641. height: math.unit(6 + 7/12, "feet"),
  32642. weight: math.unit(210, "lb"),
  32643. name: "Back",
  32644. image: {
  32645. source: "./media/characters/tarn/back.svg",
  32646. extra: 3566/3241,
  32647. bottom: 34/3600
  32648. }
  32649. },
  32650. dick: {
  32651. height: math.unit(1.65, "feet"),
  32652. name: "Dick",
  32653. image: {
  32654. source: "./media/characters/tarn/dick.svg"
  32655. }
  32656. },
  32657. paw: {
  32658. height: math.unit(1.80, "feet"),
  32659. name: "Paw",
  32660. image: {
  32661. source: "./media/characters/tarn/paw.svg"
  32662. }
  32663. },
  32664. tongue: {
  32665. height: math.unit(0.97, "feet"),
  32666. name: "Tongue",
  32667. image: {
  32668. source: "./media/characters/tarn/tongue.svg"
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Micro",
  32675. height: math.unit(4, "inches")
  32676. },
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(6 + 7/12, "feet"),
  32680. default: true
  32681. },
  32682. {
  32683. name: "Macro",
  32684. height: math.unit(300, "feet")
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(5 + 7/12, "feet"),
  32693. weight: math.unit(80, "kg"),
  32694. name: "Front",
  32695. image: {
  32696. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32697. extra: 3023/2865,
  32698. bottom: 33/3056
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(5 + 7/12, "feet"),
  32703. weight: math.unit(80, "kg"),
  32704. name: "Back",
  32705. image: {
  32706. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32707. extra: 3020/2886,
  32708. bottom: 30/3050
  32709. }
  32710. },
  32711. dick: {
  32712. height: math.unit(0.98, "feet"),
  32713. name: "Dick",
  32714. image: {
  32715. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32716. }
  32717. },
  32718. anatomy: {
  32719. height: math.unit(2.86, "feet"),
  32720. name: "Anatomy",
  32721. image: {
  32722. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Really Small",
  32729. height: math.unit(2, "inches")
  32730. },
  32731. {
  32732. name: "Micro",
  32733. height: math.unit(5.583, "inches")
  32734. },
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(5 + 7/12, "feet"),
  32738. default: true
  32739. },
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(67, "feet")
  32743. },
  32744. {
  32745. name: "Megamacro",
  32746. height: math.unit(134, "feet")
  32747. },
  32748. ]
  32749. ))
  32750. characterMakers.push(() => makeCharacter(
  32751. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32752. {
  32753. front: {
  32754. height: math.unit(9, "feet"),
  32755. weight: math.unit(120, "lb"),
  32756. name: "Front",
  32757. image: {
  32758. source: "./media/characters/sally/front.svg",
  32759. extra: 1506/1349,
  32760. bottom: 66/1572
  32761. }
  32762. },
  32763. },
  32764. [
  32765. {
  32766. name: "Normal",
  32767. height: math.unit(9, "feet"),
  32768. default: true
  32769. },
  32770. ]
  32771. ))
  32772. characterMakers.push(() => makeCharacter(
  32773. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32774. {
  32775. front: {
  32776. height: math.unit(8, "feet"),
  32777. weight: math.unit(900, "lb"),
  32778. name: "Front",
  32779. image: {
  32780. source: "./media/characters/owen/front.svg",
  32781. extra: 1761/1657,
  32782. bottom: 74/1835
  32783. }
  32784. },
  32785. side: {
  32786. height: math.unit(8, "feet"),
  32787. weight: math.unit(900, "lb"),
  32788. name: "Side",
  32789. image: {
  32790. source: "./media/characters/owen/side.svg",
  32791. extra: 1797/1734,
  32792. bottom: 30/1827
  32793. }
  32794. },
  32795. back: {
  32796. height: math.unit(8, "feet"),
  32797. weight: math.unit(900, "lb"),
  32798. name: "Back",
  32799. image: {
  32800. source: "./media/characters/owen/back.svg",
  32801. extra: 1796/1706,
  32802. bottom: 59/1855
  32803. }
  32804. },
  32805. maw: {
  32806. height: math.unit(1.76, "feet"),
  32807. name: "Maw",
  32808. image: {
  32809. source: "./media/characters/owen/maw.svg"
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(8, "feet"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32823. {
  32824. front: {
  32825. height: math.unit(4, "feet"),
  32826. weight: math.unit(400, "lb"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/ryth/front.svg",
  32830. extra: 1920/1748,
  32831. bottom: 42/1962
  32832. }
  32833. },
  32834. back: {
  32835. height: math.unit(4, "feet"),
  32836. weight: math.unit(400, "lb"),
  32837. name: "Back",
  32838. image: {
  32839. source: "./media/characters/ryth/back.svg",
  32840. extra: 1897/1690,
  32841. bottom: 89/1986
  32842. }
  32843. },
  32844. mouth: {
  32845. height: math.unit(1.39, "feet"),
  32846. name: "Mouth",
  32847. image: {
  32848. source: "./media/characters/ryth/mouth.svg"
  32849. }
  32850. },
  32851. tailmaw: {
  32852. height: math.unit(1.23, "feet"),
  32853. name: "Tailmaw",
  32854. image: {
  32855. source: "./media/characters/ryth/tailmaw.svg"
  32856. }
  32857. },
  32858. goia: {
  32859. height: math.unit(4, "meters"),
  32860. weight: math.unit(10800, "lb"),
  32861. name: "Goia",
  32862. image: {
  32863. source: "./media/characters/ryth/goia.svg",
  32864. extra: 745/640,
  32865. bottom: 107/852
  32866. }
  32867. },
  32868. goiaFront: {
  32869. height: math.unit(4, "meters"),
  32870. weight: math.unit(10800, "lb"),
  32871. name: "Goia (Front)",
  32872. image: {
  32873. source: "./media/characters/ryth/goia-front.svg",
  32874. extra: 750/586,
  32875. bottom: 114/864
  32876. }
  32877. },
  32878. goiaMaw: {
  32879. height: math.unit(5.55, "feet"),
  32880. name: "Goia Maw",
  32881. image: {
  32882. source: "./media/characters/ryth/goia-maw.svg"
  32883. }
  32884. },
  32885. goiaForepaw: {
  32886. height: math.unit(3.5, "feet"),
  32887. name: "Goia Forepaw",
  32888. image: {
  32889. source: "./media/characters/ryth/goia-forepaw.svg"
  32890. }
  32891. },
  32892. goiaHindpaw: {
  32893. height: math.unit(5.55, "feet"),
  32894. name: "Goia Hindpaw",
  32895. image: {
  32896. source: "./media/characters/ryth/goia-hindpaw.svg"
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(4, "feet"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(7, "feet"),
  32913. weight: math.unit(180, "lb"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/necrolance/front.svg",
  32917. extra: 1062/947,
  32918. bottom: 41/1103
  32919. }
  32920. },
  32921. back: {
  32922. height: math.unit(7, "feet"),
  32923. weight: math.unit(180, "lb"),
  32924. name: "Back",
  32925. image: {
  32926. source: "./media/characters/necrolance/back.svg",
  32927. extra: 1045/984,
  32928. bottom: 14/1059
  32929. }
  32930. },
  32931. wing: {
  32932. height: math.unit(2.67, "feet"),
  32933. name: "Wing",
  32934. image: {
  32935. source: "./media/characters/necrolance/wing.svg"
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Normal",
  32942. height: math.unit(7, "feet"),
  32943. default: true
  32944. },
  32945. ]
  32946. ))
  32947. characterMakers.push(() => makeCharacter(
  32948. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32949. {
  32950. front: {
  32951. height: math.unit(76, "meters"),
  32952. weight: math.unit(30000, "tons"),
  32953. name: "Front",
  32954. image: {
  32955. source: "./media/characters/tyler/front.svg",
  32956. extra: 1640/1640,
  32957. bottom: 114/1754
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Macro",
  32964. height: math.unit(76, "meters"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32971. {
  32972. front: {
  32973. height: math.unit(4 + 11/12, "feet"),
  32974. weight: math.unit(132, "lb"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/icey/front.svg",
  32978. extra: 2750/2550,
  32979. bottom: 33/2783
  32980. }
  32981. },
  32982. back: {
  32983. height: math.unit(4 + 11/12, "feet"),
  32984. weight: math.unit(132, "lb"),
  32985. name: "Back",
  32986. image: {
  32987. source: "./media/characters/icey/back.svg",
  32988. extra: 2624/2481,
  32989. bottom: 35/2659
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(4 + 11/12, "feet"),
  32997. default: true
  32998. },
  32999. ]
  33000. ))
  33001. characterMakers.push(() => makeCharacter(
  33002. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33003. {
  33004. front: {
  33005. height: math.unit(100, "feet"),
  33006. weight: math.unit(0, "lb"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/smile/front.svg",
  33010. extra: 2983/2912,
  33011. bottom: 162/3145
  33012. }
  33013. },
  33014. back: {
  33015. height: math.unit(100, "feet"),
  33016. weight: math.unit(0, "lb"),
  33017. name: "Back",
  33018. image: {
  33019. source: "./media/characters/smile/back.svg",
  33020. extra: 3143/3031,
  33021. bottom: 91/3234
  33022. }
  33023. },
  33024. head: {
  33025. height: math.unit(26.3, "feet"),
  33026. weight: math.unit(0, "lb"),
  33027. name: "Head",
  33028. image: {
  33029. source: "./media/characters/smile/head.svg"
  33030. }
  33031. },
  33032. collar: {
  33033. height: math.unit(5.3, "feet"),
  33034. weight: math.unit(0, "lb"),
  33035. name: "Collar",
  33036. image: {
  33037. source: "./media/characters/smile/collar.svg"
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Macro",
  33044. height: math.unit(100, "feet"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33051. {
  33052. dragon: {
  33053. height: math.unit(26, "feet"),
  33054. weight: math.unit(36, "tons"),
  33055. name: "Dragon",
  33056. image: {
  33057. source: "./media/characters/arimphae/dragon.svg",
  33058. extra: 1574/983,
  33059. bottom: 357/1931
  33060. }
  33061. },
  33062. drake: {
  33063. height: math.unit(9, "feet"),
  33064. weight: math.unit(1.5, "tons"),
  33065. name: "Drake",
  33066. image: {
  33067. source: "./media/characters/arimphae/drake.svg",
  33068. extra: 1120/925,
  33069. bottom: 435/1555
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Small",
  33076. height: math.unit(26*5/9, "feet")
  33077. },
  33078. {
  33079. name: "Normal",
  33080. height: math.unit(26, "feet"),
  33081. default: true
  33082. },
  33083. ]
  33084. ))
  33085. characterMakers.push(() => makeCharacter(
  33086. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33087. {
  33088. front: {
  33089. height: math.unit(8 + 9/12, "feet"),
  33090. name: "Front",
  33091. image: {
  33092. source: "./media/characters/xander/front.svg",
  33093. extra: 1237/974,
  33094. bottom: 94/1331
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(8 + 9/12, "feet"),
  33102. default: true
  33103. },
  33104. {
  33105. name: "Gaze Grabber",
  33106. height: math.unit(13 + 8/12, "feet")
  33107. },
  33108. {
  33109. name: "Jaw Dropper",
  33110. height: math.unit(27, "feet")
  33111. },
  33112. {
  33113. name: "Show Stopper",
  33114. height: math.unit(136, "feet")
  33115. },
  33116. {
  33117. name: "Superstar",
  33118. height: math.unit(1.9e6, "miles")
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33124. {
  33125. side: {
  33126. height: math.unit(2100, "feet"),
  33127. name: "Side",
  33128. image: {
  33129. source: "./media/characters/osiris/side.svg",
  33130. extra: 1105/939,
  33131. bottom: 167/1272
  33132. }
  33133. },
  33134. },
  33135. [
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(2100, "feet"),
  33139. default: true
  33140. },
  33141. ]
  33142. ))
  33143. characterMakers.push(() => makeCharacter(
  33144. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33145. {
  33146. front: {
  33147. height: math.unit(6 + 8/12, "feet"),
  33148. weight: math.unit(225, "lb"),
  33149. name: "Front",
  33150. image: {
  33151. source: "./media/characters/rhys-londe/front.svg",
  33152. extra: 2258/2141,
  33153. bottom: 188/2446
  33154. }
  33155. },
  33156. back: {
  33157. height: math.unit(6 + 8/12, "feet"),
  33158. weight: math.unit(225, "lb"),
  33159. name: "Back",
  33160. image: {
  33161. source: "./media/characters/rhys-londe/back.svg",
  33162. extra: 2237/2137,
  33163. bottom: 63/2300
  33164. }
  33165. },
  33166. frontNsfw: {
  33167. height: math.unit(6 + 8/12, "feet"),
  33168. weight: math.unit(225, "lb"),
  33169. name: "Front (NSFW)",
  33170. image: {
  33171. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33172. extra: 2258/2141,
  33173. bottom: 188/2446
  33174. }
  33175. },
  33176. backNsfw: {
  33177. height: math.unit(6 + 8/12, "feet"),
  33178. weight: math.unit(225, "lb"),
  33179. name: "Back (NSFW)",
  33180. image: {
  33181. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33182. extra: 2237/2137,
  33183. bottom: 63/2300
  33184. }
  33185. },
  33186. dick: {
  33187. height: math.unit(30, "inches"),
  33188. name: "Dick",
  33189. image: {
  33190. source: "./media/characters/rhys-londe/dick.svg"
  33191. }
  33192. },
  33193. maw: {
  33194. height: math.unit(1.6, "feet"),
  33195. name: "Maw",
  33196. image: {
  33197. source: "./media/characters/rhys-londe/maw.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Normal",
  33204. height: math.unit(6 + 8/12, "feet"),
  33205. default: true
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33211. {
  33212. front: {
  33213. height: math.unit(3 + 10/12, "feet"),
  33214. weight: math.unit(90, "lb"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/taivas-ensim/front.svg",
  33218. extra: 1327/1216,
  33219. bottom: 96/1423
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(3 + 10/12, "feet"),
  33224. weight: math.unit(90, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/taivas-ensim/back.svg",
  33228. extra: 1355/1247,
  33229. bottom: 11/1366
  33230. }
  33231. },
  33232. frontNsfw: {
  33233. height: math.unit(3 + 10/12, "feet"),
  33234. weight: math.unit(90, "lb"),
  33235. name: "Front (NSFW)",
  33236. image: {
  33237. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33238. extra: 1327/1216,
  33239. bottom: 96/1423
  33240. }
  33241. },
  33242. backNsfw: {
  33243. height: math.unit(3 + 10/12, "feet"),
  33244. weight: math.unit(90, "lb"),
  33245. name: "Back (NSFW)",
  33246. image: {
  33247. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33248. extra: 1355/1247,
  33249. bottom: 11/1366
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(3 + 10/12, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(9 + 6/12, "feet"),
  33266. weight: math.unit(940, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/byliss/front.svg",
  33270. extra: 1327/1290,
  33271. bottom: 82/1409
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(9 + 6/12, "feet"),
  33276. weight: math.unit(940, "lb"),
  33277. name: "Back",
  33278. image: {
  33279. source: "./media/characters/byliss/back.svg",
  33280. extra: 1376/1349,
  33281. bottom: 9/1385
  33282. }
  33283. },
  33284. frontNsfw: {
  33285. height: math.unit(9 + 6/12, "feet"),
  33286. weight: math.unit(940, "lb"),
  33287. name: "Front (NSFW)",
  33288. image: {
  33289. source: "./media/characters/byliss/front-nsfw.svg",
  33290. extra: 1327/1290,
  33291. bottom: 82/1409
  33292. }
  33293. },
  33294. backNsfw: {
  33295. height: math.unit(9 + 6/12, "feet"),
  33296. weight: math.unit(940, "lb"),
  33297. name: "Back (NSFW)",
  33298. image: {
  33299. source: "./media/characters/byliss/back-nsfw.svg",
  33300. extra: 1376/1349,
  33301. bottom: 9/1385
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(9 + 6/12, "feet"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(5 + 2/12, "feet"),
  33318. weight: math.unit(200, "lb"),
  33319. name: "Front",
  33320. image: {
  33321. source: "./media/characters/noraly/front.svg",
  33322. extra: 4985/4773,
  33323. bottom: 150/5135
  33324. }
  33325. },
  33326. full: {
  33327. height: math.unit(5 + 2/12, "feet"),
  33328. weight: math.unit(164, "lb"),
  33329. name: "Full",
  33330. image: {
  33331. source: "./media/characters/noraly/full.svg",
  33332. extra: 1114/1059,
  33333. bottom: 35/1149
  33334. }
  33335. },
  33336. fuller: {
  33337. height: math.unit(5 + 2/12, "feet"),
  33338. weight: math.unit(230, "lb"),
  33339. name: "Fuller",
  33340. image: {
  33341. source: "./media/characters/noraly/fuller.svg",
  33342. extra: 1114/1059,
  33343. bottom: 35/1149
  33344. }
  33345. },
  33346. fullest: {
  33347. height: math.unit(5 + 2/12, "feet"),
  33348. weight: math.unit(300, "lb"),
  33349. name: "Fullest",
  33350. image: {
  33351. source: "./media/characters/noraly/fullest.svg",
  33352. extra: 1114/1059,
  33353. bottom: 35/1149
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(5 + 2/12, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33367. {
  33368. front: {
  33369. height: math.unit(5 + 2/12, "feet"),
  33370. weight: math.unit(210, "lb"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/pera/front.svg",
  33374. extra: 1560/1531,
  33375. bottom: 165/1725
  33376. }
  33377. },
  33378. back: {
  33379. height: math.unit(5 + 2/12, "feet"),
  33380. weight: math.unit(210, "lb"),
  33381. name: "Back",
  33382. image: {
  33383. source: "./media/characters/pera/back.svg",
  33384. extra: 1523/1493,
  33385. bottom: 152/1675
  33386. }
  33387. },
  33388. dick: {
  33389. height: math.unit(2.4, "feet"),
  33390. name: "Dick",
  33391. image: {
  33392. source: "./media/characters/pera/dick.svg"
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(5 + 2/12, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(12, "feet"),
  33409. weight: math.unit(3200, "lb"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/julian/front.svg",
  33413. extra: 2962/2701,
  33414. bottom: 184/3146
  33415. }
  33416. },
  33417. maw: {
  33418. height: math.unit(5.35, "feet"),
  33419. name: "Maw",
  33420. image: {
  33421. source: "./media/characters/julian/maw.svg"
  33422. }
  33423. },
  33424. paw: {
  33425. height: math.unit(3.07, "feet"),
  33426. name: "Paw",
  33427. image: {
  33428. source: "./media/characters/julian/paw.svg"
  33429. }
  33430. },
  33431. },
  33432. [
  33433. {
  33434. name: "Default",
  33435. height: math.unit(12, "feet"),
  33436. default: true
  33437. },
  33438. {
  33439. name: "Big",
  33440. height: math.unit(50, "feet")
  33441. },
  33442. {
  33443. name: "Really Big",
  33444. height: math.unit(1, "mile")
  33445. },
  33446. {
  33447. name: "Extremely Big",
  33448. height: math.unit(100, "miles")
  33449. },
  33450. {
  33451. name: "Planet Hugger",
  33452. height: math.unit(200, "megameters")
  33453. },
  33454. {
  33455. name: "Unreasonably Big",
  33456. height: math.unit(1e300, "meters")
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33462. {
  33463. solgooleo: {
  33464. height: math.unit(4, "meters"),
  33465. weight: math.unit(6000*1.5, "kg"),
  33466. volume: math.unit(6000, "liters"),
  33467. name: "Solgooleo",
  33468. image: {
  33469. source: "./media/characters/pi/solgooleo.svg",
  33470. extra: 388/331,
  33471. bottom: 29/417
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(4, "meters"),
  33479. default: true
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(8, "feet"),
  33488. weight: math.unit(4, "tons"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/shaun/front.svg",
  33492. extra: 503/495,
  33493. bottom: 20/523
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(8, "feet"),
  33498. weight: math.unit(4, "tons"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/shaun/back.svg",
  33502. extra: 487/480,
  33503. bottom: 20/507
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Lorg",
  33510. height: math.unit(8, "feet"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33517. {
  33518. frontAnthro: {
  33519. height: math.unit(7, "feet"),
  33520. name: "Front",
  33521. image: {
  33522. source: "./media/characters/sini/front-anthro.svg",
  33523. extra: 726/678,
  33524. bottom: 35/761
  33525. },
  33526. form: "anthro",
  33527. default: true
  33528. },
  33529. backAnthro: {
  33530. height: math.unit(7, "feet"),
  33531. name: "Back",
  33532. image: {
  33533. source: "./media/characters/sini/back-anthro.svg",
  33534. extra: 743/701,
  33535. bottom: 12/755
  33536. },
  33537. form: "anthro",
  33538. },
  33539. frontAnthroNsfw: {
  33540. height: math.unit(7, "feet"),
  33541. name: "Front (NSFW)",
  33542. image: {
  33543. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33544. extra: 726/678,
  33545. bottom: 35/761
  33546. },
  33547. form: "anthro"
  33548. },
  33549. backAnthroNsfw: {
  33550. height: math.unit(7, "feet"),
  33551. name: "Back (NSFW)",
  33552. image: {
  33553. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33554. extra: 743/701,
  33555. bottom: 12/755
  33556. },
  33557. form: "anthro",
  33558. },
  33559. mawAnthro: {
  33560. height: math.unit(2.14, "feet"),
  33561. name: "Maw",
  33562. image: {
  33563. source: "./media/characters/sini/maw-anthro.svg"
  33564. },
  33565. form: "anthro"
  33566. },
  33567. dick: {
  33568. height: math.unit(1.45, "feet"),
  33569. name: "Dick",
  33570. image: {
  33571. source: "./media/characters/sini/dick-anthro.svg"
  33572. },
  33573. form: "anthro"
  33574. },
  33575. feral: {
  33576. height: math.unit(16, "feet"),
  33577. name: "Feral",
  33578. image: {
  33579. source: "./media/characters/sini/feral.svg",
  33580. extra: 814/605,
  33581. bottom: 11/825
  33582. },
  33583. form: "feral",
  33584. default: true
  33585. },
  33586. feralNsfw: {
  33587. height: math.unit(16, "feet"),
  33588. name: "Feral (NSFW)",
  33589. image: {
  33590. source: "./media/characters/sini/feral-nsfw.svg",
  33591. extra: 814/605,
  33592. bottom: 11/825
  33593. },
  33594. form: "feral"
  33595. },
  33596. mawFeral: {
  33597. height: math.unit(5.66, "feet"),
  33598. name: "Maw",
  33599. image: {
  33600. source: "./media/characters/sini/maw-feral.svg"
  33601. },
  33602. form: "feral",
  33603. },
  33604. pawFeral: {
  33605. height: math.unit(5.17, "feet"),
  33606. name: "Paw",
  33607. image: {
  33608. source: "./media/characters/sini/paw-feral.svg"
  33609. },
  33610. form: "feral",
  33611. },
  33612. rumpFeral: {
  33613. height: math.unit(13.11, "feet"),
  33614. name: "Rump",
  33615. image: {
  33616. source: "./media/characters/sini/rump-feral.svg"
  33617. },
  33618. form: "feral",
  33619. },
  33620. dickFeral: {
  33621. height: math.unit(1, "feet"),
  33622. name: "Dick",
  33623. image: {
  33624. source: "./media/characters/sini/dick-feral.svg"
  33625. },
  33626. form: "feral",
  33627. },
  33628. eyeFeral: {
  33629. height: math.unit(1.23, "feet"),
  33630. name: "Eye",
  33631. image: {
  33632. source: "./media/characters/sini/eye-feral.svg"
  33633. },
  33634. form: "feral",
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(7, "feet"),
  33641. default: true,
  33642. form: "anthro"
  33643. },
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(16, "feet"),
  33647. default: true,
  33648. form: "feral"
  33649. },
  33650. ],
  33651. {
  33652. "anthro": {
  33653. name: "Anthro",
  33654. default: true
  33655. },
  33656. "feral": {
  33657. name: "Feral",
  33658. }
  33659. }
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33663. {
  33664. side: {
  33665. height: math.unit(13, "meters"),
  33666. weight: math.unit(9072, "kg"),
  33667. name: "Side",
  33668. image: {
  33669. source: "./media/characters/raylldo/side.svg",
  33670. extra: 403/344,
  33671. bottom: 42/445
  33672. }
  33673. },
  33674. leaping: {
  33675. height: math.unit(12.3, "meters"),
  33676. weight: math.unit(9072, "kg"),
  33677. name: "Leaping",
  33678. image: {
  33679. source: "./media/characters/raylldo/leaping.svg",
  33680. extra: 470/249,
  33681. bottom: 13/483
  33682. }
  33683. },
  33684. flying: {
  33685. height: math.unit(18, "meters"),
  33686. weight: math.unit(9072, "kg"),
  33687. name: "Flying",
  33688. image: {
  33689. source: "./media/characters/raylldo/flying.svg"
  33690. }
  33691. },
  33692. head: {
  33693. height: math.unit(5.85, "meters"),
  33694. name: "Head",
  33695. image: {
  33696. source: "./media/characters/raylldo/head.svg"
  33697. }
  33698. },
  33699. maw: {
  33700. height: math.unit(5.32, "meters"),
  33701. name: "Maw",
  33702. image: {
  33703. source: "./media/characters/raylldo/maw.svg"
  33704. }
  33705. },
  33706. eye: {
  33707. height: math.unit(0.54, "meters"),
  33708. name: "Eye",
  33709. image: {
  33710. source: "./media/characters/raylldo/eye.svg"
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(13, "meters"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33724. {
  33725. anthroFront: {
  33726. height: math.unit(9, "feet"),
  33727. weight: math.unit(600, "lb"),
  33728. name: "Anthro (Front)",
  33729. image: {
  33730. source: "./media/characters/glint/anthro-front.svg",
  33731. extra: 1097/1018,
  33732. bottom: 28/1125
  33733. }
  33734. },
  33735. anthroBack: {
  33736. height: math.unit(9, "feet"),
  33737. weight: math.unit(600, "lb"),
  33738. name: "Anthro (Back)",
  33739. image: {
  33740. source: "./media/characters/glint/anthro-back.svg",
  33741. extra: 1154/997,
  33742. bottom: 36/1190
  33743. }
  33744. },
  33745. feral: {
  33746. height: math.unit(11, "feet"),
  33747. weight: math.unit(50000, "lb"),
  33748. name: "Feral",
  33749. image: {
  33750. source: "./media/characters/glint/feral.svg",
  33751. extra: 3035/1585,
  33752. bottom: 1169/4204
  33753. }
  33754. },
  33755. dickAnthro: {
  33756. height: math.unit(0.7, "meters"),
  33757. name: "Dick (Anthro)",
  33758. image: {
  33759. source: "./media/characters/glint/dick-anthro.svg"
  33760. }
  33761. },
  33762. dickFeral: {
  33763. height: math.unit(2.65, "meters"),
  33764. name: "Dick (Feral)",
  33765. image: {
  33766. source: "./media/characters/glint/dick-feral.svg"
  33767. }
  33768. },
  33769. slitHidden: {
  33770. height: math.unit(5.85, "meters"),
  33771. name: "Slit (Hidden)",
  33772. image: {
  33773. source: "./media/characters/glint/slit-hidden.svg"
  33774. }
  33775. },
  33776. slitErect: {
  33777. height: math.unit(5.85, "meters"),
  33778. name: "Slit (Erect)",
  33779. image: {
  33780. source: "./media/characters/glint/slit-erect.svg"
  33781. }
  33782. },
  33783. mawAnthro: {
  33784. height: math.unit(0.63, "meters"),
  33785. name: "Maw (Anthro)",
  33786. image: {
  33787. source: "./media/characters/glint/maw.svg"
  33788. }
  33789. },
  33790. mawFeral: {
  33791. height: math.unit(2.89, "meters"),
  33792. name: "Maw (Feral)",
  33793. image: {
  33794. source: "./media/characters/glint/maw.svg"
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(9, "feet"),
  33802. default: true
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33808. {
  33809. side: {
  33810. height: math.unit(15, "feet"),
  33811. weight: math.unit(5000, "kg"),
  33812. name: "Side",
  33813. image: {
  33814. source: "./media/characters/kairne/side.svg",
  33815. extra: 979/811,
  33816. bottom: 13/992
  33817. }
  33818. },
  33819. front: {
  33820. height: math.unit(15, "feet"),
  33821. weight: math.unit(5000, "kg"),
  33822. name: "Front",
  33823. image: {
  33824. source: "./media/characters/kairne/front.svg",
  33825. extra: 908/814,
  33826. bottom: 26/934
  33827. }
  33828. },
  33829. sideNsfw: {
  33830. height: math.unit(15, "feet"),
  33831. weight: math.unit(5000, "kg"),
  33832. name: "Side (NSFW)",
  33833. image: {
  33834. source: "./media/characters/kairne/side-nsfw.svg",
  33835. extra: 979/811,
  33836. bottom: 13/992
  33837. }
  33838. },
  33839. frontNsfw: {
  33840. height: math.unit(15, "feet"),
  33841. weight: math.unit(5000, "kg"),
  33842. name: "Front (NSFW)",
  33843. image: {
  33844. source: "./media/characters/kairne/front-nsfw.svg",
  33845. extra: 908/814,
  33846. bottom: 26/934
  33847. }
  33848. },
  33849. dickCaged: {
  33850. height: math.unit(0.65, "meters"),
  33851. name: "Dick-caged",
  33852. image: {
  33853. source: "./media/characters/kairne/dick-caged.svg"
  33854. }
  33855. },
  33856. dick: {
  33857. height: math.unit(0.79, "meters"),
  33858. name: "Dick",
  33859. image: {
  33860. source: "./media/characters/kairne/dick.svg"
  33861. }
  33862. },
  33863. genitals: {
  33864. height: math.unit(1.29, "meters"),
  33865. name: "Genitals",
  33866. image: {
  33867. source: "./media/characters/kairne/genitals.svg"
  33868. }
  33869. },
  33870. maw: {
  33871. height: math.unit(1.73, "meters"),
  33872. name: "Maw",
  33873. image: {
  33874. source: "./media/characters/kairne/maw.svg"
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(15, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(5 + 8/12, "feet"),
  33891. weight: math.unit(139, "lb"),
  33892. name: "Front",
  33893. image: {
  33894. source: "./media/characters/biscuit-jackal/front.svg",
  33895. extra: 2106/1961,
  33896. bottom: 58/2164
  33897. }
  33898. },
  33899. back: {
  33900. height: math.unit(5 + 8/12, "feet"),
  33901. weight: math.unit(139, "lb"),
  33902. name: "Back",
  33903. image: {
  33904. source: "./media/characters/biscuit-jackal/back.svg",
  33905. extra: 2132/1976,
  33906. bottom: 57/2189
  33907. }
  33908. },
  33909. werejackal: {
  33910. height: math.unit(6 + 3/12, "feet"),
  33911. weight: math.unit(188, "lb"),
  33912. name: "Werejackal",
  33913. image: {
  33914. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33915. extra: 2373/2178,
  33916. bottom: 53/2426
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(5 + 8/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(140, "cm"),
  33933. weight: math.unit(45, "kg"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/tayra-white/front.svg",
  33937. extra: 2229/2192,
  33938. bottom: 75/2304
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(140, "cm"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(4 + 5/12, "feet"),
  33955. name: "Front",
  33956. image: {
  33957. source: "./media/characters/scoop/front.svg",
  33958. extra: 1257/1136,
  33959. bottom: 69/1326
  33960. }
  33961. },
  33962. back: {
  33963. height: math.unit(4 + 5/12, "feet"),
  33964. name: "Back",
  33965. image: {
  33966. source: "./media/characters/scoop/back.svg",
  33967. extra: 1321/1152,
  33968. bottom: 32/1353
  33969. }
  33970. },
  33971. maw: {
  33972. height: math.unit(0.68, "feet"),
  33973. name: "Maw",
  33974. image: {
  33975. source: "./media/characters/scoop/maw.svg"
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Really Small",
  33982. height: math.unit(1, "mm")
  33983. },
  33984. {
  33985. name: "Micro",
  33986. height: math.unit(1, "inch")
  33987. },
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(4 + 5/12, "feet"),
  33991. default: true
  33992. },
  33993. {
  33994. name: "Macro",
  33995. height: math.unit(200, "feet")
  33996. },
  33997. {
  33998. name: "Megamacro",
  33999. height: math.unit(3240, "feet")
  34000. },
  34001. {
  34002. name: "Teramacro",
  34003. height: math.unit(2500, "miles")
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34009. {
  34010. front: {
  34011. height: math.unit(15 + 7/12, "feet"),
  34012. weight: math.unit(1150, "tons"),
  34013. name: "Front",
  34014. image: {
  34015. source: "./media/characters/saphinara/front.svg",
  34016. extra: 1837/1643,
  34017. bottom: 84/1921
  34018. },
  34019. form: "normal",
  34020. default: true
  34021. },
  34022. side: {
  34023. height: math.unit(15 + 7/12, "feet"),
  34024. weight: math.unit(1150, "tons"),
  34025. name: "Side",
  34026. image: {
  34027. source: "./media/characters/saphinara/side.svg",
  34028. extra: 605/547,
  34029. bottom: 6/611
  34030. },
  34031. form: "normal"
  34032. },
  34033. back: {
  34034. height: math.unit(15 + 7/12, "feet"),
  34035. weight: math.unit(1150, "tons"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/saphinara/back.svg",
  34039. extra: 591/531,
  34040. bottom: 13/604
  34041. },
  34042. form: "normal"
  34043. },
  34044. frontTail: {
  34045. height: math.unit(15 + 7/12, "feet"),
  34046. weight: math.unit(1150, "tons"),
  34047. name: "Front (Full Tail)",
  34048. image: {
  34049. source: "./media/characters/saphinara/front-tail.svg",
  34050. extra: 2256/1630,
  34051. bottom: 261/2517
  34052. },
  34053. form: "normal"
  34054. },
  34055. insides: {
  34056. height: math.unit(11.92, "feet"),
  34057. name: "Insides",
  34058. image: {
  34059. source: "./media/characters/saphinara/insides.svg"
  34060. },
  34061. form: "normal"
  34062. },
  34063. head: {
  34064. height: math.unit(4.17, "feet"),
  34065. name: "Head",
  34066. image: {
  34067. source: "./media/characters/saphinara/head.svg"
  34068. },
  34069. form: "normal"
  34070. },
  34071. tongue: {
  34072. height: math.unit(4.60, "feet"),
  34073. name: "Tongue",
  34074. image: {
  34075. source: "./media/characters/saphinara/tongue.svg"
  34076. },
  34077. form: "normal"
  34078. },
  34079. headEnraged: {
  34080. height: math.unit(5.55, "feet"),
  34081. name: "Head (Enraged)",
  34082. image: {
  34083. source: "./media/characters/saphinara/head-enraged.svg"
  34084. },
  34085. form: "normal"
  34086. },
  34087. wings: {
  34088. height: math.unit(11.95, "feet"),
  34089. name: "Wings",
  34090. image: {
  34091. source: "./media/characters/saphinara/wings.svg"
  34092. },
  34093. form: "normal"
  34094. },
  34095. feathers: {
  34096. height: math.unit(8.92, "feet"),
  34097. name: "Feathers",
  34098. image: {
  34099. source: "./media/characters/saphinara/feathers.svg"
  34100. },
  34101. form: "normal"
  34102. },
  34103. shackles: {
  34104. height: math.unit(2, "feet"),
  34105. name: "Shackles",
  34106. image: {
  34107. source: "./media/characters/saphinara/shackles.svg"
  34108. },
  34109. form: "normal"
  34110. },
  34111. eyes: {
  34112. height: math.unit(1.331, "feet"),
  34113. name: "Eyes",
  34114. image: {
  34115. source: "./media/characters/saphinara/eyes.svg"
  34116. },
  34117. form: "normal"
  34118. },
  34119. eyesEnraged: {
  34120. height: math.unit(1.331, "feet"),
  34121. name: "Eyes (Enraged)",
  34122. image: {
  34123. source: "./media/characters/saphinara/eyes-enraged.svg"
  34124. },
  34125. form: "normal"
  34126. },
  34127. trueFormSide: {
  34128. height: math.unit(200, "feet"),
  34129. weight: math.unit(1e7, "tons"),
  34130. name: "Side",
  34131. image: {
  34132. source: "./media/characters/saphinara/true-form-side.svg",
  34133. extra: 1399/770,
  34134. bottom: 97/1496
  34135. },
  34136. form: "true-form",
  34137. default: true
  34138. },
  34139. trueFormMaw: {
  34140. height: math.unit(71.5, "feet"),
  34141. name: "Maw",
  34142. image: {
  34143. source: "./media/characters/saphinara/true-form-maw.svg",
  34144. extra: 2302/1453,
  34145. bottom: 0/2302
  34146. },
  34147. form: "true-form"
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(15 + 7/12, "feet"),
  34154. default: true,
  34155. form: "normal"
  34156. },
  34157. {
  34158. name: "Angry",
  34159. height: math.unit(30 + 6/12, "feet"),
  34160. form: "normal"
  34161. },
  34162. {
  34163. name: "Enraged",
  34164. height: math.unit(102 + 1/12, "feet"),
  34165. form: "normal"
  34166. },
  34167. {
  34168. name: "True",
  34169. height: math.unit(200, "feet"),
  34170. default: true,
  34171. form: "true-form"
  34172. }
  34173. ],
  34174. {
  34175. "normal": {
  34176. name: "Normal",
  34177. default: true
  34178. },
  34179. "true-form": {
  34180. name: "True Form"
  34181. }
  34182. }
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(6 + 8/12, "feet"),
  34189. weight: math.unit(300, "lb"),
  34190. name: "Front",
  34191. image: {
  34192. source: "./media/characters/jrain/front.svg",
  34193. extra: 3039/2865,
  34194. bottom: 399/3438
  34195. }
  34196. },
  34197. back: {
  34198. height: math.unit(6 + 8/12, "feet"),
  34199. weight: math.unit(300, "lb"),
  34200. name: "Back",
  34201. image: {
  34202. source: "./media/characters/jrain/back.svg",
  34203. extra: 3089/2938,
  34204. bottom: 172/3261
  34205. }
  34206. },
  34207. head: {
  34208. height: math.unit(2.14, "feet"),
  34209. name: "Head",
  34210. image: {
  34211. source: "./media/characters/jrain/head.svg"
  34212. }
  34213. },
  34214. maw: {
  34215. height: math.unit(1.77, "feet"),
  34216. name: "Maw",
  34217. image: {
  34218. source: "./media/characters/jrain/maw.svg"
  34219. }
  34220. },
  34221. leftHand: {
  34222. height: math.unit(1.1, "feet"),
  34223. name: "Left Hand",
  34224. image: {
  34225. source: "./media/characters/jrain/left-hand.svg"
  34226. }
  34227. },
  34228. rightHand: {
  34229. height: math.unit(1.1, "feet"),
  34230. name: "Right Hand",
  34231. image: {
  34232. source: "./media/characters/jrain/right-hand.svg"
  34233. }
  34234. },
  34235. eye: {
  34236. height: math.unit(0.35, "feet"),
  34237. name: "Eye",
  34238. image: {
  34239. source: "./media/characters/jrain/eye.svg"
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Normal",
  34246. height: math.unit(6 + 8/12, "feet"),
  34247. default: true
  34248. },
  34249. {
  34250. name: "Casually Large",
  34251. height: math.unit(25, "feet")
  34252. },
  34253. {
  34254. name: "Giant",
  34255. height: math.unit(100, "feet")
  34256. },
  34257. {
  34258. name: "Kaiju",
  34259. height: math.unit(300, "feet")
  34260. },
  34261. ]
  34262. ))
  34263. characterMakers.push(() => makeCharacter(
  34264. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34265. {
  34266. dragon: {
  34267. height: math.unit(5, "meters"),
  34268. name: "Dragon",
  34269. image: {
  34270. source: "./media/characters/sabrina/dragon.svg",
  34271. extra: 3670 / 2365,
  34272. bottom: 333 / 4003
  34273. }
  34274. },
  34275. gryphon: {
  34276. height: math.unit(3, "meters"),
  34277. name: "Gryphon",
  34278. image: {
  34279. source: "./media/characters/sabrina/gryphon.svg",
  34280. extra: 1576 / 945,
  34281. bottom: 71 / 1647
  34282. }
  34283. },
  34284. snake: {
  34285. height: math.unit(12, "meters"),
  34286. name: "Snake",
  34287. image: {
  34288. source: "./media/characters/sabrina/snake.svg",
  34289. extra: 1758 / 1320,
  34290. bottom: 186 / 1944
  34291. }
  34292. },
  34293. collar: {
  34294. height: math.unit(1.86, "meters"),
  34295. name: "Collar",
  34296. image: {
  34297. source: "./media/characters/sabrina/collar.svg"
  34298. }
  34299. },
  34300. eye: {
  34301. height: math.unit(0.53, "meters"),
  34302. name: "Eye",
  34303. image: {
  34304. source: "./media/characters/sabrina/eye.svg"
  34305. }
  34306. },
  34307. foot: {
  34308. height: math.unit(1.86, "meters"),
  34309. name: "Foot",
  34310. image: {
  34311. source: "./media/characters/sabrina/foot.svg"
  34312. }
  34313. },
  34314. hand: {
  34315. height: math.unit(1.32, "meters"),
  34316. name: "Hand",
  34317. image: {
  34318. source: "./media/characters/sabrina/hand.svg"
  34319. }
  34320. },
  34321. head: {
  34322. height: math.unit(2.44, "meters"),
  34323. name: "Head",
  34324. image: {
  34325. source: "./media/characters/sabrina/head.svg"
  34326. }
  34327. },
  34328. headAngry: {
  34329. height: math.unit(2.44, "meters"),
  34330. name: "Head (Angry))",
  34331. image: {
  34332. source: "./media/characters/sabrina/head-angry.svg"
  34333. }
  34334. },
  34335. maw: {
  34336. height: math.unit(1.65, "meters"),
  34337. name: "Maw",
  34338. image: {
  34339. source: "./media/characters/sabrina/maw.svg"
  34340. }
  34341. },
  34342. spikes: {
  34343. height: math.unit(1.69, "meters"),
  34344. name: "Spikes",
  34345. image: {
  34346. source: "./media/characters/sabrina/spikes.svg"
  34347. }
  34348. },
  34349. stomach: {
  34350. height: math.unit(1.15, "meters"),
  34351. name: "Stomach",
  34352. image: {
  34353. source: "./media/characters/sabrina/stomach.svg"
  34354. }
  34355. },
  34356. tongue: {
  34357. height: math.unit(1.27, "meters"),
  34358. name: "Tongue",
  34359. image: {
  34360. source: "./media/characters/sabrina/tongue.svg"
  34361. }
  34362. },
  34363. wingDorsal: {
  34364. height: math.unit(4.85, "meters"),
  34365. name: "Wing (Dorsal)",
  34366. image: {
  34367. source: "./media/characters/sabrina/wing-dorsal.svg"
  34368. }
  34369. },
  34370. wingVentral: {
  34371. height: math.unit(4.85, "meters"),
  34372. name: "Wing (Ventral)",
  34373. image: {
  34374. source: "./media/characters/sabrina/wing-ventral.svg"
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Normal",
  34381. height: math.unit(5, "meters"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34388. {
  34389. frontMaid: {
  34390. height: math.unit(5 + 5/12, "feet"),
  34391. weight: math.unit(130, "lb"),
  34392. name: "Front (Maid)",
  34393. image: {
  34394. source: "./media/characters/midnight-tales/front-maid.svg",
  34395. extra: 489/454,
  34396. bottom: 61/550
  34397. }
  34398. },
  34399. frontFormal: {
  34400. height: math.unit(5 + 5/12, "feet"),
  34401. weight: math.unit(130, "lb"),
  34402. name: "Front (Formal)",
  34403. image: {
  34404. source: "./media/characters/midnight-tales/front-formal.svg",
  34405. extra: 489/454,
  34406. bottom: 61/550
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(5 + 5/12, "feet"),
  34411. weight: math.unit(130, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/midnight-tales/back.svg",
  34415. extra: 498/456,
  34416. bottom: 33/531
  34417. }
  34418. },
  34419. frontBeast: {
  34420. height: math.unit(40, "feet"),
  34421. weight: math.unit(64000, "lb"),
  34422. name: "Front (Beast)",
  34423. image: {
  34424. source: "./media/characters/midnight-tales/front-beast.svg",
  34425. extra: 927/860,
  34426. bottom: 53/980
  34427. }
  34428. },
  34429. backBeast: {
  34430. height: math.unit(40, "feet"),
  34431. weight: math.unit(64000, "lb"),
  34432. name: "Back (Beast)",
  34433. image: {
  34434. source: "./media/characters/midnight-tales/back-beast.svg",
  34435. extra: 929/855,
  34436. bottom: 16/945
  34437. }
  34438. },
  34439. footBeast: {
  34440. height: math.unit(6.7, "feet"),
  34441. name: "Foot (Beast)",
  34442. image: {
  34443. source: "./media/characters/midnight-tales/foot-beast.svg"
  34444. }
  34445. },
  34446. headBeast: {
  34447. height: math.unit(8, "feet"),
  34448. name: "Head (Beast)",
  34449. image: {
  34450. source: "./media/characters/midnight-tales/head-beast.svg"
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(5 + 5 / 12, "feet"),
  34458. default: true
  34459. },
  34460. {
  34461. name: "Macro",
  34462. height: math.unit(25, "feet")
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(5 + 10/12, "feet"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/argon/front.svg",
  34474. extra: 2009/1935,
  34475. bottom: 118/2127
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(5 + 10/12, "feet"),
  34480. name: "Back",
  34481. image: {
  34482. source: "./media/characters/argon/back.svg",
  34483. extra: 2047/1992,
  34484. bottom: 20/2067
  34485. }
  34486. },
  34487. frontDressed: {
  34488. height: math.unit(5 + 10/12, "feet"),
  34489. name: "Front (Dressed)",
  34490. image: {
  34491. source: "./media/characters/argon/front-dressed.svg",
  34492. extra: 2009/1935,
  34493. bottom: 118/2127
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(5 + 10/12, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(8 + 6/12, "feet"),
  34510. weight: math.unit(1150, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/kichi/front.svg",
  34514. extra: 1267/1164,
  34515. bottom: 61/1328
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(8 + 6/12, "feet"),
  34520. weight: math.unit(1150, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/kichi/back.svg",
  34524. extra: 1273/1166,
  34525. bottom: 33/1306
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(8 + 6/12, "feet"),
  34533. default: true
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(6, "feet"),
  34542. weight: math.unit(210, "lb"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/manetel-greyscale/front.svg",
  34546. extra: 350/312,
  34547. bottom: 8/358
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Micro",
  34554. height: math.unit(2, "inches")
  34555. },
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(6, "feet"),
  34559. default: true
  34560. },
  34561. {
  34562. name: "Minimacro",
  34563. height: math.unit(17, "feet")
  34564. },
  34565. {
  34566. name: "Macro",
  34567. height: math.unit(117, "feet")
  34568. },
  34569. ]
  34570. ))
  34571. characterMakers.push(() => makeCharacter(
  34572. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34573. {
  34574. side: {
  34575. height: math.unit(5 + 1/12, "feet"),
  34576. weight: math.unit(418, "lb"),
  34577. name: "Side",
  34578. image: {
  34579. source: "./media/characters/softpurr/side.svg",
  34580. extra: 1993/1945,
  34581. bottom: 134/2127
  34582. }
  34583. },
  34584. front: {
  34585. height: math.unit(5 + 1/12, "feet"),
  34586. weight: math.unit(418, "lb"),
  34587. name: "Front",
  34588. image: {
  34589. source: "./media/characters/softpurr/front.svg",
  34590. extra: 1950/1856,
  34591. bottom: 174/2124
  34592. }
  34593. },
  34594. paw: {
  34595. height: math.unit(1, "feet"),
  34596. name: "Paw",
  34597. image: {
  34598. source: "./media/characters/softpurr/paw.svg"
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(5 + 1/12, "feet"),
  34606. default: true
  34607. },
  34608. ]
  34609. ))
  34610. characterMakers.push(() => makeCharacter(
  34611. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34612. {
  34613. front: {
  34614. height: math.unit(260, "meters"),
  34615. name: "Front",
  34616. image: {
  34617. source: "./media/characters/anahita/front.svg",
  34618. extra: 665/635,
  34619. bottom: 89/754
  34620. }
  34621. },
  34622. },
  34623. [
  34624. {
  34625. name: "Macro",
  34626. height: math.unit(260, "meters"),
  34627. default: true
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34633. {
  34634. front: {
  34635. height: math.unit(4 + 10/12, "feet"),
  34636. weight: math.unit(160, "lb"),
  34637. name: "Front",
  34638. image: {
  34639. source: "./media/characters/chip-mouse/front.svg",
  34640. extra: 3528/3408,
  34641. bottom: 0/3528
  34642. }
  34643. },
  34644. frontNsfw: {
  34645. height: math.unit(4 + 10/12, "feet"),
  34646. weight: math.unit(160, "lb"),
  34647. name: "Front (NSFW)",
  34648. image: {
  34649. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34650. extra: 3528/3408,
  34651. bottom: 0/3528
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(4 + 10/12, "feet"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34665. {
  34666. side: {
  34667. height: math.unit(10, "feet"),
  34668. weight: math.unit(14000, "lb"),
  34669. name: "Side",
  34670. image: {
  34671. source: "./media/characters/kremm/side.svg",
  34672. extra: 1390/1053,
  34673. bottom: 90/1480
  34674. }
  34675. },
  34676. gut: {
  34677. height: math.unit(5.8, "feet"),
  34678. name: "Gut",
  34679. image: {
  34680. source: "./media/characters/kremm/gut.svg"
  34681. }
  34682. },
  34683. ass: {
  34684. height: math.unit(6.1, "feet"),
  34685. name: "Ass",
  34686. image: {
  34687. source: "./media/characters/kremm/ass.svg"
  34688. }
  34689. },
  34690. jaws: {
  34691. height: math.unit(2.2, "feet"),
  34692. name: "Jaws",
  34693. image: {
  34694. source: "./media/characters/kremm/jaws.svg"
  34695. }
  34696. },
  34697. dick: {
  34698. height: math.unit(4.26, "feet"),
  34699. name: "Dick",
  34700. image: {
  34701. source: "./media/characters/kremm/dick.svg"
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(10, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(30, "stories"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/kai/front.svg",
  34721. extra: 1892/1718,
  34722. bottom: 162/2054
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Macro",
  34729. height: math.unit(30, "stories"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(6 + 4/12, "feet"),
  34739. weight: math.unit(145, "lb"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/sykes/front.svg",
  34743. extra: 1321 / 1187,
  34744. bottom: 66 / 1387
  34745. }
  34746. },
  34747. back: {
  34748. height: math.unit(6 + 4/12, "feet"),
  34749. weight: math.unit(145, "lb"),
  34750. name: "Back",
  34751. image: {
  34752. source: "./media/characters/sykes/back.svg",
  34753. extra: 1326/1181,
  34754. bottom: 31/1357
  34755. }
  34756. },
  34757. traditionalOutfit: {
  34758. height: math.unit(6 + 4/12, "feet"),
  34759. weight: math.unit(145, "lb"),
  34760. name: "Traditional Outfit",
  34761. image: {
  34762. source: "./media/characters/sykes/traditional-outfit.svg",
  34763. extra: 1321 / 1187,
  34764. bottom: 66 / 1387
  34765. }
  34766. },
  34767. adventureOutfit: {
  34768. height: math.unit(6 + 4/12, "feet"),
  34769. weight: math.unit(145, "lb"),
  34770. name: "Adventure Outfit",
  34771. image: {
  34772. source: "./media/characters/sykes/adventure-outfit.svg",
  34773. extra: 1321 / 1187,
  34774. bottom: 66 / 1387
  34775. }
  34776. },
  34777. handLeft: {
  34778. height: math.unit(0.9, "feet"),
  34779. name: "Hand (Left)",
  34780. image: {
  34781. source: "./media/characters/sykes/hand-left.svg"
  34782. }
  34783. },
  34784. handRight: {
  34785. height: math.unit(0.839, "feet"),
  34786. name: "Hand (Right)",
  34787. image: {
  34788. source: "./media/characters/sykes/hand-right.svg"
  34789. }
  34790. },
  34791. leftFoot: {
  34792. height: math.unit(1.2, "feet"),
  34793. name: "Foot (Left)",
  34794. image: {
  34795. source: "./media/characters/sykes/foot-left.svg"
  34796. }
  34797. },
  34798. rightFoot: {
  34799. height: math.unit(1.2, "feet"),
  34800. name: "Foot (Right)",
  34801. image: {
  34802. source: "./media/characters/sykes/foot-right.svg"
  34803. }
  34804. },
  34805. maw: {
  34806. height: math.unit(1.93, "feet"),
  34807. name: "Maw",
  34808. image: {
  34809. source: "./media/characters/sykes/maw.svg"
  34810. }
  34811. },
  34812. teeth: {
  34813. height: math.unit(0.51, "feet"),
  34814. name: "Teeth",
  34815. image: {
  34816. source: "./media/characters/sykes/teeth.svg"
  34817. }
  34818. },
  34819. tongue: {
  34820. height: math.unit(2.13, "feet"),
  34821. name: "Tongue",
  34822. image: {
  34823. source: "./media/characters/sykes/tongue.svg"
  34824. }
  34825. },
  34826. uvula: {
  34827. height: math.unit(0.16, "feet"),
  34828. name: "Uvula",
  34829. image: {
  34830. source: "./media/characters/sykes/uvula.svg"
  34831. }
  34832. },
  34833. collar: {
  34834. height: math.unit(0.287, "feet"),
  34835. name: "Collar",
  34836. image: {
  34837. source: "./media/characters/sykes/collar.svg"
  34838. }
  34839. },
  34840. tail: {
  34841. height: math.unit(3.8, "feet"),
  34842. name: "Tail",
  34843. image: {
  34844. source: "./media/characters/sykes/tail.svg"
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Shrunken",
  34851. height: math.unit(5, "inches")
  34852. },
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(6 + 4 / 12, "feet"),
  34856. default: true
  34857. },
  34858. {
  34859. name: "Big",
  34860. height: math.unit(15, "feet")
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(5 + 8/12, "feet"),
  34869. weight: math.unit(190, "lb"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/oven-otter/front.svg",
  34873. extra: 1809/1740,
  34874. bottom: 181/1990
  34875. }
  34876. },
  34877. back: {
  34878. height: math.unit(5 + 8/12, "feet"),
  34879. weight: math.unit(190, "lb"),
  34880. name: "Back",
  34881. image: {
  34882. source: "./media/characters/oven-otter/back.svg",
  34883. extra: 1709/1635,
  34884. bottom: 118/1827
  34885. }
  34886. },
  34887. hand: {
  34888. height: math.unit(1.07, "feet"),
  34889. name: "Hand",
  34890. image: {
  34891. source: "./media/characters/oven-otter/hand.svg"
  34892. }
  34893. },
  34894. beans: {
  34895. height: math.unit(1.74, "feet"),
  34896. name: "Beans",
  34897. image: {
  34898. source: "./media/characters/oven-otter/beans.svg"
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Micro",
  34905. height: math.unit(0.5, "inches")
  34906. },
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(5 + 8/12, "feet"),
  34910. default: true
  34911. },
  34912. {
  34913. name: "Macro",
  34914. height: math.unit(250, "feet")
  34915. },
  34916. {
  34917. name: "Really High",
  34918. height: math.unit(420, "feet")
  34919. },
  34920. ]
  34921. ))
  34922. characterMakers.push(() => makeCharacter(
  34923. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34924. {
  34925. front: {
  34926. height: math.unit(5, "meters"),
  34927. weight: math.unit(292000000000000, "kg"),
  34928. name: "Front",
  34929. image: {
  34930. source: "./media/characters/devourer/front.svg",
  34931. extra: 1800/1733,
  34932. bottom: 211/2011
  34933. }
  34934. },
  34935. maw: {
  34936. height: math.unit(1.1, "meter"),
  34937. name: "Maw",
  34938. image: {
  34939. source: "./media/characters/devourer/maw.svg"
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Small",
  34946. height: math.unit(3, "meters")
  34947. },
  34948. {
  34949. name: "Large",
  34950. height: math.unit(5, "meters"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34957. {
  34958. front: {
  34959. height: math.unit(6, "feet"),
  34960. weight: math.unit(400, "lb"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/ellarby/front.svg",
  34964. extra: 1909/1763,
  34965. bottom: 80/1989
  34966. }
  34967. },
  34968. back: {
  34969. height: math.unit(6, "feet"),
  34970. weight: math.unit(400, "lb"),
  34971. name: "Back",
  34972. image: {
  34973. source: "./media/characters/ellarby/back.svg",
  34974. extra: 1914/1784,
  34975. bottom: 172/2086
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Mischief",
  34982. height: math.unit(18, "inches")
  34983. },
  34984. {
  34985. name: "Trouble",
  34986. height: math.unit(12, "feet")
  34987. },
  34988. {
  34989. name: "Havoc",
  34990. height: math.unit(200, "feet"),
  34991. default: true
  34992. },
  34993. {
  34994. name: "Pandemonium",
  34995. height: math.unit(1, "mile")
  34996. },
  34997. {
  34998. name: "Catastrophe",
  34999. height: math.unit(100, "miles")
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35005. {
  35006. front: {
  35007. height: math.unit(4.7, "meters"),
  35008. weight: math.unit(6500, "kg"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/vex/front.svg",
  35012. extra: 1288/1140,
  35013. bottom: 100/1388
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(4.7, "meters"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35027. {
  35028. normal: {
  35029. height: math.unit(6, "feet"),
  35030. weight: math.unit(350, "lb"),
  35031. name: "Normal",
  35032. image: {
  35033. source: "./media/characters/teshy/normal.svg",
  35034. extra: 1795/1735,
  35035. bottom: 16/1811
  35036. }
  35037. },
  35038. monsterFront: {
  35039. height: math.unit(12, "feet"),
  35040. weight: math.unit(4700, "lb"),
  35041. name: "Monster (Front)",
  35042. image: {
  35043. source: "./media/characters/teshy/monster-front.svg",
  35044. extra: 2042/2034,
  35045. bottom: 128/2170
  35046. }
  35047. },
  35048. monsterSide: {
  35049. height: math.unit(12, "feet"),
  35050. weight: math.unit(4700, "lb"),
  35051. name: "Monster (Side)",
  35052. image: {
  35053. source: "./media/characters/teshy/monster-side.svg",
  35054. extra: 2067/2056,
  35055. bottom: 70/2137
  35056. }
  35057. },
  35058. monsterBack: {
  35059. height: math.unit(12, "feet"),
  35060. weight: math.unit(4700, "lb"),
  35061. name: "Monster (Back)",
  35062. image: {
  35063. source: "./media/characters/teshy/monster-back.svg",
  35064. extra: 1921/1914,
  35065. bottom: 171/2092
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(6, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(6, "feet"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/ramey/front.svg",
  35085. extra: 790/787,
  35086. bottom: 27/817
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(6, "feet"),
  35094. default: true
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(5 + 5/12, "feet"),
  35103. weight: math.unit(120, "lb"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/phirae/front.svg",
  35107. extra: 2491/2436,
  35108. bottom: 38/2529
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(5 + 5/12, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35122. {
  35123. front: {
  35124. height: math.unit(5 + 3/12, "feet"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/stagglas/front.svg",
  35128. extra: 962/882,
  35129. bottom: 53/1015
  35130. }
  35131. },
  35132. feral: {
  35133. height: math.unit(335, "cm"),
  35134. name: "Feral",
  35135. image: {
  35136. source: "./media/characters/stagglas/feral.svg",
  35137. extra: 1732/1090,
  35138. bottom: 48/1780
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(5 + 3/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(5 + 4/12, "feet"),
  35155. weight: math.unit(145, "lb"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/starra/front.svg",
  35159. extra: 1790/1691,
  35160. bottom: 91/1881
  35161. }
  35162. },
  35163. },
  35164. [
  35165. {
  35166. name: "Normal",
  35167. height: math.unit(5 + 4/12, "feet"),
  35168. default: true
  35169. },
  35170. ]
  35171. ))
  35172. characterMakers.push(() => makeCharacter(
  35173. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35174. {
  35175. front: {
  35176. height: math.unit(2.2, "meters"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35180. extra: 1194/1005,
  35181. bottom: 25/1219
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(2.2, "meters"),
  35189. default: true
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35195. {
  35196. side: {
  35197. height: math.unit(8 + 2/12, "feet"),
  35198. weight: math.unit(1240, "lb"),
  35199. name: "Side",
  35200. image: {
  35201. source: "./media/characters/mika-valentine/side.svg",
  35202. extra: 2670/2501,
  35203. bottom: 250/2920
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(8 + 2/12, "feet"),
  35211. default: true
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35217. {
  35218. front: {
  35219. height: math.unit(7 + 2/12, "feet"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/xoltol/front.svg",
  35223. extra: 2212/2124,
  35224. bottom: 84/2296
  35225. }
  35226. },
  35227. side: {
  35228. height: math.unit(7 + 2/12, "feet"),
  35229. name: "Side",
  35230. image: {
  35231. source: "./media/characters/xoltol/side.svg",
  35232. extra: 2273/2197,
  35233. bottom: 26/2299
  35234. }
  35235. },
  35236. hand: {
  35237. height: math.unit(2.5, "feet"),
  35238. name: "Hand",
  35239. image: {
  35240. source: "./media/characters/xoltol/hand.svg"
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Small-ish",
  35247. height: math.unit(5 + 11/12, "feet")
  35248. },
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(7 + 2/12, "feet")
  35252. },
  35253. {
  35254. name: "\"Macro\"",
  35255. height: math.unit(14 + 9/12, "feet"),
  35256. default: true
  35257. },
  35258. {
  35259. name: "Alternate Height",
  35260. height: math.unit(20, "feet")
  35261. },
  35262. {
  35263. name: "Actually Macro",
  35264. height: math.unit(100, "feet")
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(5 + 2/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/kotetsu-redwood/front.svg",
  35276. extra: 1053/942,
  35277. bottom: 60/1113
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(5 + 2/12, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(2.4, "meters"),
  35294. weight: math.unit(125, "kg"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/lilith/front.svg",
  35298. extra: 1590/1513,
  35299. bottom: 203/1793
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Humanoid",
  35306. height: math.unit(2.4, "meters")
  35307. },
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(6, "meters"),
  35311. default: true
  35312. },
  35313. {
  35314. name: "Largest",
  35315. height: math.unit(55, "meters")
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(8 + 4/12, "feet"),
  35324. weight: math.unit(535, "lb"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/beh'kah-bolger/front.svg",
  35328. extra: 1660/1603,
  35329. bottom: 37/1697
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(8 + 4/12, "feet"),
  35337. default: true
  35338. },
  35339. {
  35340. name: "Kaiju",
  35341. height: math.unit(250, "feet")
  35342. },
  35343. {
  35344. name: "Still Growing",
  35345. height: math.unit(10, "miles")
  35346. },
  35347. {
  35348. name: "Continental",
  35349. height: math.unit(5000, "miles")
  35350. },
  35351. {
  35352. name: "Final Form",
  35353. height: math.unit(2500000, "miles")
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(7 + 2/12, "feet"),
  35362. weight: math.unit(230, "kg"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/tatyana-milewska/front.svg",
  35366. extra: 1199/1150,
  35367. bottom: 86/1285
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(7 + 2/12, "feet"),
  35375. default: true
  35376. },
  35377. {
  35378. name: "Big",
  35379. height: math.unit(12, "feet")
  35380. },
  35381. {
  35382. name: "Minimacro",
  35383. height: math.unit(20, "feet")
  35384. },
  35385. {
  35386. name: "Macro",
  35387. height: math.unit(120, "feet")
  35388. },
  35389. ]
  35390. ))
  35391. characterMakers.push(() => makeCharacter(
  35392. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35393. {
  35394. front: {
  35395. height: math.unit(7 + 8/12, "feet"),
  35396. weight: math.unit(152, "kg"),
  35397. name: "Front",
  35398. image: {
  35399. source: "./media/characters/helen-arri/front.svg",
  35400. extra: 440/423,
  35401. bottom: 14/454
  35402. }
  35403. },
  35404. back: {
  35405. height: math.unit(7 + 8/12, "feet"),
  35406. weight: math.unit(152, "kg"),
  35407. name: "Back",
  35408. image: {
  35409. source: "./media/characters/helen-arri/back.svg",
  35410. extra: 443/426,
  35411. bottom: 8/451
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(7 + 8/12, "feet"),
  35419. default: true
  35420. },
  35421. {
  35422. name: "Big",
  35423. height: math.unit(14, "feet")
  35424. },
  35425. {
  35426. name: "Minimacro",
  35427. height: math.unit(24, "feet")
  35428. },
  35429. {
  35430. name: "Macro",
  35431. height: math.unit(140, "feet")
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35437. {
  35438. front: {
  35439. height: math.unit(6, "meters"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/ehanu-rehu/front.svg",
  35443. extra: 1800/1800,
  35444. bottom: 59/1859
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(6, "meters"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35458. {
  35459. front: {
  35460. height: math.unit(7 + 3/12, "feet"),
  35461. name: "Front",
  35462. image: {
  35463. source: "./media/characters/renholder/front.svg",
  35464. extra: 3096/2960,
  35465. bottom: 250/3346
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Normal Bat",
  35472. height: math.unit(7 + 3/12, "feet"),
  35473. default: true
  35474. },
  35475. {
  35476. name: "Slightly Tall Bat",
  35477. height: math.unit(100, "feet")
  35478. },
  35479. {
  35480. name: "Big Bat",
  35481. height: math.unit(1000, "feet")
  35482. },
  35483. {
  35484. name: "City-Sized Bat",
  35485. height: math.unit(200000, "feet")
  35486. },
  35487. {
  35488. name: "Bigger Bat",
  35489. height: math.unit(10000, "miles")
  35490. },
  35491. {
  35492. name: "Solar Sized Bat",
  35493. height: math.unit(100, "AU")
  35494. },
  35495. {
  35496. name: "Galactic Bat",
  35497. height: math.unit(200000, "lightyears")
  35498. },
  35499. {
  35500. name: "Universally Known Bat",
  35501. height: math.unit(1, "universe")
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(6 + 11/12, "feet"),
  35510. weight: math.unit(250, "lb"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/cookiecat/front.svg",
  35514. extra: 893/827,
  35515. bottom: 14/907
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Micro",
  35522. height: math.unit(3, "inches")
  35523. },
  35524. {
  35525. name: "Normal",
  35526. height: math.unit(6 + 11/12, "feet"),
  35527. default: true
  35528. },
  35529. {
  35530. name: "Macro",
  35531. height: math.unit(100, "feet")
  35532. },
  35533. {
  35534. name: "Macro+",
  35535. height: math.unit(404, "feet")
  35536. },
  35537. {
  35538. name: "Megamacro",
  35539. height: math.unit(165, "miles")
  35540. },
  35541. {
  35542. name: "Planetary",
  35543. height: math.unit(4600, "miles")
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(10 + 3/12, "feet"),
  35552. weight: math.unit(1500, "lb"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/tux-kusanagi/front.svg",
  35556. extra: 944/840,
  35557. bottom: 39/983
  35558. }
  35559. },
  35560. back: {
  35561. height: math.unit(10 + 3/12, "feet"),
  35562. weight: math.unit(1500, "lb"),
  35563. name: "Back",
  35564. image: {
  35565. source: "./media/characters/tux-kusanagi/back.svg",
  35566. extra: 941/842,
  35567. bottom: 28/969
  35568. }
  35569. },
  35570. rump: {
  35571. height: math.unit(5.25, "feet"),
  35572. name: "Rump",
  35573. image: {
  35574. source: "./media/characters/tux-kusanagi/rump.svg"
  35575. }
  35576. },
  35577. beak: {
  35578. height: math.unit(1.54, "feet"),
  35579. name: "Beak",
  35580. image: {
  35581. source: "./media/characters/tux-kusanagi/beak.svg"
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(10 + 3/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(58, "feet"),
  35598. weight: math.unit(200, "tons"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/uzarmazari/front.svg",
  35602. extra: 1575/1455,
  35603. bottom: 152/1727
  35604. }
  35605. },
  35606. back: {
  35607. height: math.unit(58, "feet"),
  35608. weight: math.unit(200, "tons"),
  35609. name: "Back",
  35610. image: {
  35611. source: "./media/characters/uzarmazari/back.svg",
  35612. extra: 1585/1510,
  35613. bottom: 157/1742
  35614. }
  35615. },
  35616. head: {
  35617. height: math.unit(26, "feet"),
  35618. name: "Head",
  35619. image: {
  35620. source: "./media/characters/uzarmazari/head.svg"
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(58, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35634. {
  35635. side: {
  35636. height: math.unit(15, "feet"),
  35637. name: "Side",
  35638. image: {
  35639. source: "./media/characters/akitu/side.svg",
  35640. extra: 1421/1321,
  35641. bottom: 157/1578
  35642. }
  35643. },
  35644. front: {
  35645. height: math.unit(15, "feet"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/akitu/front.svg",
  35649. extra: 1435/1326,
  35650. bottom: 232/1667
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(15, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(10 + 8/12, "feet"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/azalie-croixland/front.svg",
  35670. extra: 1972/1856,
  35671. bottom: 31/2003
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Original Height",
  35678. height: math.unit(5 + 4/12, "feet")
  35679. },
  35680. {
  35681. name: "Normal Height",
  35682. height: math.unit(10 + 8/12, "feet"),
  35683. default: true
  35684. },
  35685. ]
  35686. ))
  35687. characterMakers.push(() => makeCharacter(
  35688. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35689. {
  35690. side: {
  35691. height: math.unit(7 + 1/12, "feet"),
  35692. weight: math.unit(245, "lb"),
  35693. name: "Side",
  35694. image: {
  35695. source: "./media/characters/kavus-kazian/side.svg",
  35696. extra: 349/342,
  35697. bottom: 15/364
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(7 + 1/12, "feet"),
  35705. default: true
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35711. {
  35712. normalFront: {
  35713. height: math.unit(5 + 11/12, "feet"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/moonlight-rose/normal-front.svg",
  35717. extra: 1980/1825,
  35718. bottom: 18/1998
  35719. },
  35720. form: "normal",
  35721. default: true
  35722. },
  35723. normalBack: {
  35724. height: math.unit(5 + 11/12, "feet"),
  35725. name: "Back",
  35726. image: {
  35727. source: "./media/characters/moonlight-rose/normal-back.svg",
  35728. extra: 2010/1839,
  35729. bottom: 10/2020
  35730. },
  35731. form: "normal"
  35732. },
  35733. demonFront: {
  35734. height: math.unit(1.5, "earths"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/moonlight-rose/demon.svg",
  35738. extra: 1400/1294,
  35739. bottom: 45/1445
  35740. },
  35741. form: "demon",
  35742. default: true
  35743. },
  35744. terraFront: {
  35745. height: math.unit(1.5, "earths"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/moonlight-rose/terra.svg"
  35749. },
  35750. form: "terra",
  35751. default: true
  35752. },
  35753. jupiterFront: {
  35754. height: math.unit(69911*2, "km"),
  35755. name: "Front",
  35756. image: {
  35757. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35758. extra: 1367/1286,
  35759. bottom: 55/1422
  35760. },
  35761. form: "jupiter",
  35762. default: true
  35763. },
  35764. neptuneFront: {
  35765. height: math.unit(24622*2, "feet"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35769. extra: 1851/1712,
  35770. bottom: 0/1851
  35771. },
  35772. form: "neptune",
  35773. default: true
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "\"Natural\" Height",
  35779. height: math.unit(5 + 11/12, "feet"),
  35780. form: "normal"
  35781. },
  35782. {
  35783. name: "Smallest comfortable size",
  35784. height: math.unit(40, "meters"),
  35785. form: "normal"
  35786. },
  35787. {
  35788. name: "Common size",
  35789. height: math.unit(50, "km"),
  35790. form: "normal",
  35791. default: true
  35792. },
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(1.5, "earths"),
  35796. form: "demon",
  35797. default: true
  35798. },
  35799. {
  35800. name: "Universal",
  35801. height: math.unit(15, "universes"),
  35802. form: "demon"
  35803. },
  35804. {
  35805. name: "Earth",
  35806. height: math.unit(1.5, "earths"),
  35807. form: "terra",
  35808. default: true
  35809. },
  35810. {
  35811. name: "Super Earth",
  35812. height: math.unit(67.5, "earths"),
  35813. form: "terra"
  35814. },
  35815. {
  35816. name: "Doesn't fit in a solar system...",
  35817. height: math.unit(1, "galaxy"),
  35818. form: "terra"
  35819. },
  35820. {
  35821. name: "Saturn",
  35822. height: math.unit(58232*2, "km"),
  35823. form: "jupiter"
  35824. },
  35825. {
  35826. name: "Jupiter",
  35827. height: math.unit(69911*2, "km"),
  35828. form: "jupiter",
  35829. default: true
  35830. },
  35831. {
  35832. name: "HD 100546 b",
  35833. height: math.unit(482938, "km"),
  35834. form: "jupiter"
  35835. },
  35836. {
  35837. name: "Enceladus",
  35838. height: math.unit(513*2, "km"),
  35839. form: "neptune"
  35840. },
  35841. {
  35842. name: "Europe",
  35843. height: math.unit(1560*2, "km"),
  35844. form: "neptune"
  35845. },
  35846. {
  35847. name: "Neptune",
  35848. height: math.unit(24622*2, "km"),
  35849. form: "neptune",
  35850. default: true
  35851. },
  35852. {
  35853. name: "CoRoT-9b",
  35854. height: math.unit(75067*2, "km"),
  35855. form: "neptune"
  35856. },
  35857. ],
  35858. {
  35859. "normal": {
  35860. name: "Normal",
  35861. default: true
  35862. },
  35863. "demon": {
  35864. name: "Demon"
  35865. },
  35866. "terra": {
  35867. name: "Terra"
  35868. },
  35869. "jupiter": {
  35870. name: "Jupiter"
  35871. },
  35872. "neptune": {
  35873. name: "Neptune"
  35874. }
  35875. }
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(16, "feet"),
  35882. weight: math.unit(610, "kg"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/huckle/front.svg",
  35886. extra: 1731/1625,
  35887. bottom: 33/1764
  35888. }
  35889. },
  35890. back: {
  35891. height: math.unit(16, "feet"),
  35892. weight: math.unit(610, "kg"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/huckle/back.svg",
  35896. extra: 1738/1651,
  35897. bottom: 37/1775
  35898. }
  35899. },
  35900. laughing: {
  35901. height: math.unit(3.75, "feet"),
  35902. name: "Laughing",
  35903. image: {
  35904. source: "./media/characters/huckle/laughing.svg"
  35905. }
  35906. },
  35907. angry: {
  35908. height: math.unit(4.15, "feet"),
  35909. name: "Angry",
  35910. image: {
  35911. source: "./media/characters/huckle/angry.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(16, "feet"),
  35919. default: true
  35920. },
  35921. {
  35922. name: "Mini Macro",
  35923. height: math.unit(463, "feet")
  35924. },
  35925. {
  35926. name: "Macro",
  35927. height: math.unit(1680, "meters")
  35928. },
  35929. {
  35930. name: "Mega Macro",
  35931. height: math.unit(175, "km")
  35932. },
  35933. {
  35934. name: "Terra Macro",
  35935. height: math.unit(32, "gigameters")
  35936. },
  35937. {
  35938. name: "Multiverse+",
  35939. height: math.unit(2.56e23, "yottameters")
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(6 + 9/12, "feet"),
  35948. weight: math.unit(280, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/candy/front.svg",
  35952. extra: 234/217,
  35953. bottom: 11/245
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Really Small",
  35960. height: math.unit(0.1, "nm")
  35961. },
  35962. {
  35963. name: "Micro",
  35964. height: math.unit(2, "inches")
  35965. },
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(6 + 9/12, "feet"),
  35969. default: true
  35970. },
  35971. {
  35972. name: "Small Macro",
  35973. height: math.unit(69, "feet")
  35974. },
  35975. {
  35976. name: "Macro",
  35977. height: math.unit(160, "feet")
  35978. },
  35979. {
  35980. name: "Megamacro",
  35981. height: math.unit(22000, "miles")
  35982. },
  35983. {
  35984. name: "Gigamacro",
  35985. height: math.unit(50000, "miles")
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(4, "feet"),
  35994. weight: math.unit(90, "lb"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/joey-mcdonald/front.svg",
  35998. extra: 1059/852,
  35999. bottom: 33/1092
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(4, "feet"),
  36004. weight: math.unit(90, "lb"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/joey-mcdonald/back.svg",
  36008. extra: 1077/879,
  36009. bottom: 5/1082
  36010. }
  36011. },
  36012. frontKobold: {
  36013. height: math.unit(4, "feet"),
  36014. weight: math.unit(100, "lb"),
  36015. name: "Front-kobold",
  36016. image: {
  36017. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36018. extra: 1480/1367,
  36019. bottom: 0/1480
  36020. }
  36021. },
  36022. backKobold: {
  36023. height: math.unit(4, "feet"),
  36024. weight: math.unit(100, "lb"),
  36025. name: "Back-kobold",
  36026. image: {
  36027. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36028. extra: 1449/1361,
  36029. bottom: 0/1449
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(4, "feet"),
  36037. default: true
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(12 + 6/12, "feet"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/kass-lockheed/front.svg",
  36049. extra: 354/343,
  36050. bottom: 9/363
  36051. }
  36052. },
  36053. back: {
  36054. height: math.unit(12 + 6/12, "feet"),
  36055. name: "Back",
  36056. image: {
  36057. source: "./media/characters/kass-lockheed/back.svg",
  36058. extra: 364/352,
  36059. bottom: 3/367
  36060. }
  36061. },
  36062. dick: {
  36063. height: math.unit(3.12, "feet"),
  36064. name: "Dick",
  36065. image: {
  36066. source: "./media/characters/kass-lockheed/dick.svg"
  36067. }
  36068. },
  36069. head: {
  36070. height: math.unit(2.6, "feet"),
  36071. name: "Head",
  36072. image: {
  36073. source: "./media/characters/kass-lockheed/head.svg"
  36074. }
  36075. },
  36076. bleh: {
  36077. height: math.unit(2.85, "feet"),
  36078. name: "Bleh",
  36079. image: {
  36080. source: "./media/characters/kass-lockheed/bleh.svg"
  36081. }
  36082. },
  36083. smug: {
  36084. height: math.unit(2.85, "feet"),
  36085. name: "Smug",
  36086. image: {
  36087. source: "./media/characters/kass-lockheed/smug.svg"
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(12 + 6/12, "feet"),
  36095. default: true
  36096. },
  36097. ]
  36098. ))
  36099. characterMakers.push(() => makeCharacter(
  36100. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36101. {
  36102. front: {
  36103. height: math.unit(6 + 2/12, "feet"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/taylor/front.svg",
  36107. extra: 639/495,
  36108. bottom: 12/651
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(6 + 2/12, "feet"),
  36116. default: true
  36117. },
  36118. {
  36119. name: "Big",
  36120. height: math.unit(15, "feet")
  36121. },
  36122. {
  36123. name: "Lorg",
  36124. height: math.unit(80, "feet")
  36125. },
  36126. {
  36127. name: "Too Lorg",
  36128. height: math.unit(120, "feet")
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36134. {
  36135. front: {
  36136. height: math.unit(15, "feet"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/kaizer/front.svg",
  36140. extra: 1612/1436,
  36141. bottom: 43/1655
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(15, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(2, "feet"),
  36158. weight: math.unit(30, "lb"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/sandy/front.svg",
  36162. extra: 1439/1307,
  36163. bottom: 194/1633
  36164. }
  36165. },
  36166. },
  36167. [
  36168. {
  36169. name: "Normal",
  36170. height: math.unit(2, "feet"),
  36171. default: true
  36172. },
  36173. ]
  36174. ))
  36175. characterMakers.push(() => makeCharacter(
  36176. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36177. {
  36178. front: {
  36179. height: math.unit(3, "feet"),
  36180. name: "Front",
  36181. image: {
  36182. source: "./media/characters/mellvi/front.svg",
  36183. extra: 1831/1630,
  36184. bottom: 58/1889
  36185. }
  36186. },
  36187. },
  36188. [
  36189. {
  36190. name: "Normal",
  36191. height: math.unit(3, "feet"),
  36192. default: true
  36193. },
  36194. ]
  36195. ))
  36196. characterMakers.push(() => makeCharacter(
  36197. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36198. {
  36199. front: {
  36200. height: math.unit(5 + 11/12, "feet"),
  36201. weight: math.unit(200, "lb"),
  36202. name: "Front",
  36203. image: {
  36204. source: "./media/characters/shirou/front.svg",
  36205. extra: 2491/2383,
  36206. bottom: 189/2680
  36207. }
  36208. },
  36209. back: {
  36210. height: math.unit(5 + 11/12, "feet"),
  36211. weight: math.unit(200, "lb"),
  36212. name: "Back",
  36213. image: {
  36214. source: "./media/characters/shirou/back.svg",
  36215. extra: 2554/2450,
  36216. bottom: 76/2630
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(5 + 11/12, "feet"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36230. {
  36231. front: {
  36232. height: math.unit(6 + 3/12, "feet"),
  36233. weight: math.unit(177, "lb"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/noryu/front.svg",
  36237. extra: 973/885,
  36238. bottom: 10/983
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(6 + 3/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36252. {
  36253. front: {
  36254. height: math.unit(5 + 6/12, "feet"),
  36255. weight: math.unit(170, "lb"),
  36256. name: "Front",
  36257. image: {
  36258. source: "./media/characters/mevolas-rubenido/front.svg",
  36259. extra: 2109/1901,
  36260. bottom: 96/2205
  36261. }
  36262. },
  36263. },
  36264. [
  36265. {
  36266. name: "Normal",
  36267. height: math.unit(5 + 6/12, "feet"),
  36268. default: true
  36269. },
  36270. ]
  36271. ))
  36272. characterMakers.push(() => makeCharacter(
  36273. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36274. {
  36275. front: {
  36276. height: math.unit(100, "feet"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/dee/front.svg",
  36280. extra: 2153/2036,
  36281. bottom: 59/2212
  36282. }
  36283. },
  36284. back: {
  36285. height: math.unit(100, "feet"),
  36286. name: "Back",
  36287. image: {
  36288. source: "./media/characters/dee/back.svg",
  36289. extra: 2183/2058,
  36290. bottom: 75/2258
  36291. }
  36292. },
  36293. foot: {
  36294. height: math.unit(19.43, "feet"),
  36295. name: "Foot",
  36296. image: {
  36297. source: "./media/characters/dee/foot.svg"
  36298. }
  36299. },
  36300. hoof: {
  36301. height: math.unit(20.6, "feet"),
  36302. name: "Hoof",
  36303. image: {
  36304. source: "./media/characters/dee/hoof.svg"
  36305. }
  36306. },
  36307. },
  36308. [
  36309. {
  36310. name: "Macro",
  36311. height: math.unit(100, "feet"),
  36312. default: true
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(5 + 6/12, "feet"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/teh/front.svg",
  36324. extra: 1002/847,
  36325. bottom: 62/1064
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(5 + 6/12, "feet"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36339. {
  36340. side: {
  36341. height: math.unit(6 + 1/12, "feet"),
  36342. weight: math.unit(204, "lb"),
  36343. name: "Side",
  36344. image: {
  36345. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36346. extra: 974/775,
  36347. bottom: 169/1143
  36348. }
  36349. },
  36350. sitting: {
  36351. height: math.unit(6 + 2/12, "feet"),
  36352. weight: math.unit(204, "lb"),
  36353. name: "Sitting",
  36354. image: {
  36355. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36356. extra: 1175/964,
  36357. bottom: 378/1553
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal",
  36364. height: math.unit(6 + 1/12, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(6, "inches"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/tululi/front.svg",
  36377. extra: 1997/1876,
  36378. bottom: 20/2017
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(6, "inches"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(4 + 1/12, "feet"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/star/front.svg",
  36398. extra: 1493/1189,
  36399. bottom: 48/1541
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Normal",
  36406. height: math.unit(4 + 1/12, "feet"),
  36407. default: true
  36408. },
  36409. ]
  36410. ))
  36411. characterMakers.push(() => makeCharacter(
  36412. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36413. {
  36414. front: {
  36415. height: math.unit(6 + 3/12, "feet"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/comet/front.svg",
  36419. extra: 1681/1462,
  36420. bottom: 26/1707
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(6 + 3/12, "feet"),
  36428. default: true
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(950, "feet"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/vortex/front.svg",
  36440. extra: 1497/1434,
  36441. bottom: 56/1553
  36442. }
  36443. },
  36444. maw: {
  36445. height: math.unit(285, "feet"),
  36446. name: "Maw",
  36447. image: {
  36448. source: "./media/characters/vortex/maw.svg"
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Macro",
  36455. height: math.unit(950, "feet"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36462. {
  36463. front: {
  36464. height: math.unit(600, "feet"),
  36465. weight: math.unit(0.02, "grams"),
  36466. name: "Front",
  36467. image: {
  36468. source: "./media/characters/doodle/front.svg",
  36469. extra: 1578/1413,
  36470. bottom: 37/1615
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Macro",
  36477. height: math.unit(600, "feet"),
  36478. default: true
  36479. },
  36480. ]
  36481. ))
  36482. characterMakers.push(() => makeCharacter(
  36483. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36484. {
  36485. front: {
  36486. height: math.unit(6 + 6/12, "feet"),
  36487. name: "Front",
  36488. image: {
  36489. source: "./media/characters/jai/front.svg",
  36490. extra: 1645/1534,
  36491. bottom: 115/1760
  36492. }
  36493. },
  36494. },
  36495. [
  36496. {
  36497. name: "Normal",
  36498. height: math.unit(6 + 6/12, "feet"),
  36499. default: true
  36500. },
  36501. ]
  36502. ))
  36503. characterMakers.push(() => makeCharacter(
  36504. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36505. {
  36506. front: {
  36507. height: math.unit(6 + 8/12, "feet"),
  36508. name: "Front",
  36509. image: {
  36510. source: "./media/characters/pixel/front.svg",
  36511. extra: 1900/1735,
  36512. bottom: 63/1963
  36513. }
  36514. },
  36515. },
  36516. [
  36517. {
  36518. name: "Normal",
  36519. height: math.unit(6 + 8/12, "feet"),
  36520. default: true
  36521. },
  36522. ]
  36523. ))
  36524. characterMakers.push(() => makeCharacter(
  36525. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36526. {
  36527. back: {
  36528. height: math.unit(4 + 1/12, "feet"),
  36529. weight: math.unit(75, "lb"),
  36530. name: "Back",
  36531. image: {
  36532. source: "./media/characters/rhett/back.svg",
  36533. extra: 930/878,
  36534. bottom: 25/955
  36535. }
  36536. },
  36537. front: {
  36538. height: math.unit(4 + 1/12, "feet"),
  36539. weight: math.unit(75, "lb"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/rhett/front.svg",
  36543. extra: 1682/1586,
  36544. bottom: 92/1774
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Micro",
  36551. height: math.unit(8, "inches")
  36552. },
  36553. {
  36554. name: "Tiny",
  36555. height: math.unit(2, "feet")
  36556. },
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(4 + 1/12, "feet"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36566. {
  36567. front: {
  36568. height: math.unit(3 + 3/12, "feet"),
  36569. name: "Front",
  36570. image: {
  36571. source: "./media/characters/penny/front.svg",
  36572. extra: 1406/1311,
  36573. bottom: 26/1432
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(3 + 3/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(4 + 11/12, "feet"),
  36590. name: "Front",
  36591. image: {
  36592. source: "./media/characters/monty/front.svg",
  36593. extra: 1479/1209,
  36594. bottom: 0/1479
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(4 + 11/12, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(8 + 4/12, "feet"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/sterling/front.svg",
  36614. extra: 1420/1236,
  36615. bottom: 27/1447
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(8 + 4/12, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(15, "feet"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/marble/front.svg",
  36635. extra: 973/937,
  36636. bottom: 32/1005
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Normal",
  36643. height: math.unit(15, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36650. {
  36651. front: {
  36652. height: math.unit(3, "inches"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/powder/front.svg",
  36656. extra: 1504/1334,
  36657. bottom: 518/2022
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(3, "inches"),
  36665. default: true
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(4 + 5/12, "feet"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/joey-raccoon/front.svg",
  36677. extra: 1273/1197,
  36678. bottom: 0/1273
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(4 + 5/12, "feet"),
  36686. default: true
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(8 + 4/12, "feet"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/vick/front.svg",
  36698. extra: 2187/2118,
  36699. bottom: 47/2234
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(8 + 4/12, "feet"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(5 + 5/12, "feet"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/mitsy/front.svg",
  36719. extra: 1842/1695,
  36720. bottom: 0/1842
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(5 + 5/12, "feet"),
  36728. default: true
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36734. {
  36735. front: {
  36736. height: math.unit(6 + 3/12, "feet"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/silvy/front.svg",
  36740. extra: 1995/1836,
  36741. bottom: 225/2220
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(6 + 3/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(3 + 8/12, "feet"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/rodney/front.svg",
  36761. extra: 1956/1747,
  36762. bottom: 31/1987
  36763. }
  36764. },
  36765. frontDressed: {
  36766. height: math.unit(2.9, "feet"),
  36767. name: "Front (Dressed)",
  36768. image: {
  36769. source: "./media/characters/rodney/front-dressed.svg",
  36770. extra: 1382/1241,
  36771. bottom: 385/1767
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(3 + 8/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(5 + 9/12, "feet"),
  36788. weight: math.unit(194, "lbs"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/zakail-sudekai/front.svg",
  36792. extra: 2696/2533,
  36793. bottom: 248/2944
  36794. }
  36795. },
  36796. maw: {
  36797. height: math.unit(1.35, "feet"),
  36798. name: "Maw",
  36799. image: {
  36800. source: "./media/characters/zakail-sudekai/maw.svg"
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(5 + 9/12, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36814. {
  36815. front: {
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. weight: math.unit(1200, "lb"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/eleanor/front.svg",
  36821. extra: 1226/1192,
  36822. bottom: 52/1278
  36823. }
  36824. },
  36825. back: {
  36826. height: math.unit(8 + 4/12, "feet"),
  36827. weight: math.unit(1200, "lb"),
  36828. name: "Back",
  36829. image: {
  36830. source: "./media/characters/eleanor/back.svg",
  36831. extra: 1242/1184,
  36832. bottom: 60/1302
  36833. }
  36834. },
  36835. head: {
  36836. height: math.unit(2.62, "feet"),
  36837. name: "Head",
  36838. image: {
  36839. source: "./media/characters/eleanor/head.svg"
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(8 + 4/12, "feet"),
  36847. default: true
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(8 + 4/12, "feet"),
  36856. weight: math.unit(750, "lb"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/tanya/front.svg",
  36860. extra: 1749/1615,
  36861. bottom: 33/1782
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(8 + 4/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(5, "feet"),
  36878. weight: math.unit(225, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/cindy/front.svg",
  36882. extra: 1320/1250,
  36883. bottom: 42/1362
  36884. }
  36885. },
  36886. frontDressed: {
  36887. height: math.unit(5, "feet"),
  36888. weight: math.unit(225, "lb"),
  36889. name: "Front (Dressed)",
  36890. image: {
  36891. source: "./media/characters/cindy/front-dressed.svg",
  36892. extra: 1320/1250,
  36893. bottom: 42/1362
  36894. }
  36895. },
  36896. back: {
  36897. height: math.unit(5, "feet"),
  36898. weight: math.unit(225, "lb"),
  36899. name: "Back",
  36900. image: {
  36901. source: "./media/characters/cindy/back.svg",
  36902. extra: 1384/1346,
  36903. bottom: 14/1398
  36904. }
  36905. },
  36906. },
  36907. [
  36908. {
  36909. name: "Normal",
  36910. height: math.unit(5, "feet"),
  36911. default: true
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36917. {
  36918. front: {
  36919. height: math.unit(6 + 9/12, "feet"),
  36920. weight: math.unit(440, "lb"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/wilbur-owen/front.svg",
  36924. extra: 1575/1448,
  36925. bottom: 72/1647
  36926. }
  36927. },
  36928. back: {
  36929. height: math.unit(6 + 9/12, "feet"),
  36930. weight: math.unit(440, "lb"),
  36931. name: "Back",
  36932. image: {
  36933. source: "./media/characters/wilbur-owen/back.svg",
  36934. extra: 1578/1445,
  36935. bottom: 36/1614
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(6 + 9/12, "feet"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(6 + 5/12, "feet"),
  36952. weight: math.unit(650, "lb"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/keegan/front.svg",
  36956. extra: 2387/2198,
  36957. bottom: 33/2420
  36958. }
  36959. },
  36960. side: {
  36961. height: math.unit(6 + 5/12, "feet"),
  36962. weight: math.unit(650, "lb"),
  36963. name: "Side",
  36964. image: {
  36965. source: "./media/characters/keegan/side.svg",
  36966. extra: 2390/2202,
  36967. bottom: 47/2437
  36968. }
  36969. },
  36970. back: {
  36971. height: math.unit(6 + 5/12, "feet"),
  36972. weight: math.unit(650, "lb"),
  36973. name: "Back",
  36974. image: {
  36975. source: "./media/characters/keegan/back.svg",
  36976. extra: 2418/2268,
  36977. bottom: 15/2433
  36978. }
  36979. },
  36980. frontSfw: {
  36981. height: math.unit(6 + 5/12, "feet"),
  36982. weight: math.unit(650, "lb"),
  36983. name: "Front (SFW)",
  36984. image: {
  36985. source: "./media/characters/keegan/front-sfw.svg",
  36986. extra: 2387/2198,
  36987. bottom: 33/2420
  36988. }
  36989. },
  36990. beans: {
  36991. height: math.unit(1.85, "feet"),
  36992. name: "Beans",
  36993. image: {
  36994. source: "./media/characters/keegan/beans.svg"
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(6 + 5/12, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(9, "feet"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/colton/front.svg",
  37014. extra: 1589/1326,
  37015. bottom: 139/1728
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(9, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(2 + 9/12, "feet"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/bora/front.svg",
  37035. extra: 1265/1250,
  37036. bottom: 24/1289
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Normal",
  37043. height: math.unit(2 + 9/12, "feet"),
  37044. default: true
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(8, "feet"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/myu-myu/front.svg",
  37056. extra: 1949/1857,
  37057. bottom: 90/2039
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(8, "feet"),
  37065. default: true
  37066. },
  37067. {
  37068. name: "Big",
  37069. height: math.unit(15, "feet")
  37070. },
  37071. {
  37072. name: "BIG",
  37073. height: math.unit(25, "feet")
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37079. {
  37080. side: {
  37081. height: math.unit(7 + 5/12, "feet"),
  37082. weight: math.unit(2800, "lb"),
  37083. name: "Side",
  37084. image: {
  37085. source: "./media/characters/haloren/side.svg",
  37086. extra: 1793/409,
  37087. bottom: 59/1852
  37088. }
  37089. },
  37090. frontPaw: {
  37091. height: math.unit(2.36, "feet"),
  37092. name: "Front paw",
  37093. image: {
  37094. source: "./media/characters/haloren/front-paw.svg"
  37095. }
  37096. },
  37097. hindPaw: {
  37098. height: math.unit(3.18, "feet"),
  37099. name: "Hind paw",
  37100. image: {
  37101. source: "./media/characters/haloren/hind-paw.svg"
  37102. }
  37103. },
  37104. maw: {
  37105. height: math.unit(5.05, "feet"),
  37106. name: "Maw",
  37107. image: {
  37108. source: "./media/characters/haloren/maw.svg"
  37109. }
  37110. },
  37111. dick: {
  37112. height: math.unit(2.90, "feet"),
  37113. name: "Dick",
  37114. image: {
  37115. source: "./media/characters/haloren/dick.svg"
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(7 + 5/12, "feet"),
  37123. default: true
  37124. },
  37125. {
  37126. name: "Enhanced",
  37127. height: math.unit(14 + 3/12, "feet")
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(171, "cm"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/kimmy/front.svg",
  37139. extra: 1491/1435,
  37140. bottom: 53/1544
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Small",
  37147. height: math.unit(9, "cm")
  37148. },
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(171, "cm"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(8, "feet"),
  37161. weight: math.unit(300, "lb"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/galeboomer/front.svg",
  37165. extra: 4651/4415,
  37166. bottom: 162/4813
  37167. }
  37168. },
  37169. back: {
  37170. height: math.unit(8, "feet"),
  37171. weight: math.unit(300, "lb"),
  37172. name: "Back",
  37173. image: {
  37174. source: "./media/characters/galeboomer/back.svg",
  37175. extra: 4544/4314,
  37176. bottom: 16/4560
  37177. }
  37178. },
  37179. frontAlt: {
  37180. height: math.unit(8, "feet"),
  37181. weight: math.unit(300, "lb"),
  37182. name: "Front (Alt)",
  37183. image: {
  37184. source: "./media/characters/galeboomer/front-alt.svg",
  37185. extra: 4458/4228,
  37186. bottom: 68/4526
  37187. }
  37188. },
  37189. maw: {
  37190. height: math.unit(1.2, "feet"),
  37191. name: "Maw",
  37192. image: {
  37193. source: "./media/characters/galeboomer/maw.svg"
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(8, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(5 + 9/12, "feet"),
  37210. weight: math.unit(120, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/chyr/front.svg",
  37214. extra: 1323/1254,
  37215. bottom: 63/1386
  37216. }
  37217. },
  37218. back: {
  37219. height: math.unit(5 + 9/12, "feet"),
  37220. weight: math.unit(120, "lb"),
  37221. name: "Back",
  37222. image: {
  37223. source: "./media/characters/chyr/back.svg",
  37224. extra: 1323/1252,
  37225. bottom: 48/1371
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(5 + 9/12, "feet"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37239. {
  37240. front: {
  37241. height: math.unit(7, "feet"),
  37242. weight: math.unit(310, "lb"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/solarus/front.svg",
  37246. extra: 2415/2021,
  37247. bottom: 103/2518
  37248. }
  37249. },
  37250. back: {
  37251. height: math.unit(7, "feet"),
  37252. weight: math.unit(310, "lb"),
  37253. name: "Back",
  37254. image: {
  37255. source: "./media/characters/solarus/back.svg",
  37256. extra: 2463/2089,
  37257. bottom: 79/2542
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(7, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(16, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37277. extra: 1844/1780,
  37278. bottom: 58/1902
  37279. }
  37280. },
  37281. winterCoat: {
  37282. height: math.unit(16, "feet"),
  37283. name: "Winter Coat",
  37284. image: {
  37285. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37286. extra: 1807/1775,
  37287. bottom: 69/1876
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(16, "feet"),
  37295. default: true
  37296. },
  37297. {
  37298. name: "Chicago Size",
  37299. height: math.unit(560, "feet")
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(11 + 6/12, "feet"),
  37308. weight: math.unit(1366, "lb"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/lexor/front.svg",
  37312. extra: 1560/1481,
  37313. bottom: 211/1771
  37314. }
  37315. },
  37316. back: {
  37317. height: math.unit(11 + 6/12, "feet"),
  37318. weight: math.unit(1366, "lb"),
  37319. name: "Back",
  37320. image: {
  37321. source: "./media/characters/lexor/back.svg",
  37322. extra: 1614/1533,
  37323. bottom: 76/1690
  37324. }
  37325. },
  37326. maw: {
  37327. height: math.unit(3, "feet"),
  37328. name: "Maw",
  37329. image: {
  37330. source: "./media/characters/lexor/maw.svg"
  37331. }
  37332. },
  37333. dick: {
  37334. height: math.unit(2.59, "feet"),
  37335. name: "Dick",
  37336. image: {
  37337. source: "./media/characters/lexor/dick.svg"
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(11 + 6/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(5 + 8/12, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/magnum/front.svg",
  37357. extra: 942/855,
  37358. bottom: 26/968
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(5 + 8/12, "feet"),
  37366. default: true
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37372. {
  37373. front: {
  37374. height: math.unit(18 + 4/12, "feet"),
  37375. weight: math.unit(1500, "kg"),
  37376. name: "Front",
  37377. image: {
  37378. source: "./media/characters/solas-sharpsman/front.svg",
  37379. extra: 1698/1589,
  37380. bottom: 0/1698
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(18 + 4/12, "feet"),
  37388. default: true
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(5 + 5/12, "feet"),
  37397. weight: math.unit(180, "lb"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/october/front.svg",
  37401. extra: 1800/1650,
  37402. bottom: 0/1800
  37403. }
  37404. },
  37405. frontNsfw: {
  37406. height: math.unit(5 + 5/12, "feet"),
  37407. weight: math.unit(180, "lb"),
  37408. name: "Front (NSFW)",
  37409. image: {
  37410. source: "./media/characters/october/front-nsfw.svg",
  37411. extra: 1392/1307,
  37412. bottom: 42/1434
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(5 + 5/12, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(8 + 6/12, "feet"),
  37429. name: "Front",
  37430. image: {
  37431. source: "./media/characters/essynkardi/front.svg",
  37432. extra: 1914/1846,
  37433. bottom: 22/1936
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(8 + 6/12, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(6 + 6/12, "feet"),
  37450. weight: math.unit(7, "lb"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/icky/front.svg",
  37454. extra: 813/782,
  37455. bottom: 66/879
  37456. }
  37457. },
  37458. back: {
  37459. height: math.unit(6 + 6/12, "feet"),
  37460. weight: math.unit(7, "lb"),
  37461. name: "Back",
  37462. image: {
  37463. source: "./media/characters/icky/back.svg",
  37464. extra: 754/735,
  37465. bottom: 56/810
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(6 + 6/12, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(15, "feet"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/rojas/front.svg",
  37485. extra: 1462/1408,
  37486. bottom: 95/1557
  37487. }
  37488. },
  37489. back: {
  37490. height: math.unit(15, "feet"),
  37491. name: "Back",
  37492. image: {
  37493. source: "./media/characters/rojas/back.svg",
  37494. extra: 1023/954,
  37495. bottom: 28/1051
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(15, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37509. {
  37510. frontHuman: {
  37511. height: math.unit(5 + 7/12, "feet"),
  37512. name: "Front (Human)",
  37513. image: {
  37514. source: "./media/characters/alek-dryagan/front-human.svg",
  37515. extra: 1687/1667,
  37516. bottom: 69/1756
  37517. }
  37518. },
  37519. backHuman: {
  37520. height: math.unit(5 + 7/12, "feet"),
  37521. name: "Back (Human)",
  37522. image: {
  37523. source: "./media/characters/alek-dryagan/back-human.svg",
  37524. extra: 1670/1649,
  37525. bottom: 65/1735
  37526. }
  37527. },
  37528. frontDemi: {
  37529. height: math.unit(65, "feet"),
  37530. name: "Front (Demi)",
  37531. image: {
  37532. source: "./media/characters/alek-dryagan/front-demi.svg",
  37533. extra: 1669/1642,
  37534. bottom: 49/1718
  37535. }
  37536. },
  37537. backDemi: {
  37538. height: math.unit(65, "feet"),
  37539. name: "Back (Demi)",
  37540. image: {
  37541. source: "./media/characters/alek-dryagan/back-demi.svg",
  37542. extra: 1658/1637,
  37543. bottom: 40/1698
  37544. }
  37545. },
  37546. mawHuman: {
  37547. height: math.unit(0.3, "feet"),
  37548. name: "Maw (Human)",
  37549. image: {
  37550. source: "./media/characters/alek-dryagan/maw-human.svg"
  37551. }
  37552. },
  37553. mawDemi: {
  37554. height: math.unit(3.8, "feet"),
  37555. name: "Maw (Demi)",
  37556. image: {
  37557. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(5 + 7/12, "feet"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37571. {
  37572. frontHuman: {
  37573. height: math.unit(5 + 2/12, "feet"),
  37574. name: "Front (Human)",
  37575. image: {
  37576. source: "./media/characters/gen/front-human.svg",
  37577. extra: 1627/1538,
  37578. bottom: 71/1698
  37579. }
  37580. },
  37581. backHuman: {
  37582. height: math.unit(5 + 2/12, "feet"),
  37583. name: "Back (Human)",
  37584. image: {
  37585. source: "./media/characters/gen/back-human.svg",
  37586. extra: 1638/1548,
  37587. bottom: 69/1707
  37588. }
  37589. },
  37590. frontDemi: {
  37591. height: math.unit(5 + 2/12, "feet"),
  37592. name: "Front (Demi)",
  37593. image: {
  37594. source: "./media/characters/gen/front-demi.svg",
  37595. extra: 1627/1538,
  37596. bottom: 71/1698
  37597. }
  37598. },
  37599. backDemi: {
  37600. height: math.unit(5 + 2/12, "feet"),
  37601. name: "Back (Demi)",
  37602. image: {
  37603. source: "./media/characters/gen/back-demi.svg",
  37604. extra: 1638/1548,
  37605. bottom: 69/1707
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(5 + 2/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37619. {
  37620. frontImp: {
  37621. height: math.unit(1 + 11/12, "feet"),
  37622. name: "Front (Imp)",
  37623. image: {
  37624. source: "./media/characters/max-kobold/front-imp.svg",
  37625. extra: 1238/1134,
  37626. bottom: 81/1319
  37627. }
  37628. },
  37629. backImp: {
  37630. height: math.unit(1 + 11/12, "feet"),
  37631. name: "Back (Imp)",
  37632. image: {
  37633. source: "./media/characters/max-kobold/back-imp.svg",
  37634. extra: 1334/1175,
  37635. bottom: 34/1368
  37636. }
  37637. },
  37638. frontDemi: {
  37639. height: math.unit(5 + 9/12, "feet"),
  37640. name: "Front (Demi)",
  37641. image: {
  37642. source: "./media/characters/max-kobold/front-demi.svg",
  37643. extra: 1715/1685,
  37644. bottom: 54/1769
  37645. }
  37646. },
  37647. backDemi: {
  37648. height: math.unit(5 + 9/12, "feet"),
  37649. name: "Back (Demi)",
  37650. image: {
  37651. source: "./media/characters/max-kobold/back-demi.svg",
  37652. extra: 1752/1729,
  37653. bottom: 41/1793
  37654. }
  37655. },
  37656. handImp: {
  37657. height: math.unit(0.45, "feet"),
  37658. name: "Hand (Imp)",
  37659. image: {
  37660. source: "./media/characters/max-kobold/hand.svg"
  37661. }
  37662. },
  37663. pawImp: {
  37664. height: math.unit(0.46, "feet"),
  37665. name: "Paw (Imp)",
  37666. image: {
  37667. source: "./media/characters/max-kobold/paw.svg"
  37668. }
  37669. },
  37670. handDemi: {
  37671. height: math.unit(0.80, "feet"),
  37672. name: "Hand (Demi)",
  37673. image: {
  37674. source: "./media/characters/max-kobold/hand.svg"
  37675. }
  37676. },
  37677. pawDemi: {
  37678. height: math.unit(1.1, "feet"),
  37679. name: "Paw (Demi)",
  37680. image: {
  37681. source: "./media/characters/max-kobold/paw.svg"
  37682. }
  37683. },
  37684. headImp: {
  37685. height: math.unit(1.33, "feet"),
  37686. name: "Head (Imp)",
  37687. image: {
  37688. source: "./media/characters/max-kobold/head-imp.svg"
  37689. }
  37690. },
  37691. mawImp: {
  37692. height: math.unit(0.75, "feet"),
  37693. name: "Maw (Imp)",
  37694. image: {
  37695. source: "./media/characters/max-kobold/maw-imp.svg"
  37696. }
  37697. },
  37698. mawDemi: {
  37699. height: math.unit(0.42, "feet"),
  37700. name: "Maw (Demi)",
  37701. image: {
  37702. source: "./media/characters/max-kobold/maw-demi.svg"
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(1 + 11/12, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(7 + 5/12, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/carbon/front.svg",
  37722. extra: 1754/1689,
  37723. bottom: 65/1819
  37724. }
  37725. },
  37726. back: {
  37727. height: math.unit(7 + 5/12, "feet"),
  37728. name: "Back",
  37729. image: {
  37730. source: "./media/characters/carbon/back.svg",
  37731. extra: 1762/1695,
  37732. bottom: 24/1786
  37733. }
  37734. },
  37735. frontGigantamax: {
  37736. height: math.unit(150, "feet"),
  37737. name: "Front (Gigantamax)",
  37738. image: {
  37739. source: "./media/characters/carbon/front-gigantamax.svg",
  37740. extra: 1826/1669,
  37741. bottom: 59/1885
  37742. }
  37743. },
  37744. backGigantamax: {
  37745. height: math.unit(150, "feet"),
  37746. name: "Back (Gigantamax)",
  37747. image: {
  37748. source: "./media/characters/carbon/back-gigantamax.svg",
  37749. extra: 1796/1653,
  37750. bottom: 53/1849
  37751. }
  37752. },
  37753. maw: {
  37754. height: math.unit(0.48, "feet"),
  37755. name: "Maw",
  37756. image: {
  37757. source: "./media/characters/carbon/maw.svg"
  37758. }
  37759. },
  37760. mawGigantamax: {
  37761. height: math.unit(7.5, "feet"),
  37762. name: "Maw (Gigantamax)",
  37763. image: {
  37764. source: "./media/characters/carbon/maw-gigantamax.svg"
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(7 + 5/12, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(6, "feet"),
  37781. name: "Front",
  37782. image: {
  37783. source: "./media/characters/maverick/front.svg",
  37784. extra: 1672/1661,
  37785. bottom: 85/1757
  37786. }
  37787. },
  37788. back: {
  37789. height: math.unit(6, "feet"),
  37790. name: "Back",
  37791. image: {
  37792. source: "./media/characters/maverick/back.svg",
  37793. extra: 1642/1631,
  37794. bottom: 38/1680
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(6, "feet"),
  37802. default: true
  37803. },
  37804. ]
  37805. ))
  37806. characterMakers.push(() => makeCharacter(
  37807. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37808. {
  37809. front: {
  37810. height: math.unit(15, "feet"),
  37811. weight: math.unit(615, "lb"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/grockle/front.svg",
  37815. extra: 1535/1427,
  37816. bottom: 56/1591
  37817. }
  37818. },
  37819. },
  37820. [
  37821. {
  37822. name: "Normal",
  37823. height: math.unit(15, "feet"),
  37824. default: true
  37825. },
  37826. {
  37827. name: "Large",
  37828. height: math.unit(150, "feet")
  37829. },
  37830. {
  37831. name: "Macro",
  37832. height: math.unit(1876, "feet")
  37833. },
  37834. {
  37835. name: "Mega Macro",
  37836. height: math.unit(121940, "feet")
  37837. },
  37838. {
  37839. name: "Giga Macro",
  37840. height: math.unit(750, "km")
  37841. },
  37842. {
  37843. name: "Tera Macro",
  37844. height: math.unit(750000, "km")
  37845. },
  37846. {
  37847. name: "Galactic",
  37848. height: math.unit(1.4e5, "km")
  37849. },
  37850. {
  37851. name: "Godlike",
  37852. height: math.unit(9.8e280, "galaxies")
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(11, "meters"),
  37861. weight: math.unit(20, "tonnes"),
  37862. name: "Front",
  37863. image: {
  37864. source: "./media/characters/alistair/front.svg",
  37865. extra: 1265/1009,
  37866. bottom: 93/1358
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(11, "meters"),
  37874. default: true
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(5 + 8/12, "feet"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/haruka/front.svg",
  37886. extra: 2012/1952,
  37887. bottom: 0/2012
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(5 + 8/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37901. {
  37902. back: {
  37903. height: math.unit(9, "feet"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/vivian-sylveon/back.svg",
  37907. extra: 1853/1714,
  37908. bottom: 0/1853
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(9, "feet"),
  37916. default: true
  37917. },
  37918. {
  37919. name: "Macro",
  37920. height: math.unit(500, "feet")
  37921. },
  37922. {
  37923. name: "Megamacro",
  37924. height: math.unit(600, "miles")
  37925. },
  37926. {
  37927. name: "Gigamacro",
  37928. height: math.unit(30000, "miles")
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37934. {
  37935. anthro: {
  37936. height: math.unit(5 + 10/12, "feet"),
  37937. weight: math.unit(100, "lb"),
  37938. name: "Anthro",
  37939. image: {
  37940. source: "./media/characters/daiki/anthro.svg",
  37941. extra: 1115/1027,
  37942. bottom: 69/1184
  37943. }
  37944. },
  37945. feral: {
  37946. height: math.unit(200, "feet"),
  37947. name: "Feral",
  37948. image: {
  37949. source: "./media/characters/daiki/feral.svg",
  37950. extra: 1256/313,
  37951. bottom: 39/1295
  37952. }
  37953. },
  37954. feralHead: {
  37955. height: math.unit(171, "feet"),
  37956. name: "Feral Head",
  37957. image: {
  37958. source: "./media/characters/daiki/feral-head.svg"
  37959. }
  37960. },
  37961. manaDragon: {
  37962. height: math.unit(170, "meters"),
  37963. name: "Mana-dragon",
  37964. image: {
  37965. source: "./media/characters/daiki/mana-dragon.svg",
  37966. extra: 763/420,
  37967. bottom: 97/860
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(5 + 10/12, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37981. {
  37982. fullyEquippedFront: {
  37983. height: math.unit(3 + 1/12, "feet"),
  37984. weight: math.unit(24, "lb"),
  37985. name: "Fully Equipped (Front)",
  37986. image: {
  37987. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37988. extra: 687/605,
  37989. bottom: 18/705
  37990. }
  37991. },
  37992. fullyEquippedBack: {
  37993. height: math.unit(3 + 1/12, "feet"),
  37994. weight: math.unit(24, "lb"),
  37995. name: "Fully Equipped (Back)",
  37996. image: {
  37997. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37998. extra: 689/590,
  37999. bottom: 18/707
  38000. }
  38001. },
  38002. dailyWear: {
  38003. height: math.unit(3 + 1/12, "feet"),
  38004. weight: math.unit(24, "lb"),
  38005. name: "Daily Wear",
  38006. image: {
  38007. source: "./media/characters/tea-spot/daily-wear.svg",
  38008. extra: 701/620,
  38009. bottom: 21/722
  38010. }
  38011. },
  38012. maidWork: {
  38013. height: math.unit(3 + 1/12, "feet"),
  38014. weight: math.unit(24, "lb"),
  38015. name: "Maid Work",
  38016. image: {
  38017. source: "./media/characters/tea-spot/maid-work.svg",
  38018. extra: 693/609,
  38019. bottom: 15/708
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Normal",
  38026. height: math.unit(3 + 1/12, "feet"),
  38027. default: true
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(175, "cm"),
  38036. weight: math.unit(75, "kg"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/chee/front.svg",
  38040. extra: 1796/1740,
  38041. bottom: 40/1836
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Micro-Micro",
  38048. height: math.unit(1, "nm")
  38049. },
  38050. {
  38051. name: "Micro-erst",
  38052. height: math.unit(1, "micrometer")
  38053. },
  38054. {
  38055. name: "Micro-er",
  38056. height: math.unit(1, "cm")
  38057. },
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(175, "cm"),
  38061. default: true
  38062. },
  38063. {
  38064. name: "Macro",
  38065. height: math.unit(100, "m")
  38066. },
  38067. {
  38068. name: "Macro-er",
  38069. height: math.unit(1, "km")
  38070. },
  38071. {
  38072. name: "Macro-erst",
  38073. height: math.unit(10, "km")
  38074. },
  38075. {
  38076. name: "Macro-Macro",
  38077. height: math.unit(100, "km")
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(11 + 9/12, "feet"),
  38086. weight: math.unit(935, "lb"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/kingsley/front.svg",
  38090. extra: 1803/1674,
  38091. bottom: 127/1930
  38092. }
  38093. },
  38094. frontNude: {
  38095. height: math.unit(11 + 9/12, "feet"),
  38096. weight: math.unit(935, "lb"),
  38097. name: "Front (Nude)",
  38098. image: {
  38099. source: "./media/characters/kingsley/front-nude.svg",
  38100. extra: 1803/1674,
  38101. bottom: 127/1930
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(11 + 9/12, "feet"),
  38109. default: true
  38110. },
  38111. ]
  38112. ))
  38113. characterMakers.push(() => makeCharacter(
  38114. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38115. {
  38116. side: {
  38117. height: math.unit(9, "feet"),
  38118. name: "Side",
  38119. image: {
  38120. source: "./media/characters/rymel/side.svg",
  38121. extra: 792/469,
  38122. bottom: 121/913
  38123. }
  38124. },
  38125. maw: {
  38126. height: math.unit(2.4, "meters"),
  38127. name: "Maw",
  38128. image: {
  38129. source: "./media/characters/rymel/maw.svg"
  38130. }
  38131. },
  38132. },
  38133. [
  38134. {
  38135. name: "House Drake",
  38136. height: math.unit(2, "feet")
  38137. },
  38138. {
  38139. name: "Reduced",
  38140. height: math.unit(4.5, "feet")
  38141. },
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(9, "feet"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(1.74, "meters"),
  38154. weight: math.unit(55, "kg"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/rubus/front.svg",
  38158. extra: 1894/1742,
  38159. bottom: 44/1938
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(1.74, "meters"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(5 + 2/12, "feet"),
  38176. weight: math.unit(112, "lb"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/cassie-kingston/front.svg",
  38180. extra: 1438/1390,
  38181. bottom: 47/1485
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(5 + 2/12, "feet"),
  38189. default: true
  38190. },
  38191. {
  38192. name: "Macro",
  38193. height: math.unit(128, "feet")
  38194. },
  38195. {
  38196. name: "Megamacro",
  38197. height: math.unit(2.56, "miles")
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(7, "feet"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/fox/front.svg",
  38209. extra: 1798/1703,
  38210. bottom: 55/1853
  38211. }
  38212. },
  38213. back: {
  38214. height: math.unit(7, "feet"),
  38215. name: "Back",
  38216. image: {
  38217. source: "./media/characters/fox/back.svg",
  38218. extra: 1748/1649,
  38219. bottom: 32/1780
  38220. }
  38221. },
  38222. head: {
  38223. height: math.unit(1.95, "feet"),
  38224. name: "Head",
  38225. image: {
  38226. source: "./media/characters/fox/head.svg"
  38227. }
  38228. },
  38229. dick: {
  38230. height: math.unit(1.33, "feet"),
  38231. name: "Dick",
  38232. image: {
  38233. source: "./media/characters/fox/dick.svg"
  38234. }
  38235. },
  38236. foot: {
  38237. height: math.unit(1, "feet"),
  38238. name: "Foot",
  38239. image: {
  38240. source: "./media/characters/fox/foot.svg"
  38241. }
  38242. },
  38243. paw: {
  38244. height: math.unit(0.92, "feet"),
  38245. name: "Paw",
  38246. image: {
  38247. source: "./media/characters/fox/paw.svg"
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Small",
  38254. height: math.unit(3, "inches")
  38255. },
  38256. {
  38257. name: "\"Realistic\"",
  38258. height: math.unit(7, "feet")
  38259. },
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(150, "feet"),
  38263. default: true
  38264. },
  38265. {
  38266. name: "BIG",
  38267. height: math.unit(1200, "feet")
  38268. },
  38269. {
  38270. name: "👀",
  38271. height: math.unit(5, "miles")
  38272. },
  38273. {
  38274. name: "👀👀👀",
  38275. height: math.unit(64, "miles")
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38281. {
  38282. front: {
  38283. height: math.unit(625, "feet"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/asonja-rossa/front.svg",
  38287. extra: 1833/1686,
  38288. bottom: 24/1857
  38289. }
  38290. },
  38291. back: {
  38292. height: math.unit(625, "feet"),
  38293. name: "Back",
  38294. image: {
  38295. source: "./media/characters/asonja-rossa/back.svg",
  38296. extra: 1852/1753,
  38297. bottom: 26/1878
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Macro",
  38304. height: math.unit(625, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38311. {
  38312. side: {
  38313. height: math.unit(8, "feet"),
  38314. name: "Side",
  38315. image: {
  38316. source: "./media/characters/rezukii/side.svg",
  38317. extra: 979/542,
  38318. bottom: 87/1066
  38319. }
  38320. },
  38321. sitting: {
  38322. height: math.unit(14.6, "feet"),
  38323. name: "Sitting",
  38324. image: {
  38325. source: "./media/characters/rezukii/sitting.svg",
  38326. extra: 1023/813,
  38327. bottom: 45/1068
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Tiny",
  38334. height: math.unit(2, "feet")
  38335. },
  38336. {
  38337. name: "Smol",
  38338. height: math.unit(4, "feet")
  38339. },
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(8, "feet"),
  38343. default: true
  38344. },
  38345. {
  38346. name: "Big",
  38347. height: math.unit(12, "feet")
  38348. },
  38349. {
  38350. name: "Macro",
  38351. height: math.unit(30, "feet")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(14, "feet"),
  38360. weight: math.unit(9.5, "tonnes"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/dawnheart/front.svg",
  38364. extra: 2792/2675,
  38365. bottom: 64/2856
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(14, "feet"),
  38373. default: true
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38379. {
  38380. front: {
  38381. height: math.unit(1.7, "m"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/gladi/front.svg",
  38385. extra: 1460/1362,
  38386. bottom: 19/1479
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(1.7, "m"),
  38391. name: "Back",
  38392. image: {
  38393. source: "./media/characters/gladi/back.svg",
  38394. extra: 1459/1357,
  38395. bottom: 12/1471
  38396. }
  38397. },
  38398. feral: {
  38399. height: math.unit(2.05, "m"),
  38400. name: "Feral",
  38401. image: {
  38402. source: "./media/characters/gladi/feral.svg",
  38403. extra: 821/557,
  38404. bottom: 91/912
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Shortest",
  38411. height: math.unit(70, "cm")
  38412. },
  38413. {
  38414. name: "Normal",
  38415. height: math.unit(1.7, "m")
  38416. },
  38417. {
  38418. name: "Macro",
  38419. height: math.unit(10, "m"),
  38420. default: true
  38421. },
  38422. {
  38423. name: "Tallest",
  38424. height: math.unit(200, "m")
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(5 + 7/12, "feet"),
  38433. weight: math.unit(2, "tons"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/erdno/front.svg",
  38437. extra: 1234/1129,
  38438. bottom: 35/1269
  38439. }
  38440. },
  38441. angled: {
  38442. height: math.unit(5 + 7/12, "feet"),
  38443. weight: math.unit(2, "tons"),
  38444. name: "Angled",
  38445. image: {
  38446. source: "./media/characters/erdno/angled.svg",
  38447. extra: 1185/1139,
  38448. bottom: 36/1221
  38449. }
  38450. },
  38451. side: {
  38452. height: math.unit(5 + 7/12, "feet"),
  38453. weight: math.unit(2, "tons"),
  38454. name: "Side",
  38455. image: {
  38456. source: "./media/characters/erdno/side.svg",
  38457. extra: 1191/1144,
  38458. bottom: 40/1231
  38459. }
  38460. },
  38461. back: {
  38462. height: math.unit(5 + 7/12, "feet"),
  38463. weight: math.unit(2, "tons"),
  38464. name: "Back",
  38465. image: {
  38466. source: "./media/characters/erdno/back.svg",
  38467. extra: 1202/1146,
  38468. bottom: 17/1219
  38469. }
  38470. },
  38471. frontNsfw: {
  38472. height: math.unit(5 + 7/12, "feet"),
  38473. weight: math.unit(2, "tons"),
  38474. name: "Front (NSFW)",
  38475. image: {
  38476. source: "./media/characters/erdno/front-nsfw.svg",
  38477. extra: 1234/1129,
  38478. bottom: 35/1269
  38479. }
  38480. },
  38481. angledNsfw: {
  38482. height: math.unit(5 + 7/12, "feet"),
  38483. weight: math.unit(2, "tons"),
  38484. name: "Angled (NSFW)",
  38485. image: {
  38486. source: "./media/characters/erdno/angled-nsfw.svg",
  38487. extra: 1185/1139,
  38488. bottom: 36/1221
  38489. }
  38490. },
  38491. sideNsfw: {
  38492. height: math.unit(5 + 7/12, "feet"),
  38493. weight: math.unit(2, "tons"),
  38494. name: "Side (NSFW)",
  38495. image: {
  38496. source: "./media/characters/erdno/side-nsfw.svg",
  38497. extra: 1191/1144,
  38498. bottom: 40/1231
  38499. }
  38500. },
  38501. backNsfw: {
  38502. height: math.unit(5 + 7/12, "feet"),
  38503. weight: math.unit(2, "tons"),
  38504. name: "Back (NSFW)",
  38505. image: {
  38506. source: "./media/characters/erdno/back-nsfw.svg",
  38507. extra: 1202/1146,
  38508. bottom: 17/1219
  38509. }
  38510. },
  38511. frontHyper: {
  38512. height: math.unit(5 + 7/12, "feet"),
  38513. weight: math.unit(2, "tons"),
  38514. name: "Front (Hyper)",
  38515. image: {
  38516. source: "./media/characters/erdno/front-hyper.svg",
  38517. extra: 1298/1136,
  38518. bottom: 35/1333
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(5 + 7/12, "feet"),
  38526. default: true
  38527. },
  38528. {
  38529. name: "Big",
  38530. height: math.unit(5.7, "meters")
  38531. },
  38532. {
  38533. name: "Macro",
  38534. height: math.unit(5.7, "kilometers")
  38535. },
  38536. {
  38537. name: "Megamacro",
  38538. height: math.unit(5.7, "earths")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(5 + 10/12, "feet"),
  38547. weight: math.unit(150, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/jamie/front.svg",
  38551. extra: 1908/1768,
  38552. bottom: 19/1927
  38553. }
  38554. },
  38555. },
  38556. [
  38557. {
  38558. name: "Minimum",
  38559. height: math.unit(2, "cm")
  38560. },
  38561. {
  38562. name: "Micro",
  38563. height: math.unit(3, "inches")
  38564. },
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(5 + 10/12, "feet"),
  38568. default: true
  38569. },
  38570. {
  38571. name: "Macro",
  38572. height: math.unit(150, "feet")
  38573. },
  38574. {
  38575. name: "Megamacro",
  38576. height: math.unit(10000, "m")
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(2, "meters"),
  38585. weight: math.unit(100, "kg"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/shiron/front.svg",
  38589. extra: 2103/1985,
  38590. bottom: 98/2201
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(2, "meters"),
  38595. weight: math.unit(100, "kg"),
  38596. name: "Back",
  38597. image: {
  38598. source: "./media/characters/shiron/back.svg",
  38599. extra: 2110/2015,
  38600. bottom: 89/2199
  38601. }
  38602. },
  38603. hand: {
  38604. height: math.unit(0.96, "feet"),
  38605. name: "Hand",
  38606. image: {
  38607. source: "./media/characters/shiron/hand.svg"
  38608. }
  38609. },
  38610. foot: {
  38611. height: math.unit(1.464, "feet"),
  38612. name: "Foot",
  38613. image: {
  38614. source: "./media/characters/shiron/foot.svg"
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(2, "meters")
  38622. },
  38623. {
  38624. name: "Macro",
  38625. height: math.unit(500, "meters"),
  38626. default: true
  38627. },
  38628. {
  38629. name: "Megamacro",
  38630. height: math.unit(20, "km")
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(6, "feet"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/sam/front.svg",
  38642. extra: 849/826,
  38643. bottom: 19/868
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(6, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(8 + 4/12, "feet"),
  38660. weight: math.unit(122, "kg"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/namori-kurogawa/front.svg",
  38664. extra: 1894/1576,
  38665. bottom: 34/1928
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(8 + 4/12, "feet"),
  38673. default: true
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(9, "feet"),
  38682. weight: math.unit(621, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/unmru/front.svg",
  38686. extra: 1853/1747,
  38687. bottom: 73/1926
  38688. }
  38689. },
  38690. side: {
  38691. height: math.unit(9, "feet"),
  38692. weight: math.unit(621, "lb"),
  38693. name: "Side",
  38694. image: {
  38695. source: "./media/characters/unmru/side.svg",
  38696. extra: 1781/1671,
  38697. bottom: 127/1908
  38698. }
  38699. },
  38700. back: {
  38701. height: math.unit(9, "feet"),
  38702. weight: math.unit(621, "lb"),
  38703. name: "Back",
  38704. image: {
  38705. source: "./media/characters/unmru/back.svg",
  38706. extra: 1894/1765,
  38707. bottom: 75/1969
  38708. }
  38709. },
  38710. dick: {
  38711. height: math.unit(3, "feet"),
  38712. weight: math.unit(35, "lb"),
  38713. name: "Dick",
  38714. image: {
  38715. source: "./media/characters/unmru/dick.svg"
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(9, "feet")
  38723. },
  38724. {
  38725. name: "Natural",
  38726. height: math.unit(27, "feet"),
  38727. default: true
  38728. },
  38729. {
  38730. name: "Giant",
  38731. height: math.unit(90, "feet")
  38732. },
  38733. {
  38734. name: "Kaiju",
  38735. height: math.unit(270, "feet")
  38736. },
  38737. {
  38738. name: "Macro",
  38739. height: math.unit(900, "feet")
  38740. },
  38741. {
  38742. name: "Macro+",
  38743. height: math.unit(2700, "feet")
  38744. },
  38745. {
  38746. name: "Megamacro",
  38747. height: math.unit(9000, "feet")
  38748. },
  38749. {
  38750. name: "City-Crushing",
  38751. height: math.unit(27000, "feet")
  38752. },
  38753. {
  38754. name: "Mountain-Mashing",
  38755. height: math.unit(90000, "feet")
  38756. },
  38757. {
  38758. name: "Earth-Eclipsing",
  38759. height: math.unit(2.7e8, "feet")
  38760. },
  38761. {
  38762. name: "Sol-Swallowing",
  38763. height: math.unit(9e10, "feet")
  38764. },
  38765. {
  38766. name: "Majoris-Munching",
  38767. height: math.unit(2.7e13, "feet")
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38773. {
  38774. front: {
  38775. height: math.unit(1, "inch"),
  38776. name: "Front",
  38777. image: {
  38778. source: "./media/characters/squeaks-mouse/front.svg",
  38779. extra: 352/308,
  38780. bottom: 25/377
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Micro",
  38787. height: math.unit(1, "inch"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38794. {
  38795. side: {
  38796. height: math.unit(35, "feet"),
  38797. name: "Side",
  38798. image: {
  38799. source: "./media/characters/sayko/side.svg",
  38800. extra: 1697/1021,
  38801. bottom: 82/1779
  38802. }
  38803. },
  38804. head: {
  38805. height: math.unit(16, "feet"),
  38806. name: "Head",
  38807. image: {
  38808. source: "./media/characters/sayko/head.svg"
  38809. }
  38810. },
  38811. forepaw: {
  38812. height: math.unit(7.85, "feet"),
  38813. name: "Forepaw",
  38814. image: {
  38815. source: "./media/characters/sayko/forepaw.svg"
  38816. }
  38817. },
  38818. hindpaw: {
  38819. height: math.unit(8.8, "feet"),
  38820. name: "Hindpaw",
  38821. image: {
  38822. source: "./media/characters/sayko/hindpaw.svg"
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(35, "feet"),
  38830. default: true
  38831. },
  38832. {
  38833. name: "Colossus",
  38834. height: math.unit(100, "meters")
  38835. },
  38836. {
  38837. name: "\"Small\" Deity",
  38838. height: math.unit(1, "km")
  38839. },
  38840. {
  38841. name: "\"Large\" Deity",
  38842. height: math.unit(15, "km")
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38848. {
  38849. front: {
  38850. height: math.unit(6, "feet"),
  38851. weight: math.unit(250, "lb"),
  38852. name: "Front",
  38853. image: {
  38854. source: "./media/characters/mukiro/front.svg",
  38855. extra: 1368/1310,
  38856. bottom: 34/1402
  38857. }
  38858. },
  38859. },
  38860. [
  38861. {
  38862. name: "Normal",
  38863. height: math.unit(6, "feet"),
  38864. default: true
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38870. {
  38871. front: {
  38872. height: math.unit(12 + 4/12, "feet"),
  38873. name: "Front",
  38874. image: {
  38875. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38876. extra: 1346/1311,
  38877. bottom: 65/1411
  38878. }
  38879. },
  38880. },
  38881. [
  38882. {
  38883. name: "Base",
  38884. height: math.unit(12 + 4/12, "feet"),
  38885. default: true
  38886. },
  38887. {
  38888. name: "Macro",
  38889. height: math.unit(150, "feet")
  38890. },
  38891. {
  38892. name: "Mega",
  38893. height: math.unit(2, "miles")
  38894. },
  38895. {
  38896. name: "Demi God",
  38897. height: math.unit(4, "AU")
  38898. },
  38899. {
  38900. name: "God Size",
  38901. height: math.unit(1, "universe")
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(3 + 3/12, "feet"),
  38910. weight: math.unit(88, "lb"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/trey/front.svg",
  38914. extra: 1815/1509,
  38915. bottom: 60/1875
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(3 + 3/12, "feet"),
  38923. default: true
  38924. },
  38925. ]
  38926. ))
  38927. characterMakers.push(() => makeCharacter(
  38928. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38929. {
  38930. front: {
  38931. height: math.unit(4, "meters"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/adelonda/front.svg",
  38935. extra: 1077/982,
  38936. bottom: 39/1116
  38937. }
  38938. },
  38939. back: {
  38940. height: math.unit(4, "meters"),
  38941. name: "Back",
  38942. image: {
  38943. source: "./media/characters/adelonda/back.svg",
  38944. extra: 1105/1003,
  38945. bottom: 25/1130
  38946. }
  38947. },
  38948. feral: {
  38949. height: math.unit(40/1.5, "meters"),
  38950. name: "Feral",
  38951. image: {
  38952. source: "./media/characters/adelonda/feral.svg",
  38953. extra: 597/271,
  38954. bottom: 387/984
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Normal",
  38961. height: math.unit(4, "meters"),
  38962. default: true
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38968. {
  38969. front: {
  38970. height: math.unit(8 + 4/12, "feet"),
  38971. weight: math.unit(670, "lb"),
  38972. name: "Front",
  38973. image: {
  38974. source: "./media/characters/acadiel/front.svg",
  38975. extra: 1901/1595,
  38976. bottom: 142/2043
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Normal",
  38983. height: math.unit(8 + 4/12, "feet"),
  38984. default: true
  38985. },
  38986. {
  38987. name: "Macro",
  38988. height: math.unit(200, "feet")
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(6 + 2/12, "feet"),
  38997. weight: math.unit(185, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/kayne-ein/front.svg",
  39001. extra: 1780/1560,
  39002. bottom: 81/1861
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(6 + 2/12, "feet"),
  39010. default: true
  39011. },
  39012. {
  39013. name: "Transformation Stage",
  39014. height: math.unit(15, "feet")
  39015. },
  39016. {
  39017. name: "Macro",
  39018. height: math.unit(150, "feet")
  39019. },
  39020. {
  39021. name: "Earth's Shadow",
  39022. height: math.unit(6200, "miles")
  39023. },
  39024. {
  39025. name: "Universal Demon",
  39026. height: math.unit(28e9, "parsecs")
  39027. },
  39028. {
  39029. name: "Multiverse God",
  39030. height: math.unit(3, "multiverses")
  39031. },
  39032. ]
  39033. ))
  39034. characterMakers.push(() => makeCharacter(
  39035. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39036. {
  39037. front: {
  39038. height: math.unit(5 + 5/12, "feet"),
  39039. name: "Front",
  39040. image: {
  39041. source: "./media/characters/fawn/front.svg",
  39042. extra: 1873/1731,
  39043. bottom: 95/1968
  39044. }
  39045. },
  39046. back: {
  39047. height: math.unit(5 + 5/12, "feet"),
  39048. name: "Back",
  39049. image: {
  39050. source: "./media/characters/fawn/back.svg",
  39051. extra: 1813/1700,
  39052. bottom: 14/1827
  39053. }
  39054. },
  39055. hoof: {
  39056. height: math.unit(1.45, "feet"),
  39057. name: "Hoof",
  39058. image: {
  39059. source: "./media/characters/fawn/hoof.svg"
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(5 + 5/12, "feet"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(2 + 5/12, "feet"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/orion/front.svg",
  39079. extra: 1366/1304,
  39080. bottom: 43/1409
  39081. }
  39082. },
  39083. paw: {
  39084. height: math.unit(0.52, "feet"),
  39085. name: "Paw",
  39086. image: {
  39087. source: "./media/characters/orion/paw.svg"
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Normal",
  39094. height: math.unit(2 + 5/12, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(5 + 10/12, "feet"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/vera/front.svg",
  39107. extra: 1680/1575,
  39108. bottom: 49/1729
  39109. }
  39110. },
  39111. back: {
  39112. height: math.unit(5 + 10/12, "feet"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/vera/back.svg",
  39116. extra: 1700/1588,
  39117. bottom: 18/1718
  39118. }
  39119. },
  39120. arcanine: {
  39121. height: math.unit(6 + 8/12, "feet"),
  39122. name: "Arcanine",
  39123. image: {
  39124. source: "./media/characters/vera/arcanine.svg",
  39125. extra: 1590/1511,
  39126. bottom: 71/1661
  39127. }
  39128. },
  39129. maw: {
  39130. height: math.unit(0.82, "feet"),
  39131. name: "Maw",
  39132. image: {
  39133. source: "./media/characters/vera/maw.svg"
  39134. }
  39135. },
  39136. mawArcanine: {
  39137. height: math.unit(0.97, "feet"),
  39138. name: "Maw (Arcanine)",
  39139. image: {
  39140. source: "./media/characters/vera/maw-arcanine.svg"
  39141. }
  39142. },
  39143. paw: {
  39144. height: math.unit(0.75, "feet"),
  39145. name: "Paw",
  39146. image: {
  39147. source: "./media/characters/vera/paw.svg"
  39148. }
  39149. },
  39150. pawprint: {
  39151. height: math.unit(0.52, "feet"),
  39152. name: "Pawprint",
  39153. image: {
  39154. source: "./media/characters/vera/pawprint.svg"
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(5 + 10/12, "feet"),
  39162. default: true
  39163. },
  39164. {
  39165. name: "Macro",
  39166. height: math.unit(75, "feet")
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(4, "feet"),
  39175. weight: math.unit(40, "lb"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/orvan-rabbit/front.svg",
  39179. extra: 1896/1642,
  39180. bottom: 29/1925
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(4, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(6, "feet"),
  39197. weight: math.unit(168, "lb"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/lisa/front.svg",
  39201. extra: 2065/1867,
  39202. bottom: 46/2111
  39203. }
  39204. },
  39205. back: {
  39206. height: math.unit(6, "feet"),
  39207. weight: math.unit(168, "lb"),
  39208. name: "Back",
  39209. image: {
  39210. source: "./media/characters/lisa/back.svg",
  39211. extra: 1982/1838,
  39212. bottom: 29/2011
  39213. }
  39214. },
  39215. maw: {
  39216. height: math.unit(0.81, "feet"),
  39217. name: "Maw",
  39218. image: {
  39219. source: "./media/characters/lisa/maw.svg"
  39220. }
  39221. },
  39222. paw: {
  39223. height: math.unit(0.9, "feet"),
  39224. name: "Paw",
  39225. image: {
  39226. source: "./media/characters/lisa/paw.svg"
  39227. }
  39228. },
  39229. caribousune: {
  39230. height: math.unit(7 + 2/12, "feet"),
  39231. weight: math.unit(268, "lb"),
  39232. name: "Caribousune",
  39233. image: {
  39234. source: "./media/characters/lisa/caribousune.svg",
  39235. extra: 1843/1633,
  39236. bottom: 29/1872
  39237. }
  39238. },
  39239. frontCaribousune: {
  39240. height: math.unit(7 + 2/12, "feet"),
  39241. weight: math.unit(268, "lb"),
  39242. name: "Front (Caribousune)",
  39243. image: {
  39244. source: "./media/characters/lisa/front-caribousune.svg",
  39245. extra: 1818/1638,
  39246. bottom: 52/1870
  39247. }
  39248. },
  39249. sideCaribousune: {
  39250. height: math.unit(7 + 2/12, "feet"),
  39251. weight: math.unit(268, "lb"),
  39252. name: "Side (Caribousune)",
  39253. image: {
  39254. source: "./media/characters/lisa/side-caribousune.svg",
  39255. extra: 1851/1635,
  39256. bottom: 16/1867
  39257. }
  39258. },
  39259. backCaribousune: {
  39260. height: math.unit(7 + 2/12, "feet"),
  39261. weight: math.unit(268, "lb"),
  39262. name: "Back (Caribousune)",
  39263. image: {
  39264. source: "./media/characters/lisa/back-caribousune.svg",
  39265. extra: 1801/1604,
  39266. bottom: 44/1845
  39267. }
  39268. },
  39269. caribou: {
  39270. height: math.unit(7 + 2/12, "feet"),
  39271. weight: math.unit(268, "lb"),
  39272. name: "Caribou",
  39273. image: {
  39274. source: "./media/characters/lisa/caribou.svg",
  39275. extra: 1843/1633,
  39276. bottom: 29/1872
  39277. }
  39278. },
  39279. frontCaribou: {
  39280. height: math.unit(7 + 2/12, "feet"),
  39281. weight: math.unit(268, "lb"),
  39282. name: "Front (Caribou)",
  39283. image: {
  39284. source: "./media/characters/lisa/front-caribou.svg",
  39285. extra: 1818/1638,
  39286. bottom: 52/1870
  39287. }
  39288. },
  39289. sideCaribou: {
  39290. height: math.unit(7 + 2/12, "feet"),
  39291. weight: math.unit(268, "lb"),
  39292. name: "Side (Caribou)",
  39293. image: {
  39294. source: "./media/characters/lisa/side-caribou.svg",
  39295. extra: 1851/1635,
  39296. bottom: 16/1867
  39297. }
  39298. },
  39299. backCaribou: {
  39300. height: math.unit(7 + 2/12, "feet"),
  39301. weight: math.unit(268, "lb"),
  39302. name: "Back (Caribou)",
  39303. image: {
  39304. source: "./media/characters/lisa/back-caribou.svg",
  39305. extra: 1801/1604,
  39306. bottom: 44/1845
  39307. }
  39308. },
  39309. mawCaribou: {
  39310. height: math.unit(1.45, "feet"),
  39311. name: "Maw (Caribou)",
  39312. image: {
  39313. source: "./media/characters/lisa/maw-caribou.svg"
  39314. }
  39315. },
  39316. mawCaribousune: {
  39317. height: math.unit(1.45, "feet"),
  39318. name: "Maw (Caribousune)",
  39319. image: {
  39320. source: "./media/characters/lisa/maw-caribousune.svg"
  39321. }
  39322. },
  39323. pawCaribousune: {
  39324. height: math.unit(1.61, "feet"),
  39325. name: "Paw (Caribou)",
  39326. image: {
  39327. source: "./media/characters/lisa/paw-caribousune.svg"
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(6, "feet")
  39335. },
  39336. {
  39337. name: "God Size",
  39338. height: math.unit(72, "feet"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "Towering",
  39343. height: math.unit(288, "feet")
  39344. },
  39345. {
  39346. name: "City Size",
  39347. height: math.unit(48384, "feet")
  39348. },
  39349. {
  39350. name: "Continental",
  39351. height: math.unit(4200, "miles")
  39352. },
  39353. {
  39354. name: "Planet Eater",
  39355. height: math.unit(42, "earths")
  39356. },
  39357. {
  39358. name: "Star Swallower",
  39359. height: math.unit(42, "solarradii")
  39360. },
  39361. {
  39362. name: "System Swallower",
  39363. height: math.unit(84000, "AU")
  39364. },
  39365. {
  39366. name: "Galaxy Gobbler",
  39367. height: math.unit(42, "galaxies")
  39368. },
  39369. {
  39370. name: "Universe Devourer",
  39371. height: math.unit(42, "universes")
  39372. },
  39373. {
  39374. name: "Multiverse Muncher",
  39375. height: math.unit(42, "multiverses")
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(36, "feet"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/shadow-rat/front.svg",
  39387. extra: 1845/1758,
  39388. bottom: 83/1928
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Macro",
  39395. height: math.unit(36, "feet"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39402. {
  39403. side: {
  39404. height: math.unit(8, "feet"),
  39405. weight: math.unit(2630, "lb"),
  39406. name: "Side",
  39407. image: {
  39408. source: "./media/characters/torallia/side.svg",
  39409. extra: 2164/2021,
  39410. bottom: 371/2535
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Mortal Interaction",
  39417. height: math.unit(8, "feet")
  39418. },
  39419. {
  39420. name: "Natural",
  39421. height: math.unit(24, "feet"),
  39422. default: true
  39423. },
  39424. {
  39425. name: "Giant",
  39426. height: math.unit(80, "feet")
  39427. },
  39428. {
  39429. name: "Kaiju",
  39430. height: math.unit(240, "feet")
  39431. },
  39432. {
  39433. name: "Macro",
  39434. height: math.unit(800, "feet")
  39435. },
  39436. {
  39437. name: "Macro+",
  39438. height: math.unit(2400, "feet")
  39439. },
  39440. {
  39441. name: "Macro++",
  39442. height: math.unit(8000, "feet")
  39443. },
  39444. {
  39445. name: "City-Crushing",
  39446. height: math.unit(24000, "feet")
  39447. },
  39448. {
  39449. name: "Mountain-Mashing",
  39450. height: math.unit(80000, "feet")
  39451. },
  39452. {
  39453. name: "District Demolisher",
  39454. height: math.unit(240000, "feet")
  39455. },
  39456. {
  39457. name: "Tri-County Terror",
  39458. height: math.unit(800000, "feet")
  39459. },
  39460. {
  39461. name: "State Smasher",
  39462. height: math.unit(2.4e6, "feet")
  39463. },
  39464. {
  39465. name: "Nation Nemesis",
  39466. height: math.unit(8e6, "feet")
  39467. },
  39468. {
  39469. name: "Continent Cracker",
  39470. height: math.unit(2.4e7, "feet")
  39471. },
  39472. {
  39473. name: "Planet-Pillaging",
  39474. height: math.unit(8e7, "feet")
  39475. },
  39476. {
  39477. name: "Earth-Eclipsing",
  39478. height: math.unit(2.4e8, "feet")
  39479. },
  39480. {
  39481. name: "Jovian-Jostling",
  39482. height: math.unit(8e8, "feet")
  39483. },
  39484. {
  39485. name: "Gas Giant Gulper",
  39486. height: math.unit(2.4e9, "feet")
  39487. },
  39488. {
  39489. name: "Astral Annihilator",
  39490. height: math.unit(8e9, "feet")
  39491. },
  39492. {
  39493. name: "Celestial Conqueror",
  39494. height: math.unit(2.4e10, "feet")
  39495. },
  39496. {
  39497. name: "Sol-Swallowing",
  39498. height: math.unit(8e10, "feet")
  39499. },
  39500. {
  39501. name: "Hunter of the Heavens",
  39502. height: math.unit(2.4e13, "feet")
  39503. },
  39504. ]
  39505. ))
  39506. characterMakers.push(() => makeCharacter(
  39507. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39508. {
  39509. front: {
  39510. height: math.unit(6 + 8/12, "feet"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/rebecca-pawlson/front.svg",
  39514. extra: 1737/1596,
  39515. bottom: 107/1844
  39516. }
  39517. },
  39518. back: {
  39519. height: math.unit(6 + 8/12, "feet"),
  39520. name: "Back",
  39521. image: {
  39522. source: "./media/characters/rebecca-pawlson/back.svg",
  39523. extra: 1702/1523,
  39524. bottom: 86/1788
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(6 + 8/12, "feet")
  39532. },
  39533. {
  39534. name: "Mini Macro",
  39535. height: math.unit(10, "feet"),
  39536. default: true
  39537. },
  39538. {
  39539. name: "Macro",
  39540. height: math.unit(100, "feet")
  39541. },
  39542. {
  39543. name: "Mega Macro",
  39544. height: math.unit(2500, "feet")
  39545. },
  39546. {
  39547. name: "Giga Macro",
  39548. height: math.unit(50, "miles")
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(7 + 6/12, "feet"),
  39557. weight: math.unit(600, "lb"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/moxie-nova/front.svg",
  39561. extra: 1734/1652,
  39562. bottom: 41/1775
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(7 + 6/12, "feet"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39576. {
  39577. goat: {
  39578. height: math.unit(4, "feet"),
  39579. weight: math.unit(180, "lb"),
  39580. name: "Goat",
  39581. image: {
  39582. source: "./media/characters/tiffany/goat.svg",
  39583. extra: 1845/1595,
  39584. bottom: 106/1951
  39585. }
  39586. },
  39587. front: {
  39588. height: math.unit(5, "feet"),
  39589. weight: math.unit(150, "lb"),
  39590. name: "Foxcoon",
  39591. image: {
  39592. source: "./media/characters/tiffany/foxcoon.svg",
  39593. extra: 1941/1845,
  39594. bottom: 58/1999
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(5, "feet"),
  39602. default: true
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(8, "feet"),
  39611. weight: math.unit(300, "lb"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/raxinath/front.svg",
  39615. extra: 1407/1309,
  39616. bottom: 39/1446
  39617. }
  39618. },
  39619. back: {
  39620. height: math.unit(8, "feet"),
  39621. weight: math.unit(300, "lb"),
  39622. name: "Back",
  39623. image: {
  39624. source: "./media/characters/raxinath/back.svg",
  39625. extra: 1405/1315,
  39626. bottom: 9/1414
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Speck",
  39633. height: math.unit(0.5, "nm")
  39634. },
  39635. {
  39636. name: "Micro",
  39637. height: math.unit(3, "inches")
  39638. },
  39639. {
  39640. name: "Kobold",
  39641. height: math.unit(3, "feet")
  39642. },
  39643. {
  39644. name: "Normal",
  39645. height: math.unit(8, "feet"),
  39646. default: true
  39647. },
  39648. {
  39649. name: "Giant",
  39650. height: math.unit(50, "feet")
  39651. },
  39652. {
  39653. name: "Macro",
  39654. height: math.unit(1000, "feet")
  39655. },
  39656. {
  39657. name: "Megamacro",
  39658. height: math.unit(1, "mile")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(10, "feet"),
  39667. weight: math.unit(1442, "lb"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/mal-dragon/front.svg",
  39671. extra: 1515/1444,
  39672. bottom: 113/1628
  39673. }
  39674. },
  39675. back: {
  39676. height: math.unit(10, "feet"),
  39677. weight: math.unit(1442, "lb"),
  39678. name: "Back",
  39679. image: {
  39680. source: "./media/characters/mal-dragon/back.svg",
  39681. extra: 1527/1434,
  39682. bottom: 25/1552
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Mortal Interaction",
  39689. height: math.unit(10, "feet"),
  39690. default: true
  39691. },
  39692. {
  39693. name: "Large",
  39694. height: math.unit(30, "feet")
  39695. },
  39696. {
  39697. name: "Kaiju",
  39698. height: math.unit(300, "feet")
  39699. },
  39700. {
  39701. name: "Megamacro",
  39702. height: math.unit(10000, "feet")
  39703. },
  39704. {
  39705. name: "Continent Cracker",
  39706. height: math.unit(30000000, "feet")
  39707. },
  39708. {
  39709. name: "Sol-Swallowing",
  39710. height: math.unit(1e11, "feet")
  39711. },
  39712. {
  39713. name: "Light Universal",
  39714. height: math.unit(5, "universes")
  39715. },
  39716. {
  39717. name: "Universe Atoms",
  39718. height: math.unit(1.829e9, "universes")
  39719. },
  39720. {
  39721. name: "Light Multiversal",
  39722. height: math.unit(5, "multiverses")
  39723. },
  39724. {
  39725. name: "Multiverse Atoms",
  39726. height: math.unit(1.829e9, "multiverses")
  39727. },
  39728. {
  39729. name: "Fabric of Time",
  39730. height: math.unit(1e262, "multiverses")
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(9, "feet"),
  39739. weight: math.unit(1050, "lb"),
  39740. name: "Front",
  39741. image: {
  39742. source: "./media/characters/tabitha/front.svg",
  39743. extra: 2083/1994,
  39744. bottom: 68/2151
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Baseline",
  39751. height: math.unit(9, "feet"),
  39752. default: true
  39753. },
  39754. {
  39755. name: "Giant",
  39756. height: math.unit(90, "feet")
  39757. },
  39758. {
  39759. name: "Macro",
  39760. height: math.unit(900, "feet")
  39761. },
  39762. {
  39763. name: "Megamacro",
  39764. height: math.unit(9000, "feet")
  39765. },
  39766. {
  39767. name: "City-Crushing",
  39768. height: math.unit(27000, "feet")
  39769. },
  39770. {
  39771. name: "Mountain-Mashing",
  39772. height: math.unit(90000, "feet")
  39773. },
  39774. {
  39775. name: "Nation Nemesis",
  39776. height: math.unit(9e6, "feet")
  39777. },
  39778. {
  39779. name: "Continent Cracker",
  39780. height: math.unit(27e6, "feet")
  39781. },
  39782. {
  39783. name: "Earth-Eclipsing",
  39784. height: math.unit(2.7e8, "feet")
  39785. },
  39786. {
  39787. name: "Gas Giant Gulper",
  39788. height: math.unit(2.7e9, "feet")
  39789. },
  39790. {
  39791. name: "Sol-Swallowing",
  39792. height: math.unit(9e10, "feet")
  39793. },
  39794. {
  39795. name: "Galaxy Gulper",
  39796. height: math.unit(9, "galaxies")
  39797. },
  39798. {
  39799. name: "Cosmos Churner",
  39800. height: math.unit(9, "universes")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(160, "cm"),
  39809. weight: math.unit(55, "kg"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/tow/front.svg",
  39813. extra: 1751/1722,
  39814. bottom: 74/1825
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Norm",
  39821. height: math.unit(160, "cm")
  39822. },
  39823. {
  39824. name: "Casual",
  39825. height: math.unit(3200, "m"),
  39826. default: true
  39827. },
  39828. {
  39829. name: "Show-Off",
  39830. height: math.unit(160, "km")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39836. {
  39837. front: {
  39838. height: math.unit(7 + 11/12, "feet"),
  39839. weight: math.unit(342.8, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/vivian-orca-dragon/front.svg",
  39843. extra: 1890/1865,
  39844. bottom: 28/1918
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Micro",
  39851. height: math.unit(5, "inches")
  39852. },
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(7 + 11/12, "feet"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Macro",
  39860. height: math.unit(395 + 7/12, "feet")
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39866. {
  39867. side: {
  39868. height: math.unit(10, "feet"),
  39869. weight: math.unit(1442, "lb"),
  39870. name: "Side",
  39871. image: {
  39872. source: "./media/characters/lotherakon/side.svg",
  39873. extra: 1604/1497,
  39874. bottom: 89/1693
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Mortal Interaction",
  39881. height: math.unit(10, "feet")
  39882. },
  39883. {
  39884. name: "Large",
  39885. height: math.unit(30, "feet"),
  39886. default: true
  39887. },
  39888. {
  39889. name: "Giant",
  39890. height: math.unit(100, "feet")
  39891. },
  39892. {
  39893. name: "Kaiju",
  39894. height: math.unit(300, "feet")
  39895. },
  39896. {
  39897. name: "Macro",
  39898. height: math.unit(1000, "feet")
  39899. },
  39900. {
  39901. name: "Macro+",
  39902. height: math.unit(3000, "feet")
  39903. },
  39904. {
  39905. name: "Megamacro",
  39906. height: math.unit(10000, "feet")
  39907. },
  39908. {
  39909. name: "City-Crushing",
  39910. height: math.unit(30000, "feet")
  39911. },
  39912. {
  39913. name: "Continent Cracker",
  39914. height: math.unit(30e6, "feet")
  39915. },
  39916. {
  39917. name: "Earth Eclipsing",
  39918. height: math.unit(3e8, "feet")
  39919. },
  39920. {
  39921. name: "Gas Giant Gulper",
  39922. height: math.unit(3e9, "feet")
  39923. },
  39924. {
  39925. name: "Sol-Swallowing",
  39926. height: math.unit(1e11, "feet")
  39927. },
  39928. {
  39929. name: "System Swallower",
  39930. height: math.unit(3e14, "feet")
  39931. },
  39932. {
  39933. name: "Galaxy Gulper",
  39934. height: math.unit(10, "galaxies")
  39935. },
  39936. {
  39937. name: "Light Universal",
  39938. height: math.unit(5, "universes")
  39939. },
  39940. {
  39941. name: "Universe Palm",
  39942. height: math.unit(20, "universes")
  39943. },
  39944. {
  39945. name: "Light Multiversal",
  39946. height: math.unit(5, "multiverses")
  39947. },
  39948. {
  39949. name: "Multiverse Palm",
  39950. height: math.unit(20, "multiverses")
  39951. },
  39952. {
  39953. name: "Inferno Incarnate",
  39954. height: math.unit(1e7, "multiverses")
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(8, "feet"),
  39963. weight: math.unit(1200, "lb"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/malithee/front.svg",
  39967. extra: 1675/1640,
  39968. bottom: 162/1837
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Mortal Interaction",
  39975. height: math.unit(8, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Large",
  39980. height: math.unit(24, "feet")
  39981. },
  39982. {
  39983. name: "Kaiju",
  39984. height: math.unit(240, "feet")
  39985. },
  39986. {
  39987. name: "Megamacro",
  39988. height: math.unit(8000, "feet")
  39989. },
  39990. {
  39991. name: "Continent Cracker",
  39992. height: math.unit(24e6, "feet")
  39993. },
  39994. {
  39995. name: "Earth-Eclipsing",
  39996. height: math.unit(2.4e8, "feet")
  39997. },
  39998. {
  39999. name: "Sol-Swallowing",
  40000. height: math.unit(8e10, "feet")
  40001. },
  40002. {
  40003. name: "Galaxy Gulper",
  40004. height: math.unit(8, "galaxies")
  40005. },
  40006. {
  40007. name: "Light Universal",
  40008. height: math.unit(4, "universes")
  40009. },
  40010. {
  40011. name: "Universe Atoms",
  40012. height: math.unit(1.829e9, "universes")
  40013. },
  40014. {
  40015. name: "Light Multiversal",
  40016. height: math.unit(4, "multiverses")
  40017. },
  40018. {
  40019. name: "Multiverse Atoms",
  40020. height: math.unit(1.829e9, "multiverses")
  40021. },
  40022. {
  40023. name: "Nigh-Omnipresence",
  40024. height: math.unit(8e261, "multiverses")
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(10, "feet"),
  40033. weight: math.unit(1500, "lb"),
  40034. name: "Front",
  40035. image: {
  40036. source: "./media/characters/miles-thestia/front.svg",
  40037. extra: 1812/1727,
  40038. bottom: 86/1898
  40039. }
  40040. },
  40041. back: {
  40042. height: math.unit(10, "feet"),
  40043. weight: math.unit(1500, "lb"),
  40044. name: "Back",
  40045. image: {
  40046. source: "./media/characters/miles-thestia/back.svg",
  40047. extra: 1799/1690,
  40048. bottom: 47/1846
  40049. }
  40050. },
  40051. frontNsfw: {
  40052. height: math.unit(10, "feet"),
  40053. weight: math.unit(1500, "lb"),
  40054. name: "Front (NSFW)",
  40055. image: {
  40056. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40057. extra: 1812/1727,
  40058. bottom: 86/1898
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Mini-Macro",
  40065. height: math.unit(10, "feet"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(25, "feet"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/titan-s-wulf/front.svg",
  40078. extra: 1560/1484,
  40079. bottom: 76/1636
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Smallest",
  40086. height: math.unit(25, "feet"),
  40087. default: true
  40088. },
  40089. {
  40090. name: "Normal",
  40091. height: math.unit(200, "feet")
  40092. },
  40093. {
  40094. name: "Macro",
  40095. height: math.unit(200000, "feet")
  40096. },
  40097. {
  40098. name: "Multiversal Original",
  40099. height: math.unit(10000, "multiverses")
  40100. },
  40101. ]
  40102. ))
  40103. characterMakers.push(() => makeCharacter(
  40104. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40105. {
  40106. front: {
  40107. height: math.unit(8, "feet"),
  40108. weight: math.unit(553, "lb"),
  40109. name: "Front",
  40110. image: {
  40111. source: "./media/characters/tawendeh/front.svg",
  40112. extra: 2365/2268,
  40113. bottom: 83/2448
  40114. }
  40115. },
  40116. frontClothed: {
  40117. height: math.unit(8, "feet"),
  40118. weight: math.unit(553, "lb"),
  40119. name: "Front (Clothed)",
  40120. image: {
  40121. source: "./media/characters/tawendeh/front-clothed.svg",
  40122. extra: 2365/2268,
  40123. bottom: 83/2448
  40124. }
  40125. },
  40126. back: {
  40127. height: math.unit(8, "feet"),
  40128. weight: math.unit(553, "lb"),
  40129. name: "Back",
  40130. image: {
  40131. source: "./media/characters/tawendeh/back.svg",
  40132. extra: 2397/2294,
  40133. bottom: 42/2439
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Mortal Interaction",
  40140. height: math.unit(8, "feet"),
  40141. default: true
  40142. },
  40143. {
  40144. name: "Giant",
  40145. height: math.unit(80, "feet")
  40146. },
  40147. {
  40148. name: "Macro",
  40149. height: math.unit(800, "feet")
  40150. },
  40151. {
  40152. name: "Megamacro",
  40153. height: math.unit(8000, "feet")
  40154. },
  40155. {
  40156. name: "City-Crushing",
  40157. height: math.unit(24000, "feet")
  40158. },
  40159. {
  40160. name: "Mountain-Mashing",
  40161. height: math.unit(80000, "feet")
  40162. },
  40163. {
  40164. name: "Nation Nemesis",
  40165. height: math.unit(8e6, "feet")
  40166. },
  40167. {
  40168. name: "Continent Cracker",
  40169. height: math.unit(24e6, "feet")
  40170. },
  40171. {
  40172. name: "Earth-Eclipsing",
  40173. height: math.unit(2.4e8, "feet")
  40174. },
  40175. {
  40176. name: "Gas Giant Gulper",
  40177. height: math.unit(2.4e9, "feet")
  40178. },
  40179. {
  40180. name: "Sol-Swallowing",
  40181. height: math.unit(8e10, "feet")
  40182. },
  40183. {
  40184. name: "Galaxy Gulper",
  40185. height: math.unit(8, "galaxies")
  40186. },
  40187. {
  40188. name: "Cosmos Churner",
  40189. height: math.unit(8, "universes")
  40190. },
  40191. {
  40192. name: "Omnipotent Otter",
  40193. height: math.unit(80, "universes")
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(2.6, "meters"),
  40202. weight: math.unit(900, "kg"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/neesha/front.svg",
  40206. extra: 1803/1653,
  40207. bottom: 128/1931
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(2.6, "meters"),
  40215. default: true
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(50, "meters")
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(5, "feet"),
  40228. weight: math.unit(185, "lb"),
  40229. name: "Front",
  40230. image: {
  40231. source: "./media/characters/kyera/front.svg",
  40232. extra: 1875/1790,
  40233. bottom: 96/1971
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(5, "feet"),
  40241. default: true
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(7 + 6/12, "feet"),
  40250. weight: math.unit(540, "lb"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/yuko/front.svg",
  40254. extra: 1282/1222,
  40255. bottom: 101/1383
  40256. }
  40257. },
  40258. frontClothed: {
  40259. height: math.unit(7 + 6/12, "feet"),
  40260. weight: math.unit(540, "lb"),
  40261. name: "Front (Clothed)",
  40262. image: {
  40263. source: "./media/characters/yuko/front-clothed.svg",
  40264. extra: 1282/1222,
  40265. bottom: 101/1383
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(7 + 6/12, "feet"),
  40273. default: true
  40274. },
  40275. {
  40276. name: "Macro",
  40277. height: math.unit(26 + 9/12, "feet")
  40278. },
  40279. {
  40280. name: "Megamacro",
  40281. height: math.unit(300, "feet")
  40282. },
  40283. {
  40284. name: "Gigamacro",
  40285. height: math.unit(5000, "feet")
  40286. },
  40287. {
  40288. name: "Planetary",
  40289. height: math.unit(10000, "miles")
  40290. },
  40291. ]
  40292. ))
  40293. characterMakers.push(() => makeCharacter(
  40294. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40295. {
  40296. front: {
  40297. height: math.unit(8 + 2/12, "feet"),
  40298. weight: math.unit(600, "lb"),
  40299. name: "Front",
  40300. image: {
  40301. source: "./media/characters/deam-nitrel/front.svg",
  40302. extra: 1308/1234,
  40303. bottom: 125/1433
  40304. }
  40305. },
  40306. },
  40307. [
  40308. {
  40309. name: "Normal",
  40310. height: math.unit(8 + 2/12, "feet"),
  40311. default: true
  40312. },
  40313. ]
  40314. ))
  40315. characterMakers.push(() => makeCharacter(
  40316. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40317. {
  40318. front: {
  40319. height: math.unit(6.1, "feet"),
  40320. weight: math.unit(180, "lb"),
  40321. name: "Front",
  40322. image: {
  40323. source: "./media/characters/skyress/front.svg",
  40324. extra: 1045/915,
  40325. bottom: 28/1073
  40326. }
  40327. },
  40328. maw: {
  40329. height: math.unit(1, "feet"),
  40330. name: "Maw",
  40331. image: {
  40332. source: "./media/characters/skyress/maw.svg"
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(6.1, "feet"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "Macro",
  40344. height: math.unit(200, "feet")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(4 + 2/12, "feet"),
  40353. weight: math.unit(40, "kg"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/amethyst-jones/front.svg",
  40357. extra: 1220/1150,
  40358. bottom: 101/1321
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(4 + 2/12, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(1.7, "m"),
  40375. weight: math.unit(135, "lb"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/jade/front.svg",
  40379. extra: 1818/1767,
  40380. bottom: 32/1850
  40381. }
  40382. },
  40383. back: {
  40384. height: math.unit(1.7, "m"),
  40385. weight: math.unit(135, "lb"),
  40386. name: "Back",
  40387. image: {
  40388. source: "./media/characters/jade/back.svg",
  40389. extra: 1869/1809,
  40390. bottom: 35/1904
  40391. }
  40392. },
  40393. hand: {
  40394. height: math.unit(0.24, "m"),
  40395. name: "Hand",
  40396. image: {
  40397. source: "./media/characters/jade/hand.svg"
  40398. }
  40399. },
  40400. foot: {
  40401. height: math.unit(0.263, "m"),
  40402. name: "Foot",
  40403. image: {
  40404. source: "./media/characters/jade/foot.svg"
  40405. }
  40406. },
  40407. dick: {
  40408. height: math.unit(0.47, "m"),
  40409. name: "Dick",
  40410. image: {
  40411. source: "./media/characters/jade/dick.svg"
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Micro",
  40418. height: math.unit(22, "cm")
  40419. },
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(1.7, "m"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(152, "m")
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(100, "miles"),
  40436. weight: math.unit(20000, "tons"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/cookie/front.svg",
  40440. extra: 1125/1070,
  40441. bottom: 30/1155
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Big",
  40448. height: math.unit(50, "feet")
  40449. },
  40450. {
  40451. name: "Macro",
  40452. height: math.unit(100, "miles"),
  40453. default: true
  40454. },
  40455. {
  40456. name: "Megamacro",
  40457. height: math.unit(90000, "miles")
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(6, "feet"),
  40466. weight: math.unit(145, "lb"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/farzian/front.svg",
  40470. extra: 1902/1693,
  40471. bottom: 108/2010
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Macro",
  40478. height: math.unit(500, "feet"),
  40479. default: true
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40485. {
  40486. front: {
  40487. height: math.unit(3 + 6/12, "feet"),
  40488. weight: math.unit(50, "lb"),
  40489. name: "Front",
  40490. image: {
  40491. source: "./media/characters/kimberly-tilson/front.svg",
  40492. extra: 1400/1322,
  40493. bottom: 36/1436
  40494. }
  40495. },
  40496. back: {
  40497. height: math.unit(3 + 6/12, "feet"),
  40498. weight: math.unit(50, "lb"),
  40499. name: "Back",
  40500. image: {
  40501. source: "./media/characters/kimberly-tilson/back.svg",
  40502. extra: 1370/1307,
  40503. bottom: 20/1390
  40504. }
  40505. },
  40506. },
  40507. [
  40508. {
  40509. name: "Normal",
  40510. height: math.unit(3 + 6/12, "feet"),
  40511. default: true
  40512. },
  40513. ]
  40514. ))
  40515. characterMakers.push(() => makeCharacter(
  40516. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40517. {
  40518. front: {
  40519. height: math.unit(1148, "feet"),
  40520. weight: math.unit(34057, "lb"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/harthos/front.svg",
  40524. extra: 1391/1339,
  40525. bottom: 13/1404
  40526. }
  40527. },
  40528. },
  40529. [
  40530. {
  40531. name: "Macro",
  40532. height: math.unit(1148, "feet"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(15, "feet"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/hypatia/front.svg",
  40545. extra: 1653/1591,
  40546. bottom: 79/1732
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Normal",
  40553. height: math.unit(15, "feet")
  40554. },
  40555. {
  40556. name: "Small",
  40557. height: math.unit(300, "feet")
  40558. },
  40559. {
  40560. name: "Macro",
  40561. height: math.unit(2500, "feet"),
  40562. default: true
  40563. },
  40564. {
  40565. name: "Mega Macro",
  40566. height: math.unit(1500, "miles")
  40567. },
  40568. {
  40569. name: "Giga Macro",
  40570. height: math.unit(1.5e6, "miles")
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(6, "feet"),
  40579. weight: math.unit(200, "lb"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/wulver/front.svg",
  40583. extra: 1724/1632,
  40584. bottom: 130/1854
  40585. }
  40586. },
  40587. frontNsfw: {
  40588. height: math.unit(6, "feet"),
  40589. weight: math.unit(200, "lb"),
  40590. name: "Front (NSFW)",
  40591. image: {
  40592. source: "./media/characters/wulver/front-nsfw.svg",
  40593. extra: 1724/1632,
  40594. bottom: 130/1854
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Human-Sized",
  40601. height: math.unit(6, "feet")
  40602. },
  40603. {
  40604. name: "Normal",
  40605. height: math.unit(4, "meters"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Large",
  40610. height: math.unit(6, "m")
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40616. {
  40617. front: {
  40618. height: math.unit(7, "feet"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/maru/front.svg",
  40622. extra: 1595/1570,
  40623. bottom: 0/1595
  40624. }
  40625. },
  40626. },
  40627. [
  40628. {
  40629. name: "Normal",
  40630. height: math.unit(7, "feet"),
  40631. default: true
  40632. },
  40633. {
  40634. name: "Macro",
  40635. height: math.unit(700, "feet")
  40636. },
  40637. {
  40638. name: "Mega Macro",
  40639. height: math.unit(25, "miles")
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40645. {
  40646. front: {
  40647. height: math.unit(6, "feet"),
  40648. weight: math.unit(170, "lb"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/xenon/front.svg",
  40652. extra: 1376/1305,
  40653. bottom: 56/1432
  40654. }
  40655. },
  40656. back: {
  40657. height: math.unit(6, "feet"),
  40658. weight: math.unit(170, "lb"),
  40659. name: "Back",
  40660. image: {
  40661. source: "./media/characters/xenon/back.svg",
  40662. extra: 1328/1259,
  40663. bottom: 95/1423
  40664. }
  40665. },
  40666. maw: {
  40667. height: math.unit(0.52, "feet"),
  40668. name: "Maw",
  40669. image: {
  40670. source: "./media/characters/xenon/maw.svg"
  40671. }
  40672. },
  40673. hand: {
  40674. height: math.unit(0.82, "feet"),
  40675. name: "Hand",
  40676. image: {
  40677. source: "./media/characters/xenon/hand.svg"
  40678. }
  40679. },
  40680. foot: {
  40681. height: math.unit(1.13, "feet"),
  40682. name: "Foot",
  40683. image: {
  40684. source: "./media/characters/xenon/foot.svg"
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Micro",
  40691. height: math.unit(0.8, "inches")
  40692. },
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(6, "feet")
  40696. },
  40697. {
  40698. name: "Macro",
  40699. height: math.unit(50, "feet"),
  40700. default: true
  40701. },
  40702. {
  40703. name: "Macro+",
  40704. height: math.unit(250, "feet")
  40705. },
  40706. {
  40707. name: "Megamacro",
  40708. height: math.unit(1500, "feet")
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(7 + 5/12, "feet"),
  40717. name: "Front",
  40718. image: {
  40719. source: "./media/characters/zane/front.svg",
  40720. extra: 1260/1203,
  40721. bottom: 94/1354
  40722. }
  40723. },
  40724. back: {
  40725. height: math.unit(5.05, "feet"),
  40726. name: "Back",
  40727. image: {
  40728. source: "./media/characters/zane/back.svg",
  40729. extra: 893/829,
  40730. bottom: 30/923
  40731. }
  40732. },
  40733. werewolf: {
  40734. height: math.unit(11, "feet"),
  40735. name: "Werewolf",
  40736. image: {
  40737. source: "./media/characters/zane/werewolf.svg",
  40738. extra: 1383/1323,
  40739. bottom: 89/1472
  40740. }
  40741. },
  40742. foot: {
  40743. height: math.unit(1.46, "feet"),
  40744. name: "Foot",
  40745. image: {
  40746. source: "./media/characters/zane/foot.svg"
  40747. }
  40748. },
  40749. footFront: {
  40750. height: math.unit(0.784, "feet"),
  40751. name: "Foot (Front)",
  40752. image: {
  40753. source: "./media/characters/zane/foot-front.svg"
  40754. }
  40755. },
  40756. dick: {
  40757. height: math.unit(1.95, "feet"),
  40758. name: "Dick",
  40759. image: {
  40760. source: "./media/characters/zane/dick.svg"
  40761. }
  40762. },
  40763. dickWerewolf: {
  40764. height: math.unit(3.77, "feet"),
  40765. name: "Dick (Werewolf)",
  40766. image: {
  40767. source: "./media/characters/zane/dick.svg"
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Normal",
  40774. height: math.unit(7 + 5/12, "feet"),
  40775. default: true
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(6 + 2/12, "feet"),
  40784. weight: math.unit(284, "lb"),
  40785. name: "Front",
  40786. image: {
  40787. source: "./media/characters/benni-desparque/front.svg",
  40788. extra: 1353/1126,
  40789. bottom: 69/1422
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Civilian",
  40796. height: math.unit(6 + 2/12, "feet")
  40797. },
  40798. {
  40799. name: "Normal",
  40800. height: math.unit(98, "feet"),
  40801. default: true
  40802. },
  40803. {
  40804. name: "Kaiju Fighter",
  40805. height: math.unit(268, "feet")
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(5, "feet"),
  40814. weight: math.unit(105, "lb"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/maxine/front.svg",
  40818. extra: 1386/1250,
  40819. bottom: 71/1457
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(5, "feet"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(11 + 7/12, "feet"),
  40836. weight: math.unit(9576, "lb"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/scaly/front.svg",
  40840. extra: 888/867,
  40841. bottom: 36/924
  40842. }
  40843. },
  40844. },
  40845. [
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(11 + 7/12, "feet"),
  40849. default: true
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40855. {
  40856. front: {
  40857. height: math.unit(6 + 3/12, "feet"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/saelria/front.svg",
  40861. extra: 1243/1138,
  40862. bottom: 46/1289
  40863. }
  40864. },
  40865. },
  40866. [
  40867. {
  40868. name: "Micro",
  40869. height: math.unit(6, "inches"),
  40870. },
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(6 + 3/12, "feet"),
  40874. default: true
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(25, "feet")
  40879. },
  40880. ]
  40881. ))
  40882. characterMakers.push(() => makeCharacter(
  40883. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40884. {
  40885. front: {
  40886. height: math.unit(80, "meters"),
  40887. weight: math.unit(7000, "tonnes"),
  40888. name: "Front",
  40889. image: {
  40890. source: "./media/characters/tef/front.svg",
  40891. extra: 2036/1991,
  40892. bottom: 54/2090
  40893. }
  40894. },
  40895. back: {
  40896. height: math.unit(80, "meters"),
  40897. weight: math.unit(7000, "tonnes"),
  40898. name: "Back",
  40899. image: {
  40900. source: "./media/characters/tef/back.svg",
  40901. extra: 2036/1991,
  40902. bottom: 54/2090
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Macro",
  40909. height: math.unit(80, "meters"),
  40910. default: true
  40911. },
  40912. ]
  40913. ))
  40914. characterMakers.push(() => makeCharacter(
  40915. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40916. {
  40917. front: {
  40918. height: math.unit(13, "feet"),
  40919. weight: math.unit(6, "tons"),
  40920. name: "Front",
  40921. image: {
  40922. source: "./media/characters/rover/front.svg",
  40923. extra: 1233/1156,
  40924. bottom: 50/1283
  40925. }
  40926. },
  40927. back: {
  40928. height: math.unit(13, "feet"),
  40929. weight: math.unit(6, "tons"),
  40930. name: "Back",
  40931. image: {
  40932. source: "./media/characters/rover/back.svg",
  40933. extra: 1327/1258,
  40934. bottom: 39/1366
  40935. }
  40936. },
  40937. },
  40938. [
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(13, "feet"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "Macro",
  40946. height: math.unit(1300, "feet")
  40947. },
  40948. {
  40949. name: "Megamacro",
  40950. height: math.unit(1300, "miles")
  40951. },
  40952. {
  40953. name: "Gigamacro",
  40954. height: math.unit(1300000, "miles")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(6, "feet"),
  40963. weight: math.unit(150, "lb"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/ariz/front.svg",
  40967. extra: 1401/1346,
  40968. bottom: 5/1406
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Normal",
  40975. height: math.unit(10, "feet"),
  40976. default: true
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(6, "feet"),
  40985. weight: math.unit(140, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/sigrun/front.svg",
  40989. extra: 1418/1359,
  40990. bottom: 27/1445
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(35, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(6, "feet"),
  41007. weight: math.unit(150, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/numin/front.svg",
  41011. extra: 1433/1388,
  41012. bottom: 12/1445
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Macro",
  41019. height: math.unit(21.5, "km"),
  41020. default: true
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41026. {
  41027. front: {
  41028. height: math.unit(6, "feet"),
  41029. weight: math.unit(463, "lb"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/melwa/front.svg",
  41033. extra: 1307/1248,
  41034. bottom: 93/1400
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Macro",
  41041. height: math.unit(50, "meters"),
  41042. default: true
  41043. },
  41044. ]
  41045. ))
  41046. characterMakers.push(() => makeCharacter(
  41047. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41048. {
  41049. front: {
  41050. height: math.unit(325, "feet"),
  41051. name: "Front",
  41052. image: {
  41053. source: "./media/characters/zorkaiju/front.svg",
  41054. extra: 1955/1814,
  41055. bottom: 40/1995
  41056. }
  41057. },
  41058. frontExtended: {
  41059. height: math.unit(325, "feet"),
  41060. name: "Front (Extended)",
  41061. image: {
  41062. source: "./media/characters/zorkaiju/front-extended.svg",
  41063. extra: 1955/1814,
  41064. bottom: 40/1995
  41065. }
  41066. },
  41067. side: {
  41068. height: math.unit(325, "feet"),
  41069. name: "Side",
  41070. image: {
  41071. source: "./media/characters/zorkaiju/side.svg",
  41072. extra: 1495/1396,
  41073. bottom: 17/1512
  41074. }
  41075. },
  41076. sideExtended: {
  41077. height: math.unit(325, "feet"),
  41078. name: "Side (Extended)",
  41079. image: {
  41080. source: "./media/characters/zorkaiju/side-extended.svg",
  41081. extra: 1495/1396,
  41082. bottom: 17/1512
  41083. }
  41084. },
  41085. back: {
  41086. height: math.unit(325, "feet"),
  41087. name: "Back",
  41088. image: {
  41089. source: "./media/characters/zorkaiju/back.svg",
  41090. extra: 1959/1821,
  41091. bottom: 31/1990
  41092. }
  41093. },
  41094. backExtended: {
  41095. height: math.unit(325, "feet"),
  41096. name: "Back (Extended)",
  41097. image: {
  41098. source: "./media/characters/zorkaiju/back-extended.svg",
  41099. extra: 1959/1821,
  41100. bottom: 31/1990
  41101. }
  41102. },
  41103. hand: {
  41104. height: math.unit(58.4, "feet"),
  41105. name: "Hand",
  41106. image: {
  41107. source: "./media/characters/zorkaiju/hand.svg"
  41108. }
  41109. },
  41110. handExtended: {
  41111. height: math.unit(61.4, "feet"),
  41112. name: "Hand (Extended)",
  41113. image: {
  41114. source: "./media/characters/zorkaiju/hand-extended.svg"
  41115. }
  41116. },
  41117. foot: {
  41118. height: math.unit(95, "feet"),
  41119. name: "Foot",
  41120. image: {
  41121. source: "./media/characters/zorkaiju/foot.svg"
  41122. }
  41123. },
  41124. leftArm: {
  41125. height: math.unit(59, "feet"),
  41126. name: "Left Arm",
  41127. image: {
  41128. source: "./media/characters/zorkaiju/left-arm.svg"
  41129. }
  41130. },
  41131. rightArm: {
  41132. height: math.unit(59, "feet"),
  41133. name: "Right Arm",
  41134. image: {
  41135. source: "./media/characters/zorkaiju/right-arm.svg"
  41136. }
  41137. },
  41138. tail: {
  41139. height: math.unit(104, "feet"),
  41140. name: "Tail",
  41141. image: {
  41142. source: "./media/characters/zorkaiju/tail.svg"
  41143. }
  41144. },
  41145. tailExtended: {
  41146. height: math.unit(104, "feet"),
  41147. name: "Tail (Extended)",
  41148. image: {
  41149. source: "./media/characters/zorkaiju/tail-extended.svg"
  41150. }
  41151. },
  41152. tailBottom: {
  41153. height: math.unit(104, "feet"),
  41154. name: "Tail Bottom",
  41155. image: {
  41156. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41157. }
  41158. },
  41159. crystal: {
  41160. height: math.unit(27.54, "feet"),
  41161. name: "Crystal",
  41162. image: {
  41163. source: "./media/characters/zorkaiju/crystal.svg"
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Kaiju",
  41170. height: math.unit(325, "feet"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(6 + 1/12, "feet"),
  41180. weight: math.unit(115, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/bailey-belfry/front.svg",
  41184. extra: 1240/1121,
  41185. bottom: 101/1341
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(6 + 1/12, "feet"),
  41193. default: true
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41199. {
  41200. side: {
  41201. height: math.unit(4, "meters"),
  41202. weight: math.unit(250, "kg"),
  41203. name: "Side",
  41204. image: {
  41205. source: "./media/characters/blacky/side.svg",
  41206. extra: 1027/919,
  41207. bottom: 43/1070
  41208. }
  41209. },
  41210. maw: {
  41211. height: math.unit(1, "meters"),
  41212. name: "Maw",
  41213. image: {
  41214. source: "./media/characters/blacky/maw.svg"
  41215. }
  41216. },
  41217. paw: {
  41218. height: math.unit(1, "meters"),
  41219. name: "Paw",
  41220. image: {
  41221. source: "./media/characters/blacky/paw.svg"
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Normal",
  41228. height: math.unit(4, "meters"),
  41229. default: true
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(170, "cm"),
  41238. weight: math.unit(66, "kg"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/thux-ei/front.svg",
  41242. extra: 1109/1011,
  41243. bottom: 8/1117
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Normal",
  41250. height: math.unit(170, "cm"),
  41251. default: true
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(5, "feet"),
  41260. weight: math.unit(120, "lb"),
  41261. name: "Front",
  41262. image: {
  41263. source: "./media/characters/roxanne-voltaire/front.svg",
  41264. extra: 1901/1779,
  41265. bottom: 53/1954
  41266. }
  41267. },
  41268. },
  41269. [
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(5, "feet"),
  41273. default: true
  41274. },
  41275. {
  41276. name: "Giant",
  41277. height: math.unit(50, "feet")
  41278. },
  41279. {
  41280. name: "Titan",
  41281. height: math.unit(500, "feet")
  41282. },
  41283. {
  41284. name: "Macro",
  41285. height: math.unit(5000, "feet")
  41286. },
  41287. {
  41288. name: "Megamacro",
  41289. height: math.unit(50000, "feet")
  41290. },
  41291. {
  41292. name: "Gigamacro",
  41293. height: math.unit(500000, "feet")
  41294. },
  41295. {
  41296. name: "Teramacro",
  41297. height: math.unit(5e6, "feet")
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(6 + 2/12, "feet"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/squeaks/front.svg",
  41309. extra: 1823/1768,
  41310. bottom: 138/1961
  41311. }
  41312. },
  41313. },
  41314. [
  41315. {
  41316. name: "Micro",
  41317. height: math.unit(0.5, "inches")
  41318. },
  41319. {
  41320. name: "Normal",
  41321. height: math.unit(6 + 2/12, "feet"),
  41322. default: true
  41323. },
  41324. {
  41325. name: "Macro",
  41326. height: math.unit(600, "feet")
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41332. {
  41333. front: {
  41334. height: math.unit(1.72, "meters"),
  41335. name: "Front",
  41336. image: {
  41337. source: "./media/characters/archinger/front.svg",
  41338. extra: 1861/1675,
  41339. bottom: 125/1986
  41340. }
  41341. },
  41342. back: {
  41343. height: math.unit(1.72, "meters"),
  41344. name: "Back",
  41345. image: {
  41346. source: "./media/characters/archinger/back.svg",
  41347. extra: 1844/1701,
  41348. bottom: 104/1948
  41349. }
  41350. },
  41351. cock: {
  41352. height: math.unit(0.59, "feet"),
  41353. name: "Cock",
  41354. image: {
  41355. source: "./media/characters/archinger/cock.svg"
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(1.72, "meters"),
  41363. default: true
  41364. },
  41365. {
  41366. name: "Macro",
  41367. height: math.unit(84, "meters")
  41368. },
  41369. {
  41370. name: "Macro+",
  41371. height: math.unit(112, "meters")
  41372. },
  41373. {
  41374. name: "Macro++",
  41375. height: math.unit(960, "meters")
  41376. },
  41377. {
  41378. name: "Macro+++",
  41379. height: math.unit(4, "km")
  41380. },
  41381. {
  41382. name: "Macro++++",
  41383. height: math.unit(48, "km")
  41384. },
  41385. {
  41386. name: "Macro+++++",
  41387. height: math.unit(4500, "km")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(5 + 5/12, "feet"),
  41396. name: "Front",
  41397. image: {
  41398. source: "./media/characters/alsnapz/front.svg",
  41399. extra: 1157/1065,
  41400. bottom: 42/1199
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(5 + 5/12, "feet"),
  41408. default: true
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41414. {
  41415. side: {
  41416. height: math.unit(3.2, "earths"),
  41417. name: "Side",
  41418. image: {
  41419. source: "./media/characters/mag/side.svg",
  41420. extra: 1331/1008,
  41421. bottom: 52/1383
  41422. }
  41423. },
  41424. wing: {
  41425. height: math.unit(1.94, "earths"),
  41426. name: "Wing",
  41427. image: {
  41428. source: "./media/characters/mag/wing.svg"
  41429. }
  41430. },
  41431. dick: {
  41432. height: math.unit(1.8, "earths"),
  41433. name: "Dick",
  41434. image: {
  41435. source: "./media/characters/mag/dick.svg"
  41436. }
  41437. },
  41438. ass: {
  41439. height: math.unit(1.33, "earths"),
  41440. name: "Ass",
  41441. image: {
  41442. source: "./media/characters/mag/ass.svg"
  41443. }
  41444. },
  41445. head: {
  41446. height: math.unit(1.1, "earths"),
  41447. name: "Head",
  41448. image: {
  41449. source: "./media/characters/mag/head.svg"
  41450. }
  41451. },
  41452. maw: {
  41453. height: math.unit(1.62, "earths"),
  41454. name: "Maw",
  41455. image: {
  41456. source: "./media/characters/mag/maw.svg"
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Small",
  41463. height: math.unit(162, "feet")
  41464. },
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(3.2, "earths"),
  41468. default: true
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41474. {
  41475. front: {
  41476. height: math.unit(512, "feet"),
  41477. weight: math.unit(63509, "tonnes"),
  41478. name: "Front",
  41479. image: {
  41480. source: "./media/characters/vorrel-harroc/front.svg",
  41481. extra: 1075/1063,
  41482. bottom: 62/1137
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(10, "feet")
  41490. },
  41491. {
  41492. name: "Macro",
  41493. height: math.unit(512, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Megamacro",
  41498. height: math.unit(256, "miles")
  41499. },
  41500. {
  41501. name: "Gigamacro",
  41502. height: math.unit(4096, "miles")
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41508. {
  41509. side: {
  41510. height: math.unit(50, "feet"),
  41511. name: "Side",
  41512. image: {
  41513. source: "./media/characters/froimar/side.svg",
  41514. extra: 855/638,
  41515. bottom: 99/954
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Macro",
  41522. height: math.unit(50, "feet"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(210, "miles"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/timothy/front.svg",
  41535. extra: 1007/943,
  41536. bottom: 62/1069
  41537. }
  41538. },
  41539. frontSkirt: {
  41540. height: math.unit(210, "miles"),
  41541. name: "Front (Skirt)",
  41542. image: {
  41543. source: "./media/characters/timothy/front-skirt.svg",
  41544. extra: 1007/943,
  41545. bottom: 62/1069
  41546. }
  41547. },
  41548. frontCoat: {
  41549. height: math.unit(210, "miles"),
  41550. name: "Front (Coat)",
  41551. image: {
  41552. source: "./media/characters/timothy/front-coat.svg",
  41553. extra: 1007/943,
  41554. bottom: 62/1069
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Macro",
  41561. height: math.unit(210, "miles"),
  41562. default: true
  41563. },
  41564. {
  41565. name: "Megamacro",
  41566. height: math.unit(210000, "miles")
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(188, "feet"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/pyotr/front.svg",
  41578. extra: 1912/1826,
  41579. bottom: 18/1930
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Macro",
  41586. height: math.unit(188, "feet"),
  41587. default: true
  41588. },
  41589. {
  41590. name: "Megamacro",
  41591. height: math.unit(8, "miles")
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41597. {
  41598. side: {
  41599. height: math.unit(10, "feet"),
  41600. weight: math.unit(4500, "lb"),
  41601. name: "Side",
  41602. image: {
  41603. source: "./media/characters/ackart/side.svg",
  41604. extra: 1776/1668,
  41605. bottom: 116/1892
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(10, "feet"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41619. {
  41620. side: {
  41621. height: math.unit(21, "feet"),
  41622. name: "Side",
  41623. image: {
  41624. source: "./media/characters/nolow/side.svg",
  41625. extra: 1484/1434,
  41626. bottom: 85/1569
  41627. }
  41628. },
  41629. sideErect: {
  41630. height: math.unit(21, "feet"),
  41631. name: "Side-erect",
  41632. image: {
  41633. source: "./media/characters/nolow/side-erect.svg",
  41634. extra: 1484/1434,
  41635. bottom: 85/1569
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Regular",
  41642. height: math.unit(12, "feet")
  41643. },
  41644. {
  41645. name: "Big Chee",
  41646. height: math.unit(21, "feet"),
  41647. default: true
  41648. },
  41649. ]
  41650. ))
  41651. characterMakers.push(() => makeCharacter(
  41652. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41653. {
  41654. front: {
  41655. height: math.unit(7, "feet"),
  41656. weight: math.unit(250, "lb"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/nines/front.svg",
  41660. extra: 1741/1607,
  41661. bottom: 41/1782
  41662. }
  41663. },
  41664. side: {
  41665. height: math.unit(7, "feet"),
  41666. weight: math.unit(250, "lb"),
  41667. name: "Side",
  41668. image: {
  41669. source: "./media/characters/nines/side.svg",
  41670. extra: 1854/1735,
  41671. bottom: 93/1947
  41672. }
  41673. },
  41674. back: {
  41675. height: math.unit(7, "feet"),
  41676. weight: math.unit(250, "lb"),
  41677. name: "Back",
  41678. image: {
  41679. source: "./media/characters/nines/back.svg",
  41680. extra: 1748/1615,
  41681. bottom: 20/1768
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Megamacro",
  41688. height: math.unit(99, "km"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(5 + 10/12, "feet"),
  41698. weight: math.unit(210, "lb"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/zenith/front.svg",
  41702. extra: 1531/1452,
  41703. bottom: 198/1729
  41704. }
  41705. },
  41706. back: {
  41707. height: math.unit(5 + 10/12, "feet"),
  41708. weight: math.unit(210, "lb"),
  41709. name: "Back",
  41710. image: {
  41711. source: "./media/characters/zenith/back.svg",
  41712. extra: 1571/1487,
  41713. bottom: 75/1646
  41714. }
  41715. },
  41716. },
  41717. [
  41718. {
  41719. name: "Normal",
  41720. height: math.unit(5 + 10/12, "feet"),
  41721. default: true
  41722. }
  41723. ]
  41724. ))
  41725. characterMakers.push(() => makeCharacter(
  41726. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41727. {
  41728. front: {
  41729. height: math.unit(4, "feet"),
  41730. weight: math.unit(60, "lb"),
  41731. name: "Front",
  41732. image: {
  41733. source: "./media/characters/jasper/front.svg",
  41734. extra: 1450/1379,
  41735. bottom: 19/1469
  41736. }
  41737. },
  41738. },
  41739. [
  41740. {
  41741. name: "Normal",
  41742. height: math.unit(4, "feet"),
  41743. default: true
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(6 + 5/12, "feet"),
  41752. weight: math.unit(290, "lb"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/tiberius-thyben/front.svg",
  41756. extra: 757/739,
  41757. bottom: 39/796
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Micro",
  41764. height: math.unit(1.5, "inches")
  41765. },
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(6 + 5/12, "feet"),
  41769. default: true
  41770. },
  41771. {
  41772. name: "Macro",
  41773. height: math.unit(300, "feet")
  41774. },
  41775. ]
  41776. ))
  41777. characterMakers.push(() => makeCharacter(
  41778. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41779. {
  41780. front: {
  41781. height: math.unit(5 + 6/12, "feet"),
  41782. weight: math.unit(60, "kg"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/sabre/front.svg",
  41786. extra: 738/671,
  41787. bottom: 27/765
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Teeny",
  41794. height: math.unit(2, "inches")
  41795. },
  41796. {
  41797. name: "Smol",
  41798. height: math.unit(8, "inches")
  41799. },
  41800. {
  41801. name: "Normal",
  41802. height: math.unit(5 + 6/12, "feet"),
  41803. default: true
  41804. },
  41805. {
  41806. name: "Mini-Macro",
  41807. height: math.unit(15, "feet")
  41808. },
  41809. {
  41810. name: "Macro",
  41811. height: math.unit(50, "feet")
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(6 + 4/12, "feet"),
  41820. weight: math.unit(170, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/charlie/front.svg",
  41824. extra: 1348/1228,
  41825. bottom: 15/1363
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Macro",
  41832. height: math.unit(1700, "meters"),
  41833. default: true
  41834. },
  41835. {
  41836. name: "MegaMacro",
  41837. height: math.unit(20400, "meters")
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(6 + 3/12, "feet"),
  41846. weight: math.unit(185, "lb"),
  41847. name: "Front",
  41848. image: {
  41849. source: "./media/characters/susan-grant/front.svg",
  41850. extra: 1351/1327,
  41851. bottom: 26/1377
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(6 + 3/12, "feet"),
  41859. default: true
  41860. },
  41861. {
  41862. name: "Macro",
  41863. height: math.unit(225, "feet")
  41864. },
  41865. {
  41866. name: "Macro+",
  41867. height: math.unit(900, "feet")
  41868. },
  41869. {
  41870. name: "MegaMacro",
  41871. height: math.unit(14400, "feet")
  41872. },
  41873. ]
  41874. ))
  41875. characterMakers.push(() => makeCharacter(
  41876. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41877. {
  41878. front: {
  41879. height: math.unit(5 + 4/12, "feet"),
  41880. weight: math.unit(110, "lb"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/axel-isanov/front.svg",
  41884. extra: 1096/1065,
  41885. bottom: 13/1109
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(5 + 4/12, "feet"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(9, "feet"),
  41902. weight: math.unit(467, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/necahual/front.svg",
  41906. extra: 920/873,
  41907. bottom: 26/946
  41908. }
  41909. },
  41910. back: {
  41911. height: math.unit(9, "feet"),
  41912. weight: math.unit(467, "lb"),
  41913. name: "Back",
  41914. image: {
  41915. source: "./media/characters/necahual/back.svg",
  41916. extra: 930/884,
  41917. bottom: 16/946
  41918. }
  41919. },
  41920. frontUnderwear: {
  41921. height: math.unit(9, "feet"),
  41922. weight: math.unit(467, "lb"),
  41923. name: "Front (Underwear)",
  41924. image: {
  41925. source: "./media/characters/necahual/front-underwear.svg",
  41926. extra: 920/873,
  41927. bottom: 26/946
  41928. }
  41929. },
  41930. frontDressed: {
  41931. height: math.unit(9, "feet"),
  41932. weight: math.unit(467, "lb"),
  41933. name: "Front (Dressed)",
  41934. image: {
  41935. source: "./media/characters/necahual/front-dressed.svg",
  41936. extra: 920/873,
  41937. bottom: 26/946
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Comprsesed",
  41944. height: math.unit(9, "feet")
  41945. },
  41946. {
  41947. name: "Natural",
  41948. height: math.unit(15, "feet"),
  41949. default: true
  41950. },
  41951. {
  41952. name: "Boosted",
  41953. height: math.unit(50, "feet")
  41954. },
  41955. {
  41956. name: "Boosted+",
  41957. height: math.unit(150, "feet")
  41958. },
  41959. {
  41960. name: "Max",
  41961. height: math.unit(500, "feet")
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(22 + 1/12, "feet"),
  41970. weight: math.unit(3200, "lb"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/theo-acacia/front.svg",
  41974. extra: 1796/1741,
  41975. bottom: 83/1879
  41976. }
  41977. },
  41978. frontUnderwear: {
  41979. height: math.unit(22 + 1/12, "feet"),
  41980. weight: math.unit(3200, "lb"),
  41981. name: "Front (Underwear)",
  41982. image: {
  41983. source: "./media/characters/theo-acacia/front-underwear.svg",
  41984. extra: 1796/1741,
  41985. bottom: 83/1879
  41986. }
  41987. },
  41988. frontNude: {
  41989. height: math.unit(22 + 1/12, "feet"),
  41990. weight: math.unit(3200, "lb"),
  41991. name: "Front (Nude)",
  41992. image: {
  41993. source: "./media/characters/theo-acacia/front-nude.svg",
  41994. extra: 1796/1741,
  41995. bottom: 83/1879
  41996. }
  41997. },
  41998. },
  41999. [
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(22 + 1/12, "feet"),
  42003. default: true
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42009. {
  42010. front: {
  42011. height: math.unit(20, "feet"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/astra/front.svg",
  42015. extra: 1850/1714,
  42016. bottom: 106/1956
  42017. }
  42018. },
  42019. frontUndressed: {
  42020. height: math.unit(20, "feet"),
  42021. name: "Front (Undressed)",
  42022. image: {
  42023. source: "./media/characters/astra/front-undressed.svg",
  42024. extra: 1926/1749,
  42025. bottom: 0/1926
  42026. }
  42027. },
  42028. hand: {
  42029. height: math.unit(1.53, "feet"),
  42030. name: "Hand",
  42031. image: {
  42032. source: "./media/characters/astra/hand.svg"
  42033. }
  42034. },
  42035. paw: {
  42036. height: math.unit(1.53, "feet"),
  42037. name: "Paw",
  42038. image: {
  42039. source: "./media/characters/astra/paw.svg"
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Smallest",
  42046. height: math.unit(20, "feet")
  42047. },
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(1e9, "miles"),
  42051. default: true
  42052. },
  42053. {
  42054. name: "Larger",
  42055. height: math.unit(5, "multiverses")
  42056. },
  42057. {
  42058. name: "Largest",
  42059. height: math.unit(1e9, "multiverses")
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(8, "feet"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/breanna/front.svg",
  42071. extra: 1912/1632,
  42072. bottom: 33/1945
  42073. }
  42074. },
  42075. },
  42076. [
  42077. {
  42078. name: "Smallest",
  42079. height: math.unit(8, "feet")
  42080. },
  42081. {
  42082. name: "Normal",
  42083. height: math.unit(1, "mile"),
  42084. default: true
  42085. },
  42086. {
  42087. name: "Maximum",
  42088. height: math.unit(1500000000000, "lightyears")
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(5 + 11/12, "feet"),
  42097. weight: math.unit(155, "lb"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/cai/front.svg",
  42101. extra: 1823/1702,
  42102. bottom: 32/1855
  42103. }
  42104. },
  42105. back: {
  42106. height: math.unit(5 + 11/12, "feet"),
  42107. weight: math.unit(155, "lb"),
  42108. name: "Back",
  42109. image: {
  42110. source: "./media/characters/cai/back.svg",
  42111. extra: 1809/1708,
  42112. bottom: 31/1840
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(5 + 11/12, "feet"),
  42120. default: true
  42121. },
  42122. {
  42123. name: "Big",
  42124. height: math.unit(15, "feet")
  42125. },
  42126. {
  42127. name: "Macro",
  42128. height: math.unit(200, "feet")
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42134. {
  42135. front: {
  42136. height: math.unit(5 + 6/12, "feet"),
  42137. weight: math.unit(160, "lb"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42141. extra: 1227/1174,
  42142. bottom: 37/1264
  42143. }
  42144. },
  42145. },
  42146. [
  42147. {
  42148. name: "Macro",
  42149. height: math.unit(444, "meters"),
  42150. default: true
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42156. {
  42157. front: {
  42158. height: math.unit(18 + 7/12, "feet"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/rex/front.svg",
  42162. extra: 1941/1807,
  42163. bottom: 66/2007
  42164. }
  42165. },
  42166. back: {
  42167. height: math.unit(18 + 7/12, "feet"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/rex/back.svg",
  42171. extra: 1937/1822,
  42172. bottom: 42/1979
  42173. }
  42174. },
  42175. boot: {
  42176. height: math.unit(3.45, "feet"),
  42177. name: "Boot",
  42178. image: {
  42179. source: "./media/characters/rex/boot.svg"
  42180. }
  42181. },
  42182. paw: {
  42183. height: math.unit(4.17, "feet"),
  42184. name: "Paw",
  42185. image: {
  42186. source: "./media/characters/rex/paw.svg"
  42187. }
  42188. },
  42189. head: {
  42190. height: math.unit(6.728, "feet"),
  42191. name: "Head",
  42192. image: {
  42193. source: "./media/characters/rex/head.svg"
  42194. }
  42195. },
  42196. },
  42197. [
  42198. {
  42199. name: "Nano",
  42200. height: math.unit(18 + 7/12, "feet")
  42201. },
  42202. {
  42203. name: "Micro",
  42204. height: math.unit(1.5, "megameters")
  42205. },
  42206. {
  42207. name: "Normal",
  42208. height: math.unit(440, "megameters"),
  42209. default: true
  42210. },
  42211. {
  42212. name: "Macro",
  42213. height: math.unit(2.5, "gigameters")
  42214. },
  42215. {
  42216. name: "Gigamacro",
  42217. height: math.unit(2, "galaxies")
  42218. },
  42219. ]
  42220. ))
  42221. characterMakers.push(() => makeCharacter(
  42222. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42223. {
  42224. side: {
  42225. height: math.unit(32, "feet"),
  42226. weight: math.unit(250000, "lb"),
  42227. name: "Side",
  42228. image: {
  42229. source: "./media/characters/silverwing/side.svg",
  42230. extra: 1100/1019,
  42231. bottom: 204/1304
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Normal",
  42238. height: math.unit(32, "feet"),
  42239. default: true
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(6 + 6/12, "feet"),
  42248. weight: math.unit(350, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/tristan-hawthorne/front.svg",
  42252. extra: 1159/1124,
  42253. bottom: 37/1196
  42254. },
  42255. form: "labrador",
  42256. default: true
  42257. },
  42258. skunkFront: {
  42259. height: math.unit(4 + 6/12, "feet"),
  42260. weight: math.unit(120, "lb"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42264. extra: 1609/1551,
  42265. bottom: 169/1778
  42266. },
  42267. form: "skunk",
  42268. default: true
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(6 + 6/12, "feet"),
  42275. form: "labrador",
  42276. default: true
  42277. },
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(4 + 6/12, "feet"),
  42281. form: "skunk",
  42282. default: true
  42283. },
  42284. ],
  42285. {
  42286. "labrador": {
  42287. name: "Labrador",
  42288. default: true
  42289. },
  42290. "skunk": {
  42291. name: "Skunk"
  42292. }
  42293. }
  42294. ))
  42295. characterMakers.push(() => makeCharacter(
  42296. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42297. {
  42298. front: {
  42299. height: math.unit(5 + 11/12, "feet"),
  42300. weight: math.unit(190, "lb"),
  42301. name: "Front",
  42302. image: {
  42303. source: "./media/characters/mizu/front.svg",
  42304. extra: 1988/1788,
  42305. bottom: 14/2002
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(5 + 11/12, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(1.7, "feet"),
  42322. weight: math.unit(50, "lb"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/dechroma/front.svg",
  42326. extra: 1095/859,
  42327. bottom: 64/1159
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(1.7, "feet"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42341. {
  42342. side: {
  42343. height: math.unit(30, "feet"),
  42344. name: "Side",
  42345. image: {
  42346. source: "./media/characters/veluren-thanazel/side.svg",
  42347. extra: 1611/633,
  42348. bottom: 118/1729
  42349. }
  42350. },
  42351. front: {
  42352. height: math.unit(30, "feet"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/veluren-thanazel/front.svg",
  42356. extra: 1486/636,
  42357. bottom: 238/1724
  42358. }
  42359. },
  42360. head: {
  42361. height: math.unit(21.4, "feet"),
  42362. name: "Head",
  42363. image: {
  42364. source: "./media/characters/veluren-thanazel/head.svg"
  42365. }
  42366. },
  42367. genitals: {
  42368. height: math.unit(19.4, "feet"),
  42369. name: "Genitals",
  42370. image: {
  42371. source: "./media/characters/veluren-thanazel/genitals.svg"
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Social",
  42378. height: math.unit(6, "feet")
  42379. },
  42380. {
  42381. name: "Play",
  42382. height: math.unit(12, "feet")
  42383. },
  42384. {
  42385. name: "True",
  42386. height: math.unit(30, "feet"),
  42387. default: true
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(7 + 6/12, "feet"),
  42396. weight: math.unit(500, "kg"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/arcturas/front.svg",
  42400. extra: 1700/1500,
  42401. bottom: 145/1845
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(7 + 6/12, "feet"),
  42409. default: true
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42415. {
  42416. side: {
  42417. height: math.unit(6, "feet"),
  42418. weight: math.unit(2, "tons"),
  42419. name: "Side",
  42420. image: {
  42421. source: "./media/characters/vitaen/side.svg",
  42422. extra: 1157/617,
  42423. bottom: 122/1279
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(6, "feet"),
  42431. default: true
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(19, "feet"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/fia-dreamweaver/front.svg",
  42443. extra: 1630/1504,
  42444. bottom: 25/1655
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(19, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(5 + 4/12, "feet"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/artan/front.svg",
  42464. extra: 1618/1535,
  42465. bottom: 46/1664
  42466. }
  42467. },
  42468. back: {
  42469. height: math.unit(5 + 4/12, "feet"),
  42470. name: "Back",
  42471. image: {
  42472. source: "./media/characters/artan/back.svg",
  42473. extra: 1618/1543,
  42474. bottom: 31/1649
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Normal",
  42481. height: math.unit(5 + 4/12, "feet"),
  42482. default: true
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42488. {
  42489. side: {
  42490. height: math.unit(182, "cm"),
  42491. weight: math.unit(1000, "lb"),
  42492. name: "Side",
  42493. image: {
  42494. source: "./media/characters/silver-dragon/side.svg",
  42495. extra: 710/287,
  42496. bottom: 88/798
  42497. }
  42498. },
  42499. },
  42500. [
  42501. {
  42502. name: "Normal",
  42503. height: math.unit(182, "cm"),
  42504. default: true
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42510. {
  42511. side: {
  42512. height: math.unit(6 + 6/12, "feet"),
  42513. weight: math.unit(1.5, "tons"),
  42514. name: "Side",
  42515. image: {
  42516. source: "./media/characters/zephyr/side.svg",
  42517. extra: 1433/586,
  42518. bottom: 109/1542
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(6 + 6/12, "feet"),
  42526. default: true
  42527. },
  42528. ]
  42529. ))
  42530. characterMakers.push(() => makeCharacter(
  42531. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42532. {
  42533. side: {
  42534. height: math.unit(1, "feet"),
  42535. name: "Side",
  42536. image: {
  42537. source: "./media/characters/vixye/side.svg",
  42538. extra: 632/541,
  42539. bottom: 0/632
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Normal",
  42546. height: math.unit(1, "feet"),
  42547. default: true
  42548. },
  42549. {
  42550. name: "True",
  42551. height: math.unit(1e15, "multiverses")
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(8 + 2/12, "feet"),
  42560. weight: math.unit(650, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42564. extra: 1174/1137,
  42565. bottom: 82/1256
  42566. }
  42567. },
  42568. back: {
  42569. height: math.unit(8 + 2/12, "feet"),
  42570. weight: math.unit(650, "lb"),
  42571. name: "Back",
  42572. image: {
  42573. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42574. extra: 1204/1157,
  42575. bottom: 46/1250
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Wildform",
  42582. height: math.unit(8 + 2/12, "feet"),
  42583. default: true
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(18, "feet"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/cyphin/front.svg",
  42595. extra: 970/886,
  42596. bottom: 42/1012
  42597. }
  42598. },
  42599. back: {
  42600. height: math.unit(18, "feet"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/cyphin/back.svg",
  42604. extra: 1009/894,
  42605. bottom: 24/1033
  42606. }
  42607. },
  42608. head: {
  42609. height: math.unit(5.05, "feet"),
  42610. name: "Head",
  42611. image: {
  42612. source: "./media/characters/cyphin/head.svg"
  42613. }
  42614. },
  42615. tailbud: {
  42616. height: math.unit(5, "feet"),
  42617. name: "Tailbud",
  42618. image: {
  42619. source: "./media/characters/cyphin/tailbud.svg"
  42620. }
  42621. },
  42622. },
  42623. [
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42628. {
  42629. side: {
  42630. height: math.unit(10, "feet"),
  42631. weight: math.unit(6, "tons"),
  42632. name: "Side",
  42633. image: {
  42634. source: "./media/characters/raijin/side.svg",
  42635. extra: 1529/613,
  42636. bottom: 337/1866
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(10, "feet"),
  42644. default: true
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42650. {
  42651. side: {
  42652. height: math.unit(9, "feet"),
  42653. name: "Side",
  42654. image: {
  42655. source: "./media/characters/nilghais/side.svg",
  42656. extra: 1047/744,
  42657. bottom: 91/1138
  42658. }
  42659. },
  42660. head: {
  42661. height: math.unit(3.14, "feet"),
  42662. name: "Head",
  42663. image: {
  42664. source: "./media/characters/nilghais/head.svg"
  42665. }
  42666. },
  42667. mouth: {
  42668. height: math.unit(4.6, "feet"),
  42669. name: "Mouth",
  42670. image: {
  42671. source: "./media/characters/nilghais/mouth.svg"
  42672. }
  42673. },
  42674. wings: {
  42675. height: math.unit(24, "feet"),
  42676. name: "Wings",
  42677. image: {
  42678. source: "./media/characters/nilghais/wings.svg"
  42679. }
  42680. },
  42681. ass: {
  42682. height: math.unit(6.12, "feet"),
  42683. name: "Ass",
  42684. image: {
  42685. source: "./media/characters/nilghais/ass.svg"
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Normal",
  42692. height: math.unit(9, "feet"),
  42693. default: true
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42699. {
  42700. regular: {
  42701. height: math.unit(16 + 2/12, "feet"),
  42702. weight: math.unit(2300, "lb"),
  42703. name: "Regular",
  42704. image: {
  42705. source: "./media/characters/zolgar/regular.svg",
  42706. extra: 1246/1004,
  42707. bottom: 124/1370
  42708. }
  42709. },
  42710. boxers: {
  42711. height: math.unit(16 + 2/12, "feet"),
  42712. weight: math.unit(2300, "lb"),
  42713. name: "Boxers",
  42714. image: {
  42715. source: "./media/characters/zolgar/boxers.svg",
  42716. extra: 1246/1004,
  42717. bottom: 124/1370
  42718. }
  42719. },
  42720. armored: {
  42721. height: math.unit(16 + 2/12, "feet"),
  42722. weight: math.unit(2300, "lb"),
  42723. name: "Armored",
  42724. image: {
  42725. source: "./media/characters/zolgar/armored.svg",
  42726. extra: 1246/1004,
  42727. bottom: 124/1370
  42728. }
  42729. },
  42730. goth: {
  42731. height: math.unit(16 + 2/12, "feet"),
  42732. weight: math.unit(2300, "lb"),
  42733. name: "Goth",
  42734. image: {
  42735. source: "./media/characters/zolgar/goth.svg",
  42736. extra: 1246/1004,
  42737. bottom: 124/1370
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Shrunken Down",
  42744. height: math.unit(9 + 2/12, "feet")
  42745. },
  42746. {
  42747. name: "Normal",
  42748. height: math.unit(16 + 2/12, "feet"),
  42749. default: true
  42750. },
  42751. ]
  42752. ))
  42753. characterMakers.push(() => makeCharacter(
  42754. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42755. {
  42756. front: {
  42757. height: math.unit(6, "feet"),
  42758. weight: math.unit(168, "lb"),
  42759. name: "Front",
  42760. image: {
  42761. source: "./media/characters/luca/front.svg",
  42762. extra: 841/667,
  42763. bottom: 102/943
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(6, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42777. {
  42778. side: {
  42779. height: math.unit(7 + 3/12, "feet"),
  42780. weight: math.unit(312, "lb"),
  42781. name: "Side",
  42782. image: {
  42783. source: "./media/characters/zezo/side.svg",
  42784. extra: 1192/1067,
  42785. bottom: 63/1255
  42786. }
  42787. },
  42788. },
  42789. [
  42790. {
  42791. name: "Normal",
  42792. height: math.unit(7 + 3/12, "feet"),
  42793. default: true
  42794. },
  42795. ]
  42796. ))
  42797. characterMakers.push(() => makeCharacter(
  42798. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42799. {
  42800. front: {
  42801. height: math.unit(5 + 5/12, "feet"),
  42802. weight: math.unit(170, "lb"),
  42803. name: "Front",
  42804. image: {
  42805. source: "./media/characters/mayso/front.svg",
  42806. extra: 1215/1108,
  42807. bottom: 16/1231
  42808. }
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Normal",
  42814. height: math.unit(5 + 5/12, "feet"),
  42815. default: true
  42816. },
  42817. ]
  42818. ))
  42819. characterMakers.push(() => makeCharacter(
  42820. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42821. {
  42822. front: {
  42823. height: math.unit(4 + 3/12, "feet"),
  42824. weight: math.unit(80, "lb"),
  42825. name: "Front",
  42826. image: {
  42827. source: "./media/characters/hess/front.svg",
  42828. extra: 1200/1123,
  42829. bottom: 16/1216
  42830. }
  42831. },
  42832. },
  42833. [
  42834. {
  42835. name: "Normal",
  42836. height: math.unit(4 + 3/12, "feet"),
  42837. default: true
  42838. },
  42839. ]
  42840. ))
  42841. characterMakers.push(() => makeCharacter(
  42842. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42843. {
  42844. front: {
  42845. height: math.unit(1.9, "meters"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/ashgar/front.svg",
  42849. extra: 1177/1146,
  42850. bottom: 99/1276
  42851. }
  42852. },
  42853. back: {
  42854. height: math.unit(1.9, "meters"),
  42855. name: "Back",
  42856. image: {
  42857. source: "./media/characters/ashgar/back.svg",
  42858. extra: 1201/1183,
  42859. bottom: 53/1254
  42860. }
  42861. },
  42862. feral: {
  42863. height: math.unit(1.4, "meters"),
  42864. name: "Feral",
  42865. image: {
  42866. source: "./media/characters/ashgar/feral.svg",
  42867. extra: 370/345,
  42868. bottom: 45/415
  42869. }
  42870. },
  42871. },
  42872. [
  42873. {
  42874. name: "Normal",
  42875. height: math.unit(1.9, "meters"),
  42876. default: true
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42882. {
  42883. regular: {
  42884. height: math.unit(6, "feet"),
  42885. weight: math.unit(220, "lb"),
  42886. name: "Regular",
  42887. image: {
  42888. source: "./media/characters/phillip/regular.svg",
  42889. extra: 1373/1277,
  42890. bottom: 75/1448
  42891. }
  42892. },
  42893. dressed: {
  42894. height: math.unit(6, "feet"),
  42895. weight: math.unit(220, "lb"),
  42896. name: "Dressed",
  42897. image: {
  42898. source: "./media/characters/phillip/dressed.svg",
  42899. extra: 1373/1277,
  42900. bottom: 75/1448
  42901. }
  42902. },
  42903. paw: {
  42904. height: math.unit(1.44, "feet"),
  42905. name: "Paw",
  42906. image: {
  42907. source: "./media/characters/phillip/paw.svg"
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(6, "feet"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42921. {
  42922. side: {
  42923. height: math.unit(42, "feet"),
  42924. name: "Side",
  42925. image: {
  42926. source: "./media/characters/uvula/side.svg",
  42927. extra: 683/586,
  42928. bottom: 60/743
  42929. }
  42930. },
  42931. front: {
  42932. height: math.unit(42, "feet"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/uvula/front.svg",
  42936. extra: 705/613,
  42937. bottom: 54/759
  42938. }
  42939. },
  42940. maw: {
  42941. height: math.unit(23.5, "feet"),
  42942. name: "Maw",
  42943. image: {
  42944. source: "./media/characters/uvula/maw.svg"
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Original Size",
  42951. height: math.unit(14, "inches")
  42952. },
  42953. {
  42954. name: "Human Size",
  42955. height: math.unit(6, "feet")
  42956. },
  42957. {
  42958. name: "Big",
  42959. height: math.unit(42, "feet"),
  42960. default: true
  42961. },
  42962. {
  42963. name: "Bigger",
  42964. height: math.unit(100, "feet")
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(5 + 11/12, "feet"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/lannah/front.svg",
  42976. extra: 1208/1113,
  42977. bottom: 97/1305
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "Normal",
  42984. height: math.unit(5 + 11/12, "feet"),
  42985. default: true
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42991. {
  42992. front: {
  42993. height: math.unit(6 + 3/12, "feet"),
  42994. weight: math.unit(3.5, "tons"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/emberflame/front.svg",
  42998. extra: 1198/672,
  42999. bottom: 82/1280
  43000. }
  43001. },
  43002. side: {
  43003. height: math.unit(6 + 3/12, "feet"),
  43004. weight: math.unit(3.5, "tons"),
  43005. name: "Side",
  43006. image: {
  43007. source: "./media/characters/emberflame/side.svg",
  43008. extra: 938/527,
  43009. bottom: 56/994
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(6 + 3/12, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43023. {
  43024. side: {
  43025. height: math.unit(17.5, "feet"),
  43026. weight: math.unit(35, "tons"),
  43027. name: "Side",
  43028. image: {
  43029. source: "./media/characters/sophie-ambrose/side.svg",
  43030. extra: 1573/1242,
  43031. bottom: 71/1644
  43032. }
  43033. },
  43034. maw: {
  43035. height: math.unit(7.4, "feet"),
  43036. name: "Maw",
  43037. image: {
  43038. source: "./media/characters/sophie-ambrose/maw.svg"
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(17.5, "feet"),
  43046. default: true
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43052. {
  43053. front: {
  43054. height: math.unit(280, "feet"),
  43055. weight: math.unit(550, "tons"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/king-mugi/front.svg",
  43059. extra: 1102/947,
  43060. bottom: 104/1206
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "King Mugi",
  43067. height: math.unit(280, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(64, "meters"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/nova-fox/front.svg",
  43080. extra: 1310/1246,
  43081. bottom: 65/1375
  43082. }
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Macro",
  43088. height: math.unit(64, "meters"),
  43089. default: true
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(6 + 3/12, "feet"),
  43098. weight: math.unit(170, "lb"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/sam-bat/front.svg",
  43102. extra: 1601/1411,
  43103. bottom: 125/1726
  43104. }
  43105. },
  43106. back: {
  43107. height: math.unit(6 + 3/12, "feet"),
  43108. weight: math.unit(170, "lb"),
  43109. name: "Back",
  43110. image: {
  43111. source: "./media/characters/sam-bat/back.svg",
  43112. extra: 1577/1405,
  43113. bottom: 58/1635
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(6 + 3/12, "feet"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43127. {
  43128. front: {
  43129. height: math.unit(59, "feet"),
  43130. weight: math.unit(40000, "lb"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/inari/front.svg",
  43134. extra: 1884/1350,
  43135. bottom: 95/1979
  43136. }
  43137. },
  43138. },
  43139. [
  43140. {
  43141. name: "Gigantamax",
  43142. height: math.unit(59, "feet"),
  43143. default: true
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43149. {
  43150. front: {
  43151. height: math.unit(5 + 8/12, "feet"),
  43152. name: "Front",
  43153. image: {
  43154. source: "./media/characters/elizabeth/front.svg",
  43155. extra: 1395/1298,
  43156. bottom: 54/1449
  43157. }
  43158. },
  43159. mouth: {
  43160. height: math.unit(1.97, "feet"),
  43161. name: "Mouth",
  43162. image: {
  43163. source: "./media/characters/elizabeth/mouth.svg"
  43164. }
  43165. },
  43166. foot: {
  43167. height: math.unit(1.17, "feet"),
  43168. name: "Foot",
  43169. image: {
  43170. source: "./media/characters/elizabeth/foot.svg"
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(5 + 8/12, "feet"),
  43178. default: true
  43179. },
  43180. {
  43181. name: "Minimacro",
  43182. height: math.unit(18, "feet")
  43183. },
  43184. {
  43185. name: "Macro",
  43186. height: math.unit(180, "feet")
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(5 + 2/12, "feet"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/october-gossamer/front.svg",
  43198. extra: 505/454,
  43199. bottom: 7/512
  43200. }
  43201. },
  43202. back: {
  43203. height: math.unit(5 + 2/12, "feet"),
  43204. name: "Back",
  43205. image: {
  43206. source: "./media/characters/october-gossamer/back.svg",
  43207. extra: 501/454,
  43208. bottom: 11/512
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(5 + 2/12, "feet"),
  43216. default: true
  43217. },
  43218. ]
  43219. ))
  43220. characterMakers.push(() => makeCharacter(
  43221. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43222. {
  43223. front: {
  43224. height: math.unit(5, "feet"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/epiglottis/front.svg",
  43228. extra: 923/849,
  43229. bottom: 17/940
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Original Size",
  43236. height: math.unit(10, "inches")
  43237. },
  43238. {
  43239. name: "Human Size",
  43240. height: math.unit(5, "feet"),
  43241. default: true
  43242. },
  43243. {
  43244. name: "Big",
  43245. height: math.unit(25, "feet")
  43246. },
  43247. {
  43248. name: "Bigger",
  43249. height: math.unit(50, "feet")
  43250. },
  43251. {
  43252. name: "oh lawd",
  43253. height: math.unit(75, "feet")
  43254. },
  43255. ]
  43256. ))
  43257. characterMakers.push(() => makeCharacter(
  43258. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43259. {
  43260. front: {
  43261. height: math.unit(2 + 4/12, "feet"),
  43262. weight: math.unit(60, "lb"),
  43263. name: "Front",
  43264. image: {
  43265. source: "./media/characters/lerm/front.svg",
  43266. extra: 796/790,
  43267. bottom: 79/875
  43268. }
  43269. },
  43270. },
  43271. [
  43272. {
  43273. name: "Normal",
  43274. height: math.unit(2 + 4/12, "feet"),
  43275. default: true
  43276. },
  43277. ]
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(5.5, "feet"),
  43284. weight: math.unit(130, "lb"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/xena-nebadon/front.svg",
  43288. extra: 1828/1730,
  43289. bottom: 79/1907
  43290. }
  43291. },
  43292. },
  43293. [
  43294. {
  43295. name: "Tiny Puppy",
  43296. height: math.unit(3, "inches")
  43297. },
  43298. {
  43299. name: "Normal",
  43300. height: math.unit(5.5, "feet"),
  43301. default: true
  43302. },
  43303. {
  43304. name: "Lotta Lady",
  43305. height: math.unit(12, "feet")
  43306. },
  43307. {
  43308. name: "Pretty Big",
  43309. height: math.unit(100, "feet")
  43310. },
  43311. {
  43312. name: "Big",
  43313. height: math.unit(500, "feet")
  43314. },
  43315. {
  43316. name: "Skyscraper Toys",
  43317. height: math.unit(2500, "feet")
  43318. },
  43319. {
  43320. name: "Plane Catcher",
  43321. height: math.unit(8, "miles")
  43322. },
  43323. {
  43324. name: "Planet Toys",
  43325. height: math.unit(15, "earths")
  43326. },
  43327. {
  43328. name: "Stardust",
  43329. height: math.unit(0.25, "galaxies")
  43330. },
  43331. {
  43332. name: "Snacks",
  43333. height: math.unit(70, "universes")
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(1.6, "meters"),
  43342. weight: math.unit(60, "kg"),
  43343. name: "Front",
  43344. image: {
  43345. source: "./media/characters/bounty/front.svg",
  43346. extra: 1426/1308,
  43347. bottom: 15/1441
  43348. }
  43349. },
  43350. back: {
  43351. height: math.unit(1.6, "meters"),
  43352. weight: math.unit(60, "kg"),
  43353. name: "Back",
  43354. image: {
  43355. source: "./media/characters/bounty/back.svg",
  43356. extra: 1417/1307,
  43357. bottom: 8/1425
  43358. }
  43359. },
  43360. },
  43361. [
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(1.6, "meters"),
  43365. default: true
  43366. },
  43367. {
  43368. name: "Macro",
  43369. height: math.unit(300, "meters")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43375. {
  43376. front: {
  43377. height: math.unit(2 + 8/12, "feet"),
  43378. weight: math.unit(15, "lb"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/mochi/front.svg",
  43382. extra: 1022/852,
  43383. bottom: 435/1457
  43384. }
  43385. },
  43386. back: {
  43387. height: math.unit(2 + 8/12, "feet"),
  43388. weight: math.unit(15, "lb"),
  43389. name: "Back",
  43390. image: {
  43391. source: "./media/characters/mochi/back.svg",
  43392. extra: 1335/1119,
  43393. bottom: 39/1374
  43394. }
  43395. },
  43396. bird: {
  43397. height: math.unit(2 + 8/12, "feet"),
  43398. weight: math.unit(15, "lb"),
  43399. name: "Bird",
  43400. image: {
  43401. source: "./media/characters/mochi/bird.svg",
  43402. extra: 1251/1113,
  43403. bottom: 178/1429
  43404. }
  43405. },
  43406. kaiju: {
  43407. height: math.unit(154, "feet"),
  43408. weight: math.unit(1e7, "lb"),
  43409. name: "Kaiju",
  43410. image: {
  43411. source: "./media/characters/mochi/kaiju.svg",
  43412. extra: 460/324,
  43413. bottom: 40/500
  43414. }
  43415. },
  43416. head: {
  43417. height: math.unit(1.21, "feet"),
  43418. name: "Head",
  43419. image: {
  43420. source: "./media/characters/mochi/head.svg"
  43421. }
  43422. },
  43423. alternateTail: {
  43424. height: math.unit(2 + 8/12, "feet"),
  43425. weight: math.unit(45, "lb"),
  43426. name: "Alternate Tail",
  43427. image: {
  43428. source: "./media/characters/mochi/alternate-tail.svg",
  43429. extra: 139/76,
  43430. bottom: 45/184
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Micro",
  43437. height: math.unit(2, "inches")
  43438. },
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(2 + 8/12, "feet"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Macro",
  43446. height: math.unit(106, "feet")
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(5.67, "feet"),
  43455. weight: math.unit(135, "lb"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/sarel/front.svg",
  43459. extra: 865/788,
  43460. bottom: 97/962
  43461. }
  43462. },
  43463. back: {
  43464. height: math.unit(5.67, "feet"),
  43465. weight: math.unit(135, "lb"),
  43466. name: "Back",
  43467. image: {
  43468. source: "./media/characters/sarel/back.svg",
  43469. extra: 857/777,
  43470. bottom: 32/889
  43471. }
  43472. },
  43473. chozoan: {
  43474. height: math.unit(5.67, "feet"),
  43475. weight: math.unit(135, "lb"),
  43476. name: "Chozoan",
  43477. image: {
  43478. source: "./media/characters/sarel/chozoan.svg",
  43479. extra: 865/788,
  43480. bottom: 97/962
  43481. }
  43482. },
  43483. current: {
  43484. height: math.unit(5.67, "feet"),
  43485. weight: math.unit(135, "lb"),
  43486. name: "Current",
  43487. image: {
  43488. source: "./media/characters/sarel/current.svg",
  43489. extra: 865/788,
  43490. bottom: 97/962
  43491. }
  43492. },
  43493. head: {
  43494. height: math.unit(1.77, "feet"),
  43495. name: "Head",
  43496. image: {
  43497. source: "./media/characters/sarel/head.svg"
  43498. }
  43499. },
  43500. claws: {
  43501. height: math.unit(1.8, "feet"),
  43502. name: "Claws",
  43503. image: {
  43504. source: "./media/characters/sarel/claws.svg"
  43505. }
  43506. },
  43507. clawsAlt: {
  43508. height: math.unit(1.8, "feet"),
  43509. name: "Claws-alt",
  43510. image: {
  43511. source: "./media/characters/sarel/claws-alt.svg"
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(5.67, "feet"),
  43519. default: true
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(5500, "feet"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/alyonia/front.svg",
  43531. extra: 1200/1135,
  43532. bottom: 29/1229
  43533. }
  43534. },
  43535. back: {
  43536. height: math.unit(5500, "feet"),
  43537. name: "Back",
  43538. image: {
  43539. source: "./media/characters/alyonia/back.svg",
  43540. extra: 1205/1138,
  43541. bottom: 10/1215
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Small",
  43548. height: math.unit(10, "feet")
  43549. },
  43550. {
  43551. name: "Macro",
  43552. height: math.unit(500, "feet")
  43553. },
  43554. {
  43555. name: "Mega Macro",
  43556. height: math.unit(5500, "feet"),
  43557. default: true
  43558. },
  43559. {
  43560. name: "Mega Macro+",
  43561. height: math.unit(500000, "feet")
  43562. },
  43563. {
  43564. name: "Giga Macro",
  43565. height: math.unit(3000, "miles")
  43566. },
  43567. {
  43568. name: "Tera Macro",
  43569. height: math.unit(2.8e6, "miles")
  43570. },
  43571. {
  43572. name: "Galactic",
  43573. height: math.unit(120000, "lightyears")
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43579. {
  43580. werewolf: {
  43581. height: math.unit(8, "feet"),
  43582. weight: math.unit(425, "lb"),
  43583. name: "Werewolf",
  43584. image: {
  43585. source: "./media/characters/autumn/werewolf.svg",
  43586. extra: 2154/2031,
  43587. bottom: 160/2314
  43588. }
  43589. },
  43590. human: {
  43591. height: math.unit(5 + 8/12, "feet"),
  43592. weight: math.unit(150, "lb"),
  43593. name: "Human",
  43594. image: {
  43595. source: "./media/characters/autumn/human.svg",
  43596. extra: 1200/1149,
  43597. bottom: 30/1230
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(8, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(8 + 5/12, "feet"),
  43614. weight: math.unit(825, "lb"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/cobalt-charizard/front.svg",
  43618. extra: 1268/1155,
  43619. bottom: 122/1390
  43620. }
  43621. },
  43622. side: {
  43623. height: math.unit(8 + 5/12, "feet"),
  43624. weight: math.unit(825, "lb"),
  43625. name: "Side",
  43626. image: {
  43627. source: "./media/characters/cobalt-charizard/side.svg",
  43628. extra: 1348/1257,
  43629. bottom: 58/1406
  43630. }
  43631. },
  43632. gMax: {
  43633. height: math.unit(134 + 11/12, "feet"),
  43634. name: "G-Max",
  43635. image: {
  43636. source: "./media/characters/cobalt-charizard/g-max.svg",
  43637. extra: 1835/1541,
  43638. bottom: 151/1986
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Normal",
  43645. height: math.unit(8 + 5/12, "feet"),
  43646. default: true
  43647. },
  43648. ]
  43649. ))
  43650. characterMakers.push(() => makeCharacter(
  43651. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43652. {
  43653. front: {
  43654. height: math.unit(6 + 3/12, "feet"),
  43655. weight: math.unit(210, "lb"),
  43656. name: "Front",
  43657. image: {
  43658. source: "./media/characters/stella/front.svg",
  43659. extra: 3549/3335,
  43660. bottom: 51/3600
  43661. }
  43662. },
  43663. },
  43664. [
  43665. {
  43666. name: "Normal",
  43667. height: math.unit(6 + 3/12, "feet"),
  43668. default: true
  43669. },
  43670. ]
  43671. ))
  43672. characterMakers.push(() => makeCharacter(
  43673. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43674. {
  43675. front: {
  43676. height: math.unit(5, "feet"),
  43677. weight: math.unit(90, "lb"),
  43678. name: "Front",
  43679. image: {
  43680. source: "./media/characters/riley-bishop/front.svg",
  43681. extra: 1450/1428,
  43682. bottom: 152/1602
  43683. }
  43684. },
  43685. },
  43686. [
  43687. {
  43688. name: "Normal",
  43689. height: math.unit(5, "feet"),
  43690. default: true
  43691. },
  43692. ]
  43693. ))
  43694. characterMakers.push(() => makeCharacter(
  43695. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43696. {
  43697. side: {
  43698. height: math.unit(8 + 2/12, "feet"),
  43699. weight: math.unit(500, "kg"),
  43700. name: "Side",
  43701. image: {
  43702. source: "./media/characters/theo-arcanine/side.svg",
  43703. extra: 1342/1074,
  43704. bottom: 111/1453
  43705. }
  43706. },
  43707. },
  43708. [
  43709. {
  43710. name: "Normal",
  43711. height: math.unit(8 + 2/12, "feet"),
  43712. default: true
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(4, "feet"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/kali/front.svg",
  43724. extra: 1921/1357,
  43725. bottom: 70/1991
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Normal",
  43732. height: math.unit(4, "feet"),
  43733. default: true
  43734. },
  43735. {
  43736. name: "Macro",
  43737. height: math.unit(32, "meters")
  43738. },
  43739. {
  43740. name: "Macro+",
  43741. height: math.unit(150, "meters")
  43742. },
  43743. {
  43744. name: "Megamacro",
  43745. height: math.unit(7500, "meters")
  43746. },
  43747. {
  43748. name: "Megamacro+",
  43749. height: math.unit(80, "kilometers")
  43750. },
  43751. ]
  43752. ))
  43753. characterMakers.push(() => makeCharacter(
  43754. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43755. {
  43756. side: {
  43757. height: math.unit(5 + 11/12, "feet"),
  43758. weight: math.unit(236, "lb"),
  43759. name: "Side",
  43760. image: {
  43761. source: "./media/characters/gapp/side.svg",
  43762. extra: 775/340,
  43763. bottom: 58/833
  43764. }
  43765. },
  43766. mouth: {
  43767. height: math.unit(2.98, "feet"),
  43768. name: "Mouth",
  43769. image: {
  43770. source: "./media/characters/gapp/mouth.svg"
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(5 + 1/12, "feet"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43784. {
  43785. front: {
  43786. height: math.unit(6, "feet"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/persephone/front.svg",
  43790. extra: 1895/1717,
  43791. bottom: 96/1991
  43792. }
  43793. },
  43794. back: {
  43795. height: math.unit(6, "feet"),
  43796. name: "Back",
  43797. image: {
  43798. source: "./media/characters/persephone/back.svg",
  43799. extra: 1868/1679,
  43800. bottom: 26/1894
  43801. }
  43802. },
  43803. casual: {
  43804. height: math.unit(6, "feet"),
  43805. name: "Casual",
  43806. image: {
  43807. source: "./media/characters/persephone/casual.svg",
  43808. extra: 1713/1541,
  43809. bottom: 76/1789
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Human Size",
  43816. height: math.unit(6, "feet")
  43817. },
  43818. {
  43819. name: "Big Steppy",
  43820. height: math.unit(600, "meters"),
  43821. default: true
  43822. },
  43823. {
  43824. name: "Galaxy Brain",
  43825. height: math.unit(1, "zettameter")
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43831. {
  43832. front: {
  43833. height: math.unit(1.85, "meters"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/riley-foxthing/front.svg",
  43837. extra: 1495/1354,
  43838. bottom: 122/1617
  43839. }
  43840. },
  43841. frontAlt: {
  43842. height: math.unit(1.85, "meters"),
  43843. name: "Front (Alt)",
  43844. image: {
  43845. source: "./media/characters/riley-foxthing/front-alt.svg",
  43846. extra: 1572/1389,
  43847. bottom: 116/1688
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Normal Sized",
  43854. height: math.unit(1.85, "meters"),
  43855. default: true
  43856. },
  43857. {
  43858. name: "Quite Sizable",
  43859. height: math.unit(5, "meters")
  43860. },
  43861. {
  43862. name: "Rather Large",
  43863. height: math.unit(20, "meters")
  43864. },
  43865. {
  43866. name: "Macro",
  43867. height: math.unit(450, "meters")
  43868. },
  43869. {
  43870. name: "Giga",
  43871. height: math.unit(5, "km")
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43877. {
  43878. front: {
  43879. height: math.unit(6, "feet"),
  43880. weight: math.unit(200, "lb"),
  43881. name: "Front",
  43882. image: {
  43883. source: "./media/characters/blizzard/front.svg",
  43884. extra: 1136/990,
  43885. bottom: 136/1272
  43886. }
  43887. },
  43888. back: {
  43889. height: math.unit(6, "feet"),
  43890. weight: math.unit(200, "lb"),
  43891. name: "Back",
  43892. image: {
  43893. source: "./media/characters/blizzard/back.svg",
  43894. extra: 1175/1034,
  43895. bottom: 97/1272
  43896. }
  43897. },
  43898. sitting: {
  43899. height: math.unit(3.725, "feet"),
  43900. weight: math.unit(200, "lb"),
  43901. name: "Sitting",
  43902. image: {
  43903. source: "./media/characters/blizzard/sitting.svg",
  43904. extra: 581/485,
  43905. bottom: 90/671
  43906. }
  43907. },
  43908. frontWizard: {
  43909. height: math.unit(7.9, "feet"),
  43910. weight: math.unit(200, "lb"),
  43911. name: "Front (Wizard)",
  43912. image: {
  43913. source: "./media/characters/blizzard/front-wizard.svg"
  43914. }
  43915. },
  43916. backWizard: {
  43917. height: math.unit(7.9, "feet"),
  43918. weight: math.unit(200, "lb"),
  43919. name: "Back (Wizard)",
  43920. image: {
  43921. source: "./media/characters/blizzard/back-wizard.svg"
  43922. }
  43923. },
  43924. frontNsfw: {
  43925. height: math.unit(6, "feet"),
  43926. weight: math.unit(200, "lb"),
  43927. name: "Front (NSFW)",
  43928. image: {
  43929. source: "./media/characters/blizzard/front-nsfw.svg",
  43930. extra: 1136/990,
  43931. bottom: 136/1272
  43932. }
  43933. },
  43934. backNsfw: {
  43935. height: math.unit(6, "feet"),
  43936. weight: math.unit(200, "lb"),
  43937. name: "Back (NSFW)",
  43938. image: {
  43939. source: "./media/characters/blizzard/back-nsfw.svg",
  43940. extra: 1175/1034,
  43941. bottom: 97/1272
  43942. }
  43943. },
  43944. sittingNsfw: {
  43945. height: math.unit(3.725, "feet"),
  43946. weight: math.unit(200, "lb"),
  43947. name: "Sitting (NSFW)",
  43948. image: {
  43949. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43950. extra: 581/485,
  43951. bottom: 90/671
  43952. }
  43953. },
  43954. wizardFrontNsfw: {
  43955. height: math.unit(7.9, "feet"),
  43956. weight: math.unit(200, "lb"),
  43957. name: "Wizard (Front, NSFW)",
  43958. image: {
  43959. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(6, "feet"),
  43967. default: true
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43973. {
  43974. front: {
  43975. height: math.unit(5 + 2/12, "feet"),
  43976. name: "Front",
  43977. image: {
  43978. source: "./media/characters/lumi/front.svg",
  43979. extra: 1328/1268,
  43980. bottom: 103/1431
  43981. }
  43982. },
  43983. back: {
  43984. height: math.unit(5 + 2/12, "feet"),
  43985. name: "Back",
  43986. image: {
  43987. source: "./media/characters/lumi/back.svg",
  43988. extra: 1381/1327,
  43989. bottom: 43/1424
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Normal",
  43996. height: math.unit(5 + 2/12, "feet"),
  43997. default: true
  43998. },
  43999. ]
  44000. ))
  44001. characterMakers.push(() => makeCharacter(
  44002. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44003. {
  44004. front: {
  44005. height: math.unit(5 + 9/12, "feet"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/aliya-cotton/front.svg",
  44009. extra: 577/564,
  44010. bottom: 29/606
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Normal",
  44017. height: math.unit(5 + 9/12, "feet"),
  44018. default: true
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(2.7, "meters"),
  44027. weight: math.unit(25000, "lb"),
  44028. name: "Front",
  44029. image: {
  44030. source: "./media/characters/noah-luxray/front.svg",
  44031. extra: 1644/825,
  44032. bottom: 339/1983
  44033. }
  44034. },
  44035. side: {
  44036. height: math.unit(2.97, "meters"),
  44037. weight: math.unit(25000, "lb"),
  44038. name: "Side",
  44039. image: {
  44040. source: "./media/characters/noah-luxray/side.svg",
  44041. extra: 1319/650,
  44042. bottom: 163/1482
  44043. }
  44044. },
  44045. dick: {
  44046. height: math.unit(7.4, "feet"),
  44047. weight: math.unit(2500, "lb"),
  44048. name: "Dick",
  44049. image: {
  44050. source: "./media/characters/noah-luxray/dick.svg"
  44051. }
  44052. },
  44053. dickAlt: {
  44054. height: math.unit(10.83, "feet"),
  44055. weight: math.unit(2500, "lb"),
  44056. name: "Dick-alt",
  44057. image: {
  44058. source: "./media/characters/noah-luxray/dick-alt.svg"
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "BIG",
  44065. height: math.unit(2.7, "meters"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44072. {
  44073. standing: {
  44074. height: math.unit(183, "cm"),
  44075. weight: math.unit(68, "kg"),
  44076. name: "Standing",
  44077. image: {
  44078. source: "./media/characters/arion/standing.svg",
  44079. extra: 1869/1807,
  44080. bottom: 93/1962
  44081. }
  44082. },
  44083. reclining: {
  44084. height: math.unit(70.5, "cm"),
  44085. weight: math.unit(68, "lb"),
  44086. name: "Reclining",
  44087. image: {
  44088. source: "./media/characters/arion/reclining.svg",
  44089. extra: 937/870,
  44090. bottom: 63/1000
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Colossus Size, Low",
  44097. height: math.unit(33, "meters"),
  44098. default: true
  44099. },
  44100. {
  44101. name: "Colossus Size, Mid",
  44102. height: math.unit(52, "meters")
  44103. },
  44104. {
  44105. name: "Colossus Size, High",
  44106. height: math.unit(60, "meters")
  44107. },
  44108. {
  44109. name: "Titan Size, Low",
  44110. height: math.unit(91, "meters"),
  44111. },
  44112. {
  44113. name: "Titan Size, Mid",
  44114. height: math.unit(122, "meters")
  44115. },
  44116. {
  44117. name: "Titan Size, High",
  44118. height: math.unit(162, "meters")
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44124. {
  44125. front: {
  44126. height: math.unit(53, "meters"),
  44127. name: "Front",
  44128. image: {
  44129. source: "./media/characters/stellar-marbey/front.svg",
  44130. extra: 1913/1805,
  44131. bottom: 92/2005
  44132. }
  44133. },
  44134. back: {
  44135. height: math.unit(53, "meters"),
  44136. name: "Back",
  44137. image: {
  44138. source: "./media/characters/stellar-marbey/back.svg",
  44139. extra: 1960/1851,
  44140. bottom: 28/1988
  44141. }
  44142. },
  44143. mouth: {
  44144. height: math.unit(3.5, "meters"),
  44145. name: "Mouth",
  44146. image: {
  44147. source: "./media/characters/stellar-marbey/mouth.svg"
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Macro",
  44154. height: math.unit(53, "meters"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(8 + 1/12, "feet"),
  44164. weight: math.unit(233, "lb"),
  44165. name: "Front",
  44166. image: {
  44167. source: "./media/characters/matsu/front.svg",
  44168. extra: 832/772,
  44169. bottom: 40/872
  44170. }
  44171. },
  44172. back: {
  44173. height: math.unit(8 + 1/12, "feet"),
  44174. weight: math.unit(233, "lb"),
  44175. name: "Back",
  44176. image: {
  44177. source: "./media/characters/matsu/back.svg",
  44178. extra: 839/780,
  44179. bottom: 47/886
  44180. }
  44181. },
  44182. },
  44183. [
  44184. {
  44185. name: "Normal",
  44186. height: math.unit(8 + 1/12, "feet"),
  44187. default: true
  44188. },
  44189. ]
  44190. ))
  44191. characterMakers.push(() => makeCharacter(
  44192. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44193. {
  44194. front: {
  44195. height: math.unit(4, "feet"),
  44196. weight: math.unit(148, "lb"),
  44197. name: "Front",
  44198. image: {
  44199. source: "./media/characters/thiz/front.svg",
  44200. extra: 1913/1748,
  44201. bottom: 62/1975
  44202. }
  44203. },
  44204. },
  44205. [
  44206. {
  44207. name: "Normal",
  44208. height: math.unit(4, "feet"),
  44209. default: true
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44215. {
  44216. front: {
  44217. height: math.unit(7 + 6/12, "feet"),
  44218. weight: math.unit(267, "lb"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/marcel/front.svg",
  44222. extra: 1221/1096,
  44223. bottom: 76/1297
  44224. }
  44225. },
  44226. },
  44227. [
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(7 + 6/12, "feet"),
  44231. default: true
  44232. },
  44233. ]
  44234. ))
  44235. characterMakers.push(() => makeCharacter(
  44236. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44237. {
  44238. side: {
  44239. height: math.unit(42, "meters"),
  44240. name: "Side",
  44241. image: {
  44242. source: "./media/characters/flake/side.svg",
  44243. extra: 1525/1306,
  44244. bottom: 209/1734
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(42, "meters"),
  44252. default: true
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44258. {
  44259. dressed: {
  44260. height: math.unit(6 + 4/12, "feet"),
  44261. weight: math.unit(520, "lb"),
  44262. name: "Dressed",
  44263. image: {
  44264. source: "./media/characters/someonne/dressed.svg",
  44265. extra: 1020/1010,
  44266. bottom: 178/1198
  44267. }
  44268. },
  44269. undressed: {
  44270. height: math.unit(6 + 4/12, "feet"),
  44271. weight: math.unit(520, "lb"),
  44272. name: "Undressed",
  44273. image: {
  44274. source: "./media/characters/someonne/undressed.svg",
  44275. extra: 1019/1014,
  44276. bottom: 169/1188
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(6 + 4/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(3, "feet"),
  44293. weight: math.unit(30, "lb"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/till/front.svg",
  44297. extra: 892/823,
  44298. bottom: 55/947
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(3, "feet"),
  44306. default: true
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(9 + 8/12, "feet"),
  44315. weight: math.unit(800, "lb"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/sydney-heki/front.svg",
  44319. extra: 1360/1300,
  44320. bottom: 22/1382
  44321. }
  44322. },
  44323. back: {
  44324. height: math.unit(9 + 8/12, "feet"),
  44325. weight: math.unit(800, "lb"),
  44326. name: "Back",
  44327. image: {
  44328. source: "./media/characters/sydney-heki/back.svg",
  44329. extra: 1356/1293,
  44330. bottom: 12/1368
  44331. }
  44332. },
  44333. frontDressed: {
  44334. height: math.unit(9 + 8/12, "feet"),
  44335. weight: math.unit(800, "lb"),
  44336. name: "Front-dressed",
  44337. image: {
  44338. source: "./media/characters/sydney-heki/front-dressed.svg",
  44339. extra: 1360/1300,
  44340. bottom: 22/1382
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "Normal",
  44347. height: math.unit(9 + 8/12, "feet"),
  44348. default: true
  44349. },
  44350. {
  44351. name: "Macro",
  44352. height: math.unit(500, "feet")
  44353. },
  44354. {
  44355. name: "Megamacro",
  44356. height: math.unit(3.6, "miles")
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(200, "cm"),
  44365. weight: math.unit(250, "lb"),
  44366. name: "Front",
  44367. image: {
  44368. source: "./media/characters/fowler-karlsson/front.svg",
  44369. extra: 897/845,
  44370. bottom: 123/1020
  44371. }
  44372. },
  44373. back: {
  44374. height: math.unit(200, "cm"),
  44375. weight: math.unit(250, "lb"),
  44376. name: "Back",
  44377. image: {
  44378. source: "./media/characters/fowler-karlsson/back.svg",
  44379. extra: 999/944,
  44380. bottom: 26/1025
  44381. }
  44382. },
  44383. dick: {
  44384. height: math.unit(1.92, "feet"),
  44385. weight: math.unit(150, "lb"),
  44386. name: "Dick",
  44387. image: {
  44388. source: "./media/characters/fowler-karlsson/dick.svg"
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(200, "cm"),
  44396. default: true
  44397. },
  44398. {
  44399. name: "Smaller Macro",
  44400. height: math.unit(90, "m")
  44401. },
  44402. {
  44403. name: "Macro",
  44404. height: math.unit(150, "m")
  44405. },
  44406. {
  44407. name: "Bigger Macro",
  44408. height: math.unit(300, "m")
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44414. {
  44415. side: {
  44416. height: math.unit(8 + 2/12, "feet"),
  44417. weight: math.unit(1, "tonne"),
  44418. name: "Side",
  44419. image: {
  44420. source: "./media/characters/rylide/side.svg",
  44421. extra: 1318/1034,
  44422. bottom: 106/1424
  44423. }
  44424. },
  44425. sitting: {
  44426. height: math.unit(303, "cm"),
  44427. weight: math.unit(1, "tonne"),
  44428. name: "Sitting",
  44429. image: {
  44430. source: "./media/characters/rylide/sitting.svg",
  44431. extra: 1303/1103,
  44432. bottom: 36/1339
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(8 + 2/12, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(5 + 10/12, "feet"),
  44449. weight: math.unit(160, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/pudask/front.svg",
  44453. extra: 1616/1590,
  44454. bottom: 161/1777
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Ferret Height",
  44461. height: math.unit(2 + 5/12, "feet")
  44462. },
  44463. {
  44464. name: "Canon Height",
  44465. height: math.unit(5 + 10/12, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(3 + 6/12, "feet"),
  44475. weight: math.unit(60, "lb"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/ramita/front.svg",
  44479. extra: 1402/1232,
  44480. bottom: 62/1464
  44481. }
  44482. },
  44483. dressed: {
  44484. height: math.unit(3 + 6/12, "feet"),
  44485. weight: math.unit(60, "lb"),
  44486. name: "Dressed",
  44487. image: {
  44488. source: "./media/characters/ramita/dressed.svg",
  44489. extra: 1534/1249,
  44490. bottom: 50/1584
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(3 + 6/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(8, "feet"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/ark/front.svg",
  44510. extra: 772/693,
  44511. bottom: 45/817
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Normal",
  44518. height: math.unit(8, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(6, "feet"),
  44528. weight: math.unit(250, "lb"),
  44529. volume: math.unit(5/8, "gallons"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/ludwig-horn/front.svg",
  44533. extra: 1782/1635,
  44534. bottom: 96/1878
  44535. }
  44536. },
  44537. back: {
  44538. height: math.unit(6, "feet"),
  44539. weight: math.unit(250, "lb"),
  44540. volume: math.unit(5/8, "gallons"),
  44541. name: "Back",
  44542. image: {
  44543. source: "./media/characters/ludwig-horn/back.svg",
  44544. extra: 1874/1729,
  44545. bottom: 27/1901
  44546. }
  44547. },
  44548. dick: {
  44549. height: math.unit(1.05, "feet"),
  44550. weight: math.unit(15, "lb"),
  44551. volume: math.unit(5/8, "gallons"),
  44552. name: "Dick",
  44553. image: {
  44554. source: "./media/characters/ludwig-horn/dick.svg"
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Small",
  44561. height: math.unit(6, "feet")
  44562. },
  44563. {
  44564. name: "Typical",
  44565. height: math.unit(12, "feet"),
  44566. default: true
  44567. },
  44568. {
  44569. name: "Building",
  44570. height: math.unit(80, "feet")
  44571. },
  44572. {
  44573. name: "Town",
  44574. height: math.unit(800, "feet")
  44575. },
  44576. {
  44577. name: "Kingdom",
  44578. height: math.unit(80000, "feet")
  44579. },
  44580. {
  44581. name: "Planet",
  44582. height: math.unit(8000000, "feet")
  44583. },
  44584. {
  44585. name: "Universe",
  44586. height: math.unit(8000000000, "feet")
  44587. },
  44588. {
  44589. name: "Transcended",
  44590. height: math.unit(8e27, "feet")
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44596. {
  44597. front: {
  44598. height: math.unit(5, "feet"),
  44599. weight: math.unit(50, "kg"),
  44600. name: "Front",
  44601. image: {
  44602. source: "./media/characters/biot-avery/front.svg",
  44603. extra: 1295/1232,
  44604. bottom: 86/1381
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Normal",
  44611. height: math.unit(5, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44618. {
  44619. front: {
  44620. height: math.unit(6, "feet"),
  44621. name: "Front",
  44622. image: {
  44623. source: "./media/characters/kitsune-kiro/front.svg",
  44624. extra: 1270/1158,
  44625. bottom: 42/1312
  44626. }
  44627. },
  44628. frontAlt: {
  44629. height: math.unit(6, "feet"),
  44630. name: "Front-alt",
  44631. image: {
  44632. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44633. extra: 1130/1081,
  44634. bottom: 36/1166
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Smol",
  44641. height: math.unit(3, "feet")
  44642. },
  44643. {
  44644. name: "Normal",
  44645. height: math.unit(6, "feet"),
  44646. default: true
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44652. {
  44653. front: {
  44654. height: math.unit(6, "feet"),
  44655. weight: math.unit(125, "lb"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/jack-thatcher/front.svg",
  44659. extra: 1474/1370,
  44660. bottom: 26/1500
  44661. }
  44662. },
  44663. back: {
  44664. height: math.unit(6, "feet"),
  44665. weight: math.unit(125, "lb"),
  44666. name: "Back",
  44667. image: {
  44668. source: "./media/characters/jack-thatcher/back.svg",
  44669. extra: 1489/1384,
  44670. bottom: 18/1507
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(6, "feet"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Macro",
  44682. height: math.unit(75, "feet")
  44683. },
  44684. {
  44685. name: "Macro-er",
  44686. height: math.unit(250, "feet")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(7, "feet"),
  44695. weight: math.unit(110, "kg"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/max-hyper/front.svg",
  44699. extra: 1969/1881,
  44700. bottom: 49/2018
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(7, "feet"),
  44708. default: true
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44714. {
  44715. front: {
  44716. height: math.unit(5 + 5/12, "feet"),
  44717. weight: math.unit(160, "lb"),
  44718. name: "Front",
  44719. image: {
  44720. source: "./media/characters/spook/front.svg",
  44721. extra: 794/791,
  44722. bottom: 54/848
  44723. }
  44724. },
  44725. back: {
  44726. height: math.unit(5 + 5/12, "feet"),
  44727. weight: math.unit(160, "lb"),
  44728. name: "Back",
  44729. image: {
  44730. source: "./media/characters/spook/back.svg",
  44731. extra: 812/798,
  44732. bottom: 32/844
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(5 + 5/12, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(18, "feet"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/xeaduulix/front.svg",
  44752. extra: 1380/1166,
  44753. bottom: 110/1490
  44754. }
  44755. },
  44756. back: {
  44757. height: math.unit(18, "feet"),
  44758. name: "Back",
  44759. image: {
  44760. source: "./media/characters/xeaduulix/back.svg",
  44761. extra: 1592/1170,
  44762. bottom: 128/1720
  44763. }
  44764. },
  44765. frontNsfw: {
  44766. height: math.unit(18, "feet"),
  44767. name: "Front (NSFW)",
  44768. image: {
  44769. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44770. extra: 1380/1166,
  44771. bottom: 110/1490
  44772. }
  44773. },
  44774. backNsfw: {
  44775. height: math.unit(18, "feet"),
  44776. name: "Back (NSFW)",
  44777. image: {
  44778. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44779. extra: 1592/1170,
  44780. bottom: 128/1720
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(18, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44794. {
  44795. spreadWings: {
  44796. height: math.unit(20, "feet"),
  44797. name: "Spread Wings",
  44798. image: {
  44799. source: "./media/characters/fledge/spread-wings.svg",
  44800. extra: 693/635,
  44801. bottom: 26/719
  44802. }
  44803. },
  44804. front: {
  44805. height: math.unit(20, "feet"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/fledge/front.svg",
  44809. extra: 684/637,
  44810. bottom: 18/702
  44811. }
  44812. },
  44813. frontAlt: {
  44814. height: math.unit(20, "feet"),
  44815. name: "Front (Alt)",
  44816. image: {
  44817. source: "./media/characters/fledge/front-alt.svg",
  44818. extra: 708/664,
  44819. bottom: 13/721
  44820. }
  44821. },
  44822. back: {
  44823. height: math.unit(20, "feet"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/fledge/back.svg",
  44827. extra: 718/634,
  44828. bottom: 22/740
  44829. }
  44830. },
  44831. head: {
  44832. height: math.unit(5.55, "feet"),
  44833. name: "Head",
  44834. image: {
  44835. source: "./media/characters/fledge/head.svg"
  44836. }
  44837. },
  44838. headAlt: {
  44839. height: math.unit(5.1, "feet"),
  44840. name: "Head (Alt)",
  44841. image: {
  44842. source: "./media/characters/fledge/head-alt.svg"
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Small",
  44849. height: math.unit(6 + 2/12, "feet")
  44850. },
  44851. {
  44852. name: "Big",
  44853. height: math.unit(20, "feet"),
  44854. default: true
  44855. },
  44856. {
  44857. name: "Giant",
  44858. height: math.unit(100, "feet")
  44859. },
  44860. {
  44861. name: "Macro",
  44862. height: math.unit(200, "feet")
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(1, "meter"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/atlas-morenai/front.svg",
  44874. extra: 1275/1043,
  44875. bottom: 19/1294
  44876. }
  44877. },
  44878. back: {
  44879. height: math.unit(1, "meter"),
  44880. name: "Back",
  44881. image: {
  44882. source: "./media/characters/atlas-morenai/back.svg",
  44883. extra: 1141/1001,
  44884. bottom: 25/1166
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(1, "meter"),
  44892. default: true
  44893. },
  44894. {
  44895. name: "Magic-Infused",
  44896. height: math.unit(5, "meters")
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(5, "meters"),
  44905. name: "Front",
  44906. image: {
  44907. source: "./media/characters/cintia/front.svg",
  44908. extra: 1312/1228,
  44909. bottom: 38/1350
  44910. }
  44911. },
  44912. back: {
  44913. height: math.unit(5, "meters"),
  44914. name: "Back",
  44915. image: {
  44916. source: "./media/characters/cintia/back.svg",
  44917. extra: 1260/1166,
  44918. bottom: 98/1358
  44919. }
  44920. },
  44921. frontDick: {
  44922. height: math.unit(5, "meters"),
  44923. name: "Front (Dick)",
  44924. image: {
  44925. source: "./media/characters/cintia/front-dick.svg",
  44926. extra: 1312/1228,
  44927. bottom: 38/1350
  44928. }
  44929. },
  44930. backDick: {
  44931. height: math.unit(5, "meters"),
  44932. name: "Back (Dick)",
  44933. image: {
  44934. source: "./media/characters/cintia/back-dick.svg",
  44935. extra: 1260/1166,
  44936. bottom: 98/1358
  44937. }
  44938. },
  44939. bust: {
  44940. height: math.unit(1.97, "meters"),
  44941. name: "Bust",
  44942. image: {
  44943. source: "./media/characters/cintia/bust.svg",
  44944. extra: 617/565,
  44945. bottom: 0/617
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(5, "meters"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44959. {
  44960. side: {
  44961. height: math.unit(100, "feet"),
  44962. name: "Side",
  44963. image: {
  44964. source: "./media/characters/denora/side.svg",
  44965. extra: 875/803,
  44966. bottom: 9/884
  44967. }
  44968. },
  44969. },
  44970. [
  44971. {
  44972. name: "Standard",
  44973. height: math.unit(100, "feet"),
  44974. default: true
  44975. },
  44976. {
  44977. name: "Grand",
  44978. height: math.unit(1000, "feet")
  44979. },
  44980. {
  44981. name: "Conquering",
  44982. height: math.unit(10000, "feet")
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44988. {
  44989. dressed: {
  44990. height: math.unit(8 + 5/12, "feet"),
  44991. weight: math.unit(700, "lb"),
  44992. name: "Dressed",
  44993. image: {
  44994. source: "./media/characters/kiva/dressed.svg",
  44995. extra: 1102/1055,
  44996. bottom: 60/1162
  44997. }
  44998. },
  44999. nude: {
  45000. height: math.unit(8 + 5/12, "feet"),
  45001. weight: math.unit(700, "lb"),
  45002. name: "Nude",
  45003. image: {
  45004. source: "./media/characters/kiva/nude.svg",
  45005. extra: 1102/1055,
  45006. bottom: 60/1162
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Base Height",
  45013. height: math.unit(8 + 5/12, "feet"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(100, "feet")
  45019. },
  45020. {
  45021. name: "Max",
  45022. height: math.unit(3280, "feet")
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(6 + 8/12, "feet"),
  45031. weight: math.unit(250, "lb"),
  45032. name: "Front",
  45033. image: {
  45034. source: "./media/characters/ztragon/front.svg",
  45035. extra: 1825/1684,
  45036. bottom: 98/1923
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(6 + 8/12, "feet"),
  45044. default: true
  45045. },
  45046. {
  45047. name: "Macro",
  45048. height: math.unit(80, "feet")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45054. {
  45055. front: {
  45056. height: math.unit(10.4, "feet"),
  45057. weight: math.unit(2, "tons"),
  45058. name: "Front",
  45059. image: {
  45060. source: "./media/characters/yesenia/front.svg",
  45061. extra: 1479/1474,
  45062. bottom: 233/1712
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(10.4, "feet"),
  45070. default: true
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45076. {
  45077. normal: {
  45078. height: math.unit(6 + 1/12, "feet"),
  45079. weight: math.unit(180, "lb"),
  45080. name: "Normal",
  45081. image: {
  45082. source: "./media/characters/leanne-lycheborne/normal.svg",
  45083. extra: 1748/1660,
  45084. bottom: 98/1846
  45085. }
  45086. },
  45087. were: {
  45088. height: math.unit(12, "feet"),
  45089. weight: math.unit(1600, "lb"),
  45090. name: "Were",
  45091. image: {
  45092. source: "./media/characters/leanne-lycheborne/were.svg",
  45093. extra: 1485/1432,
  45094. bottom: 66/1551
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(6 + 1/12, "feet"),
  45102. default: true
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45108. {
  45109. side: {
  45110. height: math.unit(13, "feet"),
  45111. name: "Side",
  45112. image: {
  45113. source: "./media/characters/kira-tyler/side.svg",
  45114. extra: 693/393,
  45115. bottom: 58/751
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(13, "feet"),
  45123. default: true
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45129. {
  45130. front: {
  45131. height: math.unit(10.3, "feet"),
  45132. weight: math.unit(150, "lb"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/blaze/front.svg",
  45136. extra: 1378/1286,
  45137. bottom: 172/1550
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(10.3, "feet"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45151. {
  45152. side: {
  45153. height: math.unit(2, "meters"),
  45154. weight: math.unit(400, "kg"),
  45155. name: "Side",
  45156. image: {
  45157. source: "./media/characters/anu/side.svg",
  45158. extra: 506/394,
  45159. bottom: 18/524
  45160. }
  45161. },
  45162. },
  45163. [
  45164. {
  45165. name: "Humanoid",
  45166. height: math.unit(2, "meters")
  45167. },
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(5, "meters"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(5 + 5/12, "feet"),
  45180. weight: math.unit(170, "lb"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/synx-the-lynx/front.svg",
  45184. extra: 1893/1745,
  45185. bottom: 17/1910
  45186. }
  45187. },
  45188. side: {
  45189. height: math.unit(5 + 5/12, "feet"),
  45190. weight: math.unit(170, "lb"),
  45191. name: "Side",
  45192. image: {
  45193. source: "./media/characters/synx-the-lynx/side.svg",
  45194. extra: 1884/1740,
  45195. bottom: 39/1923
  45196. }
  45197. },
  45198. back: {
  45199. height: math.unit(5 + 5/12, "feet"),
  45200. weight: math.unit(170, "lb"),
  45201. name: "Back",
  45202. image: {
  45203. source: "./media/characters/synx-the-lynx/back.svg",
  45204. extra: 1903/1755,
  45205. bottom: 14/1917
  45206. }
  45207. },
  45208. },
  45209. [
  45210. {
  45211. name: "Normal",
  45212. height: math.unit(5 + 5/12, "feet"),
  45213. default: true
  45214. },
  45215. ]
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45219. {
  45220. back: {
  45221. height: math.unit(15, "feet"),
  45222. name: "Back",
  45223. image: {
  45224. source: "./media/characters/nadezda-fex/back.svg",
  45225. extra: 1695/1481,
  45226. bottom: 25/1720
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Normal",
  45233. height: math.unit(15, "feet"),
  45234. default: true
  45235. },
  45236. {
  45237. name: "Macro",
  45238. height: math.unit(2.5, "miles")
  45239. },
  45240. {
  45241. name: "Goddess",
  45242. height: math.unit(2, "multiverses")
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45248. {
  45249. front: {
  45250. height: math.unit(216, "cm"),
  45251. name: "Front",
  45252. image: {
  45253. source: "./media/characters/lev/front.svg",
  45254. extra: 1728/1670,
  45255. bottom: 82/1810
  45256. }
  45257. },
  45258. back: {
  45259. height: math.unit(216, "cm"),
  45260. name: "Back",
  45261. image: {
  45262. source: "./media/characters/lev/back.svg",
  45263. extra: 1738/1675,
  45264. bottom: 24/1762
  45265. }
  45266. },
  45267. dressed: {
  45268. height: math.unit(216, "cm"),
  45269. name: "Dressed",
  45270. image: {
  45271. source: "./media/characters/lev/dressed.svg",
  45272. extra: 1397/1351,
  45273. bottom: 73/1470
  45274. }
  45275. },
  45276. head: {
  45277. height: math.unit(0.51, "meter"),
  45278. name: "Head",
  45279. image: {
  45280. source: "./media/characters/lev/head.svg"
  45281. }
  45282. },
  45283. },
  45284. [
  45285. {
  45286. name: "Normal",
  45287. height: math.unit(216, "cm"),
  45288. default: true
  45289. },
  45290. {
  45291. name: "Relatively Macro",
  45292. height: math.unit(80, "meters")
  45293. },
  45294. {
  45295. name: "Megamacro",
  45296. height: math.unit(21600, "meters")
  45297. },
  45298. {
  45299. name: "Megamacro+",
  45300. height: math.unit(64800, "meters")
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(2, "meters"),
  45309. weight: math.unit(80, "kg"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/moka/front.svg",
  45313. extra: 1337/1255,
  45314. bottom: 58/1395
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Micro",
  45321. height: math.unit(15, "cm")
  45322. },
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(2, "meters"),
  45326. default: true
  45327. },
  45328. {
  45329. name: "Macro",
  45330. height: math.unit(20, "meters"),
  45331. },
  45332. ]
  45333. ))
  45334. characterMakers.push(() => makeCharacter(
  45335. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45336. {
  45337. front: {
  45338. height: math.unit(9, "feet"),
  45339. weight: math.unit(240, "lb"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/kuzco/front.svg",
  45343. extra: 1593/1487,
  45344. bottom: 32/1625
  45345. }
  45346. },
  45347. side: {
  45348. height: math.unit(9, "feet"),
  45349. weight: math.unit(240, "lb"),
  45350. name: "Side",
  45351. image: {
  45352. source: "./media/characters/kuzco/side.svg",
  45353. extra: 1575/1485,
  45354. bottom: 30/1605
  45355. }
  45356. },
  45357. back: {
  45358. height: math.unit(9, "feet"),
  45359. weight: math.unit(240, "lb"),
  45360. name: "Back",
  45361. image: {
  45362. source: "./media/characters/kuzco/back.svg",
  45363. extra: 1603/1514,
  45364. bottom: 14/1617
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Normal",
  45371. height: math.unit(9, "feet"),
  45372. default: true
  45373. },
  45374. ]
  45375. ))
  45376. characterMakers.push(() => makeCharacter(
  45377. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45378. {
  45379. side: {
  45380. height: math.unit(2, "meters"),
  45381. weight: math.unit(300, "kg"),
  45382. name: "Side",
  45383. image: {
  45384. source: "./media/characters/ceruleus/side.svg",
  45385. extra: 1068/974,
  45386. bottom: 126/1194
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Normal",
  45393. height: math.unit(16, "meters"),
  45394. default: true
  45395. },
  45396. ]
  45397. ))
  45398. characterMakers.push(() => makeCharacter(
  45399. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45400. {
  45401. front: {
  45402. height: math.unit(9, "feet"),
  45403. weight: math.unit(500, "kg"),
  45404. name: "Front",
  45405. image: {
  45406. source: "./media/characters/acouya/front.svg",
  45407. extra: 1660/1473,
  45408. bottom: 28/1688
  45409. }
  45410. },
  45411. },
  45412. [
  45413. {
  45414. name: "Normal",
  45415. height: math.unit(9, "feet"),
  45416. default: true
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(5 + 6/12, "feet"),
  45425. weight: math.unit(195, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/vant/front.svg",
  45429. extra: 1396/1320,
  45430. bottom: 20/1416
  45431. }
  45432. },
  45433. back: {
  45434. height: math.unit(5 + 6/12, "feet"),
  45435. weight: math.unit(195, "lb"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/vant/back.svg",
  45439. extra: 1396/1320,
  45440. bottom: 20/1416
  45441. }
  45442. },
  45443. maw: {
  45444. height: math.unit(0.75, "feet"),
  45445. name: "Maw",
  45446. image: {
  45447. source: "./media/characters/vant/maw.svg"
  45448. }
  45449. },
  45450. paw: {
  45451. height: math.unit(1.07, "feet"),
  45452. name: "Paw",
  45453. image: {
  45454. source: "./media/characters/vant/paw.svg"
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Micro",
  45461. height: math.unit(0.25, "inches")
  45462. },
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(5 + 6/12, "feet"),
  45466. default: true
  45467. },
  45468. {
  45469. name: "Macro",
  45470. height: math.unit(75, "feet")
  45471. },
  45472. ]
  45473. ))
  45474. characterMakers.push(() => makeCharacter(
  45475. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45476. {
  45477. front: {
  45478. height: math.unit(30, "meters"),
  45479. weight: math.unit(363, "tons"),
  45480. name: "Front",
  45481. image: {
  45482. source: "./media/characters/ahra/front.svg",
  45483. extra: 1914/1814,
  45484. bottom: 46/1960
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Macro",
  45491. height: math.unit(30, "meters"),
  45492. default: true
  45493. },
  45494. ]
  45495. ))
  45496. characterMakers.push(() => makeCharacter(
  45497. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45498. {
  45499. undressed: {
  45500. height: math.unit(2, "m"),
  45501. weight: math.unit(250, "kg"),
  45502. name: "Undressed",
  45503. image: {
  45504. source: "./media/characters/coriander/undressed.svg",
  45505. extra: 1757/1606,
  45506. bottom: 107/1864
  45507. }
  45508. },
  45509. dressed: {
  45510. height: math.unit(2, "m"),
  45511. weight: math.unit(250, "kg"),
  45512. name: "Dressed",
  45513. image: {
  45514. source: "./media/characters/coriander/dressed.svg",
  45515. extra: 1757/1606,
  45516. bottom: 107/1864
  45517. }
  45518. },
  45519. },
  45520. [
  45521. {
  45522. name: "Normal",
  45523. height: math.unit(4, "meters"),
  45524. default: true
  45525. },
  45526. {
  45527. name: "XL",
  45528. height: math.unit(6, "meters")
  45529. },
  45530. {
  45531. name: "XXL",
  45532. height: math.unit(8, "meters")
  45533. },
  45534. ]
  45535. ))
  45536. characterMakers.push(() => makeCharacter(
  45537. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45538. {
  45539. front: {
  45540. height: math.unit(6, "feet"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/syrinx/front.svg",
  45544. extra: 1557/1259,
  45545. bottom: 171/1728
  45546. }
  45547. },
  45548. },
  45549. [
  45550. {
  45551. name: "Normal",
  45552. height: math.unit(6 + 3/12, "feet"),
  45553. default: true
  45554. },
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45559. {
  45560. front: {
  45561. height: math.unit(11 + 6/12, "feet"),
  45562. weight: math.unit(1.5, "tons"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/bor/front.svg",
  45566. extra: 1189/1109,
  45567. bottom: 170/1359
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(11 + 6/12, "feet"),
  45575. default: true
  45576. },
  45577. {
  45578. name: "Macro",
  45579. height: math.unit(32 + 9/12, "feet")
  45580. },
  45581. ]
  45582. ))
  45583. characterMakers.push(() => makeCharacter(
  45584. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45585. {
  45586. anthro: {
  45587. height: math.unit(9, "feet"),
  45588. weight: math.unit(2076, "lb"),
  45589. name: "Anthro",
  45590. image: {
  45591. source: "./media/characters/abacus/anthro.svg",
  45592. extra: 1540/1494,
  45593. bottom: 233/1773
  45594. }
  45595. },
  45596. pigeon: {
  45597. height: math.unit(1, "feet"),
  45598. name: "Pigeon",
  45599. image: {
  45600. source: "./media/characters/abacus/pigeon.svg",
  45601. extra: 528/525,
  45602. bottom: 46/574
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(9, "feet"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45616. {
  45617. side: {
  45618. height: math.unit(6, "feet"),
  45619. name: "Side",
  45620. image: {
  45621. source: "./media/characters/delkhan/side.svg",
  45622. extra: 1884/1786,
  45623. bottom: 308/2192
  45624. }
  45625. },
  45626. head: {
  45627. height: math.unit(3.38, "feet"),
  45628. name: "Head",
  45629. image: {
  45630. source: "./media/characters/delkhan/head.svg"
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(72, "feet"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Giant",
  45642. height: math.unit(172, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45648. {
  45649. standing: {
  45650. height: math.unit(6, "feet"),
  45651. name: "Standing",
  45652. image: {
  45653. source: "./media/characters/euchidat/standing.svg",
  45654. extra: 1612/1553,
  45655. bottom: 116/1728
  45656. }
  45657. },
  45658. leaning: {
  45659. height: math.unit(6, "feet"),
  45660. name: "Leaning",
  45661. image: {
  45662. source: "./media/characters/euchidat/leaning.svg",
  45663. extra: 1719/1674,
  45664. bottom: 27/1746
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(175, "feet"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Megamacro",
  45676. height: math.unit(190, "miles")
  45677. },
  45678. {
  45679. name: "Gigamacro",
  45680. height: math.unit(190000, "miles")
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(6, "feet"),
  45689. weight: math.unit(150, "lb"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/rebecca-stack/front.svg",
  45693. extra: 1256/1201,
  45694. bottom: 18/1274
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(5 + 8/12, "feet"),
  45702. default: true
  45703. },
  45704. {
  45705. name: "Demolitionist",
  45706. height: math.unit(200, "feet")
  45707. },
  45708. {
  45709. name: "Out of Control",
  45710. height: math.unit(2, "miles")
  45711. },
  45712. {
  45713. name: "Giga",
  45714. height: math.unit(7200, "miles")
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45720. {
  45721. front: {
  45722. height: math.unit(6, "feet"),
  45723. weight: math.unit(150, "lb"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/jenny-cartwright/front.svg",
  45727. extra: 1384/1376,
  45728. bottom: 58/1442
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(6 + 7/12, "feet"),
  45736. default: true
  45737. },
  45738. {
  45739. name: "Librarian",
  45740. height: math.unit(55, "feet")
  45741. },
  45742. {
  45743. name: "Sightseer",
  45744. height: math.unit(50, "miles")
  45745. },
  45746. {
  45747. name: "Giga",
  45748. height: math.unit(30000, "miles")
  45749. },
  45750. ]
  45751. ))
  45752. characterMakers.push(() => makeCharacter(
  45753. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45754. {
  45755. nude: {
  45756. height: math.unit(8, "feet"),
  45757. weight: math.unit(225, "lb"),
  45758. name: "Nude",
  45759. image: {
  45760. source: "./media/characters/marvy/nude.svg",
  45761. extra: 1900/1683,
  45762. bottom: 89/1989
  45763. }
  45764. },
  45765. dressed: {
  45766. height: math.unit(8, "feet"),
  45767. weight: math.unit(225, "lb"),
  45768. name: "Dressed",
  45769. image: {
  45770. source: "./media/characters/marvy/dressed.svg",
  45771. extra: 1900/1683,
  45772. bottom: 89/1989
  45773. }
  45774. },
  45775. head: {
  45776. height: math.unit(2.85, "feet"),
  45777. name: "Head",
  45778. image: {
  45779. source: "./media/characters/marvy/head.svg"
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(8, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45793. {
  45794. front: {
  45795. height: math.unit(8, "feet"),
  45796. weight: math.unit(250, "lb"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/leah/front.svg",
  45800. extra: 1257/1149,
  45801. bottom: 109/1366
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(8, "feet"),
  45809. default: true
  45810. },
  45811. {
  45812. name: "Minimacro",
  45813. height: math.unit(40, "feet")
  45814. },
  45815. {
  45816. name: "Macro",
  45817. height: math.unit(124, "feet")
  45818. },
  45819. {
  45820. name: "Megamacro",
  45821. height: math.unit(850, "feet")
  45822. },
  45823. ]
  45824. ))
  45825. characterMakers.push(() => makeCharacter(
  45826. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45827. {
  45828. side: {
  45829. height: math.unit(13 + 6/12, "feet"),
  45830. weight: math.unit(3200, "lb"),
  45831. name: "Side",
  45832. image: {
  45833. source: "./media/characters/alvir/side.svg",
  45834. extra: 896/589,
  45835. bottom: 26/922
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(13 + 6/12, "feet"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45849. {
  45850. front: {
  45851. height: math.unit(5 + 4/12, "feet"),
  45852. weight: math.unit(236, "lb"),
  45853. name: "Front",
  45854. image: {
  45855. source: "./media/characters/zaina-khalil/front.svg",
  45856. extra: 1533/1485,
  45857. bottom: 94/1627
  45858. }
  45859. },
  45860. side: {
  45861. height: math.unit(5 + 4/12, "feet"),
  45862. weight: math.unit(236, "lb"),
  45863. name: "Side",
  45864. image: {
  45865. source: "./media/characters/zaina-khalil/side.svg",
  45866. extra: 1537/1498,
  45867. bottom: 66/1603
  45868. }
  45869. },
  45870. back: {
  45871. height: math.unit(5 + 4/12, "feet"),
  45872. weight: math.unit(236, "lb"),
  45873. name: "Back",
  45874. image: {
  45875. source: "./media/characters/zaina-khalil/back.svg",
  45876. extra: 1546/1494,
  45877. bottom: 89/1635
  45878. }
  45879. },
  45880. },
  45881. [
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(5 + 4/12, "feet"),
  45885. default: true
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45891. {
  45892. side: {
  45893. height: math.unit(12, "feet"),
  45894. weight: math.unit(4000, "lb"),
  45895. name: "Side",
  45896. image: {
  45897. source: "./media/characters/terry/side.svg",
  45898. extra: 1518/1439,
  45899. bottom: 149/1667
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(12, "feet"),
  45907. default: true
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(12, "feet"),
  45916. weight: math.unit(1500, "lb"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/kahea/front.svg",
  45920. extra: 1722/1617,
  45921. bottom: 179/1901
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Normal",
  45928. height: math.unit(12, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45935. {
  45936. demonFront: {
  45937. height: math.unit(36, "feet"),
  45938. name: "Front",
  45939. image: {
  45940. source: "./media/characters/alex-xuria/demon-front.svg",
  45941. extra: 1705/1673,
  45942. bottom: 198/1903
  45943. },
  45944. form: "demon",
  45945. default: true
  45946. },
  45947. demonBack: {
  45948. height: math.unit(36, "feet"),
  45949. name: "Back",
  45950. image: {
  45951. source: "./media/characters/alex-xuria/demon-back.svg",
  45952. extra: 1725/1693,
  45953. bottom: 70/1795
  45954. },
  45955. form: "demon"
  45956. },
  45957. demonHead: {
  45958. height: math.unit(2.14, "meters"),
  45959. name: "Head",
  45960. image: {
  45961. source: "./media/characters/alex-xuria/demon-head.svg"
  45962. },
  45963. form: "demon"
  45964. },
  45965. demonHand: {
  45966. height: math.unit(1.61, "meters"),
  45967. name: "Hand",
  45968. image: {
  45969. source: "./media/characters/alex-xuria/demon-hand.svg"
  45970. },
  45971. form: "demon"
  45972. },
  45973. demonPaw: {
  45974. height: math.unit(1.35, "meters"),
  45975. name: "Paw",
  45976. image: {
  45977. source: "./media/characters/alex-xuria/demon-paw.svg"
  45978. },
  45979. form: "demon"
  45980. },
  45981. demonFoot: {
  45982. height: math.unit(2.2, "meters"),
  45983. name: "Foot",
  45984. image: {
  45985. source: "./media/characters/alex-xuria/demon-foot.svg"
  45986. },
  45987. form: "demon"
  45988. },
  45989. demonCock: {
  45990. height: math.unit(1.74, "meters"),
  45991. name: "Cock",
  45992. image: {
  45993. source: "./media/characters/alex-xuria/demon-cock.svg"
  45994. },
  45995. form: "demon"
  45996. },
  45997. demonTailClosed: {
  45998. height: math.unit(1.47, "meters"),
  45999. name: "Tail (Closed)",
  46000. image: {
  46001. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46002. },
  46003. form: "demon"
  46004. },
  46005. demonTailOpen: {
  46006. height: math.unit(2.85, "meters"),
  46007. name: "Tail (Open)",
  46008. image: {
  46009. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46010. },
  46011. form: "demon"
  46012. },
  46013. incubusFront: {
  46014. height: math.unit(12, "feet"),
  46015. name: "Front",
  46016. image: {
  46017. source: "./media/characters/alex-xuria/incubus-front.svg",
  46018. extra: 1754/1677,
  46019. bottom: 125/1879
  46020. },
  46021. form: "incubus",
  46022. default: true
  46023. },
  46024. incubusBack: {
  46025. height: math.unit(12, "feet"),
  46026. name: "Back",
  46027. image: {
  46028. source: "./media/characters/alex-xuria/incubus-back.svg",
  46029. extra: 1702/1647,
  46030. bottom: 30/1732
  46031. },
  46032. form: "incubus"
  46033. },
  46034. incubusHead: {
  46035. height: math.unit(3.45, "feet"),
  46036. name: "Head",
  46037. image: {
  46038. source: "./media/characters/alex-xuria/incubus-head.svg"
  46039. },
  46040. form: "incubus"
  46041. },
  46042. rabbitFront: {
  46043. height: math.unit(6, "feet"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46047. extra: 1369/1349,
  46048. bottom: 45/1414
  46049. },
  46050. form: "rabbit",
  46051. default: true
  46052. },
  46053. rabbitSide: {
  46054. height: math.unit(6, "feet"),
  46055. name: "Side",
  46056. image: {
  46057. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46058. extra: 1370/1356,
  46059. bottom: 37/1407
  46060. },
  46061. form: "rabbit"
  46062. },
  46063. rabbitBack: {
  46064. height: math.unit(6, "feet"),
  46065. name: "Back",
  46066. image: {
  46067. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46068. extra: 1375/1358,
  46069. bottom: 43/1418
  46070. },
  46071. form: "rabbit"
  46072. },
  46073. },
  46074. [
  46075. {
  46076. name: "Normal",
  46077. height: math.unit(6, "feet"),
  46078. default: true,
  46079. form: "rabbit"
  46080. },
  46081. {
  46082. name: "Incubus",
  46083. height: math.unit(12, "feet"),
  46084. default: true,
  46085. form: "incubus"
  46086. },
  46087. {
  46088. name: "Demon",
  46089. height: math.unit(36, "feet"),
  46090. default: true,
  46091. form: "demon"
  46092. }
  46093. ],
  46094. {
  46095. "demon": {
  46096. name: "Demon",
  46097. default: true
  46098. },
  46099. "incubus": {
  46100. name: "Incubus",
  46101. },
  46102. "rabbit": {
  46103. name: "Rabbit"
  46104. }
  46105. }
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46109. {
  46110. front: {
  46111. height: math.unit(7 + 5/12, "feet"),
  46112. weight: math.unit(510, "lb"),
  46113. name: "Front",
  46114. image: {
  46115. source: "./media/characters/syrup/front.svg",
  46116. extra: 932/916,
  46117. bottom: 26/958
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(7 + 5/12, "feet"),
  46125. default: true
  46126. },
  46127. {
  46128. name: "Big",
  46129. height: math.unit(50, "feet")
  46130. },
  46131. {
  46132. name: "Macro",
  46133. height: math.unit(300, "feet")
  46134. },
  46135. {
  46136. name: "Megamacro",
  46137. height: math.unit(1, "mile")
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(6 + 9/12, "feet"),
  46146. name: "Front",
  46147. image: {
  46148. source: "./media/characters/zeimne/front.svg",
  46149. extra: 1969/1806,
  46150. bottom: 53/2022
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(6 + 9/12, "feet"),
  46158. default: true
  46159. },
  46160. {
  46161. name: "Giant",
  46162. height: math.unit(550, "feet")
  46163. },
  46164. {
  46165. name: "Mega",
  46166. height: math.unit(3, "miles")
  46167. },
  46168. {
  46169. name: "Giga",
  46170. height: math.unit(250, "miles")
  46171. },
  46172. {
  46173. name: "Tera",
  46174. height: math.unit(1, "AU")
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(5 + 2/12, "feet"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/grar/front.svg",
  46186. extra: 1331/1119,
  46187. bottom: 60/1391
  46188. }
  46189. },
  46190. back: {
  46191. height: math.unit(5 + 2/12, "feet"),
  46192. name: "Back",
  46193. image: {
  46194. source: "./media/characters/grar/back.svg",
  46195. extra: 1385/1169,
  46196. bottom: 23/1408
  46197. }
  46198. },
  46199. },
  46200. [
  46201. {
  46202. name: "Normal",
  46203. height: math.unit(5 + 2/12, "feet"),
  46204. default: true
  46205. },
  46206. ]
  46207. ))
  46208. characterMakers.push(() => makeCharacter(
  46209. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46210. {
  46211. front: {
  46212. height: math.unit(13 + 7/12, "feet"),
  46213. weight: math.unit(2200, "lb"),
  46214. name: "Front",
  46215. image: {
  46216. source: "./media/characters/endraya/front.svg",
  46217. extra: 1289/1215,
  46218. bottom: 50/1339
  46219. }
  46220. },
  46221. nude: {
  46222. height: math.unit(13 + 7/12, "feet"),
  46223. weight: math.unit(2200, "lb"),
  46224. name: "Nude",
  46225. image: {
  46226. source: "./media/characters/endraya/nude.svg",
  46227. extra: 1247/1171,
  46228. bottom: 40/1287
  46229. }
  46230. },
  46231. head: {
  46232. height: math.unit(2.6, "feet"),
  46233. name: "Head",
  46234. image: {
  46235. source: "./media/characters/endraya/head.svg"
  46236. }
  46237. },
  46238. slit: {
  46239. height: math.unit(3.4, "feet"),
  46240. name: "Slit",
  46241. image: {
  46242. source: "./media/characters/endraya/slit.svg"
  46243. }
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(13 + 7/12, "feet"),
  46250. default: true
  46251. },
  46252. {
  46253. name: "Macro",
  46254. height: math.unit(200, "feet")
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(1.81, "meters"),
  46263. weight: math.unit(69, "kg"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/rodryana/front.svg",
  46267. extra: 2002/1921,
  46268. bottom: 53/2055
  46269. }
  46270. },
  46271. back: {
  46272. height: math.unit(1.81, "meters"),
  46273. weight: math.unit(69, "kg"),
  46274. name: "Back",
  46275. image: {
  46276. source: "./media/characters/rodryana/back.svg",
  46277. extra: 1993/1926,
  46278. bottom: 48/2041
  46279. }
  46280. },
  46281. maw: {
  46282. height: math.unit(0.19769417475, "meters"),
  46283. name: "Maw",
  46284. image: {
  46285. source: "./media/characters/rodryana/maw.svg"
  46286. }
  46287. },
  46288. slit: {
  46289. height: math.unit(0.31631067961, "meters"),
  46290. name: "Slit",
  46291. image: {
  46292. source: "./media/characters/rodryana/slit.svg"
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Normal",
  46299. height: math.unit(1.81, "meters")
  46300. },
  46301. {
  46302. name: "Mini Macro",
  46303. height: math.unit(181, "meters")
  46304. },
  46305. {
  46306. name: "Macro",
  46307. height: math.unit(452, "meters"),
  46308. default: true
  46309. },
  46310. {
  46311. name: "Mega Macro",
  46312. height: math.unit(1.375, "km")
  46313. },
  46314. {
  46315. name: "Giga Macro",
  46316. height: math.unit(13.575, "km")
  46317. },
  46318. ]
  46319. ))
  46320. characterMakers.push(() => makeCharacter(
  46321. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46322. {
  46323. front: {
  46324. height: math.unit(6, "feet"),
  46325. weight: math.unit(1000, "lb"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/asaya/front.svg",
  46329. extra: 1460/1200,
  46330. bottom: 71/1531
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(8, "km"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46344. {
  46345. front: {
  46346. height: math.unit(3.5, "meters"),
  46347. name: "Front",
  46348. image: {
  46349. source: "./media/characters/sarzu-and-israz/front.svg",
  46350. extra: 1570/1558,
  46351. bottom: 150/1720
  46352. },
  46353. },
  46354. back: {
  46355. height: math.unit(3.5, "meters"),
  46356. name: "Back",
  46357. image: {
  46358. source: "./media/characters/sarzu-and-israz/back.svg",
  46359. extra: 1523/1509,
  46360. bottom: 132/1655
  46361. },
  46362. },
  46363. frontFemale: {
  46364. height: math.unit(3.5, "meters"),
  46365. name: "Front (Female)",
  46366. image: {
  46367. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46368. extra: 1570/1558,
  46369. bottom: 150/1720
  46370. },
  46371. },
  46372. frontHerm: {
  46373. height: math.unit(3.5, "meters"),
  46374. name: "Front (Herm)",
  46375. image: {
  46376. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46377. extra: 1570/1558,
  46378. bottom: 150/1720
  46379. },
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(3.5, "meters"),
  46386. default: true,
  46387. },
  46388. {
  46389. name: "Macro",
  46390. height: math.unit(65.5, "meters"),
  46391. },
  46392. ],
  46393. ))
  46394. characterMakers.push(() => makeCharacter(
  46395. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46396. {
  46397. front: {
  46398. height: math.unit(6, "feet"),
  46399. weight: math.unit(250, "lb"),
  46400. name: "Front",
  46401. image: {
  46402. source: "./media/characters/zenimma/front.svg",
  46403. extra: 1346/1320,
  46404. bottom: 58/1404
  46405. }
  46406. },
  46407. back: {
  46408. height: math.unit(6, "feet"),
  46409. weight: math.unit(250, "lb"),
  46410. name: "Back",
  46411. image: {
  46412. source: "./media/characters/zenimma/back.svg",
  46413. extra: 1324/1308,
  46414. bottom: 44/1368
  46415. }
  46416. },
  46417. dick: {
  46418. height: math.unit(1.44, "feet"),
  46419. name: "Dick",
  46420. image: {
  46421. source: "./media/characters/zenimma/dick.svg"
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Canon Height",
  46428. height: math.unit(66, "miles"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46435. {
  46436. nude: {
  46437. height: math.unit(6, "feet"),
  46438. weight: math.unit(150, "lb"),
  46439. name: "Nude",
  46440. image: {
  46441. source: "./media/characters/shavon/nude.svg",
  46442. extra: 1242/1096,
  46443. bottom: 98/1340
  46444. }
  46445. },
  46446. dressed: {
  46447. height: math.unit(6, "feet"),
  46448. weight: math.unit(150, "lb"),
  46449. name: "Dressed",
  46450. image: {
  46451. source: "./media/characters/shavon/dressed.svg",
  46452. extra: 1242/1096,
  46453. bottom: 98/1340
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Macro",
  46460. height: math.unit(255, "feet"),
  46461. default: true
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46467. {
  46468. front: {
  46469. height: math.unit(6, "feet"),
  46470. name: "Front",
  46471. image: {
  46472. source: "./media/characters/steph/front.svg",
  46473. extra: 1430/1330,
  46474. bottom: 54/1484
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(6, "feet"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46488. {
  46489. front: {
  46490. height: math.unit(9, "feet"),
  46491. weight: math.unit(400, "lb"),
  46492. name: "Front",
  46493. image: {
  46494. source: "./media/characters/kil'aman/front.svg",
  46495. extra: 1210/1159,
  46496. bottom: 109/1319
  46497. }
  46498. },
  46499. head: {
  46500. height: math.unit(2.14, "feet"),
  46501. name: "Head",
  46502. image: {
  46503. source: "./media/characters/kil'aman/head.svg"
  46504. }
  46505. },
  46506. maw: {
  46507. height: math.unit(1.21, "feet"),
  46508. name: "Maw",
  46509. image: {
  46510. source: "./media/characters/kil'aman/maw.svg"
  46511. }
  46512. },
  46513. foot: {
  46514. height: math.unit(1.7, "feet"),
  46515. name: "Foot",
  46516. image: {
  46517. source: "./media/characters/kil'aman/foot.svg"
  46518. }
  46519. },
  46520. dick: {
  46521. height: math.unit(2.1, "feet"),
  46522. name: "Dick",
  46523. image: {
  46524. source: "./media/characters/kil'aman/dick.svg"
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(9, "feet")
  46532. },
  46533. {
  46534. name: "Canon Height",
  46535. height: math.unit(10, "miles"),
  46536. default: true
  46537. },
  46538. {
  46539. name: "Maximum",
  46540. height: math.unit(6e9, "miles")
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46546. {
  46547. front: {
  46548. height: math.unit(90, "feet"),
  46549. weight: math.unit(675000, "lb"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/qadan/front.svg",
  46553. extra: 1012/1004,
  46554. bottom: 78/1090
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(90, "feet"),
  46559. weight: math.unit(675000, "lb"),
  46560. name: "Back",
  46561. image: {
  46562. source: "./media/characters/qadan/back.svg",
  46563. extra: 1042/1031,
  46564. bottom: 55/1097
  46565. }
  46566. },
  46567. armored: {
  46568. height: math.unit(90, "feet"),
  46569. weight: math.unit(675000, "lb"),
  46570. name: "Armored",
  46571. image: {
  46572. source: "./media/characters/qadan/armored.svg",
  46573. extra: 1047/1037,
  46574. bottom: 48/1095
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Normal",
  46581. height: math.unit(90, "feet"),
  46582. default: true
  46583. },
  46584. ]
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(6, "feet"),
  46591. weight: math.unit(225, "lb"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/brooke/front.svg",
  46595. extra: 1050/1010,
  46596. bottom: 66/1116
  46597. }
  46598. },
  46599. back: {
  46600. height: math.unit(6, "feet"),
  46601. weight: math.unit(225, "lb"),
  46602. name: "Back",
  46603. image: {
  46604. source: "./media/characters/brooke/back.svg",
  46605. extra: 1053/1013,
  46606. bottom: 41/1094
  46607. }
  46608. },
  46609. dressed: {
  46610. height: math.unit(6, "feet"),
  46611. weight: math.unit(225, "lb"),
  46612. name: "Dressed",
  46613. image: {
  46614. source: "./media/characters/brooke/dressed.svg",
  46615. extra: 1050/1010,
  46616. bottom: 66/1116
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Canon Height",
  46623. height: math.unit(500, "miles"),
  46624. default: true
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46630. {
  46631. front: {
  46632. height: math.unit(6 + 2/12, "feet"),
  46633. weight: math.unit(210, "lb"),
  46634. name: "Front",
  46635. image: {
  46636. source: "./media/characters/wubs/front.svg",
  46637. extra: 1345/1325,
  46638. bottom: 70/1415
  46639. }
  46640. },
  46641. back: {
  46642. height: math.unit(6 + 2/12, "feet"),
  46643. weight: math.unit(210, "lb"),
  46644. name: "Back",
  46645. image: {
  46646. source: "./media/characters/wubs/back.svg",
  46647. extra: 1296/1275,
  46648. bottom: 58/1354
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(6 + 2/12, "feet"),
  46656. default: true
  46657. },
  46658. {
  46659. name: "Macro",
  46660. height: math.unit(1000, "feet")
  46661. },
  46662. {
  46663. name: "Megamacro",
  46664. height: math.unit(1, "mile")
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46670. {
  46671. front: {
  46672. height: math.unit(4, "feet"),
  46673. weight: math.unit(120, "lb"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/blue/front.svg",
  46677. extra: 1636/1525,
  46678. bottom: 43/1679
  46679. }
  46680. },
  46681. back: {
  46682. height: math.unit(4, "feet"),
  46683. weight: math.unit(120, "lb"),
  46684. name: "Back",
  46685. image: {
  46686. source: "./media/characters/blue/back.svg",
  46687. extra: 1660/1560,
  46688. bottom: 57/1717
  46689. }
  46690. },
  46691. paws: {
  46692. height: math.unit(0.826, "feet"),
  46693. name: "Paws",
  46694. image: {
  46695. source: "./media/characters/blue/paws.svg"
  46696. }
  46697. },
  46698. },
  46699. [
  46700. {
  46701. name: "Micro",
  46702. height: math.unit(3, "inches")
  46703. },
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(4, "feet"),
  46707. default: true
  46708. },
  46709. {
  46710. name: "Femenine Form",
  46711. height: math.unit(14, "feet")
  46712. },
  46713. {
  46714. name: "Werebat Form",
  46715. height: math.unit(18, "feet")
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46721. {
  46722. female: {
  46723. height: math.unit(7 + 4/12, "feet"),
  46724. weight: math.unit(243, "lb"),
  46725. name: "Female",
  46726. image: {
  46727. source: "./media/characters/kaya/female.svg",
  46728. extra: 975/898,
  46729. bottom: 34/1009
  46730. }
  46731. },
  46732. herm: {
  46733. height: math.unit(7 + 4/12, "feet"),
  46734. weight: math.unit(243, "lb"),
  46735. name: "Herm",
  46736. image: {
  46737. source: "./media/characters/kaya/herm.svg",
  46738. extra: 975/898,
  46739. bottom: 34/1009
  46740. }
  46741. },
  46742. },
  46743. [
  46744. {
  46745. name: "Normal",
  46746. height: math.unit(7 + 4/12, "feet"),
  46747. default: true
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46753. {
  46754. female: {
  46755. height: math.unit(9 + 4/12, "feet"),
  46756. weight: math.unit(398, "lb"),
  46757. name: "Female",
  46758. image: {
  46759. source: "./media/characters/kassandra/female.svg",
  46760. extra: 908/839,
  46761. bottom: 61/969
  46762. }
  46763. },
  46764. intersex: {
  46765. height: math.unit(9 + 4/12, "feet"),
  46766. weight: math.unit(398, "lb"),
  46767. name: "Intersex",
  46768. image: {
  46769. source: "./media/characters/kassandra/intersex.svg",
  46770. extra: 908/839,
  46771. bottom: 61/969
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(9 + 4/12, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46785. {
  46786. front: {
  46787. height: math.unit(3, "meters"),
  46788. name: "Front",
  46789. image: {
  46790. source: "./media/characters/amy/front.svg",
  46791. extra: 1380/1343,
  46792. bottom: 70/1450
  46793. }
  46794. },
  46795. back: {
  46796. height: math.unit(3, "meters"),
  46797. name: "Back",
  46798. image: {
  46799. source: "./media/characters/amy/back.svg",
  46800. extra: 1380/1347,
  46801. bottom: 66/1446
  46802. }
  46803. },
  46804. },
  46805. [
  46806. {
  46807. name: "Normal",
  46808. height: math.unit(3, "meters"),
  46809. default: true
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46815. {
  46816. side: {
  46817. height: math.unit(47, "cm"),
  46818. weight: math.unit(10.8, "kg"),
  46819. name: "Side",
  46820. image: {
  46821. source: "./media/characters/alphaschakal/side.svg",
  46822. extra: 1058/568,
  46823. bottom: 62/1120
  46824. }
  46825. },
  46826. back: {
  46827. height: math.unit(78, "cm"),
  46828. weight: math.unit(10.8, "kg"),
  46829. name: "Back",
  46830. image: {
  46831. source: "./media/characters/alphaschakal/back.svg",
  46832. extra: 1102/942,
  46833. bottom: 185/1287
  46834. }
  46835. },
  46836. head: {
  46837. height: math.unit(28, "cm"),
  46838. name: "Head",
  46839. image: {
  46840. source: "./media/characters/alphaschakal/head.svg",
  46841. extra: 696/508,
  46842. bottom: 0/696
  46843. }
  46844. },
  46845. paw: {
  46846. height: math.unit(16, "cm"),
  46847. name: "Paw",
  46848. image: {
  46849. source: "./media/characters/alphaschakal/paw.svg"
  46850. }
  46851. },
  46852. },
  46853. [
  46854. {
  46855. name: "Normal",
  46856. height: math.unit(47, "cm"),
  46857. default: true
  46858. },
  46859. {
  46860. name: "Macro",
  46861. height: math.unit(340, "cm")
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(36, "earths"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/ecobyss/front.svg",
  46873. extra: 1282/1215,
  46874. bottom: 11/1293
  46875. }
  46876. },
  46877. back: {
  46878. height: math.unit(36, "earths"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/ecobyss/back.svg",
  46882. extra: 1291/1222,
  46883. bottom: 8/1299
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(36, "earths"),
  46891. default: true
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46897. {
  46898. front: {
  46899. height: math.unit(12, "feet"),
  46900. name: "Front",
  46901. image: {
  46902. source: "./media/characters/vasuk/front.svg",
  46903. extra: 1326/1207,
  46904. bottom: 64/1390
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Normal",
  46911. height: math.unit(12, "feet"),
  46912. default: true
  46913. },
  46914. ]
  46915. ))
  46916. characterMakers.push(() => makeCharacter(
  46917. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46918. {
  46919. side: {
  46920. height: math.unit(100, "feet"),
  46921. name: "Side",
  46922. image: {
  46923. source: "./media/characters/linneaus/side.svg",
  46924. extra: 987/807,
  46925. bottom: 47/1034
  46926. }
  46927. },
  46928. },
  46929. [
  46930. {
  46931. name: "Macro",
  46932. height: math.unit(100, "feet"),
  46933. default: true
  46934. },
  46935. ]
  46936. ))
  46937. characterMakers.push(() => makeCharacter(
  46938. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46939. {
  46940. front: {
  46941. height: math.unit(8, "feet"),
  46942. weight: math.unit(1200, "lb"),
  46943. name: "Front",
  46944. image: {
  46945. source: "./media/characters/nyterious-daligdig/front.svg",
  46946. extra: 1284/1094,
  46947. bottom: 84/1368
  46948. }
  46949. },
  46950. back: {
  46951. height: math.unit(8, "feet"),
  46952. weight: math.unit(1200, "lb"),
  46953. name: "Back",
  46954. image: {
  46955. source: "./media/characters/nyterious-daligdig/back.svg",
  46956. extra: 1301/1121,
  46957. bottom: 129/1430
  46958. }
  46959. },
  46960. mouth: {
  46961. height: math.unit(1.464, "feet"),
  46962. name: "Mouth",
  46963. image: {
  46964. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Small",
  46971. height: math.unit(8, "feet"),
  46972. default: true
  46973. },
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(15, "feet")
  46977. },
  46978. {
  46979. name: "Macro",
  46980. height: math.unit(90, "feet")
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(7 + 4/12, "feet"),
  46989. weight: math.unit(252, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/bandel/front.svg",
  46993. extra: 1946/1775,
  46994. bottom: 26/1972
  46995. }
  46996. },
  46997. back: {
  46998. height: math.unit(7 + 4/12, "feet"),
  46999. weight: math.unit(252, "lb"),
  47000. name: "Back",
  47001. image: {
  47002. source: "./media/characters/bandel/back.svg",
  47003. extra: 1940/1770,
  47004. bottom: 25/1965
  47005. }
  47006. },
  47007. maw: {
  47008. height: math.unit(2.15, "feet"),
  47009. name: "Maw",
  47010. image: {
  47011. source: "./media/characters/bandel/maw.svg"
  47012. }
  47013. },
  47014. stomach: {
  47015. height: math.unit(1.95, "feet"),
  47016. name: "Stomach",
  47017. image: {
  47018. source: "./media/characters/bandel/stomach.svg"
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(7 + 4/12, "feet"),
  47026. default: true
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47032. {
  47033. front: {
  47034. height: math.unit(10 + 5/12, "feet"),
  47035. weight: math.unit(773.5, "kg"),
  47036. name: "Front",
  47037. image: {
  47038. source: "./media/characters/zed/front.svg",
  47039. extra: 987/941,
  47040. bottom: 52/1039
  47041. }
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Short",
  47047. height: math.unit(5 + 4/12, "feet")
  47048. },
  47049. {
  47050. name: "Average",
  47051. height: math.unit(10 + 5/12, "feet"),
  47052. default: true
  47053. },
  47054. {
  47055. name: "Mini-Macro",
  47056. height: math.unit(24 + 9/12, "feet")
  47057. },
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(249, "feet")
  47061. },
  47062. {
  47063. name: "Mega-Macro",
  47064. height: math.unit(12490, "feet")
  47065. },
  47066. {
  47067. name: "Giga-Macro",
  47068. height: math.unit(24.9, "miles")
  47069. },
  47070. {
  47071. name: "Tera-Macro",
  47072. height: math.unit(24900, "miles")
  47073. },
  47074. {
  47075. name: "Cosmic Scale",
  47076. height: math.unit(38.9, "lightyears")
  47077. },
  47078. {
  47079. name: "Universal Scale",
  47080. height: math.unit(138e12, "lightyears")
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47086. {
  47087. front: {
  47088. height: math.unit(1561, "inches"),
  47089. name: "Front",
  47090. image: {
  47091. source: "./media/characters/ivan/front.svg",
  47092. extra: 1126/1071,
  47093. bottom: 26/1152
  47094. }
  47095. },
  47096. back: {
  47097. height: math.unit(1561, "inches"),
  47098. name: "Back",
  47099. image: {
  47100. source: "./media/characters/ivan/back.svg",
  47101. extra: 1134/1079,
  47102. bottom: 30/1164
  47103. }
  47104. },
  47105. },
  47106. [
  47107. {
  47108. name: "Normal",
  47109. height: math.unit(1561, "inches"),
  47110. default: true
  47111. },
  47112. ]
  47113. ))
  47114. characterMakers.push(() => makeCharacter(
  47115. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47116. {
  47117. front: {
  47118. height: math.unit(5 + 7/12, "feet"),
  47119. weight: math.unit(150, "lb"),
  47120. name: "Front",
  47121. image: {
  47122. source: "./media/characters/robin-arctic-hare/front.svg",
  47123. extra: 1148/974,
  47124. bottom: 20/1168
  47125. }
  47126. },
  47127. },
  47128. [
  47129. {
  47130. name: "Normal",
  47131. height: math.unit(5 + 7/12, "feet"),
  47132. default: true
  47133. },
  47134. ]
  47135. ))
  47136. characterMakers.push(() => makeCharacter(
  47137. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47138. {
  47139. side: {
  47140. height: math.unit(5, "feet"),
  47141. name: "Side",
  47142. image: {
  47143. source: "./media/characters/birch/side.svg",
  47144. extra: 985/796,
  47145. bottom: 111/1096
  47146. }
  47147. },
  47148. },
  47149. [
  47150. {
  47151. name: "Normal",
  47152. height: math.unit(5, "feet"),
  47153. default: true
  47154. },
  47155. ]
  47156. ))
  47157. characterMakers.push(() => makeCharacter(
  47158. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47159. {
  47160. front: {
  47161. height: math.unit(4, "feet"),
  47162. name: "Front",
  47163. image: {
  47164. source: "./media/characters/rasp/front.svg",
  47165. extra: 561/478,
  47166. bottom: 74/635
  47167. }
  47168. },
  47169. },
  47170. [
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(4, "feet"),
  47174. default: true
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(4 + 6/12, "feet"),
  47183. name: "Front",
  47184. image: {
  47185. source: "./media/characters/agatha/front.svg",
  47186. extra: 947/933,
  47187. bottom: 42/989
  47188. }
  47189. },
  47190. back: {
  47191. height: math.unit(4 + 6/12, "feet"),
  47192. name: "Back",
  47193. image: {
  47194. source: "./media/characters/agatha/back.svg",
  47195. extra: 935/922,
  47196. bottom: 48/983
  47197. }
  47198. },
  47199. },
  47200. [
  47201. {
  47202. name: "Normal",
  47203. height: math.unit(4 + 6 /12, "feet"),
  47204. default: true
  47205. },
  47206. {
  47207. name: "Max Size",
  47208. height: math.unit(500, "feet")
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47214. {
  47215. side: {
  47216. height: math.unit(30, "feet"),
  47217. name: "Side",
  47218. image: {
  47219. source: "./media/characters/roggy/side.svg",
  47220. extra: 909/643,
  47221. bottom: 63/972
  47222. }
  47223. },
  47224. lounging: {
  47225. height: math.unit(20, "feet"),
  47226. name: "Lounging",
  47227. image: {
  47228. source: "./media/characters/roggy/lounging.svg",
  47229. extra: 643/479,
  47230. bottom: 145/788
  47231. }
  47232. },
  47233. handpaw: {
  47234. height: math.unit(13.1, "feet"),
  47235. name: "Handpaw",
  47236. image: {
  47237. source: "./media/characters/roggy/handpaw.svg"
  47238. }
  47239. },
  47240. footpaw: {
  47241. height: math.unit(15.8, "feet"),
  47242. name: "Footpaw",
  47243. image: {
  47244. source: "./media/characters/roggy/footpaw.svg"
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Menacing",
  47251. height: math.unit(30, "feet"),
  47252. default: true
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(5 + 7/12, "feet"),
  47261. weight: math.unit(135, "lb"),
  47262. name: "Front",
  47263. image: {
  47264. source: "./media/characters/naomi/front.svg",
  47265. extra: 1209/1154,
  47266. bottom: 129/1338
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(5 + 7/12, "feet"),
  47271. weight: math.unit(135, "lb"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/naomi/back.svg",
  47275. extra: 1252/1190,
  47276. bottom: 23/1275
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Normal",
  47283. height: math.unit(5 + 7 /12, "feet"),
  47284. default: true
  47285. },
  47286. ]
  47287. ))
  47288. characterMakers.push(() => makeCharacter(
  47289. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47290. {
  47291. side: {
  47292. height: math.unit(35, "meters"),
  47293. name: "Side",
  47294. image: {
  47295. source: "./media/characters/kimpi/side.svg",
  47296. extra: 419/382,
  47297. bottom: 63/482
  47298. }
  47299. },
  47300. hand: {
  47301. height: math.unit(8.96, "meters"),
  47302. name: "Hand",
  47303. image: {
  47304. source: "./media/characters/kimpi/hand.svg"
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(35, "meters"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(4 + 4/12, "feet"),
  47321. name: "Front",
  47322. image: {
  47323. source: "./media/characters/pepper-purrloin/front.svg",
  47324. extra: 1141/1024,
  47325. bottom: 21/1162
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(4 + 4/12, "feet"),
  47333. default: true
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47339. {
  47340. front: {
  47341. height: math.unit(6 + 2/12, "feet"),
  47342. name: "Front",
  47343. image: {
  47344. source: "./media/characters/raphael/front.svg",
  47345. extra: 1101/962,
  47346. bottom: 59/1160
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(6 + 2/12, "feet"),
  47354. default: true
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47360. {
  47361. front: {
  47362. height: math.unit(6, "feet"),
  47363. weight: math.unit(150, "lb"),
  47364. name: "Front",
  47365. image: {
  47366. source: "./media/characters/victor-williams/front.svg",
  47367. extra: 1894/1825,
  47368. bottom: 67/1961
  47369. }
  47370. },
  47371. },
  47372. [
  47373. {
  47374. name: "Normal",
  47375. height: math.unit(6, "feet"),
  47376. default: true
  47377. },
  47378. ]
  47379. ))
  47380. characterMakers.push(() => makeCharacter(
  47381. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47382. {
  47383. front: {
  47384. height: math.unit(5 + 8/12, "feet"),
  47385. weight: math.unit(150, "lb"),
  47386. name: "Front",
  47387. image: {
  47388. source: "./media/characters/rachel/front.svg",
  47389. extra: 1902/1787,
  47390. bottom: 46/1948
  47391. }
  47392. },
  47393. },
  47394. [
  47395. {
  47396. name: "Base Height",
  47397. height: math.unit(5 + 8/12, "feet"),
  47398. default: true
  47399. },
  47400. {
  47401. name: "Macro",
  47402. height: math.unit(200, "feet")
  47403. },
  47404. {
  47405. name: "Mega Macro",
  47406. height: math.unit(1, "mile")
  47407. },
  47408. {
  47409. name: "Giga Macro",
  47410. height: math.unit(1500, "miles")
  47411. },
  47412. {
  47413. name: "Tera Macro",
  47414. height: math.unit(8000, "miles")
  47415. },
  47416. {
  47417. name: "Tera Macro+",
  47418. height: math.unit(2e5, "miles")
  47419. },
  47420. ]
  47421. ))
  47422. characterMakers.push(() => makeCharacter(
  47423. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47424. {
  47425. front: {
  47426. height: math.unit(6.5, "feet"),
  47427. name: "Front",
  47428. image: {
  47429. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47430. extra: 860/819,
  47431. bottom: 307/1167
  47432. }
  47433. },
  47434. back: {
  47435. height: math.unit(6.5, "feet"),
  47436. name: "Back",
  47437. image: {
  47438. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47439. extra: 880/837,
  47440. bottom: 395/1275
  47441. }
  47442. },
  47443. sleeping: {
  47444. height: math.unit(2.79, "feet"),
  47445. name: "Sleeping",
  47446. image: {
  47447. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47448. extra: 465/383,
  47449. bottom: 263/728
  47450. }
  47451. },
  47452. maw: {
  47453. height: math.unit(2.52, "feet"),
  47454. name: "Maw",
  47455. image: {
  47456. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(6.5, "feet"),
  47464. default: true
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47470. {
  47471. front: {
  47472. height: math.unit(5, "feet"),
  47473. name: "Front",
  47474. image: {
  47475. source: "./media/characters/nova-nerium/front.svg",
  47476. extra: 1548/1392,
  47477. bottom: 374/1922
  47478. }
  47479. },
  47480. back: {
  47481. height: math.unit(5, "feet"),
  47482. name: "Back",
  47483. image: {
  47484. source: "./media/characters/nova-nerium/back.svg",
  47485. extra: 1658/1468,
  47486. bottom: 257/1915
  47487. }
  47488. },
  47489. },
  47490. [
  47491. {
  47492. name: "Normal",
  47493. height: math.unit(5, "feet"),
  47494. default: true
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47500. {
  47501. front: {
  47502. height: math.unit(5 + 4/12, "feet"),
  47503. name: "Front",
  47504. image: {
  47505. source: "./media/characters/ashe-pyriph/front.svg",
  47506. extra: 1935/1747,
  47507. bottom: 60/1995
  47508. }
  47509. },
  47510. },
  47511. [
  47512. {
  47513. name: "Normal",
  47514. height: math.unit(5 + 4/12, "feet"),
  47515. default: true
  47516. },
  47517. ]
  47518. ))
  47519. characterMakers.push(() => makeCharacter(
  47520. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47521. {
  47522. front: {
  47523. height: math.unit(8.7, "feet"),
  47524. name: "Front",
  47525. image: {
  47526. source: "./media/characters/flicker-wisp/front.svg",
  47527. extra: 1835/1613,
  47528. bottom: 449/2284
  47529. }
  47530. },
  47531. side: {
  47532. height: math.unit(8.7, "feet"),
  47533. name: "Side",
  47534. image: {
  47535. source: "./media/characters/flicker-wisp/side.svg",
  47536. extra: 1841/1642,
  47537. bottom: 336/2177
  47538. },
  47539. default: true
  47540. },
  47541. maw: {
  47542. height: math.unit(3.35, "feet"),
  47543. name: "Maw",
  47544. image: {
  47545. source: "./media/characters/flicker-wisp/maw.svg",
  47546. extra: 2338/1506,
  47547. bottom: 0/2338
  47548. }
  47549. },
  47550. ovipositor: {
  47551. height: math.unit(4.95, "feet"),
  47552. name: "Ovipositor",
  47553. image: {
  47554. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47555. }
  47556. },
  47557. egg: {
  47558. height: math.unit(0.385, "feet"),
  47559. weight: math.unit(2, "lb"),
  47560. name: "Egg",
  47561. image: {
  47562. source: "./media/characters/flicker-wisp/egg.svg"
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Normal",
  47569. height: math.unit(8.7, "feet"),
  47570. default: true
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47576. {
  47577. side: {
  47578. height: math.unit(11, "feet"),
  47579. name: "Side",
  47580. image: {
  47581. source: "./media/characters/faefnul/side.svg",
  47582. extra: 1100/1007,
  47583. bottom: 0/1100
  47584. }
  47585. },
  47586. },
  47587. [
  47588. {
  47589. name: "Normal",
  47590. height: math.unit(11, "feet"),
  47591. default: true
  47592. },
  47593. ]
  47594. ))
  47595. characterMakers.push(() => makeCharacter(
  47596. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47597. {
  47598. front: {
  47599. height: math.unit(6 + 2/12, "feet"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/shady/front.svg",
  47603. extra: 502/461,
  47604. bottom: 9/511
  47605. }
  47606. },
  47607. kneeling: {
  47608. height: math.unit(4.6, "feet"),
  47609. name: "Kneeling",
  47610. image: {
  47611. source: "./media/characters/shady/kneeling.svg",
  47612. extra: 1328/1219,
  47613. bottom: 117/1445
  47614. }
  47615. },
  47616. maw: {
  47617. height: math.unit(2, "feet"),
  47618. name: "Maw",
  47619. image: {
  47620. source: "./media/characters/shady/maw.svg"
  47621. }
  47622. },
  47623. },
  47624. [
  47625. {
  47626. name: "Nano",
  47627. height: math.unit(1, "mm")
  47628. },
  47629. {
  47630. name: "Micro",
  47631. height: math.unit(12, "mm")
  47632. },
  47633. {
  47634. name: "Tiny",
  47635. height: math.unit(3, "inches")
  47636. },
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(6 + 2/12, "feet"),
  47640. default: true
  47641. },
  47642. {
  47643. name: "Big",
  47644. height: math.unit(15, "feet")
  47645. },
  47646. {
  47647. name: "Macro",
  47648. height: math.unit(150, "feet")
  47649. },
  47650. {
  47651. name: "Titanic",
  47652. height: math.unit(500, "feet")
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(12, "feet"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/fenrir/front.svg",
  47664. extra: 968/875,
  47665. bottom: 22/990
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Big",
  47672. height: math.unit(12, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47679. {
  47680. front: {
  47681. height: math.unit(5 + 4/12, "feet"),
  47682. name: "Front",
  47683. image: {
  47684. source: "./media/characters/makar/front.svg",
  47685. extra: 1181/1112,
  47686. bottom: 78/1259
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(5 + 4/12, "feet"),
  47694. default: true
  47695. },
  47696. ]
  47697. ))
  47698. characterMakers.push(() => makeCharacter(
  47699. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47700. {
  47701. front: {
  47702. height: math.unit(5 + 7/12, "feet"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/callow/front.svg",
  47706. extra: 1482/1304,
  47707. bottom: 23/1505
  47708. }
  47709. },
  47710. back: {
  47711. height: math.unit(5 + 7/12, "feet"),
  47712. name: "Back",
  47713. image: {
  47714. source: "./media/characters/callow/back.svg",
  47715. extra: 1484/1296,
  47716. bottom: 25/1509
  47717. }
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Micro",
  47723. height: math.unit(3, "inches"),
  47724. default: true
  47725. },
  47726. {
  47727. name: "Normal",
  47728. height: math.unit(5 + 7/12, "feet")
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47734. {
  47735. front: {
  47736. height: math.unit(6 + 2/12, "feet"),
  47737. name: "Front",
  47738. image: {
  47739. source: "./media/characters/natel/front.svg",
  47740. extra: 1833/1692,
  47741. bottom: 166/1999
  47742. }
  47743. },
  47744. },
  47745. [
  47746. {
  47747. name: "Normal",
  47748. height: math.unit(6 + 2/12, "feet"),
  47749. default: true
  47750. },
  47751. ]
  47752. ))
  47753. characterMakers.push(() => makeCharacter(
  47754. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47755. {
  47756. front: {
  47757. height: math.unit(1.75, "meters"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/misu/front.svg",
  47761. extra: 1690/1558,
  47762. bottom: 234/1924
  47763. }
  47764. },
  47765. back: {
  47766. height: math.unit(1.75, "meters"),
  47767. name: "Back",
  47768. image: {
  47769. source: "./media/characters/misu/back.svg",
  47770. extra: 1762/1618,
  47771. bottom: 146/1908
  47772. }
  47773. },
  47774. frontNude: {
  47775. height: math.unit(1.75, "meters"),
  47776. name: "Front (Nude)",
  47777. image: {
  47778. source: "./media/characters/misu/front-nude.svg",
  47779. extra: 1690/1558,
  47780. bottom: 234/1924
  47781. }
  47782. },
  47783. backNude: {
  47784. height: math.unit(1.75, "meters"),
  47785. name: "Back (Nude)",
  47786. image: {
  47787. source: "./media/characters/misu/back-nude.svg",
  47788. extra: 1762/1618,
  47789. bottom: 146/1908
  47790. }
  47791. },
  47792. frontErect: {
  47793. height: math.unit(1.75, "meters"),
  47794. name: "Front (Erect)",
  47795. image: {
  47796. source: "./media/characters/misu/front-erect.svg",
  47797. extra: 1690/1558,
  47798. bottom: 234/1924
  47799. }
  47800. },
  47801. maw: {
  47802. height: math.unit(0.47, "meters"),
  47803. name: "Maw",
  47804. image: {
  47805. source: "./media/characters/misu/maw.svg"
  47806. }
  47807. },
  47808. head: {
  47809. height: math.unit(0.35, "meters"),
  47810. name: "Head",
  47811. image: {
  47812. source: "./media/characters/misu/head.svg"
  47813. }
  47814. },
  47815. rear: {
  47816. height: math.unit(0.47, "meters"),
  47817. name: "Rear",
  47818. image: {
  47819. source: "./media/characters/misu/rear.svg"
  47820. }
  47821. },
  47822. },
  47823. [
  47824. {
  47825. name: "Normal",
  47826. height: math.unit(1.75, "meters")
  47827. },
  47828. {
  47829. name: "Not good for the people",
  47830. height: math.unit(42, "meters")
  47831. },
  47832. {
  47833. name: "Not good for the neighborhood",
  47834. height: math.unit(135, "meters")
  47835. },
  47836. {
  47837. name: "Bit bigger problem",
  47838. height: math.unit(380, "meters"),
  47839. default: true
  47840. },
  47841. {
  47842. name: "Not good for the city",
  47843. height: math.unit(1.5, "km")
  47844. },
  47845. {
  47846. name: "Not good for the county",
  47847. height: math.unit(5.5, "km")
  47848. },
  47849. {
  47850. name: "Not good for the state",
  47851. height: math.unit(25, "km")
  47852. },
  47853. {
  47854. name: "Not good for the country",
  47855. height: math.unit(125, "km")
  47856. },
  47857. {
  47858. name: "Not good for the continent",
  47859. height: math.unit(2100, "km")
  47860. },
  47861. {
  47862. name: "Not good for the planet",
  47863. height: math.unit(35000, "km")
  47864. },
  47865. {
  47866. name: "Just no",
  47867. height: math.unit(8.5e18, "km")
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47873. {
  47874. front: {
  47875. height: math.unit(6.5, "feet"),
  47876. name: "Front",
  47877. image: {
  47878. source: "./media/characters/poppy/front.svg",
  47879. extra: 1878/1812,
  47880. bottom: 43/1921
  47881. }
  47882. },
  47883. feet: {
  47884. height: math.unit(1.06, "feet"),
  47885. name: "Feet",
  47886. image: {
  47887. source: "./media/characters/poppy/feet.svg",
  47888. extra: 1083/1083,
  47889. bottom: 87/1170
  47890. }
  47891. },
  47892. },
  47893. [
  47894. {
  47895. name: "Human",
  47896. height: math.unit(6.5, "feet")
  47897. },
  47898. {
  47899. name: "Default",
  47900. height: math.unit(300, "feet"),
  47901. default: true
  47902. },
  47903. {
  47904. name: "Huge",
  47905. height: math.unit(850, "feet")
  47906. },
  47907. {
  47908. name: "Mega",
  47909. height: math.unit(8000, "feet")
  47910. },
  47911. {
  47912. name: "Giga",
  47913. height: math.unit(300, "miles")
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47919. {
  47920. bipedal: {
  47921. height: math.unit(7, "feet"),
  47922. name: "Bipedal",
  47923. image: {
  47924. source: "./media/characters/zener/bipedal.svg",
  47925. extra: 874/805,
  47926. bottom: 109/983
  47927. }
  47928. },
  47929. quadrupedal: {
  47930. height: math.unit(4.64, "feet"),
  47931. name: "Quadrupedal",
  47932. image: {
  47933. source: "./media/characters/zener/quadrupedal.svg",
  47934. extra: 638/507,
  47935. bottom: 190/828
  47936. }
  47937. },
  47938. cock: {
  47939. height: math.unit(18, "inches"),
  47940. name: "Cock",
  47941. image: {
  47942. source: "./media/characters/zener/cock.svg"
  47943. }
  47944. },
  47945. },
  47946. [
  47947. {
  47948. name: "Normal",
  47949. height: math.unit(7, "feet"),
  47950. default: true
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47956. {
  47957. nude: {
  47958. height: math.unit(5 + 6/12, "feet"),
  47959. name: "Nude",
  47960. image: {
  47961. source: "./media/characters/charlie-dog/nude.svg",
  47962. extra: 768/734,
  47963. bottom: 26/794
  47964. }
  47965. },
  47966. dressed: {
  47967. height: math.unit(5 + 6/12, "feet"),
  47968. name: "Dressed",
  47969. image: {
  47970. source: "./media/characters/charlie-dog/dressed.svg",
  47971. extra: 768/734,
  47972. bottom: 26/794
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(5 + 6/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(6 + 4/12, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/ir'istrasz/front.svg",
  47992. extra: 1014/977,
  47993. bottom: 65/1079
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(6 + 4/12, "feet"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/ir'istrasz/back.svg",
  48001. extra: 1024/992,
  48002. bottom: 34/1058
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(6 + 4/12, "feet"),
  48010. default: true
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48016. {
  48017. front: {
  48018. height: math.unit(5 + 8/12, "feet"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/dee-ditto/front.svg",
  48022. extra: 1874/1785,
  48023. bottom: 68/1942
  48024. }
  48025. },
  48026. back: {
  48027. height: math.unit(5 + 8/12, "feet"),
  48028. name: "Back",
  48029. image: {
  48030. source: "./media/characters/dee-ditto/back.svg",
  48031. extra: 1870/1783,
  48032. bottom: 77/1947
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(5 + 8/12, "feet"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(7 + 6/12, "feet"),
  48049. name: "Front",
  48050. image: {
  48051. source: "./media/characters/fey/front.svg",
  48052. extra: 995/979,
  48053. bottom: 30/1025
  48054. }
  48055. },
  48056. back: {
  48057. height: math.unit(7 + 6/12, "feet"),
  48058. name: "Back",
  48059. image: {
  48060. source: "./media/characters/fey/back.svg",
  48061. extra: 1079/1008,
  48062. bottom: 5/1084
  48063. }
  48064. },
  48065. dressed: {
  48066. height: math.unit(7 + 6/12, "feet"),
  48067. name: "Dressed",
  48068. image: {
  48069. source: "./media/characters/fey/dressed.svg",
  48070. extra: 995/979,
  48071. bottom: 30/1025
  48072. }
  48073. },
  48074. },
  48075. [
  48076. {
  48077. name: "Normal",
  48078. height: math.unit(7 + 6/12, "feet"),
  48079. default: true
  48080. },
  48081. ]
  48082. ))
  48083. characterMakers.push(() => makeCharacter(
  48084. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48085. {
  48086. standing: {
  48087. height: math.unit(17, "feet"),
  48088. name: "Standing",
  48089. image: {
  48090. source: "./media/characters/aster/standing.svg",
  48091. extra: 1798/1598,
  48092. bottom: 117/1915
  48093. }
  48094. },
  48095. },
  48096. [
  48097. {
  48098. name: "Normal",
  48099. height: math.unit(17, "feet"),
  48100. default: true
  48101. },
  48102. {
  48103. name: "Homewrecker",
  48104. height: math.unit(95, "feet")
  48105. },
  48106. {
  48107. name: "Planet Devourer",
  48108. height: math.unit(1008000, "miles")
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48114. {
  48115. front: {
  48116. height: math.unit(6 + 5/12, "feet"),
  48117. weight: math.unit(265, "lb"),
  48118. name: "Front",
  48119. image: {
  48120. source: "./media/characters/devon-childs/front.svg",
  48121. extra: 1795/1721,
  48122. bottom: 41/1836
  48123. }
  48124. },
  48125. side: {
  48126. height: math.unit(6 + 5/12, "feet"),
  48127. weight: math.unit(265, "lb"),
  48128. name: "Side",
  48129. image: {
  48130. source: "./media/characters/devon-childs/side.svg",
  48131. extra: 1812/1738,
  48132. bottom: 30/1842
  48133. }
  48134. },
  48135. back: {
  48136. height: math.unit(6 + 5/12, "feet"),
  48137. weight: math.unit(265, "lb"),
  48138. name: "Back",
  48139. image: {
  48140. source: "./media/characters/devon-childs/back.svg",
  48141. extra: 1808/1735,
  48142. bottom: 23/1831
  48143. }
  48144. },
  48145. hand: {
  48146. height: math.unit(1.464, "feet"),
  48147. name: "Hand",
  48148. image: {
  48149. source: "./media/characters/devon-childs/hand.svg"
  48150. }
  48151. },
  48152. foot: {
  48153. height: math.unit(1.6, "feet"),
  48154. name: "Foot",
  48155. image: {
  48156. source: "./media/characters/devon-childs/foot.svg"
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Micro",
  48163. height: math.unit(7, "cm")
  48164. },
  48165. {
  48166. name: "Normal",
  48167. height: math.unit(6 + 5/12, "feet"),
  48168. default: true
  48169. },
  48170. {
  48171. name: "Macro",
  48172. height: math.unit(154, "feet")
  48173. },
  48174. ]
  48175. ))
  48176. characterMakers.push(() => makeCharacter(
  48177. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48178. {
  48179. front: {
  48180. height: math.unit(6, "feet"),
  48181. weight: math.unit(180, "lb"),
  48182. name: "Front",
  48183. image: {
  48184. source: "./media/characters/lydemox-vir/front.svg",
  48185. extra: 1632/1435,
  48186. bottom: 58/1690
  48187. }
  48188. },
  48189. frontSFW: {
  48190. height: math.unit(6, "feet"),
  48191. weight: math.unit(180, "lb"),
  48192. name: "Front (SFW)",
  48193. image: {
  48194. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48195. extra: 1632/1435,
  48196. bottom: 58/1690
  48197. }
  48198. },
  48199. back: {
  48200. height: math.unit(6, "feet"),
  48201. weight: math.unit(180, "lb"),
  48202. name: "Back",
  48203. image: {
  48204. source: "./media/characters/lydemox-vir/back.svg",
  48205. extra: 1593/1408,
  48206. bottom: 31/1624
  48207. }
  48208. },
  48209. paw: {
  48210. height: math.unit(1.85, "feet"),
  48211. name: "Paw",
  48212. image: {
  48213. source: "./media/characters/lydemox-vir/paw.svg"
  48214. }
  48215. },
  48216. dick: {
  48217. height: math.unit(1.8, "feet"),
  48218. name: "Dick",
  48219. image: {
  48220. source: "./media/characters/lydemox-vir/dick.svg"
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Macro",
  48227. height: math.unit(100, "feet"),
  48228. default: true
  48229. },
  48230. {
  48231. name: "Teramacro",
  48232. height: math.unit(1, "earth")
  48233. },
  48234. {
  48235. name: "Planetary",
  48236. height: math.unit(20, "earths")
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48242. {
  48243. front: {
  48244. height: math.unit(15 + 8/12, "feet"),
  48245. weight: math.unit(1237, "kg"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/mia/front.svg",
  48249. extra: 1573/1446,
  48250. bottom: 58/1631
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Small",
  48257. height: math.unit(9 + 5/12, "feet")
  48258. },
  48259. {
  48260. name: "Normal",
  48261. height: math.unit(15 + 8/12, "feet"),
  48262. default: true
  48263. },
  48264. ]
  48265. ))
  48266. characterMakers.push(() => makeCharacter(
  48267. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48268. {
  48269. front: {
  48270. height: math.unit(10 + 6/12, "feet"),
  48271. weight: math.unit(1.3, "tons"),
  48272. name: "Front",
  48273. image: {
  48274. source: "./media/characters/mr-graves/front.svg",
  48275. extra: 1779/1695,
  48276. bottom: 198/1977
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Normal",
  48283. height: math.unit(10 + 6 /12, "feet"),
  48284. default: true
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48290. {
  48291. dressedFront: {
  48292. height: math.unit(5 + 8/12, "feet"),
  48293. weight: math.unit(125, "lb"),
  48294. name: "Dressed (Front)",
  48295. image: {
  48296. source: "./media/characters/jess/dressed-front.svg",
  48297. extra: 1176/1152,
  48298. bottom: 42/1218
  48299. }
  48300. },
  48301. dressedSide: {
  48302. height: math.unit(5 + 8/12, "feet"),
  48303. weight: math.unit(125, "lb"),
  48304. name: "Dressed (Side)",
  48305. image: {
  48306. source: "./media/characters/jess/dressed-side.svg",
  48307. extra: 1204/1190,
  48308. bottom: 6/1210
  48309. }
  48310. },
  48311. nudeFront: {
  48312. height: math.unit(5 + 8/12, "feet"),
  48313. weight: math.unit(125, "lb"),
  48314. name: "Nude (Front)",
  48315. image: {
  48316. source: "./media/characters/jess/nude-front.svg",
  48317. extra: 1176/1152,
  48318. bottom: 42/1218
  48319. }
  48320. },
  48321. nudeSide: {
  48322. height: math.unit(5 + 8/12, "feet"),
  48323. weight: math.unit(125, "lb"),
  48324. name: "Nude (Side)",
  48325. image: {
  48326. source: "./media/characters/jess/nude-side.svg",
  48327. extra: 1204/1190,
  48328. bottom: 6/1210
  48329. }
  48330. },
  48331. organsFront: {
  48332. height: math.unit(2.83799342105, "feet"),
  48333. name: "Organs (Front)",
  48334. image: {
  48335. source: "./media/characters/jess/organs-front.svg"
  48336. }
  48337. },
  48338. organsSide: {
  48339. height: math.unit(2.64225290474, "feet"),
  48340. name: "Organs (Side)",
  48341. image: {
  48342. source: "./media/characters/jess/organs-side.svg"
  48343. }
  48344. },
  48345. digestiveTractFront: {
  48346. height: math.unit(2.8106580871, "feet"),
  48347. name: "Digestive Tract (Front)",
  48348. image: {
  48349. source: "./media/characters/jess/digestive-tract-front.svg"
  48350. }
  48351. },
  48352. digestiveTractSide: {
  48353. height: math.unit(2.54365045014, "feet"),
  48354. name: "Digestive Tract (Side)",
  48355. image: {
  48356. source: "./media/characters/jess/digestive-tract-side.svg"
  48357. }
  48358. },
  48359. respiratorySystemFront: {
  48360. height: math.unit(1.11196233456, "feet"),
  48361. name: "Respiratory System (Front)",
  48362. image: {
  48363. source: "./media/characters/jess/respiratory-system-front.svg"
  48364. }
  48365. },
  48366. respiratorySystemSide: {
  48367. height: math.unit(0.89327966297, "feet"),
  48368. name: "Respiratory System (Side)",
  48369. image: {
  48370. source: "./media/characters/jess/respiratory-system-side.svg"
  48371. }
  48372. },
  48373. urinaryTractFront: {
  48374. height: math.unit(1.16126356186, "feet"),
  48375. name: "Urinary Tract (Front)",
  48376. image: {
  48377. source: "./media/characters/jess/urinary-tract-front.svg"
  48378. }
  48379. },
  48380. urinaryTractSide: {
  48381. height: math.unit(1.20910039627, "feet"),
  48382. name: "Urinary Tract (Side)",
  48383. image: {
  48384. source: "./media/characters/jess/urinary-tract-side.svg"
  48385. }
  48386. },
  48387. reproductiveOrgansFront: {
  48388. height: math.unit(0.48422591566, "feet"),
  48389. name: "Reproductive Organs (Front)",
  48390. image: {
  48391. source: "./media/characters/jess/reproductive-organs-front.svg"
  48392. }
  48393. },
  48394. reproductiveOrgansSide: {
  48395. height: math.unit(0.61553314481, "feet"),
  48396. name: "Reproductive Organs (Side)",
  48397. image: {
  48398. source: "./media/characters/jess/reproductive-organs-side.svg"
  48399. }
  48400. },
  48401. breastsFront: {
  48402. height: math.unit(0.47690395121, "feet"),
  48403. name: "Breasts (Front)",
  48404. image: {
  48405. source: "./media/characters/jess/breasts-front.svg"
  48406. }
  48407. },
  48408. breastsSide: {
  48409. height: math.unit(0.30556998307, "feet"),
  48410. name: "Breasts (Side)",
  48411. image: {
  48412. source: "./media/characters/jess/breasts-side.svg"
  48413. }
  48414. },
  48415. heartFront: {
  48416. height: math.unit(0.53011022622, "feet"),
  48417. name: "Heart (Front)",
  48418. image: {
  48419. source: "./media/characters/jess/heart-front.svg"
  48420. }
  48421. },
  48422. heartSide: {
  48423. height: math.unit(0.51790695213, "feet"),
  48424. name: "Heart (Side)",
  48425. image: {
  48426. source: "./media/characters/jess/heart-side.svg"
  48427. }
  48428. },
  48429. earsAndNoseFront: {
  48430. height: math.unit(0.29385483995, "feet"),
  48431. name: "Ears and Nose (Front)",
  48432. image: {
  48433. source: "./media/characters/jess/ears-and-nose-front.svg"
  48434. }
  48435. },
  48436. earsAndNoseSide: {
  48437. height: math.unit(0.18109658741, "feet"),
  48438. name: "Ears and Nose (Side)",
  48439. image: {
  48440. source: "./media/characters/jess/ears-and-nose-side.svg"
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(5 + 8/12, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(6, "feet"),
  48457. weight: math.unit(6.64467e-7, "grams"),
  48458. name: "Front",
  48459. image: {
  48460. source: "./media/characters/wimpering/front.svg",
  48461. extra: 597/587,
  48462. bottom: 34/631
  48463. }
  48464. },
  48465. },
  48466. [
  48467. {
  48468. name: "Micro",
  48469. height: math.unit(0.4, "mm"),
  48470. default: true
  48471. },
  48472. ]
  48473. ))
  48474. //characters
  48475. function makeCharacters() {
  48476. const results = [];
  48477. characterMakers.forEach(character => {
  48478. results.push(character());
  48479. });
  48480. return results;
  48481. }